@personizely/ui 0.0.42 → 0.0.50

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@personizely/ui",
3
3
  "web-types": "./web-types.json",
4
- "version": "0.0.42",
4
+ "version": "0.0.50",
5
5
  "description": "Personizely UI is a Vue.js UI library with a simple API, based on Reka UI, inspired by shadcn-vue and Keen UI.",
6
6
  "type": "module",
7
7
  "main": "./dist/personizely-ui.js",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "repository": {
29
29
  "type": "git",
30
- "url": "git+https://github.com/kilobyte2007/personizely-ui"
30
+ "url": "git+https://github.com/personizelyhq/ui"
31
31
  },
32
32
  "keywords": [
33
33
  "vue",
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "license": "MIT",
52
52
  "bugs": {
53
- "url": "https://github.com/kilobyte2007/personizely-ui/issues"
53
+ "url": "https://github.com/personizelyhq/ui/issues"
54
54
  },
55
55
  "homepage": "https://ui.personizely.dev/",
56
56
  "dependencies": {
package/web-types.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
- "name": "personizely-ui",
5
- "version": "0.0.29",
4
+ "name": "@personizely/ui",
5
+ "version": "0.0.50",
6
6
  "description-markup": "none",
7
7
  "js-types-syntax": "typescript",
8
8
  "contributions": {
@@ -56,8 +56,8 @@
56
56
  },
57
57
  {
58
58
  "name": "type",
59
- "description": "Determines whether a \"single\" or \"multiple\" items can be pressed at a time.\r\n\r\nThis prop will be ignored if any of `v-model` or `defaultValue` is defined, as the type will be inferred from the value.",
60
- "type": "\"single\" | \"multiple\" | undefined",
59
+ "description": "Determines whether a \"single\" or \"multiple\" items can be selected at a time.\r\n\r\nThis prop will overwrite the inferred type from `modelValue` and `defaultValue`.",
60
+ "type": "SingleOrMultipleType | undefined",
61
61
  "required": false
62
62
  },
63
63
  {
@@ -176,8 +176,8 @@
176
176
  },
177
177
  {
178
178
  "name": "type",
179
- "description": "Determines whether a \"single\" or \"multiple\" items can be pressed at a time.\r\n\r\nThis prop will be ignored if any of `v-model` or `defaultValue` is defined, as the type will be inferred from the value.",
180
- "type": "\"single\" | \"multiple\" | undefined",
179
+ "description": "Determines whether a \"single\" or \"multiple\" items can be selected at a time.\r\n\r\nThis prop will overwrite the inferred type from `modelValue` and `defaultValue`.",
180
+ "type": "SingleOrMultipleType | undefined",
181
181
  "required": false
182
182
  },
183
183
  {
@@ -1038,6 +1038,12 @@
1038
1038
  "type": "boolean | undefined",
1039
1039
  "required": false
1040
1040
  },
1041
+ {
1042
+ "name": "reset-search-term-on-select",
1043
+ "description": "Whether to reset the searchTerm when the Combobox value is selected",
1044
+ "type": "boolean | undefined",
1045
+ "required": false
1046
+ },
1041
1047
  {
1042
1048
  "name": "ignore-filter",
1043
1049
  "description": "When `true`, disable the default filters",
@@ -1267,6 +1273,12 @@
1267
1273
  "type": "boolean | undefined",
1268
1274
  "required": false
1269
1275
  },
1276
+ {
1277
+ "name": "reset-search-term-on-select",
1278
+ "description": "Whether to reset the searchTerm when the Combobox value is selected",
1279
+ "type": "boolean | undefined",
1280
+ "required": false
1281
+ },
1270
1282
  {
1271
1283
  "name": "ignore-filter",
1272
1284
  "description": "When `true`, disable the default filters",
@@ -1948,18 +1960,6 @@
1948
1960
  "name": "UiCalendar",
1949
1961
  "description": "",
1950
1962
  "props": [
1951
- {
1952
- "name": "model-value",
1953
- "description": "The controlled checked state of the calendar. Can be bound as `v-model`.",
1954
- "type": "DateValue | DateValue[] | undefined",
1955
- "required": false
1956
- },
1957
- {
1958
- "name": "multiple",
1959
- "description": "Whether or not multiple dates can be selected",
1960
- "type": "boolean | undefined",
1961
- "required": false
1962
- },
1963
1963
  {
1964
1964
  "name": "default-value",
1965
1965
  "description": "The default value for the calendar",
@@ -1974,7 +1974,7 @@
1974
1974
  },
1975
1975
  {
1976
1976
  "name": "placeholder",
1977
- "description": "The placeholder date, which is used to determine what month to display when no date is selected. This updates as the user navigates the calendar and can be used to programmatically control the calendar view",
1977
+ "description": "The placeholder date, which is used to determine what month to display when no date is selected",
1978
1978
  "type": "DateValue | undefined",
1979
1979
  "required": false
1980
1980
  },
@@ -2040,13 +2040,13 @@
2040
2040
  },
2041
2041
  {
2042
2042
  "name": "disabled",
2043
- "description": "Whether or not the calendar is disabled",
2043
+ "description": "Whether the calendar is disabled",
2044
2044
  "type": "boolean | undefined",
2045
2045
  "required": false
2046
2046
  },
2047
2047
  {
2048
2048
  "name": "readonly",
2049
- "description": "Whether or not the calendar is readonly",
2049
+ "description": "Whether the calendar is readonly",
2050
2050
  "type": "boolean | undefined",
2051
2051
  "required": false
2052
2052
  },
@@ -2086,6 +2086,24 @@
2086
2086
  "type": "((placeholder: DateValue) => DateValue) | undefined",
2087
2087
  "required": false
2088
2088
  },
2089
+ {
2090
+ "name": "model-value",
2091
+ "description": "The controlled checked state of the calendar",
2092
+ "type": "DateValue | DateValue[] | undefined",
2093
+ "required": false
2094
+ },
2095
+ {
2096
+ "name": "multiple",
2097
+ "description": "Whether multiple dates can be selected",
2098
+ "type": "boolean | undefined",
2099
+ "required": false
2100
+ },
2101
+ {
2102
+ "name": "disable-days-outside-current-view",
2103
+ "description": "Whether or not to disable days outside the current view.",
2104
+ "type": "boolean | undefined",
2105
+ "required": false
2106
+ },
2089
2107
  {
2090
2108
  "name": "as-child",
2091
2109
  "description": "Change the default rendered element for the one passed as a child, merging their props and behavior.\r\n\r\nRead our [Composition](https://www.reka-ui.com/docs/guides/composition) guide for more details.",
@@ -2157,18 +2175,6 @@
2157
2175
  "name": "ui-calendar",
2158
2176
  "description": "",
2159
2177
  "props": [
2160
- {
2161
- "name": "model-value",
2162
- "description": "The controlled checked state of the calendar. Can be bound as `v-model`.",
2163
- "type": "DateValue | DateValue[] | undefined",
2164
- "required": false
2165
- },
2166
- {
2167
- "name": "multiple",
2168
- "description": "Whether or not multiple dates can be selected",
2169
- "type": "boolean | undefined",
2170
- "required": false
2171
- },
2172
2178
  {
2173
2179
  "name": "default-value",
2174
2180
  "description": "The default value for the calendar",
@@ -2183,7 +2189,7 @@
2183
2189
  },
2184
2190
  {
2185
2191
  "name": "placeholder",
2186
- "description": "The placeholder date, which is used to determine what month to display when no date is selected. This updates as the user navigates the calendar and can be used to programmatically control the calendar view",
2192
+ "description": "The placeholder date, which is used to determine what month to display when no date is selected",
2187
2193
  "type": "DateValue | undefined",
2188
2194
  "required": false
2189
2195
  },
@@ -2249,13 +2255,13 @@
2249
2255
  },
2250
2256
  {
2251
2257
  "name": "disabled",
2252
- "description": "Whether or not the calendar is disabled",
2258
+ "description": "Whether the calendar is disabled",
2253
2259
  "type": "boolean | undefined",
2254
2260
  "required": false
2255
2261
  },
2256
2262
  {
2257
2263
  "name": "readonly",
2258
- "description": "Whether or not the calendar is readonly",
2264
+ "description": "Whether the calendar is readonly",
2259
2265
  "type": "boolean | undefined",
2260
2266
  "required": false
2261
2267
  },
@@ -2295,6 +2301,24 @@
2295
2301
  "type": "((placeholder: DateValue) => DateValue) | undefined",
2296
2302
  "required": false
2297
2303
  },
2304
+ {
2305
+ "name": "model-value",
2306
+ "description": "The controlled checked state of the calendar",
2307
+ "type": "DateValue | DateValue[] | undefined",
2308
+ "required": false
2309
+ },
2310
+ {
2311
+ "name": "multiple",
2312
+ "description": "Whether multiple dates can be selected",
2313
+ "type": "boolean | undefined",
2314
+ "required": false
2315
+ },
2316
+ {
2317
+ "name": "disable-days-outside-current-view",
2318
+ "description": "Whether or not to disable days outside the current view.",
2319
+ "type": "boolean | undefined",
2320
+ "required": false
2321
+ },
2298
2322
  {
2299
2323
  "name": "as-child",
2300
2324
  "description": "Change the default rendered element for the one passed as a child, merging their props and behavior.\r\n\r\nRead our [Composition](https://www.reka-ui.com/docs/guides/composition) guide for more details.",
@@ -2390,6 +2414,12 @@
2390
2414
  "type": "boolean | undefined",
2391
2415
  "required": false
2392
2416
  },
2417
+ {
2418
+ "name": "disabled",
2419
+ "description": "",
2420
+ "type": "boolean | undefined",
2421
+ "required": false
2422
+ },
2393
2423
  {
2394
2424
  "name": "key",
2395
2425
  "description": "",
@@ -2483,6 +2513,12 @@
2483
2513
  "type": "boolean | undefined",
2484
2514
  "required": false
2485
2515
  },
2516
+ {
2517
+ "name": "disabled",
2518
+ "description": "",
2519
+ "type": "boolean | undefined",
2520
+ "required": false
2521
+ },
2486
2522
  {
2487
2523
  "name": "key",
2488
2524
  "description": "",
@@ -3432,6 +3468,12 @@
3432
3468
  "type": "boolean | undefined",
3433
3469
  "required": false
3434
3470
  },
3471
+ {
3472
+ "name": "reset-search-term-on-select",
3473
+ "description": "Whether to reset the searchTerm when the Combobox value is selected",
3474
+ "type": "boolean | undefined",
3475
+ "required": false
3476
+ },
3435
3477
  {
3436
3478
  "name": "ignore-filter",
3437
3479
  "description": "When `true`, disable the default filters",
@@ -3651,6 +3693,12 @@
3651
3693
  "type": "boolean | undefined",
3652
3694
  "required": false
3653
3695
  },
3696
+ {
3697
+ "name": "reset-search-term-on-select",
3698
+ "description": "Whether to reset the searchTerm when the Combobox value is selected",
3699
+ "type": "boolean | undefined",
3700
+ "required": false
3701
+ },
3654
3702
  {
3655
3703
  "name": "ignore-filter",
3656
3704
  "description": "When `true`, disable the default filters",
@@ -4081,12 +4129,36 @@
4081
4129
  "type": "((placeholder: DateValue) => DateValue) | undefined",
4082
4130
  "required": false
4083
4131
  },
4132
+ {
4133
+ "name": "disable-days-outside-current-view",
4134
+ "description": "Whether or not to disable days outside the current view.",
4135
+ "type": "boolean | undefined",
4136
+ "required": false
4137
+ },
4084
4138
  {
4085
4139
  "name": "allow-non-contiguous-ranges",
4086
4140
  "description": "When combined with `isDateUnavailable`, determines whether non-contiguous ranges, i.e. ranges containing unavailable dates, may be selected.",
4087
4141
  "type": "boolean | undefined",
4088
4142
  "required": false
4089
4143
  },
4144
+ {
4145
+ "name": "maximum-days",
4146
+ "description": "The maximum number of days that can be selected in a range",
4147
+ "type": "number | undefined",
4148
+ "required": false
4149
+ },
4150
+ {
4151
+ "name": "is-date-highlightable",
4152
+ "description": "A function that returns whether or not a date is hightable",
4153
+ "type": "Matcher | undefined",
4154
+ "required": false
4155
+ },
4156
+ {
4157
+ "name": "fixed-date",
4158
+ "description": "Which part of the range should be fixed",
4159
+ "type": "\"start\" | \"end\" | undefined",
4160
+ "required": false
4161
+ },
4090
4162
  {
4091
4163
  "name": "placeholder",
4092
4164
  "description": "",
@@ -4304,12 +4376,36 @@
4304
4376
  "type": "((placeholder: DateValue) => DateValue) | undefined",
4305
4377
  "required": false
4306
4378
  },
4379
+ {
4380
+ "name": "disable-days-outside-current-view",
4381
+ "description": "Whether or not to disable days outside the current view.",
4382
+ "type": "boolean | undefined",
4383
+ "required": false
4384
+ },
4307
4385
  {
4308
4386
  "name": "allow-non-contiguous-ranges",
4309
4387
  "description": "When combined with `isDateUnavailable`, determines whether non-contiguous ranges, i.e. ranges containing unavailable dates, may be selected.",
4310
4388
  "type": "boolean | undefined",
4311
4389
  "required": false
4312
4390
  },
4391
+ {
4392
+ "name": "maximum-days",
4393
+ "description": "The maximum number of days that can be selected in a range",
4394
+ "type": "number | undefined",
4395
+ "required": false
4396
+ },
4397
+ {
4398
+ "name": "is-date-highlightable",
4399
+ "description": "A function that returns whether or not a date is hightable",
4400
+ "type": "Matcher | undefined",
4401
+ "required": false
4402
+ },
4403
+ {
4404
+ "name": "fixed-date",
4405
+ "description": "Which part of the range should be fixed",
4406
+ "type": "\"start\" | \"end\" | undefined",
4407
+ "required": false
4408
+ },
4313
4409
  {
4314
4410
  "name": "placeholder",
4315
4411
  "description": "",
@@ -6977,8 +7073,14 @@
6977
7073
  },
6978
7074
  {
6979
7075
  "name": "get-value-label",
6980
- "description": "A function to get the accessible label text representing the current value in a human-readable format.\r\n\r\n If not provided, the value label will be read as the numeric value as a percentage of the max value.",
6981
- "type": "((value: number, max: number) => string) | undefined",
7076
+ "description": "A function to get the accessible label text in a human-readable format.\r\n\r\n If not provided, the value label will be read as the numeric value as a percentage of the max value.",
7077
+ "type": "((value: number | null | undefined, max: number) => string | undefined) | undefined",
7078
+ "required": false
7079
+ },
7080
+ {
7081
+ "name": "get-value-text",
7082
+ "description": "A function to get the accessible value text representing the current value in a human-readable format.",
7083
+ "type": "((value: number | null | undefined, max: number) => string | undefined) | undefined",
6982
7084
  "required": false
6983
7085
  },
6984
7086
  {
@@ -7033,7 +7135,12 @@
7033
7135
  "js": {
7034
7136
  "events": []
7035
7137
  },
7036
- "slots": [],
7138
+ "slots": [
7139
+ {
7140
+ "name": "default",
7141
+ "description": ""
7142
+ }
7143
+ ],
7037
7144
  "source": {
7038
7145
  "module": "./src/components/ui/progress/Progress.vue",
7039
7146
  "symbol": "default"
@@ -7058,8 +7165,14 @@
7058
7165
  },
7059
7166
  {
7060
7167
  "name": "get-value-label",
7061
- "description": "A function to get the accessible label text representing the current value in a human-readable format.\r\n\r\n If not provided, the value label will be read as the numeric value as a percentage of the max value.",
7062
- "type": "((value: number, max: number) => string) | undefined",
7168
+ "description": "A function to get the accessible label text in a human-readable format.\r\n\r\n If not provided, the value label will be read as the numeric value as a percentage of the max value.",
7169
+ "type": "((value: number | null | undefined, max: number) => string | undefined) | undefined",
7170
+ "required": false
7171
+ },
7172
+ {
7173
+ "name": "get-value-text",
7174
+ "description": "A function to get the accessible value text representing the current value in a human-readable format.",
7175
+ "type": "((value: number | null | undefined, max: number) => string | undefined) | undefined",
7063
7176
  "required": false
7064
7177
  },
7065
7178
  {
@@ -7114,7 +7227,12 @@
7114
7227
  "js": {
7115
7228
  "events": []
7116
7229
  },
7117
- "slots": [],
7230
+ "slots": [
7231
+ {
7232
+ "name": "default",
7233
+ "description": ""
7234
+ }
7235
+ ],
7118
7236
  "source": {
7119
7237
  "module": "./src/components/ui/progress/Progress.vue",
7120
7238
  "symbol": "default"
@@ -7547,7 +7665,7 @@
7547
7665
  {
7548
7666
  "name": "model-value",
7549
7667
  "description": "The controlled checked state of the calendar. Can be bound as `v-model`.",
7550
- "type": "DateRange | undefined",
7668
+ "type": "DateRange | null | undefined",
7551
7669
  "required": false
7552
7670
  },
7553
7671
  {
@@ -7574,6 +7692,12 @@
7574
7692
  "type": "boolean | undefined",
7575
7693
  "required": false
7576
7694
  },
7695
+ {
7696
+ "name": "maximum-days",
7697
+ "description": "The maximum number of days that can be selected in a range",
7698
+ "type": "number | undefined",
7699
+ "required": false
7700
+ },
7577
7701
  {
7578
7702
  "name": "week-starts-on",
7579
7703
  "description": "The day of the week to start the calendar on",
@@ -7652,6 +7776,12 @@
7652
7776
  "type": "Matcher | undefined",
7653
7777
  "required": false
7654
7778
  },
7779
+ {
7780
+ "name": "is-date-highlightable",
7781
+ "description": "A function that returns whether or not a date is hightable",
7782
+ "type": "Matcher | undefined",
7783
+ "required": false
7784
+ },
7655
7785
  {
7656
7786
  "name": "dir",
7657
7787
  "description": "The reading direction of the calendar when applicable. <br> If omitted, inherits globally from `ConfigProvider` or assumes LTR (left-to-right) reading mode.",
@@ -7670,6 +7800,18 @@
7670
7800
  "type": "((placeholder: DateValue) => DateValue) | undefined",
7671
7801
  "required": false
7672
7802
  },
7803
+ {
7804
+ "name": "disable-days-outside-current-view",
7805
+ "description": "Whether or not to disable days outside the current view.",
7806
+ "type": "boolean | undefined",
7807
+ "required": false
7808
+ },
7809
+ {
7810
+ "name": "fixed-date",
7811
+ "description": "Which part of the range should be fixed",
7812
+ "type": "\"start\" | \"end\" | undefined",
7813
+ "required": false
7814
+ },
7673
7815
  {
7674
7816
  "name": "as-child",
7675
7817
  "description": "Change the default rendered element for the one passed as a child, merging their props and behavior.\r\n\r\nRead our [Composition](https://www.reka-ui.com/docs/guides/composition) guide for more details.",
@@ -7760,7 +7902,7 @@
7760
7902
  {
7761
7903
  "name": "model-value",
7762
7904
  "description": "The controlled checked state of the calendar. Can be bound as `v-model`.",
7763
- "type": "DateRange | undefined",
7905
+ "type": "DateRange | null | undefined",
7764
7906
  "required": false
7765
7907
  },
7766
7908
  {
@@ -7787,6 +7929,12 @@
7787
7929
  "type": "boolean | undefined",
7788
7930
  "required": false
7789
7931
  },
7932
+ {
7933
+ "name": "maximum-days",
7934
+ "description": "The maximum number of days that can be selected in a range",
7935
+ "type": "number | undefined",
7936
+ "required": false
7937
+ },
7790
7938
  {
7791
7939
  "name": "week-starts-on",
7792
7940
  "description": "The day of the week to start the calendar on",
@@ -7865,6 +8013,12 @@
7865
8013
  "type": "Matcher | undefined",
7866
8014
  "required": false
7867
8015
  },
8016
+ {
8017
+ "name": "is-date-highlightable",
8018
+ "description": "A function that returns whether or not a date is hightable",
8019
+ "type": "Matcher | undefined",
8020
+ "required": false
8021
+ },
7868
8022
  {
7869
8023
  "name": "dir",
7870
8024
  "description": "The reading direction of the calendar when applicable. <br> If omitted, inherits globally from `ConfigProvider` or assumes LTR (left-to-right) reading mode.",
@@ -7883,6 +8037,18 @@
7883
8037
  "type": "((placeholder: DateValue) => DateValue) | undefined",
7884
8038
  "required": false
7885
8039
  },
8040
+ {
8041
+ "name": "disable-days-outside-current-view",
8042
+ "description": "Whether or not to disable days outside the current view.",
8043
+ "type": "boolean | undefined",
8044
+ "required": false
8045
+ },
8046
+ {
8047
+ "name": "fixed-date",
8048
+ "description": "Which part of the range should be fixed",
8049
+ "type": "\"start\" | \"end\" | undefined",
8050
+ "required": false
8051
+ },
7886
8052
  {
7887
8053
  "name": "as-child",
7888
8054
  "description": "Change the default rendered element for the one passed as a child, merging their props and behavior.\r\n\r\nRead our [Composition](https://www.reka-ui.com/docs/guides/composition) guide for more details.",
@@ -8362,6 +8528,12 @@
8362
8528
  "type": "number | undefined",
8363
8529
  "required": false
8364
8530
  },
8531
+ {
8532
+ "name": "thumb-alignment",
8533
+ "description": "The alignment of the slider thumb.\r\n- `contain`: thumbs will be contained within the bounds of the track.\r\n- `overflow`: thumbs will not be bound by the track. No extra offset will be added.",
8534
+ "type": "ThumbAlignment | undefined",
8535
+ "required": false
8536
+ },
8365
8537
  {
8366
8538
  "name": "class",
8367
8539
  "description": "",
@@ -8537,6 +8709,12 @@
8537
8709
  "type": "number | undefined",
8538
8710
  "required": false
8539
8711
  },
8712
+ {
8713
+ "name": "thumb-alignment",
8714
+ "description": "The alignment of the slider thumb.\r\n- `contain`: thumbs will be contained within the bounds of the track.\r\n- `overflow`: thumbs will not be bound by the track. No extra offset will be added.",
8715
+ "type": "ThumbAlignment | undefined",
8716
+ "required": false
8717
+ },
8540
8718
  {
8541
8719
  "name": "class",
8542
8720
  "description": "",
@@ -9615,7 +9793,7 @@
9615
9793
  {
9616
9794
  "name": "model-value",
9617
9795
  "description": "The controlled pressed state of the toggle. Can be bind as `v-model`.",
9618
- "type": "boolean | undefined",
9796
+ "type": "boolean | null | undefined",
9619
9797
  "required": false
9620
9798
  },
9621
9799
  {
@@ -9744,7 +9922,7 @@
9744
9922
  {
9745
9923
  "name": "model-value",
9746
9924
  "description": "The controlled pressed state of the toggle. Can be bind as `v-model`.",
9747
- "type": "boolean | undefined",
9925
+ "type": "boolean | null | undefined",
9748
9926
  "required": false
9749
9927
  },
9750
9928
  {
@@ -9920,7 +10098,7 @@
9920
10098
  },
9921
10099
  {
9922
10100
  "name": "type",
9923
- "description": "Determines whether a \"single\" or \"multiple\" items can be pressed at a time.\r\n\r\nThis prop will be ignored if any of `v-model` or `defaultValue` is defined, as the type will be inferred from the value.",
10101
+ "description": "Determines whether a \"single\" or \"multiple\" items can be selected at a time.\r\n\r\nThis prop will overwrite the inferred type from `modelValue` and `defaultValue`.",
9924
10102
  "type": "SingleOrMultipleType | undefined",
9925
10103
  "required": false
9926
10104
  },
@@ -10070,7 +10248,7 @@
10070
10248
  },
10071
10249
  {
10072
10250
  "name": "type",
10073
- "description": "Determines whether a \"single\" or \"multiple\" items can be pressed at a time.\r\n\r\nThis prop will be ignored if any of `v-model` or `defaultValue` is defined, as the type will be inferred from the value.",
10251
+ "description": "Determines whether a \"single\" or \"multiple\" items can be selected at a time.\r\n\r\nThis prop will overwrite the inferred type from `modelValue` and `defaultValue`.",
10074
10252
  "type": "SingleOrMultipleType | undefined",
10075
10253
  "required": false
10076
10254
  },