@auronui/styles 1.2.2 → 1.4.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/components/context-menu.css +44 -0
- package/components/editable.css +136 -0
- package/components/hover-card.css +68 -0
- package/components/index.css +9 -0
- package/components/input.css +53 -10
- package/components/menubar.css +80 -0
- package/components/month-range-picker.css +154 -0
- package/components/navigation-menu.css +144 -0
- package/components/time-picker.css +95 -0
- package/components/time-range-field.css +543 -0
- package/components/year-range-picker.css +155 -0
- package/dist/components/context-menu/context-menu.styles.d.ts +40 -0
- package/dist/components/context-menu/context-menu.styles.d.ts.map +1 -0
- package/dist/components/context-menu/context-menu.styles.js +11 -0
- package/dist/components/context-menu/context-menu.styles.js.map +1 -0
- package/dist/components/context-menu/index.d.ts +2 -0
- package/dist/components/context-menu/index.d.ts.map +1 -0
- package/dist/components/context-menu/index.js +2 -0
- package/dist/components/dropdown/dropdown.styles.d.ts +3 -3
- package/dist/components/editable/editable.styles.d.ts +85 -0
- package/dist/components/editable/editable.styles.d.ts.map +1 -0
- package/dist/components/editable/editable.styles.js +15 -0
- package/dist/components/editable/editable.styles.js.map +1 -0
- package/dist/components/editable/index.d.ts +2 -0
- package/dist/components/editable/index.d.ts.map +1 -0
- package/dist/components/editable/index.js +2 -0
- package/dist/components/hover-card/hover-card.styles.d.ts +34 -0
- package/dist/components/hover-card/hover-card.styles.d.ts.map +1 -0
- package/dist/components/hover-card/hover-card.styles.js +10 -0
- package/dist/components/hover-card/hover-card.styles.js.map +1 -0
- package/dist/components/hover-card/index.d.ts +2 -0
- package/dist/components/hover-card/index.d.ts.map +1 -0
- package/dist/components/hover-card/index.js +2 -0
- package/dist/components/index.d.ts +9 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/menubar/index.d.ts +2 -0
- package/dist/components/menubar/index.d.ts.map +1 -0
- package/dist/components/menubar/index.js +2 -0
- package/dist/components/menubar/menubar.styles.d.ts +40 -0
- package/dist/components/menubar/menubar.styles.d.ts.map +1 -0
- package/dist/components/menubar/menubar.styles.js +11 -0
- package/dist/components/menubar/menubar.styles.js.map +1 -0
- package/dist/components/month-range-picker/index.d.ts +2 -0
- package/dist/components/month-range-picker/index.d.ts.map +1 -0
- package/dist/components/month-range-picker/index.js +2 -0
- package/dist/components/month-range-picker/month-range-picker.styles.d.ts +61 -0
- package/dist/components/month-range-picker/month-range-picker.styles.d.ts.map +1 -0
- package/dist/components/month-range-picker/month-range-picker.styles.js +21 -0
- package/dist/components/month-range-picker/month-range-picker.styles.js.map +1 -0
- package/dist/components/navigation-menu/index.d.ts +2 -0
- package/dist/components/navigation-menu/index.d.ts.map +1 -0
- package/dist/components/navigation-menu/index.js +2 -0
- package/dist/components/navigation-menu/navigation-menu.styles.d.ts +76 -0
- package/dist/components/navigation-menu/navigation-menu.styles.d.ts.map +1 -0
- package/dist/components/navigation-menu/navigation-menu.styles.js +17 -0
- package/dist/components/navigation-menu/navigation-menu.styles.js.map +1 -0
- package/dist/components/time-picker/index.d.ts +2 -0
- package/dist/components/time-picker/index.d.ts.map +1 -0
- package/dist/components/time-picker/index.js +2 -0
- package/dist/components/time-picker/time-picker.styles.d.ts +82 -0
- package/dist/components/time-picker/time-picker.styles.d.ts.map +1 -0
- package/dist/components/time-picker/time-picker.styles.js +35 -0
- package/dist/components/time-picker/time-picker.styles.js.map +1 -0
- package/dist/components/time-range-field/index.d.ts +2 -0
- package/dist/components/time-range-field/index.d.ts.map +1 -0
- package/dist/components/time-range-field/index.js +2 -0
- package/dist/components/time-range-field/time-range-field.styles.d.ts +310 -0
- package/dist/components/time-range-field/time-range-field.styles.d.ts.map +1 -0
- package/dist/components/time-range-field/time-range-field.styles.js +94 -0
- package/dist/components/time-range-field/time-range-field.styles.js.map +1 -0
- package/dist/components/year-range-picker/index.d.ts +2 -0
- package/dist/components/year-range-picker/index.d.ts.map +1 -0
- package/dist/components/year-range-picker/index.js +2 -0
- package/dist/components/year-range-picker/year-range-picker.styles.d.ts +61 -0
- package/dist/components/year-range-picker/year-range-picker.styles.d.ts.map +1 -0
- package/dist/components/year-range-picker/year-range-picker.styles.js +21 -0
- package/dist/components/year-range-picker/year-range-picker.styles.js.map +1 -0
- package/dist/index.js +10 -1
- package/package.json +33 -1
- package/src/components/context-menu/context-menu.styles.ts +13 -0
- package/src/components/context-menu/index.ts +1 -0
- package/src/components/editable/editable.styles.ts +24 -0
- package/src/components/editable/index.ts +1 -0
- package/src/components/hover-card/hover-card.styles.ts +12 -0
- package/src/components/hover-card/index.ts +1 -0
- package/src/components/index.ts +9 -0
- package/src/components/menubar/index.ts +1 -0
- package/src/components/menubar/menubar.styles.ts +13 -0
- package/src/components/month-range-picker/index.ts +1 -0
- package/src/components/month-range-picker/month-range-picker.styles.ts +30 -0
- package/src/components/navigation-menu/index.ts +1 -0
- package/src/components/navigation-menu/navigation-menu.styles.ts +19 -0
- package/src/components/time-picker/index.ts +1 -0
- package/src/components/time-picker/time-picker.styles.ts +35 -0
- package/src/components/time-range-field/index.ts +1 -0
- package/src/components/time-range-field/time-range-field.styles.ts +87 -0
- package/src/components/year-range-picker/index.ts +1 -0
- package/src/components/year-range-picker/year-range-picker.styles.ts +30 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { VariantProps } from '../../utils';
|
|
2
|
+
export declare const contextMenuVariants: import('tailwind-variants').TVReturnType<{
|
|
3
|
+
[key: string]: {
|
|
4
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
5
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
6
|
+
popover?: import('tailwind-variants').ClassValue;
|
|
7
|
+
root?: import('tailwind-variants').ClassValue;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
} | {
|
|
11
|
+
[x: string]: {
|
|
12
|
+
[x: string]: import('tailwind-variants').ClassValue | {
|
|
13
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
14
|
+
popover?: import('tailwind-variants').ClassValue;
|
|
15
|
+
root?: import('tailwind-variants').ClassValue;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
} | {}, {
|
|
19
|
+
root: string;
|
|
20
|
+
trigger: string;
|
|
21
|
+
popover: string;
|
|
22
|
+
}, undefined, {
|
|
23
|
+
[key: string]: {
|
|
24
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
25
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
26
|
+
popover?: import('tailwind-variants').ClassValue;
|
|
27
|
+
root?: import('tailwind-variants').ClassValue;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
} | {}, {
|
|
31
|
+
root: string;
|
|
32
|
+
trigger: string;
|
|
33
|
+
popover: string;
|
|
34
|
+
}, import('tailwind-variants').TVReturnType<unknown, {
|
|
35
|
+
root: string;
|
|
36
|
+
trigger: string;
|
|
37
|
+
popover: string;
|
|
38
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
39
|
+
export type ContextMenuVariants = VariantProps<typeof contextMenuVariants>;
|
|
40
|
+
//# sourceMappingURL=context-menu.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context-menu.styles.d.ts","sourceRoot":"","sources":["../../../src/components/context-menu/context-menu.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;AAI9C,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAM9B,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,YAAY,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { tv } from "tailwind-variants";
|
|
2
|
+
//#region src/components/context-menu/context-menu.styles.ts
|
|
3
|
+
var contextMenuVariants = tv({ slots: {
|
|
4
|
+
root: "context-menu",
|
|
5
|
+
trigger: "context-menu__trigger",
|
|
6
|
+
popover: "context-menu__popover"
|
|
7
|
+
} });
|
|
8
|
+
//#endregion
|
|
9
|
+
export { contextMenuVariants };
|
|
10
|
+
|
|
11
|
+
//# sourceMappingURL=context-menu.styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context-menu.styles.js","names":[],"sources":["../../../src/components/context-menu/context-menu.styles.ts"],"sourcesContent":["import type {VariantProps} from \"../../utils\";\n\nimport {tv} from \"tailwind-variants\";\n\nexport const contextMenuVariants = tv({\n slots: {\n root: \"context-menu\",\n trigger: \"context-menu__trigger\",\n popover: \"context-menu__popover\",\n },\n});\n\nexport type ContextMenuVariants = VariantProps<typeof contextMenuVariants>;\n"],"mappings":";;AAIA,IAAa,sBAAsB,GAAG,EACpC,OAAO;CACL,MAAM;CACN,SAAS;CACT,SAAS;CACV,EACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/context-menu/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
|
|
@@ -4,8 +4,8 @@ export declare const dropdownVariants: import('tailwind-variants').TVReturnType<
|
|
|
4
4
|
[key: string]: import('tailwind-variants').ClassValue | {
|
|
5
5
|
trigger?: import('tailwind-variants').ClassValue;
|
|
6
6
|
popover?: import('tailwind-variants').ClassValue;
|
|
7
|
-
menu?: import('tailwind-variants').ClassValue;
|
|
8
7
|
root?: import('tailwind-variants').ClassValue;
|
|
8
|
+
menu?: import('tailwind-variants').ClassValue;
|
|
9
9
|
};
|
|
10
10
|
};
|
|
11
11
|
} | {
|
|
@@ -13,8 +13,8 @@ export declare const dropdownVariants: import('tailwind-variants').TVReturnType<
|
|
|
13
13
|
[x: string]: import('tailwind-variants').ClassValue | {
|
|
14
14
|
trigger?: import('tailwind-variants').ClassValue;
|
|
15
15
|
popover?: import('tailwind-variants').ClassValue;
|
|
16
|
-
menu?: import('tailwind-variants').ClassValue;
|
|
17
16
|
root?: import('tailwind-variants').ClassValue;
|
|
17
|
+
menu?: import('tailwind-variants').ClassValue;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
} | {}, {
|
|
@@ -27,8 +27,8 @@ export declare const dropdownVariants: import('tailwind-variants').TVReturnType<
|
|
|
27
27
|
[key: string]: import('tailwind-variants').ClassValue | {
|
|
28
28
|
trigger?: import('tailwind-variants').ClassValue;
|
|
29
29
|
popover?: import('tailwind-variants').ClassValue;
|
|
30
|
-
menu?: import('tailwind-variants').ClassValue;
|
|
31
30
|
root?: import('tailwind-variants').ClassValue;
|
|
31
|
+
menu?: import('tailwind-variants').ClassValue;
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
34
|
} | {}, {
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { VariantProps } from '../../utils';
|
|
2
|
+
export declare const editableVariants: import('tailwind-variants').TVReturnType<{
|
|
3
|
+
[key: string]: {
|
|
4
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
5
|
+
base?: import('tailwind-variants').ClassValue;
|
|
6
|
+
input?: import('tailwind-variants').ClassValue;
|
|
7
|
+
area?: import('tailwind-variants').ClassValue;
|
|
8
|
+
preview?: import('tailwind-variants').ClassValue;
|
|
9
|
+
editTrigger?: import('tailwind-variants').ClassValue;
|
|
10
|
+
submitTrigger?: import('tailwind-variants').ClassValue;
|
|
11
|
+
cancelTrigger?: import('tailwind-variants').ClassValue;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
} | {
|
|
15
|
+
[x: string]: {
|
|
16
|
+
[x: string]: import('tailwind-variants').ClassValue | {
|
|
17
|
+
base?: import('tailwind-variants').ClassValue;
|
|
18
|
+
input?: import('tailwind-variants').ClassValue;
|
|
19
|
+
area?: import('tailwind-variants').ClassValue;
|
|
20
|
+
preview?: import('tailwind-variants').ClassValue;
|
|
21
|
+
editTrigger?: import('tailwind-variants').ClassValue;
|
|
22
|
+
submitTrigger?: import('tailwind-variants').ClassValue;
|
|
23
|
+
cancelTrigger?: import('tailwind-variants').ClassValue;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
} | {}, {
|
|
27
|
+
/** Root container */
|
|
28
|
+
base: string;
|
|
29
|
+
/** Area wrapping both preview and input */
|
|
30
|
+
area: string;
|
|
31
|
+
/** Read-only text display */
|
|
32
|
+
preview: string;
|
|
33
|
+
/** Editable text input */
|
|
34
|
+
input: string;
|
|
35
|
+
/** Edit (pencil) trigger button */
|
|
36
|
+
editTrigger: string;
|
|
37
|
+
/** Submit (checkmark) trigger button */
|
|
38
|
+
submitTrigger: string;
|
|
39
|
+
/** Cancel (×) trigger button */
|
|
40
|
+
cancelTrigger: string;
|
|
41
|
+
}, undefined, {
|
|
42
|
+
[key: string]: {
|
|
43
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
44
|
+
base?: import('tailwind-variants').ClassValue;
|
|
45
|
+
input?: import('tailwind-variants').ClassValue;
|
|
46
|
+
area?: import('tailwind-variants').ClassValue;
|
|
47
|
+
preview?: import('tailwind-variants').ClassValue;
|
|
48
|
+
editTrigger?: import('tailwind-variants').ClassValue;
|
|
49
|
+
submitTrigger?: import('tailwind-variants').ClassValue;
|
|
50
|
+
cancelTrigger?: import('tailwind-variants').ClassValue;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
} | {}, {
|
|
54
|
+
/** Root container */
|
|
55
|
+
base: string;
|
|
56
|
+
/** Area wrapping both preview and input */
|
|
57
|
+
area: string;
|
|
58
|
+
/** Read-only text display */
|
|
59
|
+
preview: string;
|
|
60
|
+
/** Editable text input */
|
|
61
|
+
input: string;
|
|
62
|
+
/** Edit (pencil) trigger button */
|
|
63
|
+
editTrigger: string;
|
|
64
|
+
/** Submit (checkmark) trigger button */
|
|
65
|
+
submitTrigger: string;
|
|
66
|
+
/** Cancel (×) trigger button */
|
|
67
|
+
cancelTrigger: string;
|
|
68
|
+
}, import('tailwind-variants').TVReturnType<unknown, {
|
|
69
|
+
/** Root container */
|
|
70
|
+
base: string;
|
|
71
|
+
/** Area wrapping both preview and input */
|
|
72
|
+
area: string;
|
|
73
|
+
/** Read-only text display */
|
|
74
|
+
preview: string;
|
|
75
|
+
/** Editable text input */
|
|
76
|
+
input: string;
|
|
77
|
+
/** Edit (pencil) trigger button */
|
|
78
|
+
editTrigger: string;
|
|
79
|
+
/** Submit (checkmark) trigger button */
|
|
80
|
+
submitTrigger: string;
|
|
81
|
+
/** Cancel (×) trigger button */
|
|
82
|
+
cancelTrigger: string;
|
|
83
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
84
|
+
export type EditableVariants = VariantProps<typeof editableVariants>;
|
|
85
|
+
//# sourceMappingURL=editable.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editable.styles.d.ts","sourceRoot":"","sources":["../../../src/components/editable/editable.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;AAI9C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;IAEzB,qBAAqB;;IAErB,2CAA2C;;IAE3C,6BAA6B;;IAE7B,0BAA0B;;IAE1B,mCAAmC;;IAEnC,wCAAwC;;IAExC,gCAAgC;;;;;;;;;;;;;;;IAZhC,qBAAqB;;IAErB,2CAA2C;;IAE3C,6BAA6B;;IAE7B,0BAA0B;;IAE1B,mCAAmC;;IAEnC,wCAAwC;;IAExC,gCAAgC;;;IAZhC,qBAAqB;;IAErB,2CAA2C;;IAE3C,6BAA6B;;IAE7B,0BAA0B;;IAE1B,mCAAmC;;IAEnC,wCAAwC;;IAExC,gCAAgC;;2CAGlC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,YAAY,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { tv } from "tailwind-variants";
|
|
2
|
+
//#region src/components/editable/editable.styles.ts
|
|
3
|
+
var editableVariants = tv({ slots: {
|
|
4
|
+
base: "editable",
|
|
5
|
+
area: "editable__area",
|
|
6
|
+
preview: "editable__preview",
|
|
7
|
+
input: "editable__input",
|
|
8
|
+
editTrigger: "editable__edit-trigger",
|
|
9
|
+
submitTrigger: "editable__submit-trigger",
|
|
10
|
+
cancelTrigger: "editable__cancel-trigger"
|
|
11
|
+
} });
|
|
12
|
+
//#endregion
|
|
13
|
+
export { editableVariants };
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=editable.styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editable.styles.js","names":[],"sources":["../../../src/components/editable/editable.styles.ts"],"sourcesContent":["import type {VariantProps} from \"../../utils\";\n\nimport {tv} from \"tailwind-variants\";\n\nexport const editableVariants = tv({\n slots: {\n /** Root container */\n base: \"editable\",\n /** Area wrapping both preview and input */\n area: \"editable__area\",\n /** Read-only text display */\n preview: \"editable__preview\",\n /** Editable text input */\n input: \"editable__input\",\n /** Edit (pencil) trigger button */\n editTrigger: \"editable__edit-trigger\",\n /** Submit (checkmark) trigger button */\n submitTrigger: \"editable__submit-trigger\",\n /** Cancel (×) trigger button */\n cancelTrigger: \"editable__cancel-trigger\",\n },\n});\n\nexport type EditableVariants = VariantProps<typeof editableVariants>;\n"],"mappings":";;AAIA,IAAa,mBAAmB,GAAG,EACjC,OAAO;CAEL,MAAM;CAEN,MAAM;CAEN,SAAS;CAET,OAAO;CAEP,aAAa;CAEb,eAAe;CAEf,eAAe;CAChB,EACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editable/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { VariantProps } from '../../utils';
|
|
2
|
+
export declare const hoverCardVariants: import('tailwind-variants').TVReturnType<{
|
|
3
|
+
[key: string]: {
|
|
4
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
5
|
+
base?: import('tailwind-variants').ClassValue;
|
|
6
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
} | {
|
|
10
|
+
[x: string]: {
|
|
11
|
+
[x: string]: import('tailwind-variants').ClassValue | {
|
|
12
|
+
base?: import('tailwind-variants').ClassValue;
|
|
13
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
} | {}, {
|
|
17
|
+
base: string;
|
|
18
|
+
trigger: string;
|
|
19
|
+
}, undefined, {
|
|
20
|
+
[key: string]: {
|
|
21
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
22
|
+
base?: import('tailwind-variants').ClassValue;
|
|
23
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
} | {}, {
|
|
27
|
+
base: string;
|
|
28
|
+
trigger: string;
|
|
29
|
+
}, import('tailwind-variants').TVReturnType<unknown, {
|
|
30
|
+
base: string;
|
|
31
|
+
trigger: string;
|
|
32
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
33
|
+
export type HoverCardVariants = VariantProps<typeof hoverCardVariants>;
|
|
34
|
+
//# sourceMappingURL=hover-card.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hover-card.styles.d.ts","sourceRoot":"","sources":["../../../src/components/hover-card/hover-card.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;AAI9C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAK5B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,YAAY,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { tv } from "tailwind-variants";
|
|
2
|
+
//#region src/components/hover-card/hover-card.styles.ts
|
|
3
|
+
var hoverCardVariants = tv({ slots: {
|
|
4
|
+
base: "hover-card",
|
|
5
|
+
trigger: "hover-card__trigger"
|
|
6
|
+
} });
|
|
7
|
+
//#endregion
|
|
8
|
+
export { hoverCardVariants };
|
|
9
|
+
|
|
10
|
+
//# sourceMappingURL=hover-card.styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hover-card.styles.js","names":[],"sources":["../../../src/components/hover-card/hover-card.styles.ts"],"sourcesContent":["import type {VariantProps} from \"../../utils\";\n\nimport {tv} from \"tailwind-variants\";\n\nexport const hoverCardVariants = tv({\n slots: {\n base: \"hover-card\",\n trigger: \"hover-card__trigger\",\n },\n});\n\nexport type HoverCardVariants = VariantProps<typeof hoverCardVariants>;\n"],"mappings":";;AAIA,IAAa,oBAAoB,GAAG,EAClC,OAAO;CACL,MAAM;CACN,SAAS;CACV,EACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/hover-card/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC"}
|
|
@@ -9,6 +9,8 @@ export * from './button';
|
|
|
9
9
|
export * from './button-group';
|
|
10
10
|
export * from './calendar';
|
|
11
11
|
export * from './calendar-year-picker';
|
|
12
|
+
export * from './month-range-picker';
|
|
13
|
+
export * from './year-range-picker';
|
|
12
14
|
export * from './range-calendar';
|
|
13
15
|
export * from './card';
|
|
14
16
|
export * from './checkbox';
|
|
@@ -23,6 +25,9 @@ export * from './color-swatch';
|
|
|
23
25
|
export * from './close-button';
|
|
24
26
|
export * from './color-swatch-picker';
|
|
25
27
|
export * from './combo-box';
|
|
28
|
+
export * from './context-menu';
|
|
29
|
+
export * from './menubar';
|
|
30
|
+
export * from './navigation-menu';
|
|
26
31
|
export * from './date-input';
|
|
27
32
|
export * from './date-picker';
|
|
28
33
|
export * from './date-range-field';
|
|
@@ -33,10 +38,12 @@ export * from './drawer';
|
|
|
33
38
|
export * from './collapsible';
|
|
34
39
|
export * from './collapsible-group';
|
|
35
40
|
export * from './dropdown';
|
|
41
|
+
export * from './editable';
|
|
36
42
|
export * from './empty-state';
|
|
37
43
|
export * from './error-message';
|
|
38
44
|
export * from './fieldset';
|
|
39
45
|
export * from './header';
|
|
46
|
+
export * from './hover-card';
|
|
40
47
|
export * from './input';
|
|
41
48
|
export * from './input-otp';
|
|
42
49
|
export * from './kbd';
|
|
@@ -71,6 +78,8 @@ export * from './tabs';
|
|
|
71
78
|
export * from './text';
|
|
72
79
|
export * from './textarea';
|
|
73
80
|
export * from './time-field';
|
|
81
|
+
export * from './time-picker';
|
|
82
|
+
export * from './time-range-field';
|
|
74
83
|
export * from './toast';
|
|
75
84
|
export * from './toggle-button';
|
|
76
85
|
export * from './toggle-button-group';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC;AAC9B,cAAc,qBAAqB,CAAC;AACpC,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC;AACxB,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/menubar/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { VariantProps } from '../../utils';
|
|
2
|
+
export declare const menubarVariants: import('tailwind-variants').TVReturnType<{
|
|
3
|
+
[key: string]: {
|
|
4
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
5
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
6
|
+
popover?: import('tailwind-variants').ClassValue;
|
|
7
|
+
root?: import('tailwind-variants').ClassValue;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
} | {
|
|
11
|
+
[x: string]: {
|
|
12
|
+
[x: string]: import('tailwind-variants').ClassValue | {
|
|
13
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
14
|
+
popover?: import('tailwind-variants').ClassValue;
|
|
15
|
+
root?: import('tailwind-variants').ClassValue;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
} | {}, {
|
|
19
|
+
root: string;
|
|
20
|
+
trigger: string;
|
|
21
|
+
popover: string;
|
|
22
|
+
}, undefined, {
|
|
23
|
+
[key: string]: {
|
|
24
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
25
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
26
|
+
popover?: import('tailwind-variants').ClassValue;
|
|
27
|
+
root?: import('tailwind-variants').ClassValue;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
} | {}, {
|
|
31
|
+
root: string;
|
|
32
|
+
trigger: string;
|
|
33
|
+
popover: string;
|
|
34
|
+
}, import('tailwind-variants').TVReturnType<unknown, {
|
|
35
|
+
root: string;
|
|
36
|
+
trigger: string;
|
|
37
|
+
popover: string;
|
|
38
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
39
|
+
export type MenubarVariants = VariantProps<typeof menubarVariants>;
|
|
40
|
+
//# sourceMappingURL=menubar.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menubar.styles.d.ts","sourceRoot":"","sources":["../../../src/components/menubar/menubar.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;AAI9C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAM1B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,YAAY,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { tv } from "tailwind-variants";
|
|
2
|
+
//#region src/components/menubar/menubar.styles.ts
|
|
3
|
+
var menubarVariants = tv({ slots: {
|
|
4
|
+
root: "menubar",
|
|
5
|
+
trigger: "menubar__trigger",
|
|
6
|
+
popover: "menubar__popover"
|
|
7
|
+
} });
|
|
8
|
+
//#endregion
|
|
9
|
+
export { menubarVariants };
|
|
10
|
+
|
|
11
|
+
//# sourceMappingURL=menubar.styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menubar.styles.js","names":[],"sources":["../../../src/components/menubar/menubar.styles.ts"],"sourcesContent":["import type {VariantProps} from \"../../utils\";\n\nimport {tv} from \"tailwind-variants\";\n\nexport const menubarVariants = tv({\n slots: {\n root: \"menubar\",\n trigger: \"menubar__trigger\",\n popover: \"menubar__popover\",\n },\n});\n\nexport type MenubarVariants = VariantProps<typeof menubarVariants>;\n"],"mappings":";;AAIA,IAAa,kBAAkB,GAAG,EAChC,OAAO;CACL,MAAM;CACN,SAAS;CACT,SAAS;CACV,EACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/month-range-picker/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { VariantProps } from '../../utils';
|
|
2
|
+
export declare const monthRangePickerVariants: import('tailwind-variants').TVReturnType<{}, {
|
|
3
|
+
/** Root month range picker container */
|
|
4
|
+
base: string;
|
|
5
|
+
/** Header containing heading and navigation */
|
|
6
|
+
header: string;
|
|
7
|
+
/** Previous/Next navigation button */
|
|
8
|
+
navButton: string;
|
|
9
|
+
/** Navigation button icon */
|
|
10
|
+
navButtonIcon: string;
|
|
11
|
+
/** Heading text */
|
|
12
|
+
heading: string;
|
|
13
|
+
/** Grid (table) */
|
|
14
|
+
grid: string;
|
|
15
|
+
/** Grid body (tbody) */
|
|
16
|
+
gridBody: string;
|
|
17
|
+
/** Grid row (tr) */
|
|
18
|
+
gridRow: string;
|
|
19
|
+
/** Month cell (button per month) */
|
|
20
|
+
cell: string;
|
|
21
|
+
}, undefined, {}, {
|
|
22
|
+
/** Root month range picker container */
|
|
23
|
+
base: string;
|
|
24
|
+
/** Header containing heading and navigation */
|
|
25
|
+
header: string;
|
|
26
|
+
/** Previous/Next navigation button */
|
|
27
|
+
navButton: string;
|
|
28
|
+
/** Navigation button icon */
|
|
29
|
+
navButtonIcon: string;
|
|
30
|
+
/** Heading text */
|
|
31
|
+
heading: string;
|
|
32
|
+
/** Grid (table) */
|
|
33
|
+
grid: string;
|
|
34
|
+
/** Grid body (tbody) */
|
|
35
|
+
gridBody: string;
|
|
36
|
+
/** Grid row (tr) */
|
|
37
|
+
gridRow: string;
|
|
38
|
+
/** Month cell (button per month) */
|
|
39
|
+
cell: string;
|
|
40
|
+
}, import('tailwind-variants').TVReturnType<{}, {
|
|
41
|
+
/** Root month range picker container */
|
|
42
|
+
base: string;
|
|
43
|
+
/** Header containing heading and navigation */
|
|
44
|
+
header: string;
|
|
45
|
+
/** Previous/Next navigation button */
|
|
46
|
+
navButton: string;
|
|
47
|
+
/** Navigation button icon */
|
|
48
|
+
navButtonIcon: string;
|
|
49
|
+
/** Heading text */
|
|
50
|
+
heading: string;
|
|
51
|
+
/** Grid (table) */
|
|
52
|
+
grid: string;
|
|
53
|
+
/** Grid body (tbody) */
|
|
54
|
+
gridBody: string;
|
|
55
|
+
/** Grid row (tr) */
|
|
56
|
+
gridRow: string;
|
|
57
|
+
/** Month cell (button per month) */
|
|
58
|
+
cell: string;
|
|
59
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
60
|
+
export type MonthRangePickerVariants = VariantProps<typeof monthRangePickerVariants>;
|
|
61
|
+
//# sourceMappingURL=month-range-picker.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"month-range-picker.styles.d.ts","sourceRoot":"","sources":["../../../src/components/month-range-picker/month-range-picker.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;AAI9C,eAAO,MAAM,wBAAwB;IAGjC,wCAAwC;;IAExC,+CAA+C;;IAE/C,sCAAsC;;IAEtC,6BAA6B;;IAE7B,mBAAmB;;IAEnB,mBAAmB;;IAEnB,wBAAwB;;IAExB,oBAAoB;;IAEpB,oCAAoC;;;IAhBpC,wCAAwC;;IAExC,+CAA+C;;IAE/C,sCAAsC;;IAEtC,6BAA6B;;IAE7B,mBAAmB;;IAEnB,mBAAmB;;IAEnB,wBAAwB;;IAExB,oBAAoB;;IAEpB,oCAAoC;;;IAhBpC,wCAAwC;;IAExC,+CAA+C;;IAE/C,sCAAsC;;IAEtC,6BAA6B;;IAE7B,mBAAmB;;IAEnB,mBAAmB;;IAEnB,wBAAwB;;IAExB,oBAAoB;;IAEpB,oCAAoC;;2CAItC,CAAC;AAEH,MAAM,MAAM,wBAAwB,GAAG,YAAY,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { tv } from "tailwind-variants";
|
|
2
|
+
//#region src/components/month-range-picker/month-range-picker.styles.ts
|
|
3
|
+
var monthRangePickerVariants = tv({
|
|
4
|
+
defaultVariants: {},
|
|
5
|
+
slots: {
|
|
6
|
+
base: "month-range-picker",
|
|
7
|
+
header: "month-range-picker__header",
|
|
8
|
+
navButton: "month-range-picker__nav-button",
|
|
9
|
+
navButtonIcon: "month-range-picker__nav-button-icon",
|
|
10
|
+
heading: "month-range-picker__heading",
|
|
11
|
+
grid: "month-range-picker__grid",
|
|
12
|
+
gridBody: "month-range-picker__grid-body",
|
|
13
|
+
gridRow: "month-range-picker__grid-row",
|
|
14
|
+
cell: "month-range-picker__cell"
|
|
15
|
+
},
|
|
16
|
+
variants: {}
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
export { monthRangePickerVariants };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=month-range-picker.styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"month-range-picker.styles.js","names":[],"sources":["../../../src/components/month-range-picker/month-range-picker.styles.ts"],"sourcesContent":["import type {VariantProps} from \"../../utils\";\n\nimport {tv} from \"tailwind-variants\";\n\nexport const monthRangePickerVariants = tv({\n defaultVariants: {},\n slots: {\n /** Root month range picker container */\n base: \"month-range-picker\",\n /** Header containing heading and navigation */\n header: \"month-range-picker__header\",\n /** Previous/Next navigation button */\n navButton: \"month-range-picker__nav-button\",\n /** Navigation button icon */\n navButtonIcon: \"month-range-picker__nav-button-icon\",\n /** Heading text */\n heading: \"month-range-picker__heading\",\n /** Grid (table) */\n grid: \"month-range-picker__grid\",\n /** Grid body (tbody) */\n gridBody: \"month-range-picker__grid-body\",\n /** Grid row (tr) */\n gridRow: \"month-range-picker__grid-row\",\n /** Month cell (button per month) */\n cell: \"month-range-picker__cell\",\n },\n variants: {},\n});\n\nexport type MonthRangePickerVariants = VariantProps<typeof monthRangePickerVariants>;\n"],"mappings":";;AAIA,IAAa,2BAA2B,GAAG;CACzC,iBAAiB,EAAE;CACnB,OAAO;EAEL,MAAM;EAEN,QAAQ;EAER,WAAW;EAEX,eAAe;EAEf,SAAS;EAET,MAAM;EAEN,UAAU;EAEV,SAAS;EAET,MAAM;EACP;CACD,UAAU,EAAE;CACb,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/navigation-menu/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { VariantProps } from '../../utils';
|
|
2
|
+
export declare const navigationMenuVariants: import('tailwind-variants').TVReturnType<{
|
|
3
|
+
[key: string]: {
|
|
4
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
5
|
+
indicator?: import('tailwind-variants').ClassValue;
|
|
6
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
7
|
+
content?: import('tailwind-variants').ClassValue;
|
|
8
|
+
root?: import('tailwind-variants').ClassValue;
|
|
9
|
+
list?: import('tailwind-variants').ClassValue;
|
|
10
|
+
chevron?: import('tailwind-variants').ClassValue;
|
|
11
|
+
viewportWrapper?: import('tailwind-variants').ClassValue;
|
|
12
|
+
viewport?: import('tailwind-variants').ClassValue;
|
|
13
|
+
indicatorArrow?: import('tailwind-variants').ClassValue;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
} | {
|
|
17
|
+
[x: string]: {
|
|
18
|
+
[x: string]: import('tailwind-variants').ClassValue | {
|
|
19
|
+
indicator?: import('tailwind-variants').ClassValue;
|
|
20
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
21
|
+
content?: import('tailwind-variants').ClassValue;
|
|
22
|
+
root?: import('tailwind-variants').ClassValue;
|
|
23
|
+
list?: import('tailwind-variants').ClassValue;
|
|
24
|
+
chevron?: import('tailwind-variants').ClassValue;
|
|
25
|
+
viewportWrapper?: import('tailwind-variants').ClassValue;
|
|
26
|
+
viewport?: import('tailwind-variants').ClassValue;
|
|
27
|
+
indicatorArrow?: import('tailwind-variants').ClassValue;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
} | {}, {
|
|
31
|
+
root: string;
|
|
32
|
+
list: string;
|
|
33
|
+
trigger: string;
|
|
34
|
+
chevron: string;
|
|
35
|
+
content: string;
|
|
36
|
+
viewportWrapper: string;
|
|
37
|
+
viewport: string;
|
|
38
|
+
indicator: string;
|
|
39
|
+
indicatorArrow: string;
|
|
40
|
+
}, undefined, {
|
|
41
|
+
[key: string]: {
|
|
42
|
+
[key: string]: import('tailwind-variants').ClassValue | {
|
|
43
|
+
indicator?: import('tailwind-variants').ClassValue;
|
|
44
|
+
trigger?: import('tailwind-variants').ClassValue;
|
|
45
|
+
content?: import('tailwind-variants').ClassValue;
|
|
46
|
+
root?: import('tailwind-variants').ClassValue;
|
|
47
|
+
list?: import('tailwind-variants').ClassValue;
|
|
48
|
+
chevron?: import('tailwind-variants').ClassValue;
|
|
49
|
+
viewportWrapper?: import('tailwind-variants').ClassValue;
|
|
50
|
+
viewport?: import('tailwind-variants').ClassValue;
|
|
51
|
+
indicatorArrow?: import('tailwind-variants').ClassValue;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
} | {}, {
|
|
55
|
+
root: string;
|
|
56
|
+
list: string;
|
|
57
|
+
trigger: string;
|
|
58
|
+
chevron: string;
|
|
59
|
+
content: string;
|
|
60
|
+
viewportWrapper: string;
|
|
61
|
+
viewport: string;
|
|
62
|
+
indicator: string;
|
|
63
|
+
indicatorArrow: string;
|
|
64
|
+
}, import('tailwind-variants').TVReturnType<unknown, {
|
|
65
|
+
root: string;
|
|
66
|
+
list: string;
|
|
67
|
+
trigger: string;
|
|
68
|
+
chevron: string;
|
|
69
|
+
content: string;
|
|
70
|
+
viewportWrapper: string;
|
|
71
|
+
viewport: string;
|
|
72
|
+
indicator: string;
|
|
73
|
+
indicatorArrow: string;
|
|
74
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
75
|
+
export type NavigationMenuVariants = VariantProps<typeof navigationMenuVariants>;
|
|
76
|
+
//# sourceMappingURL=navigation-menu.styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navigation-menu.styles.d.ts","sourceRoot":"","sources":["../../../src/components/navigation-menu/navigation-menu.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAIhD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAYjC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,YAAY,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { tv } from "tailwind-variants";
|
|
2
|
+
//#region src/components/navigation-menu/navigation-menu.styles.ts
|
|
3
|
+
var navigationMenuVariants = tv({ slots: {
|
|
4
|
+
root: "navigation-menu",
|
|
5
|
+
list: "navigation-menu__list",
|
|
6
|
+
trigger: "navigation-menu__trigger",
|
|
7
|
+
chevron: "navigation-menu__chevron",
|
|
8
|
+
content: "navigation-menu__content",
|
|
9
|
+
viewportWrapper: "navigation-menu__viewport-wrapper",
|
|
10
|
+
viewport: "navigation-menu__viewport",
|
|
11
|
+
indicator: "navigation-menu__indicator",
|
|
12
|
+
indicatorArrow: "navigation-menu__indicator-arrow"
|
|
13
|
+
} });
|
|
14
|
+
//#endregion
|
|
15
|
+
export { navigationMenuVariants };
|
|
16
|
+
|
|
17
|
+
//# sourceMappingURL=navigation-menu.styles.js.map
|