@coinloger/dev-ui 0.0.4 → 0.0.6
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 +63 -0
- package/dist/index.d.ts +410 -15
- package/dist/index.js +306 -931
- package/package.json +4 -1
- package/dist/components/Badge/Badge.d.ts +0 -8
- package/dist/components/Badge/Badge.demo.d.ts +0 -1
- package/dist/components/Button/Button.d.ts +0 -7
- package/dist/components/Button/Button.demo.d.ts +0 -1
- package/dist/components/Card/Card.d.ts +0 -8
- package/dist/components/Card/Card.demo.d.ts +0 -1
- package/dist/components/Checkbox/Checkbox.d.ts +0 -9
- package/dist/components/Checkbox/Checkbox.demo.d.ts +0 -1
- package/dist/components/Input/Input.d.ts +0 -11
- package/dist/components/Input/Input.demo.d.ts +0 -1
- package/dist/components/Modal/Modal.d.ts +0 -38
- package/dist/components/Modal/Modal.demo.d.ts +0 -1
- package/dist/components/Radio/Radio.d.ts +0 -9
- package/dist/components/Radio/Radio.demo.d.ts +0 -1
- package/dist/components/Select/Select.d.ts +0 -19
- package/dist/components/Select/Select.demo.d.ts +0 -1
- package/dist/components/Switch/Switch.d.ts +0 -9
- package/dist/components/Switch/Switch.demo.d.ts +0 -1
- package/dist/components/Table/Table.d.ts +0 -10
- package/dist/components/Table/Table.demo.d.ts +0 -1
- package/dist/components/Tabs/Tabs.d.ts +0 -26
- package/dist/components/Tabs/Tabs.demo.d.ts +0 -1
- package/dist/components/Typography/Heading.d.ts +0 -8
- package/dist/components/Typography/Text.d.ts +0 -11
- package/dist/components/Typography/Typography.demo.d.ts +0 -1
- package/dist/default-theme.d.ts +0 -4
- package/dist/theme.d.ts +0 -7
- package/dist/types.d.ts +0 -221
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coinloger/dev-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
|
+
"sideEffects": [
|
|
12
|
+
"**/*.css"
|
|
13
|
+
],
|
|
11
14
|
"exports": {
|
|
12
15
|
".": {
|
|
13
16
|
"import": "./dist/index.js",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
4
|
-
variant?: 'primary' | 'success' | 'warning' | 'danger' | 'neutral';
|
|
5
|
-
size?: 'sm' | 'md' | 'lg';
|
|
6
|
-
shape?: 'rounded' | 'pill';
|
|
7
|
-
}
|
|
8
|
-
export declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function BadgeDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
4
|
-
variant?: 'primary' | 'secondary' | 'outline' | 'danger' | 'success' | 'warning' | 'ghost' | 'outline-danger' | 'outline-success' | 'outline-warning';
|
|
5
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
6
|
-
}
|
|
7
|
-
export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function ButtonDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
interface CardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
4
|
-
title?: React.ReactNode;
|
|
5
|
-
footer?: React.ReactNode;
|
|
6
|
-
}
|
|
7
|
-
export declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function CardDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
4
|
-
label?: React.ReactNode;
|
|
5
|
-
error?: boolean;
|
|
6
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
7
|
-
variant?: 'primary' | 'success' | 'warning' | 'danger';
|
|
8
|
-
}
|
|
9
|
-
export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function CheckboxDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
4
|
-
label?: string;
|
|
5
|
-
error?: boolean;
|
|
6
|
-
helperText?: string;
|
|
7
|
-
fullWidth?: boolean;
|
|
8
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
9
|
-
}
|
|
10
|
-
export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
11
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function InputDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export declare const ModalHeader: ({ children, className }: {
|
|
4
|
-
children: React.ReactNode;
|
|
5
|
-
className?: string;
|
|
6
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export declare const ModalBody: ({ children, className }: {
|
|
8
|
-
children: React.ReactNode;
|
|
9
|
-
className?: string;
|
|
10
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export declare const ModalFooter: ({ children, className }: {
|
|
12
|
-
children: React.ReactNode;
|
|
13
|
-
className?: string;
|
|
14
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
export interface ModalProps {
|
|
16
|
-
isOpen: boolean;
|
|
17
|
-
onClose: () => void;
|
|
18
|
-
title?: React.ReactNode;
|
|
19
|
-
children: React.ReactNode;
|
|
20
|
-
footer?: React.ReactNode;
|
|
21
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
22
|
-
className?: string;
|
|
23
|
-
closeOnBackdropClick?: boolean;
|
|
24
|
-
}
|
|
25
|
-
export declare const Modal: (({ isOpen, onClose, title, children, footer, size, className, closeOnBackdropClick, }: ModalProps) => React.ReactPortal | null) & {
|
|
26
|
-
Header: ({ children, className }: {
|
|
27
|
-
children: React.ReactNode;
|
|
28
|
-
className?: string;
|
|
29
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
Body: ({ children, className }: {
|
|
31
|
-
children: React.ReactNode;
|
|
32
|
-
className?: string;
|
|
33
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
Footer: ({ children, className }: {
|
|
35
|
-
children: React.ReactNode;
|
|
36
|
-
className?: string;
|
|
37
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function ModalDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface RadioProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
4
|
-
label?: React.ReactNode;
|
|
5
|
-
error?: boolean;
|
|
6
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
7
|
-
variant?: 'primary' | 'success' | 'warning' | 'danger';
|
|
8
|
-
}
|
|
9
|
-
export declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function RadioDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
export interface SelectOption {
|
|
3
|
-
value: string | number;
|
|
4
|
-
label: string;
|
|
5
|
-
}
|
|
6
|
-
export interface SelectProps {
|
|
7
|
-
options: SelectOption[];
|
|
8
|
-
value?: string | number;
|
|
9
|
-
onChange?: (value: string | number) => void;
|
|
10
|
-
placeholder?: string;
|
|
11
|
-
label?: string;
|
|
12
|
-
error?: boolean;
|
|
13
|
-
helperText?: string;
|
|
14
|
-
disabled?: boolean;
|
|
15
|
-
fullWidth?: boolean;
|
|
16
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
17
|
-
className?: string;
|
|
18
|
-
}
|
|
19
|
-
export declare const Select: ({ options, value, onChange, placeholder, label, error, helperText, disabled, fullWidth, size, className, }: SelectProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function SelectDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface SwitchProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
4
|
-
label?: React.ReactNode;
|
|
5
|
-
error?: boolean;
|
|
6
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
7
|
-
variant?: 'primary' | 'success' | 'warning' | 'danger';
|
|
8
|
-
}
|
|
9
|
-
export declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function SwitchDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
|
|
4
|
-
bordered?: boolean;
|
|
5
|
-
striped?: boolean;
|
|
6
|
-
hover?: boolean;
|
|
7
|
-
size?: 'sm' | 'md';
|
|
8
|
-
}
|
|
9
|
-
export declare const Table: React.ForwardRefExoticComponent<TableProps & React.RefAttributes<HTMLTableElement>>;
|
|
10
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function TableDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface TabsProps {
|
|
4
|
-
defaultValue?: string;
|
|
5
|
-
value?: string;
|
|
6
|
-
onValueChange?: (value: string) => void;
|
|
7
|
-
children: React.ReactNode;
|
|
8
|
-
className?: string;
|
|
9
|
-
}
|
|
10
|
-
export interface TabsListProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
11
|
-
children: React.ReactNode;
|
|
12
|
-
variant?: 'line' | 'pills';
|
|
13
|
-
}
|
|
14
|
-
export interface TabsTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
15
|
-
value: string;
|
|
16
|
-
children: React.ReactNode;
|
|
17
|
-
}
|
|
18
|
-
export interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
19
|
-
value: string;
|
|
20
|
-
children: React.ReactNode;
|
|
21
|
-
}
|
|
22
|
-
export declare const Tabs: (({ defaultValue, value, onValueChange, children, className }: TabsProps) => import("react/jsx-runtime").JSX.Element) & {
|
|
23
|
-
List: ({ className, children, variant, ...props }: TabsListProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
Trigger: ({ value, className, children, onClick, ...props }: TabsTriggerProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
Content: ({ value, className, children, ...props }: TabsContentProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
26
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function TabsDemo(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {
|
|
4
|
-
level?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
5
|
-
truncate?: boolean;
|
|
6
|
-
lines?: number;
|
|
7
|
-
}
|
|
8
|
-
export declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface TextProps extends React.HTMLAttributes<HTMLElement> {
|
|
4
|
-
variant?: 'body' | 'small' | 'caption' | 'lead';
|
|
5
|
-
weight?: 'normal' | 'medium' | 'semibold' | 'bold';
|
|
6
|
-
muted?: boolean;
|
|
7
|
-
truncate?: boolean;
|
|
8
|
-
lines?: number;
|
|
9
|
-
as?: React.ElementType;
|
|
10
|
-
}
|
|
11
|
-
export declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function TypographyDemo(): import("react/jsx-runtime").JSX.Element;
|
package/dist/default-theme.d.ts
DELETED
package/dist/theme.d.ts
DELETED
package/dist/types.d.ts
DELETED
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
export interface ThemeConfig {
|
|
2
|
-
prefix?: string;
|
|
3
|
-
colors?: {
|
|
4
|
-
primary?: string;
|
|
5
|
-
secondary?: string;
|
|
6
|
-
background?: string;
|
|
7
|
-
text?: string;
|
|
8
|
-
[key: string]: string | undefined;
|
|
9
|
-
};
|
|
10
|
-
typography?: {
|
|
11
|
-
'font-family'?: string;
|
|
12
|
-
'font-size-sm'?: string;
|
|
13
|
-
'font-size-md'?: string;
|
|
14
|
-
'font-size-lg'?: string;
|
|
15
|
-
'font-size-xl'?: string;
|
|
16
|
-
[key: string]: string | undefined;
|
|
17
|
-
};
|
|
18
|
-
spacing?: {
|
|
19
|
-
[key: string]: string;
|
|
20
|
-
};
|
|
21
|
-
radius?: {
|
|
22
|
-
[key: string]: string;
|
|
23
|
-
};
|
|
24
|
-
shadows?: {
|
|
25
|
-
[key: string]: string;
|
|
26
|
-
};
|
|
27
|
-
components?: {
|
|
28
|
-
btn?: {
|
|
29
|
-
[key: string]: string | object | undefined;
|
|
30
|
-
};
|
|
31
|
-
input?: {
|
|
32
|
-
radius?: string;
|
|
33
|
-
bg?: string;
|
|
34
|
-
border?: string;
|
|
35
|
-
color?: string;
|
|
36
|
-
placeholder?: string;
|
|
37
|
-
"focus-border"?: string;
|
|
38
|
-
"focus-ring"?: string;
|
|
39
|
-
"error-border"?: string;
|
|
40
|
-
"error-ring"?: string;
|
|
41
|
-
[key: string]: string | object | undefined;
|
|
42
|
-
};
|
|
43
|
-
select?: {
|
|
44
|
-
radius?: string;
|
|
45
|
-
bg?: string;
|
|
46
|
-
border?: string;
|
|
47
|
-
color?: string;
|
|
48
|
-
placeholder?: string;
|
|
49
|
-
"focus-border"?: string;
|
|
50
|
-
"focus-ring"?: string;
|
|
51
|
-
"error-border"?: string;
|
|
52
|
-
"error-ring"?: string;
|
|
53
|
-
"menu-bg"?: string;
|
|
54
|
-
"menu-border"?: string;
|
|
55
|
-
"menu-shadow"?: string;
|
|
56
|
-
"option-hover-bg"?: string;
|
|
57
|
-
"option-selected-bg"?: string;
|
|
58
|
-
"option-selected-color"?: string;
|
|
59
|
-
[key: string]: string | object | undefined;
|
|
60
|
-
};
|
|
61
|
-
card?: {
|
|
62
|
-
radius?: string;
|
|
63
|
-
shadow?: string;
|
|
64
|
-
bg?: string;
|
|
65
|
-
border?: string;
|
|
66
|
-
padding?: string;
|
|
67
|
-
"header-bg"?: string;
|
|
68
|
-
"header-padding"?: string;
|
|
69
|
-
"header-border"?: string;
|
|
70
|
-
"footer-bg"?: string;
|
|
71
|
-
"footer-padding"?: string;
|
|
72
|
-
"footer-border"?: string;
|
|
73
|
-
[key: string]: string | object | undefined;
|
|
74
|
-
};
|
|
75
|
-
modal?: {
|
|
76
|
-
"radius"?: string;
|
|
77
|
-
"bg"?: string;
|
|
78
|
-
"shadow"?: string;
|
|
79
|
-
"backdrop-bg"?: string;
|
|
80
|
-
"backdrop-blur"?: string;
|
|
81
|
-
"border"?: string;
|
|
82
|
-
"z-index"?: string;
|
|
83
|
-
"header-padding"?: string;
|
|
84
|
-
"body-padding"?: string;
|
|
85
|
-
"footer-padding"?: string;
|
|
86
|
-
"size-sm-width"?: string;
|
|
87
|
-
"size-md-width"?: string;
|
|
88
|
-
"size-lg-width"?: string;
|
|
89
|
-
"size-xl-width"?: string;
|
|
90
|
-
[key: string]: string | object | undefined;
|
|
91
|
-
};
|
|
92
|
-
checkbox?: {
|
|
93
|
-
size?: string;
|
|
94
|
-
radius?: string;
|
|
95
|
-
bg?: string;
|
|
96
|
-
border?: string;
|
|
97
|
-
"checked-bg"?: string;
|
|
98
|
-
"checked-border"?: string;
|
|
99
|
-
"checked-color"?: string;
|
|
100
|
-
"disabled-opacity"?: string;
|
|
101
|
-
"size-sm-size"?: string;
|
|
102
|
-
"size-sm-font-size"?: string;
|
|
103
|
-
"size-md-size"?: string;
|
|
104
|
-
"size-md-font-size"?: string;
|
|
105
|
-
"size-lg-size"?: string;
|
|
106
|
-
"size-lg-font-size"?: string;
|
|
107
|
-
"size-xl-size"?: string;
|
|
108
|
-
"size-xl-font-size"?: string;
|
|
109
|
-
[key: string]: string | object | undefined;
|
|
110
|
-
};
|
|
111
|
-
radio?: {
|
|
112
|
-
size?: string;
|
|
113
|
-
bg?: string;
|
|
114
|
-
border?: string;
|
|
115
|
-
"checked-bg"?: string;
|
|
116
|
-
"checked-border"?: string;
|
|
117
|
-
"checked-color"?: string;
|
|
118
|
-
"disabled-opacity"?: string;
|
|
119
|
-
"size-sm-size"?: string;
|
|
120
|
-
"size-sm-font-size"?: string;
|
|
121
|
-
"size-md-size"?: string;
|
|
122
|
-
"size-md-font-size"?: string;
|
|
123
|
-
"size-lg-size"?: string;
|
|
124
|
-
"size-lg-font-size"?: string;
|
|
125
|
-
"size-xl-size"?: string;
|
|
126
|
-
"size-xl-font-size"?: string;
|
|
127
|
-
[key: string]: string | object | undefined;
|
|
128
|
-
};
|
|
129
|
-
switch?: {
|
|
130
|
-
width?: string;
|
|
131
|
-
height?: string;
|
|
132
|
-
bg?: string;
|
|
133
|
-
"checked-bg"?: string;
|
|
134
|
-
"thumb-size"?: string;
|
|
135
|
-
"thumb-bg"?: string;
|
|
136
|
-
"thumb-shadow"?: string;
|
|
137
|
-
"focus-ring"?: string;
|
|
138
|
-
"disabled-opacity"?: string;
|
|
139
|
-
"size-sm-width"?: string;
|
|
140
|
-
"size-sm-height"?: string;
|
|
141
|
-
"size-sm-thumb-size"?: string;
|
|
142
|
-
"size-md-width"?: string;
|
|
143
|
-
"size-md-height"?: string;
|
|
144
|
-
"size-md-thumb-size"?: string;
|
|
145
|
-
"size-lg-width"?: string;
|
|
146
|
-
"size-lg-height"?: string;
|
|
147
|
-
"size-lg-thumb-size"?: string;
|
|
148
|
-
"size-xl-width"?: string;
|
|
149
|
-
"size-xl-height"?: string;
|
|
150
|
-
"size-xl-thumb-size"?: string;
|
|
151
|
-
[key: string]: string | object | undefined;
|
|
152
|
-
};
|
|
153
|
-
badge?: {
|
|
154
|
-
radius?: string;
|
|
155
|
-
"font-weight"?: string;
|
|
156
|
-
"size-sm-padding"?: string;
|
|
157
|
-
"size-sm-font-size"?: string;
|
|
158
|
-
"size-md-padding"?: string;
|
|
159
|
-
"size-md-font-size"?: string;
|
|
160
|
-
"size-lg-padding"?: string;
|
|
161
|
-
"size-lg-font-size"?: string;
|
|
162
|
-
"primary-bg"?: string;
|
|
163
|
-
"primary-text"?: string;
|
|
164
|
-
"success-bg"?: string;
|
|
165
|
-
"success-text"?: string;
|
|
166
|
-
"warning-bg"?: string;
|
|
167
|
-
"warning-text"?: string;
|
|
168
|
-
"danger-bg"?: string;
|
|
169
|
-
"danger-text"?: string;
|
|
170
|
-
"neutral-bg"?: string;
|
|
171
|
-
"neutral-text"?: string;
|
|
172
|
-
[key: string]: string | object | undefined;
|
|
173
|
-
};
|
|
174
|
-
heading?: {
|
|
175
|
-
"h1-size"?: string;
|
|
176
|
-
"h1-line-height"?: string;
|
|
177
|
-
"h1-weight"?: string;
|
|
178
|
-
"h2-size"?: string;
|
|
179
|
-
"h2-line-height"?: string;
|
|
180
|
-
"h2-weight"?: string;
|
|
181
|
-
"h3-size"?: string;
|
|
182
|
-
"h3-line-height"?: string;
|
|
183
|
-
"h3-weight"?: string;
|
|
184
|
-
"h4-size"?: string;
|
|
185
|
-
"h4-line-height"?: string;
|
|
186
|
-
"h4-weight"?: string;
|
|
187
|
-
"h5-size"?: string;
|
|
188
|
-
"h5-line-height"?: string;
|
|
189
|
-
"h5-weight"?: string;
|
|
190
|
-
"h6-size"?: string;
|
|
191
|
-
"h6-line-height"?: string;
|
|
192
|
-
"h6-weight"?: string;
|
|
193
|
-
[key: string]: string | object | undefined;
|
|
194
|
-
};
|
|
195
|
-
text?: {
|
|
196
|
-
"body-size"?: string;
|
|
197
|
-
"body-line-height"?: string;
|
|
198
|
-
"small-size"?: string;
|
|
199
|
-
"small-line-height"?: string;
|
|
200
|
-
"caption-size"?: string;
|
|
201
|
-
"caption-line-height"?: string;
|
|
202
|
-
"lead-size"?: string;
|
|
203
|
-
"lead-line-height"?: string;
|
|
204
|
-
[key: string]: string | object | undefined;
|
|
205
|
-
};
|
|
206
|
-
tabs?: {
|
|
207
|
-
"border-color"?: string;
|
|
208
|
-
"active-color"?: string;
|
|
209
|
-
"inactive-color"?: string;
|
|
210
|
-
"hover-bg"?: string;
|
|
211
|
-
"trigger-padding"?: string;
|
|
212
|
-
"trigger-weight"?: string;
|
|
213
|
-
"trigger-font-size"?: string;
|
|
214
|
-
"content-padding"?: string;
|
|
215
|
-
[key: string]: string | object | undefined;
|
|
216
|
-
};
|
|
217
|
-
[key: string]: {
|
|
218
|
-
[key: string]: string | object | undefined;
|
|
219
|
-
} | undefined;
|
|
220
|
-
};
|
|
221
|
-
}
|