@luizleon/sf.prefeiturasp.vuecomponents 5.0.16 → 5.0.17

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.
@@ -1,12 +1,360 @@
1
- interface SemanticPreset {
2
- [key: string]: any;
3
- }
4
- interface ComponentPreset {
5
- [key: string]: any;
6
- }
7
1
  declare const _default: {
8
- semantic: SemanticPreset;
9
- components: ComponentPreset;
2
+ semantic: {
3
+ disabled: {
4
+ opacity: string;
5
+ };
6
+ transitionDuration: string;
7
+ primary: {
8
+ 50: string;
9
+ 100: string;
10
+ 200: string;
11
+ 300: string;
12
+ 400: string;
13
+ 500: string;
14
+ 600: string;
15
+ 700: string;
16
+ 800: string;
17
+ 900: string;
18
+ 950: string;
19
+ };
20
+ colorScheme: {
21
+ light: {
22
+ surface: {
23
+ 0: string;
24
+ 50: string;
25
+ 100: string;
26
+ 200: string;
27
+ 300: string;
28
+ 400: string;
29
+ 500: string;
30
+ 600: string;
31
+ 700: string;
32
+ 800: string;
33
+ 900: string;
34
+ 950: string;
35
+ };
36
+ primary: {
37
+ color: string;
38
+ contrastColor: string;
39
+ hoverColor: string;
40
+ activeColor: string;
41
+ };
42
+ highlight: {
43
+ background: string;
44
+ color: string;
45
+ };
46
+ formField: {
47
+ background: string;
48
+ disabledBackground: string;
49
+ filledBackground: string;
50
+ filledFocusBackground: string;
51
+ borderColor: string;
52
+ hoverBorderColor: string;
53
+ focusBorderColor: string;
54
+ invalidBorderColor: string;
55
+ color: string;
56
+ disabledColor: string;
57
+ placeholderColor: string;
58
+ floatLabelColor: string;
59
+ floatLabelFocusColor: string;
60
+ floatLabelInvalidColor: string;
61
+ iconColor: string;
62
+ };
63
+ text: {
64
+ color: string;
65
+ hoverColor: string;
66
+ mutedColor: string;
67
+ hoverMutedColor: string;
68
+ };
69
+ mask: {
70
+ background: string;
71
+ color: string;
72
+ };
73
+ content: {
74
+ background: string;
75
+ color: string;
76
+ border: {
77
+ color: string;
78
+ radius: string;
79
+ };
80
+ hover: {
81
+ background: string;
82
+ color: string;
83
+ };
84
+ };
85
+ };
86
+ dark: {
87
+ surface: {
88
+ 0: string;
89
+ 50: string;
90
+ 100: string;
91
+ 200: string;
92
+ 300: string;
93
+ 400: string;
94
+ 500: string;
95
+ 600: string;
96
+ 700: string;
97
+ 800: string;
98
+ 900: string;
99
+ 950: string;
100
+ };
101
+ primary: {
102
+ color: string;
103
+ contrastColor: string;
104
+ hoverColor: string;
105
+ activeColor: string;
106
+ };
107
+ highlight: {
108
+ background: string;
109
+ color: string;
110
+ };
111
+ formField: {
112
+ background: string;
113
+ disabledBackground: string;
114
+ filledBackground: string;
115
+ filledFocusBackground: string;
116
+ borderColor: string;
117
+ hoverBorderColor: string;
118
+ focusBorderColor: string;
119
+ invalidBorderColor: string;
120
+ color: string;
121
+ disabledColor: string;
122
+ placeholderColor: string;
123
+ floatLabelColor: string;
124
+ floatLabelFocusColor: string;
125
+ floatLabelInvalidColor: string;
126
+ iconColor: string;
127
+ };
128
+ text: {
129
+ color: string;
130
+ hoverColor: string;
131
+ mutedColor: string;
132
+ hoverMutedColor: string;
133
+ };
134
+ mask: {
135
+ background: string;
136
+ color: string;
137
+ };
138
+ content: {
139
+ background: string;
140
+ color: string;
141
+ border: {
142
+ color: string;
143
+ radius: string;
144
+ };
145
+ hover: {
146
+ background: string;
147
+ color: string;
148
+ };
149
+ };
150
+ };
151
+ };
152
+ };
153
+ components: {
154
+ blockui: {
155
+ border: {
156
+ radius: string;
157
+ };
158
+ };
159
+ button: {
160
+ padding: {
161
+ x: string;
162
+ y: string;
163
+ };
164
+ primary: {
165
+ hover: {
166
+ background: string;
167
+ border: {
168
+ color: string;
169
+ };
170
+ };
171
+ };
172
+ text: {
173
+ secondary: {
174
+ color: string;
175
+ hover: {
176
+ background: string;
177
+ };
178
+ };
179
+ };
180
+ icon: {
181
+ only: {
182
+ width: string;
183
+ };
184
+ };
185
+ };
186
+ checkbox: {
187
+ background: string;
188
+ border: {
189
+ color: string;
190
+ };
191
+ checked: {
192
+ background: string;
193
+ hover: {
194
+ background: string;
195
+ };
196
+ };
197
+ sm: {
198
+ width: string;
199
+ height: string;
200
+ };
201
+ lg: {
202
+ width: string;
203
+ height: string;
204
+ };
205
+ };
206
+ datatable: {
207
+ header: {
208
+ border: {
209
+ color: string;
210
+ };
211
+ cell: {
212
+ border: {
213
+ color: string;
214
+ };
215
+ hover: {
216
+ background: string;
217
+ color: string;
218
+ };
219
+ };
220
+ };
221
+ body: {
222
+ cell: {
223
+ border: {
224
+ color: string;
225
+ };
226
+ };
227
+ };
228
+ row: {
229
+ striped: {
230
+ background: string;
231
+ };
232
+ };
233
+ footer: {
234
+ border: {
235
+ color: string;
236
+ };
237
+ };
238
+ };
239
+ datepicker: {
240
+ today: {
241
+ background: string;
242
+ color: string;
243
+ };
244
+ };
245
+ dialog: {
246
+ background: string;
247
+ color: string;
248
+ border: {
249
+ color: string;
250
+ radius: string;
251
+ };
252
+ title: {
253
+ font: {
254
+ size: string;
255
+ weight: string;
256
+ };
257
+ };
258
+ header: {
259
+ padding: string;
260
+ gap: string;
261
+ };
262
+ content: {
263
+ padding: string;
264
+ };
265
+ footer: {
266
+ padding: string;
267
+ gap: string;
268
+ };
269
+ };
270
+ inputtext: {
271
+ background: string;
272
+ color: string;
273
+ border: {
274
+ color: string;
275
+ };
276
+ hover: {
277
+ border: {
278
+ color: string;
279
+ };
280
+ };
281
+ placeholder: {
282
+ color: string;
283
+ };
284
+ };
285
+ inputmask: {
286
+ background: string;
287
+ color: string;
288
+ border: {
289
+ color: string;
290
+ };
291
+ hover: {
292
+ border: {
293
+ color: string;
294
+ };
295
+ };
296
+ placeholder: {
297
+ color: string;
298
+ };
299
+ };
300
+ popover: {
301
+ background: string;
302
+ border: {
303
+ color: string;
304
+ radius: string;
305
+ };
306
+ shadow: string;
307
+ gutter: string;
308
+ content: {
309
+ padding: string;
310
+ };
311
+ arrow: {
312
+ offset: string;
313
+ };
314
+ };
315
+ select: {
316
+ background: string;
317
+ color: string;
318
+ option: {
319
+ focus: {
320
+ background: string;
321
+ color: string;
322
+ };
323
+ selected: {
324
+ focus: {
325
+ background: string;
326
+ color: string;
327
+ };
328
+ };
329
+ };
330
+ overlay: {
331
+ background: string;
332
+ border: {
333
+ color: string;
334
+ };
335
+ };
336
+ dropdown: {
337
+ color: string;
338
+ };
339
+ hover: {
340
+ border: {
341
+ color: string;
342
+ };
343
+ };
344
+ placeholder: {
345
+ color: string;
346
+ };
347
+ disabled: {
348
+ color: string;
349
+ };
350
+ };
351
+ skeleton: {
352
+ background: string;
353
+ animation: {
354
+ background: string;
355
+ };
356
+ };
357
+ };
10
358
  };
11
359
  export default _default;
12
360
  //# sourceMappingURL=preset.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../../../src/primevue/preset.ts"],"names":[],"mappings":"AAkEA,UAAU,cAAc;IACtB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,UAAU,eAAe;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;;;;;AAED,wBAqOE"}
1
+ {"version":3,"file":"preset.d.ts","sourceRoot":"","sources":["../../../src/primevue/preset.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkEA,wBAqOE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luizleon/sf.prefeiturasp.vuecomponents",
3
- "version": "5.0.16",
3
+ "version": "5.0.17",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",