@sikka/hawa 0.21.8-next → 0.21.10-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/{DropdownMenu-7kbM3xU3.d.ts → DropdownMenu-jh4puuXw.d.ts} +2 -11
- package/dist/{DropdownMenu-7kbM3xU3.d.mts → DropdownMenu-vm2kRAhL.d.mts} +2 -11
- package/dist/accordion/index.d.mts +5 -0
- package/dist/accordion/index.d.ts +5 -0
- package/dist/accordion/index.js +2623 -0
- package/dist/accordion/index.mjs +18 -0
- package/dist/{Button → button}/index.d.mts +1 -9
- package/dist/{Button → button}/index.d.ts +1 -9
- package/dist/button/index.js +300 -0
- package/dist/button/index.mjs +10 -0
- package/dist/{chunk-FS2YO43T.mjs → chunk-BCZU5ZPQ.mjs} +35 -219
- package/dist/chunk-FD5EBARW.mjs +184 -0
- package/dist/chunk-J5NJEHQU.mjs +34 -0
- package/dist/{Button/index.mjs → chunk-KEWQFODI.mjs} +6 -67
- package/dist/chunk-MOOUHJME.mjs +7430 -0
- package/dist/chunk-TE3BKEXL.mjs +10 -0
- package/dist/commonTypes-CKtkuNFH.d.mts +11 -0
- package/dist/commonTypes-CKtkuNFH.d.ts +11 -0
- package/dist/index-ES6s-ReC.d.mts +122 -0
- package/dist/index-Vm7X1eoL.d.ts +122 -0
- package/dist/index.css +3 -0
- package/dist/index.d.mts +9 -133
- package/dist/index.d.ts +9 -133
- package/dist/index.js +598 -664
- package/dist/index.mjs +595 -7811
- package/dist/skeleton/index.d.mts +10 -0
- package/dist/skeleton/index.d.ts +10 -0
- package/dist/skeleton/index.js +75 -0
- package/dist/skeleton/index.mjs +7 -0
- package/dist/splitButton/index.d.mts +15 -0
- package/dist/splitButton/index.d.ts +15 -0
- package/dist/{Button → splitButton}/index.js +292 -295
- package/dist/splitButton/index.mjs +76 -0
- package/package.json +3 -3
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
3
|
-
|
|
4
|
-
type DirectionType = "rtl" | "ltr";
|
|
5
|
-
type PositionType = "top" | "bottom" | "right" | "left";
|
|
6
|
-
type SeverityType = "info" | "warning" | "error" | "success" | "none";
|
|
7
|
-
type OrientationType = "vertical" | "horizontal";
|
|
8
|
-
type RadiusType = "full" | "inherit" | "none";
|
|
9
|
-
type RadioOptionType = {
|
|
10
|
-
label: string;
|
|
11
|
-
value: string;
|
|
12
|
-
};
|
|
3
|
+
import { D as DirectionType } from './commonTypes-CKtkuNFH.js';
|
|
13
4
|
|
|
14
5
|
declare const DropdownMenuRoot: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
15
6
|
declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -101,4 +92,4 @@ interface DropdownMenuRadioProps {
|
|
|
101
92
|
}
|
|
102
93
|
declare const DropdownMenuRadio: React.FC<DropdownMenuRadioProps>;
|
|
103
94
|
|
|
104
|
-
export {
|
|
95
|
+
export { DropdownMenu as D, type MenuItemType as M, type SubItem as S, DropdownMenuRoot as a, DropdownMenuRadio as b, DropdownMenuTrigger as c, DropdownMenuContent as d, DropdownMenuItem as e, DropdownMenuCheckboxItem as f, DropdownMenuRadioItem as g, DropdownMenuLabel as h, DropdownMenuSeparator as i, DropdownMenuShortcut as j, DropdownMenuGroup as k, DropdownMenuPortal as l, DropdownMenuSub as m, DropdownMenuSubContent as n, DropdownMenuSubTrigger as o, DropdownMenuRadioGroup as p };
|
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
3
|
-
|
|
4
|
-
type DirectionType = "rtl" | "ltr";
|
|
5
|
-
type PositionType = "top" | "bottom" | "right" | "left";
|
|
6
|
-
type SeverityType = "info" | "warning" | "error" | "success" | "none";
|
|
7
|
-
type OrientationType = "vertical" | "horizontal";
|
|
8
|
-
type RadiusType = "full" | "inherit" | "none";
|
|
9
|
-
type RadioOptionType = {
|
|
10
|
-
label: string;
|
|
11
|
-
value: string;
|
|
12
|
-
};
|
|
3
|
+
import { D as DirectionType } from './commonTypes-CKtkuNFH.mjs';
|
|
13
4
|
|
|
14
5
|
declare const DropdownMenuRoot: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
15
6
|
declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -101,4 +92,4 @@ interface DropdownMenuRadioProps {
|
|
|
101
92
|
}
|
|
102
93
|
declare const DropdownMenuRadio: React.FC<DropdownMenuRadioProps>;
|
|
103
94
|
|
|
104
|
-
export {
|
|
95
|
+
export { DropdownMenu as D, type MenuItemType as M, type SubItem as S, DropdownMenuRoot as a, DropdownMenuRadio as b, DropdownMenuTrigger as c, DropdownMenuContent as d, DropdownMenuItem as e, DropdownMenuCheckboxItem as f, DropdownMenuRadioItem as g, DropdownMenuLabel as h, DropdownMenuSeparator as i, DropdownMenuShortcut as j, DropdownMenuGroup as k, DropdownMenuPortal as l, DropdownMenuSub as m, DropdownMenuSubContent as n, DropdownMenuSubTrigger as o, DropdownMenuRadioGroup as p };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { A as Accordion, f as AccordionContent, c as AccordionItem, g as AccordionItemProps, d as AccordionRoot, e as AccordionTrigger } from '../index-ES6s-ReC.mjs';
|
|
2
|
+
import 'react';
|
|
3
|
+
import '@radix-ui/react-accordion';
|
|
4
|
+
import '../commonTypes-CKtkuNFH.mjs';
|
|
5
|
+
import '@tanstack/react-table';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { A as Accordion, f as AccordionContent, c as AccordionItem, g as AccordionItemProps, d as AccordionRoot, e as AccordionTrigger } from '../index-Vm7X1eoL.js';
|
|
2
|
+
import 'react';
|
|
3
|
+
import '@radix-ui/react-accordion';
|
|
4
|
+
import '../commonTypes-CKtkuNFH.js';
|
|
5
|
+
import '@tanstack/react-table';
|