@sikka/hawa 0.21.13-next → 0.21.15-next
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/{Accordion-Tdas5UzP.d.mts → SimpleTable-MWPdRPG4.d.mts} +30 -17
- package/dist/{Accordion-qytu5Ih4.d.ts → SimpleTable-VeNZID_0.d.ts} +30 -17
- package/dist/accordion/index.d.mts +3 -18
- package/dist/accordion/index.d.ts +3 -18
- package/dist/accordion/index.js +1330 -953
- package/dist/accordion/index.mjs +25 -17
- package/dist/button/index.js +68 -47
- package/dist/button/index.mjs +10 -3
- package/dist/card/index.d.mts +17 -0
- package/dist/card/index.d.ts +17 -0
- package/dist/card/index.js +139 -0
- package/dist/card/index.mjs +17 -0
- package/dist/{chunk-SMZ7Z4DO.mjs → chunk-2WUC3DE2.mjs} +1418 -1153
- package/dist/chunk-C4CBXIG5.mjs +25 -4
- package/dist/chunk-GDIBR47V.mjs +0 -0
- package/dist/chunk-LZAC5DLW.mjs +10 -4
- package/dist/{chunk-J5NJEHQU.mjs → chunk-ND4BWUKH.mjs} +8 -3
- package/dist/chunk-OLJSILJM.mjs +68 -24
- package/dist/chunk-PUQV6URH.mjs +8 -3
- package/dist/chunk-SYB66JGL.mjs +13 -5
- package/dist/chunk-TE3BKEXL.mjs +5 -4
- package/dist/{chunk-ENZDFGFY.mjs → chunk-TWDZB2VH.mjs} +19 -5
- package/dist/chunk-VBTYVVA7.mjs +93 -0
- package/dist/{chunk-NFLMC26M.mjs → chunk-VCGW5DIP.mjs} +20 -5
- package/dist/{chunk-L55L4HKN.mjs → chunk-VFP56EVG.mjs} +9 -4
- package/dist/chunk-X3SMPIA3.mjs +0 -0
- package/dist/dropdownMenu/index.js +129 -97
- package/dist/dropdownMenu/index.mjs +40 -2
- package/dist/hooks/index.js +130 -66
- package/dist/hooks/index.mjs +30 -2
- package/dist/index.d.mts +85 -98
- package/dist/index.d.ts +85 -98
- package/dist/index.js +6971 -6334
- package/dist/index.mjs +988 -443
- package/dist/loading/index.js +59 -26
- package/dist/loading/index.mjs +8 -2
- package/dist/navigationMenu/index.js +94 -68
- package/dist/navigationMenu/index.mjs +27 -2
- package/dist/sheet/index.js +88 -63
- package/dist/sheet/index.mjs +25 -2
- package/dist/skeleton/index.js +45 -12
- package/dist/skeleton/index.mjs +7 -2
- package/dist/splitButton/index.js +128 -103
- package/dist/splitButton/index.mjs +15 -7
- package/dist/tooltip/index.js +55 -41
- package/dist/tooltip/index.mjs +7 -2
- package/package.json +7 -7
|
@@ -4,6 +4,34 @@ import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
|
4
4
|
import { R as RadiusType, D as DirectionType } from './commonTypes-CKtkuNFH.mjs';
|
|
5
5
|
import { RowData, ColumnDef } from '@tanstack/react-table';
|
|
6
6
|
|
|
7
|
+
type AccordionItemProps = {
|
|
8
|
+
trigger: string;
|
|
9
|
+
content: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
chip?: ChipTypes;
|
|
12
|
+
};
|
|
13
|
+
type AccordionProps = {
|
|
14
|
+
items: AccordionItemProps[];
|
|
15
|
+
itemClassNames?: string;
|
|
16
|
+
triggerclassNames?: string;
|
|
17
|
+
contentclassNames?: string;
|
|
18
|
+
design?: "default" | "separated";
|
|
19
|
+
} & React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root>;
|
|
20
|
+
declare const Accordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<HTMLDivElement>>;
|
|
21
|
+
|
|
22
|
+
declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
|
|
24
|
+
declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
25
|
+
unstyled?: boolean | undefined;
|
|
26
|
+
hideArrow?: boolean | undefined;
|
|
27
|
+
} & React.RefAttributes<HTMLButtonElement>>;
|
|
28
|
+
|
|
29
|
+
declare const AccordionRoot: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
|
|
30
|
+
|
|
31
|
+
declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
32
|
+
unstyled?: boolean | undefined;
|
|
33
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
|
|
7
35
|
type ChipColors = "green" | "blue" | "red" | "yellow" | "orange" | "purple" | "cyan" | "hyper" | "oceanic";
|
|
8
36
|
type ChipTypes = React__default.HTMLAttributes<HTMLSpanElement> & {
|
|
9
37
|
/** The text inside the chip */
|
|
@@ -28,7 +56,7 @@ declare const Chip: React__default.ForwardRefExoticComponent<React__default.HTML
|
|
|
28
56
|
/** The color of the chip, must be a tailwind color */
|
|
29
57
|
color?: ChipColors | undefined;
|
|
30
58
|
/** The size of the chip */
|
|
31
|
-
size?: "small" | "
|
|
59
|
+
size?: "small" | "normal" | "large" | undefined;
|
|
32
60
|
/** Enable/Disable the dot before the label of the chip */
|
|
33
61
|
dot?: boolean | undefined;
|
|
34
62
|
/** Red/Green dot next to the label of the chip indicating online/offline or available/unavailable */
|
|
@@ -95,19 +123,4 @@ declare module "@tanstack/table-core" {
|
|
|
95
123
|
}
|
|
96
124
|
declare const SimpleTable: React.FC<SimpleTableProps>;
|
|
97
125
|
|
|
98
|
-
type AccordionItemProps
|
|
99
|
-
trigger: string;
|
|
100
|
-
content: string;
|
|
101
|
-
disabled?: boolean;
|
|
102
|
-
chip?: ChipTypes;
|
|
103
|
-
};
|
|
104
|
-
type AccordionProps = {
|
|
105
|
-
items: AccordionItemProps[];
|
|
106
|
-
itemClassNames?: string;
|
|
107
|
-
triggerclassNames?: string;
|
|
108
|
-
contentclassNames?: string;
|
|
109
|
-
design?: "default" | "separated";
|
|
110
|
-
} & React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root>;
|
|
111
|
-
declare const Accordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<HTMLDivElement>>;
|
|
112
|
-
|
|
113
|
-
export { Accordion as A, type ChipTypes as C, DataTable as D, SimpleTable as S, type AccordionItemProps as a, type ChipColors as b, Chip as c };
|
|
126
|
+
export { Accordion as A, type ChipTypes as C, DataTable as D, SimpleTable as S, type ChipColors as a, type AccordionItemProps as b, AccordionItem as c, AccordionTrigger as d, AccordionRoot as e, AccordionContent as f, Chip as g };
|
|
@@ -4,6 +4,34 @@ import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
|
4
4
|
import { R as RadiusType, D as DirectionType } from './commonTypes-CKtkuNFH.js';
|
|
5
5
|
import { RowData, ColumnDef } from '@tanstack/react-table';
|
|
6
6
|
|
|
7
|
+
type AccordionItemProps = {
|
|
8
|
+
trigger: string;
|
|
9
|
+
content: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
chip?: ChipTypes;
|
|
12
|
+
};
|
|
13
|
+
type AccordionProps = {
|
|
14
|
+
items: AccordionItemProps[];
|
|
15
|
+
itemClassNames?: string;
|
|
16
|
+
triggerclassNames?: string;
|
|
17
|
+
contentclassNames?: string;
|
|
18
|
+
design?: "default" | "separated";
|
|
19
|
+
} & React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root>;
|
|
20
|
+
declare const Accordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<HTMLDivElement>>;
|
|
21
|
+
|
|
22
|
+
declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
|
|
24
|
+
declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
25
|
+
unstyled?: boolean | undefined;
|
|
26
|
+
hideArrow?: boolean | undefined;
|
|
27
|
+
} & React.RefAttributes<HTMLButtonElement>>;
|
|
28
|
+
|
|
29
|
+
declare const AccordionRoot: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
|
|
30
|
+
|
|
31
|
+
declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
32
|
+
unstyled?: boolean | undefined;
|
|
33
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
|
|
7
35
|
type ChipColors = "green" | "blue" | "red" | "yellow" | "orange" | "purple" | "cyan" | "hyper" | "oceanic";
|
|
8
36
|
type ChipTypes = React__default.HTMLAttributes<HTMLSpanElement> & {
|
|
9
37
|
/** The text inside the chip */
|
|
@@ -28,7 +56,7 @@ declare const Chip: React__default.ForwardRefExoticComponent<React__default.HTML
|
|
|
28
56
|
/** The color of the chip, must be a tailwind color */
|
|
29
57
|
color?: ChipColors | undefined;
|
|
30
58
|
/** The size of the chip */
|
|
31
|
-
size?: "small" | "
|
|
59
|
+
size?: "small" | "normal" | "large" | undefined;
|
|
32
60
|
/** Enable/Disable the dot before the label of the chip */
|
|
33
61
|
dot?: boolean | undefined;
|
|
34
62
|
/** Red/Green dot next to the label of the chip indicating online/offline or available/unavailable */
|
|
@@ -95,19 +123,4 @@ declare module "@tanstack/table-core" {
|
|
|
95
123
|
}
|
|
96
124
|
declare const SimpleTable: React.FC<SimpleTableProps>;
|
|
97
125
|
|
|
98
|
-
type AccordionItemProps
|
|
99
|
-
trigger: string;
|
|
100
|
-
content: string;
|
|
101
|
-
disabled?: boolean;
|
|
102
|
-
chip?: ChipTypes;
|
|
103
|
-
};
|
|
104
|
-
type AccordionProps = {
|
|
105
|
-
items: AccordionItemProps[];
|
|
106
|
-
itemClassNames?: string;
|
|
107
|
-
triggerclassNames?: string;
|
|
108
|
-
contentclassNames?: string;
|
|
109
|
-
design?: "default" | "separated";
|
|
110
|
-
} & React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root>;
|
|
111
|
-
declare const Accordion: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<HTMLDivElement>>;
|
|
112
|
-
|
|
113
|
-
export { Accordion as A, type ChipTypes as C, DataTable as D, SimpleTable as S, type AccordionItemProps as a, type ChipColors as b, Chip as c };
|
|
126
|
+
export { Accordion as A, type ChipTypes as C, DataTable as D, SimpleTable as S, type ChipColors as a, type AccordionItemProps as b, AccordionItem as c, AccordionTrigger as d, AccordionRoot as e, AccordionContent as f, Chip as g };
|
|
@@ -1,20 +1,5 @@
|
|
|
1
|
-
export { A as Accordion,
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
export { A as Accordion, f as AccordionContent, c as AccordionItem, b as AccordionItemProps, e as AccordionRoot, d as AccordionTrigger } from '../SimpleTable-MWPdRPG4.mjs';
|
|
2
|
+
import 'react';
|
|
3
|
+
import '@radix-ui/react-accordion';
|
|
4
4
|
import '../commonTypes-CKtkuNFH.mjs';
|
|
5
5
|
import '@tanstack/react-table';
|
|
6
|
-
|
|
7
|
-
declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
|
|
9
|
-
declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
10
|
-
unstyled?: boolean | undefined;
|
|
11
|
-
hideArrow?: boolean | undefined;
|
|
12
|
-
} & React.RefAttributes<HTMLButtonElement>>;
|
|
13
|
-
|
|
14
|
-
declare const AccordionRoot: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
|
|
15
|
-
|
|
16
|
-
declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
17
|
-
unstyled?: boolean | undefined;
|
|
18
|
-
} & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
-
|
|
20
|
-
export { AccordionContent, AccordionItem, AccordionRoot, AccordionTrigger };
|
|
@@ -1,20 +1,5 @@
|
|
|
1
|
-
export { A as Accordion,
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
export { A as Accordion, f as AccordionContent, c as AccordionItem, b as AccordionItemProps, e as AccordionRoot, d as AccordionTrigger } from '../SimpleTable-VeNZID_0.js';
|
|
2
|
+
import 'react';
|
|
3
|
+
import '@radix-ui/react-accordion';
|
|
4
4
|
import '../commonTypes-CKtkuNFH.js';
|
|
5
5
|
import '@tanstack/react-table';
|
|
6
|
-
|
|
7
|
-
declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
|
|
9
|
-
declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
10
|
-
unstyled?: boolean | undefined;
|
|
11
|
-
hideArrow?: boolean | undefined;
|
|
12
|
-
} & React.RefAttributes<HTMLButtonElement>>;
|
|
13
|
-
|
|
14
|
-
declare const AccordionRoot: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
|
|
15
|
-
|
|
16
|
-
declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
17
|
-
unstyled?: boolean | undefined;
|
|
18
|
-
} & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
-
|
|
20
|
-
export { AccordionContent, AccordionItem, AccordionRoot, AccordionTrigger };
|