@bitrix24/b24ui-nuxt 0.6.3 → 0.6.4
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/dist/meta.d.mts +253 -134
- package/dist/meta.mjs +253 -134
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Alert.vue +3 -3
- package/dist/runtime/components/App.vue +4 -0
- package/dist/runtime/components/App.vue.d.ts +1 -0
- package/dist/runtime/components/DropdownMenu.vue +1 -1
- package/dist/runtime/components/DropdownMenu.vue.d.ts +1 -1
- package/dist/runtime/components/DropdownMenuContent.vue +5 -3
- package/dist/runtime/components/DropdownMenuContent.vue.d.ts +1 -1
- package/dist/runtime/components/Form.vue +2 -1
- package/dist/runtime/components/Form.vue.d.ts +17 -12
- package/dist/runtime/components/InputMenu.vue +4 -2
- package/dist/runtime/components/InputMenu.vue.d.ts +1 -1
- package/dist/runtime/components/Modal.vue +4 -2
- package/dist/runtime/components/Modal.vue.d.ts +2 -2
- package/dist/runtime/components/Popover.vue +4 -2
- package/dist/runtime/components/Popover.vue.d.ts +2 -2
- package/dist/runtime/components/Select.vue +4 -2
- package/dist/runtime/components/Select.vue.d.ts +1 -1
- package/dist/runtime/components/SelectMenu.vue +4 -2
- package/dist/runtime/components/SelectMenu.vue.d.ts +1 -1
- package/dist/runtime/components/Slideover.vue +4 -2
- package/dist/runtime/components/Slideover.vue.d.ts +2 -2
- package/dist/runtime/components/Toast.vue +3 -3
- package/dist/runtime/components/Toaster.vue +5 -3
- package/dist/runtime/components/Toaster.vue.d.ts +2 -2
- package/dist/runtime/components/Tooltip.vue +4 -2
- package/dist/runtime/components/Tooltip.vue.d.ts +2 -2
- package/dist/runtime/composables/usePortal.d.ts +6 -0
- package/dist/runtime/composables/usePortal.js +17 -0
- package/dist/runtime/types/form.d.ts +3 -1
- package/package.json +7 -8
package/dist/meta.d.mts
CHANGED
|
@@ -1953,8 +1953,22 @@ var B24UIMeta = {
|
|
|
1953
1953
|
}
|
|
1954
1954
|
],
|
|
1955
1955
|
"required": false,
|
|
1956
|
-
"type": "boolean | undefined",
|
|
1957
|
-
"schema":
|
|
1956
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
1957
|
+
"schema": {
|
|
1958
|
+
"kind": "enum",
|
|
1959
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
1960
|
+
"schema": {
|
|
1961
|
+
"0": "undefined",
|
|
1962
|
+
"1": "string",
|
|
1963
|
+
"2": "false",
|
|
1964
|
+
"3": "true",
|
|
1965
|
+
"4": {
|
|
1966
|
+
"kind": "object",
|
|
1967
|
+
"type": "HTMLElement",
|
|
1968
|
+
"schema": {}
|
|
1969
|
+
}
|
|
1970
|
+
}
|
|
1971
|
+
}
|
|
1958
1972
|
},
|
|
1959
1973
|
"duration": {
|
|
1960
1974
|
"name": "duration",
|
|
@@ -2490,6 +2504,28 @@ var B24UIMeta = {
|
|
|
2490
2504
|
}
|
|
2491
2505
|
}
|
|
2492
2506
|
},
|
|
2507
|
+
{
|
|
2508
|
+
"name": "portal",
|
|
2509
|
+
"global": false,
|
|
2510
|
+
"description": "",
|
|
2511
|
+
"tags": [],
|
|
2512
|
+
"required": false,
|
|
2513
|
+
"type": "string | HTMLElement | undefined",
|
|
2514
|
+
"schema": {
|
|
2515
|
+
"kind": "enum",
|
|
2516
|
+
"type": "string | HTMLElement | undefined",
|
|
2517
|
+
"schema": {
|
|
2518
|
+
"0": "undefined",
|
|
2519
|
+
"1": "string",
|
|
2520
|
+
"2": {
|
|
2521
|
+
"kind": "object",
|
|
2522
|
+
"type": "HTMLElement",
|
|
2523
|
+
"schema": {}
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
},
|
|
2527
|
+
"default": '"body"'
|
|
2528
|
+
},
|
|
2493
2529
|
{
|
|
2494
2530
|
"name": "scrollBody",
|
|
2495
2531
|
"global": false,
|
|
@@ -23126,15 +23162,15 @@ var B24UIMeta = {
|
|
|
23126
23162
|
}
|
|
23127
23163
|
],
|
|
23128
23164
|
"required": false,
|
|
23129
|
-
"type": '"
|
|
23165
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
23130
23166
|
"schema": {
|
|
23131
23167
|
"kind": "enum",
|
|
23132
|
-
"type": '"
|
|
23168
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
23133
23169
|
"schema": {
|
|
23134
23170
|
"0": "undefined",
|
|
23135
|
-
"1": '"
|
|
23136
|
-
"2": '"
|
|
23137
|
-
"3": '"
|
|
23171
|
+
"1": '"center"',
|
|
23172
|
+
"2": '"start"',
|
|
23173
|
+
"3": '"end"'
|
|
23138
23174
|
}
|
|
23139
23175
|
}
|
|
23140
23176
|
},
|
|
@@ -24410,15 +24446,15 @@ var B24UIMeta = {
|
|
|
24410
24446
|
}
|
|
24411
24447
|
],
|
|
24412
24448
|
"required": false,
|
|
24413
|
-
"type": '"
|
|
24449
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
24414
24450
|
"schema": {
|
|
24415
24451
|
"kind": "enum",
|
|
24416
|
-
"type": '"
|
|
24452
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
24417
24453
|
"schema": {
|
|
24418
24454
|
"0": "undefined",
|
|
24419
|
-
"1": '"
|
|
24420
|
-
"2": '"
|
|
24421
|
-
"3": '"
|
|
24455
|
+
"1": '"center"',
|
|
24456
|
+
"2": '"start"',
|
|
24457
|
+
"3": '"end"'
|
|
24422
24458
|
}
|
|
24423
24459
|
}
|
|
24424
24460
|
},
|
|
@@ -24884,14 +24920,20 @@ var B24UIMeta = {
|
|
|
24884
24920
|
}
|
|
24885
24921
|
],
|
|
24886
24922
|
"required": false,
|
|
24887
|
-
"type": "boolean | undefined",
|
|
24923
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
24888
24924
|
"schema": {
|
|
24889
24925
|
"kind": "enum",
|
|
24890
|
-
"type": "boolean | undefined",
|
|
24926
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
24891
24927
|
"schema": {
|
|
24892
24928
|
"0": "undefined",
|
|
24893
|
-
"1": "
|
|
24894
|
-
"2": "
|
|
24929
|
+
"1": "string",
|
|
24930
|
+
"2": "false",
|
|
24931
|
+
"3": "true",
|
|
24932
|
+
"4": {
|
|
24933
|
+
"kind": "object",
|
|
24934
|
+
"type": "HTMLElement",
|
|
24935
|
+
"schema": {}
|
|
24936
|
+
}
|
|
24895
24937
|
}
|
|
24896
24938
|
},
|
|
24897
24939
|
"default": "true"
|
|
@@ -25330,15 +25372,15 @@ var B24UIMeta = {
|
|
|
25330
25372
|
}
|
|
25331
25373
|
],
|
|
25332
25374
|
"required": false,
|
|
25333
|
-
"type": '"
|
|
25375
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
25334
25376
|
"schema": {
|
|
25335
25377
|
"kind": "enum",
|
|
25336
|
-
"type": '"
|
|
25378
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
25337
25379
|
"schema": {
|
|
25338
25380
|
"0": "undefined",
|
|
25339
|
-
"1": '"
|
|
25340
|
-
"2": '"
|
|
25341
|
-
"3": '"
|
|
25381
|
+
"1": '"center"',
|
|
25382
|
+
"2": '"start"',
|
|
25383
|
+
"3": '"end"'
|
|
25342
25384
|
}
|
|
25343
25385
|
}
|
|
25344
25386
|
},
|
|
@@ -26800,15 +26842,15 @@ var B24UIMeta = {
|
|
|
26800
26842
|
}
|
|
26801
26843
|
],
|
|
26802
26844
|
"required": false,
|
|
26803
|
-
"type": '"
|
|
26845
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
26804
26846
|
"schema": {
|
|
26805
26847
|
"kind": "enum",
|
|
26806
|
-
"type": '"
|
|
26848
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
26807
26849
|
"schema": {
|
|
26808
26850
|
"0": "undefined",
|
|
26809
|
-
"1": '"
|
|
26810
|
-
"2": '"
|
|
26811
|
-
"3": '"
|
|
26851
|
+
"1": '"center"',
|
|
26852
|
+
"2": '"start"',
|
|
26853
|
+
"3": '"end"'
|
|
26812
26854
|
}
|
|
26813
26855
|
}
|
|
26814
26856
|
},
|
|
@@ -28270,15 +28312,15 @@ var B24UIMeta = {
|
|
|
28270
28312
|
}
|
|
28271
28313
|
],
|
|
28272
28314
|
"required": false,
|
|
28273
|
-
"type": '"
|
|
28315
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
28274
28316
|
"schema": {
|
|
28275
28317
|
"kind": "enum",
|
|
28276
|
-
"type": '"
|
|
28318
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
28277
28319
|
"schema": {
|
|
28278
28320
|
"0": "undefined",
|
|
28279
|
-
"1": '"
|
|
28280
|
-
"2": '"
|
|
28281
|
-
"3": '"
|
|
28321
|
+
"1": '"center"',
|
|
28322
|
+
"2": '"start"',
|
|
28323
|
+
"3": '"end"'
|
|
28282
28324
|
}
|
|
28283
28325
|
}
|
|
28284
28326
|
},
|
|
@@ -29740,15 +29782,15 @@ var B24UIMeta = {
|
|
|
29740
29782
|
}
|
|
29741
29783
|
],
|
|
29742
29784
|
"required": false,
|
|
29743
|
-
"type": '"
|
|
29785
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
29744
29786
|
"schema": {
|
|
29745
29787
|
"kind": "enum",
|
|
29746
|
-
"type": '"
|
|
29788
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
29747
29789
|
"schema": {
|
|
29748
29790
|
"0": "undefined",
|
|
29749
|
-
"1": '"
|
|
29750
|
-
"2": '"
|
|
29751
|
-
"3": '"
|
|
29791
|
+
"1": '"center"',
|
|
29792
|
+
"2": '"start"',
|
|
29793
|
+
"3": '"end"'
|
|
29752
29794
|
}
|
|
29753
29795
|
}
|
|
29754
29796
|
},
|
|
@@ -31253,15 +31295,15 @@ var B24UIMeta = {
|
|
|
31253
31295
|
}
|
|
31254
31296
|
],
|
|
31255
31297
|
"required": false,
|
|
31256
|
-
"type": '"
|
|
31298
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
31257
31299
|
"schema": {
|
|
31258
31300
|
"kind": "enum",
|
|
31259
|
-
"type": '"
|
|
31301
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
31260
31302
|
"schema": {
|
|
31261
31303
|
"0": "undefined",
|
|
31262
|
-
"1": '"
|
|
31263
|
-
"2": '"
|
|
31264
|
-
"3": '"
|
|
31304
|
+
"1": '"center"',
|
|
31305
|
+
"2": '"start"',
|
|
31306
|
+
"3": '"end"'
|
|
31265
31307
|
}
|
|
31266
31308
|
}
|
|
31267
31309
|
},
|
|
@@ -32407,14 +32449,20 @@ var B24UIMeta = {
|
|
|
32407
32449
|
"description": "",
|
|
32408
32450
|
"tags": [],
|
|
32409
32451
|
"required": false,
|
|
32410
|
-
"type": "boolean | undefined",
|
|
32452
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
32411
32453
|
"schema": {
|
|
32412
32454
|
"kind": "enum",
|
|
32413
|
-
"type": "boolean | undefined",
|
|
32455
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
32414
32456
|
"schema": {
|
|
32415
32457
|
"0": "undefined",
|
|
32416
|
-
"1": "
|
|
32417
|
-
"2": "
|
|
32458
|
+
"1": "string",
|
|
32459
|
+
"2": "false",
|
|
32460
|
+
"3": "true",
|
|
32461
|
+
"4": {
|
|
32462
|
+
"kind": "object",
|
|
32463
|
+
"type": "HTMLElement",
|
|
32464
|
+
"schema": {}
|
|
32465
|
+
}
|
|
32418
32466
|
}
|
|
32419
32467
|
}
|
|
32420
32468
|
},
|
|
@@ -32557,15 +32605,15 @@ var B24UIMeta = {
|
|
|
32557
32605
|
}
|
|
32558
32606
|
],
|
|
32559
32607
|
"required": false,
|
|
32560
|
-
"type": '"
|
|
32608
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
32561
32609
|
"schema": {
|
|
32562
32610
|
"kind": "enum",
|
|
32563
|
-
"type": '"
|
|
32611
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
32564
32612
|
"schema": {
|
|
32565
32613
|
"0": "undefined",
|
|
32566
|
-
"1": '"
|
|
32567
|
-
"2": '"
|
|
32568
|
-
"3": '"
|
|
32614
|
+
"1": '"center"',
|
|
32615
|
+
"2": '"start"',
|
|
32616
|
+
"3": '"end"'
|
|
32569
32617
|
}
|
|
32570
32618
|
}
|
|
32571
32619
|
},
|
|
@@ -32959,8 +33007,8 @@ var B24UIMeta = {
|
|
|
32959
33007
|
"description": "An object representing the current state of the form.",
|
|
32960
33008
|
"tags": [],
|
|
32961
33009
|
"required": true,
|
|
32962
|
-
"type": "
|
|
32963
|
-
"schema": "
|
|
33010
|
+
"type": "Partial<any>",
|
|
33011
|
+
"schema": "Partial<any>"
|
|
32964
33012
|
},
|
|
32965
33013
|
{
|
|
32966
33014
|
"name": "id",
|
|
@@ -32985,27 +33033,27 @@ var B24UIMeta = {
|
|
|
32985
33033
|
"description": "Schema to validate the form state. Supports Standard Schema objects, Yup, Joi, and Superstructs.",
|
|
32986
33034
|
"tags": [],
|
|
32987
33035
|
"required": false,
|
|
32988
|
-
"type": "FormSchema
|
|
33036
|
+
"type": "FormSchema | undefined",
|
|
32989
33037
|
"schema": {
|
|
32990
33038
|
"kind": "enum",
|
|
32991
|
-
"type": "FormSchema
|
|
33039
|
+
"type": "FormSchema | undefined",
|
|
32992
33040
|
"schema": {
|
|
32993
33041
|
"0": "undefined",
|
|
32994
33042
|
"1": "Struct<any, any>",
|
|
32995
|
-
"2":
|
|
32996
|
-
"3":
|
|
32997
|
-
"4": "
|
|
32998
|
-
"5": "
|
|
32999
|
-
"6": "
|
|
33000
|
-
"7": "
|
|
33001
|
-
"8": "
|
|
33002
|
-
"9": "
|
|
33003
|
-
"10": "
|
|
33004
|
-
"11": "
|
|
33005
|
-
"12": "
|
|
33006
|
-
"13": "
|
|
33007
|
-
"14": "
|
|
33008
|
-
"15": "
|
|
33043
|
+
"2": 'ObjectSchema<object, AnyObject, any, "">',
|
|
33044
|
+
"3": "AnySchema<object>",
|
|
33045
|
+
"4": "ArraySchema<object>",
|
|
33046
|
+
"5": "AlternativesSchema<object>",
|
|
33047
|
+
"6": "BinarySchema<object>",
|
|
33048
|
+
"7": "BooleanSchema<object>",
|
|
33049
|
+
"8": "DateSchema<object>",
|
|
33050
|
+
"9": "FunctionSchema<object>",
|
|
33051
|
+
"10": "NumberSchema<object>",
|
|
33052
|
+
"11": "ObjectSchema<object>",
|
|
33053
|
+
"12": "StringSchema<object>",
|
|
33054
|
+
"13": "LinkSchema<object>",
|
|
33055
|
+
"14": "SymbolSchema<object>",
|
|
33056
|
+
"15": "StandardSchemaV1<object, object>"
|
|
33009
33057
|
}
|
|
33010
33058
|
}
|
|
33011
33059
|
},
|
|
@@ -33024,15 +33072,15 @@ var B24UIMeta = {
|
|
|
33024
33072
|
}
|
|
33025
33073
|
],
|
|
33026
33074
|
"required": false,
|
|
33027
|
-
"type": "((state:
|
|
33075
|
+
"type": "((state: Partial<any>) => FormError<string>[] | Promise<FormError<string>[]>) | undefined",
|
|
33028
33076
|
"schema": {
|
|
33029
33077
|
"kind": "enum",
|
|
33030
|
-
"type": "((state:
|
|
33078
|
+
"type": "((state: Partial<any>) => FormError<string>[] | Promise<FormError<string>[]>) | undefined",
|
|
33031
33079
|
"schema": {
|
|
33032
33080
|
"0": "undefined",
|
|
33033
33081
|
"1": {
|
|
33034
33082
|
"kind": "event",
|
|
33035
|
-
"type": "(state:
|
|
33083
|
+
"type": "(state: Partial<any>): FormError<string>[] | Promise<FormError<string>[]>",
|
|
33036
33084
|
"schema": []
|
|
33037
33085
|
}
|
|
33038
33086
|
}
|
|
@@ -33136,6 +33184,29 @@ var B24UIMeta = {
|
|
|
33136
33184
|
},
|
|
33137
33185
|
"default": "true"
|
|
33138
33186
|
},
|
|
33187
|
+
{
|
|
33188
|
+
"name": "attach",
|
|
33189
|
+
"global": false,
|
|
33190
|
+
"description": "If true, this form will attach to its parent Form (if any) and validate at the same time.",
|
|
33191
|
+
"tags": [
|
|
33192
|
+
{
|
|
33193
|
+
"name": "defaultValue",
|
|
33194
|
+
"text": "`true`"
|
|
33195
|
+
}
|
|
33196
|
+
],
|
|
33197
|
+
"required": false,
|
|
33198
|
+
"type": "boolean | undefined",
|
|
33199
|
+
"schema": {
|
|
33200
|
+
"kind": "enum",
|
|
33201
|
+
"type": "boolean | undefined",
|
|
33202
|
+
"schema": {
|
|
33203
|
+
"0": "undefined",
|
|
33204
|
+
"1": "false",
|
|
33205
|
+
"2": "true"
|
|
33206
|
+
}
|
|
33207
|
+
},
|
|
33208
|
+
"default": "true"
|
|
33209
|
+
},
|
|
33139
33210
|
{
|
|
33140
33211
|
"name": "loadingAuto",
|
|
33141
33212
|
"global": false,
|
|
@@ -33704,8 +33775,8 @@ var B24UIMeta = {
|
|
|
33704
33775
|
"type": "string & {}",
|
|
33705
33776
|
"schema": {}
|
|
33706
33777
|
},
|
|
33707
|
-
"10": '"
|
|
33708
|
-
"11": '"
|
|
33778
|
+
"10": '"search"',
|
|
33779
|
+
"11": '"text"',
|
|
33709
33780
|
"12": '"range"',
|
|
33710
33781
|
"13": '"month"',
|
|
33711
33782
|
"14": '"checkbox"',
|
|
@@ -34460,8 +34531,8 @@ var B24UIMeta = {
|
|
|
34460
34531
|
"type": "string & {}",
|
|
34461
34532
|
"schema": {}
|
|
34462
34533
|
},
|
|
34463
|
-
"10": '"
|
|
34464
|
-
"11": '"
|
|
34534
|
+
"10": '"search"',
|
|
34535
|
+
"11": '"text"',
|
|
34465
34536
|
"12": '"range"',
|
|
34466
34537
|
"13": '"month"',
|
|
34467
34538
|
"14": '"checkbox"',
|
|
@@ -34895,15 +34966,15 @@ var B24UIMeta = {
|
|
|
34895
34966
|
}
|
|
34896
34967
|
],
|
|
34897
34968
|
"required": false,
|
|
34898
|
-
"type": '"
|
|
34969
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
34899
34970
|
"schema": {
|
|
34900
34971
|
"kind": "enum",
|
|
34901
|
-
"type": '"
|
|
34972
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
34902
34973
|
"schema": {
|
|
34903
34974
|
"0": "undefined",
|
|
34904
|
-
"1": '"
|
|
34905
|
-
"2": '"
|
|
34906
|
-
"3": '"
|
|
34975
|
+
"1": '"center"',
|
|
34976
|
+
"2": '"start"',
|
|
34977
|
+
"3": '"end"'
|
|
34907
34978
|
}
|
|
34908
34979
|
}
|
|
34909
34980
|
},
|
|
@@ -35330,14 +35401,20 @@ var B24UIMeta = {
|
|
|
35330
35401
|
}
|
|
35331
35402
|
],
|
|
35332
35403
|
"required": false,
|
|
35333
|
-
"type": "boolean | undefined",
|
|
35404
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
35334
35405
|
"schema": {
|
|
35335
35406
|
"kind": "enum",
|
|
35336
|
-
"type": "boolean | undefined",
|
|
35407
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
35337
35408
|
"schema": {
|
|
35338
35409
|
"0": "undefined",
|
|
35339
|
-
"1": "
|
|
35340
|
-
"2": "
|
|
35410
|
+
"1": "string",
|
|
35411
|
+
"2": "false",
|
|
35412
|
+
"3": "true",
|
|
35413
|
+
"4": {
|
|
35414
|
+
"kind": "object",
|
|
35415
|
+
"type": "HTMLElement",
|
|
35416
|
+
"schema": {}
|
|
35417
|
+
}
|
|
35341
35418
|
}
|
|
35342
35419
|
},
|
|
35343
35420
|
"default": "true"
|
|
@@ -43594,14 +43671,20 @@ var B24UIMeta = {
|
|
|
43594
43671
|
}
|
|
43595
43672
|
],
|
|
43596
43673
|
"required": false,
|
|
43597
|
-
"type": "boolean | undefined",
|
|
43674
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
43598
43675
|
"schema": {
|
|
43599
43676
|
"kind": "enum",
|
|
43600
|
-
"type": "boolean | undefined",
|
|
43677
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
43601
43678
|
"schema": {
|
|
43602
43679
|
"0": "undefined",
|
|
43603
|
-
"1": "
|
|
43604
|
-
"2": "
|
|
43680
|
+
"1": "string",
|
|
43681
|
+
"2": "false",
|
|
43682
|
+
"3": "true",
|
|
43683
|
+
"4": {
|
|
43684
|
+
"kind": "object",
|
|
43685
|
+
"type": "HTMLElement",
|
|
43686
|
+
"schema": {}
|
|
43687
|
+
}
|
|
43605
43688
|
}
|
|
43606
43689
|
},
|
|
43607
43690
|
"default": "true"
|
|
@@ -51608,15 +51691,15 @@ var B24UIMeta = {
|
|
|
51608
51691
|
}
|
|
51609
51692
|
],
|
|
51610
51693
|
"required": false,
|
|
51611
|
-
"type": '"
|
|
51694
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
51612
51695
|
"schema": {
|
|
51613
51696
|
"kind": "enum",
|
|
51614
|
-
"type": '"
|
|
51697
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
51615
51698
|
"schema": {
|
|
51616
51699
|
"0": "undefined",
|
|
51617
|
-
"1": '"
|
|
51618
|
-
"2": '"
|
|
51619
|
-
"3": '"
|
|
51700
|
+
"1": '"center"',
|
|
51701
|
+
"2": '"start"',
|
|
51702
|
+
"3": '"end"'
|
|
51620
51703
|
}
|
|
51621
51704
|
}
|
|
51622
51705
|
},
|
|
@@ -52082,14 +52165,20 @@ var B24UIMeta = {
|
|
|
52082
52165
|
}
|
|
52083
52166
|
],
|
|
52084
52167
|
"required": false,
|
|
52085
|
-
"type": "boolean | undefined",
|
|
52168
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
52086
52169
|
"schema": {
|
|
52087
52170
|
"kind": "enum",
|
|
52088
|
-
"type": "boolean | undefined",
|
|
52171
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
52089
52172
|
"schema": {
|
|
52090
52173
|
"0": "undefined",
|
|
52091
|
-
"1": "
|
|
52092
|
-
"2": "
|
|
52174
|
+
"1": "string",
|
|
52175
|
+
"2": "false",
|
|
52176
|
+
"3": "true",
|
|
52177
|
+
"4": {
|
|
52178
|
+
"kind": "object",
|
|
52179
|
+
"type": "HTMLElement",
|
|
52180
|
+
"schema": {}
|
|
52181
|
+
}
|
|
52093
52182
|
}
|
|
52094
52183
|
},
|
|
52095
52184
|
"default": "true"
|
|
@@ -53954,15 +54043,15 @@ var B24UIMeta = {
|
|
|
53954
54043
|
}
|
|
53955
54044
|
],
|
|
53956
54045
|
"required": false,
|
|
53957
|
-
"type": '"
|
|
54046
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
53958
54047
|
"schema": {
|
|
53959
54048
|
"kind": "enum",
|
|
53960
|
-
"type": '"
|
|
54049
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
53961
54050
|
"schema": {
|
|
53962
54051
|
"0": "undefined",
|
|
53963
|
-
"1": '"
|
|
53964
|
-
"2": '"
|
|
53965
|
-
"3": '"
|
|
54052
|
+
"1": '"center"',
|
|
54053
|
+
"2": '"start"',
|
|
54054
|
+
"3": '"end"'
|
|
53966
54055
|
}
|
|
53967
54056
|
}
|
|
53968
54057
|
},
|
|
@@ -54377,14 +54466,20 @@ var B24UIMeta = {
|
|
|
54377
54466
|
}
|
|
54378
54467
|
],
|
|
54379
54468
|
"required": false,
|
|
54380
|
-
"type": "boolean | undefined",
|
|
54469
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
54381
54470
|
"schema": {
|
|
54382
54471
|
"kind": "enum",
|
|
54383
|
-
"type": "boolean | undefined",
|
|
54472
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
54384
54473
|
"schema": {
|
|
54385
54474
|
"0": "undefined",
|
|
54386
|
-
"1": "
|
|
54387
|
-
"2": "
|
|
54475
|
+
"1": "string",
|
|
54476
|
+
"2": "false",
|
|
54477
|
+
"3": "true",
|
|
54478
|
+
"4": {
|
|
54479
|
+
"kind": "object",
|
|
54480
|
+
"type": "HTMLElement",
|
|
54481
|
+
"schema": {}
|
|
54482
|
+
}
|
|
54388
54483
|
}
|
|
54389
54484
|
},
|
|
54390
54485
|
"default": "true"
|
|
@@ -57527,8 +57622,8 @@ var B24UIMeta = {
|
|
|
57527
57622
|
"type": "string & {}",
|
|
57528
57623
|
"schema": {}
|
|
57529
57624
|
},
|
|
57530
|
-
"10": '"
|
|
57531
|
-
"11": '"
|
|
57625
|
+
"10": '"search"',
|
|
57626
|
+
"11": '"text"',
|
|
57532
57627
|
"12": '"range"',
|
|
57533
57628
|
"13": '"month"',
|
|
57534
57629
|
"14": '"checkbox"',
|
|
@@ -58384,15 +58479,15 @@ var B24UIMeta = {
|
|
|
58384
58479
|
}
|
|
58385
58480
|
],
|
|
58386
58481
|
"required": false,
|
|
58387
|
-
"type": '"
|
|
58482
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
58388
58483
|
"schema": {
|
|
58389
58484
|
"kind": "enum",
|
|
58390
|
-
"type": '"
|
|
58485
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
58391
58486
|
"schema": {
|
|
58392
58487
|
"0": "undefined",
|
|
58393
|
-
"1": '"
|
|
58394
|
-
"2": '"
|
|
58395
|
-
"3": '"
|
|
58488
|
+
"1": '"center"',
|
|
58489
|
+
"2": '"start"',
|
|
58490
|
+
"3": '"end"'
|
|
58396
58491
|
}
|
|
58397
58492
|
}
|
|
58398
58493
|
},
|
|
@@ -58819,14 +58914,20 @@ var B24UIMeta = {
|
|
|
58819
58914
|
}
|
|
58820
58915
|
],
|
|
58821
58916
|
"required": false,
|
|
58822
|
-
"type": "boolean | undefined",
|
|
58917
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
58823
58918
|
"schema": {
|
|
58824
58919
|
"kind": "enum",
|
|
58825
|
-
"type": "boolean | undefined",
|
|
58920
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
58826
58921
|
"schema": {
|
|
58827
58922
|
"0": "undefined",
|
|
58828
|
-
"1": "
|
|
58829
|
-
"2": "
|
|
58923
|
+
"1": "string",
|
|
58924
|
+
"2": "false",
|
|
58925
|
+
"3": "true",
|
|
58926
|
+
"4": {
|
|
58927
|
+
"kind": "object",
|
|
58928
|
+
"type": "HTMLElement",
|
|
58929
|
+
"schema": {}
|
|
58930
|
+
}
|
|
58830
58931
|
}
|
|
58831
58932
|
},
|
|
58832
58933
|
"default": "true"
|
|
@@ -63380,14 +63481,20 @@ var B24UIMeta = {
|
|
|
63380
63481
|
}
|
|
63381
63482
|
],
|
|
63382
63483
|
"required": false,
|
|
63383
|
-
"type": "boolean | undefined",
|
|
63484
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
63384
63485
|
"schema": {
|
|
63385
63486
|
"kind": "enum",
|
|
63386
|
-
"type": "boolean | undefined",
|
|
63487
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
63387
63488
|
"schema": {
|
|
63388
63489
|
"0": "undefined",
|
|
63389
|
-
"1": "
|
|
63390
|
-
"2": "
|
|
63490
|
+
"1": "string",
|
|
63491
|
+
"2": "false",
|
|
63492
|
+
"3": "true",
|
|
63493
|
+
"4": {
|
|
63494
|
+
"kind": "object",
|
|
63495
|
+
"type": "HTMLElement",
|
|
63496
|
+
"schema": {}
|
|
63497
|
+
}
|
|
63391
63498
|
}
|
|
63392
63499
|
},
|
|
63393
63500
|
"default": "true"
|
|
@@ -68190,14 +68297,20 @@ var B24UIMeta = {
|
|
|
68190
68297
|
}
|
|
68191
68298
|
],
|
|
68192
68299
|
"required": false,
|
|
68193
|
-
"type": "boolean | undefined",
|
|
68300
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
68194
68301
|
"schema": {
|
|
68195
68302
|
"kind": "enum",
|
|
68196
|
-
"type": "boolean | undefined",
|
|
68303
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
68197
68304
|
"schema": {
|
|
68198
68305
|
"0": "undefined",
|
|
68199
|
-
"1": "
|
|
68200
|
-
"2": "
|
|
68306
|
+
"1": "string",
|
|
68307
|
+
"2": "false",
|
|
68308
|
+
"3": "true",
|
|
68309
|
+
"4": {
|
|
68310
|
+
"kind": "object",
|
|
68311
|
+
"type": "HTMLElement",
|
|
68312
|
+
"schema": {}
|
|
68313
|
+
}
|
|
68201
68314
|
}
|
|
68202
68315
|
},
|
|
68203
68316
|
"default": "true"
|
|
@@ -68547,15 +68660,15 @@ var B24UIMeta = {
|
|
|
68547
68660
|
}
|
|
68548
68661
|
],
|
|
68549
68662
|
"required": false,
|
|
68550
|
-
"type": '"
|
|
68663
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
68551
68664
|
"schema": {
|
|
68552
68665
|
"kind": "enum",
|
|
68553
|
-
"type": '"
|
|
68666
|
+
"type": '"center" | "start" | "end" | undefined',
|
|
68554
68667
|
"schema": {
|
|
68555
68668
|
"0": "undefined",
|
|
68556
|
-
"1": '"
|
|
68557
|
-
"2": '"
|
|
68558
|
-
"3": '"
|
|
68669
|
+
"1": '"center"',
|
|
68670
|
+
"2": '"start"',
|
|
68671
|
+
"3": '"end"'
|
|
68559
68672
|
}
|
|
68560
68673
|
}
|
|
68561
68674
|
},
|
|
@@ -68850,14 +68963,20 @@ var B24UIMeta = {
|
|
|
68850
68963
|
}
|
|
68851
68964
|
],
|
|
68852
68965
|
"required": false,
|
|
68853
|
-
"type": "boolean | undefined",
|
|
68966
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
68854
68967
|
"schema": {
|
|
68855
68968
|
"kind": "enum",
|
|
68856
|
-
"type": "boolean | undefined",
|
|
68969
|
+
"type": "string | boolean | HTMLElement | undefined",
|
|
68857
68970
|
"schema": {
|
|
68858
68971
|
"0": "undefined",
|
|
68859
|
-
"1": "
|
|
68860
|
-
"2": "
|
|
68972
|
+
"1": "string",
|
|
68973
|
+
"2": "false",
|
|
68974
|
+
"3": "true",
|
|
68975
|
+
"4": {
|
|
68976
|
+
"kind": "object",
|
|
68977
|
+
"type": "HTMLElement",
|
|
68978
|
+
"schema": {}
|
|
68979
|
+
}
|
|
68861
68980
|
}
|
|
68862
68981
|
},
|
|
68863
68982
|
"default": "true"
|