@rovula/ui 0.0.22 → 0.0.24
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/cjs/bundle.css +143 -0
- package/dist/cjs/bundle.js +1 -1
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/DropdownMenu/DropdownMenu.d.ts +27 -0
- package/dist/cjs/types/components/DropdownMenu/DropdownMenu.stories.d.ts +54 -0
- package/dist/cjs/types/components/Text/Text.d.ts +6 -5
- package/dist/cjs/types/components/Text/Text.stories.d.ts +2 -10
- package/dist/components/DropdownMenu/DropdownMenu.js +74 -0
- package/dist/components/DropdownMenu/DropdownMenu.stories.js +116 -0
- package/dist/components/Tabs/Tabs.js +0 -1
- package/dist/components/Text/Text.js +20 -4
- package/dist/esm/bundle.css +143 -0
- package/dist/esm/bundle.js +1 -1
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/DropdownMenu/DropdownMenu.d.ts +27 -0
- package/dist/esm/types/components/DropdownMenu/DropdownMenu.stories.d.ts +54 -0
- package/dist/esm/types/components/Text/Text.d.ts +6 -5
- package/dist/esm/types/components/Text/Text.stories.d.ts +2 -10
- package/dist/index.d.ts +6 -5
- package/dist/src/theme/global.css +247 -1
- package/dist/theme/main-preset.js +24 -0
- package/dist/theme/plugins/utilities/typography.js +9 -0
- package/dist/theme/presets/colors.js +6 -0
- package/dist/theme/themes/xspector/baseline.css +2 -1
- package/dist/theme/themes/xspector/color.css +2 -1
- package/dist/theme/themes/xspector/components/dropdown-menu.css +28 -0
- package/dist/theme/tokens/baseline.css +2 -1
- package/dist/theme/tokens/color.css +1 -0
- package/dist/theme/tokens/components/dropdown-menu.css +27 -0
- package/dist/theme/tokens/typography.css +21 -0
- package/package.json +8 -3
- package/src/components/Button/Button.tsx +1 -4
- package/src/components/Collapsible/Collapsible.tsx +1 -1
- package/src/components/DropdownMenu/DropdownMenu.stories.tsx +394 -0
- package/src/components/DropdownMenu/DropdownMenu.tsx +222 -0
- package/src/components/Slider/Slider.tsx +0 -1
- package/src/components/Tabs/Tabs.tsx +0 -1
- package/src/components/Text/Text.tsx +37 -22
- package/src/theme/main-preset.js +24 -0
- package/src/theme/plugins/utilities/typography.js +9 -0
- package/src/theme/presets/colors.js +6 -0
- package/src/theme/themes/xspector/baseline.css +2 -1
- package/src/theme/themes/xspector/color.css +2 -1
- package/src/theme/themes/xspector/components/dropdown-menu.css +28 -0
- package/src/theme/tokens/baseline.css +2 -1
- package/src/theme/tokens/color.css +1 -0
- package/src/theme/tokens/components/dropdown-menu.css +27 -0
- package/src/theme/tokens/typography.css +21 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
3
|
+
declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
4
|
+
declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
+
declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
7
|
+
declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
8
|
+
declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
10
|
+
inset?: boolean | undefined;
|
|
11
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
15
|
+
inset?: boolean | undefined;
|
|
16
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
19
|
+
declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
20
|
+
inset?: boolean | undefined;
|
|
21
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
22
|
+
declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
23
|
+
declare const DropdownMenuShortcut: {
|
|
24
|
+
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
displayName: string;
|
|
26
|
+
};
|
|
27
|
+
export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuGroup, DropdownMenuPortal, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuRadioGroup, };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const meta: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: React.FC<import("@radix-ui/react-dropdown-menu").DropdownMenuProps>;
|
|
5
|
+
parameters: {
|
|
6
|
+
layout: string;
|
|
7
|
+
};
|
|
8
|
+
decorators: ((Story: import("@storybook/types").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
9
|
+
children?: React.ReactNode;
|
|
10
|
+
dir?: ("ltr" | "rtl") | undefined;
|
|
11
|
+
open?: boolean | undefined;
|
|
12
|
+
defaultOpen?: boolean | undefined;
|
|
13
|
+
onOpenChange?: ((open: boolean) => void) | undefined;
|
|
14
|
+
modal?: boolean | undefined;
|
|
15
|
+
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
16
|
+
};
|
|
17
|
+
export default meta;
|
|
18
|
+
export declare const Default: {
|
|
19
|
+
args: {};
|
|
20
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
};
|
|
22
|
+
export declare const WithIcon: {
|
|
23
|
+
args: {};
|
|
24
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
};
|
|
26
|
+
export declare const WithLabel: {
|
|
27
|
+
args: {};
|
|
28
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
};
|
|
30
|
+
export declare const Checkboxes: {
|
|
31
|
+
args: {};
|
|
32
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
};
|
|
34
|
+
export declare const SubMenu: {
|
|
35
|
+
args: {};
|
|
36
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
};
|
|
38
|
+
export declare const OnIcon: {
|
|
39
|
+
args: {};
|
|
40
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
};
|
|
42
|
+
export declare const AsChild: {
|
|
43
|
+
args: {};
|
|
44
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
};
|
|
46
|
+
export declare const Position: {
|
|
47
|
+
args: {
|
|
48
|
+
side: string;
|
|
49
|
+
align: string;
|
|
50
|
+
sideOffset: number;
|
|
51
|
+
alignOffset: number;
|
|
52
|
+
};
|
|
53
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
+
};
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export type TextProps = {
|
|
2
|
+
export type TextProps<T extends React.ElementType> = {
|
|
3
3
|
variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "subtitile1" | "subtitile2" | "subtitile3" | "subtitile4" | "subtitile5" | "subtitile6" | "body1" | "body2" | "body3" | "body4" | "small1" | "small2" | "small3" | "small4" | "small5" | "label1" | "label2" | "buttonL" | "buttonMS";
|
|
4
4
|
color?: "primary" | "secondary" | "success" | "tertiary" | "info" | "warning" | "error";
|
|
5
5
|
children?: React.ReactNode;
|
|
6
6
|
className?: string;
|
|
7
|
-
tag?:
|
|
7
|
+
tag?: T;
|
|
8
8
|
style?: React.CSSProperties;
|
|
9
9
|
id?: string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
} & React.ComponentProps<T>;
|
|
11
|
+
type TextComponent<T extends React.ElementType> = React.ForwardRefExoticComponent<TextProps<T> & React.RefAttributes<HTMLElement>>;
|
|
12
|
+
declare const ForwardedText: TextComponent<any>;
|
|
13
|
+
export default ForwardedText;
|
|
@@ -1,21 +1,13 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
declare const meta: {
|
|
3
3
|
title: string;
|
|
4
|
-
component: React.ForwardRefExoticComponent<
|
|
4
|
+
component: React.ForwardRefExoticComponent<any>;
|
|
5
5
|
tags: string[];
|
|
6
6
|
parameters: {
|
|
7
7
|
layout: string;
|
|
8
8
|
};
|
|
9
9
|
decorators: ((Story: import("@storybook/types").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
10
|
-
|
|
11
|
-
color?: "primary" | "secondary" | "tertiary" | "success" | "info" | "warning" | "error" | undefined;
|
|
12
|
-
children?: React.ReactNode;
|
|
13
|
-
className?: string | undefined;
|
|
14
|
-
tag?: keyof JSX.IntrinsicElements | undefined;
|
|
15
|
-
style?: React.CSSProperties | undefined;
|
|
16
|
-
id?: string | undefined;
|
|
17
|
-
ref?: React.LegacyRef<keyof JSX.IntrinsicElements | undefined> | undefined;
|
|
18
|
-
key?: React.Key | null | undefined;
|
|
10
|
+
[x: string]: any;
|
|
19
11
|
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
20
12
|
};
|
|
21
13
|
export default meta;
|
package/dist/index.d.ts
CHANGED
|
@@ -80,16 +80,17 @@ declare const TextInput: React__default.ForwardRefExoticComponent<{
|
|
|
80
80
|
labelClassName?: string | undefined;
|
|
81
81
|
} & Omit<React__default.InputHTMLAttributes<HTMLInputElement>, "size"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
82
82
|
|
|
83
|
-
type TextProps = {
|
|
83
|
+
type TextProps<T extends React__default.ElementType> = {
|
|
84
84
|
variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "subtitile1" | "subtitile2" | "subtitile3" | "subtitile4" | "subtitile5" | "subtitile6" | "body1" | "body2" | "body3" | "body4" | "small1" | "small2" | "small3" | "small4" | "small5" | "label1" | "label2" | "buttonL" | "buttonMS";
|
|
85
85
|
color?: "primary" | "secondary" | "success" | "tertiary" | "info" | "warning" | "error";
|
|
86
86
|
children?: React__default.ReactNode;
|
|
87
87
|
className?: string;
|
|
88
|
-
tag?:
|
|
88
|
+
tag?: T;
|
|
89
89
|
style?: React__default.CSSProperties;
|
|
90
90
|
id?: string;
|
|
91
|
-
}
|
|
92
|
-
|
|
91
|
+
} & React__default.ComponentProps<T>;
|
|
92
|
+
type TextComponent<T extends React__default.ElementType> = React__default.ForwardRefExoticComponent<TextProps<T> & React__default.RefAttributes<HTMLElement>>;
|
|
93
|
+
declare const ForwardedText: TextComponent<any>;
|
|
93
94
|
|
|
94
95
|
type Tab = {
|
|
95
96
|
label: string;
|
|
@@ -408,4 +409,4 @@ declare const getTimestampUTC: (date: Date) => number;
|
|
|
408
409
|
|
|
409
410
|
declare function cn(...inputs: ClassValue[]): string;
|
|
410
411
|
|
|
411
|
-
export { ActionButton, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Button, type ButtonProps, Calendar, Checkbox, Collapsible, DataTable, type DataTableProps, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Dropdown, type DropdownProps, Icon, Input, type InputProps, Label, Loading, Navbar, type NavbarProps, type Options, Popover, PopoverContent, PopoverTrigger, ProgressBar, Search, type SearchProps, Slider, type SliderProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, Text, TextInput, cn, getEndDateOfDay, getStartDateOfDay, getStartEndTimestampOfDay, getTimestampUTC, resloveTimestamp };
|
|
412
|
+
export { ActionButton, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Button, type ButtonProps, Calendar, Checkbox, Collapsible, DataTable, type DataTableProps, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Dropdown, type DropdownProps, Icon, Input, type InputProps, Label, Loading, Navbar, type NavbarProps, type Options, Popover, PopoverContent, PopoverTrigger, ProgressBar, Search, type SearchProps, Slider, type SliderProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, ForwardedText as Text, TextInput, cn, getEndDateOfDay, getStartDateOfDay, getStartEndTimestampOfDay, getTimestampUTC, resloveTimestamp };
|
|
@@ -217,6 +217,7 @@
|
|
|
217
217
|
--base-color-bg2: #f5f5f5;
|
|
218
218
|
--base-color-bg3: #d8d8d8;
|
|
219
219
|
--base-color-workspace-stroke: #e2e2e2;
|
|
220
|
+
--base-color-guideline-stroke: #c5c5c5;
|
|
220
221
|
--base-color-popup: #ffffff;
|
|
221
222
|
--base-color-popup-hightlight: #343638;
|
|
222
223
|
--base-color-popup-curtain: rgba(0 0 0 / 0.6);
|
|
@@ -488,6 +489,27 @@
|
|
|
488
489
|
--small5-style: normal;
|
|
489
490
|
--small5-line-height: 12px;
|
|
490
491
|
--small5-line-height-rem: 0.75rem;
|
|
492
|
+
--small6-family: "Montserrat";
|
|
493
|
+
--small6-size: 10px;
|
|
494
|
+
--small6-size-rem: 0.625rem;
|
|
495
|
+
--small6-weight: 600;
|
|
496
|
+
--small6-style: normal;
|
|
497
|
+
--small6-line-height: 12px;
|
|
498
|
+
--small6-line-height-rem: 0.75rem;
|
|
499
|
+
--small7-family: "Montserrat";
|
|
500
|
+
--small7-size: 8px;
|
|
501
|
+
--small7-size-rem: 0.5rem;
|
|
502
|
+
--small7-weight: 600;
|
|
503
|
+
--small7-style: normal;
|
|
504
|
+
--small7-line-height: 10px;
|
|
505
|
+
--small7-line-height-rem: 0.625rem;
|
|
506
|
+
--small8-family: "Montserrat";
|
|
507
|
+
--small8-size: 8px;
|
|
508
|
+
--small8-size-rem: 0.5rem;
|
|
509
|
+
--small8-weight: 700;
|
|
510
|
+
--small8-style: normal;
|
|
511
|
+
--small8-line-height: 10px;
|
|
512
|
+
--small8-line-height-rem: 0.625rem;
|
|
491
513
|
--label-label1-family: "Montserrat";
|
|
492
514
|
--label-label1-size: 12px;
|
|
493
515
|
--label-label1-size-rem: 0.75rem;
|
|
@@ -1035,6 +1057,26 @@
|
|
|
1035
1057
|
--navbar-text-color: var(--primary-foreground);
|
|
1036
1058
|
--navbar-border-color: var(--primary-foreground);
|
|
1037
1059
|
--navbar-gap: 16px;
|
|
1060
|
+
/* ------------------------------------------------------------------ */
|
|
1061
|
+
/* DropdownMenu Component Tokens */
|
|
1062
|
+
/* ------------------------------------------------------------------ */
|
|
1063
|
+
/* Naming Convention: --[component]-[state]-[property] */
|
|
1064
|
+
/* Element: [default, hover, selected, disabled] */
|
|
1065
|
+
/* ------------------------------------------------------------------ */
|
|
1066
|
+
--dropdown-menu-seperator-bg: var(--base-color-workspace-stroke);
|
|
1067
|
+
--dropdown-menu-shadow: 0px 2px 24px 0px rgba(145, 158, 171, 0.24);
|
|
1068
|
+
/* Default State */
|
|
1069
|
+
--dropdown-menu-default-bg: transparent;
|
|
1070
|
+
--dropdown-menu-default-text: inherit;
|
|
1071
|
+
/* Hover State */
|
|
1072
|
+
--dropdown-menu-hover-bg: var(--state-color-primary-hover-bg);
|
|
1073
|
+
--dropdown-menu-hover-text: inherit;
|
|
1074
|
+
/* Selected State */
|
|
1075
|
+
--dropdown-menu-selected-bg: transparent;
|
|
1076
|
+
--dropdown-menu-selected-text: inherit;
|
|
1077
|
+
/* Disabled State */
|
|
1078
|
+
--dropdown-menu-disabled-bg: transparent;
|
|
1079
|
+
--dropdown-menu-disabled-text: var(--state-color-disable-outline);
|
|
1038
1080
|
}
|
|
1039
1081
|
|
|
1040
1082
|
:root[data-theme="xspector"]{
|
|
@@ -1255,6 +1297,7 @@
|
|
|
1255
1297
|
--base-color-bg2: #282c31;
|
|
1256
1298
|
--base-color-bg3: #d8d8d8;
|
|
1257
1299
|
--base-color-workspace-stroke: #e2e2e2;
|
|
1300
|
+
--base-color-guideline-stroke: #c5c5c5;
|
|
1258
1301
|
--base-color-popup: #2d2e30;
|
|
1259
1302
|
--base-color-popup-hightlight: #343638;
|
|
1260
1303
|
--base-color-popup-curtain: rgba(0 0 0 / 0.6);
|
|
@@ -1288,7 +1331,7 @@
|
|
|
1288
1331
|
--surface-foreground: var(--common-white);
|
|
1289
1332
|
--primary-foreground: var(--common-white);
|
|
1290
1333
|
--secondary-foreground: var(--common-white);
|
|
1291
|
-
--base-color-popup-foreground: var(--
|
|
1334
|
+
--base-color-popup-foreground: var(--text-grey-light);
|
|
1292
1335
|
--main-transparency-primary-8: rgba(221 205 0 / 0.08);
|
|
1293
1336
|
--main-transparency-primary-12: rgba(221 205 0 / 0.12);
|
|
1294
1337
|
--main-transparency-primary-16: rgba(221 205 0 / 0.16);
|
|
@@ -1463,6 +1506,26 @@
|
|
|
1463
1506
|
/* ------------------------------------------------------------------ */
|
|
1464
1507
|
--loading-process-color: var(--primary);
|
|
1465
1508
|
--loading-track-color: #9E9E9E7A;
|
|
1509
|
+
/* ------------------------------------------------------------------ */
|
|
1510
|
+
/* DropdownMenu Component Tokens */
|
|
1511
|
+
/* ------------------------------------------------------------------ */
|
|
1512
|
+
/* Naming Convention: --[component]-[state]-[property] */
|
|
1513
|
+
/* Element: [default, hover, selected, disabled] */
|
|
1514
|
+
/* ------------------------------------------------------------------ */
|
|
1515
|
+
--dropdown-menu-seperator-bg: var(--other-transparency-white-08);
|
|
1516
|
+
--dropdown-menu-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.12);
|
|
1517
|
+
/* Default State */
|
|
1518
|
+
--dropdown-menu-default-bg: transparent;
|
|
1519
|
+
--dropdown-menu-default-text: inherit;
|
|
1520
|
+
/* Hover State */
|
|
1521
|
+
--dropdown-menu-hover-bg: var(--other-transparency-white-08);
|
|
1522
|
+
--dropdown-menu-hover-text: inherit;
|
|
1523
|
+
/* Selected State */
|
|
1524
|
+
--dropdown-menu-selected-bg: var(--grey-grey-150);
|
|
1525
|
+
--dropdown-menu-selected-text: inherit;
|
|
1526
|
+
/* Disabled State */
|
|
1527
|
+
--dropdown-menu-disabled-bg: transparent;
|
|
1528
|
+
--dropdown-menu-disabled-text: var(--grey-grey-140);
|
|
1466
1529
|
}
|
|
1467
1530
|
|
|
1468
1531
|
/* ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */
|
|
@@ -2167,11 +2230,21 @@ body {
|
|
|
2167
2230
|
margin: 0px;
|
|
2168
2231
|
}
|
|
2169
2232
|
|
|
2233
|
+
.-mx-2 {
|
|
2234
|
+
margin-left: -0.5rem;
|
|
2235
|
+
margin-right: -0.5rem;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2170
2238
|
.mx-auto {
|
|
2171
2239
|
margin-left: auto;
|
|
2172
2240
|
margin-right: auto;
|
|
2173
2241
|
}
|
|
2174
2242
|
|
|
2243
|
+
.my-2 {
|
|
2244
|
+
margin-top: 0.5rem;
|
|
2245
|
+
margin-bottom: 0.5rem;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2175
2248
|
.ml-2 {
|
|
2176
2249
|
margin-left: 0.5rem;
|
|
2177
2250
|
}
|
|
@@ -2184,6 +2257,10 @@ body {
|
|
|
2184
2257
|
margin-left: 1rem;
|
|
2185
2258
|
}
|
|
2186
2259
|
|
|
2260
|
+
.ml-auto {
|
|
2261
|
+
margin-left: auto;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2187
2264
|
.mr-2 {
|
|
2188
2265
|
margin-right: 0.5rem;
|
|
2189
2266
|
}
|
|
@@ -2391,6 +2468,10 @@ body {
|
|
|
2391
2468
|
height: 100%;
|
|
2392
2469
|
}
|
|
2393
2470
|
|
|
2471
|
+
.h-px {
|
|
2472
|
+
height: 1px;
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2394
2475
|
.h-screen {
|
|
2395
2476
|
height: 100vh;
|
|
2396
2477
|
}
|
|
@@ -2407,6 +2488,10 @@ body {
|
|
|
2407
2488
|
width: 2.5rem;
|
|
2408
2489
|
}
|
|
2409
2490
|
|
|
2491
|
+
.w-2 {
|
|
2492
|
+
width: 0.5rem;
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2410
2495
|
.w-4 {
|
|
2411
2496
|
width: 1rem;
|
|
2412
2497
|
}
|
|
@@ -2471,6 +2556,10 @@ body {
|
|
|
2471
2556
|
min-width: 18rem;
|
|
2472
2557
|
}
|
|
2473
2558
|
|
|
2559
|
+
.min-w-\[154px\] {
|
|
2560
|
+
min-width: 154px;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2474
2563
|
.max-w-lg {
|
|
2475
2564
|
max-width: 32rem;
|
|
2476
2565
|
}
|
|
@@ -2528,6 +2617,10 @@ body {
|
|
|
2528
2617
|
animation: spin 1s linear infinite;
|
|
2529
2618
|
}
|
|
2530
2619
|
|
|
2620
|
+
.cursor-default {
|
|
2621
|
+
cursor: default;
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2531
2624
|
.cursor-pointer {
|
|
2532
2625
|
cursor: pointer;
|
|
2533
2626
|
}
|
|
@@ -3002,6 +3095,18 @@ body {
|
|
|
3002
3095
|
background-color: rgb(var(--navbar-bg-color));
|
|
3003
3096
|
}
|
|
3004
3097
|
|
|
3098
|
+
.bg-\[var\(--dropdown-menu-default-bg\)\] {
|
|
3099
|
+
background-color: var(--dropdown-menu-default-bg);
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
.bg-\[var\(--dropdown-menu-selected-bg\)\] {
|
|
3103
|
+
background-color: var(--dropdown-menu-selected-bg);
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
.bg-\[var\(--dropdown-menu-seperator-bg\)\] {
|
|
3107
|
+
background-color: var(--dropdown-menu-seperator-bg);
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3005
3110
|
.bg-action-button-icon-active {
|
|
3006
3111
|
--tw-bg-opacity: 1;
|
|
3007
3112
|
background-color: color-mix(in srgb, var(--action-button-icon-active-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -3440,6 +3545,11 @@ body {
|
|
|
3440
3545
|
padding-right: 0.25rem;
|
|
3441
3546
|
}
|
|
3442
3547
|
|
|
3548
|
+
.px-2 {
|
|
3549
|
+
padding-left: 0.5rem;
|
|
3550
|
+
padding-right: 0.5rem;
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3443
3553
|
.px-3 {
|
|
3444
3554
|
padding-left: 0.75rem;
|
|
3445
3555
|
padding-right: 0.75rem;
|
|
@@ -3505,6 +3615,11 @@ body {
|
|
|
3505
3615
|
padding-bottom: 0.25rem;
|
|
3506
3616
|
}
|
|
3507
3617
|
|
|
3618
|
+
.py-1\.5 {
|
|
3619
|
+
padding-top: 0.375rem;
|
|
3620
|
+
padding-bottom: 0.375rem;
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3508
3623
|
.py-14 {
|
|
3509
3624
|
padding-top: 3.5rem;
|
|
3510
3625
|
padding-bottom: 3.5rem;
|
|
@@ -3579,6 +3694,22 @@ body {
|
|
|
3579
3694
|
padding-inline-end: 72px;
|
|
3580
3695
|
}
|
|
3581
3696
|
|
|
3697
|
+
.pl-8 {
|
|
3698
|
+
padding-left: 2rem;
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
.pl-9 {
|
|
3702
|
+
padding-left: 2.25rem;
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
.pr-4 {
|
|
3706
|
+
padding-right: 1rem;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.pr-xxl {
|
|
3710
|
+
padding-right: var(--spacing-spacing-xxl);
|
|
3711
|
+
}
|
|
3712
|
+
|
|
3582
3713
|
.ps-11 {
|
|
3583
3714
|
padding-inline-start: 2.75rem;
|
|
3584
3715
|
}
|
|
@@ -3619,6 +3750,10 @@ body {
|
|
|
3619
3750
|
vertical-align: middle;
|
|
3620
3751
|
}
|
|
3621
3752
|
|
|
3753
|
+
.font-poppins {
|
|
3754
|
+
font-family: Poppins, sans-serif;
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3622
3757
|
.text-body1 {
|
|
3623
3758
|
font-size: var(--body1-size, 16px);
|
|
3624
3759
|
line-height: var(--body1-line-height, 20px);
|
|
@@ -3738,6 +3873,24 @@ body {
|
|
|
3738
3873
|
font-weight: var(--small5-weight, 500);
|
|
3739
3874
|
}
|
|
3740
3875
|
|
|
3876
|
+
.text-small6 {
|
|
3877
|
+
font-size: var(--small5-size, 10px);
|
|
3878
|
+
line-height: var(--small6-line-height, 12px);
|
|
3879
|
+
font-weight: var(--small6-weight, 600);
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
.text-small7 {
|
|
3883
|
+
font-size: var(--small7-size, 8px);
|
|
3884
|
+
line-height: var(--small7-line-height, 10px);
|
|
3885
|
+
font-weight: var(--small7-weight, 600);
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
.text-small8 {
|
|
3889
|
+
font-size: var(--small8-size, 8px);
|
|
3890
|
+
line-height: var(--small8-line-height, 10px);
|
|
3891
|
+
font-weight: var(--small8-weight, 700);
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3741
3894
|
.text-subtitile1 {
|
|
3742
3895
|
font-size: var(--subtitle1-size, 16px);
|
|
3743
3896
|
line-height: var(--subtitle1-line-height, 24px);
|
|
@@ -3779,6 +3932,11 @@ body {
|
|
|
3779
3932
|
line-height: 1.75rem;
|
|
3780
3933
|
}
|
|
3781
3934
|
|
|
3935
|
+
.text-xs {
|
|
3936
|
+
font-size: 0.75rem;
|
|
3937
|
+
line-height: 1rem;
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3782
3940
|
.font-bold {
|
|
3783
3941
|
font-weight: 700;
|
|
3784
3942
|
}
|
|
@@ -3803,6 +3961,10 @@ body {
|
|
|
3803
3961
|
letter-spacing: -0.025em;
|
|
3804
3962
|
}
|
|
3805
3963
|
|
|
3964
|
+
.tracking-widest {
|
|
3965
|
+
letter-spacing: 0.1em;
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3806
3968
|
.\!text-primary-foreground {
|
|
3807
3969
|
--tw-text-opacity: 1 !important;
|
|
3808
3970
|
color: color-mix(in srgb, var(--primary-foreground) calc(100% * var(--tw-text-opacity)), transparent) !important;
|
|
@@ -3812,6 +3974,14 @@ body {
|
|
|
3812
3974
|
color: rgb(var(--navbar-text-color));
|
|
3813
3975
|
}
|
|
3814
3976
|
|
|
3977
|
+
.text-\[var\(--dropdown-menu-default-text\)\] {
|
|
3978
|
+
color: var(--dropdown-menu-default-text);
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
.text-\[var\(--dropdown-menu-selected-text\)\] {
|
|
3982
|
+
color: var(--dropdown-menu-selected-text);
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3815
3985
|
.text-\[var\(--loading-process-color\)\] {
|
|
3816
3986
|
color: var(--loading-process-color);
|
|
3817
3987
|
}
|
|
@@ -4120,10 +4290,20 @@ body {
|
|
|
4120
4290
|
caret-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * 1), transparent);
|
|
4121
4291
|
}
|
|
4122
4292
|
|
|
4293
|
+
.opacity-60 {
|
|
4294
|
+
opacity: 0.6;
|
|
4295
|
+
}
|
|
4296
|
+
|
|
4123
4297
|
.opacity-70 {
|
|
4124
4298
|
opacity: 0.7;
|
|
4125
4299
|
}
|
|
4126
4300
|
|
|
4301
|
+
.shadow-\[0px_2px_24px_0px_rgba\(145\2c _158\2c _171\2c _0\.24\)\] {
|
|
4302
|
+
--tw-shadow: 0px 2px 24px 0px rgba(145, 158, 171, 0.24);
|
|
4303
|
+
--tw-shadow-colored: 0px 2px 24px 0px var(--tw-shadow-color);
|
|
4304
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4127
4307
|
.shadow-lg {
|
|
4128
4308
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
4129
4309
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -4136,6 +4316,11 @@ body {
|
|
|
4136
4316
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
4137
4317
|
}
|
|
4138
4318
|
|
|
4319
|
+
.shadow-\[var\(--dropdown-menu-shadow\)\] {
|
|
4320
|
+
--tw-shadow-color: var(--dropdown-menu-shadow);
|
|
4321
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4139
4324
|
.outline-none {
|
|
4140
4325
|
outline: 2px solid transparent;
|
|
4141
4326
|
outline-offset: 2px;
|
|
@@ -4377,6 +4562,24 @@ body {
|
|
|
4377
4562
|
font-weight: var(--small5-weight, 500);
|
|
4378
4563
|
}
|
|
4379
4564
|
|
|
4565
|
+
.typography-small6 {
|
|
4566
|
+
font-size: var(--small5-size, 10px);
|
|
4567
|
+
line-height: var(--small6-line-height, 12px);
|
|
4568
|
+
font-weight: var(--small6-weight, 600);
|
|
4569
|
+
}
|
|
4570
|
+
|
|
4571
|
+
.typography-small7 {
|
|
4572
|
+
font-size: var(--small7-size, 8px);
|
|
4573
|
+
line-height: var(--small7-line-height, 10px);
|
|
4574
|
+
font-weight: var(--small7-weight, 600);
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4577
|
+
.typography-small8 {
|
|
4578
|
+
font-size: var(--small8-size, 8px);
|
|
4579
|
+
line-height: var(--small8-line-height, 10px);
|
|
4580
|
+
font-weight: var(--small8-weight, 700);
|
|
4581
|
+
}
|
|
4582
|
+
|
|
4380
4583
|
.typography-label1 {
|
|
4381
4584
|
font-size: var(--label-label1-size, 12px);
|
|
4382
4585
|
line-height: var(--label-label1-line-height, 12px);
|
|
@@ -5015,6 +5218,15 @@ body {
|
|
|
5015
5218
|
border-color: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
5016
5219
|
}
|
|
5017
5220
|
|
|
5221
|
+
.focus\:\!bg-\[var\(--dropdown-menu-hover-bg\)\]:focus {
|
|
5222
|
+
background-color: var(--dropdown-menu-hover-bg) !important;
|
|
5223
|
+
}
|
|
5224
|
+
|
|
5225
|
+
.focus\:bg-primary:focus {
|
|
5226
|
+
--tw-bg-opacity: 1;
|
|
5227
|
+
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
5228
|
+
}
|
|
5229
|
+
|
|
5018
5230
|
.focus\:pe-10:focus {
|
|
5019
5231
|
padding-inline-end: 2.5rem;
|
|
5020
5232
|
}
|
|
@@ -5027,6 +5239,10 @@ body {
|
|
|
5027
5239
|
padding-inline-end: 2rem;
|
|
5028
5240
|
}
|
|
5029
5241
|
|
|
5242
|
+
.focus\:\!text-\[var\(--dropdown-menu-hover-text\)\]:focus {
|
|
5243
|
+
color: var(--dropdown-menu-hover-text) !important;
|
|
5244
|
+
}
|
|
5245
|
+
|
|
5030
5246
|
.focus\:text-input-filled-text:focus {
|
|
5031
5247
|
--tw-text-opacity: 1;
|
|
5032
5248
|
color: color-mix(in srgb, var(--input-color-filled-text) calc(100% * var(--tw-text-opacity)), transparent);
|
|
@@ -5634,6 +5850,10 @@ body {
|
|
|
5634
5850
|
color: color-mix(in srgb, var(--text-dark) calc(100% * var(--tw-text-opacity)), transparent);
|
|
5635
5851
|
}
|
|
5636
5852
|
|
|
5853
|
+
.active\:opacity-75:active {
|
|
5854
|
+
opacity: 0.75;
|
|
5855
|
+
}
|
|
5856
|
+
|
|
5637
5857
|
.active\:ring-input-disable-stroke:active {
|
|
5638
5858
|
--tw-ring-opacity: 1;
|
|
5639
5859
|
--tw-ring-color: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * var(--tw-ring-opacity)), transparent);
|
|
@@ -6203,6 +6423,10 @@ body {
|
|
|
6203
6423
|
opacity: 0.7;
|
|
6204
6424
|
}
|
|
6205
6425
|
|
|
6426
|
+
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
6427
|
+
pointer-events: none;
|
|
6428
|
+
}
|
|
6429
|
+
|
|
6206
6430
|
.data-\[state\=checked\]\:translate-x-4[data-state=checked] {
|
|
6207
6431
|
--tw-translate-x: 1rem;
|
|
6208
6432
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -6323,6 +6547,10 @@ body {
|
|
|
6323
6547
|
border-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-border-opacity)), transparent);
|
|
6324
6548
|
}
|
|
6325
6549
|
|
|
6550
|
+
.data-\[disabled\]\:\!bg-\[var\(--dropdown-menu-disabled-bg\)\][data-disabled] {
|
|
6551
|
+
background-color: var(--dropdown-menu-disabled-bg) !important;
|
|
6552
|
+
}
|
|
6553
|
+
|
|
6326
6554
|
.data-\[loading\=true\]\:bg-button-error-flat-active[data-loading=true] {
|
|
6327
6555
|
--tw-bg-opacity: 1;
|
|
6328
6556
|
background-color: color-mix(in srgb, var(--button-error-flat-active-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -6428,6 +6656,10 @@ body {
|
|
|
6428
6656
|
background-color: color-mix(in srgb, var(--button-warning-solid-active-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
6429
6657
|
}
|
|
6430
6658
|
|
|
6659
|
+
.data-\[state\=\'checked\'\]\:bg-\[var\(--dropdown-menu-selected-bg\)\][data-state='checked'] {
|
|
6660
|
+
background-color: var(--dropdown-menu-selected-bg);
|
|
6661
|
+
}
|
|
6662
|
+
|
|
6431
6663
|
.data-\[state\=checked\]\:bg-primary[data-state=checked] {
|
|
6432
6664
|
--tw-bg-opacity: 1;
|
|
6433
6665
|
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -6540,6 +6772,10 @@ body {
|
|
|
6540
6772
|
fill: color-mix(in srgb, var(--button-warning-solid-active-text) calc(100% * 1), transparent);
|
|
6541
6773
|
}
|
|
6542
6774
|
|
|
6775
|
+
.data-\[disabled\]\:\!text-\[var\(--dropdown-menu-disabled-text\)\][data-disabled] {
|
|
6776
|
+
color: var(--dropdown-menu-disabled-text) !important;
|
|
6777
|
+
}
|
|
6778
|
+
|
|
6543
6779
|
.data-\[loading\=true\]\:text-button-error-flat-active[data-loading=true] {
|
|
6544
6780
|
--tw-text-opacity: 1;
|
|
6545
6781
|
color: color-mix(in srgb, var(--button-error-flat-active-text) calc(100% * var(--tw-text-opacity)), transparent);
|
|
@@ -6645,6 +6881,10 @@ body {
|
|
|
6645
6881
|
color: color-mix(in srgb, var(--button-warning-solid-active-text) calc(100% * var(--tw-text-opacity)), transparent);
|
|
6646
6882
|
}
|
|
6647
6883
|
|
|
6884
|
+
.data-\[state\=\'checked\'\]\:text-\[var\(--dropdown-menu-selected-text\)\][data-state='checked'] {
|
|
6885
|
+
color: var(--dropdown-menu-selected-text);
|
|
6886
|
+
}
|
|
6887
|
+
|
|
6648
6888
|
.data-\[state\=checked\]\:text-primary-foreground[data-state=checked] {
|
|
6649
6889
|
--tw-text-opacity: 1;
|
|
6650
6890
|
color: color-mix(in srgb, var(--primary-foreground) calc(100% * var(--tw-text-opacity)), transparent);
|
|
@@ -6655,6 +6895,12 @@ body {
|
|
|
6655
6895
|
color: color-mix(in srgb, var(--primary-foreground) calc(100% * var(--tw-text-opacity)), transparent);
|
|
6656
6896
|
}
|
|
6657
6897
|
|
|
6898
|
+
.data-\[state\=\'checked\'\]\:typography-subtitile5[data-state='checked'] {
|
|
6899
|
+
font-size: var(--subtitle5-size, 14px);
|
|
6900
|
+
line-height: var(--subtitle5-line-height, 22px);
|
|
6901
|
+
font-weight: var(--subtitle5-weight, 500);
|
|
6902
|
+
}
|
|
6903
|
+
|
|
6658
6904
|
@media (min-width: 640px) {
|
|
6659
6905
|
.sm\:mt-0 {
|
|
6660
6906
|
margin-top: 0px;
|
|
@@ -180,6 +180,30 @@ module.exports = {
|
|
|
180
180
|
fontFamily: "var(--small5-family, 'Poppins')",
|
|
181
181
|
},
|
|
182
182
|
],
|
|
183
|
+
small6: [
|
|
184
|
+
"var(--small5-size, 10px)",
|
|
185
|
+
{
|
|
186
|
+
lineHeight: "var(--small6-line-height, 12px)",
|
|
187
|
+
fontWeight: "var(--small6-weight, 600)",
|
|
188
|
+
fontFamily: "var(--small6-family, 'Poppins')",
|
|
189
|
+
},
|
|
190
|
+
],
|
|
191
|
+
small7: [
|
|
192
|
+
"var(--small7-size, 8px)",
|
|
193
|
+
{
|
|
194
|
+
lineHeight: "var(--small7-line-height, 10px)",
|
|
195
|
+
fontWeight: "var(--small7-weight, 600)",
|
|
196
|
+
fontFamily: "var(--small7-family, 'Poppins')",
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
small8: [
|
|
200
|
+
"var(--small8-size, 8px)",
|
|
201
|
+
{
|
|
202
|
+
lineHeight: "var(--small8-line-height, 10px)",
|
|
203
|
+
fontWeight: "var(--small8-weight, 700)",
|
|
204
|
+
fontFamily: "var(--small8-family, 'Poppins')",
|
|
205
|
+
},
|
|
206
|
+
],
|
|
183
207
|
label1: [
|
|
184
208
|
"var(--label-label1-size, 12px)",
|
|
185
209
|
{
|
|
@@ -65,6 +65,15 @@ module.exports = plugin(function ({ addUtilities }) {
|
|
|
65
65
|
".typography-small5": {
|
|
66
66
|
"@apply text-small5": {},
|
|
67
67
|
},
|
|
68
|
+
".typography-small6": {
|
|
69
|
+
"@apply text-small6": {},
|
|
70
|
+
},
|
|
71
|
+
".typography-small7": {
|
|
72
|
+
"@apply text-small7": {},
|
|
73
|
+
},
|
|
74
|
+
".typography-small8": {
|
|
75
|
+
"@apply text-small8": {},
|
|
76
|
+
},
|
|
68
77
|
".typography-label1": {
|
|
69
78
|
"@apply text-label1": {},
|
|
70
79
|
},
|