@iress-oss/ids-components 6.0.0-beta.2 → 6.0.0-beta.4
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/.ai/components/tag.md +43 -3
- package/.ai/skills/figma-to-ids.md +136 -61
- package/.ai/skills/ui-translation.md +98 -72
- package/README.md +16 -1
- package/dist/{Autocomplete-JZcorz66.js → Autocomplete-CuUjmIAw.js} +66 -63
- package/dist/Shadow-DdGxqWgh.js +56 -0
- package/dist/components/Autocomplete/Autocomplete.js +1 -1
- package/dist/components/Autocomplete/hooks/useAutocompleteSearch.js +1 -1
- package/dist/components/Autocomplete/index.js +2 -2
- package/dist/components/Icon/helpers/getMaterialSymbolsList.js +1 -1
- package/dist/components/Menu/Menu.js +4 -7
- package/dist/components/Select/Select.js +1 -1
- package/dist/components/Select/components/SelectOptions.js +2 -2
- package/dist/components/Select/index.js +1 -1
- package/dist/components/Slider/components/SliderTicks.js +2 -2
- package/dist/components/Tag/Tag.d.ts +15 -23
- package/dist/components/Tag/Tag.js +28 -31
- package/dist/components/Tag/Tag.styles.d.ts +8 -9
- package/dist/components/Tag/Tag.styles.js +26 -14
- package/dist/index.d-BJM5_ZcV.js +4 -0
- package/dist/main.js +3 -3
- package/dist/patterns/ContextualMenu/ContextualMenu.d.ts +1 -1
- package/dist/patterns/ContextualMenu/ContextualMenu.js +22 -21
- package/dist/patterns/DropdownMenu/DropdownMenu.js +1 -1
- package/dist/patterns/Shadow/Shadow.js +1 -1
- package/dist/patterns/Shadow/index.js +1 -1
- package/dist/style.css +1 -1
- package/dist/{useAutocompleteSearch-Dl1-OeQy.js → useAutocompleteSearch-BJ_hhoKp.js} +3 -3
- package/package.json +10 -10
- package/dist/Shadow-BGGBsmrn.js +0 -56
- package/dist/index.d-Dsa3mJDa.js +0 -4
|
@@ -33,8 +33,8 @@ function s(e, t, n, o) {
|
|
|
33
33
|
if (y || T) {
|
|
34
34
|
var i, o = Date.now(), u = r(o);
|
|
35
35
|
if (f.current = [].slice.call(arguments), p.current = s, c.current = o, C && !_.current && (_.current = function() {
|
|
36
|
-
|
|
37
|
-
}, (i =
|
|
36
|
+
globalThis.document?.visibilityState === "hidden" && v.current.flush();
|
|
37
|
+
}, (i = globalThis.document) == null || i.addEventListener == null || i.addEventListener("visibilitychange", _.current)), u) {
|
|
38
38
|
if (!d.current && g.current) return l.current = c.current, n(a, t), x ? e(c.current) : m.current;
|
|
39
39
|
if (w) return n(a, t), e(c.current);
|
|
40
40
|
}
|
|
@@ -64,7 +64,7 @@ function s(e, t, n, o) {
|
|
|
64
64
|
return v.current = D, r(function() {
|
|
65
65
|
return g.current = !0, function() {
|
|
66
66
|
var e;
|
|
67
|
-
C && v.current.flush(), _.current &&= ((e =
|
|
67
|
+
C && v.current.flush(), _.current &&= ((e = globalThis.document) == null || e.removeEventListener == null || e.removeEventListener("visibilitychange", _.current), null), g.current = !1;
|
|
68
68
|
};
|
|
69
69
|
}, [C]), D;
|
|
70
70
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iress-oss/ids-components",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.4",
|
|
4
4
|
"description": "Iress React Component Library",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@iress-oss/ids-theme-preset": "^6.0.0-beta.1",
|
|
35
35
|
"@iress-oss/ids-tokens": "^6.0.0-beta.1",
|
|
36
|
-
"@pandacss/dev": "1.9.
|
|
36
|
+
"@pandacss/dev": "1.9.1",
|
|
37
37
|
"@testing-library/dom": "10.4.1",
|
|
38
38
|
"@testing-library/jest-dom": "6.9.1",
|
|
39
39
|
"@testing-library/react": "16.3.2",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"@types/react": "^19.2.14",
|
|
45
45
|
"@types/react-dom": "^19.2.3",
|
|
46
46
|
"@vitejs/plugin-react": "^6.0.1",
|
|
47
|
-
"@vitest/coverage-v8": "4.1.
|
|
48
|
-
"@vitest/ui": "4.1.
|
|
47
|
+
"@vitest/coverage-v8": "4.1.2",
|
|
48
|
+
"@vitest/ui": "4.1.2",
|
|
49
49
|
"concurrently": "^9.2.1",
|
|
50
|
-
"dompurify": "^3.
|
|
50
|
+
"dompurify": "^3.4.0",
|
|
51
51
|
"eslint": "10.2.0",
|
|
52
52
|
"eslint-plugin-file-progress": "^4.0.0",
|
|
53
53
|
"eslint-plugin-mdx": "3.7.0",
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
"react-dropzone": "15.0.0",
|
|
67
67
|
"react-hook-form": "7.72.1",
|
|
68
68
|
"rimraf": "^6.1.3",
|
|
69
|
-
"storybook": "10.3.
|
|
69
|
+
"storybook": "10.3.4",
|
|
70
70
|
"typescript": "5.9.3",
|
|
71
|
-
"vite": "8.0.
|
|
71
|
+
"vite": "8.0.8",
|
|
72
72
|
"vite-bundle-visualizer": "^1.2.1",
|
|
73
73
|
"vite-plugin-dts": "4.5.4",
|
|
74
74
|
"vite-plugin-static-copy": "3.3.0",
|
|
75
|
-
"vitest": "4.1.
|
|
75
|
+
"vitest": "4.1.2"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@floating-ui/react": "0.27.19",
|
|
@@ -80,9 +80,9 @@
|
|
|
80
80
|
"@tanstack/react-table": "8.21.3",
|
|
81
81
|
"@types/mdx": "^2.0.13",
|
|
82
82
|
"fuzzysort": "3.1.0",
|
|
83
|
-
"material-symbols": "0.
|
|
83
|
+
"material-symbols": "0.44.0",
|
|
84
84
|
"query-selector-shadow-dom": "1.0.1",
|
|
85
|
-
"use-debounce": "10.1.
|
|
85
|
+
"use-debounce": "10.1.1"
|
|
86
86
|
},
|
|
87
87
|
"peerDependencies": {
|
|
88
88
|
"react": "^17 || ^18 || ^19",
|