@bitrix24/b24ui-nuxt 0.1.5 → 0.1.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/.nuxt/b24ui/badge.ts +20 -1
- package/.nuxt/b24ui/button-group.ts +1 -1
- package/.nuxt/b24ui/button.ts +2 -2
- package/.nuxt/b24ui/input.ts +3 -3
- package/.nuxt/b24ui/select.ts +5 -5
- package/.nuxt/b24ui/textarea.ts +3 -3
- package/dist/meta.cjs +35 -35
- package/dist/meta.d.cts +35 -35
- package/dist/meta.d.mts +35 -35
- package/dist/meta.d.ts +35 -35
- package/dist/meta.mjs +35 -35
- package/dist/module.cjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Badge.vue +4 -1
- package/dist/runtime/components/ButtonGroup.vue +1 -1
- package/dist/runtime/vue/components/Link.vue +1 -0
- package/dist/shared/{b24ui-nuxt.D8eTlsIC.cjs → b24ui-nuxt.BAQG__ma.cjs} +79 -71
- package/dist/shared/{b24ui-nuxt.CGBDJv97.mjs → b24ui-nuxt.n3bAiAAD.mjs} +79 -71
- 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 +8 -9
package/.nuxt/b24ui/badge.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
const buttonGroup = [
|
|
2
|
+
"horizontal",
|
|
3
|
+
"vertical"
|
|
4
|
+
] as const
|
|
5
|
+
|
|
1
6
|
const color = [
|
|
2
7
|
"default",
|
|
3
8
|
"danger",
|
|
@@ -34,6 +39,13 @@ export default {
|
|
|
34
39
|
"trailingIcon": "shrink-0 cursor-pointer hover:rounded-full hover:bg-current/20 dark:hover:bg-current/35"
|
|
35
40
|
},
|
|
36
41
|
"variants": {
|
|
42
|
+
"buttonGroup": {
|
|
43
|
+
"horizontal": "focus-visible:outline-none ring ring-inset ring-0 focus-visible:ring-2 group-[.is-button-group]/items:not-only:first:rounded-e-none group-[.is-button-group]/items:not-only:last:rounded-s-none group-[.is-button-group]/items:not-last:not-first:rounded-none group-[.is-button-group]/items:not-only:first:border-e-0 group-[.is-button-group]/items:not-only:not-first:border-s-0",
|
|
44
|
+
"vertical": "focus-visible:outline-none ring ring-inset ring-0 focus-visible:ring-2 not-only:first:rounded-b-none not-only:last:rounded-t-none not-last:not-first:rounded-none"
|
|
45
|
+
},
|
|
46
|
+
"noSplit": {
|
|
47
|
+
"false": "group-[.is-button-group]/items:not-only:not-first:after:content-[''] group-[.is-button-group]/items:not-only:not-first:after:absolute group-[.is-button-group]/items:not-only:not-first:after:top-[7px] group-[.is-button-group]/items:not-only:not-first:after:bottom-[6px] group-[.is-button-group]/items:not-only:not-first:after:left-0 group-[.is-button-group]/items:not-only:not-first:after:w-px group-[.is-button-group]/items:not-only:not-first:after:bg-current/30"
|
|
48
|
+
},
|
|
37
49
|
"useLink": {
|
|
38
50
|
"true": {
|
|
39
51
|
"base": "cursor-pointer",
|
|
@@ -116,7 +128,7 @@ export default {
|
|
|
116
128
|
{
|
|
117
129
|
"color": "default" as typeof color[number],
|
|
118
130
|
"depth": "normal" as typeof depth[number],
|
|
119
|
-
"class": "ring ring-inset text-base-800 bg-base-150 ring-base-
|
|
131
|
+
"class": "ring ring-inset text-base-800 bg-base-150 ring-base-300 dark:text-base-950 dark:bg-base-200 dark:ring-base-800"
|
|
120
132
|
},
|
|
121
133
|
{
|
|
122
134
|
"color": "default" as typeof color[number],
|
|
@@ -240,6 +252,13 @@ export default {
|
|
|
240
252
|
{
|
|
241
253
|
"useClose": true,
|
|
242
254
|
"class": ""
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"buttonGroup": [
|
|
258
|
+
"horizontal" as typeof buttonGroup[number],
|
|
259
|
+
"vertical" as typeof buttonGroup[number]
|
|
260
|
+
],
|
|
261
|
+
"class": "rounded-2xs"
|
|
243
262
|
}
|
|
244
263
|
],
|
|
245
264
|
"defaultVariants": {
|
package/.nuxt/b24ui/button.ts
CHANGED
|
@@ -45,11 +45,11 @@ export default {
|
|
|
45
45
|
},
|
|
46
46
|
"variants": {
|
|
47
47
|
"buttonGroup": {
|
|
48
|
-
"horizontal": "focus-visible:outline-none ring ring-inset ring-0 focus-visible:ring-2 not-only:first:rounded-e-none not-only:last:rounded-s-none not-last:not-first:rounded-none not-only:first:border-e-0 not-only:not-first:border-s-0",
|
|
48
|
+
"horizontal": "focus-visible:outline-none ring ring-inset ring-0 focus-visible:ring-2 group-[.is-button-group]/items:not-only:first:rounded-e-none group-[.is-button-group]/items:not-only:last:rounded-s-none group-[.is-button-group]/items:not-last:not-first:rounded-none group-[.is-button-group]/items:not-only:first:border-e-0 group-[.is-button-group]/items:not-only:not-first:border-s-0",
|
|
49
49
|
"vertical": "focus-visible:outline-none ring ring-inset ring-0 focus-visible:ring-2 not-only:first:rounded-b-none not-only:last:rounded-t-none not-last:not-first:rounded-none"
|
|
50
50
|
},
|
|
51
51
|
"noSplit": {
|
|
52
|
-
"false": "not-only:not-first:after:content-[''] not-only:not-first:after:absolute not-only:not-first:after:top-[7px] not-only:not-first:after:bottom-[6px] not-only:not-first:after:left-0 not-only:not-first:after:w-px not-only:not-first:after:bg-current/30"
|
|
52
|
+
"false": "group-[.is-button-group]/items:not-only:not-first:after:content-[''] group-[.is-button-group]/items:not-only:not-first:after:absolute group-[.is-button-group]/items:not-only:not-first:after:top-[7px] group-[.is-button-group]/items:not-only:not-first:after:bottom-[6px] group-[.is-button-group]/items:not-only:not-first:after:left-0 group-[.is-button-group]/items:not-only:not-first:after:w-px group-[.is-button-group]/items:not-only:not-first:after:bg-current/30"
|
|
53
53
|
},
|
|
54
54
|
"color": {
|
|
55
55
|
"default": "text-white dark:text-base-100 bg-base-650 border border-base-650 hover:bg-base-850 hover:border-base-850 hover:focus-visible:ring-0 active:bg-slate-850 active:border-slate-850 active:focus-visible:ring-0 disabled:bg-base-650 aria-disabled:bg-base-650 disabled:border-base-650 aria-disabled:border-base-650 focus-visible:outline-base-650 ring-base-850 focus-visible:ring-base-850",
|
package/.nuxt/b24ui/input.ts
CHANGED
|
@@ -51,8 +51,8 @@ export default {
|
|
|
51
51
|
"variants": {
|
|
52
52
|
"buttonGroup": {
|
|
53
53
|
"horizontal": {
|
|
54
|
-
"root": "group",
|
|
55
|
-
"base": "focus-visible:outline-none ring ring-inset ring-1 focus-visible:ring-2 group-not-only:group-first:rounded-e-none group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:border-e-0 group-not-only:group-not-first:border-s-0"
|
|
54
|
+
"root": "group leading-none",
|
|
55
|
+
"base": "focus-visible:outline-none ring ring-inset ring-1 focus-visible:ring-2 group-not-only:group-first:rounded-e-3xl group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:rounded-e-none group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:border-e-0 group-not-only:group-not-first:border-s-0"
|
|
56
56
|
},
|
|
57
57
|
"vertical": {
|
|
58
58
|
"root": "group",
|
|
@@ -60,7 +60,7 @@ export default {
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"noSplit": {
|
|
63
|
-
"false": "not-only:not-first:after:content-[''] not-only:not-first:after:absolute not-only:not-first:after:top-[7px] not-only:not-first:after:bottom-[6px] not-only:not-first:after:left-0 not-only:not-first:after:w-px not-only:not-first:after:bg-current/30"
|
|
63
|
+
"false": "group-not-only:not-first:after:content-[''] group-not-only:not-first:after:absolute group-not-only:not-first:after:top-[7px] group-not-only:not-first:after:bottom-[6px] group-not-only:not-first:after:left-0 group-not-only:not-first:after:w-px group-not-only:not-first:after:bg-current/30"
|
|
64
64
|
},
|
|
65
65
|
"size": {
|
|
66
66
|
"xs": {
|
package/.nuxt/b24ui/select.ts
CHANGED
|
@@ -38,8 +38,8 @@ const type = [
|
|
|
38
38
|
|
|
39
39
|
export default {
|
|
40
40
|
"slots": {
|
|
41
|
-
"root": "relative inline-flex items-center
|
|
42
|
-
"base": "relative inline-flex items-center group
|
|
41
|
+
"root": "relative inline-flex items-center w-full",
|
|
42
|
+
"base": "relative inline-flex items-center group py-0 border-0 focus:outline-none cursor-pointer disabled:cursor-not-allowed disabled:bg-base-30/37 disabled:text-base-500 dark:disabled:bg-base-900/37 dark:disabled:text-base-800 appearance-none transition duration-300 ease-linear ring ring-inset ring-base-300 dark:ring-base-800 text-base-master bg-white hover:text-base-900 focus:text-base-900 active:text-base-900 dark:text-base-150 dark:bg-transparent dark:hover:text-base-350 dark:focus:text-base-350 dark:active:text-base-350 font-b24-primary font-regular text-sm leading-none align-middle text-ellipsis whitespace-nowrap",
|
|
43
43
|
"leading": "absolute inset-y-0 start-0 flex items-center",
|
|
44
44
|
"leadingIcon": "shrink-0 text-base-400",
|
|
45
45
|
"leadingAvatar": "shrink-0",
|
|
@@ -71,8 +71,8 @@ export default {
|
|
|
71
71
|
"variants": {
|
|
72
72
|
"buttonGroup": {
|
|
73
73
|
"horizontal": {
|
|
74
|
-
"root": "group",
|
|
75
|
-
"base": "focus-visible:outline-none ring ring-inset ring-1 focus-visible:ring-2 group-not-only:group-first:rounded-e-none group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:border-e-0 group-not-only:group-not-first:border-s-0"
|
|
74
|
+
"root": "group leading-none",
|
|
75
|
+
"base": "focus-visible:outline-none ring ring-inset ring-1 focus-visible:ring-2 group-not-only:group-first:rounded-e-3xl group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:rounded-e-none group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:border-e-0 group-not-only:group-not-first:border-s-0"
|
|
76
76
|
},
|
|
77
77
|
"vertical": {
|
|
78
78
|
"root": "group",
|
|
@@ -80,7 +80,7 @@ export default {
|
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"noSplit": {
|
|
83
|
-
"false": "not-only:not-first:after:content-[''] not-only:not-first:after:absolute not-only:not-first:after:top-[7px] not-only:not-first:after:bottom-[6px] not-only:not-first:after:left-0 not-only:not-first:after:w-px not-only:not-first:after:bg-current/30"
|
|
83
|
+
"false": "group-not-only:not-first:after:content-[''] group-not-only:not-first:after:absolute group-not-only:not-first:after:top-[7px] group-not-only:not-first:after:bottom-[6px] group-not-only:not-first:after:left-0 group-not-only:not-first:after:w-px group-not-only:not-first:after:bg-current/30"
|
|
84
84
|
},
|
|
85
85
|
"size": {
|
|
86
86
|
"xs": {
|
package/.nuxt/b24ui/textarea.ts
CHANGED
|
@@ -34,8 +34,8 @@ export default {
|
|
|
34
34
|
"variants": {
|
|
35
35
|
"buttonGroup": {
|
|
36
36
|
"horizontal": {
|
|
37
|
-
"root": "group",
|
|
38
|
-
"base": "focus-visible:outline-none ring ring-inset ring-1 focus-visible:ring-2 group-not-only:group-first:rounded-e-none group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:border-e-0 group-not-only:group-not-first:border-s-0"
|
|
37
|
+
"root": "group leading-none",
|
|
38
|
+
"base": "focus-visible:outline-none ring ring-inset ring-1 focus-visible:ring-2 group-not-only:group-first:rounded-e-3xl group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:rounded-e-none group-not-only:group-last:rounded-s-none group-not-last:group-not-first:rounded-none group-not-only:group-first:border-e-0 group-not-only:group-not-first:border-s-0"
|
|
39
39
|
},
|
|
40
40
|
"vertical": {
|
|
41
41
|
"root": "group",
|
|
@@ -43,7 +43,7 @@ export default {
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"noSplit": {
|
|
46
|
-
"false": "not-only:not-first:after:content-[''] not-only:not-first:after:absolute not-only:not-first:after:top-[7px] not-only:not-first:after:bottom-[6px] not-only:not-first:after:left-0 not-only:not-first:after:w-px not-only:not-first:after:bg-current/30"
|
|
46
|
+
"false": "group-not-only:not-first:after:content-[''] group-not-only:not-first:after:absolute group-not-only:not-first:after:top-[7px] group-not-only:not-first:after:bottom-[6px] group-not-only:not-first:after:left-0 group-not-only:not-first:after:w-px group-not-only:not-first:after:bg-current/30"
|
|
47
47
|
},
|
|
48
48
|
"color": {
|
|
49
49
|
"default": "",
|
package/dist/meta.cjs
CHANGED
|
@@ -5502,6 +5502,22 @@ const B24UIMeta = {
|
|
|
5502
5502
|
}
|
|
5503
5503
|
}
|
|
5504
5504
|
},
|
|
5505
|
+
{
|
|
5506
|
+
"name": "name",
|
|
5507
|
+
"global": false,
|
|
5508
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
5509
|
+
"tags": [],
|
|
5510
|
+
"required": false,
|
|
5511
|
+
"type": "string | undefined",
|
|
5512
|
+
"schema": {
|
|
5513
|
+
"kind": "enum",
|
|
5514
|
+
"type": "string | undefined",
|
|
5515
|
+
"schema": {
|
|
5516
|
+
"0": "undefined",
|
|
5517
|
+
"1": "string"
|
|
5518
|
+
}
|
|
5519
|
+
}
|
|
5520
|
+
},
|
|
5505
5521
|
{
|
|
5506
5522
|
"name": "value",
|
|
5507
5523
|
"global": false,
|
|
@@ -5526,22 +5542,6 @@ const B24UIMeta = {
|
|
|
5526
5542
|
}
|
|
5527
5543
|
}
|
|
5528
5544
|
},
|
|
5529
|
-
{
|
|
5530
|
-
"name": "name",
|
|
5531
|
-
"global": false,
|
|
5532
|
-
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
5533
|
-
"tags": [],
|
|
5534
|
-
"required": false,
|
|
5535
|
-
"type": "string | undefined",
|
|
5536
|
-
"schema": {
|
|
5537
|
-
"kind": "enum",
|
|
5538
|
-
"type": "string | undefined",
|
|
5539
|
-
"schema": {
|
|
5540
|
-
"0": "undefined",
|
|
5541
|
-
"1": "string"
|
|
5542
|
-
}
|
|
5543
|
-
}
|
|
5544
|
-
},
|
|
5545
5545
|
{
|
|
5546
5546
|
"name": "required",
|
|
5547
5547
|
"global": false,
|
|
@@ -7105,8 +7105,8 @@ const B24UIMeta = {
|
|
|
7105
7105
|
"2": "\"reset\"",
|
|
7106
7106
|
"3": "\"submit\"",
|
|
7107
7107
|
"4": "\"image\"",
|
|
7108
|
-
"5": "\"
|
|
7109
|
-
"6": "\"
|
|
7108
|
+
"5": "\"color\"",
|
|
7109
|
+
"6": "\"text\"",
|
|
7110
7110
|
"7": "\"button\"",
|
|
7111
7111
|
"8": "\"date\"",
|
|
7112
7112
|
"9": "\"time\"",
|
|
@@ -9922,37 +9922,37 @@ const B24UIMeta = {
|
|
|
9922
9922
|
"default": "1"
|
|
9923
9923
|
},
|
|
9924
9924
|
{
|
|
9925
|
-
"name": "
|
|
9925
|
+
"name": "name",
|
|
9926
9926
|
"global": false,
|
|
9927
|
-
"description": "The
|
|
9927
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
9928
9928
|
"tags": [],
|
|
9929
9929
|
"required": false,
|
|
9930
|
-
"type": "
|
|
9930
|
+
"type": "string | undefined",
|
|
9931
9931
|
"schema": {
|
|
9932
9932
|
"kind": "enum",
|
|
9933
|
-
"type": "
|
|
9933
|
+
"type": "string | undefined",
|
|
9934
9934
|
"schema": {
|
|
9935
9935
|
"0": "undefined",
|
|
9936
|
-
"1": "
|
|
9936
|
+
"1": "string"
|
|
9937
9937
|
}
|
|
9938
|
-
}
|
|
9939
|
-
"default": "100"
|
|
9938
|
+
}
|
|
9940
9939
|
},
|
|
9941
9940
|
{
|
|
9942
|
-
"name": "
|
|
9941
|
+
"name": "max",
|
|
9943
9942
|
"global": false,
|
|
9944
|
-
"description": "The
|
|
9943
|
+
"description": "The maximum value for the range.",
|
|
9945
9944
|
"tags": [],
|
|
9946
9945
|
"required": false,
|
|
9947
|
-
"type": "
|
|
9946
|
+
"type": "number | undefined",
|
|
9948
9947
|
"schema": {
|
|
9949
9948
|
"kind": "enum",
|
|
9950
|
-
"type": "
|
|
9949
|
+
"type": "number | undefined",
|
|
9951
9950
|
"schema": {
|
|
9952
9951
|
"0": "undefined",
|
|
9953
|
-
"1": "
|
|
9952
|
+
"1": "number"
|
|
9954
9953
|
}
|
|
9955
|
-
}
|
|
9954
|
+
},
|
|
9955
|
+
"default": "100"
|
|
9956
9956
|
},
|
|
9957
9957
|
{
|
|
9958
9958
|
"name": "inverted",
|
|
@@ -13654,9 +13654,9 @@ const B24UIMeta = {
|
|
|
13654
13654
|
}
|
|
13655
13655
|
},
|
|
13656
13656
|
{
|
|
13657
|
-
"name": "
|
|
13657
|
+
"name": "name",
|
|
13658
13658
|
"global": false,
|
|
13659
|
-
"description": "The
|
|
13659
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
13660
13660
|
"tags": [],
|
|
13661
13661
|
"required": false,
|
|
13662
13662
|
"type": "string | undefined",
|
|
@@ -13670,9 +13670,9 @@ const B24UIMeta = {
|
|
|
13670
13670
|
}
|
|
13671
13671
|
},
|
|
13672
13672
|
{
|
|
13673
|
-
"name": "
|
|
13673
|
+
"name": "value",
|
|
13674
13674
|
"global": false,
|
|
13675
|
-
"description": "The
|
|
13675
|
+
"description": "The value given as data when submitted with a `name`.",
|
|
13676
13676
|
"tags": [],
|
|
13677
13677
|
"required": false,
|
|
13678
13678
|
"type": "string | undefined",
|
package/dist/meta.d.cts
CHANGED
|
@@ -5500,6 +5500,22 @@ var B24UIMeta = {
|
|
|
5500
5500
|
}
|
|
5501
5501
|
}
|
|
5502
5502
|
},
|
|
5503
|
+
{
|
|
5504
|
+
"name": "name",
|
|
5505
|
+
"global": false,
|
|
5506
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
5507
|
+
"tags": [],
|
|
5508
|
+
"required": false,
|
|
5509
|
+
"type": "string | undefined",
|
|
5510
|
+
"schema": {
|
|
5511
|
+
"kind": "enum",
|
|
5512
|
+
"type": "string | undefined",
|
|
5513
|
+
"schema": {
|
|
5514
|
+
"0": "undefined",
|
|
5515
|
+
"1": "string"
|
|
5516
|
+
}
|
|
5517
|
+
}
|
|
5518
|
+
},
|
|
5503
5519
|
{
|
|
5504
5520
|
"name": "value",
|
|
5505
5521
|
"global": false,
|
|
@@ -5524,22 +5540,6 @@ var B24UIMeta = {
|
|
|
5524
5540
|
}
|
|
5525
5541
|
}
|
|
5526
5542
|
},
|
|
5527
|
-
{
|
|
5528
|
-
"name": "name",
|
|
5529
|
-
"global": false,
|
|
5530
|
-
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
5531
|
-
"tags": [],
|
|
5532
|
-
"required": false,
|
|
5533
|
-
"type": "string | undefined",
|
|
5534
|
-
"schema": {
|
|
5535
|
-
"kind": "enum",
|
|
5536
|
-
"type": "string | undefined",
|
|
5537
|
-
"schema": {
|
|
5538
|
-
"0": "undefined",
|
|
5539
|
-
"1": "string"
|
|
5540
|
-
}
|
|
5541
|
-
}
|
|
5542
|
-
},
|
|
5543
5543
|
{
|
|
5544
5544
|
"name": "required",
|
|
5545
5545
|
"global": false,
|
|
@@ -7103,8 +7103,8 @@ var B24UIMeta = {
|
|
|
7103
7103
|
"2": "\"reset\"",
|
|
7104
7104
|
"3": "\"submit\"",
|
|
7105
7105
|
"4": "\"image\"",
|
|
7106
|
-
"5": "\"
|
|
7107
|
-
"6": "\"
|
|
7106
|
+
"5": "\"color\"",
|
|
7107
|
+
"6": "\"text\"",
|
|
7108
7108
|
"7": "\"button\"",
|
|
7109
7109
|
"8": "\"date\"",
|
|
7110
7110
|
"9": "\"time\"",
|
|
@@ -9920,37 +9920,37 @@ var B24UIMeta = {
|
|
|
9920
9920
|
"default": "1"
|
|
9921
9921
|
},
|
|
9922
9922
|
{
|
|
9923
|
-
"name": "
|
|
9923
|
+
"name": "name",
|
|
9924
9924
|
"global": false,
|
|
9925
|
-
"description": "The
|
|
9925
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
9926
9926
|
"tags": [],
|
|
9927
9927
|
"required": false,
|
|
9928
|
-
"type": "
|
|
9928
|
+
"type": "string | undefined",
|
|
9929
9929
|
"schema": {
|
|
9930
9930
|
"kind": "enum",
|
|
9931
|
-
"type": "
|
|
9931
|
+
"type": "string | undefined",
|
|
9932
9932
|
"schema": {
|
|
9933
9933
|
"0": "undefined",
|
|
9934
|
-
"1": "
|
|
9934
|
+
"1": "string"
|
|
9935
9935
|
}
|
|
9936
|
-
}
|
|
9937
|
-
"default": "100"
|
|
9936
|
+
}
|
|
9938
9937
|
},
|
|
9939
9938
|
{
|
|
9940
|
-
"name": "
|
|
9939
|
+
"name": "max",
|
|
9941
9940
|
"global": false,
|
|
9942
|
-
"description": "The
|
|
9941
|
+
"description": "The maximum value for the range.",
|
|
9943
9942
|
"tags": [],
|
|
9944
9943
|
"required": false,
|
|
9945
|
-
"type": "
|
|
9944
|
+
"type": "number | undefined",
|
|
9946
9945
|
"schema": {
|
|
9947
9946
|
"kind": "enum",
|
|
9948
|
-
"type": "
|
|
9947
|
+
"type": "number | undefined",
|
|
9949
9948
|
"schema": {
|
|
9950
9949
|
"0": "undefined",
|
|
9951
|
-
"1": "
|
|
9950
|
+
"1": "number"
|
|
9952
9951
|
}
|
|
9953
|
-
}
|
|
9952
|
+
},
|
|
9953
|
+
"default": "100"
|
|
9954
9954
|
},
|
|
9955
9955
|
{
|
|
9956
9956
|
"name": "inverted",
|
|
@@ -13652,9 +13652,9 @@ var B24UIMeta = {
|
|
|
13652
13652
|
}
|
|
13653
13653
|
},
|
|
13654
13654
|
{
|
|
13655
|
-
"name": "
|
|
13655
|
+
"name": "name",
|
|
13656
13656
|
"global": false,
|
|
13657
|
-
"description": "The
|
|
13657
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
13658
13658
|
"tags": [],
|
|
13659
13659
|
"required": false,
|
|
13660
13660
|
"type": "string | undefined",
|
|
@@ -13668,9 +13668,9 @@ var B24UIMeta = {
|
|
|
13668
13668
|
}
|
|
13669
13669
|
},
|
|
13670
13670
|
{
|
|
13671
|
-
"name": "
|
|
13671
|
+
"name": "value",
|
|
13672
13672
|
"global": false,
|
|
13673
|
-
"description": "The
|
|
13673
|
+
"description": "The value given as data when submitted with a `name`.",
|
|
13674
13674
|
"tags": [],
|
|
13675
13675
|
"required": false,
|
|
13676
13676
|
"type": "string | undefined",
|
package/dist/meta.d.mts
CHANGED
|
@@ -5500,6 +5500,22 @@ var B24UIMeta = {
|
|
|
5500
5500
|
}
|
|
5501
5501
|
}
|
|
5502
5502
|
},
|
|
5503
|
+
{
|
|
5504
|
+
"name": "name",
|
|
5505
|
+
"global": false,
|
|
5506
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
5507
|
+
"tags": [],
|
|
5508
|
+
"required": false,
|
|
5509
|
+
"type": "string | undefined",
|
|
5510
|
+
"schema": {
|
|
5511
|
+
"kind": "enum",
|
|
5512
|
+
"type": "string | undefined",
|
|
5513
|
+
"schema": {
|
|
5514
|
+
"0": "undefined",
|
|
5515
|
+
"1": "string"
|
|
5516
|
+
}
|
|
5517
|
+
}
|
|
5518
|
+
},
|
|
5503
5519
|
{
|
|
5504
5520
|
"name": "value",
|
|
5505
5521
|
"global": false,
|
|
@@ -5524,22 +5540,6 @@ var B24UIMeta = {
|
|
|
5524
5540
|
}
|
|
5525
5541
|
}
|
|
5526
5542
|
},
|
|
5527
|
-
{
|
|
5528
|
-
"name": "name",
|
|
5529
|
-
"global": false,
|
|
5530
|
-
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
5531
|
-
"tags": [],
|
|
5532
|
-
"required": false,
|
|
5533
|
-
"type": "string | undefined",
|
|
5534
|
-
"schema": {
|
|
5535
|
-
"kind": "enum",
|
|
5536
|
-
"type": "string | undefined",
|
|
5537
|
-
"schema": {
|
|
5538
|
-
"0": "undefined",
|
|
5539
|
-
"1": "string"
|
|
5540
|
-
}
|
|
5541
|
-
}
|
|
5542
|
-
},
|
|
5543
5543
|
{
|
|
5544
5544
|
"name": "required",
|
|
5545
5545
|
"global": false,
|
|
@@ -7103,8 +7103,8 @@ var B24UIMeta = {
|
|
|
7103
7103
|
"2": "\"reset\"",
|
|
7104
7104
|
"3": "\"submit\"",
|
|
7105
7105
|
"4": "\"image\"",
|
|
7106
|
-
"5": "\"
|
|
7107
|
-
"6": "\"
|
|
7106
|
+
"5": "\"color\"",
|
|
7107
|
+
"6": "\"text\"",
|
|
7108
7108
|
"7": "\"button\"",
|
|
7109
7109
|
"8": "\"date\"",
|
|
7110
7110
|
"9": "\"time\"",
|
|
@@ -9920,37 +9920,37 @@ var B24UIMeta = {
|
|
|
9920
9920
|
"default": "1"
|
|
9921
9921
|
},
|
|
9922
9922
|
{
|
|
9923
|
-
"name": "
|
|
9923
|
+
"name": "name",
|
|
9924
9924
|
"global": false,
|
|
9925
|
-
"description": "The
|
|
9925
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
9926
9926
|
"tags": [],
|
|
9927
9927
|
"required": false,
|
|
9928
|
-
"type": "
|
|
9928
|
+
"type": "string | undefined",
|
|
9929
9929
|
"schema": {
|
|
9930
9930
|
"kind": "enum",
|
|
9931
|
-
"type": "
|
|
9931
|
+
"type": "string | undefined",
|
|
9932
9932
|
"schema": {
|
|
9933
9933
|
"0": "undefined",
|
|
9934
|
-
"1": "
|
|
9934
|
+
"1": "string"
|
|
9935
9935
|
}
|
|
9936
|
-
}
|
|
9937
|
-
"default": "100"
|
|
9936
|
+
}
|
|
9938
9937
|
},
|
|
9939
9938
|
{
|
|
9940
|
-
"name": "
|
|
9939
|
+
"name": "max",
|
|
9941
9940
|
"global": false,
|
|
9942
|
-
"description": "The
|
|
9941
|
+
"description": "The maximum value for the range.",
|
|
9943
9942
|
"tags": [],
|
|
9944
9943
|
"required": false,
|
|
9945
|
-
"type": "
|
|
9944
|
+
"type": "number | undefined",
|
|
9946
9945
|
"schema": {
|
|
9947
9946
|
"kind": "enum",
|
|
9948
|
-
"type": "
|
|
9947
|
+
"type": "number | undefined",
|
|
9949
9948
|
"schema": {
|
|
9950
9949
|
"0": "undefined",
|
|
9951
|
-
"1": "
|
|
9950
|
+
"1": "number"
|
|
9952
9951
|
}
|
|
9953
|
-
}
|
|
9952
|
+
},
|
|
9953
|
+
"default": "100"
|
|
9954
9954
|
},
|
|
9955
9955
|
{
|
|
9956
9956
|
"name": "inverted",
|
|
@@ -13652,9 +13652,9 @@ var B24UIMeta = {
|
|
|
13652
13652
|
}
|
|
13653
13653
|
},
|
|
13654
13654
|
{
|
|
13655
|
-
"name": "
|
|
13655
|
+
"name": "name",
|
|
13656
13656
|
"global": false,
|
|
13657
|
-
"description": "The
|
|
13657
|
+
"description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
|
|
13658
13658
|
"tags": [],
|
|
13659
13659
|
"required": false,
|
|
13660
13660
|
"type": "string | undefined",
|
|
@@ -13668,9 +13668,9 @@ var B24UIMeta = {
|
|
|
13668
13668
|
}
|
|
13669
13669
|
},
|
|
13670
13670
|
{
|
|
13671
|
-
"name": "
|
|
13671
|
+
"name": "value",
|
|
13672
13672
|
"global": false,
|
|
13673
|
-
"description": "The
|
|
13673
|
+
"description": "The value given as data when submitted with a `name`.",
|
|
13674
13674
|
"tags": [],
|
|
13675
13675
|
"required": false,
|
|
13676
13676
|
"type": "string | undefined",
|