Skip to content

Commit

Permalink
Bump Salt DS version (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
origami-z authored Jun 1, 2023
1 parent c61ffb4 commit 59c5081
Show file tree
Hide file tree
Showing 7 changed files with 124 additions and 119 deletions.
189 changes: 90 additions & 99 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions packages/copy-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
},
"homepage": "https://github.com/jpmorganchase/Figma-Plugins-and-Widgets#readme",
"dependencies": {
"@salt-ds/core": "^1.2.0",
"@salt-ds/icons": "^1.1.0",
"@salt-ds/lab": "^1.0.0-alpha.2",
"@salt-ds/theme": "^1.0.0",
"@salt-ds/core": "^1.7.1",
"@salt-ds/icons": "^1.3.1",
"@salt-ds/lab": "^1.0.0-alpha.9",
"@salt-ds/theme": "^1.5.0",
"papaparse": "^5.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
14 changes: 11 additions & 3 deletions packages/copy-manager/ui-src/view/AdvancedView.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import { Button, FlexItem, FlexLayout, StackLayout } from "@salt-ds/core";
import {
Button,
FlexItem,
FlexLayout,
StackLayout,
Checkbox,
} from "@salt-ds/core";
import { ExportIcon, RefreshIcon, TargetIcon } from "@salt-ds/icons";
import { Checkbox, Dropdown, FormField, Input } from "@salt-ds/lab";
import { Dropdown, FormField, Input } from "@salt-ds/lab";
import React, { useCallback, useEffect, useState } from "react";
import {
PostToFigmaMessage,
Expand Down Expand Up @@ -186,7 +192,9 @@ export const AdvancedView = () => {
<Checkbox
className="tableCheckbox"
checked={nodeInfo.checked}
onChange={(_, c) => onUpdateRowChecked(nodeInfo.id, c)}
onChange={(event) =>
onUpdateRowChecked(nodeInfo.id, event.target.checked)
}
/>
</th>
<td>
Expand Down
Loading

0 comments on commit 59c5081

Please sign in to comment.