@marigold/system 15.2.0 → 15.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/dist/index.d.mts +927 -879
- package/dist/index.d.ts +927 -879
- package/dist/index.js +920 -984
- package/dist/index.mjs +862 -918
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,74 +1,81 @@
|
|
|
1
|
-
import React$1, { Context, ReactNode } from
|
|
2
|
-
import {
|
|
3
|
-
import { DateFormatterOptions, useNumberFormatter } from
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
export { VariantProps } from 'class-variance-authority';
|
|
1
|
+
import React$1, { Context, ReactNode } from "react";
|
|
2
|
+
import { VariantProps } from "class-variance-authority";
|
|
3
|
+
import { DateFormatterOptions, useNumberFormatter } from "@react-aria/i18n";
|
|
4
|
+
import { HtmlProps, KebabCase } from "@marigold/types";
|
|
5
|
+
import { ClassProp, ClassValue, StringToBoolean } from "class-variance-authority/dist/types";
|
|
7
6
|
|
|
7
|
+
//#region src/components/SVG/SVG.d.ts
|
|
8
8
|
interface SVGProps extends Omit<HtmlProps<'svg'>, 'fill' | 'style'> {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
9
|
+
/**
|
|
10
|
+
* The size of an svg.
|
|
11
|
+
*/
|
|
12
|
+
size?: number | string | number[] | string[];
|
|
13
|
+
/**
|
|
14
|
+
* To add a className on svg and icons.
|
|
15
|
+
*/
|
|
16
|
+
className?: string;
|
|
17
17
|
}
|
|
18
18
|
declare const SVG: React$1.ForwardRefExoticComponent<SVGProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
19
|
-
|
|
19
|
+
//#endregion
|
|
20
|
+
//#region src/components/Formatters/DateFormat.d.ts
|
|
20
21
|
interface DateFormatProps extends DateFormatterOptions {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
/**
|
|
23
|
+
* Value to be formatted.
|
|
24
|
+
*/
|
|
25
|
+
value: Date | [Date, Date];
|
|
26
|
+
/**
|
|
27
|
+
* Specifies that the digits should take the full width.
|
|
28
|
+
* @default true
|
|
29
|
+
*/
|
|
30
|
+
tabular?: boolean;
|
|
30
31
|
}
|
|
31
|
-
declare const DateFormat: ({
|
|
32
|
-
|
|
32
|
+
declare const DateFormat: ({
|
|
33
|
+
value,
|
|
34
|
+
tabular,
|
|
35
|
+
...props
|
|
36
|
+
}: DateFormatProps) => React$1.JSX.Element;
|
|
37
|
+
//#endregion
|
|
38
|
+
//#region src/components/Formatters/NumericFormat.d.ts
|
|
33
39
|
type NumerFormatterOptions = NonNullable<Parameters<typeof useNumberFormatter>[0]>;
|
|
34
40
|
type StringNumericLiteral = `${number}` | 'Infinity' | '-Infinity' | '+Infinity';
|
|
35
41
|
interface NumericFormatProps extends NumerFormatterOptions {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
42
|
+
/**
|
|
43
|
+
* Value to be formatted.
|
|
44
|
+
*/
|
|
45
|
+
value: number | bigint | StringNumericLiteral | [number, number] | [bigint, bigint] | [StringNumericLiteral, StringNumericLiteral];
|
|
46
|
+
/**
|
|
47
|
+
* The numberingSystem accessor property of Intl.Locale instances returns the numeral system for this locale.
|
|
48
|
+
*/
|
|
49
|
+
numberingSystem?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Specifies that the digits should take the full width.
|
|
52
|
+
* @default true
|
|
53
|
+
*/
|
|
54
|
+
tabular?: boolean;
|
|
49
55
|
}
|
|
50
|
-
declare const NumericFormat: ({
|
|
51
|
-
|
|
56
|
+
declare const NumericFormat: ({
|
|
57
|
+
value,
|
|
58
|
+
tabular,
|
|
59
|
+
...props
|
|
60
|
+
}: NumericFormatProps) => React$1.JSX.Element;
|
|
61
|
+
//#endregion
|
|
62
|
+
//#region src/utils.d.ts
|
|
52
63
|
type ConfigSchema = Record<string, Record<string, ClassValue>>;
|
|
53
|
-
type ConfigVariants<T extends ConfigSchema> = {
|
|
54
|
-
|
|
55
|
-
};
|
|
56
|
-
type ConfigVariantsMulti<T extends ConfigSchema> = {
|
|
57
|
-
[Variant in keyof T]?: StringToBoolean<keyof T[Variant]> | StringToBoolean<keyof T[Variant]>[] | undefined;
|
|
58
|
-
};
|
|
64
|
+
type ConfigVariants<T extends ConfigSchema> = { [Variant in keyof T]?: StringToBoolean<keyof T[Variant]> | null | undefined };
|
|
65
|
+
type ConfigVariantsMulti<T extends ConfigSchema> = { [Variant in keyof T]?: StringToBoolean<keyof T[Variant]> | StringToBoolean<keyof T[Variant]>[] | undefined };
|
|
59
66
|
type Config<T> = T extends ConfigSchema ? {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
67
|
+
variants?: T;
|
|
68
|
+
defaultVariants?: ConfigVariants<T>;
|
|
69
|
+
compoundVariants?: (T extends ConfigSchema ? (ConfigVariants<T> | ConfigVariantsMulti<T>) & ClassProp : ClassProp)[];
|
|
63
70
|
} : never;
|
|
64
71
|
type Props<T> = T extends ConfigSchema ? ConfigVariants<T> & ClassProp : ClassProp;
|
|
65
72
|
declare const cva: <T>(base?: ClassValue, config?: Config<T>) => {
|
|
66
|
-
|
|
67
|
-
|
|
73
|
+
(props?: Props<T>): string;
|
|
74
|
+
variants: T | undefined;
|
|
68
75
|
};
|
|
69
76
|
declare const cn: (...inputs: ClassValue[]) => string;
|
|
70
77
|
declare const createVar: (o: {
|
|
71
|
-
|
|
78
|
+
[key: string]: string | number | undefined;
|
|
72
79
|
}) => React.CSSProperties;
|
|
73
80
|
/**
|
|
74
81
|
* Safely get a dot-notated path within a nested object, with ability
|
|
@@ -97,948 +104,989 @@ declare const isValidCssCustomPropertyName: (val: string) => boolean;
|
|
|
97
104
|
* If the value is not a valid custom property name, the function returns the original value.
|
|
98
105
|
*/
|
|
99
106
|
declare const ensureCssVar: (val: string, prefix?: string) => string;
|
|
100
|
-
|
|
107
|
+
//#endregion
|
|
108
|
+
//#region src/types/theme.d.ts
|
|
101
109
|
interface NestedStringObject {
|
|
102
|
-
|
|
110
|
+
[key: string]: NestedStringObject | string;
|
|
103
111
|
}
|
|
104
112
|
interface ComponentStyleFunction<Variants extends string = never, Sizes extends string = never, Additional extends {
|
|
105
|
-
|
|
113
|
+
[name: string]: any;
|
|
106
114
|
} = {}> {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
115
|
+
(props?: {
|
|
116
|
+
variant?: Variants | null;
|
|
117
|
+
size?: Sizes | null;
|
|
118
|
+
className?: ClassValue;
|
|
119
|
+
} & Partial<Additional>): string;
|
|
120
|
+
variants: ConfigSchema | undefined;
|
|
113
121
|
}
|
|
114
122
|
type Theme = {
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
123
|
+
name: string;
|
|
124
|
+
screens?: {
|
|
125
|
+
[key: string]: string;
|
|
126
|
+
};
|
|
127
|
+
colors?: NestedStringObject;
|
|
128
|
+
shadow?: NestedStringObject;
|
|
129
|
+
height?: NestedStringObject;
|
|
130
|
+
root?: ComponentStyleFunction;
|
|
131
|
+
components: {
|
|
132
|
+
Accordion?: Record<'container' | 'item' | 'header' | 'content' | 'icon', ComponentStyleFunction<string, string>>;
|
|
133
|
+
Badge?: ComponentStyleFunction<string, string>;
|
|
134
|
+
Breadcrumbs?: Record<'container' | 'item' | 'link' | 'current', ComponentStyleFunction<string, string>>;
|
|
135
|
+
Button?: ComponentStyleFunction<string, string>;
|
|
136
|
+
Card?: ComponentStyleFunction<string, string>;
|
|
137
|
+
CloseButton?: ComponentStyleFunction<string, string>;
|
|
138
|
+
Collapsible?: Record<'container' | 'trigger' | 'content', ComponentStyleFunction<string, string>>;
|
|
139
|
+
ContextualHelp?: Record<'trigger' | 'popover' | 'container' | 'title' | 'content', ComponentStyleFunction<string, string>>;
|
|
140
|
+
DateField?: Record<'segment' | 'field' | 'action', ComponentStyleFunction<string, string>>;
|
|
141
|
+
Dialog?: Record<'closeButton' | 'container' | 'header' | 'content' | 'actions' | 'title', ComponentStyleFunction<string, string>>;
|
|
142
|
+
Divider?: ComponentStyleFunction<string, string>;
|
|
143
|
+
Drawer?: Record<'overlay' | 'closeButton' | 'container' | 'header' | 'title' | 'content' | 'actions', ComponentStyleFunction<string, string>>;
|
|
144
|
+
Field?: ComponentStyleFunction<string, string>;
|
|
145
|
+
Headline?: ComponentStyleFunction<string, string>;
|
|
146
|
+
Popover?: ComponentStyleFunction<string, string>;
|
|
147
|
+
HelpText?: Record<'container' | 'icon', ComponentStyleFunction<string, string>>;
|
|
148
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
149
|
+
Checkbox?: Record<'container' | 'label' | 'checkbox' | 'group', ComponentStyleFunction<string, string>>;
|
|
150
|
+
Switch?: Record<'container' | 'track' | 'thumb', ComponentStyleFunction<string, string>>;
|
|
151
|
+
Input?: Record<'input' | 'icon' | 'action', ComponentStyleFunction<string, string>>;
|
|
152
|
+
Label?: Record<'container' | 'indicator', ComponentStyleFunction<string, string>>;
|
|
153
|
+
List?: Record<'ol' | 'ul' | 'item', ComponentStyleFunction<string, string>>;
|
|
154
|
+
Link?: ComponentStyleFunction<string, string>;
|
|
155
|
+
ListBox?: Record<'container' | 'list' | 'item' | 'section' | 'header', ComponentStyleFunction<string, string>>;
|
|
156
|
+
Menu?: Record<'container' | 'section' | 'item' | 'button', ComponentStyleFunction<string, string>>;
|
|
157
|
+
Modal?: ComponentStyleFunction<string, string>;
|
|
158
|
+
MultiSelect?: Record<'container' | 'closeButton' | 'field' | 'input' | 'icon' | 'listContainer' | 'list' | 'option' | 'tag' | 'valueContainer', ComponentStyleFunction<string, string>>;
|
|
159
|
+
Pagination?: Record<'container' | 'navigationButton' | 'pageButton' | 'icon' | 'ellipsis', ComponentStyleFunction<string, string>>;
|
|
160
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
161
|
+
Radio?: Record<'container' | 'label' | 'radio' | 'group', ComponentStyleFunction<string, string>>;
|
|
162
|
+
Slider?: Record<'container' | 'track' | 'thumb' | 'output' | 'selectedTrack', ComponentStyleFunction<string, string>>;
|
|
163
|
+
Select?: Record<'select' | 'icon', ComponentStyleFunction<string, string>>;
|
|
164
|
+
NumberField?: Record<'group' | 'stepper' | 'input', ComponentStyleFunction<string, string>>;
|
|
165
|
+
SectionMessage?: Record<'container' | 'icon' | 'title' | 'content' | 'close', ComponentStyleFunction<string, string>>;
|
|
166
|
+
Table?: Record<'table' | 'headerRow' | 'header' | 'thead' | 'body' | 'row' | 'cell', ComponentStyleFunction<string, string>>;
|
|
167
|
+
Tag?: Record<'container' | 'tag' | 'listItems' | 'closeButton' | 'removeAll', ComponentStyleFunction<string, string>>;
|
|
168
|
+
Text?: ComponentStyleFunction<string, string>;
|
|
169
|
+
TextArea?: ComponentStyleFunction<string, string>;
|
|
170
|
+
Tooltip?: Record<'container' | 'arrow', ComponentStyleFunction<string, string>>;
|
|
171
|
+
Toast?: Record<'toast' | 'title' | 'description' | 'closeButton' | 'icon' | 'content' | 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right' | 'top' | 'bottom' | 'action', ComponentStyleFunction<string, string>>;
|
|
172
|
+
Tabs?: Record<'container' | 'tabsList' | 'tabpanel' | 'tab', ComponentStyleFunction<string, string>>;
|
|
173
|
+
Underlay?: ComponentStyleFunction<string, string>;
|
|
174
|
+
Calendar?: Record<'calendar' | 'calendarListboxButton' | 'calendarCell' | 'calendarControllers' | 'calendarHeader' | 'calendarGrid' | 'select', ComponentStyleFunction<string, string>>;
|
|
175
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
176
|
+
ComboBox?: ComponentStyleFunction<string, string>;
|
|
177
|
+
XLoader?: Record<'container' | 'loader' | 'label', ComponentStyleFunction<string, string>>;
|
|
178
|
+
};
|
|
171
179
|
};
|
|
172
180
|
type ComponentNames = keyof Theme['components'];
|
|
173
181
|
type ThemeComponent<C extends ComponentNames> = NonNullable<Theme['components'][C]>;
|
|
174
182
|
type ThemeComponentParts<C extends ComponentNames> = keyof ThemeComponent<C>;
|
|
175
|
-
|
|
183
|
+
//#endregion
|
|
184
|
+
//#region src/hooks/useClassNames.d.ts
|
|
176
185
|
interface ComponentContextProps {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
186
|
+
size?: string;
|
|
187
|
+
variant?: string;
|
|
188
|
+
[key: string]: any;
|
|
180
189
|
}
|
|
181
190
|
interface UseClassNamesProps<C extends ComponentNames> {
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
};
|
|
188
|
-
context?: Context<ComponentContextProps>;
|
|
191
|
+
component: C;
|
|
192
|
+
variant?: string;
|
|
193
|
+
size?: string;
|
|
194
|
+
className?: ThemeComponent<C> extends ((...args: any) => any) ? string : { [slot in keyof ThemeComponent<C>]?: string };
|
|
195
|
+
context?: Context<ComponentContextProps>;
|
|
189
196
|
}
|
|
190
|
-
type ComponentClassNames<C extends ComponentNames> = ThemeComponent<C> extends (...args: any) => any ? string : {
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
197
|
+
type ComponentClassNames<C extends ComponentNames> = ThemeComponent<C> extends ((...args: any) => any) ? string : { [slot in keyof ThemeComponent<C>]: string };
|
|
198
|
+
declare const useClassNames: <C extends ComponentNames>({
|
|
199
|
+
component,
|
|
200
|
+
className,
|
|
201
|
+
variant,
|
|
202
|
+
size,
|
|
203
|
+
context: ComponentContext
|
|
204
|
+
}: UseClassNamesProps<C>) => ComponentClassNames<C>;
|
|
205
|
+
//#endregion
|
|
206
|
+
//#region src/hooks/useResponsiveValue.d.ts
|
|
195
207
|
/**
|
|
196
208
|
* Hook that can be used to return values based on the current screen size,
|
|
197
209
|
* using breakpoints from the theme (`theme.breakpoints`). Note that this
|
|
198
210
|
* hook is client.side only.
|
|
199
211
|
*/
|
|
200
212
|
declare const useResponsiveValue: <T>(values: T[], defaultIndex?: number) => T;
|
|
201
|
-
|
|
213
|
+
//#endregion
|
|
214
|
+
//#region src/hooks/useStateProps.d.ts
|
|
202
215
|
type ComponentState = 'active' | 'checked' | 'disabled' | 'error' | 'expanded' | 'focus' | 'focusVisible' | 'hasIcon' | 'hover' | 'indeterminate' | 'readOnly' | 'required' | 'selected' | 'visited';
|
|
203
216
|
type StateAttrKeyProps = `data-${KebabCase<ComponentState>}`;
|
|
204
|
-
type StateAttrProps = {
|
|
205
|
-
|
|
206
|
-
};
|
|
207
|
-
type UseStateProps = {
|
|
208
|
-
[key in ComponentState]?: boolean;
|
|
209
|
-
};
|
|
217
|
+
type StateAttrProps = { [key in StateAttrKeyProps]?: '' };
|
|
218
|
+
type UseStateProps = { [key in ComponentState]?: boolean };
|
|
210
219
|
/**
|
|
211
220
|
* Given a map of states (e.g. `{ hover: true, focus: false }`) returns an
|
|
212
221
|
* object that can be used to set state props on a component
|
|
213
222
|
* (e.g. `[data-hover]` and `[data-focus]`).
|
|
214
223
|
*/
|
|
215
224
|
declare const useStateProps: (states: UseStateProps) => StateAttrProps;
|
|
216
|
-
|
|
225
|
+
//#endregion
|
|
226
|
+
//#region src/hooks/useTheme.d.ts
|
|
217
227
|
declare const useTheme: () => Theme;
|
|
218
228
|
interface ThemeProviderProps<T extends Theme> {
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
/**
|
|
230
|
+
* The theme that should be used within the provider context.
|
|
231
|
+
*/
|
|
232
|
+
theme: T;
|
|
233
|
+
/**
|
|
234
|
+
* The children of the component.
|
|
235
|
+
*/
|
|
236
|
+
children: ReactNode;
|
|
237
|
+
/**
|
|
238
|
+
* Additional class names to apply to the root element of the provider.
|
|
239
|
+
*/
|
|
240
|
+
className?: string;
|
|
231
241
|
}
|
|
232
|
-
declare function ThemeProvider<T extends Theme>({
|
|
233
|
-
|
|
242
|
+
declare function ThemeProvider<T extends Theme>({
|
|
243
|
+
theme,
|
|
244
|
+
children,
|
|
245
|
+
className
|
|
246
|
+
}: ThemeProviderProps<T>): React$1.JSX.Element;
|
|
247
|
+
//#endregion
|
|
248
|
+
//#region src/hooks/useSmallScreen.d.ts
|
|
234
249
|
declare const useSmallScreen: () => boolean;
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
};
|
|
250
|
+
//#endregion
|
|
251
|
+
//#region src/hooks/extendTheme.d.ts
|
|
252
|
+
type StylesProps = { [K in keyof Theme['components']]: Partial<Theme['components'][K]> };
|
|
239
253
|
declare const extendTheme: (newStyles: StylesProps, theme: Theme) => {
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
254
|
+
components: {
|
|
255
|
+
Accordion?: Record<"container" | "item" | "header" | "content" | "icon", ComponentStyleFunction<string, string>>;
|
|
256
|
+
Badge?: ComponentStyleFunction<string, string>;
|
|
257
|
+
Breadcrumbs?: Record<"container" | "item" | "link" | "current", ComponentStyleFunction<string, string>>;
|
|
258
|
+
Button?: ComponentStyleFunction<string, string>;
|
|
259
|
+
Card?: ComponentStyleFunction<string, string>;
|
|
260
|
+
CloseButton?: ComponentStyleFunction<string, string>;
|
|
261
|
+
Collapsible?: Record<"container" | "trigger" | "content", ComponentStyleFunction<string, string>>;
|
|
262
|
+
ContextualHelp?: Record<"trigger" | "popover" | "container" | "title" | "content", ComponentStyleFunction<string, string>>;
|
|
263
|
+
DateField?: Record<"segment" | "field" | "action", ComponentStyleFunction<string, string>>;
|
|
264
|
+
Dialog?: Record<"closeButton" | "container" | "header" | "content" | "actions" | "title", ComponentStyleFunction<string, string>>;
|
|
265
|
+
Divider?: ComponentStyleFunction<string, string>;
|
|
266
|
+
Drawer?: Record<"overlay" | "closeButton" | "container" | "header" | "title" | "content" | "actions", ComponentStyleFunction<string, string>>;
|
|
267
|
+
Field?: ComponentStyleFunction<string, string>;
|
|
268
|
+
Headline?: ComponentStyleFunction<string, string>;
|
|
269
|
+
Popover?: ComponentStyleFunction<string, string>;
|
|
270
|
+
HelpText?: Record<"container" | "icon", ComponentStyleFunction<string, string>>;
|
|
271
|
+
IconButton?: ComponentStyleFunction<string, string>;
|
|
272
|
+
Checkbox?: Record<"container" | "label" | "checkbox" | "group", ComponentStyleFunction<string, string>>;
|
|
273
|
+
Switch?: Record<"container" | "track" | "thumb", ComponentStyleFunction<string, string>>;
|
|
274
|
+
Input?: Record<"input" | "icon" | "action", ComponentStyleFunction<string, string>>;
|
|
275
|
+
Label?: Record<"container" | "indicator", ComponentStyleFunction<string, string>>;
|
|
276
|
+
List?: Record<"ol" | "ul" | "item", ComponentStyleFunction<string, string>>;
|
|
277
|
+
Link?: ComponentStyleFunction<string, string>;
|
|
278
|
+
ListBox?: Record<"container" | "list" | "item" | "section" | "header", ComponentStyleFunction<string, string>>;
|
|
279
|
+
Menu?: Record<"container" | "section" | "item" | "button", ComponentStyleFunction<string, string>>;
|
|
280
|
+
Modal?: ComponentStyleFunction<string, string>;
|
|
281
|
+
MultiSelect?: Record<"container" | "closeButton" | "field" | "input" | "icon" | "listContainer" | "list" | "option" | "tag" | "valueContainer", ComponentStyleFunction<string, string>>;
|
|
282
|
+
Pagination?: Record<"container" | "navigationButton" | "pageButton" | "icon" | "ellipsis", ComponentStyleFunction<string, string>>;
|
|
283
|
+
ProgressCycle?: ComponentStyleFunction<string, string>;
|
|
284
|
+
Radio?: Record<"container" | "label" | "radio" | "group", ComponentStyleFunction<string, string>>;
|
|
285
|
+
Slider?: Record<"container" | "track" | "thumb" | "output" | "selectedTrack", ComponentStyleFunction<string, string>>;
|
|
286
|
+
Select?: Record<"select" | "icon", ComponentStyleFunction<string, string>>;
|
|
287
|
+
NumberField?: Record<"group" | "stepper" | "input", ComponentStyleFunction<string, string>>;
|
|
288
|
+
SectionMessage?: Record<"container" | "icon" | "title" | "content" | "close", ComponentStyleFunction<string, string>>;
|
|
289
|
+
Table?: Record<"table" | "headerRow" | "header" | "thead" | "body" | "row" | "cell", ComponentStyleFunction<string, string>>;
|
|
290
|
+
Tag?: Record<"container" | "tag" | "listItems" | "closeButton" | "removeAll", ComponentStyleFunction<string, string>>;
|
|
291
|
+
Text?: ComponentStyleFunction<string, string>;
|
|
292
|
+
TextArea?: ComponentStyleFunction<string, string>;
|
|
293
|
+
Tooltip?: Record<"container" | "arrow", ComponentStyleFunction<string, string>>;
|
|
294
|
+
Toast?: Record<"toast" | "title" | "description" | "closeButton" | "icon" | "content" | "bottom-left" | "bottom-right" | "top-left" | "top-right" | "top" | "bottom" | "action", ComponentStyleFunction<string, string>>;
|
|
295
|
+
Tabs?: Record<"container" | "tabsList" | "tabpanel" | "tab", ComponentStyleFunction<string, string>>;
|
|
296
|
+
Underlay?: ComponentStyleFunction<string, string>;
|
|
297
|
+
Calendar?: Record<"calendar" | "calendarListboxButton" | "calendarCell" | "calendarControllers" | "calendarHeader" | "calendarGrid" | "select", ComponentStyleFunction<string, string>>;
|
|
298
|
+
DatePicker?: ComponentStyleFunction<string, string>;
|
|
299
|
+
ComboBox?: ComponentStyleFunction<string, string>;
|
|
300
|
+
XLoader?: Record<"container" | "loader" | "label", ComponentStyleFunction<string, string>>;
|
|
301
|
+
};
|
|
302
|
+
name: string;
|
|
303
|
+
screens?: {
|
|
304
|
+
[key: string]: string;
|
|
305
|
+
};
|
|
306
|
+
colors?: NestedStringObject;
|
|
307
|
+
shadow?: NestedStringObject;
|
|
308
|
+
height?: NestedStringObject;
|
|
309
|
+
root?: ComponentStyleFunction;
|
|
296
310
|
};
|
|
297
|
-
|
|
311
|
+
//#endregion
|
|
312
|
+
//#region src/defaultTheme.d.ts
|
|
298
313
|
declare const defaultTheme: {
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
314
|
+
name: string;
|
|
315
|
+
screens: {
|
|
316
|
+
sm: string;
|
|
317
|
+
md: string;
|
|
318
|
+
lg: string;
|
|
319
|
+
xl: string;
|
|
320
|
+
'2xl': string;
|
|
321
|
+
};
|
|
322
|
+
components: {};
|
|
308
323
|
};
|
|
309
|
-
|
|
324
|
+
//#endregion
|
|
325
|
+
//#region src/style-props.d.ts
|
|
310
326
|
declare const width: {
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
327
|
+
readonly auto: "w-auto";
|
|
328
|
+
readonly full: "w-full";
|
|
329
|
+
readonly fit: "w-fit";
|
|
330
|
+
readonly min: "w-min";
|
|
331
|
+
readonly max: "w-max";
|
|
332
|
+
readonly screen: "w-screen";
|
|
333
|
+
readonly svh: "w-svh";
|
|
334
|
+
readonly lvh: "w-lvh";
|
|
335
|
+
readonly dvh: "w-dvh";
|
|
336
|
+
readonly px: "w-px";
|
|
337
|
+
readonly 0: "w-0";
|
|
338
|
+
readonly '0.5': "w-0.5";
|
|
339
|
+
readonly 1: "w-1";
|
|
340
|
+
readonly '1.5': "w-1.5";
|
|
341
|
+
readonly 2: "w-2";
|
|
342
|
+
readonly '2.5': "w-2.5";
|
|
343
|
+
readonly 3: "w-3";
|
|
344
|
+
readonly '3.5': "w-3.5";
|
|
345
|
+
readonly 4: "w-4";
|
|
346
|
+
readonly 5: "w-5";
|
|
347
|
+
readonly 6: "w-6";
|
|
348
|
+
readonly 7: "w-7";
|
|
349
|
+
readonly 8: "w-8";
|
|
350
|
+
readonly 9: "w-9";
|
|
351
|
+
readonly 10: "w-10";
|
|
352
|
+
readonly 11: "w-11";
|
|
353
|
+
readonly 12: "w-12";
|
|
354
|
+
readonly 14: "w-14";
|
|
355
|
+
readonly 16: "w-16";
|
|
356
|
+
readonly 20: "w-20";
|
|
357
|
+
readonly 24: "w-24";
|
|
358
|
+
readonly 28: "w-28";
|
|
359
|
+
readonly 32: "w-32";
|
|
360
|
+
readonly 36: "w-36";
|
|
361
|
+
readonly 40: "w-40";
|
|
362
|
+
readonly 44: "w-44";
|
|
363
|
+
readonly 48: "w-48";
|
|
364
|
+
readonly 52: "w-52";
|
|
365
|
+
readonly 56: "w-56";
|
|
366
|
+
readonly 60: "w-60";
|
|
367
|
+
readonly 64: "w-64";
|
|
368
|
+
readonly 72: "w-72";
|
|
369
|
+
readonly 80: "w-80";
|
|
370
|
+
readonly 96: "w-96";
|
|
371
|
+
readonly '1/2': "w-1/2";
|
|
372
|
+
readonly '1/3': "w-1/3";
|
|
373
|
+
readonly '2/3': "w-2/3";
|
|
374
|
+
readonly '1/4': "w-1/4";
|
|
375
|
+
readonly '2/4': "w-2/4";
|
|
376
|
+
readonly '3/4': "w-3/4";
|
|
377
|
+
readonly '1/5': "w-1/5";
|
|
378
|
+
readonly '2/5': "w-2/5";
|
|
379
|
+
readonly '3/5': "w-3/5";
|
|
380
|
+
readonly '1/6': "w-1/6";
|
|
381
|
+
readonly '2/6': "w-2/6";
|
|
382
|
+
readonly '3/6': "w-3/6";
|
|
383
|
+
readonly '4/6': "w-4/6";
|
|
384
|
+
readonly '5/6': "w-5/6";
|
|
385
|
+
readonly '1/12': "w-1/12";
|
|
386
|
+
readonly '2/12': "w-2/12";
|
|
387
|
+
readonly '3/12': "w-3/12";
|
|
388
|
+
readonly '4/12': "w-4/12";
|
|
389
|
+
readonly '5/12': "w-5/12";
|
|
390
|
+
readonly '6/12': "w-6/12";
|
|
391
|
+
readonly '7/12': "w-7/12";
|
|
392
|
+
readonly '8/12': "w-8/12";
|
|
393
|
+
readonly '9/12': "w-9/12";
|
|
394
|
+
readonly '10/12': "w-10/12";
|
|
395
|
+
readonly '11/12': "w-11/12";
|
|
396
|
+
readonly container: "var(--spacing-container)";
|
|
380
397
|
};
|
|
381
398
|
declare const maxWidth: {
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
399
|
+
readonly auto: "max-w-auto";
|
|
400
|
+
readonly full: "max-w-full";
|
|
401
|
+
readonly fit: "max-w-fit";
|
|
402
|
+
readonly min: "max-w-min";
|
|
403
|
+
readonly max: "max-w-max";
|
|
404
|
+
readonly screen: "max-w-screen";
|
|
405
|
+
readonly svh: "max-w-svh";
|
|
406
|
+
readonly lvh: "max-w-lvh";
|
|
407
|
+
readonly dvh: "max-w-dvh";
|
|
408
|
+
readonly px: "max-w-px";
|
|
409
|
+
readonly 0: "max-w-0";
|
|
410
|
+
readonly '0.5': "max-w-0.5";
|
|
411
|
+
readonly 1: "max-w-1";
|
|
412
|
+
readonly '1.5': "max-w-1.5";
|
|
413
|
+
readonly 2: "max-w-2";
|
|
414
|
+
readonly '2.5': "max-w-2.5";
|
|
415
|
+
readonly 3: "max-w-3";
|
|
416
|
+
readonly '3.5': "max-w-3.5";
|
|
417
|
+
readonly 4: "max-w-4";
|
|
418
|
+
readonly 5: "max-w-5";
|
|
419
|
+
readonly 6: "max-w-6";
|
|
420
|
+
readonly 7: "max-w-7";
|
|
421
|
+
readonly 8: "max-w-8";
|
|
422
|
+
readonly 9: "max-w-9";
|
|
423
|
+
readonly 10: "max-w-10";
|
|
424
|
+
readonly 11: "max-w-11";
|
|
425
|
+
readonly 12: "max-w-12";
|
|
426
|
+
readonly 14: "max-w-14";
|
|
427
|
+
readonly 16: "max-w-16";
|
|
428
|
+
readonly 20: "max-w-20";
|
|
429
|
+
readonly 24: "max-w-24";
|
|
430
|
+
readonly 28: "max-w-28";
|
|
431
|
+
readonly 32: "max-w-32";
|
|
432
|
+
readonly 36: "max-w-36";
|
|
433
|
+
readonly 40: "max-w-40";
|
|
434
|
+
readonly 44: "max-w-44";
|
|
435
|
+
readonly 48: "max-w-48";
|
|
436
|
+
readonly 52: "max-w-52";
|
|
437
|
+
readonly 56: "max-w-56";
|
|
438
|
+
readonly 60: "max-w-60";
|
|
439
|
+
readonly 64: "max-w-64";
|
|
440
|
+
readonly 72: "max-w-72";
|
|
441
|
+
readonly 80: "max-w-80";
|
|
442
|
+
readonly 96: "max-w-96";
|
|
443
|
+
readonly '1/2': "max-w-1/2";
|
|
444
|
+
readonly '1/3': "max-w-1/3";
|
|
445
|
+
readonly '2/3': "max-w-2/3";
|
|
446
|
+
readonly '1/4': "max-w-1/4";
|
|
447
|
+
readonly '2/4': "max-w-2/4";
|
|
448
|
+
readonly '3/4': "max-w-3/4";
|
|
449
|
+
readonly '1/5': "max-w-1/5";
|
|
450
|
+
readonly '2/5': "max-w-2/5";
|
|
451
|
+
readonly '3/5': "max-w-3/5";
|
|
452
|
+
readonly '1/6': "max-w-1/6";
|
|
453
|
+
readonly '2/6': "max-w-2/6";
|
|
454
|
+
readonly '3/6': "max-w-3/6";
|
|
455
|
+
readonly '4/6': "max-w-4/6";
|
|
456
|
+
readonly '5/6': "max-w-5/6";
|
|
457
|
+
readonly '1/12': "max-w-1/12";
|
|
458
|
+
readonly '2/12': "max-w-2/12";
|
|
459
|
+
readonly '3/12': "max-w-3/12";
|
|
460
|
+
readonly '4/12': "max-w-4/12";
|
|
461
|
+
readonly '5/12': "max-w-5/12";
|
|
462
|
+
readonly '6/12': "max-w-6/12";
|
|
463
|
+
readonly '7/12': "max-w-7/12";
|
|
464
|
+
readonly '8/12': "max-w-8/12";
|
|
465
|
+
readonly '9/12': "max-w-9/12";
|
|
466
|
+
readonly '10/12': "max-w-10/12";
|
|
467
|
+
readonly '11/12': "max-w-11/12";
|
|
468
|
+
readonly container: "max-w-[var(--spacing-container)]";
|
|
451
469
|
};
|
|
452
470
|
declare const height: {
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
471
|
+
readonly auto: "h-auto";
|
|
472
|
+
readonly full: "h-full";
|
|
473
|
+
readonly fit: "h-fit";
|
|
474
|
+
readonly min: "h-min";
|
|
475
|
+
readonly max: "h-max";
|
|
476
|
+
readonly screen: "h-screen";
|
|
477
|
+
readonly svh: "h-svh";
|
|
478
|
+
readonly lvh: "h-lvh";
|
|
479
|
+
readonly dvh: "h-dvh";
|
|
480
|
+
readonly px: "h-px";
|
|
481
|
+
readonly 0: "h-0";
|
|
482
|
+
readonly '0.5': "h-0.5";
|
|
483
|
+
readonly 1: "h-1";
|
|
484
|
+
readonly '1.5': "h-1.5";
|
|
485
|
+
readonly 2: "h-2";
|
|
486
|
+
readonly '2.5': "h-2.5";
|
|
487
|
+
readonly 3: "h-3";
|
|
488
|
+
readonly '3.5': "h-3.5";
|
|
489
|
+
readonly 4: "h-4";
|
|
490
|
+
readonly 5: "h-5";
|
|
491
|
+
readonly 6: "h-6";
|
|
492
|
+
readonly 7: "h-7";
|
|
493
|
+
readonly 8: "h-8";
|
|
494
|
+
readonly 9: "h-9";
|
|
495
|
+
readonly 10: "h-10";
|
|
496
|
+
readonly 11: "h-11";
|
|
497
|
+
readonly 12: "h-12";
|
|
498
|
+
readonly 14: "h-14";
|
|
499
|
+
readonly 16: "h-16";
|
|
500
|
+
readonly 20: "h-20";
|
|
501
|
+
readonly 24: "h-24";
|
|
502
|
+
readonly 28: "h-28";
|
|
503
|
+
readonly 32: "h-32";
|
|
504
|
+
readonly 36: "h-36";
|
|
505
|
+
readonly 40: "h-40";
|
|
506
|
+
readonly 44: "h-44";
|
|
507
|
+
readonly 48: "h-48";
|
|
508
|
+
readonly 52: "h-52";
|
|
509
|
+
readonly 56: "h-56";
|
|
510
|
+
readonly 60: "h-60";
|
|
511
|
+
readonly 64: "h-64";
|
|
512
|
+
readonly 72: "h-72";
|
|
513
|
+
readonly 80: "h-80";
|
|
514
|
+
readonly 96: "h-96";
|
|
515
|
+
readonly '1/2': "h-1/2";
|
|
516
|
+
readonly '1/3': "h-1/3";
|
|
517
|
+
readonly '2/3': "h-2/3";
|
|
518
|
+
readonly '1/4': "h-1/4";
|
|
519
|
+
readonly '2/4': "h-2/4";
|
|
520
|
+
readonly '3/4': "h-3/4";
|
|
521
|
+
readonly '1/5': "h-1/5";
|
|
522
|
+
readonly '2/5': "h-2/5";
|
|
523
|
+
readonly '3/5': "h-3/5";
|
|
524
|
+
readonly '1/6': "h-1/6";
|
|
525
|
+
readonly '2/6': "h-2/6";
|
|
526
|
+
readonly '3/6': "h-3/6";
|
|
527
|
+
readonly '4/6': "h-4/6";
|
|
528
|
+
readonly '5/6': "h-5/6";
|
|
529
|
+
readonly '1/12': "h-1/12";
|
|
530
|
+
readonly '2/12': "h-2/12";
|
|
531
|
+
readonly '3/12': "h-3/12";
|
|
532
|
+
readonly '4/12': "h-4/12";
|
|
533
|
+
readonly '5/12': "h-5/12";
|
|
534
|
+
readonly '6/12': "h-6/12";
|
|
535
|
+
readonly '7/12': "h-7/12";
|
|
536
|
+
readonly '8/12': "h-8/12";
|
|
537
|
+
readonly '9/12': "h-9/12";
|
|
538
|
+
readonly '10/12': "h-10/12";
|
|
539
|
+
readonly '11/12': "h-11/12";
|
|
522
540
|
};
|
|
523
541
|
declare const fontWeight: {
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
542
|
+
readonly thin: "font-thin";
|
|
543
|
+
readonly extralight: "font-extralight";
|
|
544
|
+
readonly light: "font-light";
|
|
545
|
+
readonly regular: "font-normal";
|
|
546
|
+
readonly medium: "font-medium";
|
|
547
|
+
readonly semibold: "font-semibold";
|
|
548
|
+
readonly bold: "font-bold";
|
|
549
|
+
readonly extrabold: "font-extrabold";
|
|
550
|
+
readonly black: "font-black";
|
|
533
551
|
};
|
|
534
552
|
declare const textSize: {
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
553
|
+
readonly xs: "text-xs";
|
|
554
|
+
readonly sm: "text-sm";
|
|
555
|
+
readonly base: "text-base";
|
|
556
|
+
readonly lg: "text-lg";
|
|
557
|
+
readonly xl: "text-xl";
|
|
558
|
+
readonly '2xl': "text-2xl";
|
|
559
|
+
readonly '3xl': "text-3xl";
|
|
560
|
+
readonly '4xl': "text-4xl";
|
|
561
|
+
readonly '5xl': "text-5xl";
|
|
562
|
+
readonly '6xl': "text-6xl";
|
|
563
|
+
readonly '7xl': "text-7xl";
|
|
564
|
+
readonly '8xl': "text-8xl";
|
|
565
|
+
readonly '9xl': "text-9xl";
|
|
548
566
|
};
|
|
549
567
|
declare const textStyle: {
|
|
550
|
-
|
|
551
|
-
|
|
568
|
+
readonly italic: "italic";
|
|
569
|
+
readonly normal: "not-italic";
|
|
552
570
|
};
|
|
553
571
|
declare const textWrap: {
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
572
|
+
readonly wrap: "text-wrap";
|
|
573
|
+
readonly noWrap: "text-nowrap";
|
|
574
|
+
readonly balance: "text-balance";
|
|
575
|
+
readonly pretty: "text-pretty";
|
|
576
|
+
};
|
|
577
|
+
declare const whiteSpace: {
|
|
578
|
+
normal: string;
|
|
579
|
+
nowrap: string;
|
|
580
|
+
pre: string;
|
|
581
|
+
preLine: string;
|
|
582
|
+
preWrap: string;
|
|
583
|
+
breakSpaces: string;
|
|
558
584
|
};
|
|
559
585
|
declare const gapSpace: {
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
586
|
+
readonly 0: "gap-0";
|
|
587
|
+
readonly '0.5': "gap-0.5";
|
|
588
|
+
readonly 1: "gap-1";
|
|
589
|
+
readonly '1.5': "gap-1.5";
|
|
590
|
+
readonly 2: "gap-2";
|
|
591
|
+
readonly '2.5': "gap-2.5";
|
|
592
|
+
readonly 3: "gap-3";
|
|
593
|
+
readonly '3.5': "gap-3.5";
|
|
594
|
+
readonly 4: "gap-4";
|
|
595
|
+
readonly 5: "gap-5";
|
|
596
|
+
readonly 6: "gap-6";
|
|
597
|
+
readonly 7: "gap-7";
|
|
598
|
+
readonly 8: "gap-8";
|
|
599
|
+
readonly 9: "gap-9";
|
|
600
|
+
readonly 10: "gap-10";
|
|
601
|
+
readonly 11: "gap-11";
|
|
602
|
+
readonly 12: "gap-12";
|
|
603
|
+
readonly 14: "gap-14";
|
|
604
|
+
readonly 16: "gap-16";
|
|
605
|
+
readonly 20: "gap-20";
|
|
606
|
+
readonly 24: "gap-24";
|
|
607
|
+
readonly 28: "gap-28";
|
|
608
|
+
readonly 32: "gap-32";
|
|
609
|
+
readonly 36: "gap-36";
|
|
610
|
+
readonly 40: "gap-40";
|
|
611
|
+
readonly 44: "gap-44";
|
|
612
|
+
readonly 48: "gap-48";
|
|
613
|
+
readonly 52: "gap-52";
|
|
614
|
+
readonly 56: "gap-56";
|
|
615
|
+
readonly 60: "gap-60";
|
|
616
|
+
readonly 64: "gap-64";
|
|
617
|
+
readonly 72: "gap-72";
|
|
618
|
+
readonly 80: "gap-80";
|
|
619
|
+
readonly 96: "gap-96";
|
|
620
|
+
readonly section: "gap-[var(--spacing-section)]";
|
|
621
|
+
readonly fieldY: "gap-[var(--spacing-field-Y)]";
|
|
622
|
+
readonly fieldX: "gap-[var(--spacing-field-X)]";
|
|
623
|
+
readonly container: "gap-[var(--spacing-container)]";
|
|
624
|
+
readonly group: "gap-[var(--spacing-group)]";
|
|
594
625
|
};
|
|
595
626
|
declare const paddingSpace: {
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
627
|
+
readonly 0: "p-0";
|
|
628
|
+
readonly '0.5': "p-0.5";
|
|
629
|
+
readonly 1: "p-1";
|
|
630
|
+
readonly '1.5': "p-1.5";
|
|
631
|
+
readonly 2: "p-2";
|
|
632
|
+
readonly '2.5': "p-2.5";
|
|
633
|
+
readonly 3: "p-3";
|
|
634
|
+
readonly '3.5': "p-3.5";
|
|
635
|
+
readonly 4: "p-4";
|
|
636
|
+
readonly 5: "p-5";
|
|
637
|
+
readonly 6: "p-6";
|
|
638
|
+
readonly 7: "p-7";
|
|
639
|
+
readonly 8: "p-8";
|
|
640
|
+
readonly 9: "p-9";
|
|
641
|
+
readonly 10: "p-10";
|
|
642
|
+
readonly 11: "p-11";
|
|
643
|
+
readonly 12: "p-12";
|
|
644
|
+
readonly 14: "p-14";
|
|
645
|
+
readonly 16: "p-16";
|
|
646
|
+
readonly 20: "p-20";
|
|
647
|
+
readonly 24: "p-24";
|
|
648
|
+
readonly 28: "p-28";
|
|
649
|
+
readonly 32: "p-32";
|
|
650
|
+
readonly 36: "p-36";
|
|
651
|
+
readonly 40: "p-40";
|
|
652
|
+
readonly 44: "p-44";
|
|
653
|
+
readonly 48: "p-48";
|
|
654
|
+
readonly 52: "p-52";
|
|
655
|
+
readonly 56: "p-56";
|
|
656
|
+
readonly 60: "p-60";
|
|
657
|
+
readonly 64: "p-64";
|
|
658
|
+
readonly 72: "p-72";
|
|
659
|
+
readonly 80: "p-80";
|
|
660
|
+
readonly 96: "p-96";
|
|
630
661
|
};
|
|
631
662
|
declare const paddingSpaceX: {
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
663
|
+
readonly 0: "px-0";
|
|
664
|
+
readonly '0.5': "px-0.5";
|
|
665
|
+
readonly 1: "px-1";
|
|
666
|
+
readonly '1.5': "px-1.5";
|
|
667
|
+
readonly 2: "px-2";
|
|
668
|
+
readonly '2.5': "px-2.5";
|
|
669
|
+
readonly 3: "px-3";
|
|
670
|
+
readonly '3.5': "px-3.5";
|
|
671
|
+
readonly 4: "px-4";
|
|
672
|
+
readonly 5: "px-5";
|
|
673
|
+
readonly 6: "px-6";
|
|
674
|
+
readonly 7: "px-7";
|
|
675
|
+
readonly 8: "px-8";
|
|
676
|
+
readonly 9: "px-9";
|
|
677
|
+
readonly 10: "px-10";
|
|
678
|
+
readonly 11: "px-11";
|
|
679
|
+
readonly 12: "px-12";
|
|
680
|
+
readonly 14: "px-14";
|
|
681
|
+
readonly 16: "px-16";
|
|
682
|
+
readonly 20: "px-20";
|
|
683
|
+
readonly 24: "px-24";
|
|
684
|
+
readonly 28: "px-28";
|
|
685
|
+
readonly 32: "px-32";
|
|
686
|
+
readonly 36: "px-36";
|
|
687
|
+
readonly 40: "px-40";
|
|
688
|
+
readonly 44: "px-44";
|
|
689
|
+
readonly 48: "px-48";
|
|
690
|
+
readonly 52: "px-52";
|
|
691
|
+
readonly 56: "px-56";
|
|
692
|
+
readonly 60: "px-60";
|
|
693
|
+
readonly 64: "px-64";
|
|
694
|
+
readonly 72: "px-72";
|
|
695
|
+
readonly 80: "px-80";
|
|
696
|
+
readonly 96: "px-96";
|
|
666
697
|
};
|
|
667
698
|
declare const paddingSpaceY: {
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
699
|
+
readonly 0: "py-0";
|
|
700
|
+
readonly '0.5': "py-0.5";
|
|
701
|
+
readonly 1: "py-1";
|
|
702
|
+
readonly '1.5': "py-1.5";
|
|
703
|
+
readonly 2: "py-2";
|
|
704
|
+
readonly '2.5': "py-2.5";
|
|
705
|
+
readonly 3: "py-3";
|
|
706
|
+
readonly '3.5': "py-3.5";
|
|
707
|
+
readonly 4: "py-4";
|
|
708
|
+
readonly 5: "py-5";
|
|
709
|
+
readonly 6: "py-6";
|
|
710
|
+
readonly 7: "py-7";
|
|
711
|
+
readonly 8: "py-8";
|
|
712
|
+
readonly 9: "py-9";
|
|
713
|
+
readonly 10: "py-10";
|
|
714
|
+
readonly 11: "py-11";
|
|
715
|
+
readonly 12: "py-12";
|
|
716
|
+
readonly 14: "py-14";
|
|
717
|
+
readonly 16: "py-16";
|
|
718
|
+
readonly 20: "py-20";
|
|
719
|
+
readonly 24: "py-24";
|
|
720
|
+
readonly 28: "py-28";
|
|
721
|
+
readonly 32: "py-32";
|
|
722
|
+
readonly 36: "py-36";
|
|
723
|
+
readonly 40: "py-40";
|
|
724
|
+
readonly 44: "py-44";
|
|
725
|
+
readonly 48: "py-48";
|
|
726
|
+
readonly 52: "py-52";
|
|
727
|
+
readonly 56: "py-56";
|
|
728
|
+
readonly 60: "py-60";
|
|
729
|
+
readonly 64: "py-64";
|
|
730
|
+
readonly 72: "py-72";
|
|
731
|
+
readonly 80: "py-80";
|
|
732
|
+
readonly 96: "py-96";
|
|
733
|
+
readonly section: "py-[var(--spacing-section)]";
|
|
734
|
+
readonly fieldY: "py-[var(--spacing-field-Y)]";
|
|
735
|
+
readonly fieldX: "py-[var(--spacing-field-X)]";
|
|
736
|
+
readonly container: "py-[var(--spacing-container)]";
|
|
737
|
+
readonly group: "py-[var(--spacing-group)]";
|
|
702
738
|
};
|
|
703
739
|
declare const paddingRight: {
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
740
|
+
readonly 0: "pr-0";
|
|
741
|
+
readonly '0.5': "pr-0.5";
|
|
742
|
+
readonly 1: "pr-1";
|
|
743
|
+
readonly '1.5': "pr-1.5";
|
|
744
|
+
readonly 2: "pr-2";
|
|
745
|
+
readonly '2.5': "pr-2.5";
|
|
746
|
+
readonly 3: "pr-3";
|
|
747
|
+
readonly '3.5': "pr-3.5";
|
|
748
|
+
readonly 4: "pr-4";
|
|
749
|
+
readonly 5: "pr-5";
|
|
750
|
+
readonly 6: "pr-6";
|
|
751
|
+
readonly 7: "pr-7";
|
|
752
|
+
readonly 8: "pr-8";
|
|
753
|
+
readonly 9: "pr-9";
|
|
754
|
+
readonly 10: "pr-10";
|
|
755
|
+
readonly 11: "pr-11";
|
|
756
|
+
readonly 12: "pr-12";
|
|
757
|
+
readonly 14: "pr-14";
|
|
758
|
+
readonly 16: "pr-16";
|
|
759
|
+
readonly 20: "pr-20";
|
|
760
|
+
readonly 24: "pr-24";
|
|
761
|
+
readonly 28: "pr-28";
|
|
762
|
+
readonly 32: "pr-32";
|
|
763
|
+
readonly 36: "pr-36";
|
|
764
|
+
readonly 40: "pr-40";
|
|
765
|
+
readonly 44: "pr-44";
|
|
766
|
+
readonly 48: "pr-48";
|
|
767
|
+
readonly 52: "pr-52";
|
|
768
|
+
readonly 56: "pr-56";
|
|
769
|
+
readonly 60: "pr-60";
|
|
770
|
+
readonly 64: "pr-64";
|
|
771
|
+
readonly 72: "pr-72";
|
|
772
|
+
readonly 80: "pr-80";
|
|
773
|
+
readonly 96: "pr-96";
|
|
738
774
|
};
|
|
739
775
|
declare const paddingLeft: {
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
776
|
+
readonly 0: "pl-0";
|
|
777
|
+
readonly '0.5': "pl-0.5";
|
|
778
|
+
readonly 1: "pl-1";
|
|
779
|
+
readonly '1.5': "pl-1.5";
|
|
780
|
+
readonly 2: "pl-2";
|
|
781
|
+
readonly '2.5': "pl-2.5";
|
|
782
|
+
readonly 3: "pl-3";
|
|
783
|
+
readonly '3.5': "pl-3.5";
|
|
784
|
+
readonly 4: "pl-4";
|
|
785
|
+
readonly 5: "pl-5";
|
|
786
|
+
readonly 6: "pl-6";
|
|
787
|
+
readonly 7: "pl-7";
|
|
788
|
+
readonly 8: "pl-8";
|
|
789
|
+
readonly 9: "pl-9";
|
|
790
|
+
readonly 10: "pl-10";
|
|
791
|
+
readonly 11: "pl-11";
|
|
792
|
+
readonly 12: "pl-12";
|
|
793
|
+
readonly 14: "pl-14";
|
|
794
|
+
readonly 16: "pl-16";
|
|
795
|
+
readonly 20: "pl-20";
|
|
796
|
+
readonly 24: "pl-24";
|
|
797
|
+
readonly 28: "pl-28";
|
|
798
|
+
readonly 32: "pl-32";
|
|
799
|
+
readonly 36: "pl-36";
|
|
800
|
+
readonly 40: "pl-40";
|
|
801
|
+
readonly 44: "pl-44";
|
|
802
|
+
readonly 48: "pl-48";
|
|
803
|
+
readonly 52: "pl-52";
|
|
804
|
+
readonly 56: "pl-56";
|
|
805
|
+
readonly 60: "pl-60";
|
|
806
|
+
readonly 64: "pl-64";
|
|
807
|
+
readonly 72: "pl-72";
|
|
808
|
+
readonly 80: "pl-80";
|
|
809
|
+
readonly 96: "pl-96";
|
|
774
810
|
};
|
|
775
811
|
declare const paddingTop: {
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
812
|
+
readonly 0: "pt-0";
|
|
813
|
+
readonly '0.5': "pt-0.5";
|
|
814
|
+
readonly 1: "pt-1";
|
|
815
|
+
readonly '1.5': "pt-1.5";
|
|
816
|
+
readonly 2: "pt-2";
|
|
817
|
+
readonly '2.5': "pt-2.5";
|
|
818
|
+
readonly 3: "pt-3";
|
|
819
|
+
readonly '3.5': "pt-3.5";
|
|
820
|
+
readonly 4: "pt-4";
|
|
821
|
+
readonly 5: "pt-5";
|
|
822
|
+
readonly 6: "pt-6";
|
|
823
|
+
readonly 7: "pt-7";
|
|
824
|
+
readonly 8: "pt-8";
|
|
825
|
+
readonly 9: "pt-9";
|
|
826
|
+
readonly 10: "pt-10";
|
|
827
|
+
readonly 11: "pt-11";
|
|
828
|
+
readonly 12: "pt-12";
|
|
829
|
+
readonly 14: "pt-14";
|
|
830
|
+
readonly 16: "pt-16";
|
|
831
|
+
readonly 20: "pt-20";
|
|
832
|
+
readonly 24: "pt-24";
|
|
833
|
+
readonly 28: "pt-28";
|
|
834
|
+
readonly 32: "pt-32";
|
|
835
|
+
readonly 36: "pt-36";
|
|
836
|
+
readonly 40: "pt-40";
|
|
837
|
+
readonly 44: "pt-44";
|
|
838
|
+
readonly 48: "pt-48";
|
|
839
|
+
readonly 52: "pt-52";
|
|
840
|
+
readonly 56: "pt-56";
|
|
841
|
+
readonly 60: "pt-60";
|
|
842
|
+
readonly 64: "pt-64";
|
|
843
|
+
readonly 72: "pt-72";
|
|
844
|
+
readonly 80: "pt-80";
|
|
845
|
+
readonly 96: "pt-96";
|
|
810
846
|
};
|
|
811
847
|
declare const paddingBottom: {
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
848
|
+
readonly 0: "pb-0";
|
|
849
|
+
readonly '0.5': "pb-0.5";
|
|
850
|
+
readonly 1: "pb-1";
|
|
851
|
+
readonly '1.5': "pb-1.5";
|
|
852
|
+
readonly 2: "pb-2";
|
|
853
|
+
readonly '2.5': "pb-2.5";
|
|
854
|
+
readonly 3: "pb-3";
|
|
855
|
+
readonly '3.5': "pb-3.5";
|
|
856
|
+
readonly 4: "pb-4";
|
|
857
|
+
readonly 5: "pb-5";
|
|
858
|
+
readonly 6: "pb-6";
|
|
859
|
+
readonly 7: "pb-7";
|
|
860
|
+
readonly 8: "pb-8";
|
|
861
|
+
readonly 9: "pb-9";
|
|
862
|
+
readonly 10: "pb-10";
|
|
863
|
+
readonly 11: "pb-11";
|
|
864
|
+
readonly 12: "pb-12";
|
|
865
|
+
readonly 14: "pb-14";
|
|
866
|
+
readonly 16: "pb-16";
|
|
867
|
+
readonly 20: "pb-20";
|
|
868
|
+
readonly 24: "pb-24";
|
|
869
|
+
readonly 28: "pb-28";
|
|
870
|
+
readonly 32: "pb-32";
|
|
871
|
+
readonly 36: "pb-36";
|
|
872
|
+
readonly 40: "pb-40";
|
|
873
|
+
readonly 44: "pb-44";
|
|
874
|
+
readonly 48: "pb-48";
|
|
875
|
+
readonly 52: "pb-52";
|
|
876
|
+
readonly 56: "pb-56";
|
|
877
|
+
readonly 60: "pb-60";
|
|
878
|
+
readonly 64: "pb-64";
|
|
879
|
+
readonly 72: "pb-72";
|
|
880
|
+
readonly 80: "pb-80";
|
|
881
|
+
readonly 96: "pb-96";
|
|
846
882
|
};
|
|
847
883
|
declare const alignment: {
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
884
|
+
readonly vertical: {
|
|
885
|
+
readonly alignmentX: {
|
|
886
|
+
readonly left: "items-start";
|
|
887
|
+
readonly center: "items-center";
|
|
888
|
+
readonly right: "items-end";
|
|
889
|
+
};
|
|
890
|
+
readonly alignmentY: {
|
|
891
|
+
readonly top: "justify-start";
|
|
892
|
+
readonly center: "justify-center";
|
|
893
|
+
readonly bottom: "justify-end";
|
|
894
|
+
readonly between: "justify-between";
|
|
895
|
+
readonly around: "justify-around";
|
|
896
|
+
readonly evenly: "justify-evenly";
|
|
859
897
|
};
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
alignmentX: {
|
|
867
|
-
left: string;
|
|
868
|
-
center: string;
|
|
869
|
-
right: string;
|
|
870
|
-
};
|
|
898
|
+
};
|
|
899
|
+
readonly horizontal: {
|
|
900
|
+
readonly alignmentY: {
|
|
901
|
+
readonly top: "items-start";
|
|
902
|
+
readonly center: "items-center";
|
|
903
|
+
readonly bottom: "items-end";
|
|
871
904
|
};
|
|
905
|
+
readonly alignmentX: {
|
|
906
|
+
readonly left: "justify-start";
|
|
907
|
+
readonly center: "justify-center";
|
|
908
|
+
readonly right: "justify-end";
|
|
909
|
+
readonly between: "justify-between";
|
|
910
|
+
readonly around: "justify-around";
|
|
911
|
+
readonly evenly: "justify-evenly";
|
|
912
|
+
};
|
|
913
|
+
};
|
|
872
914
|
};
|
|
873
915
|
declare const placeItems: {
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
916
|
+
readonly none: undefined;
|
|
917
|
+
readonly left: "place-items-start";
|
|
918
|
+
readonly center: "place-items-center";
|
|
919
|
+
readonly right: "place-items-end";
|
|
878
920
|
};
|
|
879
921
|
declare const textAlign: {
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
922
|
+
readonly none: undefined;
|
|
923
|
+
readonly left: "text-left";
|
|
924
|
+
readonly center: "text-center";
|
|
925
|
+
readonly right: "text-right";
|
|
884
926
|
};
|
|
885
927
|
declare const aspect: {
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
928
|
+
readonly square: "aspect-[1]";
|
|
929
|
+
readonly landscape: "aspect-4/3";
|
|
930
|
+
readonly portrait: "aspect-3/4";
|
|
931
|
+
readonly widescreen: "aspect-16/9";
|
|
932
|
+
readonly ultrawide: "aspect-18/5";
|
|
933
|
+
readonly golden: "aspect-[1.6180/1]";
|
|
892
934
|
};
|
|
893
935
|
declare const cursorStyle: {
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
936
|
+
readonly auto: "cursor-auto";
|
|
937
|
+
readonly default: "cursor-default";
|
|
938
|
+
readonly pointer: "cursor-pointer";
|
|
939
|
+
readonly wait: "cursor-wait";
|
|
940
|
+
readonly text: "cursor-text";
|
|
941
|
+
readonly move: "cursor-move";
|
|
942
|
+
readonly help: "cursor-help";
|
|
943
|
+
readonly notAllowed: "cursor-not-allowed";
|
|
944
|
+
readonly none: "cursor-none";
|
|
945
|
+
readonly progress: "cursor-progress";
|
|
946
|
+
readonly cell: "cursor-cell";
|
|
947
|
+
readonly crosshair: "cursor-crosshair";
|
|
948
|
+
readonly vertical: "cursor-vertical-text";
|
|
949
|
+
readonly alias: "cursor-alias";
|
|
950
|
+
readonly copy: "cursor-copy";
|
|
951
|
+
readonly noDrop: "cursor-no-drop";
|
|
952
|
+
readonly grap: "cursor-grab";
|
|
953
|
+
readonly grapping: "cursor-grapping";
|
|
954
|
+
readonly scroll: "cursor-all-scroll";
|
|
955
|
+
readonly colResize: "cursor-col-resize";
|
|
956
|
+
readonly rowResize: "cursor-row-resize";
|
|
957
|
+
readonly ewResize: "cursor-ew-resize";
|
|
958
|
+
readonly nsResize: "cursor-ns-resize";
|
|
959
|
+
readonly zoomIn: "cursor-zoom-in";
|
|
960
|
+
readonly zoomOut: "cursor-zoom-out";
|
|
919
961
|
};
|
|
920
962
|
type AspectProp = {
|
|
921
|
-
|
|
963
|
+
ratio?: keyof typeof aspect;
|
|
922
964
|
};
|
|
923
965
|
type AlignmentProp = {
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
};
|
|
966
|
+
orientation?: {
|
|
967
|
+
vertical?: {
|
|
968
|
+
alignY?: keyof typeof alignment.vertical.alignmentY;
|
|
969
|
+
alignX?: keyof typeof alignment.vertical.alignmentX;
|
|
970
|
+
};
|
|
971
|
+
horizontal?: {
|
|
972
|
+
alignX?: keyof typeof alignment.horizontal.alignmentX;
|
|
973
|
+
alignY?: keyof typeof alignment.horizontal.alignmentY;
|
|
933
974
|
};
|
|
975
|
+
};
|
|
934
976
|
};
|
|
935
977
|
type CursorProp = {
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
978
|
+
/**
|
|
979
|
+
* Set the cursor for the element. You can see allowed tokens [here](https://tailwindcss.com/docs/cursor).
|
|
980
|
+
*/
|
|
981
|
+
cursor?: keyof typeof cursorStyle;
|
|
940
982
|
};
|
|
941
983
|
type FontStyleProp = {
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
984
|
+
/**
|
|
985
|
+
* Set the font style for the text element.
|
|
986
|
+
*/
|
|
987
|
+
fontStyle?: keyof typeof textStyle;
|
|
946
988
|
};
|
|
947
989
|
type TextWrapProp = {
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
990
|
+
/**
|
|
991
|
+
* Set text wrapping behavior.
|
|
992
|
+
*/
|
|
993
|
+
wrap?: keyof typeof textWrap;
|
|
994
|
+
};
|
|
995
|
+
type WhiteSpaceProps = {
|
|
996
|
+
/**
|
|
997
|
+
* Set how white space inside the element is handled.
|
|
998
|
+
*/
|
|
999
|
+
whiteSpace?: keyof typeof whiteSpace;
|
|
952
1000
|
};
|
|
953
1001
|
type FontWeightProp = {
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
1002
|
+
/**
|
|
1003
|
+
* Set the font weight for the text element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#typography).
|
|
1004
|
+
*/
|
|
1005
|
+
weight?: keyof typeof fontWeight;
|
|
958
1006
|
};
|
|
959
1007
|
type FontSizeProp = {
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
1008
|
+
/**
|
|
1009
|
+
* Set the font size for the text element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#typography).
|
|
1010
|
+
*/
|
|
1011
|
+
fontSize?: keyof typeof textSize;
|
|
964
1012
|
};
|
|
965
1013
|
type GapSpaceProp = {
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
1014
|
+
/**
|
|
1015
|
+
* The space between the children. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1016
|
+
*/
|
|
1017
|
+
space?: keyof typeof gapSpace;
|
|
970
1018
|
};
|
|
971
1019
|
type PaddingSpaceProp = {
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
1020
|
+
/**
|
|
1021
|
+
* Set the padding space for the element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1022
|
+
*/
|
|
1023
|
+
space?: keyof typeof paddingSpace;
|
|
976
1024
|
};
|
|
977
1025
|
type PaddingSpacePropX = {
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
1026
|
+
/**
|
|
1027
|
+
* Set the horizontal padding space for the element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1028
|
+
*/
|
|
1029
|
+
spaceX?: keyof typeof paddingSpaceX;
|
|
982
1030
|
};
|
|
983
1031
|
type PaddingSpacePropY = {
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
1032
|
+
/**
|
|
1033
|
+
* Set the vertical padding space for the element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1034
|
+
*/
|
|
1035
|
+
spaceY?: keyof typeof paddingSpaceY;
|
|
988
1036
|
};
|
|
989
1037
|
type PaddingRightProp = {
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
1038
|
+
/**
|
|
1039
|
+
* Set the right padding for the element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1040
|
+
*/
|
|
1041
|
+
pr?: keyof typeof paddingRight;
|
|
994
1042
|
};
|
|
995
1043
|
type PaddingLeftProp = {
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1044
|
+
/**
|
|
1045
|
+
* Set the left padding for the element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1046
|
+
*/
|
|
1047
|
+
pl?: keyof typeof paddingLeft;
|
|
1000
1048
|
};
|
|
1001
1049
|
type PaddingTopProp = {
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1050
|
+
/**
|
|
1051
|
+
* Set the top padding for the element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1052
|
+
*/
|
|
1053
|
+
pt?: keyof typeof paddingTop;
|
|
1006
1054
|
};
|
|
1007
1055
|
type PaddingBottomProp = {
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1056
|
+
/**
|
|
1057
|
+
* Set the bottom padding for the element. You can see allowed tokens [here](../../foundations/design-tokens?theme=core#spacing).
|
|
1058
|
+
*/
|
|
1059
|
+
pb?: keyof typeof paddingBottom;
|
|
1012
1060
|
};
|
|
1013
1061
|
type PlaceItemsProp = {
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1062
|
+
/**
|
|
1063
|
+
* Set the alignment of place-items property for the element.
|
|
1064
|
+
*/
|
|
1065
|
+
align?: keyof typeof placeItems;
|
|
1018
1066
|
};
|
|
1019
1067
|
type TextAlignProp = {
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1068
|
+
/**
|
|
1069
|
+
* Set the text alignment for the element.
|
|
1070
|
+
*/
|
|
1071
|
+
align?: keyof typeof textAlign;
|
|
1024
1072
|
};
|
|
1025
1073
|
type WidthProp = {
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1074
|
+
/**
|
|
1075
|
+
* Sets the width of the element. You can see allowed tokens [here](https://tailwindcss.com/docs/width).
|
|
1076
|
+
*/
|
|
1077
|
+
width?: keyof typeof width;
|
|
1030
1078
|
};
|
|
1031
1079
|
type MaxWidthProp = {
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1080
|
+
/**
|
|
1081
|
+
* Sets the max-width of the element. You can see allowed tokens [here](https://tailwindcss.com/docs/max-width).
|
|
1082
|
+
*/
|
|
1083
|
+
maxWidth?: keyof typeof maxWidth;
|
|
1036
1084
|
};
|
|
1037
1085
|
type HeightProp = {
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1086
|
+
/**
|
|
1087
|
+
* Set the height of the element. You can see allowed tokens [here](https://tailwindcss.com/docs/height).
|
|
1088
|
+
*/
|
|
1089
|
+
height?: keyof typeof height;
|
|
1042
1090
|
};
|
|
1043
|
-
|
|
1044
|
-
export { type AlignmentProp, type AspectProp, type ComponentClassNames, type ComponentNames, type ComponentState, type ComponentStyleFunction, type Config, type ConfigSchema, type ConfigVariants, type ConfigVariantsMulti, type CursorProp, DateFormat, type FontSizeProp, type FontStyleProp, type FontWeightProp, type GapSpaceProp, type HeightProp, type MaxWidthProp, type NestedStringObject, type NumerFormatterOptions, NumericFormat, type PaddingBottomProp, type PaddingLeftProp, type PaddingRightProp, type PaddingSpaceProp, type PaddingSpacePropX, type PaddingSpacePropY, type PaddingTopProp, type PlaceItemsProp, type Props, SVG, type SVGProps, type StateAttrKeyProps, type StateAttrProps, type StylesProps, type TextAlignProp, type TextWrapProp, type Theme, type ThemeComponent, type ThemeComponentParts, ThemeProvider, type ThemeProviderProps, type UseClassNamesProps, type UseStateProps, type WidthProp, alignment, aspect, cn, createVar, cursorStyle, cva, defaultTheme, ensureCssVar, extendTheme, fontWeight, gapSpace, get, height, isValidCssCustomPropertyName, maxWidth, paddingBottom, paddingLeft, paddingRight, paddingSpace, paddingSpaceX, paddingSpaceY, paddingTop, placeItems, textAlign, textSize, textStyle, textWrap, useClassNames, useResponsiveValue, useSmallScreen, useStateProps, useTheme, width };
|
|
1091
|
+
//#endregion
|
|
1092
|
+
export { type AlignmentProp, type AspectProp, type ClassValue, type ComponentClassNames, type ComponentNames, type ComponentState, type ComponentStyleFunction, type Config, type ConfigSchema, type ConfigVariants, type ConfigVariantsMulti, type CursorProp, DateFormat, type FontSizeProp, type FontStyleProp, type FontWeightProp, type GapSpaceProp, type HeightProp, type MaxWidthProp, type NestedStringObject, type NumerFormatterOptions, NumericFormat, type PaddingBottomProp, type PaddingLeftProp, type PaddingRightProp, type PaddingSpaceProp, type PaddingSpacePropX, type PaddingSpacePropY, type PaddingTopProp, type PlaceItemsProp, type Props, SVG, type SVGProps, type StateAttrKeyProps, type StateAttrProps, type StylesProps, type TextAlignProp, type TextWrapProp, type Theme, type ThemeComponent, type ThemeComponentParts, ThemeProvider, type ThemeProviderProps, type UseClassNamesProps, type UseStateProps, type VariantProps, type WhiteSpaceProps, type WidthProp, alignment, aspect, cn, createVar, cursorStyle, cva, defaultTheme, ensureCssVar, extendTheme, fontWeight, gapSpace, get, height, isValidCssCustomPropertyName, maxWidth, paddingBottom, paddingLeft, paddingRight, paddingSpace, paddingSpaceX, paddingSpaceY, paddingTop, placeItems, textAlign, textSize, textStyle, textWrap, useClassNames, useResponsiveValue, useSmallScreen, useStateProps, useTheme, whiteSpace, width };
|