@ssa-ui-kit/widgets 3.15.0 → 3.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -2
- package/package.json +5 -5
- package/dist/index.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -22758,6 +22758,7 @@ const ExchangeAccountHeader = ({
|
|
|
22758
22758
|
css: CardHeader,
|
|
22759
22759
|
children: [children, !disabled && onDelete && (0,jsx_runtime_namespaceObject.jsx)(core_namespaceObject.Button, {
|
|
22760
22760
|
css: RemoveButton,
|
|
22761
|
+
"aria-label": "Delete",
|
|
22761
22762
|
onClick: e => handleClickDelete(e),
|
|
22762
22763
|
children: (0,jsx_runtime_namespaceObject.jsx)(core_namespaceObject.Icon, {
|
|
22763
22764
|
name: "bin",
|
|
@@ -23018,6 +23019,7 @@ const AccountKeysHeader = ({
|
|
|
23018
23019
|
children: title
|
|
23019
23020
|
}), onDelete && (0,jsx_runtime_namespaceObject.jsx)(core_namespaceObject.Button, {
|
|
23020
23021
|
css: DeleteButton,
|
|
23022
|
+
"aria-label": "Delete",
|
|
23021
23023
|
onClick: onDelete,
|
|
23022
23024
|
children: (0,jsx_runtime_namespaceObject.jsx)(core_namespaceObject.Icon, {
|
|
23023
23025
|
name: "bin",
|
|
@@ -23077,6 +23079,7 @@ const AccountKeysContent = ({
|
|
|
23077
23079
|
children: visible ? secretKey || placeholder : placeholder
|
|
23078
23080
|
}), (0,jsx_runtime_namespaceObject.jsx)(core_namespaceObject.Button, {
|
|
23079
23081
|
css: VisibleButton,
|
|
23082
|
+
"aria-label": visible ? 'Hide secret key' : 'Show secret key',
|
|
23080
23083
|
onClick: toggleVisible,
|
|
23081
23084
|
children: (0,jsx_runtime_namespaceObject.jsx)(core_namespaceObject.Icon, {
|
|
23082
23085
|
name: visible ? 'visible' : 'invisible',
|
|
@@ -23357,5 +23360,4 @@ const MarginInfo = ({
|
|
|
23357
23360
|
/******/ return __webpack_exports__;
|
|
23358
23361
|
/******/ })()
|
|
23359
23362
|
;
|
|
23360
|
-
});
|
|
23361
|
-
//# sourceMappingURL=index.js.map
|
|
23363
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ssa-ui-kit/widgets",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"@floating-ui/react": "0.27.4",
|
|
35
35
|
"dotenv": "16.0.3",
|
|
36
36
|
"loose-envify": "1.4.0",
|
|
37
|
-
"@ssa-ui-kit/core": "^3.
|
|
38
|
-
"@ssa-ui-kit/hooks": "^3.
|
|
39
|
-
"@ssa-ui-kit/utils": "^3.
|
|
37
|
+
"@ssa-ui-kit/core": "^3.16.0",
|
|
38
|
+
"@ssa-ui-kit/hooks": "^3.16.0",
|
|
39
|
+
"@ssa-ui-kit/utils": "^3.16.0"
|
|
40
40
|
},
|
|
41
41
|
"browserslist": [
|
|
42
42
|
">0.1%",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
},
|
|
77
77
|
"scripts": {
|
|
78
78
|
"test": "jest -i --no-cache",
|
|
79
|
-
"build": "webpack --mode=production --node-env=production && tsc --build
|
|
79
|
+
"build": "webpack --mode=production --node-env=production && tsc --build ./tsconfig.build.json && resolve-tspaths -p ./tsconfig.build.json",
|
|
80
80
|
"sb:dev": "env storybook dev -p 6007",
|
|
81
81
|
"sb:build": "env storybook build",
|
|
82
82
|
"test:e2e": "pnpm exec playwright test --project=chromium",
|