@telepix-lab/telepix-ui 0.0.1 → 0.1.2
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 +86 -53
- package/dist/cjs/autocomplete/index.d.ts +16 -0
- package/dist/cjs/autocomplete/styles.d.ts +50 -0
- package/dist/cjs/calendar/index.d.ts +5 -0
- package/dist/cjs/calendar/styles.d.ts +103 -0
- package/dist/cjs/card/styles.d.ts +0 -1
- package/dist/cjs/context-menu/index.d.ts +21 -0
- package/dist/cjs/context-menu/styleVariable.stylex.d.ts +4 -0
- package/dist/cjs/context-menu/styles.d.ts +103 -0
- package/dist/cjs/data-table/index.d.ts +36 -0
- package/dist/cjs/date-picker/index.d.ts +16 -0
- package/dist/cjs/date-picker/styles.d.ts +5 -0
- package/dist/cjs/index.css +1 -0
- package/dist/cjs/index.d.ts +17 -3
- package/dist/cjs/index.js +7150 -3572
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interactive-list-item/index.d.ts +11 -0
- package/dist/cjs/interactive-list-item/styles.d.ts +49 -0
- package/dist/cjs/multiple-select/index.d.ts +30 -0
- package/dist/cjs/multiple-select/styles.d.ts +138 -0
- package/dist/cjs/pagination/index.d.ts +13 -0
- package/dist/cjs/pagination/styles.d.ts +47 -0
- package/dist/cjs/select/index.d.ts +1 -2
- package/dist/cjs/styles.css +345 -13
- package/dist/cjs/table/index.d.ts +15 -0
- package/dist/cjs/table/styles.d.ts +45 -0
- package/dist/cjs/tag/index.d.ts +2 -17
- package/dist/cjs/tag/styles.d.ts +9 -0
- package/dist/cjs/text/index.d.ts +0 -16
- package/dist/esm/autocomplete/index.d.ts +16 -0
- package/dist/esm/autocomplete/styles.d.ts +50 -0
- package/dist/esm/calendar/index.d.ts +5 -0
- package/dist/esm/calendar/styles.d.ts +103 -0
- package/dist/esm/card/styles.d.ts +0 -1
- package/dist/esm/context-menu/index.d.ts +21 -0
- package/dist/esm/context-menu/styleVariable.stylex.d.ts +4 -0
- package/dist/esm/context-menu/styles.d.ts +103 -0
- package/dist/esm/data-table/index.d.ts +36 -0
- package/dist/esm/date-picker/index.d.ts +16 -0
- package/dist/esm/date-picker/styles.d.ts +5 -0
- package/dist/esm/index.css +1 -0
- package/dist/esm/index.d.ts +17 -3
- package/dist/esm/index.js +7101 -3574
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interactive-list-item/index.d.ts +11 -0
- package/dist/esm/interactive-list-item/styles.d.ts +49 -0
- package/dist/esm/multiple-select/index.d.ts +30 -0
- package/dist/esm/multiple-select/styles.d.ts +138 -0
- package/dist/esm/pagination/index.d.ts +13 -0
- package/dist/esm/pagination/styles.d.ts +47 -0
- package/dist/esm/select/index.d.ts +1 -2
- package/dist/esm/styles.css +345 -13
- package/dist/esm/table/index.d.ts +15 -0
- package/dist/esm/table/styles.d.ts +45 -0
- package/dist/esm/tag/index.d.ts +2 -17
- package/dist/esm/tag/styles.d.ts +9 -0
- package/dist/esm/text/index.d.ts +0 -16
- package/dist/index.d.ts +719 -53
- package/package.json +18 -17
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes from 'node_modules/@stylexjs/stylex/lib/cjs/types/StyleXTypes';
|
|
2
|
-
import * as React from 'react';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactNode } from 'react';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
-
import { Checkbox as Checkbox$1, RadioGroup as RadioGroup$1, Dialog as Dialog$1, Select as Select$1, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
5
|
+
import { Checkbox as Checkbox$1, RadioGroup as RadioGroup$1, Dialog as Dialog$1, Select as Select$1, Tooltip as Tooltip$1, Popover, ContextMenu as ContextMenu$1 } from 'radix-ui';
|
|
6
|
+
import { DayPicker, DateRange } from 'react-day-picker';
|
|
6
7
|
import * as stylex from '@stylexjs/stylex';
|
|
7
8
|
|
|
8
9
|
declare const buttonSizeStyles: Readonly<{
|
|
@@ -99,7 +100,6 @@ declare const buttonStyles: Readonly<{
|
|
|
99
100
|
}>;
|
|
100
101
|
type ButtonVariantStyles = keyof typeof buttonVariantStyles;
|
|
101
102
|
type ButtonSizeStyles = keyof typeof buttonSizeStyles;
|
|
102
|
-
type ButtonStyles = keyof typeof buttonStyles;
|
|
103
103
|
|
|
104
104
|
interface ButtonProps extends React__default.DetailedHTMLProps<React__default.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
|
|
105
105
|
variant?: ButtonVariantStyles;
|
|
@@ -417,7 +417,6 @@ type TextVariantStyles = keyof typeof textVariantStyles;
|
|
|
417
417
|
|
|
418
418
|
interface TextProps extends React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
419
419
|
children: React__default.ReactNode;
|
|
420
|
-
className?: string;
|
|
421
420
|
size?: TextSizeStyles;
|
|
422
421
|
weight?: FontWeightStyles;
|
|
423
422
|
align?: TextAlignStyles;
|
|
@@ -425,21 +424,6 @@ interface TextProps extends React__default.DetailedHTMLProps<React__default.HTML
|
|
|
425
424
|
color?: string;
|
|
426
425
|
as?: React__default.ElementType;
|
|
427
426
|
}
|
|
428
|
-
/**
|
|
429
|
-
* 다양한 텍스트 스타일을 지원하는 컴포넌트입니다.<br/>
|
|
430
|
-
* 사용자는 크기, 굵기, 정렬, 변형 등을 지정할 수 있습니다.<br/>
|
|
431
|
-
* text variant에 따라 기본 스타일이 적용됩니다.<br/>
|
|
432
|
-
* size, weight, align은 선택이 가능하며, 지정하지 않을 경우 text variant에 정의된 값들이 사용됩니다. <br/>
|
|
433
|
-
* color 속성을 통해 텍스트 색상을 직접 지정할 수 있습니다.<br/>
|
|
434
|
-
* as 속성을 통해 다른 HTML 요소로 렌더링할 수 있습니다. 기본값은 "p"입니다.<br/>
|
|
435
|
-
* <br/>
|
|
436
|
-
* ### 사용 예시
|
|
437
|
-
* ```tsx
|
|
438
|
-
* <Text size="large" weight="bold" align="center" variant="accent">
|
|
439
|
-
* Hello, World!
|
|
440
|
-
* </Text>
|
|
441
|
-
* ```
|
|
442
|
-
*/
|
|
443
427
|
declare const Text: {
|
|
444
428
|
({ children, className, size, weight, align, variant, color, as: Component, }: TextProps): react_jsx_runtime.JSX.Element;
|
|
445
429
|
displayName: string;
|
|
@@ -510,14 +494,6 @@ declare const inputStyles: Readonly<{
|
|
|
510
494
|
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
511
495
|
}>;
|
|
512
496
|
}>;
|
|
513
|
-
/**
|
|
514
|
-
*
|
|
515
|
-
*
|
|
516
|
-
":hover": semanticColors.compMonoSubtleHovered,
|
|
517
|
-
":focused": semanticColors.compMonoSubtleSelected,
|
|
518
|
-
":disabled": semanticColors.compDisabled,
|
|
519
|
-
*/
|
|
520
|
-
type InputWrapperStyles = keyof typeof inputWrapperStyles;
|
|
521
497
|
type InputWrapperSizeStyles = keyof typeof inputWrapperSizeStyles;
|
|
522
498
|
|
|
523
499
|
interface InputProps extends React__default.DetailedHTMLProps<Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "size">, HTMLInputElement> {
|
|
@@ -669,13 +645,13 @@ declare const CardFooter: React__default.ForwardRefExoticComponent<Omit<CardProp
|
|
|
669
645
|
* </Dialog>
|
|
670
646
|
*/
|
|
671
647
|
declare const Dialog: any;
|
|
672
|
-
declare const DialogTrigger: (props: React.ComponentProps<typeof Dialog$1.Trigger>) => react_jsx_runtime.JSX.Element;
|
|
648
|
+
declare const DialogTrigger: (props: React$1.ComponentProps<typeof Dialog$1.Trigger>) => react_jsx_runtime.JSX.Element;
|
|
673
649
|
declare const DialogPortal: any;
|
|
674
650
|
declare const DialogClose: any;
|
|
675
|
-
declare const DialogContent: ({ className, children, ...props }: React.ComponentProps<typeof Dialog$1.Content>) => react_jsx_runtime.JSX.Element;
|
|
676
|
-
declare const DialogHeader: ({ className, ...props }: React.ComponentProps<typeof Dialog$1.Title>) => react_jsx_runtime.JSX.Element;
|
|
677
|
-
declare const DialogFooter: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
678
|
-
declare const DialogDescription: ({ className, ...props }: React.ComponentProps<typeof Dialog$1.Description>) => react_jsx_runtime.JSX.Element;
|
|
651
|
+
declare const DialogContent: ({ className, children, ...props }: React$1.ComponentProps<typeof Dialog$1.Content>) => react_jsx_runtime.JSX.Element;
|
|
652
|
+
declare const DialogHeader: ({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>) => react_jsx_runtime.JSX.Element;
|
|
653
|
+
declare const DialogFooter: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
654
|
+
declare const DialogDescription: ({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>) => react_jsx_runtime.JSX.Element;
|
|
679
655
|
|
|
680
656
|
declare const selectIconWrapperStyles: Readonly<{
|
|
681
657
|
readonly base: Readonly<{
|
|
@@ -835,11 +811,10 @@ declare const SelectSeparator: {
|
|
|
835
811
|
displayName: string;
|
|
836
812
|
};
|
|
837
813
|
interface SelectItem extends React__default.ComponentProps<typeof Select$1.Item> {
|
|
838
|
-
label: string;
|
|
839
814
|
indicator?: React__default.ReactNode;
|
|
840
815
|
}
|
|
841
816
|
declare const SelectItem: {
|
|
842
|
-
({
|
|
817
|
+
({ indicator, ...rest }: SelectItem): react_jsx_runtime.JSX.Element;
|
|
843
818
|
displayName: string;
|
|
844
819
|
};
|
|
845
820
|
|
|
@@ -1201,11 +1176,20 @@ declare const tagStyles: Readonly<{
|
|
|
1201
1176
|
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "0">;
|
|
1202
1177
|
readonly cursor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"cursor", "pointer">;
|
|
1203
1178
|
}>;
|
|
1179
|
+
readonly text: Readonly<{
|
|
1180
|
+
readonly flex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flex", "1">;
|
|
1181
|
+
readonly whiteSpace: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
1182
|
+
readonly overflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"overflow", "hidden">;
|
|
1183
|
+
readonly textOverflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
1184
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", "inherit">;
|
|
1185
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", "inherit">;
|
|
1186
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", "inherit">;
|
|
1187
|
+
}>;
|
|
1204
1188
|
}>;
|
|
1205
1189
|
type TagVariant = Extract<keyof typeof tagStyles, "filled" | "accent">;
|
|
1206
1190
|
type TagSize = Extract<keyof typeof tagStyles, "regular" | "small">;
|
|
1207
1191
|
|
|
1208
|
-
interface TagProps extends React__default.DetailedHTMLProps<React__default.
|
|
1192
|
+
interface TagProps extends React__default.DetailedHTMLProps<Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, "value">, HTMLButtonElement> {
|
|
1209
1193
|
value: {
|
|
1210
1194
|
id: string;
|
|
1211
1195
|
label: string;
|
|
@@ -1216,25 +1200,299 @@ interface TagProps extends React__default.DetailedHTMLProps<React__default.HTMLA
|
|
|
1216
1200
|
onDeleteClick?: (value: {
|
|
1217
1201
|
id: string;
|
|
1218
1202
|
label: string;
|
|
1219
|
-
}) => void;
|
|
1203
|
+
}, e: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
1220
1204
|
}
|
|
1221
|
-
/**
|
|
1222
|
-
* 태그 컴포넌트는 다양한 스타일과 크기를 지원하는 UI 요소입니다.
|
|
1223
|
-
* 사용자는 태그의 변형(variant)과 크기(size)를 지정할 수 있습니다.
|
|
1224
|
-
* 기본적으로 "filled" 변형과 "regular" 크기가 적용됩니다.
|
|
1225
|
-
*
|
|
1226
|
-
* ### 사용 예시
|
|
1227
|
-
* ```tsx
|
|
1228
|
-
* <Tag
|
|
1229
|
-
* value={{ id: "1", label: "Example Tag" }}
|
|
1230
|
-
* variant="filled"
|
|
1231
|
-
* size="regular"
|
|
1232
|
-
* onDeleteClick={(value) => console.log("Delete clicked for:", value)}
|
|
1233
|
-
* />
|
|
1234
|
-
* ```
|
|
1235
|
-
*/
|
|
1236
1205
|
declare const Tag: React__default.ForwardRefExoticComponent<Omit<TagProps, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1237
1206
|
|
|
1207
|
+
declare const multipleSelectWrapperStyles: Readonly<{
|
|
1208
|
+
readonly base: Readonly<{
|
|
1209
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "relative">;
|
|
1210
|
+
}>;
|
|
1211
|
+
}>;
|
|
1212
|
+
declare const multipleSelectTriggerStyles: Readonly<{
|
|
1213
|
+
readonly base: Readonly<{
|
|
1214
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
1215
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
1216
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
1217
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "8px">;
|
|
1218
|
+
readonly cursor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"cursor", "pointer">;
|
|
1219
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
1220
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
1221
|
+
readonly ":hover:not([data-disabled='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover:not([data-disabled='true'])", {
|
|
1222
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1223
|
+
readonly border: `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`;
|
|
1224
|
+
}>;
|
|
1225
|
+
readonly ":is([data-selected='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-selected='true'])", {
|
|
1226
|
+
readonly border: `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`;
|
|
1227
|
+
}>;
|
|
1228
|
+
readonly ":is([data-disabled='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-disabled='true'])", {
|
|
1229
|
+
readonly border: "none";
|
|
1230
|
+
readonly cursor: "not-allowed";
|
|
1231
|
+
}>;
|
|
1232
|
+
}>;
|
|
1233
|
+
readonly regular: Readonly<{
|
|
1234
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "6px 12px">;
|
|
1235
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "4px">;
|
|
1236
|
+
}>;
|
|
1237
|
+
readonly large: Readonly<{
|
|
1238
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "12px 16px 12px 12px">;
|
|
1239
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "8px">;
|
|
1240
|
+
}>;
|
|
1241
|
+
readonly arrow: Readonly<{
|
|
1242
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
1243
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
1244
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
1245
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "16px">;
|
|
1246
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "16px">;
|
|
1247
|
+
}>;
|
|
1248
|
+
readonly value: Readonly<{
|
|
1249
|
+
readonly flex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flex", "1">;
|
|
1250
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
1251
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "4px">;
|
|
1252
|
+
readonly flexWrap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
1253
|
+
}>;
|
|
1254
|
+
readonly placeholder: Readonly<{
|
|
1255
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
1256
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
1257
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
1258
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
1259
|
+
readonly ":is([data-disabled='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-disabled='true'])", {
|
|
1260
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1261
|
+
}>;
|
|
1262
|
+
}>;
|
|
1263
|
+
readonly tag: Readonly<{
|
|
1264
|
+
readonly maxWidth: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"maxWidth", "var(--select-content-width, 100%)">;
|
|
1265
|
+
}>;
|
|
1266
|
+
}>;
|
|
1267
|
+
type MultipleSelectTriggerSizeStyles = Extract<keyof typeof multipleSelectTriggerStyles, "regular" | "large">;
|
|
1268
|
+
declare const multipleSelectContentStyles: Readonly<{
|
|
1269
|
+
readonly base: Readonly<{
|
|
1270
|
+
readonly flex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flex", "1">;
|
|
1271
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "absolute">;
|
|
1272
|
+
readonly top: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"top", "calc(100% + 4px)">;
|
|
1273
|
+
readonly left: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"left", 0>;
|
|
1274
|
+
readonly zIndex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"zIndex", 1000>;
|
|
1275
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "calc(100% - 16px)">;
|
|
1276
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
1277
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "12px">;
|
|
1278
|
+
readonly boxShadow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"boxShadow", string>;
|
|
1279
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "8px">;
|
|
1280
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
1281
|
+
}>;
|
|
1282
|
+
readonly search: Readonly<{
|
|
1283
|
+
readonly paddingBottom: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"paddingBottom", "8px">;
|
|
1284
|
+
readonly marginBottom: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"marginBottom", "8px">;
|
|
1285
|
+
readonly borderBottom: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderBottom", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
1286
|
+
}>;
|
|
1287
|
+
readonly options: Readonly<{
|
|
1288
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", 0>;
|
|
1289
|
+
readonly margin: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"margin", 0>;
|
|
1290
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
1291
|
+
readonly flexDirection: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flexDirection", "column">;
|
|
1292
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "4px">;
|
|
1293
|
+
readonly listStyle: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"listStyle", "none">;
|
|
1294
|
+
}>;
|
|
1295
|
+
}>;
|
|
1296
|
+
declare const multipleSelectItemStyles: Readonly<{
|
|
1297
|
+
readonly base: Readonly<{
|
|
1298
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "8px 12px">;
|
|
1299
|
+
readonly cursor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"cursor", "pointer">;
|
|
1300
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
1301
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
1302
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
1303
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "8px">;
|
|
1304
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
1305
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
1306
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
1307
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
1308
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "4px">;
|
|
1309
|
+
readonly ":hover:not(:is([data-disabled='true'])):not(:is([data-selected='true']))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover:not(:is([data-disabled='true'])):not(:is([data-selected='true']))", {
|
|
1310
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1311
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1312
|
+
}>;
|
|
1313
|
+
readonly ":active:not(:is([data-disabled='true'])):not(:is([data-selected='true']))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":active:not(:is([data-disabled='true'])):not(:is([data-selected='true']))", {
|
|
1314
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1315
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1316
|
+
}>;
|
|
1317
|
+
readonly ":is([data-selected='true']):not(:is([data-disabled='true']))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-selected='true']):not(:is([data-disabled='true']))", {
|
|
1318
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1319
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1320
|
+
}>;
|
|
1321
|
+
readonly ":is([data-disabled='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-disabled='true'])", {
|
|
1322
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1323
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
1324
|
+
readonly cursor: "not-allowed";
|
|
1325
|
+
}>;
|
|
1326
|
+
}>;
|
|
1327
|
+
readonly indicator: Readonly<{
|
|
1328
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
1329
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
1330
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
1331
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "16px">;
|
|
1332
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "16px">;
|
|
1333
|
+
}>;
|
|
1334
|
+
readonly label: Readonly<{
|
|
1335
|
+
readonly flex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flex", "1">;
|
|
1336
|
+
readonly textOverflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
1337
|
+
readonly overflowX: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"overflowX", "hidden">;
|
|
1338
|
+
readonly whiteSpace: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
1339
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", "inherit">;
|
|
1340
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", "inherit">;
|
|
1341
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", "inherit">;
|
|
1342
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", "inherit">;
|
|
1343
|
+
}>;
|
|
1344
|
+
}>;
|
|
1345
|
+
|
|
1346
|
+
interface Option {
|
|
1347
|
+
value: string;
|
|
1348
|
+
label: string;
|
|
1349
|
+
disabled?: boolean;
|
|
1350
|
+
}
|
|
1351
|
+
interface MultipleSelectProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
1352
|
+
disabled?: boolean;
|
|
1353
|
+
open?: boolean;
|
|
1354
|
+
value?: Option[];
|
|
1355
|
+
onOpenChange?: (open: boolean) => void;
|
|
1356
|
+
onValueChange?: (value: Option[]) => void;
|
|
1357
|
+
}
|
|
1358
|
+
declare const MultipleSelect: React__default.ForwardRefExoticComponent<MultipleSelectProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1359
|
+
interface MultipleSelectTriggerProps extends React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
1360
|
+
size?: MultipleSelectTriggerSizeStyles;
|
|
1361
|
+
}
|
|
1362
|
+
declare const MultipleSelectTrigger: React__default.ForwardRefExoticComponent<Omit<MultipleSelectTriggerProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1363
|
+
interface MultipleSelectValueProps extends React__default.DetailedHTMLProps<Omit<React__default.HTMLAttributes<HTMLDivElement>, "children">, HTMLDivElement> {
|
|
1364
|
+
placeholder?: string;
|
|
1365
|
+
}
|
|
1366
|
+
declare const MultipleSelectValue: React__default.ForwardRefExoticComponent<Omit<MultipleSelectValueProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1367
|
+
interface MultipleSelectContentProps extends React__default.DetailedHTMLProps<Omit<React__default.HTMLAttributes<HTMLDivElement>, "children">, HTMLDivElement> {
|
|
1368
|
+
useSearch?: boolean;
|
|
1369
|
+
options: Option[];
|
|
1370
|
+
indicator?: React__default.ReactNode;
|
|
1371
|
+
}
|
|
1372
|
+
declare const MultipleSelectContent: React__default.ForwardRefExoticComponent<Omit<MultipleSelectContentProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1373
|
+
|
|
1374
|
+
declare const Table: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & React__default.RefAttributes<HTMLTableElement>>;
|
|
1375
|
+
declare const TableHeader: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.TableHTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & React__default.RefAttributes<HTMLTableRowElement>>;
|
|
1376
|
+
declare const TableBody: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.TableHTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React__default.RefAttributes<HTMLTableSectionElement>>;
|
|
1377
|
+
interface TableRowProps extends React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement> {
|
|
1378
|
+
isSelected?: boolean;
|
|
1379
|
+
shouldLastBorderRender?: boolean;
|
|
1380
|
+
}
|
|
1381
|
+
declare const TableRow: React__default.ForwardRefExoticComponent<Omit<TableRowProps, "ref"> & React__default.RefAttributes<HTMLTableRowElement>>;
|
|
1382
|
+
declare const TableHead: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.ThHTMLAttributes<HTMLTableCellElement>, HTMLTableCellElement>, "ref"> & React__default.RefAttributes<HTMLTableCellElement>>;
|
|
1383
|
+
interface TableCellProps extends React__default.DetailedHTMLProps<React__default.TdHTMLAttributes<HTMLTableCellElement>, HTMLTableCellElement> {
|
|
1384
|
+
showTooltip?: boolean;
|
|
1385
|
+
}
|
|
1386
|
+
declare const TableCell: React__default.ForwardRefExoticComponent<Omit<TableCellProps, "ref"> & React__default.RefAttributes<HTMLTableCellElement>>;
|
|
1387
|
+
|
|
1388
|
+
/** table 기반 config로 테이블 완성 component */
|
|
1389
|
+
interface TableInfo<T> {
|
|
1390
|
+
header: string;
|
|
1391
|
+
renderFn: (item: T) => React__default.ReactNode;
|
|
1392
|
+
minWidth?: number;
|
|
1393
|
+
maxWidth?: number;
|
|
1394
|
+
showTooltip?: boolean;
|
|
1395
|
+
}
|
|
1396
|
+
type DataTableConfig<T> = TableInfo<T>[];
|
|
1397
|
+
interface DataTableProps<T> {
|
|
1398
|
+
config: DataTableConfig<T>;
|
|
1399
|
+
data: T[];
|
|
1400
|
+
emptyMessage?: string;
|
|
1401
|
+
onRowClick?: (item: T) => void;
|
|
1402
|
+
enableSelection?: boolean;
|
|
1403
|
+
shouldLastBorderRender?: boolean;
|
|
1404
|
+
classNames?: {
|
|
1405
|
+
table?: string;
|
|
1406
|
+
header?: string;
|
|
1407
|
+
head?: string;
|
|
1408
|
+
body?: string;
|
|
1409
|
+
row?: string;
|
|
1410
|
+
cell?: string;
|
|
1411
|
+
};
|
|
1412
|
+
refs?: {
|
|
1413
|
+
tableRef?: React__default.Ref<HTMLTableElement>;
|
|
1414
|
+
headerRef?: React__default.Ref<HTMLTableRowElement>;
|
|
1415
|
+
bodyRef?: React__default.Ref<HTMLTableSectionElement>;
|
|
1416
|
+
rowRef?: React__default.Ref<HTMLTableRowElement>;
|
|
1417
|
+
cellRef?: React__default.Ref<HTMLTableCellElement>;
|
|
1418
|
+
headRef?: React__default.Ref<HTMLTableCellElement>;
|
|
1419
|
+
};
|
|
1420
|
+
}
|
|
1421
|
+
declare const DataTable: <T extends object>({ config, data, emptyMessage, onRowClick, enableSelection, shouldLastBorderRender, classNames, refs, }: DataTableProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1422
|
+
|
|
1423
|
+
declare const Pagination: ({ className, ...props }: React$1.ComponentProps<"nav">) => react_jsx_runtime.JSX.Element;
|
|
1424
|
+
declare const PaginationContent: ({ className, ...props }: React$1.ComponentProps<"ul">) => react_jsx_runtime.JSX.Element;
|
|
1425
|
+
declare const PaginationItem: (props: React$1.ComponentProps<"li">) => react_jsx_runtime.JSX.Element;
|
|
1426
|
+
type PaginationLinkProps = {
|
|
1427
|
+
isActive?: boolean;
|
|
1428
|
+
} & React$1.ComponentProps<typeof Button>;
|
|
1429
|
+
declare const PaginationLink: ({ className, isActive, size, variant, ...props }: PaginationLinkProps) => react_jsx_runtime.JSX.Element;
|
|
1430
|
+
declare const PaginationPrevious: ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>) => react_jsx_runtime.JSX.Element;
|
|
1431
|
+
declare const PaginationNext: ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>) => react_jsx_runtime.JSX.Element;
|
|
1432
|
+
declare const PaginationEllipsis: ({ className, ...props }: React$1.ComponentProps<"span">) => react_jsx_runtime.JSX.Element;
|
|
1433
|
+
|
|
1434
|
+
interface InteractiveListItemProps extends React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
|
|
1435
|
+
isSelected?: boolean;
|
|
1436
|
+
disabled?: boolean;
|
|
1437
|
+
showHoverActions?: boolean;
|
|
1438
|
+
}
|
|
1439
|
+
declare const InteractiveListItem: React__default.ForwardRefExoticComponent<Omit<InteractiveListItemProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1440
|
+
declare const InteractiveListItemIcon: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React__default.RefAttributes<HTMLSpanElement>>;
|
|
1441
|
+
declare const InteractiveListItemContent: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1442
|
+
declare const InteractiveListItemActions: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
|
|
1443
|
+
|
|
1444
|
+
type CalendarProps = React$1.ComponentProps<typeof DayPicker>;
|
|
1445
|
+
declare const Calendar: ({ className, classNames, showOutsideDays, ...props }: CalendarProps) => react_jsx_runtime.JSX.Element;
|
|
1446
|
+
|
|
1447
|
+
type AllDatePickerTypes = Date | undefined | DateRange | Date[];
|
|
1448
|
+
type DatePickerProps = DatePicker & CalendarProps & Popover.PopoverProps & Popover.PopoverContentProps;
|
|
1449
|
+
interface DatePicker {
|
|
1450
|
+
size: "regular" | "large";
|
|
1451
|
+
placeholder?: string;
|
|
1452
|
+
format?: string;
|
|
1453
|
+
value?: AllDatePickerTypes;
|
|
1454
|
+
onChange?: (date: AllDatePickerTypes) => void;
|
|
1455
|
+
isInstantClose?: boolean;
|
|
1456
|
+
disabled?: boolean;
|
|
1457
|
+
}
|
|
1458
|
+
declare const DatePicker: ({ size, placeholder, format, value, mode, onChange, isInstantClose, open: openProp, onOpenChange: onOpenChangeProp, disabled, ...rest }: DatePickerProps) => react_jsx_runtime.JSX.Element;
|
|
1459
|
+
|
|
1460
|
+
declare const ContextMenu: any;
|
|
1461
|
+
declare const ContextMenuTrigger: any;
|
|
1462
|
+
declare const ContextMenuContent: (props: React.ComponentProps<typeof ContextMenu$1.Content>) => react_jsx_runtime.JSX.Element;
|
|
1463
|
+
declare const ContextMenuArrow: any;
|
|
1464
|
+
declare const ContextMenuLabel: (props: React.ComponentProps<typeof ContextMenu$1.Label>) => react_jsx_runtime.JSX.Element;
|
|
1465
|
+
interface ContextMenuItemProps extends Omit<React.ComponentProps<typeof ContextMenu$1.Item>, "children"> {
|
|
1466
|
+
leftIcon?: React.ReactNode;
|
|
1467
|
+
rightSlot?: React.ReactNode;
|
|
1468
|
+
}
|
|
1469
|
+
declare const ContextMenuItem: ({ leftIcon, rightSlot, textValue, ...rest }: ContextMenuItemProps) => react_jsx_runtime.JSX.Element;
|
|
1470
|
+
declare const ContextMenuGroup: any;
|
|
1471
|
+
declare const ContextMenuSub: any;
|
|
1472
|
+
declare const ContextMenuSubTrigger: any;
|
|
1473
|
+
declare const ContextMenuSubContent: (props: React.ComponentProps<typeof ContextMenu$1.SubContent>) => react_jsx_runtime.JSX.Element;
|
|
1474
|
+
declare const ContextMenuSeparator: (props: React.ComponentProps<typeof ContextMenu$1.Separator>) => react_jsx_runtime.JSX.Element;
|
|
1475
|
+
declare const ContextMenuCheckboxItem: any;
|
|
1476
|
+
declare const ContextMenuRadioGroup: any;
|
|
1477
|
+
declare const ContextMenuRadioItem: any;
|
|
1478
|
+
declare const ContextMenuItemIndicator: (props: React.ComponentProps<typeof ContextMenu$1.ItemIndicator>) => react_jsx_runtime.JSX.Element;
|
|
1479
|
+
|
|
1480
|
+
interface AutocompleteProps<T> {
|
|
1481
|
+
placeholder?: string;
|
|
1482
|
+
data: T[];
|
|
1483
|
+
value?: string;
|
|
1484
|
+
displayValue: (item: T) => string;
|
|
1485
|
+
onSelect?: (selectedItem: T | null) => void;
|
|
1486
|
+
onChange?: (value: string) => void;
|
|
1487
|
+
noResultsMessage?: string;
|
|
1488
|
+
maxResults?: number;
|
|
1489
|
+
debounceTime?: number;
|
|
1490
|
+
wrapperClassName?: string;
|
|
1491
|
+
contentClassName?: string;
|
|
1492
|
+
itemClassName?: string;
|
|
1493
|
+
}
|
|
1494
|
+
declare const Autocomplete: <T>({ placeholder, data, value, displayValue, onSelect, onChange, noResultsMessage, maxResults, debounceTime, wrapperClassName, contentClassName, itemClassName, }: AutocompleteProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1495
|
+
|
|
1238
1496
|
declare const spacing: stylex.VarGroup<Readonly<{
|
|
1239
1497
|
xs: string;
|
|
1240
1498
|
sm: string;
|
|
@@ -1659,7 +1917,6 @@ declare const cardStyles: Readonly<{
|
|
|
1659
1917
|
readonly flexDirection: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flexDirection", "column">;
|
|
1660
1918
|
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", string>;
|
|
1661
1919
|
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
1662
|
-
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", string>;
|
|
1663
1920
|
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
1664
1921
|
}>;
|
|
1665
1922
|
}>;
|
|
@@ -1757,6 +2014,415 @@ declare const modeTabStyles: Readonly<{
|
|
|
1757
2014
|
}>;
|
|
1758
2015
|
}>;
|
|
1759
2016
|
|
|
2017
|
+
declare const tableStyles: Readonly<{
|
|
2018
|
+
readonly table: Readonly<{
|
|
2019
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "100%">;
|
|
2020
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "relative">;
|
|
2021
|
+
readonly borderCollapse: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderCollapse", "collapse">;
|
|
2022
|
+
}>;
|
|
2023
|
+
readonly theadTR: Readonly<{
|
|
2024
|
+
readonly borderBottom: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderBottom", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
2025
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2026
|
+
}>;
|
|
2027
|
+
readonly tr: Readonly<{
|
|
2028
|
+
readonly borderBottom: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderBottom", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
2029
|
+
readonly ":hover:not([data-selected='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover:not([data-selected='true'])", {
|
|
2030
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2031
|
+
}>;
|
|
2032
|
+
readonly ":is([data-selected='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-selected='true'])", {
|
|
2033
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2034
|
+
}>;
|
|
2035
|
+
readonly ":is([data-last-border='false']):last-child": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-last-border='false']):last-child", {
|
|
2036
|
+
readonly borderBottom: "none";
|
|
2037
|
+
}>;
|
|
2038
|
+
}>;
|
|
2039
|
+
readonly cell: Readonly<{
|
|
2040
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2041
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2042
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2043
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "20px 0px 20px 36px">;
|
|
2044
|
+
readonly ":last-child": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":last-child", {
|
|
2045
|
+
readonly paddingRight: "36px";
|
|
2046
|
+
}>;
|
|
2047
|
+
readonly verticalAlign: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"verticalAlign", "middle">;
|
|
2048
|
+
}>;
|
|
2049
|
+
readonly th: Readonly<{
|
|
2050
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2051
|
+
readonly textAlign: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"textAlign", "left">;
|
|
2052
|
+
}>;
|
|
2053
|
+
readonly td: Readonly<{
|
|
2054
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2055
|
+
}>;
|
|
2056
|
+
readonly content: Readonly<{
|
|
2057
|
+
readonly overflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"overflow", "hidden">;
|
|
2058
|
+
readonly textOverflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
2059
|
+
readonly whiteSpace: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
2060
|
+
}>;
|
|
2061
|
+
}>;
|
|
2062
|
+
|
|
2063
|
+
declare const paginationStyles: Readonly<{
|
|
2064
|
+
readonly pagination: Readonly<{
|
|
2065
|
+
readonly margin: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"margin", "0 auto">;
|
|
2066
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2067
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2068
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "100%">;
|
|
2069
|
+
}>;
|
|
2070
|
+
readonly content: Readonly<{
|
|
2071
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2072
|
+
readonly flexDirection: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flexDirection", "row">;
|
|
2073
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2074
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "4px">;
|
|
2075
|
+
}>;
|
|
2076
|
+
readonly button: Readonly<{
|
|
2077
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "36px">;
|
|
2078
|
+
readonly minWidth: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"minWidth", "36px">;
|
|
2079
|
+
}>;
|
|
2080
|
+
readonly selected: Readonly<{
|
|
2081
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2082
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2083
|
+
}>;
|
|
2084
|
+
readonly previous: Readonly<{
|
|
2085
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2086
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2087
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2088
|
+
readonly marginRight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"marginRight", "16px">;
|
|
2089
|
+
}>;
|
|
2090
|
+
readonly next: Readonly<{
|
|
2091
|
+
readonly marginLeft: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"marginLeft", "16px">;
|
|
2092
|
+
}>;
|
|
2093
|
+
readonly ellipsis: Readonly<{
|
|
2094
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2095
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2096
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2097
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "36px">;
|
|
2098
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "36px">;
|
|
2099
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", string>;
|
|
2100
|
+
readonly ":hover": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover", {
|
|
2101
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2102
|
+
}>;
|
|
2103
|
+
}>;
|
|
2104
|
+
readonly ellipsisIcon: Readonly<{
|
|
2105
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "16px">;
|
|
2106
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "16px">;
|
|
2107
|
+
readonly stroke: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"stroke", string>;
|
|
2108
|
+
}>;
|
|
2109
|
+
}>;
|
|
2110
|
+
|
|
2111
|
+
declare const interactiveListItemStyles: Readonly<{
|
|
2112
|
+
readonly base: Readonly<{
|
|
2113
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2114
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2115
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "4px">;
|
|
2116
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "6px">;
|
|
2117
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "4px">;
|
|
2118
|
+
readonly cursor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"cursor", "pointer">;
|
|
2119
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2120
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2121
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", "1px solid transparent">;
|
|
2122
|
+
readonly ":hover:not(:is([data-disabled='true'])):not(:is([data-selected='true'])):not(:is([data-hover-actions='false']))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover:not(:is([data-disabled='true'])):not(:is([data-selected='true'])):not(:is([data-hover-actions='false']))", {
|
|
2123
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2124
|
+
}>;
|
|
2125
|
+
readonly ":active:not(:is([data-disabled='true'])):not(:is([data-selected='true'])):not(:is([data-hover-actions='false']))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":active:not(:is([data-disabled='true'])):not(:is([data-selected='true'])):not(:is([data-hover-actions='false']))", {
|
|
2126
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2127
|
+
}>;
|
|
2128
|
+
readonly ":is([data-selected='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-selected='true'])", {
|
|
2129
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2130
|
+
readonly border: `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`;
|
|
2131
|
+
}>;
|
|
2132
|
+
readonly ":is([data-disabled='true'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-disabled='true'])", {
|
|
2133
|
+
readonly cursor: "not-allowed";
|
|
2134
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2135
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2136
|
+
}>;
|
|
2137
|
+
}>;
|
|
2138
|
+
readonly icon: Readonly<{
|
|
2139
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2140
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2141
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2142
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "16px">;
|
|
2143
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "16px">;
|
|
2144
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "4px">;
|
|
2145
|
+
}>;
|
|
2146
|
+
readonly content: Readonly<{
|
|
2147
|
+
readonly flexGrow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flexGrow", 1>;
|
|
2148
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2149
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2150
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2151
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", "inherit">;
|
|
2152
|
+
}>;
|
|
2153
|
+
readonly buttons: Readonly<{
|
|
2154
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2155
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2156
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2157
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "8px">;
|
|
2158
|
+
}>;
|
|
2159
|
+
}>;
|
|
2160
|
+
|
|
2161
|
+
declare const calendarStyles: Readonly<{
|
|
2162
|
+
readonly months: Readonly<{
|
|
2163
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "12px">;
|
|
2164
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2165
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
2166
|
+
readonly boxShadow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"boxShadow", string>;
|
|
2167
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "8px">;
|
|
2168
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "relative">;
|
|
2169
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2170
|
+
readonly flexWrap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
2171
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "var(--rdp-months-gap)">;
|
|
2172
|
+
readonly maxWidth: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"maxWidth", "fit-content">;
|
|
2173
|
+
}>;
|
|
2174
|
+
readonly monthCaption: Readonly<{
|
|
2175
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2176
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2177
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2178
|
+
readonly marginBottom: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"marginBottom", "16px">;
|
|
2179
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "var(--rdp-nav-height)">;
|
|
2180
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", "bold">;
|
|
2181
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", "large">;
|
|
2182
|
+
readonly marginInlineStart: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"marginInlineStart", "var(--rdp-nav_button-width)">;
|
|
2183
|
+
readonly marginInlineEnd: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"marginInlineEnd", "var(--rdp-nav_button-width)">;
|
|
2184
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "relative">;
|
|
2185
|
+
}>;
|
|
2186
|
+
readonly captionLabel: Readonly<{
|
|
2187
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "28px">;
|
|
2188
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2189
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2190
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2191
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2192
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2193
|
+
readonly zIndex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"zIndex", 1>;
|
|
2194
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "relative">;
|
|
2195
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "inline-flex">;
|
|
2196
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2197
|
+
readonly whiteSpace: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
2198
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", 0>;
|
|
2199
|
+
}>;
|
|
2200
|
+
readonly navButton: Readonly<{
|
|
2201
|
+
readonly stroke: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"stroke", string>;
|
|
2202
|
+
readonly ":is([data-orientation='right'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-orientation='right'])", {
|
|
2203
|
+
readonly transform: "rotate(180deg)";
|
|
2204
|
+
}>;
|
|
2205
|
+
}>;
|
|
2206
|
+
readonly monthGrid: Readonly<{
|
|
2207
|
+
readonly borderSpacing: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderSpacing", "0 8px">;
|
|
2208
|
+
readonly borderCollapse: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderCollapse", "separate">;
|
|
2209
|
+
}>;
|
|
2210
|
+
readonly weekday: Readonly<{
|
|
2211
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2212
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2213
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2214
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2215
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "32px">;
|
|
2216
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "32px">;
|
|
2217
|
+
}>;
|
|
2218
|
+
readonly day: Readonly<{
|
|
2219
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "6px">;
|
|
2220
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2221
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2222
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2223
|
+
readonly ":not(:is([data-selected='true']))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":not(:is([data-selected='true']))", {
|
|
2224
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2225
|
+
}>;
|
|
2226
|
+
readonly ":hover:not(:is([data-selected='true']))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover:not(:is([data-selected='true']))", {
|
|
2227
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2228
|
+
readonly cursor: "pointer";
|
|
2229
|
+
}>;
|
|
2230
|
+
}>;
|
|
2231
|
+
readonly selected: Readonly<{
|
|
2232
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2233
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2234
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2235
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2236
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2237
|
+
}>;
|
|
2238
|
+
readonly rangeStart: Readonly<{
|
|
2239
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", `${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>} !important`>;
|
|
2240
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", `${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>} !important`>;
|
|
2241
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "6px 0 0 6px !important">;
|
|
2242
|
+
readonly ":is(.range-end)": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is(.range-end)", {
|
|
2243
|
+
readonly borderRadius: "6px !important";
|
|
2244
|
+
}>;
|
|
2245
|
+
}>;
|
|
2246
|
+
readonly rangeEnd: Readonly<{
|
|
2247
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", `${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>} !important`>;
|
|
2248
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", `${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>} !important`>;
|
|
2249
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "0 6px 6px 0 !important">;
|
|
2250
|
+
}>;
|
|
2251
|
+
readonly rangeMiddle: Readonly<{
|
|
2252
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", `${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>} !important`>;
|
|
2253
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", `${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>} !important`>;
|
|
2254
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "0 !important">;
|
|
2255
|
+
}>;
|
|
2256
|
+
readonly outside: Readonly<{
|
|
2257
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", `${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>} !important`>;
|
|
2258
|
+
readonly ":hover": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover", {
|
|
2259
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2260
|
+
readonly cursor: "pointer";
|
|
2261
|
+
}>;
|
|
2262
|
+
}>;
|
|
2263
|
+
}>;
|
|
2264
|
+
|
|
2265
|
+
declare const datePickerStyles: Readonly<{
|
|
2266
|
+
readonly wrapper: Readonly<{
|
|
2267
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "start">;
|
|
2268
|
+
}>;
|
|
2269
|
+
}>;
|
|
2270
|
+
|
|
2271
|
+
declare const contextMenuContentStyles: Readonly<{
|
|
2272
|
+
readonly content: Readonly<{
|
|
2273
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "8px">;
|
|
2274
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2275
|
+
readonly boxShadow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"boxShadow", string>;
|
|
2276
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
2277
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "8px">;
|
|
2278
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "320px">;
|
|
2279
|
+
}>;
|
|
2280
|
+
readonly item: Readonly<{
|
|
2281
|
+
readonly [x: string]: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<string, string | {
|
|
2282
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2283
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2284
|
+
readonly cursor?: undefined;
|
|
2285
|
+
readonly default?: undefined;
|
|
2286
|
+
readonly ":hover:not(:is([data-disabled]))"?: undefined;
|
|
2287
|
+
readonly ":active:not(:is([data-disabled]))"?: undefined;
|
|
2288
|
+
readonly ':is([data-state="open"])'?: undefined;
|
|
2289
|
+
readonly ":is([data-disabled])"?: undefined;
|
|
2290
|
+
} | {
|
|
2291
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2292
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2293
|
+
readonly cursor: "not-allowed";
|
|
2294
|
+
readonly default?: undefined;
|
|
2295
|
+
readonly ":hover:not(:is([data-disabled]))"?: undefined;
|
|
2296
|
+
readonly ":active:not(:is([data-disabled]))"?: undefined;
|
|
2297
|
+
readonly ':is([data-state="open"])'?: undefined;
|
|
2298
|
+
readonly ":is([data-disabled])"?: undefined;
|
|
2299
|
+
}>;
|
|
2300
|
+
readonly outline: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"outline", "none">;
|
|
2301
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "8px">;
|
|
2302
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2303
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2304
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
2305
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "8px">;
|
|
2306
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2307
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2308
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2309
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2310
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2311
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
2312
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "4px">;
|
|
2313
|
+
readonly ":hover:not(:is([data-disabled]))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover:not(:is([data-disabled]))", {
|
|
2314
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2315
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2316
|
+
}>;
|
|
2317
|
+
readonly ":active:not(:is([data-disabled]))": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":active:not(:is([data-disabled]))", {
|
|
2318
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2319
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2320
|
+
}>;
|
|
2321
|
+
readonly ":is([data-state='open'])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-state='open'])", {
|
|
2322
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2323
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2324
|
+
}>;
|
|
2325
|
+
readonly ":is([data-disabled])": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":is([data-disabled])", {
|
|
2326
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2327
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2328
|
+
readonly cursor: "not-allowed";
|
|
2329
|
+
}>;
|
|
2330
|
+
}>;
|
|
2331
|
+
readonly itemContent: Readonly<{
|
|
2332
|
+
readonly flex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"flex", 1>;
|
|
2333
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2334
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2335
|
+
readonly gap: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"gap", "8px">;
|
|
2336
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", "inherit">;
|
|
2337
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", "inherit">;
|
|
2338
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", "inherit">;
|
|
2339
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", "inherit">;
|
|
2340
|
+
readonly overflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"overflow", "hidden">;
|
|
2341
|
+
}>;
|
|
2342
|
+
readonly textValue: Readonly<{
|
|
2343
|
+
readonly textOverflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
2344
|
+
readonly overflow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"overflow", "hidden">;
|
|
2345
|
+
readonly whiteSpace: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
2346
|
+
}>;
|
|
2347
|
+
readonly leftIcon: Readonly<{
|
|
2348
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "16px">;
|
|
2349
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "16px">;
|
|
2350
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2351
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2352
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2353
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", "inherit">;
|
|
2354
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", "inherit">;
|
|
2355
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", "inherit">;
|
|
2356
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", "inherit">;
|
|
2357
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", "transparent">;
|
|
2358
|
+
}>;
|
|
2359
|
+
readonly rightSlot: Readonly<{
|
|
2360
|
+
readonly display: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"display", "flex">;
|
|
2361
|
+
readonly alignItems: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"alignItems", "center">;
|
|
2362
|
+
readonly justifyContent: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"justifyContent", "center">;
|
|
2363
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", "inherit">;
|
|
2364
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", "inherit">;
|
|
2365
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", "inherit">;
|
|
2366
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2367
|
+
}>;
|
|
2368
|
+
readonly separator: Readonly<{
|
|
2369
|
+
readonly height: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"height", "1px">;
|
|
2370
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2371
|
+
readonly margin: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"margin", "4px 0">;
|
|
2372
|
+
}>;
|
|
2373
|
+
}>;
|
|
2374
|
+
|
|
2375
|
+
declare const autocompleteStyles: Readonly<{
|
|
2376
|
+
readonly wrapper: Readonly<{
|
|
2377
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "relative">;
|
|
2378
|
+
}>;
|
|
2379
|
+
readonly content: Readonly<{
|
|
2380
|
+
readonly position: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"position", "absolute">;
|
|
2381
|
+
readonly top: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"top", "calc(100% - 10px)">;
|
|
2382
|
+
readonly left: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"left", 0>;
|
|
2383
|
+
readonly zIndex: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"zIndex", 20>;
|
|
2384
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "8px">;
|
|
2385
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2386
|
+
readonly boxShadow: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"boxShadow", string>;
|
|
2387
|
+
readonly border: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"border", `1px solid ${node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>}`>;
|
|
2388
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "8px">;
|
|
2389
|
+
readonly width: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"width", "calc(100% - 16px)">;
|
|
2390
|
+
}>;
|
|
2391
|
+
readonly item: Readonly<{
|
|
2392
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "4px">;
|
|
2393
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "8px">;
|
|
2394
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2395
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2396
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2397
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2398
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2399
|
+
readonly listStyleType: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"listStyleType", "none">;
|
|
2400
|
+
readonly ":hover": node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<":hover", {
|
|
2401
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2402
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXVar<string>;
|
|
2403
|
+
}>;
|
|
2404
|
+
}>;
|
|
2405
|
+
readonly highlight: Readonly<{
|
|
2406
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2407
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2408
|
+
}>;
|
|
2409
|
+
readonly matched: Readonly<{
|
|
2410
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2411
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2412
|
+
}>;
|
|
2413
|
+
readonly noResults: Readonly<{
|
|
2414
|
+
readonly borderRadius: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"borderRadius", "4px">;
|
|
2415
|
+
readonly padding: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"padding", "8px">;
|
|
2416
|
+
readonly backgroundColor: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"backgroundColor", string>;
|
|
2417
|
+
readonly color: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"color", string>;
|
|
2418
|
+
readonly fontSize: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontSize", string>;
|
|
2419
|
+
readonly lineHeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"lineHeight", string>;
|
|
2420
|
+
readonly fontWeight: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"fontWeight", string>;
|
|
2421
|
+
readonly listStyleType: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"listStyleType", "none">;
|
|
2422
|
+
readonly textAlign: node_modules__stylexjs_stylex_lib_cjs_types_StyleXTypes.StyleXClassNameFor<"textAlign", "center">;
|
|
2423
|
+
}>;
|
|
2424
|
+
}>;
|
|
2425
|
+
|
|
1760
2426
|
declare const version = "0.0.1";
|
|
1761
2427
|
|
|
1762
|
-
export {
|
|
2428
|
+
export { Autocomplete, Button, Calendar, Card, CardBody, CardContent, CardFooter, CardHeader, Checkbox, ContextMenu, ContextMenuArrow, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuItemIndicator, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogPortal, DialogTrigger, HorizontalTab, HorizontalTabs, Input, InteractiveListItem, InteractiveListItemActions, InteractiveListItemContent, InteractiveListItemIcon, ModeTab, ModeTabs, MultipleSelect, MultipleSelectContent, MultipleSelectTrigger, MultipleSelectValue, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, RadioGroup, RadioItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, Table, TableBody, TableCell, TableHead, TableHeader, TableRow, Tag, Text, TextArea, Tooltip, TooltipArrow, TooltipContent, TooltipDescription, TooltipFooter, TooltipHeader, TooltipTrigger, VerticalMenu, VerticalMenus, autocompleteStyles, borderRadius, buttonSizeStyles, buttonStyles, buttonVariantStyles, calendarStyles, cardBodyStyles, cardFooterStyles, cardHeaderStyles, cardStyles, checkboxStyles, checkboxWrapperStyles, commonStyles, contextMenuContentStyles, datePickerStyles, dialogContentStyles, dialogOverlayStyles, fontFamily, fontSize, fontWeight, fontWeightStyles, horizontalTabStyles, horizontalTabWrapperStyles, inputStyles, inputWrapperSizeStyles, inputWrapperStyles, interactiveListItemStyles, labelStyles, lineHeight, modeTabStyles, modeTabWrapperStyles, multipleSelectContentStyles, multipleSelectItemStyles, multipleSelectTriggerStyles, multipleSelectWrapperStyles, paginationStyles, primitiveColors, radioGroupStyles, radioItemLabelStyles, radioItemStyles, radioItemWrapperStyles, selectContentStyles, selectGroupLabelStyles, selectIconWrapperStyles, selectItemStyles, selectSeparatorStyles, selectTriggerStyles, semanticColors, spacing, tableStyles, tagStyles, textAlignStyles, textAreaStyles, textAreaWrapperStyles, textSizeStyles, textStyles, textVariantStyles, tooltipDescriptionStyles, tooltipShortStyles, version, verticalMenuIconStyles, verticalMenuStyles, verticalMenusWrapperStyles };
|