@hybr1d-tech/charizard 2.0.11 → 2.0.13
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/hybr1d-ui.js +1123 -1125
- package/dist/hybr1d-ui.umd.cjs +10 -10
- package/dist/index.d.ts +8 -7
- package/package.json +29 -29
package/dist/index.d.ts
CHANGED
|
@@ -28,26 +28,27 @@ import { VisibilityState } from '@tanstack/react-table';
|
|
|
28
28
|
import * as zagSwitch from '@zag-js/switch';
|
|
29
29
|
|
|
30
30
|
export declare const Accordion: {
|
|
31
|
-
({ children, defaultActiveKey, customClasses, customStyle, isMulti, }: AccordionProps): JSX_2.Element;
|
|
31
|
+
({ children, defaultActiveKey, customClasses, customStyle, isMulti, isOpenAll, allEventKeys, }: AccordionProps): JSX_2.Element;
|
|
32
32
|
Item({ eventKey, children }: ItemProps): JSX_2.Element | undefined;
|
|
33
33
|
Header({ eventKey, children, customClasses, customStyle }: HeaderProps): JSX_2.Element | undefined;
|
|
34
34
|
Collapse({ eventKey, children, customClasses, customStyle }: CollapseProps): JSX_2.Element;
|
|
35
35
|
};
|
|
36
36
|
|
|
37
37
|
declare interface AccordionContextValue {
|
|
38
|
-
api: accordion.
|
|
39
|
-
|
|
40
|
-
send: (event: any) => void;
|
|
38
|
+
api: ReturnType<typeof accordion.connect> | null;
|
|
39
|
+
service: any;
|
|
41
40
|
activeEventKey: string[];
|
|
42
|
-
setActiveEventKey: (
|
|
41
|
+
setActiveEventKey: (keys: string[]) => void;
|
|
43
42
|
}
|
|
44
43
|
|
|
45
|
-
declare interface AccordionProps {
|
|
44
|
+
declare interface AccordionProps extends Partial<accordion.Props> {
|
|
46
45
|
children: React.ReactNode;
|
|
47
|
-
defaultActiveKey?: string
|
|
46
|
+
defaultActiveKey?: string;
|
|
48
47
|
customClasses?: string;
|
|
49
48
|
customStyle?: React.CSSProperties;
|
|
50
49
|
isMulti?: boolean;
|
|
50
|
+
isOpenAll?: boolean;
|
|
51
|
+
allEventKeys?: string[];
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
export declare const ActionsDropdown: React_2.ForwardRefExoticComponent<ActionsDropdownProps & React_2.RefAttributes<unknown>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hybr1d-tech/charizard",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -25,31 +25,31 @@
|
|
|
25
25
|
"@dnd-kit/utilities": "^3.2.2",
|
|
26
26
|
"@popperjs/core": "^2.11.8",
|
|
27
27
|
"@tanstack/react-table": "^8.21.2",
|
|
28
|
-
"@zag-js/accordion": "^1.
|
|
29
|
-
"@zag-js/checkbox": "^1.
|
|
30
|
-
"@zag-js/color-picker": "^1.
|
|
31
|
-
"@zag-js/combobox": "^1.
|
|
32
|
-
"@zag-js/dialog": "^1.
|
|
33
|
-
"@zag-js/menu": "^1.
|
|
34
|
-
"@zag-js/pagination": "^1.
|
|
35
|
-
"@zag-js/popover": "^1.
|
|
36
|
-
"@zag-js/popper": "^1.
|
|
37
|
-
"@zag-js/radio-group": "^1.
|
|
38
|
-
"@zag-js/react": "^1.
|
|
39
|
-
"@zag-js/select": "^1.
|
|
40
|
-
"@zag-js/switch": "^1.
|
|
41
|
-
"@zag-js/tabs": "^1.
|
|
42
|
-
"@zag-js/tooltip": "^1.
|
|
28
|
+
"@zag-js/accordion": "^1.8.2",
|
|
29
|
+
"@zag-js/checkbox": "^1.8.2",
|
|
30
|
+
"@zag-js/color-picker": "^1.8.2",
|
|
31
|
+
"@zag-js/combobox": "^1.8.2",
|
|
32
|
+
"@zag-js/dialog": "^1.8.2",
|
|
33
|
+
"@zag-js/menu": "^1.8.2",
|
|
34
|
+
"@zag-js/pagination": "^1.8.2",
|
|
35
|
+
"@zag-js/popover": "^1.8.2",
|
|
36
|
+
"@zag-js/popper": "^1.8.2",
|
|
37
|
+
"@zag-js/radio-group": "^1.8.2",
|
|
38
|
+
"@zag-js/react": "^1.8.2",
|
|
39
|
+
"@zag-js/select": "^1.8.2",
|
|
40
|
+
"@zag-js/switch": "^1.8.2",
|
|
41
|
+
"@zag-js/tabs": "^1.8.2",
|
|
42
|
+
"@zag-js/tooltip": "^1.8.2",
|
|
43
43
|
"clsx": "^2.1.1",
|
|
44
44
|
"date-fns": "^4.1.0",
|
|
45
45
|
"react": "^18.3.1",
|
|
46
46
|
"react-country-flag": "^3.1.0",
|
|
47
|
-
"react-day-picker": "^9.6.
|
|
47
|
+
"react-day-picker": "^9.6.5",
|
|
48
48
|
"react-dom": "^18.3.1",
|
|
49
49
|
"react-infinite-scroll-component": "^6.1.0",
|
|
50
50
|
"react-inlinesvg": "^4.2.0",
|
|
51
51
|
"react-intersection-observer": "^9.8.0",
|
|
52
|
-
"react-router": "7.
|
|
52
|
+
"react-router": "7.5.0",
|
|
53
53
|
"react-select": "^5.10.1",
|
|
54
54
|
"react-toastify": "^11.0.5",
|
|
55
55
|
"react-tooltip": "^5.28.0",
|
|
@@ -57,23 +57,23 @@
|
|
|
57
57
|
"zustand": "^5.0.3"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@storybook/addon-essentials": "^8.6.
|
|
61
|
-
"@storybook/addon-interactions": "^8.6.
|
|
62
|
-
"@storybook/addon-links": "^8.6.
|
|
63
|
-
"@storybook/blocks": "^8.6.
|
|
64
|
-
"@storybook/react": "^8.6.
|
|
65
|
-
"@storybook/react-vite": "^8.6.
|
|
66
|
-
"@storybook/test": "^8.6.
|
|
67
|
-
"@types/node": "^22.
|
|
60
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
61
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
62
|
+
"@storybook/addon-links": "^8.6.12",
|
|
63
|
+
"@storybook/blocks": "^8.6.12",
|
|
64
|
+
"@storybook/react": "^8.6.12",
|
|
65
|
+
"@storybook/react-vite": "^8.6.12",
|
|
66
|
+
"@storybook/test": "^8.6.12",
|
|
67
|
+
"@types/node": "^22.14.0",
|
|
68
68
|
"@types/react": "^18.3.13",
|
|
69
69
|
"@types/react-dom": "^18.3.1",
|
|
70
70
|
"@vitejs/plugin-react-swc": "^3.8.1",
|
|
71
71
|
"axios": "^1.8.4",
|
|
72
72
|
"globals": "^16.0.0",
|
|
73
|
-
"storybook": "^8.6.
|
|
73
|
+
"storybook": "^8.6.12",
|
|
74
74
|
"storybook-css-modules-preset": "^1.1.1",
|
|
75
|
-
"typescript": "5.8.
|
|
76
|
-
"vite": "^6.2.
|
|
75
|
+
"typescript": "5.8.3",
|
|
76
|
+
"vite": "^6.2.5",
|
|
77
77
|
"vite-plugin-checker": "^0.9.1",
|
|
78
78
|
"vite-plugin-dts": "4.5.3",
|
|
79
79
|
"vite-plugin-libcss": "^1.1.1"
|