prosperita-dumbo-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 +17 -0
- package/dist/prosperita-dumbo-react.es.js +4222 -0
- package/dist/prosperita-dumbo-react.umd.js +673 -0
- package/dist/style.css +1 -0
- package/dist/types/Components/Button/index.d.ts +16 -0
- package/dist/types/Components/Button/index.d.ts.map +1 -0
- package/dist/types/Components/Button/styles.d.ts +15 -0
- package/dist/types/Components/Button/styles.d.ts.map +1 -0
- package/dist/types/Components/Input/index.d.ts +17 -0
- package/dist/types/Components/Input/index.d.ts.map +1 -0
- package/dist/types/Components/Input/style.d.ts +15 -0
- package/dist/types/Components/Input/style.d.ts.map +1 -0
- package/dist/types/Components/Loading/index.d.ts +9 -0
- package/dist/types/Components/Loading/index.d.ts.map +1 -0
- package/dist/types/Components/Loading/style.d.ts +6 -0
- package/dist/types/Components/Loading/style.d.ts.map +1 -0
- package/dist/types/Components/MenuButton/index.d.ts +17 -0
- package/dist/types/Components/MenuButton/index.d.ts.map +1 -0
- package/dist/types/Components/MenuButton/style.d.ts +12 -0
- package/dist/types/Components/MenuButton/style.d.ts.map +1 -0
- package/dist/types/Components/Modal/index.d.ts +21 -0
- package/dist/types/Components/Modal/index.d.ts.map +1 -0
- package/dist/types/Components/Modal/style.d.ts +14 -0
- package/dist/types/Components/Modal/style.d.ts.map +1 -0
- package/dist/types/Components/checkbox/index.d.ts +15 -0
- package/dist/types/Components/checkbox/index.d.ts.map +1 -0
- package/dist/types/Components/checkbox/style.d.ts +11 -0
- package/dist/types/Components/checkbox/style.d.ts.map +1 -0
- package/dist/types/Icons/IconsInputLabel.d.ts +22 -0
- package/dist/types/Icons/IconsInputLabel.d.ts.map +1 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/theme/Types/BaseTokens.d.ts +45 -0
- package/dist/types/theme/Types/BaseTokens.d.ts.map +1 -0
- package/dist/types/theme/activedTheme.d.ts +7 -0
- package/dist/types/theme/activedTheme.d.ts.map +1 -0
- package/dist/types/theme/contextual/dark.d.ts +313 -0
- package/dist/types/theme/contextual/dark.d.ts.map +1 -0
- package/dist/types/theme/contextual/light.d.ts +313 -0
- package/dist/types/theme/contextual/light.d.ts.map +1 -0
- package/dist/types/theme/contextual.d.ts +157 -0
- package/dist/types/theme/contextual.d.ts.map +1 -0
- package/dist/types/theme/default.d.ts +4 -0
- package/dist/types/theme/default.d.ts.map +1 -0
- package/dist/types/theme/labels/base.d.ts +4 -0
- package/dist/types/theme/labels/base.d.ts.map +1 -0
- package/dist/types/theme/labels/ivipbank.d.ts +4 -0
- package/dist/types/theme/labels/ivipbank.d.ts.map +1 -0
- package/dist/types/theme/labels/prosperita.d.ts +4 -0
- package/dist/types/theme/labels/prosperita.d.ts.map +1 -0
- package/dist/types/theme/labels/selectedLabel.d.ts +3 -0
- package/dist/types/theme/labels/selectedLabel.d.ts.map +1 -0
- package/dist/types/theme/spacing.d.ts +17 -0
- package/dist/types/theme/spacing.d.ts.map +1 -0
- package/dist/types/theme/utils.d.ts +5 -0
- package/dist/types/theme/utils.d.ts.map +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +30 -0
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
import { PalletsType } from "../Types/BaseTokens";
|
|
2
|
+
export declare const getLightTheme: (theme: PalletsType) => {
|
|
3
|
+
background: string;
|
|
4
|
+
backgroundActive: string;
|
|
5
|
+
backgroundHover: string;
|
|
6
|
+
backgroundSelected: string;
|
|
7
|
+
backgroundSelectedHover: string;
|
|
8
|
+
backgroundBrand: string;
|
|
9
|
+
backgroundInverse: string;
|
|
10
|
+
backgroundInverseHover: string;
|
|
11
|
+
layer01: string;
|
|
12
|
+
layer02: string;
|
|
13
|
+
layer03: string;
|
|
14
|
+
layerHover01: string;
|
|
15
|
+
layerHover02: string;
|
|
16
|
+
layerHover03: string;
|
|
17
|
+
layerActive01: string;
|
|
18
|
+
layerActive02: string;
|
|
19
|
+
layerActive03: string;
|
|
20
|
+
layerSelected01: string;
|
|
21
|
+
layerSelected02: string;
|
|
22
|
+
layerSelected03: string;
|
|
23
|
+
layerSelectedHover01: string;
|
|
24
|
+
layerSelectedHover02: string;
|
|
25
|
+
layerSelectedHover03: string;
|
|
26
|
+
layerSelectedInverse: string;
|
|
27
|
+
layerSelectedDisabled: string;
|
|
28
|
+
layerAccent01: string;
|
|
29
|
+
layerAccent02: string;
|
|
30
|
+
layerAccent03: string;
|
|
31
|
+
layerAccentHover01: string;
|
|
32
|
+
layerAccentHover02: string;
|
|
33
|
+
layerAccentHover03: string;
|
|
34
|
+
layerAccentActive01: string;
|
|
35
|
+
layerAccentActive02: string;
|
|
36
|
+
layerAccentActive03: string;
|
|
37
|
+
field01: string;
|
|
38
|
+
field02: string;
|
|
39
|
+
field03: string;
|
|
40
|
+
fieldHover01: string;
|
|
41
|
+
fieldHover02: string;
|
|
42
|
+
fieldHover03: string;
|
|
43
|
+
borderSubtle00: string;
|
|
44
|
+
borderSubtle01: string;
|
|
45
|
+
borderSubtle02: string;
|
|
46
|
+
borderSubtle03: string;
|
|
47
|
+
borderSubtleSelected01: string;
|
|
48
|
+
borderSubtleSelected02: string;
|
|
49
|
+
borderSubtleSelected03: string;
|
|
50
|
+
borderStrong01: string;
|
|
51
|
+
borderStrong02: string;
|
|
52
|
+
borderStrong03: string;
|
|
53
|
+
borderTile01: string;
|
|
54
|
+
borderTile02: string;
|
|
55
|
+
borderTile03: string;
|
|
56
|
+
borderInverse: string;
|
|
57
|
+
borderDisabled: string;
|
|
58
|
+
borderInteractive: string;
|
|
59
|
+
textPrimary: string;
|
|
60
|
+
textSecondary: string;
|
|
61
|
+
textPlaceholder: string;
|
|
62
|
+
textOnColor: string;
|
|
63
|
+
textOnColorDisabled: string;
|
|
64
|
+
textHelper: string;
|
|
65
|
+
textError: string;
|
|
66
|
+
textInverse: string;
|
|
67
|
+
textDisabled: string;
|
|
68
|
+
linkPrimary: string;
|
|
69
|
+
linkPrimaryHover: string;
|
|
70
|
+
linkSecondary: string;
|
|
71
|
+
linkInverse: string;
|
|
72
|
+
linkVisited: string;
|
|
73
|
+
iconPrimary: string;
|
|
74
|
+
iconSecondary: string;
|
|
75
|
+
iconOnColor: string;
|
|
76
|
+
iconOnColorDisabled: string;
|
|
77
|
+
iconInteractive: string;
|
|
78
|
+
iconInverse: string;
|
|
79
|
+
iconDisabled: string;
|
|
80
|
+
supportError: string;
|
|
81
|
+
supportSuccess: string;
|
|
82
|
+
supportWarning: string;
|
|
83
|
+
supportInfo: string;
|
|
84
|
+
supportErrorInverse: string;
|
|
85
|
+
supportSuccessInverse: string;
|
|
86
|
+
supportWarningInverse: string;
|
|
87
|
+
supportInfoInverse: string;
|
|
88
|
+
supportCautionMajor: string;
|
|
89
|
+
supportCautionMinor: string;
|
|
90
|
+
supportUndefined: string;
|
|
91
|
+
focus: string;
|
|
92
|
+
focusInset: string;
|
|
93
|
+
focusInverse: string;
|
|
94
|
+
interactive: string;
|
|
95
|
+
highlight: string;
|
|
96
|
+
toogleOff: string;
|
|
97
|
+
overlay: string;
|
|
98
|
+
skeletonElement: string;
|
|
99
|
+
skeletonBackground: string;
|
|
100
|
+
buttonPrimary: string;
|
|
101
|
+
buttonPrimaryHover: string;
|
|
102
|
+
buttonPrimaryActive: string;
|
|
103
|
+
buttonAccent: string;
|
|
104
|
+
buttonAccentHover: string;
|
|
105
|
+
buttonAccentActive: string;
|
|
106
|
+
buttonSecondary: string;
|
|
107
|
+
buttonSecondaryHover: string;
|
|
108
|
+
buttonSecondaryActive: string;
|
|
109
|
+
buttonTertiary: string;
|
|
110
|
+
buttonTertiaryHover: string;
|
|
111
|
+
buttonTertiaryActive: string;
|
|
112
|
+
buttonDangerPrimary: string;
|
|
113
|
+
buttonDangerSecondary: string;
|
|
114
|
+
buttonDangerHover: string;
|
|
115
|
+
buttonDangerActive: string;
|
|
116
|
+
buttonSeparator: string;
|
|
117
|
+
buttonDisabled: string;
|
|
118
|
+
tagBackgroundPrimary: string;
|
|
119
|
+
tagColorPrimary: string;
|
|
120
|
+
tagHoverPrimary: string;
|
|
121
|
+
tagBackgroundAccent: string;
|
|
122
|
+
tagColorAccent: string;
|
|
123
|
+
tagHoverAccent: string;
|
|
124
|
+
tagBackgroundBlue: string;
|
|
125
|
+
tagColorBlue: string;
|
|
126
|
+
tagHoverBlue: string;
|
|
127
|
+
tagBackgroundGreen: string;
|
|
128
|
+
tagColorGreen: string;
|
|
129
|
+
tagHoverGreen: string;
|
|
130
|
+
tagBackgroundRed: string;
|
|
131
|
+
tagColorRed: string;
|
|
132
|
+
tagHoverRed: string;
|
|
133
|
+
tagBackgroundGray: string;
|
|
134
|
+
tagColorGray: string;
|
|
135
|
+
tagHoverGray: string;
|
|
136
|
+
tagBackgroundCoolGray: string;
|
|
137
|
+
tagColorCoolGray: string;
|
|
138
|
+
tagHoverCoolGray: string;
|
|
139
|
+
tagBackgroundWarmGray: string;
|
|
140
|
+
tagColorWarmGray: string;
|
|
141
|
+
tagHoverWarmGray: string;
|
|
142
|
+
notificationInfoBackground: string;
|
|
143
|
+
notificationInfoBorder: string;
|
|
144
|
+
notificationSuccessBackground: string;
|
|
145
|
+
notificationSuccessBorder: string;
|
|
146
|
+
notificationErrorBackground: string;
|
|
147
|
+
notificationErrorBorder: string;
|
|
148
|
+
notificationWarningBackground: string;
|
|
149
|
+
notificationWarningBorder: string;
|
|
150
|
+
notificationActionHover: string;
|
|
151
|
+
notificationActionTertiaryInverse: string;
|
|
152
|
+
notificationActionTertiaryInverseText: string;
|
|
153
|
+
notificationActionTertiaryInverseHover: string;
|
|
154
|
+
whiteInLightThemes: string;
|
|
155
|
+
blackInLightThemes: string;
|
|
156
|
+
};
|
|
157
|
+
declare const convertedContextualLight: {
|
|
158
|
+
background: string;
|
|
159
|
+
backgroundActive: string;
|
|
160
|
+
backgroundHover: string;
|
|
161
|
+
backgroundSelected: string;
|
|
162
|
+
backgroundSelectedHover: string;
|
|
163
|
+
backgroundBrand: string;
|
|
164
|
+
backgroundInverse: string;
|
|
165
|
+
backgroundInverseHover: string;
|
|
166
|
+
layer01: string;
|
|
167
|
+
layer02: string;
|
|
168
|
+
layer03: string;
|
|
169
|
+
layerHover01: string;
|
|
170
|
+
layerHover02: string;
|
|
171
|
+
layerHover03: string;
|
|
172
|
+
layerActive01: string;
|
|
173
|
+
layerActive02: string;
|
|
174
|
+
layerActive03: string;
|
|
175
|
+
layerSelected01: string;
|
|
176
|
+
layerSelected02: string;
|
|
177
|
+
layerSelected03: string;
|
|
178
|
+
layerSelectedHover01: string;
|
|
179
|
+
layerSelectedHover02: string;
|
|
180
|
+
layerSelectedHover03: string;
|
|
181
|
+
layerSelectedInverse: string;
|
|
182
|
+
layerSelectedDisabled: string;
|
|
183
|
+
layerAccent01: string;
|
|
184
|
+
layerAccent02: string;
|
|
185
|
+
layerAccent03: string;
|
|
186
|
+
layerAccentHover01: string;
|
|
187
|
+
layerAccentHover02: string;
|
|
188
|
+
layerAccentHover03: string;
|
|
189
|
+
layerAccentActive01: string;
|
|
190
|
+
layerAccentActive02: string;
|
|
191
|
+
layerAccentActive03: string;
|
|
192
|
+
field01: string;
|
|
193
|
+
field02: string;
|
|
194
|
+
field03: string;
|
|
195
|
+
fieldHover01: string;
|
|
196
|
+
fieldHover02: string;
|
|
197
|
+
fieldHover03: string;
|
|
198
|
+
borderSubtle00: string;
|
|
199
|
+
borderSubtle01: string;
|
|
200
|
+
borderSubtle02: string;
|
|
201
|
+
borderSubtle03: string;
|
|
202
|
+
borderSubtleSelected01: string;
|
|
203
|
+
borderSubtleSelected02: string;
|
|
204
|
+
borderSubtleSelected03: string;
|
|
205
|
+
borderStrong01: string;
|
|
206
|
+
borderStrong02: string;
|
|
207
|
+
borderStrong03: string;
|
|
208
|
+
borderTile01: string;
|
|
209
|
+
borderTile02: string;
|
|
210
|
+
borderTile03: string;
|
|
211
|
+
borderInverse: string;
|
|
212
|
+
borderDisabled: string;
|
|
213
|
+
borderInteractive: string;
|
|
214
|
+
textPrimary: string;
|
|
215
|
+
textSecondary: string;
|
|
216
|
+
textPlaceholder: string;
|
|
217
|
+
textOnColor: string;
|
|
218
|
+
textOnColorDisabled: string;
|
|
219
|
+
textHelper: string;
|
|
220
|
+
textError: string;
|
|
221
|
+
textInverse: string;
|
|
222
|
+
textDisabled: string;
|
|
223
|
+
linkPrimary: string;
|
|
224
|
+
linkPrimaryHover: string;
|
|
225
|
+
linkSecondary: string;
|
|
226
|
+
linkInverse: string;
|
|
227
|
+
linkVisited: string;
|
|
228
|
+
iconPrimary: string;
|
|
229
|
+
iconSecondary: string;
|
|
230
|
+
iconOnColor: string;
|
|
231
|
+
iconOnColorDisabled: string;
|
|
232
|
+
iconInteractive: string;
|
|
233
|
+
iconInverse: string;
|
|
234
|
+
iconDisabled: string;
|
|
235
|
+
supportError: string;
|
|
236
|
+
supportSuccess: string;
|
|
237
|
+
supportWarning: string;
|
|
238
|
+
supportInfo: string;
|
|
239
|
+
supportErrorInverse: string;
|
|
240
|
+
supportSuccessInverse: string;
|
|
241
|
+
supportWarningInverse: string;
|
|
242
|
+
supportInfoInverse: string;
|
|
243
|
+
supportCautionMajor: string;
|
|
244
|
+
supportCautionMinor: string;
|
|
245
|
+
supportUndefined: string;
|
|
246
|
+
focus: string;
|
|
247
|
+
focusInset: string;
|
|
248
|
+
focusInverse: string;
|
|
249
|
+
interactive: string;
|
|
250
|
+
highlight: string;
|
|
251
|
+
toogleOff: string;
|
|
252
|
+
overlay: string;
|
|
253
|
+
skeletonElement: string;
|
|
254
|
+
skeletonBackground: string;
|
|
255
|
+
buttonPrimary: string;
|
|
256
|
+
buttonPrimaryHover: string;
|
|
257
|
+
buttonPrimaryActive: string;
|
|
258
|
+
buttonAccent: string;
|
|
259
|
+
buttonAccentHover: string;
|
|
260
|
+
buttonAccentActive: string;
|
|
261
|
+
buttonSecondary: string;
|
|
262
|
+
buttonSecondaryHover: string;
|
|
263
|
+
buttonSecondaryActive: string;
|
|
264
|
+
buttonTertiary: string;
|
|
265
|
+
buttonTertiaryHover: string;
|
|
266
|
+
buttonTertiaryActive: string;
|
|
267
|
+
buttonDangerPrimary: string;
|
|
268
|
+
buttonDangerSecondary: string;
|
|
269
|
+
buttonDangerHover: string;
|
|
270
|
+
buttonDangerActive: string;
|
|
271
|
+
buttonSeparator: string;
|
|
272
|
+
buttonDisabled: string;
|
|
273
|
+
tagBackgroundPrimary: string;
|
|
274
|
+
tagColorPrimary: string;
|
|
275
|
+
tagHoverPrimary: string;
|
|
276
|
+
tagBackgroundAccent: string;
|
|
277
|
+
tagColorAccent: string;
|
|
278
|
+
tagHoverAccent: string;
|
|
279
|
+
tagBackgroundBlue: string;
|
|
280
|
+
tagColorBlue: string;
|
|
281
|
+
tagHoverBlue: string;
|
|
282
|
+
tagBackgroundGreen: string;
|
|
283
|
+
tagColorGreen: string;
|
|
284
|
+
tagHoverGreen: string;
|
|
285
|
+
tagBackgroundRed: string;
|
|
286
|
+
tagColorRed: string;
|
|
287
|
+
tagHoverRed: string;
|
|
288
|
+
tagBackgroundGray: string;
|
|
289
|
+
tagColorGray: string;
|
|
290
|
+
tagHoverGray: string;
|
|
291
|
+
tagBackgroundCoolGray: string;
|
|
292
|
+
tagColorCoolGray: string;
|
|
293
|
+
tagHoverCoolGray: string;
|
|
294
|
+
tagBackgroundWarmGray: string;
|
|
295
|
+
tagColorWarmGray: string;
|
|
296
|
+
tagHoverWarmGray: string;
|
|
297
|
+
notificationInfoBackground: string;
|
|
298
|
+
notificationInfoBorder: string;
|
|
299
|
+
notificationSuccessBackground: string;
|
|
300
|
+
notificationSuccessBorder: string;
|
|
301
|
+
notificationErrorBackground: string;
|
|
302
|
+
notificationErrorBorder: string;
|
|
303
|
+
notificationWarningBackground: string;
|
|
304
|
+
notificationWarningBorder: string;
|
|
305
|
+
notificationActionHover: string;
|
|
306
|
+
notificationActionTertiaryInverse: string;
|
|
307
|
+
notificationActionTertiaryInverseText: string;
|
|
308
|
+
notificationActionTertiaryInverseHover: string;
|
|
309
|
+
whiteInLightThemes: string;
|
|
310
|
+
blackInLightThemes: string;
|
|
311
|
+
};
|
|
312
|
+
export default convertedContextualLight;
|
|
313
|
+
//# sourceMappingURL=light.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"light.d.ts","sourceRoot":"","sources":["../../../../src/theme/contextual/light.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AA+OlD,eAAO,MAAM,aAAa,UAAW,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAE/C,CAAC;AAEF,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAC;AAE/D,eAAe,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
declare const theme: {
|
|
2
|
+
background: string;
|
|
3
|
+
backgroundActive: string;
|
|
4
|
+
backgroundHover: string;
|
|
5
|
+
backgroundSelected: string;
|
|
6
|
+
backgroundSelectedHover: string;
|
|
7
|
+
backgroundBrand: string;
|
|
8
|
+
backgroundInverse: string;
|
|
9
|
+
backgroundInverseHover: string;
|
|
10
|
+
layer01: string;
|
|
11
|
+
layer02: string;
|
|
12
|
+
layer03: string;
|
|
13
|
+
layerHover01: string;
|
|
14
|
+
layerHover02: string;
|
|
15
|
+
layerHover03: string;
|
|
16
|
+
layerActive01: string;
|
|
17
|
+
layerActive02: string;
|
|
18
|
+
layerActive03: string;
|
|
19
|
+
layerSelected01: string;
|
|
20
|
+
layerSelected02: string;
|
|
21
|
+
layerSelected03: string;
|
|
22
|
+
layerSelectedHover01: string;
|
|
23
|
+
layerSelectedHover02: string;
|
|
24
|
+
layerSelectedHover03: string;
|
|
25
|
+
layerSelectedInverse: string;
|
|
26
|
+
layerSelectedDisabled: string;
|
|
27
|
+
layerAccent01: string;
|
|
28
|
+
layerAccent02: string;
|
|
29
|
+
layerAccent03: string;
|
|
30
|
+
layerAccentHover01: string;
|
|
31
|
+
layerAccentHover02: string;
|
|
32
|
+
layerAccentHover03: string;
|
|
33
|
+
layerAccentActive01: string;
|
|
34
|
+
layerAccentActive02: string;
|
|
35
|
+
layerAccentActive03: string;
|
|
36
|
+
field01: string;
|
|
37
|
+
field02: string;
|
|
38
|
+
field03: string;
|
|
39
|
+
fieldHover01: string;
|
|
40
|
+
fieldHover02: string;
|
|
41
|
+
fieldHover03: string;
|
|
42
|
+
borderSubtle00: string;
|
|
43
|
+
borderSubtle01: string;
|
|
44
|
+
borderSubtle02: string;
|
|
45
|
+
borderSubtle03: string;
|
|
46
|
+
borderSubtleSelected01: string;
|
|
47
|
+
borderSubtleSelected02: string;
|
|
48
|
+
borderSubtleSelected03: string;
|
|
49
|
+
borderStrong01: string;
|
|
50
|
+
borderStrong02: string;
|
|
51
|
+
borderStrong03: string;
|
|
52
|
+
borderTile01: string;
|
|
53
|
+
borderTile02: string;
|
|
54
|
+
borderTile03: string;
|
|
55
|
+
borderInverse: string;
|
|
56
|
+
borderDisabled: string;
|
|
57
|
+
borderInteractive: string;
|
|
58
|
+
textPrimary: string;
|
|
59
|
+
textSecondary: string;
|
|
60
|
+
textPlaceholder: string;
|
|
61
|
+
textOnColor: string;
|
|
62
|
+
textOnColorDisabled: string;
|
|
63
|
+
textHelper: string;
|
|
64
|
+
textError: string;
|
|
65
|
+
textInverse: string;
|
|
66
|
+
textDisabled: string;
|
|
67
|
+
linkPrimary: string;
|
|
68
|
+
linkPrimaryHover: string;
|
|
69
|
+
linkSecondary: string;
|
|
70
|
+
linkInverse: string;
|
|
71
|
+
linkVisited: string;
|
|
72
|
+
iconPrimary: string;
|
|
73
|
+
iconSecondary: string;
|
|
74
|
+
iconOnColor: string;
|
|
75
|
+
iconOnColorDisabled: string;
|
|
76
|
+
iconInteractive: string;
|
|
77
|
+
iconInverse: string;
|
|
78
|
+
iconDisabled: string;
|
|
79
|
+
supportError: string;
|
|
80
|
+
supportSuccess: string;
|
|
81
|
+
supportWarning: string;
|
|
82
|
+
supportInfo: string;
|
|
83
|
+
supportErrorInverse: string;
|
|
84
|
+
supportSuccessInverse: string;
|
|
85
|
+
supportWarningInverse: string;
|
|
86
|
+
supportInfoInverse: string;
|
|
87
|
+
supportCautionMajor: string;
|
|
88
|
+
supportCautionMinor: string;
|
|
89
|
+
supportUndefined: string;
|
|
90
|
+
focus: string;
|
|
91
|
+
focusInset: string;
|
|
92
|
+
focusInverse: string;
|
|
93
|
+
interactive: string;
|
|
94
|
+
highlight: string;
|
|
95
|
+
toogleOff: string;
|
|
96
|
+
overlay: string;
|
|
97
|
+
skeletonElement: string;
|
|
98
|
+
skeletonBackground: string;
|
|
99
|
+
buttonPrimary: string;
|
|
100
|
+
buttonPrimaryHover: string;
|
|
101
|
+
buttonPrimaryActive: string;
|
|
102
|
+
buttonAccent: string;
|
|
103
|
+
buttonAccentHover: string;
|
|
104
|
+
buttonAccentActive: string;
|
|
105
|
+
buttonSecondary: string;
|
|
106
|
+
buttonSecondaryHover: string;
|
|
107
|
+
buttonSecondaryActive: string;
|
|
108
|
+
buttonTertiary: string;
|
|
109
|
+
buttonTertiaryHover: string;
|
|
110
|
+
buttonTertiaryActive: string;
|
|
111
|
+
buttonDangerPrimary: string;
|
|
112
|
+
buttonDangerSecondary: string;
|
|
113
|
+
buttonDangerHover: string;
|
|
114
|
+
buttonDangerActive: string;
|
|
115
|
+
buttonSeparator: string;
|
|
116
|
+
buttonDisabled: string;
|
|
117
|
+
tagBackgroundPrimary: string;
|
|
118
|
+
tagColorPrimary: string;
|
|
119
|
+
tagHoverPrimary: string;
|
|
120
|
+
tagBackgroundAccent: string;
|
|
121
|
+
tagColorAccent: string;
|
|
122
|
+
tagHoverAccent: string;
|
|
123
|
+
tagBackgroundBlue: string;
|
|
124
|
+
tagColorBlue: string;
|
|
125
|
+
tagHoverBlue: string;
|
|
126
|
+
tagBackgroundGreen: string;
|
|
127
|
+
tagColorGreen: string;
|
|
128
|
+
tagHoverGreen: string;
|
|
129
|
+
tagBackgroundRed: string;
|
|
130
|
+
tagColorRed: string;
|
|
131
|
+
tagHoverRed: string;
|
|
132
|
+
tagBackgroundGray: string;
|
|
133
|
+
tagColorGray: string;
|
|
134
|
+
tagHoverGray: string;
|
|
135
|
+
tagBackgroundCoolGray: string;
|
|
136
|
+
tagColorCoolGray: string;
|
|
137
|
+
tagHoverCoolGray: string;
|
|
138
|
+
tagBackgroundWarmGray: string;
|
|
139
|
+
tagColorWarmGray: string;
|
|
140
|
+
tagHoverWarmGray: string;
|
|
141
|
+
notificationInfoBackground: string;
|
|
142
|
+
notificationInfoBorder: string;
|
|
143
|
+
notificationSuccessBackground: string;
|
|
144
|
+
notificationSuccessBorder: string;
|
|
145
|
+
notificationErrorBackground: string;
|
|
146
|
+
notificationErrorBorder: string;
|
|
147
|
+
notificationWarningBackground: string;
|
|
148
|
+
notificationWarningBorder: string;
|
|
149
|
+
notificationActionHover: string;
|
|
150
|
+
notificationActionTertiaryInverse: string;
|
|
151
|
+
notificationActionTertiaryInverseText: string;
|
|
152
|
+
notificationActionTertiaryInverseHover: string;
|
|
153
|
+
whiteInLightThemes: string;
|
|
154
|
+
blackInLightThemes: string;
|
|
155
|
+
};
|
|
156
|
+
export default theme;
|
|
157
|
+
//# sourceMappingURL=contextual.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contextual.d.ts","sourceRoot":"","sources":["../../../src/theme/contextual.ts"],"names":[],"mappings":"AAkBA,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAuB,CAAC;AAMnC,eAAe,KAAK,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../../src/theme/default.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAGjD,QAAA,MAAM,aAAa,EAAE,WAA8B,CAAC;AAEpD,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../src/theme/labels/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,WA8bjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ivipbank.d.ts","sourceRoot":"","sources":["../../../../src/theme/labels/ivipbank.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGpD,QAAA,MAAM,cAAc,EAAE,WAyDrB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prosperita.d.ts","sourceRoot":"","sources":["../../../../src/theme/labels/prosperita.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,QAAA,MAAM,gBAAgB,EAAE,WAyDvB,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectedLabel.d.ts","sourceRoot":"","sources":["../../../../src/theme/labels/selectedLabel.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,aAAa,eAAe,CAAC;AAEnC,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const spacing: {
|
|
2
|
+
"spacing-01": number;
|
|
3
|
+
"spacing-02": number;
|
|
4
|
+
"spacing-03": number;
|
|
5
|
+
"spacing-04": number;
|
|
6
|
+
"spacing-05": number;
|
|
7
|
+
"spacing-06": number;
|
|
8
|
+
"spacing-07": number;
|
|
9
|
+
"spacing-08": number;
|
|
10
|
+
"spacing-09": number;
|
|
11
|
+
"spacing-10": number;
|
|
12
|
+
"spacing-11": number;
|
|
13
|
+
"spacing-12": number;
|
|
14
|
+
"spacing-13": number;
|
|
15
|
+
};
|
|
16
|
+
export default spacing;
|
|
17
|
+
//# sourceMappingURL=spacing.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spacing.d.ts","sourceRoot":"","sources":["../../../src/theme/spacing.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;CAcZ,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const adjustBrightness: (hex: string, percent: number) => string;
|
|
2
|
+
export declare const getRandomColor: () => string;
|
|
3
|
+
export declare const getContrastColor: (hex: string) => "#000000" | "#FFFFFF";
|
|
4
|
+
export declare const getColorOfLetter: (letter: string) => string;
|
|
5
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/theme/utils.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,QAAS,MAAM,WAAW,MAAM,WAmB5D,CAAC;AAEF,eAAO,MAAM,cAAc,cAK1B,CAAC;AAEF,eAAO,MAAM,gBAAgB,QAAS,MAAM,0BAQ3C,CAAC;AAEF,eAAO,MAAM,gBAAgB,WAAY,MAAM,WAyB9C,CAAC"}
|
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "prosperita-dumbo-react",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"main": "dist/prosperita-dumbo-react.umd.js",
|
|
5
|
+
"module": "dist/prosperita-dumbo-react.es.js",
|
|
6
|
+
"types": "dist/types/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "vite build && tsc"
|
|
12
|
+
},
|
|
13
|
+
"peerDependencies": {
|
|
14
|
+
"react": "^18.3.1",
|
|
15
|
+
"react-dom": "^18.3.1"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@types/node": "^22.0.0",
|
|
19
|
+
"@types/react": "^18.3.3",
|
|
20
|
+
"@types/react-dom": "^18.3.0",
|
|
21
|
+
"@vitejs/plugin-react": "^3.0.0",
|
|
22
|
+
"typescript": "^4.0.0",
|
|
23
|
+
"vite": "^4.0.0"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@fontsource/ibm-plex-sans": "^5.0.20",
|
|
27
|
+
"react-loading-skeleton": "^3.4.0",
|
|
28
|
+
"styled-components": "^6.1.12"
|
|
29
|
+
}
|
|
30
|
+
}
|