@iress-oss/ids-components 6.0.0-alpha.20 → 6.0.0-alpha.21
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/{Button-BTkololu.js → Button-BwZzMODc.js} +8 -9
- package/dist/{Provider-B87u_maF.js → Provider-Dw49edAo.js} +21 -31
- package/dist/components/Alert/Alert.js +34 -34
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Button/CloseButton/CloseButton.js +12 -11
- package/dist/components/Button/index.js +1 -1
- package/dist/components/Field/components/FieldFooter.js +10 -9
- package/dist/components/Field/components/FieldHint.js +3 -2
- package/dist/components/Filter/Filter.js +2 -1
- package/dist/components/Filter/components/FilterResetButton.js +1 -1
- package/dist/components/Filter/components/FilterSearch.d.ts +1 -1
- package/dist/components/Icon/Icon.constants.d.ts +7 -0
- package/dist/components/Icon/Icon.constants.js +10 -0
- package/dist/components/Icon/Icon.d.ts +34 -16
- package/dist/components/Icon/Icon.js +68 -30
- package/dist/components/Icon/Icon.styles.d.ts +23 -0
- package/dist/components/Icon/Icon.styles.js +38 -4
- package/dist/components/Icon/IconProvider.d.ts +100 -0
- package/dist/components/Icon/IconProvider.js +66 -0
- package/dist/components/Icon/components/FontLoader.d.ts +31 -0
- package/dist/components/Icon/components/FontLoader.js +29 -0
- package/dist/components/Icon/helpers/getMaterialSymbolsList.d.ts +12 -0
- package/dist/components/Icon/helpers/getMaterialSymbolsList.js +12 -0
- package/dist/components/Icon/helpers/iconMapping.d.ts +78 -0
- package/dist/components/Icon/helpers/iconMapping.js +75 -0
- package/dist/components/Icon/hooks/useDynamicFontSubsetting.d.ts +45 -0
- package/dist/components/Icon/hooks/useDynamicFontSubsetting.js +78 -0
- package/dist/components/Icon/index.d.ts +2 -0
- package/dist/components/Icon/index.js +6 -2
- package/dist/components/Input/Input.js +1 -1
- package/dist/components/Input/Input.styles.js +12 -1
- package/dist/components/Link/Link.js +39 -40
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/Panel/Panel.styles.js +1 -1
- package/dist/components/Placeholder/Placeholder.d.ts +5 -1
- package/dist/components/Placeholder/Placeholder.js +48 -28
- package/dist/components/Placeholder/Placeholder.styles.js +10 -9
- package/dist/components/Progress/Progress.js +1 -1
- package/dist/components/Provider/Provider.d.ts +9 -5
- package/dist/components/Provider/Provider.js +5 -2
- package/dist/components/Provider/index.js +1 -1
- package/dist/components/RichSelect/RichSelect.styles.js +1 -1
- package/dist/components/RichSelect/SelectCreate/SelectCreate.js +1 -0
- package/dist/components/RichSelect/SelectHeading/SelectHeading.js +1 -1
- package/dist/components/RichSelect/SelectLabel/SelectLabel.styles.d.ts +1 -1
- package/dist/components/RichSelect/SelectSearchInput/SelectSearchInput.js +11 -10
- package/dist/components/RichSelect/SelectTags/SelectTags.js +3 -2
- package/dist/components/RichSelect/SelectTags/SelectTags.styles.d.ts +1 -1
- package/dist/components/SkipLink/SkipLink.js +1 -1
- package/dist/components/Slideout/components/SlideoutInner.js +1 -1
- package/dist/components/Slideout/hooks/usePushElement.js +1 -1
- package/dist/components/Spinner/Spinner.js +5 -4
- package/dist/components/TabSet/TabSet.styles.js +3 -1
- package/dist/components/Table/Table.styles.js +7 -3
- package/dist/components/Table/components/TableSortButton.js +24 -15
- package/dist/components/Tag/Tag.js +1 -1
- package/dist/components/Toaster/components/Toast/Toast.js +30 -30
- package/dist/components/Toaster/components/Toast/Toast.styles.d.ts +1 -1
- package/dist/components/Toaster/components/Toast/Toast.styles.js +0 -4
- package/dist/{index-0AvnPY9d.js → index-Bir9MtY7.js} +0 -4
- package/dist/index.d-CZvOUeIl.js +3808 -0
- package/dist/main.js +257 -253
- package/dist/patterns/Loading/components/ValidateLoading.js +1 -1
- package/dist/patterns/Shadow/Shadow.d.ts +0 -4
- package/dist/patterns/Shadow/Shadow.js +407 -459
- package/dist/style.css +1 -1
- package/dist/styled-system/recipes/table.d.ts +1 -1
- package/dist/styled-system/tokens/tokens.d.ts +1 -1
- package/dist/types.d.ts +4 -0
- package/package.json +5 -4
|
@@ -28,7 +28,7 @@ type TableVariantMap = {
|
|
|
28
28
|
[key in keyof TableVariant]: Array<TableVariant[key]>
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
type TableSlot = "root" | "table" | "caption" | "sortHeader" | "sortIcon" | "activator" | "rowGroupHeader"
|
|
31
|
+
type TableSlot = "root" | "table" | "caption" | "sortHeader" | "sortIcon" | "sortIconActive" | "activator" | "rowGroupHeader"
|
|
32
32
|
|
|
33
33
|
export type TableVariantProps = {
|
|
34
34
|
[key in keyof TableVariant]?: ConditionalValue<TableVariant[key]> | undefined
|
|
@@ -3,7 +3,7 @@ export type Token = `borders.${BorderToken}` | `colors.${ColorToken}` | `radii.$
|
|
|
3
3
|
|
|
4
4
|
export type ColorPalette = "colour.primary.fill" | "colour.primary.fillHover" | "colour.primary.onFill" | "colour.primary.surface" | "colour.primary.surfaceHover" | "colour.primary.text" | "colour.neutral.10" | "colour.neutral.20" | "colour.neutral.30" | "colour.neutral.40" | "colour.neutral.50" | "colour.neutral.60" | "colour.neutral.70" | "colour.neutral.80" | "colour.neutral.90" | "colour.accent.1" | "colour.accent.2" | "colour.system.success.fill" | "colour.system.success.fillHover" | "colour.system.success.onFill" | "colour.system.success.surface" | "colour.system.success.surfaceHover" | "colour.system.success.text" | "colour.system.danger.fill" | "colour.system.danger.fillHover" | "colour.system.danger.onFill" | "colour.system.danger.surface" | "colour.system.danger.surfaceHover" | "colour.system.danger.text" | "colour.system.warning.fill" | "colour.system.warning.onFill" | "colour.system.warning.fillHover" | "colour.system.warning.surface" | "colour.system.warning.text" | "colour.system.warning.surfaceHover" | "colour.system.info.fill" | "colour.system.info.onFill" | "colour.system.info.fillHover" | "colour.system.info.surface" | "colour.system.info.text" | "colour.system.info.surfaceHover" | "colour.system.backdrop.fill" | "colour.data.subtle.10" | "colour.data.subtle.20" | "colour.data.subtle.30" | "colour.data.subtle.40" | "colour.data.subtle.50" | "colour.data.subtle.60" | "colour.data.subtle.70" | "colour.data.subtle.80" | "colour.data.subtle.90" | "colour.data.bold.10" | "colour.data.bold.20" | "colour.data.bold.30" | "colour.data.bold.40" | "colour.data.bold.50" | "colour.data.bold.60" | "colour.data.bold.70" | "colour.data.bold.80" | "colour.data.bold.90" | "transparent" | "page" | "alt" | "muted" | "text"
|
|
5
5
|
|
|
6
|
-
export type BorderToken = "alert" | "divider" | "input" | "
|
|
6
|
+
export type BorderToken = "alert" | "divider" | "input" | "hover" | "table"
|
|
7
7
|
|
|
8
8
|
export type ColorToken = "colour.primary.fill" | "colour.primary.fillHover" | "colour.primary.onFill" | "colour.primary.surface" | "colour.primary.surfaceHover" | "colour.primary.text" | "colour.neutral.10" | "colour.neutral.20" | "colour.neutral.30" | "colour.neutral.40" | "colour.neutral.50" | "colour.neutral.60" | "colour.neutral.70" | "colour.neutral.80" | "colour.neutral.90" | "colour.accent.1" | "colour.accent.2" | "colour.system.success.fill" | "colour.system.success.fillHover" | "colour.system.success.onFill" | "colour.system.success.surface" | "colour.system.success.surfaceHover" | "colour.system.success.text" | "colour.system.danger.fill" | "colour.system.danger.fillHover" | "colour.system.danger.onFill" | "colour.system.danger.surface" | "colour.system.danger.surfaceHover" | "colour.system.danger.text" | "colour.system.warning.fill" | "colour.system.warning.onFill" | "colour.system.warning.fillHover" | "colour.system.warning.surface" | "colour.system.warning.text" | "colour.system.warning.surfaceHover" | "colour.system.info.fill" | "colour.system.info.onFill" | "colour.system.info.fillHover" | "colour.system.info.surface" | "colour.system.info.text" | "colour.system.info.surfaceHover" | "colour.system.backdrop.fill" | "colour.data.subtle.10" | "colour.data.subtle.20" | "colour.data.subtle.30" | "colour.data.subtle.40" | "colour.data.subtle.50" | "colour.data.subtle.60" | "colour.data.subtle.70" | "colour.data.subtle.80" | "colour.data.subtle.90" | "colour.data.bold.10" | "colour.data.bold.20" | "colour.data.bold.30" | "colour.data.bold.40" | "colour.data.bold.50" | "colour.data.bold.60" | "colour.data.bold.70" | "colour.data.bold.80" | "colour.data.bold.90" | "transparent" | "page" | "alt" | "muted" | "text" | "colorPalette"
|
|
9
9
|
|
package/dist/types.d.ts
CHANGED
|
@@ -44,6 +44,10 @@ export type PositiveSpacingToken = Exclude<PureSpacingToken, `-${string}` | `but
|
|
|
44
44
|
* Responsive prop type that allows a single value or an object specifying values per breakpoint.
|
|
45
45
|
*/
|
|
46
46
|
export type ResponsiveProp<T> = T | Partial<Record<Breakpoints | 'base', T>>;
|
|
47
|
+
/**
|
|
48
|
+
* A container that can be used for injecting stylesheets.
|
|
49
|
+
*/
|
|
50
|
+
export type ShadowContainer = ShadowRoot | HTMLElement | RefObject<ShadowRoot | HTMLElement | null> | null;
|
|
47
51
|
/**
|
|
48
52
|
* All available size tokens in the design system.
|
|
49
53
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iress-oss/ids-components",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.21",
|
|
4
4
|
"description": "Iress React Component Library",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@iress-oss/ids-tokens": "^6.0.0-alpha.10",
|
|
33
|
-
"@pandacss/dev": "1.
|
|
33
|
+
"@pandacss/dev": "1.8.0",
|
|
34
34
|
"@testing-library/dom": "10.4.1",
|
|
35
35
|
"@testing-library/jest-dom": "6.9.1",
|
|
36
36
|
"@testing-library/react": "16.3.1",
|
|
@@ -59,9 +59,9 @@
|
|
|
59
59
|
"react": "^19.2.1",
|
|
60
60
|
"react-dom": "^19.2.1",
|
|
61
61
|
"react-dropzone": "14.3.8",
|
|
62
|
-
"react-hook-form": "7.
|
|
62
|
+
"react-hook-form": "7.70.0",
|
|
63
63
|
"rimraf": "^6.1.2",
|
|
64
|
-
"storybook": "10.1.
|
|
64
|
+
"storybook": "10.1.11",
|
|
65
65
|
"typescript": "5.9.3",
|
|
66
66
|
"vite": "7.3.0",
|
|
67
67
|
"vite-bundle-visualizer": "^1.2.1",
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"@tanstack/react-table": "8.21.3",
|
|
77
77
|
"@types/mdx": "^2.0.13",
|
|
78
78
|
"fuzzysort": "3.1.0",
|
|
79
|
+
"material-symbols": "0.40.2",
|
|
79
80
|
"query-selector-shadow-dom": "1.0.1",
|
|
80
81
|
"use-debounce": "10.0.6"
|
|
81
82
|
},
|