@hybr1d-tech/charizard 2.0.1 → 2.0.2
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 +1014 -1018
- package/dist/hybr1d-ui.umd.cjs +10 -10
- package/dist/index.d.ts +2 -13
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as accordion from '@zag-js/accordion';
|
|
2
1
|
import { ActionMeta } from 'react-select';
|
|
3
2
|
import { ClassNames } from 'react-day-picker';
|
|
4
3
|
import { ColumnPinningState } from '@tanstack/react-table';
|
|
@@ -29,19 +28,11 @@ import * as zagSwitch from '@zag-js/switch';
|
|
|
29
28
|
|
|
30
29
|
export declare const Accordion: {
|
|
31
30
|
({ children, defaultActiveKey, customClasses, customStyle, isMulti, isOpenAll, allEventKeys, }: AccordionProps): JSX_2.Element;
|
|
32
|
-
Item({ eventKey, children }: ItemProps): JSX_2.Element
|
|
33
|
-
Header({ eventKey, children, customClasses, customStyle }: HeaderProps): JSX_2.Element |
|
|
31
|
+
Item({ eventKey, children }: ItemProps): JSX_2.Element;
|
|
32
|
+
Header({ eventKey, children, customClasses, customStyle }: HeaderProps): JSX_2.Element | null;
|
|
34
33
|
Collapse({ eventKey, children, customClasses, customStyle }: CollapseProps): JSX_2.Element;
|
|
35
34
|
};
|
|
36
35
|
|
|
37
|
-
declare interface AccordionContextValue {
|
|
38
|
-
api: accordion.Api<any>;
|
|
39
|
-
state: any;
|
|
40
|
-
send: (event: any) => void;
|
|
41
|
-
activeEventKey: string[];
|
|
42
|
-
setActiveEventKey: (key: string[]) => void;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
36
|
declare interface AccordionProps {
|
|
46
37
|
children: React.ReactNode;
|
|
47
38
|
defaultActiveKey?: string;
|
|
@@ -3304,8 +3295,6 @@ declare interface UploadProps {
|
|
|
3304
3295
|
variant?: string;
|
|
3305
3296
|
}
|
|
3306
3297
|
|
|
3307
|
-
export declare const useAccordionStore: UseBoundStore<StoreApi<AccordionContextValue>>;
|
|
3308
|
-
|
|
3309
3298
|
export declare const useBreadcrumbs: (breadcrumbs: Breadcrumb[]) => void;
|
|
3310
3299
|
|
|
3311
3300
|
export declare const useBreadcrumbsStore: UseBoundStore<StoreApi<BreadcrumbsStore>>;
|