@bitrix24/b24ui-nuxt 0.5.7 → 0.5.8
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/.nuxt/b24ui/radio-group.ts +223 -15
- package/dist/meta.cjs +83 -3
- package/dist/meta.d.cts +83 -3
- package/dist/meta.d.mts +83 -3
- package/dist/meta.d.ts +83 -3
- package/dist/meta.mjs +83 -3
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/DropdownMenuContent.vue +4 -2
- package/dist/runtime/components/InputMenu.vue +2 -1
- package/dist/runtime/components/InputNumber.vue +2 -2
- package/dist/runtime/components/RadioGroup.vue +16 -5
- package/dist/runtime/components/SelectMenu.vue +1 -1
- package/dist/shared/{b24ui-nuxt.BsnG7poi.cjs → b24ui-nuxt.B9fPD5yO.cjs} +202 -2
- package/dist/shared/{b24ui-nuxt.CMCKw62O.mjs → b24ui-nuxt.DBFS6LH7.mjs} +202 -2
- package/dist/unplugin.cjs +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +3 -3
|
@@ -9,11 +9,23 @@ const color = [
|
|
|
9
9
|
"ai"
|
|
10
10
|
] as const
|
|
11
11
|
|
|
12
|
+
const variant = [
|
|
13
|
+
"list",
|
|
14
|
+
"card",
|
|
15
|
+
"table"
|
|
16
|
+
] as const
|
|
17
|
+
|
|
12
18
|
const orientation = [
|
|
13
19
|
"horizontal",
|
|
14
20
|
"vertical"
|
|
15
21
|
] as const
|
|
16
22
|
|
|
23
|
+
const indicator = [
|
|
24
|
+
"start",
|
|
25
|
+
"end",
|
|
26
|
+
"hidden"
|
|
27
|
+
] as const
|
|
28
|
+
|
|
17
29
|
const size = [
|
|
18
30
|
"xs",
|
|
19
31
|
"sm",
|
|
@@ -28,9 +40,9 @@ export default {
|
|
|
28
40
|
"legend": "mb-1.5 block text-base-900 dark:text-base-400",
|
|
29
41
|
"item": "flex items-start",
|
|
30
42
|
"base": "cursor-pointer rounded-full ring ring-inset ring-base-300 dark:ring-base-700 outline-transparent focus-visible:outline-2 focus-visible:outline-offset-2",
|
|
31
|
-
"indicator": " flex items-center justify-center size-full rounded-full after:bg-white dark:after:bg-base-dark after:rounded-full",
|
|
43
|
+
"indicator": " flex items-center justify-center size-full rounded-full after:bg-white dark:after:bg-base-dark after:rounded-full" as typeof indicator[number],
|
|
32
44
|
"container": "flex items-center",
|
|
33
|
-
"wrapper": "font-b24-primary font-regular
|
|
45
|
+
"wrapper": "font-b24-primary font-regular w-full",
|
|
34
46
|
"label": "cursor-pointer block text-base-master dark:text-base-400",
|
|
35
47
|
"description": "text-base-500 dark:text-base-600"
|
|
36
48
|
},
|
|
@@ -38,35 +50,44 @@ export default {
|
|
|
38
50
|
"color": {
|
|
39
51
|
"default": {
|
|
40
52
|
"base": "focus-visible:outline-base-900 dark:focus-visible:outline-base-900",
|
|
41
|
-
"indicator": "bg-base-900 dark:bg-base-350"
|
|
53
|
+
"indicator": "bg-base-900 dark:bg-base-350" as typeof indicator[number]
|
|
42
54
|
},
|
|
43
55
|
"danger": {
|
|
44
56
|
"base": "focus-visible:outline-red-500 dark:focus-visible:outline-red-600",
|
|
45
|
-
"indicator": "bg-red-500 dark:bg-red-600"
|
|
57
|
+
"indicator": "bg-red-500 dark:bg-red-600" as typeof indicator[number]
|
|
46
58
|
},
|
|
47
59
|
"success": {
|
|
48
60
|
"base": "focus-visible:outline-green-500 dark:focus-visible:outline-green-600",
|
|
49
|
-
"indicator": "bg-green-500 dark:bg-green-600"
|
|
61
|
+
"indicator": "bg-green-500 dark:bg-green-600" as typeof indicator[number]
|
|
50
62
|
},
|
|
51
63
|
"warning": {
|
|
52
64
|
"base": "focus-visible:outline-orange-500 dark:focus-visible:outline-orange-600",
|
|
53
|
-
"indicator": "bg-orange-500 dark:bg-orange-600"
|
|
65
|
+
"indicator": "bg-orange-500 dark:bg-orange-600" as typeof indicator[number]
|
|
54
66
|
},
|
|
55
67
|
"primary": {
|
|
56
68
|
"base": "focus-visible:outline-blue-500 dark:focus-visible:outline-blue-600",
|
|
57
|
-
"indicator": "bg-blue-500 dark:bg-blue-600"
|
|
69
|
+
"indicator": "bg-blue-500 dark:bg-blue-600" as typeof indicator[number]
|
|
58
70
|
},
|
|
59
71
|
"secondary": {
|
|
60
72
|
"base": "focus-visible:outline-cyan-350 dark:focus-visible:outline-cyan-500",
|
|
61
|
-
"indicator": "bg-cyan-350 dark:bg-cyan-500"
|
|
73
|
+
"indicator": "bg-cyan-350 dark:bg-cyan-500" as typeof indicator[number]
|
|
62
74
|
},
|
|
63
75
|
"collab": {
|
|
64
76
|
"base": "focus-visible:outline-collab-500 dark:focus-visible:outline-collab-600",
|
|
65
|
-
"indicator": "bg-collab-500 dark:bg-collab-600"
|
|
77
|
+
"indicator": "bg-collab-500 dark:bg-collab-600" as typeof indicator[number]
|
|
66
78
|
},
|
|
67
79
|
"ai": {
|
|
68
80
|
"base": "focus-visible:outline-ai-500 dark:focus-visible:outline-ai-600",
|
|
69
|
-
"indicator": "bg-ai-500 dark:bg-ai-600"
|
|
81
|
+
"indicator": "bg-ai-500 dark:bg-ai-600" as typeof indicator[number]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"variant": {
|
|
85
|
+
"list": {},
|
|
86
|
+
"card": {
|
|
87
|
+
"item": "items-center border border-base-200 dark:border-base-700 rounded-lg"
|
|
88
|
+
},
|
|
89
|
+
"table": {
|
|
90
|
+
"item": "border border-base-200 dark:border-base-900"
|
|
70
91
|
}
|
|
71
92
|
},
|
|
72
93
|
"orientation": {
|
|
@@ -78,6 +99,20 @@ export default {
|
|
|
78
99
|
"fieldset": "flex-col"
|
|
79
100
|
}
|
|
80
101
|
},
|
|
102
|
+
"indicator": {
|
|
103
|
+
"start": {
|
|
104
|
+
"item": "flex-row",
|
|
105
|
+
"base": "me-2"
|
|
106
|
+
},
|
|
107
|
+
"end": {
|
|
108
|
+
"item": "flex-row-reverse",
|
|
109
|
+
"base": "ms-2"
|
|
110
|
+
},
|
|
111
|
+
"hidden": {
|
|
112
|
+
"base": "sr-only",
|
|
113
|
+
"wrapper": "text-center"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
81
116
|
"size": {
|
|
82
117
|
"xs": {
|
|
83
118
|
"fieldset": "gap-1",
|
|
@@ -86,7 +121,7 @@ export default {
|
|
|
86
121
|
"item": "text-xs",
|
|
87
122
|
"label": "leading-4",
|
|
88
123
|
"container": "h-4",
|
|
89
|
-
"indicator": "after:size-1"
|
|
124
|
+
"indicator": "after:size-1" as typeof indicator[number]
|
|
90
125
|
},
|
|
91
126
|
"sm": {
|
|
92
127
|
"fieldset": "gap-1.5",
|
|
@@ -95,7 +130,7 @@ export default {
|
|
|
95
130
|
"item": "text-sm",
|
|
96
131
|
"label": "leading-4",
|
|
97
132
|
"container": "h-4",
|
|
98
|
-
"indicator": "after:size-1"
|
|
133
|
+
"indicator": "after:size-1" as typeof indicator[number]
|
|
99
134
|
},
|
|
100
135
|
"md": {
|
|
101
136
|
"fieldset": "gap-1",
|
|
@@ -104,7 +139,7 @@ export default {
|
|
|
104
139
|
"item": "text-md",
|
|
105
140
|
"label": "leading-5",
|
|
106
141
|
"container": "h-5",
|
|
107
|
-
"indicator": "after:size-1.5"
|
|
142
|
+
"indicator": "after:size-1.5" as typeof indicator[number]
|
|
108
143
|
},
|
|
109
144
|
"lg": {
|
|
110
145
|
"fieldset": "gap-1.5",
|
|
@@ -113,7 +148,7 @@ export default {
|
|
|
113
148
|
"item": "text-xl",
|
|
114
149
|
"label": "leading-5",
|
|
115
150
|
"container": "h-5",
|
|
116
|
-
"indicator": "after:size-2"
|
|
151
|
+
"indicator": "after:size-2" as typeof indicator[number]
|
|
117
152
|
}
|
|
118
153
|
},
|
|
119
154
|
"disabled": {
|
|
@@ -128,8 +163,181 @@ export default {
|
|
|
128
163
|
}
|
|
129
164
|
}
|
|
130
165
|
},
|
|
166
|
+
"compoundVariants": [
|
|
167
|
+
{
|
|
168
|
+
"size": "xs" as typeof size[number],
|
|
169
|
+
"variant": [
|
|
170
|
+
"card" as typeof variant[number],
|
|
171
|
+
"table" as typeof variant[number]
|
|
172
|
+
],
|
|
173
|
+
"class": {
|
|
174
|
+
"item": "p-2.5"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"size": "sm" as typeof size[number],
|
|
179
|
+
"variant": [
|
|
180
|
+
"card" as typeof variant[number],
|
|
181
|
+
"table" as typeof variant[number]
|
|
182
|
+
],
|
|
183
|
+
"class": {
|
|
184
|
+
"item": "p-3"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"size": "md" as typeof size[number],
|
|
189
|
+
"variant": [
|
|
190
|
+
"card" as typeof variant[number],
|
|
191
|
+
"table" as typeof variant[number]
|
|
192
|
+
],
|
|
193
|
+
"class": {
|
|
194
|
+
"item": "p-3.5"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"size": "lg" as typeof size[number],
|
|
199
|
+
"variant": [
|
|
200
|
+
"card" as typeof variant[number],
|
|
201
|
+
"table" as typeof variant[number]
|
|
202
|
+
],
|
|
203
|
+
"class": {
|
|
204
|
+
"item": "p-4"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"orientation": "horizontal" as typeof orientation[number],
|
|
209
|
+
"variant": "table" as typeof variant[number],
|
|
210
|
+
"class": {
|
|
211
|
+
"item": "first-of-type:rounded-l-lg last-of-type:rounded-r-lg",
|
|
212
|
+
"fieldset": "gap-0 -space-x-px"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"orientation": "vertical" as typeof orientation[number],
|
|
217
|
+
"variant": "table" as typeof variant[number],
|
|
218
|
+
"class": {
|
|
219
|
+
"item": "first-of-type:rounded-t-lg last-of-type:rounded-b-lg",
|
|
220
|
+
"fieldset": "gap-0 -space-y-px"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"color": "default" as typeof color[number],
|
|
225
|
+
"variant": "card" as typeof variant[number],
|
|
226
|
+
"class": {
|
|
227
|
+
"item": "has-data-[state=checked]:border-base-900 dark:has-data-[state=checked]:border-base-350"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"color": "danger" as typeof color[number],
|
|
232
|
+
"variant": "card" as typeof variant[number],
|
|
233
|
+
"class": {
|
|
234
|
+
"item": "has-data-[state=checked]:border-red-500 dark:has-data-[state=checked]:border-red-600"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"color": "success" as typeof color[number],
|
|
239
|
+
"variant": "card" as typeof variant[number],
|
|
240
|
+
"class": {
|
|
241
|
+
"item": "has-data-[state=checked]:border-green-500 dark:has-data-[state=checked]:border-green-600"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"color": "warning" as typeof color[number],
|
|
246
|
+
"variant": "card" as typeof variant[number],
|
|
247
|
+
"class": {
|
|
248
|
+
"item": "has-data-[state=checked]:border-orange-500 dark:has-data-[state=checked]:border-orange-600"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"color": "primary" as typeof color[number],
|
|
253
|
+
"variant": "card" as typeof variant[number],
|
|
254
|
+
"class": {
|
|
255
|
+
"item": "has-data-[state=checked]:border-blue-500 dark:has-data-[state=checked]:border-blue-600"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"color": "secondary" as typeof color[number],
|
|
260
|
+
"variant": "card" as typeof variant[number],
|
|
261
|
+
"class": {
|
|
262
|
+
"item": "has-data-[state=checked]:border-cyan-500 dark:has-data-[state=checked]:border-cyan-600"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"color": "collab" as typeof color[number],
|
|
267
|
+
"variant": "card" as typeof variant[number],
|
|
268
|
+
"class": {
|
|
269
|
+
"item": "has-data-[state=checked]:border-collab-500 dark:has-data-[state=checked]:border-collab-600"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"color": "ai" as typeof color[number],
|
|
274
|
+
"variant": "card" as typeof variant[number],
|
|
275
|
+
"class": {
|
|
276
|
+
"item": "has-data-[state=checked]:border-ai-500 dark:has-data-[state=checked]:border-ai-600"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"color": "default" as typeof color[number],
|
|
281
|
+
"variant": "table" as typeof variant[number],
|
|
282
|
+
"class": {
|
|
283
|
+
"item": "has-data-[state=checked]:bg-base-100 dark:has-data-[state=checked]:bg-base-900 has-data-[state=checked]:border-base-900/25 dark:has-data-[state=checked]:border-base-700/25 has-data-[state=checked]:z-[1]"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"color": "danger" as typeof color[number],
|
|
288
|
+
"variant": "table" as typeof variant[number],
|
|
289
|
+
"class": {
|
|
290
|
+
"item": "has-data-[state=checked]:bg-red-500/24 dark:has-data-[state=checked]:bg-red-600/24 has-data-[state=checked]:border-red-500 dark:has-data-[state=checked]:border-red-600 has-data-[state=checked]:z-[1]"
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"color": "success" as typeof color[number],
|
|
295
|
+
"variant": "table" as typeof variant[number],
|
|
296
|
+
"class": {
|
|
297
|
+
"item": "has-data-[state=checked]:bg-green-500/24 dark:has-data-[state=checked]:bg-green-600/24 has-data-[state=checked]:border-green-500 dark:has-data-[state=checked]:border-green-600 has-data-[state=checked]:z-[1]"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"color": "warning" as typeof color[number],
|
|
302
|
+
"variant": "table" as typeof variant[number],
|
|
303
|
+
"class": {
|
|
304
|
+
"item": "has-data-[state=checked]:bg-orange-500/24 dark:has-data-[state=checked]:bg-orange-600/24 has-data-[state=checked]:border-orange-500 dark:has-data-[state=checked]:border-orange-600 has-data-[state=checked]:z-[1]"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"color": "primary" as typeof color[number],
|
|
309
|
+
"variant": "table" as typeof variant[number],
|
|
310
|
+
"class": {
|
|
311
|
+
"item": "has-data-[state=checked]:bg-blue-500/24 dark:has-data-[state=checked]:bg-blue-600/24 has-data-[state=checked]:border-blue-500 dark:has-data-[state=checked]:border-blue-600 has-data-[state=checked]:z-[1]"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"color": "secondary" as typeof color[number],
|
|
316
|
+
"variant": "table" as typeof variant[number],
|
|
317
|
+
"class": {
|
|
318
|
+
"item": "has-data-[state=checked]:bg-cyan-500/24 dark:has-data-[state=checked]:bg-cyan-600/24 has-data-[state=checked]:border-cyan-500 dark:has-data-[state=checked]:border-cyan-600 has-data-[state=checked]:z-[1]"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"color": "collab" as typeof color[number],
|
|
323
|
+
"variant": "table" as typeof variant[number],
|
|
324
|
+
"class": {
|
|
325
|
+
"item": "has-data-[state=checked]:bg-collab-500/24 dark:has-data-[state=checked]:bg-collab-600/24 has-data-[state=checked]:border-collab-500 dark:has-data-[state=checked]:border-collab-600 has-data-[state=checked]:z-[1]"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"color": "ai" as typeof color[number],
|
|
330
|
+
"variant": "table" as typeof variant[number],
|
|
331
|
+
"class": {
|
|
332
|
+
"item": "has-data-[state=checked]:bg-ai-500/24 dark:has-data-[state=checked]:bg-ai-600/24 has-data-[state=checked]:border-ai-500 dark:has-data-[state=checked]:border-ai-600 has-data-[state=checked]:z-[1]"
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
],
|
|
131
336
|
"defaultVariants": {
|
|
132
337
|
"size": "md" as typeof size[number],
|
|
133
|
-
"color": "primary" as typeof color[number]
|
|
338
|
+
"color": "primary" as typeof color[number],
|
|
339
|
+
"variant": "list" as typeof variant[number],
|
|
340
|
+
"orientation": "vertical" as typeof orientation[number],
|
|
341
|
+
"indicator": "start" as typeof indicator[number]
|
|
134
342
|
}
|
|
135
343
|
}
|
package/dist/meta.cjs
CHANGED
|
@@ -42355,6 +42355,23 @@ const B24UIMeta = {
|
|
|
42355
42355
|
}
|
|
42356
42356
|
}
|
|
42357
42357
|
},
|
|
42358
|
+
{
|
|
42359
|
+
"name": "stepSnapping",
|
|
42360
|
+
"global": false,
|
|
42361
|
+
"description": "When `false`, prevents the value from snapping to the nearest increment of the step value",
|
|
42362
|
+
"tags": [],
|
|
42363
|
+
"required": false,
|
|
42364
|
+
"type": "boolean | undefined",
|
|
42365
|
+
"schema": {
|
|
42366
|
+
"kind": "enum",
|
|
42367
|
+
"type": "boolean | undefined",
|
|
42368
|
+
"schema": {
|
|
42369
|
+
"0": "undefined",
|
|
42370
|
+
"1": "false",
|
|
42371
|
+
"2": "true"
|
|
42372
|
+
}
|
|
42373
|
+
}
|
|
42374
|
+
},
|
|
42358
42375
|
{
|
|
42359
42376
|
"name": "formatOptions",
|
|
42360
42377
|
"global": false,
|
|
@@ -42374,6 +42391,23 @@ const B24UIMeta = {
|
|
|
42374
42391
|
}
|
|
42375
42392
|
}
|
|
42376
42393
|
}
|
|
42394
|
+
},
|
|
42395
|
+
{
|
|
42396
|
+
"name": "disableWheelChange",
|
|
42397
|
+
"global": false,
|
|
42398
|
+
"description": "When `true`, prevents the value from changing on wheel scroll.",
|
|
42399
|
+
"tags": [],
|
|
42400
|
+
"required": false,
|
|
42401
|
+
"type": "boolean | undefined",
|
|
42402
|
+
"schema": {
|
|
42403
|
+
"kind": "enum",
|
|
42404
|
+
"type": "boolean | undefined",
|
|
42405
|
+
"schema": {
|
|
42406
|
+
"0": "undefined",
|
|
42407
|
+
"1": "false",
|
|
42408
|
+
"2": "true"
|
|
42409
|
+
}
|
|
42410
|
+
}
|
|
42377
42411
|
}
|
|
42378
42412
|
],
|
|
42379
42413
|
"slots": [
|
|
@@ -53235,6 +53269,29 @@ const B24UIMeta = {
|
|
|
53235
53269
|
}
|
|
53236
53270
|
}
|
|
53237
53271
|
},
|
|
53272
|
+
{
|
|
53273
|
+
"name": "variant",
|
|
53274
|
+
"global": false,
|
|
53275
|
+
"description": "",
|
|
53276
|
+
"tags": [
|
|
53277
|
+
{
|
|
53278
|
+
"name": "defaultValue",
|
|
53279
|
+
"text": "'list'"
|
|
53280
|
+
}
|
|
53281
|
+
],
|
|
53282
|
+
"required": false,
|
|
53283
|
+
"type": "\"table\" | \"list\" | \"card\" | undefined",
|
|
53284
|
+
"schema": {
|
|
53285
|
+
"kind": "enum",
|
|
53286
|
+
"type": "\"table\" | \"list\" | \"card\" | undefined",
|
|
53287
|
+
"schema": {
|
|
53288
|
+
"0": "undefined",
|
|
53289
|
+
"1": "\"table\"",
|
|
53290
|
+
"2": "\"list\"",
|
|
53291
|
+
"3": "\"card\""
|
|
53292
|
+
}
|
|
53293
|
+
}
|
|
53294
|
+
},
|
|
53238
53295
|
{
|
|
53239
53296
|
"name": "color",
|
|
53240
53297
|
"global": false,
|
|
@@ -53286,19 +53343,42 @@ const B24UIMeta = {
|
|
|
53286
53343
|
},
|
|
53287
53344
|
"default": "\"vertical\""
|
|
53288
53345
|
},
|
|
53346
|
+
{
|
|
53347
|
+
"name": "indicator",
|
|
53348
|
+
"global": false,
|
|
53349
|
+
"description": "Position of the indicator.",
|
|
53350
|
+
"tags": [
|
|
53351
|
+
{
|
|
53352
|
+
"name": "defaultValue",
|
|
53353
|
+
"text": "'start'"
|
|
53354
|
+
}
|
|
53355
|
+
],
|
|
53356
|
+
"required": false,
|
|
53357
|
+
"type": "\"start\" | \"end\" | \"hidden\" | undefined",
|
|
53358
|
+
"schema": {
|
|
53359
|
+
"kind": "enum",
|
|
53360
|
+
"type": "\"start\" | \"end\" | \"hidden\" | undefined",
|
|
53361
|
+
"schema": {
|
|
53362
|
+
"0": "undefined",
|
|
53363
|
+
"1": "\"start\"",
|
|
53364
|
+
"2": "\"end\"",
|
|
53365
|
+
"3": "\"hidden\""
|
|
53366
|
+
}
|
|
53367
|
+
}
|
|
53368
|
+
},
|
|
53289
53369
|
{
|
|
53290
53370
|
"name": "b24ui",
|
|
53291
53371
|
"global": false,
|
|
53292
53372
|
"description": "",
|
|
53293
53373
|
"tags": [],
|
|
53294
53374
|
"required": false,
|
|
53295
|
-
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator:
|
|
53375
|
+
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator: \"start\" | \"end\" | \"hidden\"; container: string; wrapper: string; label: string; description: string; }> | undefined",
|
|
53296
53376
|
"schema": {
|
|
53297
53377
|
"kind": "enum",
|
|
53298
|
-
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator:
|
|
53378
|
+
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator: \"start\" | \"end\" | \"hidden\"; container: string; wrapper: string; label: string; description: string; }> | undefined",
|
|
53299
53379
|
"schema": {
|
|
53300
53380
|
"0": "undefined",
|
|
53301
|
-
"1": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator:
|
|
53381
|
+
"1": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator: \"start\" | \"end\" | \"hidden\"; container: string; wrapper: string; label: string; description: string; }>"
|
|
53302
53382
|
}
|
|
53303
53383
|
}
|
|
53304
53384
|
},
|
package/dist/meta.d.cts
CHANGED
|
@@ -42353,6 +42353,23 @@ var B24UIMeta = {
|
|
|
42353
42353
|
}
|
|
42354
42354
|
}
|
|
42355
42355
|
},
|
|
42356
|
+
{
|
|
42357
|
+
"name": "stepSnapping",
|
|
42358
|
+
"global": false,
|
|
42359
|
+
"description": "When `false`, prevents the value from snapping to the nearest increment of the step value",
|
|
42360
|
+
"tags": [],
|
|
42361
|
+
"required": false,
|
|
42362
|
+
"type": "boolean | undefined",
|
|
42363
|
+
"schema": {
|
|
42364
|
+
"kind": "enum",
|
|
42365
|
+
"type": "boolean | undefined",
|
|
42366
|
+
"schema": {
|
|
42367
|
+
"0": "undefined",
|
|
42368
|
+
"1": "false",
|
|
42369
|
+
"2": "true"
|
|
42370
|
+
}
|
|
42371
|
+
}
|
|
42372
|
+
},
|
|
42356
42373
|
{
|
|
42357
42374
|
"name": "formatOptions",
|
|
42358
42375
|
"global": false,
|
|
@@ -42372,6 +42389,23 @@ var B24UIMeta = {
|
|
|
42372
42389
|
}
|
|
42373
42390
|
}
|
|
42374
42391
|
}
|
|
42392
|
+
},
|
|
42393
|
+
{
|
|
42394
|
+
"name": "disableWheelChange",
|
|
42395
|
+
"global": false,
|
|
42396
|
+
"description": "When `true`, prevents the value from changing on wheel scroll.",
|
|
42397
|
+
"tags": [],
|
|
42398
|
+
"required": false,
|
|
42399
|
+
"type": "boolean | undefined",
|
|
42400
|
+
"schema": {
|
|
42401
|
+
"kind": "enum",
|
|
42402
|
+
"type": "boolean | undefined",
|
|
42403
|
+
"schema": {
|
|
42404
|
+
"0": "undefined",
|
|
42405
|
+
"1": "false",
|
|
42406
|
+
"2": "true"
|
|
42407
|
+
}
|
|
42408
|
+
}
|
|
42375
42409
|
}
|
|
42376
42410
|
],
|
|
42377
42411
|
"slots": [
|
|
@@ -53233,6 +53267,29 @@ var B24UIMeta = {
|
|
|
53233
53267
|
}
|
|
53234
53268
|
}
|
|
53235
53269
|
},
|
|
53270
|
+
{
|
|
53271
|
+
"name": "variant",
|
|
53272
|
+
"global": false,
|
|
53273
|
+
"description": "",
|
|
53274
|
+
"tags": [
|
|
53275
|
+
{
|
|
53276
|
+
"name": "defaultValue",
|
|
53277
|
+
"text": "'list'"
|
|
53278
|
+
}
|
|
53279
|
+
],
|
|
53280
|
+
"required": false,
|
|
53281
|
+
"type": "\"table\" | \"list\" | \"card\" | undefined",
|
|
53282
|
+
"schema": {
|
|
53283
|
+
"kind": "enum",
|
|
53284
|
+
"type": "\"table\" | \"list\" | \"card\" | undefined",
|
|
53285
|
+
"schema": {
|
|
53286
|
+
"0": "undefined",
|
|
53287
|
+
"1": "\"table\"",
|
|
53288
|
+
"2": "\"list\"",
|
|
53289
|
+
"3": "\"card\""
|
|
53290
|
+
}
|
|
53291
|
+
}
|
|
53292
|
+
},
|
|
53236
53293
|
{
|
|
53237
53294
|
"name": "color",
|
|
53238
53295
|
"global": false,
|
|
@@ -53284,19 +53341,42 @@ var B24UIMeta = {
|
|
|
53284
53341
|
},
|
|
53285
53342
|
"default": "\"vertical\""
|
|
53286
53343
|
},
|
|
53344
|
+
{
|
|
53345
|
+
"name": "indicator",
|
|
53346
|
+
"global": false,
|
|
53347
|
+
"description": "Position of the indicator.",
|
|
53348
|
+
"tags": [
|
|
53349
|
+
{
|
|
53350
|
+
"name": "defaultValue",
|
|
53351
|
+
"text": "'start'"
|
|
53352
|
+
}
|
|
53353
|
+
],
|
|
53354
|
+
"required": false,
|
|
53355
|
+
"type": "\"start\" | \"end\" | \"hidden\" | undefined",
|
|
53356
|
+
"schema": {
|
|
53357
|
+
"kind": "enum",
|
|
53358
|
+
"type": "\"start\" | \"end\" | \"hidden\" | undefined",
|
|
53359
|
+
"schema": {
|
|
53360
|
+
"0": "undefined",
|
|
53361
|
+
"1": "\"start\"",
|
|
53362
|
+
"2": "\"end\"",
|
|
53363
|
+
"3": "\"hidden\""
|
|
53364
|
+
}
|
|
53365
|
+
}
|
|
53366
|
+
},
|
|
53287
53367
|
{
|
|
53288
53368
|
"name": "b24ui",
|
|
53289
53369
|
"global": false,
|
|
53290
53370
|
"description": "",
|
|
53291
53371
|
"tags": [],
|
|
53292
53372
|
"required": false,
|
|
53293
|
-
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator:
|
|
53373
|
+
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator: \"start\" | \"end\" | \"hidden\"; container: string; wrapper: string; label: string; description: string; }> | undefined",
|
|
53294
53374
|
"schema": {
|
|
53295
53375
|
"kind": "enum",
|
|
53296
|
-
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator:
|
|
53376
|
+
"type": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator: \"start\" | \"end\" | \"hidden\"; container: string; wrapper: string; label: string; description: string; }> | undefined",
|
|
53297
53377
|
"schema": {
|
|
53298
53378
|
"0": "undefined",
|
|
53299
|
-
"1": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator:
|
|
53379
|
+
"1": "Partial<{ root: string; fieldset: string; legend: string; item: string; base: string; indicator: \"start\" | \"end\" | \"hidden\"; container: string; wrapper: string; label: string; description: string; }>"
|
|
53300
53380
|
}
|
|
53301
53381
|
}
|
|
53302
53382
|
},
|