@hybr1d-tech/charizard 2.2.1 → 2.3.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/hybr1d-ui.css +1 -1
- package/dist/hybr1d-ui.js +1072 -1053
- package/dist/hybr1d-ui.umd.cjs +7 -7
- package/dist/index.d.ts +12 -3
- package/package.json +21 -20
package/dist/index.d.ts
CHANGED
|
@@ -924,6 +924,18 @@ declare interface HeaderProps {
|
|
|
924
924
|
customStyle?: React.CSSProperties;
|
|
925
925
|
}
|
|
926
926
|
|
|
927
|
+
export declare function Helmet({ title, description, canonicalUrl, keywords, ogImage, site, children, }: HelmetProps): JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare interface HelmetProps {
|
|
930
|
+
title?: string;
|
|
931
|
+
description?: string;
|
|
932
|
+
canonicalUrl?: string;
|
|
933
|
+
keywords?: string;
|
|
934
|
+
ogImage?: string;
|
|
935
|
+
site?: string;
|
|
936
|
+
children?: React_2.ReactNode;
|
|
937
|
+
}
|
|
938
|
+
|
|
927
939
|
export declare type HexColor = `#${string}`;
|
|
928
940
|
|
|
929
941
|
/**
|
|
@@ -1893,9 +1905,6 @@ declare type ModalProps = {
|
|
|
1893
1905
|
*/
|
|
1894
1906
|
export declare function ModalV2({ isOpen, title, subTitle, trigger, children, footerButtons, showBackdrop, onClose, customModalClasses, }: ModalV2Props): JSX.Element;
|
|
1895
1907
|
|
|
1896
|
-
/**
|
|
1897
|
-
* Props for the ModalV2 component.
|
|
1898
|
-
*/
|
|
1899
1908
|
declare interface ModalV2Props {
|
|
1900
1909
|
/** Indicates if the modal is open. */
|
|
1901
1910
|
isOpen?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hybr1d-tech/charizard",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"@dnd-kit/utilities": "^3.2.2",
|
|
26
26
|
"@popperjs/core": "^2.11.8",
|
|
27
27
|
"@tanstack/react-table": "^8.21.3",
|
|
28
|
-
"@zag-js/accordion": "^1.12.
|
|
29
|
-
"@zag-js/checkbox": "^1.12.
|
|
30
|
-
"@zag-js/color-picker": "^1.12.
|
|
31
|
-
"@zag-js/combobox": "^1.12.
|
|
32
|
-
"@zag-js/dialog": "^1.12.
|
|
33
|
-
"@zag-js/menu": "^1.12.
|
|
34
|
-
"@zag-js/pagination": "^1.12.
|
|
35
|
-
"@zag-js/popover": "^1.12.
|
|
36
|
-
"@zag-js/popper": "^1.12.
|
|
37
|
-
"@zag-js/radio-group": "^1.12.
|
|
38
|
-
"@zag-js/react": "^1.12.
|
|
39
|
-
"@zag-js/select": "^1.12.
|
|
40
|
-
"@zag-js/switch": "^1.12.
|
|
41
|
-
"@zag-js/tabs": "^1.12.
|
|
42
|
-
"@zag-js/tooltip": "^1.12.
|
|
28
|
+
"@zag-js/accordion": "^1.12.2",
|
|
29
|
+
"@zag-js/checkbox": "^1.12.2",
|
|
30
|
+
"@zag-js/color-picker": "^1.12.2",
|
|
31
|
+
"@zag-js/combobox": "^1.12.2",
|
|
32
|
+
"@zag-js/dialog": "^1.12.2",
|
|
33
|
+
"@zag-js/menu": "^1.12.2",
|
|
34
|
+
"@zag-js/pagination": "^1.12.2",
|
|
35
|
+
"@zag-js/popover": "^1.12.2",
|
|
36
|
+
"@zag-js/popper": "^1.12.2",
|
|
37
|
+
"@zag-js/radio-group": "^1.12.2",
|
|
38
|
+
"@zag-js/react": "^1.12.2",
|
|
39
|
+
"@zag-js/select": "^1.12.2",
|
|
40
|
+
"@zag-js/switch": "^1.12.2",
|
|
41
|
+
"@zag-js/tabs": "^1.12.2",
|
|
42
|
+
"@zag-js/tooltip": "^1.12.2",
|
|
43
43
|
"clsx": "^2.1.1",
|
|
44
44
|
"date-fns": "^4.1.0",
|
|
45
45
|
"react": "^19.1.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
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.6.0",
|
|
53
53
|
"react-select": "^5.10.1",
|
|
54
54
|
"react-toastify": "^11.0.5",
|
|
55
55
|
"react-tooltip": "^5.28.0",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"@storybook/react": "^8.6.12",
|
|
65
65
|
"@storybook/react-vite": "^8.6.12",
|
|
66
66
|
"@storybook/test": "^8.6.12",
|
|
67
|
-
"@types/node": "^22.15.
|
|
68
|
-
"@types/react": "^19.1.
|
|
69
|
-
"@types/react-dom": "^19.1.
|
|
67
|
+
"@types/node": "^22.15.17",
|
|
68
|
+
"@types/react": "^19.1.4",
|
|
69
|
+
"@types/react-dom": "^19.1.4",
|
|
70
70
|
"@vitejs/plugin-react-swc": "^3.9.0",
|
|
71
71
|
"axios": "^1.9.0",
|
|
72
72
|
"globals": "^16.1.0",
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"scripts": {
|
|
85
85
|
"dev": "vite",
|
|
86
86
|
"build": "tsc && vite build",
|
|
87
|
+
"watch": "vite build --watch",
|
|
87
88
|
"preview": "vite preview",
|
|
88
89
|
"storybook": "storybook dev -p 6006",
|
|
89
90
|
"build-storybook": "storybook build"
|