@particle-network/ui-react 0.0.1
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 +23 -0
- package/dist/components/ProgressWrapper/index.d.ts +34 -0
- package/dist/components/ProgressWrapper/index.js +102 -0
- package/dist/components/UXButton/button-group-context.d.ts +2 -0
- package/dist/components/UXButton/button-group-context.js +6 -0
- package/dist/components/UXButton/button-group.d.ts +4 -0
- package/dist/components/UXButton/button-group.js +22 -0
- package/dist/components/UXButton/button-theme.d.ts +236 -0
- package/dist/components/UXButton/button-theme.js +626 -0
- package/dist/components/UXButton/button.d.ts +4 -0
- package/dist/components/UXButton/button.js +31 -0
- package/dist/components/UXButton/index.d.ts +8 -0
- package/dist/components/UXButton/index.js +6 -0
- package/dist/components/UXButton/use-button-group.d.ts +37 -0
- package/dist/components/UXButton/use-button-group.js +55 -0
- package/dist/components/UXButton/use-button.d.ts +65 -0
- package/dist/components/UXButton/use-button.js +136 -0
- package/dist/components/UXCheckbox/checkbox.extend.d.ts +7 -0
- package/dist/components/UXCheckbox/checkbox.extend.js +151 -0
- package/dist/components/UXCheckbox/checkbox.icon.d.ts +6 -0
- package/dist/components/UXCheckbox/checkbox.icon.js +46 -0
- package/dist/components/UXCheckbox/index.d.ts +10 -0
- package/dist/components/UXCheckbox/index.js +17 -0
- package/dist/components/UXChip/chip.extend.d.ts +299 -0
- package/dist/components/UXChip/chip.extend.js +236 -0
- package/dist/components/UXChip/index.d.ts +302 -0
- package/dist/components/UXChip/index.js +10 -0
- package/dist/components/UXDivider/divider.extend.d.ts +286 -0
- package/dist/components/UXDivider/divider.extend.js +15 -0
- package/dist/components/UXDivider/index.d.ts +4 -0
- package/dist/components/UXDivider/index.js +10 -0
- package/dist/components/UXDropdown/dropdown-item.d.ts +3 -0
- package/dist/components/UXDropdown/dropdown-item.js +306 -0
- package/dist/components/UXDropdown/dropdown-menu.d.ts +3 -0
- package/dist/components/UXDropdown/dropdown-menu.js +25 -0
- package/dist/components/UXDropdown/dropdown-section.d.ts +1 -0
- package/dist/components/UXDropdown/dropdown-section.js +2 -0
- package/dist/components/UXDropdown/dropdown.d.ts +4 -0
- package/dist/components/UXDropdown/dropdown.js +21 -0
- package/dist/components/UXDropdown/index.d.ts +6 -0
- package/dist/components/UXDropdown/index.js +6 -0
- package/dist/components/UXHint/index.d.ts +8 -0
- package/dist/components/UXHint/index.js +22 -0
- package/dist/components/UXInput/index.d.ts +346 -0
- package/dist/components/UXInput/index.js +10 -0
- package/dist/components/UXInput/input.extend.d.ts +343 -0
- package/dist/components/UXInput/input.extend.js +6 -0
- package/dist/components/UXModal/index.d.ts +10 -0
- package/dist/components/UXModal/index.js +89 -0
- package/dist/components/UXNumberInput/index.d.ts +5 -0
- package/dist/components/UXNumberInput/index.js +10 -0
- package/dist/components/UXNumberInput/number-input.extend.d.ts +8 -0
- package/dist/components/UXNumberInput/number-input.extend.js +6 -0
- package/dist/components/UXPopover/index.d.ts +6 -0
- package/dist/components/UXPopover/index.js +10 -0
- package/dist/components/UXPopover/popover.extend.d.ts +7 -0
- package/dist/components/UXPopover/popover.extend.js +26 -0
- package/dist/components/UXRadio/index.d.ts +10 -0
- package/dist/components/UXRadio/index.js +12 -0
- package/dist/components/UXRadio/radio.extend.d.ts +7 -0
- package/dist/components/UXRadio/radio.extend.js +97 -0
- package/dist/components/UXSelect/index.d.ts +6 -0
- package/dist/components/UXSelect/index.js +51 -0
- package/dist/components/UXSwitch/index.d.ts +331 -0
- package/dist/components/UXSwitch/index.js +10 -0
- package/dist/components/UXSwitch/switch.extend.d.ts +328 -0
- package/dist/components/UXSwitch/switch.extend.js +117 -0
- package/dist/components/UXTabs/index.d.ts +9 -0
- package/dist/components/UXTabs/index.js +11 -0
- package/dist/components/UXTabs/tabs.classes.d.ts +210 -0
- package/dist/components/UXTabs/tabs.classes.js +530 -0
- package/dist/components/UXTabs/tabs.extend.d.ts +8 -0
- package/dist/components/UXTabs/tabs.extend.js +6 -0
- package/dist/components/UXTooltip/index.d.ts +5 -0
- package/dist/components/UXTooltip/index.js +23 -0
- package/dist/components/UXTooltip/tooltip.extend.d.ts +314 -0
- package/dist/components/UXTooltip/tooltip.extend.js +27 -0
- package/dist/components/index.d.ts +44 -0
- package/dist/components/index.js +31 -0
- package/dist/components/layout/Center.d.ts +4 -0
- package/dist/components/layout/Center.js +11 -0
- package/dist/components/layout/Circle.d.ts +6 -0
- package/dist/components/layout/Circle.js +12 -0
- package/dist/components/layout/Flex.d.ts +29 -0
- package/dist/components/layout/Flex.js +24 -0
- package/dist/components/layout/HStack.d.ts +4 -0
- package/dist/components/layout/HStack.js +12 -0
- package/dist/components/layout/Square.d.ts +8 -0
- package/dist/components/layout/Square.js +13 -0
- package/dist/components/layout/VStack.d.ts +4 -0
- package/dist/components/layout/VStack.js +12 -0
- package/dist/components/typography/Text.d.ts +3 -0
- package/dist/components/typography/Text.js +12 -0
- package/dist/components/typography/Text.type.d.ts +103 -0
- package/dist/components/typography/Text.type.js +47 -0
- package/dist/icons/index.d.ts +6 -0
- package/dist/icons/index.js +58 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/utils/classes.d.ts +35 -0
- package/dist/utils/classes.js +87 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +4 -0
- package/dist/utils/input-classes.d.ts +427 -0
- package/dist/utils/input-classes.js +568 -0
- package/dist/utils/variants.d.ts +91 -0
- package/dist/utils/variants.js +100 -0
- package/package.json +42 -0
- package/tailwind-preset.js +298 -0
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
export declare const tabsClasses: {
|
|
2
|
+
variants: {
|
|
3
|
+
variant: {
|
|
4
|
+
solid: {
|
|
5
|
+
tabList: string;
|
|
6
|
+
tab: string;
|
|
7
|
+
cursor: string;
|
|
8
|
+
tabContent: string;
|
|
9
|
+
};
|
|
10
|
+
switch: {
|
|
11
|
+
tabList: string;
|
|
12
|
+
tab: string;
|
|
13
|
+
cursor: string;
|
|
14
|
+
tabContent: string;
|
|
15
|
+
};
|
|
16
|
+
light: {
|
|
17
|
+
tabList: string;
|
|
18
|
+
tab: string;
|
|
19
|
+
cursor: string;
|
|
20
|
+
tabContent: string;
|
|
21
|
+
};
|
|
22
|
+
text: {
|
|
23
|
+
tabList: string;
|
|
24
|
+
tab: string;
|
|
25
|
+
tabContent: string;
|
|
26
|
+
cursor: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
size: {
|
|
30
|
+
sm: {};
|
|
31
|
+
md: {};
|
|
32
|
+
lg: {};
|
|
33
|
+
};
|
|
34
|
+
color: {
|
|
35
|
+
default: {};
|
|
36
|
+
primary: {};
|
|
37
|
+
secondary: {};
|
|
38
|
+
success: {};
|
|
39
|
+
alert: {};
|
|
40
|
+
warning: {};
|
|
41
|
+
danger: {};
|
|
42
|
+
bullish: {};
|
|
43
|
+
bearish: {};
|
|
44
|
+
};
|
|
45
|
+
radius: {
|
|
46
|
+
none: {
|
|
47
|
+
tabList: string;
|
|
48
|
+
tab: string;
|
|
49
|
+
cursor: string;
|
|
50
|
+
};
|
|
51
|
+
sm: {
|
|
52
|
+
tabList: string;
|
|
53
|
+
tab: string;
|
|
54
|
+
cursor: string;
|
|
55
|
+
};
|
|
56
|
+
md: {
|
|
57
|
+
tabList: string;
|
|
58
|
+
tab: string;
|
|
59
|
+
cursor: string;
|
|
60
|
+
};
|
|
61
|
+
lg: {
|
|
62
|
+
tabList: string;
|
|
63
|
+
tab: string;
|
|
64
|
+
cursor: string;
|
|
65
|
+
};
|
|
66
|
+
full: {
|
|
67
|
+
tabList: string;
|
|
68
|
+
tab: string;
|
|
69
|
+
cursor: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
fullWidth: {
|
|
73
|
+
true: {
|
|
74
|
+
base: string;
|
|
75
|
+
tabList: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
isDisabled: {
|
|
79
|
+
true: {
|
|
80
|
+
tabList: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
disableAnimation: {
|
|
84
|
+
true: {
|
|
85
|
+
tab: string;
|
|
86
|
+
tabContent: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
placement: {
|
|
90
|
+
top: {
|
|
91
|
+
panel: string;
|
|
92
|
+
};
|
|
93
|
+
start: {
|
|
94
|
+
tabList: string;
|
|
95
|
+
panel: string;
|
|
96
|
+
tabWrapper: string;
|
|
97
|
+
};
|
|
98
|
+
end: {
|
|
99
|
+
tabList: string;
|
|
100
|
+
panel: string;
|
|
101
|
+
tabWrapper: string;
|
|
102
|
+
};
|
|
103
|
+
bottom: {
|
|
104
|
+
tabWrapper: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
defaultVariants: {
|
|
109
|
+
color: string;
|
|
110
|
+
variant: string;
|
|
111
|
+
size: string;
|
|
112
|
+
fullWidth: boolean;
|
|
113
|
+
isDisabled: boolean;
|
|
114
|
+
placement: string;
|
|
115
|
+
};
|
|
116
|
+
compoundVariants: ({
|
|
117
|
+
variant: string[];
|
|
118
|
+
size: string;
|
|
119
|
+
class: {
|
|
120
|
+
tabList: string;
|
|
121
|
+
tab: string;
|
|
122
|
+
cursor?: undefined;
|
|
123
|
+
tabContent?: undefined;
|
|
124
|
+
};
|
|
125
|
+
color?: undefined;
|
|
126
|
+
disableAnimation?: undefined;
|
|
127
|
+
} | {
|
|
128
|
+
variant: string[];
|
|
129
|
+
size: string;
|
|
130
|
+
class: {
|
|
131
|
+
tabList: string;
|
|
132
|
+
tab: string;
|
|
133
|
+
cursor: string;
|
|
134
|
+
tabContent?: undefined;
|
|
135
|
+
};
|
|
136
|
+
color?: undefined;
|
|
137
|
+
disableAnimation?: undefined;
|
|
138
|
+
} | {
|
|
139
|
+
variant: string[];
|
|
140
|
+
color: string;
|
|
141
|
+
class: {
|
|
142
|
+
cursor: string[];
|
|
143
|
+
tabContent: string;
|
|
144
|
+
tabList?: undefined;
|
|
145
|
+
tab?: undefined;
|
|
146
|
+
};
|
|
147
|
+
size?: undefined;
|
|
148
|
+
disableAnimation?: undefined;
|
|
149
|
+
} | {
|
|
150
|
+
variant: string[];
|
|
151
|
+
color: string;
|
|
152
|
+
class: {
|
|
153
|
+
cursor: string;
|
|
154
|
+
tabContent: string;
|
|
155
|
+
tabList?: undefined;
|
|
156
|
+
tab?: undefined;
|
|
157
|
+
};
|
|
158
|
+
size?: undefined;
|
|
159
|
+
disableAnimation?: undefined;
|
|
160
|
+
} | {
|
|
161
|
+
variant: string;
|
|
162
|
+
color: string;
|
|
163
|
+
class: {
|
|
164
|
+
tabContent: string;
|
|
165
|
+
tabList?: undefined;
|
|
166
|
+
tab?: undefined;
|
|
167
|
+
cursor?: undefined;
|
|
168
|
+
};
|
|
169
|
+
size?: undefined;
|
|
170
|
+
disableAnimation?: undefined;
|
|
171
|
+
} | {
|
|
172
|
+
disableAnimation: boolean;
|
|
173
|
+
variant: string;
|
|
174
|
+
class: {
|
|
175
|
+
tab: string[];
|
|
176
|
+
tabList?: undefined;
|
|
177
|
+
cursor?: undefined;
|
|
178
|
+
tabContent?: undefined;
|
|
179
|
+
};
|
|
180
|
+
size?: undefined;
|
|
181
|
+
color?: undefined;
|
|
182
|
+
} | {
|
|
183
|
+
disableAnimation: boolean;
|
|
184
|
+
color: string;
|
|
185
|
+
variant: string[];
|
|
186
|
+
class: {
|
|
187
|
+
tab: string;
|
|
188
|
+
tabList?: undefined;
|
|
189
|
+
cursor?: undefined;
|
|
190
|
+
tabContent?: undefined;
|
|
191
|
+
};
|
|
192
|
+
size?: undefined;
|
|
193
|
+
} | {
|
|
194
|
+
disableAnimation: boolean;
|
|
195
|
+
color: string;
|
|
196
|
+
variant: string;
|
|
197
|
+
class: {
|
|
198
|
+
tab: string;
|
|
199
|
+
tabList?: undefined;
|
|
200
|
+
cursor?: undefined;
|
|
201
|
+
tabContent?: undefined;
|
|
202
|
+
};
|
|
203
|
+
size?: undefined;
|
|
204
|
+
})[];
|
|
205
|
+
compoundSlots: {
|
|
206
|
+
variant: string;
|
|
207
|
+
slots: string[];
|
|
208
|
+
class: string[];
|
|
209
|
+
}[];
|
|
210
|
+
};
|