@ogcio/design-system-react 1.29.0 → 1.30.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/README.md +11 -33
- package/dist/alert/variants.d.ts +78 -2
- package/dist/atoms/DsButton.d.ts +194 -0
- package/dist/atoms/DsButton.js +329 -0
- package/dist/atoms/icons/Close.d.ts +3 -0
- package/dist/atoms/icons/Close.js +22 -0
- package/dist/atoms/icons/KeyboardArrowDown.d.ts +3 -0
- package/dist/atoms/icons/KeyboardArrowDown.js +22 -0
- package/dist/atoms/icons/KeyboardArrowUp.d.ts +3 -0
- package/dist/atoms/icons/KeyboardArrowUp.js +22 -0
- package/dist/atoms/icons/Visibility.d.ts +3 -0
- package/dist/atoms/icons/Visibility.js +22 -0
- package/dist/atoms/icons/VisibilityOff.d.ts +3 -0
- package/dist/atoms/icons/VisibilityOff.js +22 -0
- package/dist/atoms/icons/index.d.ts +6 -0
- package/dist/atoms/icons/index.js +12 -0
- package/dist/atoms/icons/types.d.ts +10 -0
- package/dist/atoms/icons/types.js +1 -0
- package/dist/atoms/index.d.ts +2 -0
- package/dist/atoms/index.js +14 -0
- package/dist/autocomplete/autocomplete.js +131 -115
- package/dist/combo-box/dropdown-item.js +39 -40
- package/dist/data-table/data-table-footer.js +57 -51
- package/dist/data-table/data-table-header.d.ts +7 -7
- package/dist/data-table/data-table-header.js +97 -110
- package/dist/data-table/data-table-selected-rows.d.ts +1 -0
- package/dist/data-table/data-table-selected-rows.js +15 -19
- package/dist/forms/form-field/form-field.d.ts +2 -2
- package/dist/forms/form-field/form-field.js +40 -30
- package/dist/forms/form-field/types.d.ts +10 -3
- package/dist/header/components/header-slot.js +33 -32
- package/dist/header/variants.d.ts +220 -20
- package/dist/heading/heading.d.ts +70 -2
- package/dist/hooks/use-breakpoint.js +15 -12
- package/dist/icon/icon.d.ts +10 -0
- package/dist/icon/icon.js +64 -52
- package/dist/icon/icons.d.ts +1 -1
- package/dist/input-password/input-password.js +13 -12
- package/dist/input-text/input-text.js +18 -16
- package/dist/label/label.d.ts +43 -0
- package/dist/label/label.js +7 -6
- package/dist/modal/modal.js +8 -7
- package/dist/spinner/spinner.d.ts +30 -2
- package/dist/styles.css +12 -2
- package/dist/table/table.d.ts +22 -2
- package/dist/tabs/tab-item.d.ts +2 -2
- package/dist/text-input/text-input.d.ts +1 -1
- package/dist/textarea/textarea.js +27 -28
- package/dist/toast/ds-toast.d.ts +78 -2
- package/fonts.css +10 -0
- package/package.json +12 -7
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as l, jsxs as
|
|
3
|
-
import { S as
|
|
4
|
-
import { createContext as
|
|
5
|
-
import { cn as
|
|
2
|
+
import { jsx as l, jsxs as m, Fragment as x } from "react/jsx-runtime";
|
|
3
|
+
import { S as p } from "../../index-D_wwt4P0.js";
|
|
4
|
+
import { createContext as N, useContext as v, Children as C } from "react";
|
|
5
|
+
import { cn as d } from "../../cn.js";
|
|
6
6
|
import { ErrorText as L } from "../../error-text/error-text.js";
|
|
7
7
|
import { HintText as E } from "../../hint-text/hint-text.js";
|
|
8
|
-
import { Label as H } from "../../label/label.js";
|
|
9
|
-
import { getSpecialComponentType as F, isSpecialComponent as
|
|
10
|
-
const f =
|
|
8
|
+
import { Label as H, styles as P } from "../../label/label.js";
|
|
9
|
+
import { getSpecialComponentType as F, isSpecialComponent as w } from "../../utils/utilities.js";
|
|
10
|
+
const f = N(null);
|
|
11
11
|
function b(e) {
|
|
12
|
-
|
|
12
|
+
v(f) || console.error(`[${e}] must be used within a <FormField>.`);
|
|
13
13
|
}
|
|
14
|
-
const
|
|
14
|
+
const U = (e) => ["error", "hint", "label"].some((r) => r in e) ? (console.warn(
|
|
15
15
|
"[FormField] Using legacy props. Please migrate to the new composable API."
|
|
16
|
-
), /* @__PURE__ */ l(f.Provider, { value: !0, children: /* @__PURE__ */
|
|
16
|
+
), /* @__PURE__ */ l(f.Provider, { value: !0, children: /* @__PURE__ */ m(y, { ...e, children: [
|
|
17
17
|
e.label && /* @__PURE__ */ l(u, { ...e.label }),
|
|
18
18
|
e.hint && /* @__PURE__ */ l(h, { ...e.hint }),
|
|
19
19
|
e.error && /* @__PURE__ */ l(g, { ...e.error }),
|
|
@@ -25,31 +25,31 @@ const I = (e) => ["error", "hint", "label"].some((r) => r in e) ? (console.warn(
|
|
|
25
25
|
}) => {
|
|
26
26
|
const r = C.toArray(e), n = r.find(
|
|
27
27
|
(t) => F(t) === "FormFieldLabel"
|
|
28
|
-
),
|
|
28
|
+
), c = r.find(
|
|
29
29
|
(t) => F(t) === "FormFieldHint"
|
|
30
|
-
),
|
|
30
|
+
), a = r.find(
|
|
31
31
|
(t) => F(t) === "FormFieldError"
|
|
32
32
|
), s = r.filter(
|
|
33
|
-
(t) => !
|
|
33
|
+
(t) => !w(t, [
|
|
34
34
|
"FormFieldLabel",
|
|
35
35
|
"FormFieldHint",
|
|
36
36
|
"FormFieldError"
|
|
37
37
|
])
|
|
38
38
|
);
|
|
39
|
-
return /* @__PURE__ */
|
|
39
|
+
return /* @__PURE__ */ m(
|
|
40
40
|
"fieldset",
|
|
41
41
|
{
|
|
42
|
-
className:
|
|
42
|
+
className: d({ "gi-error-state": !!a }, i),
|
|
43
43
|
...o,
|
|
44
44
|
children: [
|
|
45
|
-
/* @__PURE__ */
|
|
46
|
-
/* @__PURE__ */
|
|
45
|
+
/* @__PURE__ */ m("div", { className: "gi-pb-3 gi-flex gi-flex-col gi-gap-1", children: [
|
|
46
|
+
/* @__PURE__ */ m("div", { children: [
|
|
47
47
|
n,
|
|
48
|
-
|
|
48
|
+
c
|
|
49
49
|
] }),
|
|
50
|
-
|
|
50
|
+
a
|
|
51
51
|
] }),
|
|
52
|
-
/* @__PURE__ */ l(
|
|
52
|
+
/* @__PURE__ */ l(p, { children: s })
|
|
53
53
|
]
|
|
54
54
|
}
|
|
55
55
|
);
|
|
@@ -59,21 +59,31 @@ const I = (e) => ["error", "hint", "label"].some((r) => r in e) ? (console.warn(
|
|
|
59
59
|
size: o,
|
|
60
60
|
htmlFor: r,
|
|
61
61
|
className: n,
|
|
62
|
-
secondaryLabel:
|
|
63
|
-
...
|
|
62
|
+
secondaryLabel: c,
|
|
63
|
+
...a
|
|
64
64
|
}) => {
|
|
65
65
|
b("FormFieldLabel");
|
|
66
|
-
const s = /* @__PURE__ */
|
|
66
|
+
const s = /* @__PURE__ */ m(x, { children: [
|
|
67
67
|
i ?? e,
|
|
68
|
-
|
|
68
|
+
c ? /* @__PURE__ */ l("span", { className: "gi-secondary-label", children: c }) : null
|
|
69
69
|
] });
|
|
70
|
-
return /* @__PURE__ */ l(
|
|
70
|
+
return r ? /* @__PURE__ */ l(
|
|
71
71
|
H,
|
|
72
72
|
{
|
|
73
73
|
size: o,
|
|
74
74
|
htmlFor: r,
|
|
75
|
-
className:
|
|
76
|
-
...
|
|
75
|
+
className: d("gi-font-bold", n),
|
|
76
|
+
...a,
|
|
77
|
+
children: s
|
|
78
|
+
}
|
|
79
|
+
) : /* @__PURE__ */ l(
|
|
80
|
+
"legend",
|
|
81
|
+
{
|
|
82
|
+
className: P({
|
|
83
|
+
size: o,
|
|
84
|
+
className: d("gi-font-bold", n)
|
|
85
|
+
}),
|
|
86
|
+
...a,
|
|
77
87
|
children: s
|
|
78
88
|
}
|
|
79
89
|
);
|
|
@@ -84,7 +94,7 @@ Object.defineProperty(u, "componentType", {
|
|
|
84
94
|
enumerable: !1
|
|
85
95
|
});
|
|
86
96
|
u.displayName = "FormFieldLabel";
|
|
87
|
-
const h = ({ children: e, text: i, size: o, className: r }) => (b("FormFieldHint"), /* @__PURE__ */ l(E, { text: i, size: o, className:
|
|
97
|
+
const h = ({ children: e, text: i, size: o, className: r }) => (b("FormFieldHint"), /* @__PURE__ */ l(E, { text: i, size: o, className: d("gi-mb-1", r), children: e }));
|
|
88
98
|
Object.defineProperty(h, "componentType", {
|
|
89
99
|
value: "FormFieldHint",
|
|
90
100
|
writable: !1,
|
|
@@ -102,7 +112,7 @@ const g = ({
|
|
|
102
112
|
{
|
|
103
113
|
text: i,
|
|
104
114
|
size: o,
|
|
105
|
-
className:
|
|
115
|
+
className: d("gi-mb-1", r),
|
|
106
116
|
...n,
|
|
107
117
|
children: e
|
|
108
118
|
}
|
|
@@ -114,7 +124,7 @@ Object.defineProperty(g, "componentType", {
|
|
|
114
124
|
});
|
|
115
125
|
g.displayName = "FormFieldError";
|
|
116
126
|
export {
|
|
117
|
-
|
|
127
|
+
U as FormField,
|
|
118
128
|
g as FormFieldError,
|
|
119
129
|
h as FormFieldHint,
|
|
120
130
|
u as FormFieldLabel
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
-
import { FieldsetHTMLAttributes } from 'react';
|
|
1
|
+
import { FieldsetHTMLAttributes, PropsWithChildren } from 'react';
|
|
2
2
|
import { ErrorTextProps } from '../../error-text/types.js';
|
|
3
3
|
import { HintTextProps } from '../../hint-text/types.js';
|
|
4
|
-
import { LabelTextProps } from '../../label/types.js';
|
|
5
|
-
export type
|
|
4
|
+
import { LabelSizeType, LabelTextProps } from '../../label/types.js';
|
|
5
|
+
export type LegendProps = PropsWithChildren<React.HTMLAttributes<HTMLLegendElement> & {
|
|
6
|
+
text?: string | React.ReactElement;
|
|
7
|
+
size?: LabelSizeType;
|
|
8
|
+
secondaryLabel?: React.ReactNode;
|
|
9
|
+
htmlFor?: never;
|
|
10
|
+
}>;
|
|
11
|
+
export type LabelProps = LabelTextProps & {
|
|
6
12
|
secondaryLabel?: React.ReactNode;
|
|
7
13
|
};
|
|
14
|
+
export type FormFieldLabelProps = LabelProps | LegendProps;
|
|
8
15
|
export type FormFieldProps = {
|
|
9
16
|
/** @deprecated Use <FormFieldError> instead */
|
|
10
17
|
error?: ErrorTextProps;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as t, jsxs as n, Fragment as $ } from "react/jsx-runtime";
|
|
2
2
|
import { useState as f } from "react";
|
|
3
|
-
import { cn as
|
|
3
|
+
import { cn as s } from "../../cn.js";
|
|
4
4
|
import { DrawerWrapper as T, DrawerBody as b } from "../../drawer/drawer.js";
|
|
5
5
|
import { translate as c } from "../../i18n/utility.js";
|
|
6
6
|
import { Icon as i } from "../../icon/icon.js";
|
|
7
7
|
import { Input as h } from "../../primitives/input.js";
|
|
8
|
-
import { headerSlotContainerVariants as C, headerToolItemVariants as
|
|
9
|
-
const
|
|
8
|
+
import { headerSlotContainerVariants as C, headerToolItemVariants as u } from "../variants.js";
|
|
9
|
+
const y = ({
|
|
10
10
|
index: e,
|
|
11
11
|
slot: r,
|
|
12
|
-
appearance:
|
|
13
|
-
}) => /* @__PURE__ */
|
|
12
|
+
appearance: a
|
|
13
|
+
}) => /* @__PURE__ */ t(
|
|
14
14
|
"div",
|
|
15
15
|
{
|
|
16
16
|
id: `SlotContainer-${e}`,
|
|
@@ -20,24 +20,24 @@ const B = ({
|
|
|
20
20
|
index: e + 1,
|
|
21
21
|
defaultValue: `Slot Container ${e + 1}`
|
|
22
22
|
}),
|
|
23
|
-
className:
|
|
23
|
+
className: s(C({ appearance: a }), "gi-hidden"),
|
|
24
24
|
children: r
|
|
25
25
|
}
|
|
26
26
|
), A = ({
|
|
27
27
|
index: e,
|
|
28
|
-
item: { component: r, drawerPosition:
|
|
28
|
+
item: { component: r, drawerPosition: a, icon: d, label: l, ariaLabel: m, closeLabel: p },
|
|
29
29
|
appearance: I
|
|
30
30
|
}) => {
|
|
31
31
|
const [o, g] = f(!1);
|
|
32
|
-
return /* @__PURE__ */
|
|
33
|
-
/* @__PURE__ */
|
|
32
|
+
return /* @__PURE__ */ n($, { children: [
|
|
33
|
+
/* @__PURE__ */ n(
|
|
34
34
|
"label",
|
|
35
35
|
{
|
|
36
36
|
htmlFor: `ItemActionDrawerTrigger-${e}`,
|
|
37
|
-
className:
|
|
37
|
+
className: u({ appearance: I }),
|
|
38
38
|
onClick: () => g(!0),
|
|
39
39
|
children: [
|
|
40
|
-
/* @__PURE__ */
|
|
40
|
+
/* @__PURE__ */ t(
|
|
41
41
|
h,
|
|
42
42
|
{
|
|
43
43
|
"data-testid": `ItemActionDrawerTrigger-${e}`,
|
|
@@ -48,7 +48,7 @@ const B = ({
|
|
|
48
48
|
type: "checkbox"
|
|
49
49
|
}
|
|
50
50
|
),
|
|
51
|
-
l && /* @__PURE__ */
|
|
51
|
+
l && /* @__PURE__ */ t(
|
|
52
52
|
"span",
|
|
53
53
|
{
|
|
54
54
|
id: `ItemActionDrawerTrigger-${e}-label`,
|
|
@@ -57,10 +57,10 @@ const B = ({
|
|
|
57
57
|
children: l
|
|
58
58
|
}
|
|
59
59
|
),
|
|
60
|
-
d && /* @__PURE__ */
|
|
60
|
+
d && /* @__PURE__ */ t(
|
|
61
61
|
i,
|
|
62
62
|
{
|
|
63
|
-
className:
|
|
63
|
+
className: s({
|
|
64
64
|
"gi-hidden": o,
|
|
65
65
|
"gi-block": !o
|
|
66
66
|
}),
|
|
@@ -69,10 +69,10 @@ const B = ({
|
|
|
69
69
|
ariaHidden: !0
|
|
70
70
|
}
|
|
71
71
|
),
|
|
72
|
-
/* @__PURE__ */
|
|
72
|
+
/* @__PURE__ */ t(
|
|
73
73
|
i,
|
|
74
74
|
{
|
|
75
|
-
className:
|
|
75
|
+
className: s({
|
|
76
76
|
"gi-hidden": !o,
|
|
77
77
|
"gi-block": o
|
|
78
78
|
}),
|
|
@@ -85,25 +85,25 @@ const B = ({
|
|
|
85
85
|
]
|
|
86
86
|
}
|
|
87
87
|
),
|
|
88
|
-
/* @__PURE__ */
|
|
88
|
+
/* @__PURE__ */ t(
|
|
89
89
|
T,
|
|
90
90
|
{
|
|
91
91
|
isOpen: o,
|
|
92
92
|
onClose: () => g(!1),
|
|
93
|
-
position:
|
|
93
|
+
position: a || "right",
|
|
94
94
|
closeButtonLabel: c("header.drawer.close", {
|
|
95
|
-
defaultValue:
|
|
95
|
+
defaultValue: p || "Close"
|
|
96
96
|
}),
|
|
97
97
|
closeButtonSize: "large",
|
|
98
|
-
children: /* @__PURE__ */
|
|
98
|
+
children: /* @__PURE__ */ t(b, { children: r })
|
|
99
99
|
}
|
|
100
100
|
)
|
|
101
101
|
] });
|
|
102
|
-
},
|
|
102
|
+
}, B = ({
|
|
103
103
|
item: e,
|
|
104
104
|
index: r,
|
|
105
|
-
appearance:
|
|
106
|
-
}) => e.slotAppearance === "drawer" ? /* @__PURE__ */
|
|
105
|
+
appearance: a
|
|
106
|
+
}) => e.slotAppearance === "drawer" ? /* @__PURE__ */ t(A, { index: r, item: e, appearance: a }) : /* @__PURE__ */ n(
|
|
107
107
|
"label",
|
|
108
108
|
{
|
|
109
109
|
htmlFor: `ItemActionTrigger-${r}`,
|
|
@@ -111,10 +111,10 @@ const B = ({
|
|
|
111
111
|
item: e.label || `item ${r + 1}`,
|
|
112
112
|
defaultValue: `Toggle item action for ${e.label || `item ${r + 1}`}`
|
|
113
113
|
}),
|
|
114
|
-
className:
|
|
114
|
+
className: u({ appearance: a }),
|
|
115
115
|
"data-label-index": r,
|
|
116
116
|
children: [
|
|
117
|
-
/* @__PURE__ */
|
|
117
|
+
/* @__PURE__ */ t(
|
|
118
118
|
h,
|
|
119
119
|
{
|
|
120
120
|
"data-testid": `ItemActionTrigger-${r}`,
|
|
@@ -126,8 +126,8 @@ const B = ({
|
|
|
126
126
|
type: "button"
|
|
127
127
|
}
|
|
128
128
|
),
|
|
129
|
-
e.label && /* @__PURE__ */
|
|
130
|
-
e.icon && /* @__PURE__ */
|
|
129
|
+
e.label && /* @__PURE__ */ t("span", { className: "label", children: e.label }),
|
|
130
|
+
e.icon && /* @__PURE__ */ t(
|
|
131
131
|
i,
|
|
132
132
|
{
|
|
133
133
|
icon: e.icon,
|
|
@@ -135,20 +135,21 @@ const B = ({
|
|
|
135
135
|
id: `ItemIconActionTrigger-${r}`
|
|
136
136
|
}
|
|
137
137
|
),
|
|
138
|
-
/* @__PURE__ */
|
|
138
|
+
/* @__PURE__ */ t(
|
|
139
139
|
i,
|
|
140
140
|
{
|
|
141
141
|
className: "gi-hidden close-icon",
|
|
142
142
|
ariaHidden: !0,
|
|
143
143
|
id: `ItemCloseTrigger-${r}`,
|
|
144
144
|
icon: "close",
|
|
145
|
-
"data-testid": `ItemCloseTrigger-${r}
|
|
145
|
+
"data-testid": `ItemCloseTrigger-${r}`,
|
|
146
|
+
useFontIcon: !0
|
|
146
147
|
}
|
|
147
148
|
)
|
|
148
149
|
]
|
|
149
150
|
}
|
|
150
151
|
);
|
|
151
152
|
export {
|
|
152
|
-
|
|
153
|
-
|
|
153
|
+
y as SlotContainer,
|
|
154
|
+
B as SlotItemAction
|
|
154
155
|
};
|
|
@@ -3,7 +3,17 @@ export declare const headerVariants: import('tailwind-variants').TVReturnType<{
|
|
|
3
3
|
default: string;
|
|
4
4
|
light: string;
|
|
5
5
|
};
|
|
6
|
-
}, undefined, "gi-header", TVConfig<
|
|
6
|
+
}, undefined, "gi-header", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
7
|
+
appearance: {
|
|
8
|
+
default: string;
|
|
9
|
+
light: string;
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
appearance: {
|
|
13
|
+
default: string;
|
|
14
|
+
light: string;
|
|
15
|
+
};
|
|
16
|
+
}>, {
|
|
7
17
|
appearance: {
|
|
8
18
|
default: string;
|
|
9
19
|
light: string;
|
|
@@ -13,13 +23,33 @@ export declare const headerVariants: import('tailwind-variants').TVReturnType<{
|
|
|
13
23
|
default: string;
|
|
14
24
|
light: string;
|
|
15
25
|
};
|
|
16
|
-
}, undefined, "gi-header", TVConfig<
|
|
26
|
+
}, undefined, "gi-header", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
27
|
+
appearance: {
|
|
28
|
+
default: string;
|
|
29
|
+
light: string;
|
|
30
|
+
};
|
|
31
|
+
}, {
|
|
32
|
+
appearance: {
|
|
33
|
+
default: string;
|
|
34
|
+
light: string;
|
|
35
|
+
};
|
|
36
|
+
}>, unknown, unknown, undefined>>;
|
|
17
37
|
export declare const headerMenuVariants: import('tailwind-variants').TVReturnType<{
|
|
18
38
|
appearance: {
|
|
19
39
|
default: string;
|
|
20
40
|
light: string;
|
|
21
41
|
};
|
|
22
|
-
}, undefined, "gi-header-menu", TVConfig<
|
|
42
|
+
}, undefined, "gi-header-menu", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
43
|
+
appearance: {
|
|
44
|
+
default: string;
|
|
45
|
+
light: string;
|
|
46
|
+
};
|
|
47
|
+
}, {
|
|
48
|
+
appearance: {
|
|
49
|
+
default: string;
|
|
50
|
+
light: string;
|
|
51
|
+
};
|
|
52
|
+
}>, {
|
|
23
53
|
appearance: {
|
|
24
54
|
default: string;
|
|
25
55
|
light: string;
|
|
@@ -29,13 +59,33 @@ export declare const headerMenuVariants: import('tailwind-variants').TVReturnTyp
|
|
|
29
59
|
default: string;
|
|
30
60
|
light: string;
|
|
31
61
|
};
|
|
32
|
-
}, undefined, "gi-header-menu", TVConfig<
|
|
62
|
+
}, undefined, "gi-header-menu", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
63
|
+
appearance: {
|
|
64
|
+
default: string;
|
|
65
|
+
light: string;
|
|
66
|
+
};
|
|
67
|
+
}, {
|
|
68
|
+
appearance: {
|
|
69
|
+
default: string;
|
|
70
|
+
light: string;
|
|
71
|
+
};
|
|
72
|
+
}>, unknown, unknown, undefined>>;
|
|
33
73
|
export declare const headerToolItemVariants: import('tailwind-variants').TVReturnType<{
|
|
34
74
|
appearance: {
|
|
35
75
|
default: string;
|
|
36
76
|
light: string;
|
|
37
77
|
};
|
|
38
|
-
}, undefined, "gi-header-tool-item", TVConfig<
|
|
78
|
+
}, undefined, "gi-header-tool-item", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
79
|
+
appearance: {
|
|
80
|
+
default: string;
|
|
81
|
+
light: string;
|
|
82
|
+
};
|
|
83
|
+
}, {
|
|
84
|
+
appearance: {
|
|
85
|
+
default: string;
|
|
86
|
+
light: string;
|
|
87
|
+
};
|
|
88
|
+
}>, {
|
|
39
89
|
appearance: {
|
|
40
90
|
default: string;
|
|
41
91
|
light: string;
|
|
@@ -45,13 +95,33 @@ export declare const headerToolItemVariants: import('tailwind-variants').TVRetur
|
|
|
45
95
|
default: string;
|
|
46
96
|
light: string;
|
|
47
97
|
};
|
|
48
|
-
}, undefined, "gi-header-tool-item", TVConfig<
|
|
98
|
+
}, undefined, "gi-header-tool-item", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
99
|
+
appearance: {
|
|
100
|
+
default: string;
|
|
101
|
+
light: string;
|
|
102
|
+
};
|
|
103
|
+
}, {
|
|
104
|
+
appearance: {
|
|
105
|
+
default: string;
|
|
106
|
+
light: string;
|
|
107
|
+
};
|
|
108
|
+
}>, unknown, unknown, undefined>>;
|
|
49
109
|
export declare const headerSecondaryLinksVariants: import('tailwind-variants').TVReturnType<{
|
|
50
110
|
appearance: {
|
|
51
111
|
default: string;
|
|
52
112
|
light: string;
|
|
53
113
|
};
|
|
54
|
-
}, undefined, "gi-header-secondary-bar gi-order-1", TVConfig<
|
|
114
|
+
}, undefined, "gi-header-secondary-bar gi-order-1", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
115
|
+
appearance: {
|
|
116
|
+
default: string;
|
|
117
|
+
light: string;
|
|
118
|
+
};
|
|
119
|
+
}, {
|
|
120
|
+
appearance: {
|
|
121
|
+
default: string;
|
|
122
|
+
light: string;
|
|
123
|
+
};
|
|
124
|
+
}>, {
|
|
55
125
|
appearance: {
|
|
56
126
|
default: string;
|
|
57
127
|
light: string;
|
|
@@ -61,13 +131,33 @@ export declare const headerSecondaryLinksVariants: import('tailwind-variants').T
|
|
|
61
131
|
default: string;
|
|
62
132
|
light: string;
|
|
63
133
|
};
|
|
64
|
-
}, undefined, "gi-header-secondary-bar gi-order-1", TVConfig<
|
|
134
|
+
}, undefined, "gi-header-secondary-bar gi-order-1", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
135
|
+
appearance: {
|
|
136
|
+
default: string;
|
|
137
|
+
light: string;
|
|
138
|
+
};
|
|
139
|
+
}, {
|
|
140
|
+
appearance: {
|
|
141
|
+
default: string;
|
|
142
|
+
light: string;
|
|
143
|
+
};
|
|
144
|
+
}>, unknown, unknown, undefined>>;
|
|
65
145
|
export declare const headerSecondaryLinkItemVariants: import('tailwind-variants').TVReturnType<{
|
|
66
146
|
appearance: {
|
|
67
147
|
default: string;
|
|
68
148
|
light: string;
|
|
69
149
|
};
|
|
70
|
-
}, undefined, "gi-header-secondary-item", TVConfig<
|
|
150
|
+
}, undefined, "gi-header-secondary-item", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
151
|
+
appearance: {
|
|
152
|
+
default: string;
|
|
153
|
+
light: string;
|
|
154
|
+
};
|
|
155
|
+
}, {
|
|
156
|
+
appearance: {
|
|
157
|
+
default: string;
|
|
158
|
+
light: string;
|
|
159
|
+
};
|
|
160
|
+
}>, {
|
|
71
161
|
appearance: {
|
|
72
162
|
default: string;
|
|
73
163
|
light: string;
|
|
@@ -77,13 +167,33 @@ export declare const headerSecondaryLinkItemVariants: import('tailwind-variants'
|
|
|
77
167
|
default: string;
|
|
78
168
|
light: string;
|
|
79
169
|
};
|
|
80
|
-
}, undefined, "gi-header-secondary-item", TVConfig<
|
|
170
|
+
}, undefined, "gi-header-secondary-item", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
171
|
+
appearance: {
|
|
172
|
+
default: string;
|
|
173
|
+
light: string;
|
|
174
|
+
};
|
|
175
|
+
}, {
|
|
176
|
+
appearance: {
|
|
177
|
+
default: string;
|
|
178
|
+
light: string;
|
|
179
|
+
};
|
|
180
|
+
}>, unknown, unknown, undefined>>;
|
|
81
181
|
export declare const headerSecondaryLinkSlotItemVariants: import('tailwind-variants').TVReturnType<{
|
|
82
182
|
appearance: {
|
|
83
183
|
default: string;
|
|
84
184
|
light: string;
|
|
85
185
|
};
|
|
86
|
-
}, undefined, "gi-header-secondary-item-slot", TVConfig<
|
|
186
|
+
}, undefined, "gi-header-secondary-item-slot", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
187
|
+
appearance: {
|
|
188
|
+
default: string;
|
|
189
|
+
light: string;
|
|
190
|
+
};
|
|
191
|
+
}, {
|
|
192
|
+
appearance: {
|
|
193
|
+
default: string;
|
|
194
|
+
light: string;
|
|
195
|
+
};
|
|
196
|
+
}>, {
|
|
87
197
|
appearance: {
|
|
88
198
|
default: string;
|
|
89
199
|
light: string;
|
|
@@ -93,13 +203,33 @@ export declare const headerSecondaryLinkSlotItemVariants: import('tailwind-varia
|
|
|
93
203
|
default: string;
|
|
94
204
|
light: string;
|
|
95
205
|
};
|
|
96
|
-
}, undefined, "gi-header-secondary-item-slot", TVConfig<
|
|
206
|
+
}, undefined, "gi-header-secondary-item-slot", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
207
|
+
appearance: {
|
|
208
|
+
default: string;
|
|
209
|
+
light: string;
|
|
210
|
+
};
|
|
211
|
+
}, {
|
|
212
|
+
appearance: {
|
|
213
|
+
default: string;
|
|
214
|
+
light: string;
|
|
215
|
+
};
|
|
216
|
+
}>, unknown, unknown, undefined>>;
|
|
97
217
|
export declare const headerTitleVariants: import('tailwind-variants').TVReturnType<{
|
|
98
218
|
appearance: {
|
|
99
219
|
default: string;
|
|
100
220
|
light: string;
|
|
101
221
|
};
|
|
102
|
-
}, undefined, "gi-header-title", TVConfig<
|
|
222
|
+
}, undefined, "gi-header-title", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
223
|
+
appearance: {
|
|
224
|
+
default: string;
|
|
225
|
+
light: string;
|
|
226
|
+
};
|
|
227
|
+
}, {
|
|
228
|
+
appearance: {
|
|
229
|
+
default: string;
|
|
230
|
+
light: string;
|
|
231
|
+
};
|
|
232
|
+
}>, {
|
|
103
233
|
appearance: {
|
|
104
234
|
default: string;
|
|
105
235
|
light: string;
|
|
@@ -109,13 +239,33 @@ export declare const headerTitleVariants: import('tailwind-variants').TVReturnTy
|
|
|
109
239
|
default: string;
|
|
110
240
|
light: string;
|
|
111
241
|
};
|
|
112
|
-
}, undefined, "gi-header-title", TVConfig<
|
|
242
|
+
}, undefined, "gi-header-title", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
243
|
+
appearance: {
|
|
244
|
+
default: string;
|
|
245
|
+
light: string;
|
|
246
|
+
};
|
|
247
|
+
}, {
|
|
248
|
+
appearance: {
|
|
249
|
+
default: string;
|
|
250
|
+
light: string;
|
|
251
|
+
};
|
|
252
|
+
}>, unknown, unknown, undefined>>;
|
|
113
253
|
export declare const headerDividerVariants: import('tailwind-variants').TVReturnType<{
|
|
114
254
|
appearance: {
|
|
115
255
|
default: string;
|
|
116
256
|
light: string;
|
|
117
257
|
};
|
|
118
|
-
}, undefined, "gi-header-divider", TVConfig<
|
|
258
|
+
}, undefined, "gi-header-divider", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
259
|
+
appearance: {
|
|
260
|
+
default: string;
|
|
261
|
+
light: string;
|
|
262
|
+
};
|
|
263
|
+
}, {
|
|
264
|
+
appearance: {
|
|
265
|
+
default: string;
|
|
266
|
+
light: string;
|
|
267
|
+
};
|
|
268
|
+
}>, {
|
|
119
269
|
appearance: {
|
|
120
270
|
default: string;
|
|
121
271
|
light: string;
|
|
@@ -125,13 +275,33 @@ export declare const headerDividerVariants: import('tailwind-variants').TVReturn
|
|
|
125
275
|
default: string;
|
|
126
276
|
light: string;
|
|
127
277
|
};
|
|
128
|
-
}, undefined, "gi-header-divider", TVConfig<
|
|
278
|
+
}, undefined, "gi-header-divider", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
279
|
+
appearance: {
|
|
280
|
+
default: string;
|
|
281
|
+
light: string;
|
|
282
|
+
};
|
|
283
|
+
}, {
|
|
284
|
+
appearance: {
|
|
285
|
+
default: string;
|
|
286
|
+
light: string;
|
|
287
|
+
};
|
|
288
|
+
}>, unknown, unknown, undefined>>;
|
|
129
289
|
export declare const headerSlotContainerVariants: import('tailwind-variants').TVReturnType<{
|
|
130
290
|
appearance: {
|
|
131
291
|
default: string;
|
|
132
292
|
light: string;
|
|
133
293
|
};
|
|
134
|
-
}, undefined, "gi-header-slot-container", TVConfig<
|
|
294
|
+
}, undefined, "gi-header-slot-container", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
295
|
+
appearance: {
|
|
296
|
+
default: string;
|
|
297
|
+
light: string;
|
|
298
|
+
};
|
|
299
|
+
}, {
|
|
300
|
+
appearance: {
|
|
301
|
+
default: string;
|
|
302
|
+
light: string;
|
|
303
|
+
};
|
|
304
|
+
}>, {
|
|
135
305
|
appearance: {
|
|
136
306
|
default: string;
|
|
137
307
|
light: string;
|
|
@@ -141,13 +311,33 @@ export declare const headerSlotContainerVariants: import('tailwind-variants').TV
|
|
|
141
311
|
default: string;
|
|
142
312
|
light: string;
|
|
143
313
|
};
|
|
144
|
-
}, undefined, "gi-header-slot-container", TVConfig<
|
|
314
|
+
}, undefined, "gi-header-slot-container", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
315
|
+
appearance: {
|
|
316
|
+
default: string;
|
|
317
|
+
light: string;
|
|
318
|
+
};
|
|
319
|
+
}, {
|
|
320
|
+
appearance: {
|
|
321
|
+
default: string;
|
|
322
|
+
light: string;
|
|
323
|
+
};
|
|
324
|
+
}>, unknown, unknown, undefined>>;
|
|
145
325
|
export declare const headerLogoVariants: import('tailwind-variants').TVReturnType<{
|
|
146
326
|
appearance: {
|
|
147
327
|
default: string;
|
|
148
328
|
light: string;
|
|
149
329
|
};
|
|
150
|
-
}, undefined, "gi-header-logo", TVConfig<
|
|
330
|
+
}, undefined, "gi-header-logo", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
331
|
+
appearance: {
|
|
332
|
+
default: string;
|
|
333
|
+
light: string;
|
|
334
|
+
};
|
|
335
|
+
}, {
|
|
336
|
+
appearance: {
|
|
337
|
+
default: string;
|
|
338
|
+
light: string;
|
|
339
|
+
};
|
|
340
|
+
}>, {
|
|
151
341
|
appearance: {
|
|
152
342
|
default: string;
|
|
153
343
|
light: string;
|
|
@@ -157,4 +347,14 @@ export declare const headerLogoVariants: import('tailwind-variants').TVReturnTyp
|
|
|
157
347
|
default: string;
|
|
158
348
|
light: string;
|
|
159
349
|
};
|
|
160
|
-
}, undefined, "gi-header-logo", TVConfig<
|
|
350
|
+
}, undefined, "gi-header-logo", import('tailwind-variants/dist/config.js').TVConfig<{
|
|
351
|
+
appearance: {
|
|
352
|
+
default: string;
|
|
353
|
+
light: string;
|
|
354
|
+
};
|
|
355
|
+
}, {
|
|
356
|
+
appearance: {
|
|
357
|
+
default: string;
|
|
358
|
+
light: string;
|
|
359
|
+
};
|
|
360
|
+
}>, unknown, unknown, undefined>>;
|