xmlui 0.10.26 → 0.11.1
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/lib/{index-DHXWMb-6.mjs → index-CEq6OdjV.js} +263 -643
- package/dist/lib/index.css +1 -1
- package/dist/lib/{initMock-TxnkId6_.mjs → initMock-DhUnLKrR.js} +1 -1
- package/dist/lib/{language-server-web-worker.mjs → language-server-web-worker.js} +1 -1
- package/dist/lib/{language-server.mjs → language-server.js} +1 -1
- package/dist/lib/{metadata-utils-DXUdlyja.mjs → metadata-utils-D27cn-XB.js} +1 -1
- package/dist/lib/{server-common-CtpN0Z4h.mjs → server-common-2DaoOOL5.js} +625 -616
- package/dist/lib/testing.d.ts +2011 -0
- package/dist/lib/testing.js +2386 -0
- package/dist/lib/vite-xmlui-plugin/index.js +13968 -0
- package/dist/lib/vite-xmlui-plugin/package.json +3 -0
- package/dist/lib/xmlui-parser-BZZ430Wm.js +523 -0
- package/dist/lib/xmlui-parser.d.ts +2 -1
- package/dist/lib/{xmlui-parser.mjs → xmlui-parser.js} +2 -2
- package/dist/lib/{xmlui-serializer-uCYa8_tZ.mjs → xmlui-serializer-D9D2mQ8m.js} +1 -1
- package/dist/lib/xmlui.d.ts +1 -0
- package/dist/lib/{xmlui.mjs → xmlui.js} +24 -23
- package/dist/metadata/{collectedComponentMetadata-BgHIc2Iu.mjs → collectedComponentMetadata-BAI5eK2v.js} +698 -567
- package/dist/metadata/{initMock-B3UDa-rw.mjs → initMock-CekNG5Ax.js} +1 -1
- package/dist/metadata/style.css +1 -1
- package/dist/metadata/{xmlui-metadata.mjs → xmlui-metadata.js} +1 -1
- package/dist/metadata/xmlui-metadata.umd.cjs +207 -0
- package/dist/scripts/bin/bootstrap.cjs +4 -0
- package/dist/scripts/bin/index.js +85 -13
- package/dist/scripts/package.json +30 -22
- package/dist/scripts/src/components/App/App.spec.js +27 -15
- package/dist/scripts/src/components/Avatar/Avatar.spec.js +0 -29
- package/dist/scripts/src/components/Button/Button.spec.js +0 -29
- package/dist/scripts/src/components/Charts/BarChart/BarChartNative.js +2 -0
- package/dist/scripts/src/components/Charts/LineChart/LineChartNative.js +2 -2
- package/dist/scripts/src/components/Charts/Tooltip/TooltipContent.spec.js +8 -6
- package/dist/scripts/src/components/Form/Form.js +19 -0
- package/dist/scripts/src/components/Form/Form.spec.js +444 -0
- package/dist/scripts/src/components/Form/FormNative.js +46 -15
- package/dist/scripts/src/components/Form/formActions.js +3 -2
- package/dist/scripts/src/components/FormItem/FormItem.js +10 -2
- package/dist/scripts/src/components/FormItem/FormItem.spec.js +159 -0
- package/dist/scripts/src/components/FormItem/FormItemNative.js +6 -5
- package/dist/scripts/src/components/Heading/Heading.spec.js +34 -47
- package/dist/scripts/src/components/Queue/Queue.js +1 -16
- package/dist/scripts/src/components/Queue/QueueNative.js +60 -2
- package/dist/scripts/src/components/TableOfContents/TableOfContents.js +7 -5
- package/dist/scripts/src/components-core/appContext/misc-utils.js +2 -1
- package/dist/scripts/src/components-core/devtools/InspectorDialog.js +2 -2
- package/dist/scripts/src/components-core/script-runner/eval-tree-async.js +2 -0
- package/dist/scripts/src/components-core/utils/base64-utils.js +2 -0
- package/dist/scripts/src/components-core/utils/misc.js +44 -0
- package/dist/scripts/src/language-server/server-common.js +2 -2
- package/dist/scripts/src/language-server/{xmlui-metadata-generated.mjs → xmlui-metadata-generated.js} +625 -615
- package/dist/scripts/src/testing/drivers/index.js +9 -0
- package/dist/scripts/src/testing/index.js +69 -0
- package/dist/standalone/xmlui-standalone.es.d.ts +32 -16
- package/dist/standalone/xmlui-standalone.umd.js +36 -36
- package/package.json +45 -37
- package/dist/metadata/xmlui-metadata.umd.js +0 -207
- package/dist/scripts/bin/bootstrap.js +0 -11
- /package/dist/lib/{apiInterceptorWorker-QiltRtq1.mjs → apiInterceptorWorker-QiltRtq1.js} +0 -0
- /package/dist/lib/{syntax-monaco.mjs → syntax-monaco.js} +0 -0
- /package/dist/lib/{syntax-textmate.mjs → syntax-textmate.js} +0 -0
- /package/dist/lib/{transform-Tooy42EB.mjs → transform-Tooy42EB.js} +0 -0
- /package/dist/metadata/{apiInterceptorWorker-Dql7QGw2.mjs → apiInterceptorWorker-Dql7QGw2.js} +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2
3
|
// This file is auto-generated. Do not edit manually.
|
|
3
|
-
|
|
4
|
+
exports.default = {
|
|
4
5
|
"a": {
|
|
5
6
|
"status": "deprecated",
|
|
6
7
|
"description": "This component renders an HTML `a` tag.",
|
|
@@ -2259,6 +2260,11 @@ export default {
|
|
|
2259
2260
|
"AppState": {
|
|
2260
2261
|
"status": "stable",
|
|
2261
2262
|
"description": "`AppState` is an invisible component that provides global state management across your entire application. Unlike component variables that are scoped locally, AppState allows any component to access and update shared state without prop drilling.",
|
|
2263
|
+
"events": {
|
|
2264
|
+
"didUpdate": {
|
|
2265
|
+
"description": "This event is fired when the AppState value is updated. The event provides the new state value as its parameter."
|
|
2266
|
+
}
|
|
2267
|
+
},
|
|
2262
2268
|
"props": {
|
|
2263
2269
|
"bucket": {
|
|
2264
2270
|
"description": "This property is the identifier of the bucket to which the `AppState` instance is bound. Multiple `AppState` instances with the same bucket will share the same state object: any of them updating the state will cause the other instances to view the new, updated state.",
|
|
@@ -2266,7 +2272,7 @@ export default {
|
|
|
2266
2272
|
"defaultValue": "default"
|
|
2267
2273
|
},
|
|
2268
2274
|
"initialValue": {
|
|
2269
|
-
"description": "This property contains the initial state value. Though you can use multiple `AppState`component instances for the same bucket with their `initialValue` set, it may result in faulty app logic. When xmlui instantiates an `AppState` with an explicit initial value, that value is immediately
|
|
2275
|
+
"description": "This property contains the initial state value. Though you can use multiple `AppState`component instances for the same bucket with their `initialValue` set, it may result in faulty app logic. When xmlui instantiates an `AppState` with an explicit initial value, that value is immediately merged with the existing state. The issue may come from the behavior that `initialValue` is set (merged) only when a component mounts. By default, the bucket's initial state is undefined."
|
|
2270
2276
|
}
|
|
2271
2277
|
},
|
|
2272
2278
|
"apis": {
|
|
@@ -2276,6 +2282,30 @@ export default {
|
|
|
2276
2282
|
"parameters": {
|
|
2277
2283
|
"newState": "An object that specifies the new state value."
|
|
2278
2284
|
}
|
|
2285
|
+
},
|
|
2286
|
+
"appendToList": {
|
|
2287
|
+
"signature": "appendToList(key: string, id: any)",
|
|
2288
|
+
"description": "This method appends an item to an array in the application state object bound to the `AppState` instance.",
|
|
2289
|
+
"parameters": {
|
|
2290
|
+
"key": "The key of the array in the state object.",
|
|
2291
|
+
"id": "The item to append to the array."
|
|
2292
|
+
}
|
|
2293
|
+
},
|
|
2294
|
+
"removeFromList": {
|
|
2295
|
+
"signature": "removeFromList(key: string, id: any)",
|
|
2296
|
+
"description": "This method removes an item from an array in the application state object bound to the `AppState` instance.",
|
|
2297
|
+
"parameters": {
|
|
2298
|
+
"key": "The key of the array in the state object.",
|
|
2299
|
+
"id": "The item to remove from the array."
|
|
2300
|
+
}
|
|
2301
|
+
},
|
|
2302
|
+
"listIncludes": {
|
|
2303
|
+
"signature": "listIncludes(key: string, id: any)",
|
|
2304
|
+
"description": "This method checks if an array in the application state object contains a specific item.",
|
|
2305
|
+
"parameters": {
|
|
2306
|
+
"key": "The key of the array in the state object.",
|
|
2307
|
+
"id": "The item to check for in the array."
|
|
2308
|
+
}
|
|
2279
2309
|
}
|
|
2280
2310
|
},
|
|
2281
2311
|
"nonVisual": true
|
|
@@ -2345,39 +2375,6 @@ export default {
|
|
|
2345
2375
|
],
|
|
2346
2376
|
"defaultValue": "none"
|
|
2347
2377
|
},
|
|
2348
|
-
"label": {
|
|
2349
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
2350
|
-
"valueType": "string"
|
|
2351
|
-
},
|
|
2352
|
-
"labelPosition": {
|
|
2353
|
-
"description": "Places the label at the given position of the component.",
|
|
2354
|
-
"availableValues": [
|
|
2355
|
-
{
|
|
2356
|
-
"value": "start",
|
|
2357
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
2358
|
-
},
|
|
2359
|
-
{
|
|
2360
|
-
"value": "end",
|
|
2361
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
2362
|
-
},
|
|
2363
|
-
{
|
|
2364
|
-
"value": "top",
|
|
2365
|
-
"description": "The top of the input"
|
|
2366
|
-
},
|
|
2367
|
-
{
|
|
2368
|
-
"value": "bottom",
|
|
2369
|
-
"description": "The bottom of the input"
|
|
2370
|
-
}
|
|
2371
|
-
]
|
|
2372
|
-
},
|
|
2373
|
-
"labelWidth": {
|
|
2374
|
-
"description": "This property sets the width of the `AutoComplete` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
2375
|
-
},
|
|
2376
|
-
"labelBreak": {
|
|
2377
|
-
"description": "This boolean value indicates whether the `AutoComplete` label can be split into multiple lines if it would overflow the available label width.",
|
|
2378
|
-
"valueType": "boolean",
|
|
2379
|
-
"defaultValue": true
|
|
2380
|
-
},
|
|
2381
2378
|
"dropdownHeight": {
|
|
2382
2379
|
"description": "This property sets the height of the dropdown list."
|
|
2383
2380
|
},
|
|
@@ -2471,6 +2468,13 @@ export default {
|
|
|
2471
2468
|
"paddingRight-AutoComplete": "var(--xmlui-paddingRight-AutoComplete, var(--xmlui-paddingHorizontal-AutoComplete, var(--xmlui-padding-AutoComplete)))",
|
|
2472
2469
|
"paddingTop-AutoComplete": "var(--xmlui-paddingTop-AutoComplete, var(--xmlui-paddingVertical-AutoComplete, var(--xmlui-padding-AutoComplete)))",
|
|
2473
2470
|
"paddingBottom-AutoComplete": "var(--xmlui-paddingBottom-AutoComplete, var(--xmlui-paddingVertical-AutoComplete, var(--xmlui-padding-AutoComplete)))",
|
|
2471
|
+
"padding-item-AutoComplete": "var(--xmlui-padding-item-AutoComplete)",
|
|
2472
|
+
"paddingHorizontal-item-AutoComplete": "var(--xmlui-paddingHorizontal-item-AutoComplete, var(--xmlui-padding-item-AutoComplete))",
|
|
2473
|
+
"paddingVertical-item-AutoComplete": "var(--xmlui-paddingVertical-item-AutoComplete, var(--xmlui-padding-item-AutoComplete))",
|
|
2474
|
+
"paddingLeft-item-AutoComplete": "var(--xmlui-paddingLeft-item-AutoComplete, var(--xmlui-paddingHorizontal-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))",
|
|
2475
|
+
"paddingRight-item-AutoComplete": "var(--xmlui-paddingRight-item-AutoComplete, var(--xmlui-paddingHorizontal-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))",
|
|
2476
|
+
"paddingTop-item-AutoComplete": "var(--xmlui-paddingTop-item-AutoComplete, var(--xmlui-paddingVertical-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))",
|
|
2477
|
+
"paddingBottom-item-AutoComplete": "var(--xmlui-paddingBottom-item-AutoComplete, var(--xmlui-paddingVertical-item-AutoComplete, var(--xmlui-padding-item-AutoComplete)))",
|
|
2474
2478
|
"Input:borderRadius-AutoComplete-default": "var(--xmlui-borderRadius-AutoComplete-default)",
|
|
2475
2479
|
"Input:borderColor-AutoComplete-default": "var(--xmlui-borderColor-AutoComplete-default)",
|
|
2476
2480
|
"Input:borderWidth-AutoComplete-default": "var(--xmlui-borderWidth-AutoComplete-default)",
|
|
@@ -2545,34 +2549,41 @@ export default {
|
|
|
2545
2549
|
"Input:backgroundColor-AutoComplete-badge--active": "var(--xmlui-backgroundColor-AutoComplete-badge--active)",
|
|
2546
2550
|
"Input:textColor-AutoComplete-badge--active": "var(--xmlui-textColor-AutoComplete-badge--active)",
|
|
2547
2551
|
"Input:textColor-placeholder-AutoComplete": "var(--xmlui-textColor-placeholder-AutoComplete)",
|
|
2548
|
-
"Input:backgroundColor-menu-AutoComplete": "var(--xmlui-backgroundColor-menu-AutoComplete)",
|
|
2549
2552
|
"Input:borderRadius-menu-AutoComplete": "var(--xmlui-borderRadius-menu-AutoComplete)",
|
|
2553
|
+
"Input:borderWidth-menu-AutoComplete": "var(--xmlui-borderWidth-menu-AutoComplete)",
|
|
2554
|
+
"Input:borderColor-menu-AutoComplete": "var(--xmlui-borderColor-menu-AutoComplete)",
|
|
2555
|
+
"Input:backgroundColor-menu-AutoComplete": "var(--xmlui-backgroundColor-menu-AutoComplete)",
|
|
2550
2556
|
"Input:boxShadow-menu-AutoComplete": "var(--xmlui-boxShadow-menu-AutoComplete)",
|
|
2551
2557
|
"backgroundColor-item-AutoComplete": "var(--xmlui-backgroundColor-item-AutoComplete)",
|
|
2558
|
+
"backgroundColor-item-AutoComplete--active": "var(--xmlui-backgroundColor-item-AutoComplete--active)",
|
|
2552
2559
|
"backgroundColor-item-AutoComplete--hover": "var(--xmlui-backgroundColor-item-AutoComplete--hover)",
|
|
2553
2560
|
"textColor-item-AutoComplete--disabled": "var(--xmlui-textColor-item-AutoComplete--disabled)"
|
|
2554
2561
|
},
|
|
2555
2562
|
"defaultThemeVars": {
|
|
2556
|
-
"backgroundColor-menu-AutoComplete": "$
|
|
2563
|
+
"backgroundColor-menu-AutoComplete": "$color-surface-raised",
|
|
2557
2564
|
"boxShadow-menu-AutoComplete": "$boxShadow-md",
|
|
2558
2565
|
"borderRadius-menu-AutoComplete": "$borderRadius",
|
|
2559
2566
|
"borderWidth-menu-AutoComplete": "1px",
|
|
2560
2567
|
"borderColor-menu-AutoComplete": "$borderColor",
|
|
2561
|
-
"backgroundColor-item-AutoComplete": "$backgroundColor-dropdown-item",
|
|
2562
|
-
"backgroundColor-item-AutoComplete--hover": "$backgroundColor-dropdown-item--active",
|
|
2563
|
-
"backgroundColor-item-AutoComplete--active": "$backgroundColor-dropdown-item--active",
|
|
2564
|
-
"minHeight-Input": "39px",
|
|
2565
2568
|
"backgroundColor-AutoComplete-badge": "$color-primary-500",
|
|
2566
2569
|
"fontSize-AutoComplete-badge": "$fontSize-sm",
|
|
2570
|
+
"paddingHorizontal-AutoComplete-badge": "$space-2_5",
|
|
2571
|
+
"paddingVertical-AutoComplete-badge": "$space-0_5",
|
|
2567
2572
|
"borderRadius-AutoComplete-badge": "$borderRadius",
|
|
2568
|
-
"paddingHorizontal-AutoComplete
|
|
2569
|
-
"paddingVertical-AutoComplete
|
|
2570
|
-
"paddingHorizontal-AutoComplete": "$space-
|
|
2573
|
+
"paddingHorizontal-item-AutoComplete": "$space-2",
|
|
2574
|
+
"paddingVertical-item-AutoComplete": "$space-2",
|
|
2575
|
+
"paddingHorizontal-AutoComplete": "$space-2",
|
|
2571
2576
|
"paddingVertical-AutoComplete": "$space-2",
|
|
2577
|
+
"opacity-text-item-AutoComplete--disabled": "0.5",
|
|
2578
|
+
"opacity-AutoComplete--disabled": "0.5",
|
|
2572
2579
|
"backgroundColor-AutoComplete-badge--hover": "$color-primary-400",
|
|
2573
2580
|
"backgroundColor-AutoComplete-badge--active": "$color-primary-500",
|
|
2574
2581
|
"textColor-item-AutoComplete--disabled": "$color-surface-200",
|
|
2575
|
-
"textColor-AutoComplete-badge": "$const-color-surface-50"
|
|
2582
|
+
"textColor-AutoComplete-badge": "$const-color-surface-50",
|
|
2583
|
+
"backgroundColor-item-AutoComplete": "$backgroundColor-dropdown-item",
|
|
2584
|
+
"backgroundColor-item-AutoComplete--hover": "$backgroundColor-dropdown-item--hover",
|
|
2585
|
+
"backgroundColor-item-AutoComplete--active": "$backgroundColor-dropdown-item--active",
|
|
2586
|
+
"borderColor-AutoComplete--disabled": "initial"
|
|
2576
2587
|
}
|
|
2577
2588
|
},
|
|
2578
2589
|
"Avatar": {
|
|
@@ -3126,6 +3137,25 @@ export default {
|
|
|
3126
3137
|
"paddingRight-Button-lg": "var(--xmlui-paddingRight-Button-lg, var(--xmlui-paddingHorizontal-Button-lg, var(--xmlui-padding-Button-lg)))",
|
|
3127
3138
|
"paddingTop-Button-lg": "var(--xmlui-paddingTop-Button-lg, var(--xmlui-paddingVertical-Button-lg, var(--xmlui-padding-Button-lg)))",
|
|
3128
3139
|
"paddingBottom-Button-lg": "var(--xmlui-paddingBottom-Button-lg, var(--xmlui-paddingVertical-Button-lg, var(--xmlui-padding-Button-lg)))",
|
|
3140
|
+
"fontFamily-Button": "var(--xmlui-fontFamily-Button)",
|
|
3141
|
+
"fontSize-Button": "var(--xmlui-fontSize-Button)",
|
|
3142
|
+
"fontWeight-Button": "var(--xmlui-fontWeight-Button)",
|
|
3143
|
+
"fontStyle-Button": "var(--xmlui-fontStyle-Button)",
|
|
3144
|
+
"borderRadius-Button": "var(--xmlui-borderRadius-Button)",
|
|
3145
|
+
"borderWidth-Button": "var(--xmlui-borderWidth-Button)",
|
|
3146
|
+
"borderWidth-Button--hover": "var(--xmlui-borderWidth-Button--hover)",
|
|
3147
|
+
"borderColor-Button": "var(--xmlui-borderColor-Button)",
|
|
3148
|
+
"borderColor-Button--hover": "var(--xmlui-borderColor-Button--hover)",
|
|
3149
|
+
"borderStyle-Button": "var(--xmlui-borderStyle-Button)",
|
|
3150
|
+
"borderStyle-Button--hover": "var(--xmlui-borderStyle-Button--hover)",
|
|
3151
|
+
"backgroundColor-Button": "var(--xmlui-backgroundColor-Button)",
|
|
3152
|
+
"backgroundColor-Button--hover": "var(--xmlui-backgroundColor-Button--hover)",
|
|
3153
|
+
"textColor-Button": "var(--xmlui-textColor-Button)",
|
|
3154
|
+
"textColor-Button--hover": "var(--xmlui-textColor-Button--hover)",
|
|
3155
|
+
"boxShadow-Button": "var(--xmlui-boxShadow-Button)",
|
|
3156
|
+
"boxShadow-Button--hover": "var(--xmlui-boxShadow-Button--hover)",
|
|
3157
|
+
"gap-Button": "var(--xmlui-gap-Button)",
|
|
3158
|
+
"transition-Button": "var(--xmlui-transition-Button)",
|
|
3129
3159
|
"width-Button": "var(--xmlui-width-Button)",
|
|
3130
3160
|
"height-Button": "var(--xmlui-height-Button)",
|
|
3131
3161
|
"fontFamily-Button-primary-solid": "var(--xmlui-fontFamily-Button-primary-solid)",
|
|
@@ -3138,6 +3168,7 @@ export default {
|
|
|
3138
3168
|
"backgroundColor-Button-primary-solid": "var(--xmlui-backgroundColor-Button-primary-solid)",
|
|
3139
3169
|
"textColor-Button-primary-solid": "var(--xmlui-textColor-Button-primary-solid)",
|
|
3140
3170
|
"boxShadow-Button-primary-solid": "var(--xmlui-boxShadow-Button-primary-solid)",
|
|
3171
|
+
"transition-Button-primary-solid": "var(--xmlui-transition-Button-primary-solid)",
|
|
3141
3172
|
"outlineWidth-Button-primary-solid--focus": "var(--xmlui-outlineWidth-Button-primary-solid--focus)",
|
|
3142
3173
|
"outlineColor-Button-primary-solid--focus": "var(--xmlui-outlineColor-Button-primary-solid--focus)",
|
|
3143
3174
|
"outlineStyle-Button-primary-solid--focus": "var(--xmlui-outlineStyle-Button-primary-solid--focus)",
|
|
@@ -3162,6 +3193,7 @@ export default {
|
|
|
3162
3193
|
"backgroundColor-Button-secondary-solid": "var(--xmlui-backgroundColor-Button-secondary-solid)",
|
|
3163
3194
|
"textColor-Button-secondary-solid": "var(--xmlui-textColor-Button-secondary-solid)",
|
|
3164
3195
|
"boxShadow-Button-secondary-solid": "var(--xmlui-boxShadow-Button-secondary-solid)",
|
|
3196
|
+
"transition-Button-secondary-solid": "var(--xmlui-transition-Button-secondary-solid)",
|
|
3165
3197
|
"outlineWidth-Button-secondary-solid--focus": "var(--xmlui-outlineWidth-Button-secondary-solid--focus)",
|
|
3166
3198
|
"outlineColor-Button-secondary-solid--focus": "var(--xmlui-outlineColor-Button-secondary-solid--focus)",
|
|
3167
3199
|
"outlineStyle-Button-secondary-solid--focus": "var(--xmlui-outlineStyle-Button-secondary-solid--focus)",
|
|
@@ -3183,6 +3215,7 @@ export default {
|
|
|
3183
3215
|
"backgroundColor-Button-attention-solid": "var(--xmlui-backgroundColor-Button-attention-solid)",
|
|
3184
3216
|
"textColor-Button-attention-solid": "var(--xmlui-textColor-Button-attention-solid)",
|
|
3185
3217
|
"boxShadow-Button-attention-solid": "var(--xmlui-boxShadow-Button-attention-solid)",
|
|
3218
|
+
"transition-Button-attention-solid": "var(--xmlui-transition-Button-attention-solid)",
|
|
3186
3219
|
"outlineWidth-Button-attention-solid--focus": "var(--xmlui-outlineWidth-Button-attention-solid--focus)",
|
|
3187
3220
|
"outlineColor-Button-attention-solid--focus": "var(--xmlui-outlineColor-Button-attention-solid--focus)",
|
|
3188
3221
|
"outlineStyle-Button-attention-solid--focus": "var(--xmlui-outlineStyle-Button-attention-solid--focus)",
|
|
@@ -3295,11 +3328,17 @@ export default {
|
|
|
3295
3328
|
"textColor-Button-attention-ghost--active": "var(--xmlui-textColor-Button-attention-ghost--active)"
|
|
3296
3329
|
},
|
|
3297
3330
|
"defaultThemeVars": {
|
|
3331
|
+
"padding-Button": "$space-2 $space-4",
|
|
3332
|
+
"gap-Button": "$space-2",
|
|
3333
|
+
"borderColor-Button": "transparent",
|
|
3334
|
+
"backgroundColor-Button": "transparent",
|
|
3335
|
+
"transition-Button": "color 0.2s, background 0.2s",
|
|
3298
3336
|
"width-Button": "fit-content",
|
|
3299
3337
|
"height-Button": "fit-content",
|
|
3300
3338
|
"borderRadius-Button": "$borderRadius",
|
|
3301
3339
|
"fontSize-Button": "$fontSize-sm",
|
|
3302
3340
|
"fontWeight-Button": "$fontWeight-medium",
|
|
3341
|
+
"fontStyle-Button": "$fontStyle-normal",
|
|
3303
3342
|
"backgroundColor-Button-primary": "$color-primary-500",
|
|
3304
3343
|
"backgroundColor-Button-attention": "$backgroundColor-attention",
|
|
3305
3344
|
"borderColor-Button-attention": "$color-attention",
|
|
@@ -3655,40 +3694,6 @@ export default {
|
|
|
3655
3694
|
"description": "The `true` value of this property signals that the component is in an _intedeterminate state_.",
|
|
3656
3695
|
"defaultValue": false
|
|
3657
3696
|
},
|
|
3658
|
-
"label": {
|
|
3659
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
3660
|
-
"valueType": "string"
|
|
3661
|
-
},
|
|
3662
|
-
"labelPosition": {
|
|
3663
|
-
"description": "Places the label at the given position of the component.",
|
|
3664
|
-
"availableValues": [
|
|
3665
|
-
{
|
|
3666
|
-
"value": "start",
|
|
3667
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
3668
|
-
},
|
|
3669
|
-
{
|
|
3670
|
-
"value": "end",
|
|
3671
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
3672
|
-
},
|
|
3673
|
-
{
|
|
3674
|
-
"value": "top",
|
|
3675
|
-
"description": "The top of the input"
|
|
3676
|
-
},
|
|
3677
|
-
{
|
|
3678
|
-
"value": "bottom",
|
|
3679
|
-
"description": "The bottom of the input"
|
|
3680
|
-
}
|
|
3681
|
-
],
|
|
3682
|
-
"defaultValue": "end"
|
|
3683
|
-
},
|
|
3684
|
-
"labelWidth": {
|
|
3685
|
-
"description": "This property sets the width of the `Checkbox` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
3686
|
-
},
|
|
3687
|
-
"labelBreak": {
|
|
3688
|
-
"description": "This boolean value indicates whether the `Checkbox` label can be split into multiple lines if it would overflow the available label width.",
|
|
3689
|
-
"valueType": "boolean",
|
|
3690
|
-
"defaultValue": true
|
|
3691
|
-
},
|
|
3692
3697
|
"required": {
|
|
3693
3698
|
"description": "Set this property to `true` to indicate it must have a value before submitting the containing form.",
|
|
3694
3699
|
"valueType": "boolean",
|
|
@@ -3860,40 +3865,6 @@ export default {
|
|
|
3860
3865
|
"initialValue": {
|
|
3861
3866
|
"description": "This property sets the component's initial value."
|
|
3862
3867
|
},
|
|
3863
|
-
"label": {
|
|
3864
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
3865
|
-
"valueType": "string"
|
|
3866
|
-
},
|
|
3867
|
-
"labelPosition": {
|
|
3868
|
-
"description": "Places the label at the given position of the component.",
|
|
3869
|
-
"availableValues": [
|
|
3870
|
-
{
|
|
3871
|
-
"value": "start",
|
|
3872
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
3873
|
-
},
|
|
3874
|
-
{
|
|
3875
|
-
"value": "end",
|
|
3876
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
3877
|
-
},
|
|
3878
|
-
{
|
|
3879
|
-
"value": "top",
|
|
3880
|
-
"description": "The top of the input"
|
|
3881
|
-
},
|
|
3882
|
-
{
|
|
3883
|
-
"value": "bottom",
|
|
3884
|
-
"description": "The bottom of the input"
|
|
3885
|
-
}
|
|
3886
|
-
],
|
|
3887
|
-
"defaultValue": "top"
|
|
3888
|
-
},
|
|
3889
|
-
"labelWidth": {
|
|
3890
|
-
"description": "This property sets the width of the `ColorPicker` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
3891
|
-
},
|
|
3892
|
-
"labelBreak": {
|
|
3893
|
-
"description": "This boolean value indicates whether the `ColorPicker` label can be split into multiple lines if it would overflow the available label width.",
|
|
3894
|
-
"valueType": "boolean",
|
|
3895
|
-
"defaultValue": true
|
|
3896
|
-
},
|
|
3897
3868
|
"enabled": {
|
|
3898
3869
|
"description": "This boolean property value indicates whether the component responds to user events (`true`) or not (`false`).",
|
|
3899
3870
|
"valueType": "boolean",
|
|
@@ -4091,11 +4062,19 @@ export default {
|
|
|
4091
4062
|
},
|
|
4092
4063
|
"themeVars": {
|
|
4093
4064
|
"backgroundColor-ContentSeparator": "var(--xmlui-backgroundColor-ContentSeparator)",
|
|
4094
|
-
"size-ContentSeparator": "var(--xmlui-size-ContentSeparator)"
|
|
4065
|
+
"size-ContentSeparator": "var(--xmlui-size-ContentSeparator)",
|
|
4066
|
+
"marginTop-ContentSeparator": "var(--xmlui-marginTop-ContentSeparator)",
|
|
4067
|
+
"marginBottom-ContentSeparator": "var(--xmlui-marginBottom-ContentSeparator)",
|
|
4068
|
+
"marginVertical-ContentSeparator": "var(--xmlui-marginVertical-ContentSeparator)",
|
|
4069
|
+
"marginLeft-ContentSeparator": "var(--xmlui-marginLeft-ContentSeparator)",
|
|
4070
|
+
"marginRight-ContentSeparator": "var(--xmlui-marginRight-ContentSeparator)",
|
|
4071
|
+
"marginHorizontal-ContentSeparator": "var(--xmlui-marginHorizontal-ContentSeparator)"
|
|
4095
4072
|
},
|
|
4096
4073
|
"defaultThemeVars": {
|
|
4097
4074
|
"backgroundColor-ContentSeparator": "$color-surface-200",
|
|
4098
4075
|
"size-ContentSeparator": "1px",
|
|
4076
|
+
"marginVertical-ContentSeparator": "0",
|
|
4077
|
+
"marginHorizontal-ContentSeparator": "0",
|
|
4099
4078
|
"light": {},
|
|
4100
4079
|
"dark": {}
|
|
4101
4080
|
}
|
|
@@ -4254,40 +4233,6 @@ export default {
|
|
|
4254
4233
|
],
|
|
4255
4234
|
"defaultValue": "none"
|
|
4256
4235
|
},
|
|
4257
|
-
"label": {
|
|
4258
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
4259
|
-
"valueType": "string"
|
|
4260
|
-
},
|
|
4261
|
-
"labelPosition": {
|
|
4262
|
-
"description": "Places the label at the given position of the component.",
|
|
4263
|
-
"availableValues": [
|
|
4264
|
-
{
|
|
4265
|
-
"value": "start",
|
|
4266
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
4267
|
-
},
|
|
4268
|
-
{
|
|
4269
|
-
"value": "end",
|
|
4270
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
4271
|
-
},
|
|
4272
|
-
{
|
|
4273
|
-
"value": "top",
|
|
4274
|
-
"description": "The top of the input"
|
|
4275
|
-
},
|
|
4276
|
-
{
|
|
4277
|
-
"value": "bottom",
|
|
4278
|
-
"description": "The bottom of the input"
|
|
4279
|
-
}
|
|
4280
|
-
],
|
|
4281
|
-
"defaultValue": "top"
|
|
4282
|
-
},
|
|
4283
|
-
"labelWidth": {
|
|
4284
|
-
"description": "This property sets the width of the `DatePicker` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
4285
|
-
},
|
|
4286
|
-
"labelBreak": {
|
|
4287
|
-
"description": "This boolean value indicates whether the `DatePicker` label can be split into multiple lines if it would overflow the available label width.",
|
|
4288
|
-
"valueType": "boolean",
|
|
4289
|
-
"defaultValue": true
|
|
4290
|
-
},
|
|
4291
4236
|
"mode": {
|
|
4292
4237
|
"description": "The mode of the datepicker (single or range)",
|
|
4293
4238
|
"valueType": "string",
|
|
@@ -4352,20 +4297,20 @@ export default {
|
|
|
4352
4297
|
}
|
|
4353
4298
|
]
|
|
4354
4299
|
},
|
|
4355
|
-
"
|
|
4356
|
-
"description": "The
|
|
4300
|
+
"startDate": {
|
|
4301
|
+
"description": "The earliest month to start the month navigation from (inclusive). If not defined, the component allows any dates in the past. Accepts the same date format as the `initialValue`.Example: '2023-01-01' ensures the first month to select a date from is January 2023.",
|
|
4357
4302
|
"valueType": "string"
|
|
4358
4303
|
},
|
|
4359
|
-
"
|
|
4360
|
-
"description": "The
|
|
4304
|
+
"endDate": {
|
|
4305
|
+
"description": "The latest month to start the month navigation from (inclusive). If not defined, the component allows any future dates. Accepts the same date format as the `initialValue`.Example: '2023-12-31' ensures the last month to select a date from is December 2023.",
|
|
4361
4306
|
"valueType": "string"
|
|
4362
4307
|
},
|
|
4363
4308
|
"disabledDates": {
|
|
4364
|
-
"description": "An optional array of dates that are disabled",
|
|
4309
|
+
"description": "An optional array of dates that are to be disabled.",
|
|
4365
4310
|
"valueType": "any"
|
|
4366
4311
|
},
|
|
4367
4312
|
"inline": {
|
|
4368
|
-
"description": "
|
|
4313
|
+
"description": "If set to true, the calendar is always visible and its panel is rendered as part of the layout. If false, the calendar is shown in a popup when the input is focused or clicked.",
|
|
4369
4314
|
"valueType": "boolean",
|
|
4370
4315
|
"defaultValue": false
|
|
4371
4316
|
},
|
|
@@ -4573,40 +4518,6 @@ export default {
|
|
|
4573
4518
|
],
|
|
4574
4519
|
"defaultValue": "none"
|
|
4575
4520
|
},
|
|
4576
|
-
"label": {
|
|
4577
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
4578
|
-
"valueType": "string"
|
|
4579
|
-
},
|
|
4580
|
-
"labelPosition": {
|
|
4581
|
-
"description": "Places the label at the given position of the component.",
|
|
4582
|
-
"availableValues": [
|
|
4583
|
-
{
|
|
4584
|
-
"value": "start",
|
|
4585
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
4586
|
-
},
|
|
4587
|
-
{
|
|
4588
|
-
"value": "end",
|
|
4589
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
4590
|
-
},
|
|
4591
|
-
{
|
|
4592
|
-
"value": "top",
|
|
4593
|
-
"description": "The top of the input"
|
|
4594
|
-
},
|
|
4595
|
-
{
|
|
4596
|
-
"value": "bottom",
|
|
4597
|
-
"description": "The bottom of the input"
|
|
4598
|
-
}
|
|
4599
|
-
],
|
|
4600
|
-
"defaultValue": "top"
|
|
4601
|
-
},
|
|
4602
|
-
"labelWidth": {
|
|
4603
|
-
"description": "This property sets the width of the `DateInput` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
4604
|
-
},
|
|
4605
|
-
"labelBreak": {
|
|
4606
|
-
"description": "This boolean value indicates whether the `DateInput` label can be split into multiple lines if it would overflow the available label width.",
|
|
4607
|
-
"valueType": "boolean",
|
|
4608
|
-
"defaultValue": true
|
|
4609
|
-
},
|
|
4610
4521
|
"mode": {
|
|
4611
4522
|
"description": "The mode of the date input (single or range)",
|
|
4612
4523
|
"valueType": "string",
|
|
@@ -5417,40 +5328,6 @@ export default {
|
|
|
5417
5328
|
],
|
|
5418
5329
|
"defaultValue": "none"
|
|
5419
5330
|
},
|
|
5420
|
-
"label": {
|
|
5421
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
5422
|
-
"valueType": "string"
|
|
5423
|
-
},
|
|
5424
|
-
"labelPosition": {
|
|
5425
|
-
"description": "Places the label at the given position of the component.",
|
|
5426
|
-
"availableValues": [
|
|
5427
|
-
{
|
|
5428
|
-
"value": "start",
|
|
5429
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
5430
|
-
},
|
|
5431
|
-
{
|
|
5432
|
-
"value": "end",
|
|
5433
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
5434
|
-
},
|
|
5435
|
-
{
|
|
5436
|
-
"value": "top",
|
|
5437
|
-
"description": "The top of the input"
|
|
5438
|
-
},
|
|
5439
|
-
{
|
|
5440
|
-
"value": "bottom",
|
|
5441
|
-
"description": "The bottom of the input"
|
|
5442
|
-
}
|
|
5443
|
-
],
|
|
5444
|
-
"defaultValue": "top"
|
|
5445
|
-
},
|
|
5446
|
-
"labelWidth": {
|
|
5447
|
-
"description": "This property sets the width of the `FileInput` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
5448
|
-
},
|
|
5449
|
-
"labelBreak": {
|
|
5450
|
-
"description": "This boolean value indicates whether the `FileInput` label can be split into multiple lines if it would overflow the available label width.",
|
|
5451
|
-
"valueType": "boolean",
|
|
5452
|
-
"defaultValue": true
|
|
5453
|
-
},
|
|
5454
5331
|
"buttonVariant": {
|
|
5455
5332
|
"description": "The button variant to use",
|
|
5456
5333
|
"availableValues": [
|
|
@@ -5780,6 +5657,16 @@ export default {
|
|
|
5780
5657
|
"type": "boolean",
|
|
5781
5658
|
"defaultValue": false
|
|
5782
5659
|
},
|
|
5660
|
+
"hideButtonRowUntilDirty": {
|
|
5661
|
+
"description": "This property hides the button row until the form data is modified (dirty).",
|
|
5662
|
+
"type": "boolean",
|
|
5663
|
+
"defaultValue": false
|
|
5664
|
+
},
|
|
5665
|
+
"hideButtonRow": {
|
|
5666
|
+
"description": "This property hides the button row entirely when set to true.",
|
|
5667
|
+
"type": "boolean",
|
|
5668
|
+
"defaultValue": false
|
|
5669
|
+
},
|
|
5783
5670
|
"submitUrl": {
|
|
5784
5671
|
"description": "URL to submit the form data."
|
|
5785
5672
|
},
|
|
@@ -5806,6 +5693,9 @@ export default {
|
|
|
5806
5693
|
}
|
|
5807
5694
|
},
|
|
5808
5695
|
"events": {
|
|
5696
|
+
"willSubmit": {
|
|
5697
|
+
"description": "The form infrastructure fires this event just before the form is submitted. The event argument is the current `data` value to be submitted. You can cancel the submission by returning `false` from the event handler."
|
|
5698
|
+
},
|
|
5809
5699
|
"submit": {
|
|
5810
5700
|
"description": "The form infrastructure fires this event when the form is submitted. The event argument is the current `data` value to save."
|
|
5811
5701
|
},
|
|
@@ -5839,7 +5729,8 @@ export default {
|
|
|
5839
5729
|
},
|
|
5840
5730
|
"themeVars": {
|
|
5841
5731
|
"gap-Form": "var(--xmlui-gap-Form)",
|
|
5842
|
-
"gap-buttonRow-Form": "var(--xmlui-gap-buttonRow-Form)"
|
|
5732
|
+
"gap-buttonRow-Form": "var(--xmlui-gap-buttonRow-Form)",
|
|
5733
|
+
"marginTop-buttonRow-Form": "var(--xmlui-marginTop-buttonRow-Form)"
|
|
5843
5734
|
},
|
|
5844
5735
|
"defaultThemeVars": {
|
|
5845
5736
|
"gap-Form": "$space-4",
|
|
@@ -5855,13 +5746,14 @@ export default {
|
|
|
5855
5746
|
"textColor-ValidationDisplay-error": "$color-error",
|
|
5856
5747
|
"textColor-ValidationDisplay-warning": "$color-warning",
|
|
5857
5748
|
"textColor-ValidationDisplay-info": "$color-info",
|
|
5858
|
-
"textColor-ValidationDisplay-valid": "$color-valid"
|
|
5749
|
+
"textColor-ValidationDisplay-valid": "$color-valid",
|
|
5750
|
+
"marginTop-buttonRow-Form": "$space-4"
|
|
5859
5751
|
}
|
|
5860
5752
|
},
|
|
5861
5753
|
"FormItem": {
|
|
5862
5754
|
"status": "stable",
|
|
5863
5755
|
"allowArbitraryProps": true,
|
|
5864
|
-
"description": "`FormItem` wraps individual input controls within a `Form`, providing data binding, validation, labeling, and layout functionality. It connects form controls to the parent form's data model and handles validation feedback automatically.",
|
|
5756
|
+
"description": "`FormItem` wraps individual input controls within a `Form`, providing data binding, validation, labeling, and layout functionality. It connects form controls to the parent form's data model and handles validation feedback automatically.\n\n> **Note:** `FormItem` must be used inside a `Form` component.",
|
|
5865
5757
|
"props": {
|
|
5866
5758
|
"bindTo": {
|
|
5867
5759
|
"description": "This property binds a particular input field to one of the attributes of the `Form` data. It names the property of the form's `data` data to get the input's initial value.When the field is saved, its value will be stored in the `data` property with this name. If the property is not set, the input will be bound to an internal data field but not submitted."
|
|
@@ -6108,6 +6000,11 @@ export default {
|
|
|
6108
6000
|
"description": "This property defines the gap between the adornments and the input area.",
|
|
6109
6001
|
"valueType": "string",
|
|
6110
6002
|
"defaultValue": "0"
|
|
6003
|
+
},
|
|
6004
|
+
"noSubmit": {
|
|
6005
|
+
"description": "When set to `true`, the field will not be included in the form's submitted data. This is useful for fields that should be present in the form but not submitted, similar to hidden fields. If multiple FormItems reference the same `bindTo` value and any of them has `noSubmit` set to `true`, the field will NOT be submitted.",
|
|
6006
|
+
"type": "boolean",
|
|
6007
|
+
"defaultValue": false
|
|
6111
6008
|
}
|
|
6112
6009
|
},
|
|
6113
6010
|
"events": {
|
|
@@ -6224,14 +6121,26 @@ export default {
|
|
|
6224
6121
|
"description": "This property determines the text displayed in the heading. `Heading` also accepts nested text instead of specifying the `value`. If both `value` and a nested text are used, the `value` will be displayed."
|
|
6225
6122
|
},
|
|
6226
6123
|
"level": {
|
|
6227
|
-
"description": "This property sets the visual significance (level) of the heading.",
|
|
6124
|
+
"description": "This property sets the visual significance (level) of the heading. Accepts multiple formats: `h1`-`h6`, `H1`-`H6`, or `1`-`6`.Invalid values default to `h1`.",
|
|
6228
6125
|
"availableValues": [
|
|
6229
6126
|
"h1",
|
|
6230
6127
|
"h2",
|
|
6231
6128
|
"h3",
|
|
6232
6129
|
"h4",
|
|
6233
6130
|
"h5",
|
|
6234
|
-
"h6"
|
|
6131
|
+
"h6",
|
|
6132
|
+
"H1",
|
|
6133
|
+
"H2",
|
|
6134
|
+
"H3",
|
|
6135
|
+
"H4",
|
|
6136
|
+
"H5",
|
|
6137
|
+
"H6",
|
|
6138
|
+
"1",
|
|
6139
|
+
"2",
|
|
6140
|
+
"3",
|
|
6141
|
+
"4",
|
|
6142
|
+
"5",
|
|
6143
|
+
"6"
|
|
6235
6144
|
],
|
|
6236
6145
|
"defaultValue": "h1"
|
|
6237
6146
|
},
|
|
@@ -7248,11 +7157,9 @@ export default {
|
|
|
7248
7157
|
},
|
|
7249
7158
|
"defaultThemeVars": {
|
|
7250
7159
|
"fontSize-H1": "$fontSize-2xl",
|
|
7251
|
-
"lineHeight-H1": "$lineHeight-2xl",
|
|
7252
7160
|
"marginTop-H1": "0",
|
|
7253
7161
|
"marginBottom-H1": "0",
|
|
7254
7162
|
"fontSize-H1-markdown": "$fontSize-2xl",
|
|
7255
|
-
"lineHeight-H1-markdown": "$lineHeight-2xl",
|
|
7256
7163
|
"marginTop-H1-markdown": "0",
|
|
7257
7164
|
"marginBottom-H1-markdown": "$space-6",
|
|
7258
7165
|
"light": {},
|
|
@@ -7764,11 +7671,9 @@ export default {
|
|
|
7764
7671
|
},
|
|
7765
7672
|
"defaultThemeVars": {
|
|
7766
7673
|
"fontSize-H2": "$fontSize-xl",
|
|
7767
|
-
"lineHeight-H2": "$lineHeight-xl",
|
|
7768
7674
|
"marginTop-H2": "0",
|
|
7769
7675
|
"marginBottom-H2": "0",
|
|
7770
7676
|
"fontSize-H2-markdown": "$fontSize-xl",
|
|
7771
|
-
"lineHeight-H2-markdown": "$lineHeight-xl",
|
|
7772
7677
|
"marginTop-H2-markdown": "$space-10",
|
|
7773
7678
|
"marginBottom-H2-markdown": "$space-3",
|
|
7774
7679
|
"light": {},
|
|
@@ -8280,11 +8185,9 @@ export default {
|
|
|
8280
8185
|
},
|
|
8281
8186
|
"defaultThemeVars": {
|
|
8282
8187
|
"fontSize-H3": "$fontSize-lg",
|
|
8283
|
-
"lineHeight-H3": "$lineHeight-lg",
|
|
8284
8188
|
"marginTop-H3": "0",
|
|
8285
8189
|
"marginBottom-H3": "0",
|
|
8286
8190
|
"fontSize-H3-markdown": "$fontSize-lg",
|
|
8287
|
-
"lineHeight-H3-markdown": "$lineHeight-lg",
|
|
8288
8191
|
"marginTop-H3-markdown": "$space-6",
|
|
8289
8192
|
"marginBottom-H3-markdown": "$space-2",
|
|
8290
8193
|
"light": {},
|
|
@@ -8796,11 +8699,9 @@ export default {
|
|
|
8796
8699
|
},
|
|
8797
8700
|
"defaultThemeVars": {
|
|
8798
8701
|
"fontSize-H4": "$fontSize-base",
|
|
8799
|
-
"lineHeight-H4": "$lineHeight-base",
|
|
8800
8702
|
"marginTop-H4": "0",
|
|
8801
8703
|
"marginBottom-H4": "0",
|
|
8802
8704
|
"fontSize-H4-markdown": "$fontSize-base",
|
|
8803
|
-
"lineHeight-H4-markdown": "$lineHeight-base",
|
|
8804
8705
|
"marginTop-H4-markdown": "$space-5",
|
|
8805
8706
|
"marginBottom-H4-markdown": "$space-1",
|
|
8806
8707
|
"light": {},
|
|
@@ -9312,11 +9213,9 @@ export default {
|
|
|
9312
9213
|
},
|
|
9313
9214
|
"defaultThemeVars": {
|
|
9314
9215
|
"fontSize-H5": "$fontSize-sm",
|
|
9315
|
-
"lineHeight-H5": "$lineHeight-sm",
|
|
9316
9216
|
"marginTop-H5": "0",
|
|
9317
9217
|
"marginBottom-H5": "0",
|
|
9318
9218
|
"fontSize-H5-markdown": "$fontSize-sm",
|
|
9319
|
-
"lineHeight-H5-markdown": "$lineHeight-sm",
|
|
9320
9219
|
"marginTop-H5-markdown": "0",
|
|
9321
9220
|
"marginBottom-H5-markdown": "$space-0",
|
|
9322
9221
|
"light": {},
|
|
@@ -9828,11 +9727,9 @@ export default {
|
|
|
9828
9727
|
},
|
|
9829
9728
|
"defaultThemeVars": {
|
|
9830
9729
|
"fontSize-H6": "$fontSize-xs",
|
|
9831
|
-
"lineHeight-H6": "$lineHeight-xs",
|
|
9832
9730
|
"marginTop-H6": "0",
|
|
9833
9731
|
"marginBottom-H6": "0",
|
|
9834
9732
|
"fontSize-H6-markdown": "$fontSize-xs",
|
|
9835
|
-
"lineHeight-H6-markdown": "$lineHeight-xs",
|
|
9836
9733
|
"marginTop-H6-markdown": "0",
|
|
9837
9734
|
"marginBottom-H6-markdown": "$space-0",
|
|
9838
9735
|
"light": {},
|
|
@@ -9878,7 +9775,7 @@ export default {
|
|
|
9878
9775
|
"size-Icon": "var(--xmlui-size-Icon)"
|
|
9879
9776
|
},
|
|
9880
9777
|
"defaultThemeVars": {
|
|
9881
|
-
"size-Icon": "1.
|
|
9778
|
+
"size-Icon": "1.2em"
|
|
9882
9779
|
}
|
|
9883
9780
|
},
|
|
9884
9781
|
"IFrame": {
|
|
@@ -10012,6 +9909,9 @@ export default {
|
|
|
10012
9909
|
"src": {
|
|
10013
9910
|
"description": "This property is used to indicate the source (path) of the image to display. When not defined, no image is displayed."
|
|
10014
9911
|
},
|
|
9912
|
+
"data": {
|
|
9913
|
+
"description": "This property contains the binary data that represents the image."
|
|
9914
|
+
},
|
|
10015
9915
|
"alt": {
|
|
10016
9916
|
"description": "This optional property specifies an alternate text for the image."
|
|
10017
9917
|
},
|
|
@@ -11157,43 +11057,9 @@ export default {
|
|
|
11157
11057
|
"initialValue": {
|
|
11158
11058
|
"description": "This property sets the component's initial value."
|
|
11159
11059
|
},
|
|
11160
|
-
"
|
|
11161
|
-
"description": "This property sets the
|
|
11162
|
-
"valueType": "
|
|
11163
|
-
},
|
|
11164
|
-
"labelPosition": {
|
|
11165
|
-
"description": "Places the label at the given position of the component.",
|
|
11166
|
-
"availableValues": [
|
|
11167
|
-
{
|
|
11168
|
-
"value": "start",
|
|
11169
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
11170
|
-
},
|
|
11171
|
-
{
|
|
11172
|
-
"value": "end",
|
|
11173
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
11174
|
-
},
|
|
11175
|
-
{
|
|
11176
|
-
"value": "top",
|
|
11177
|
-
"description": "The top of the input"
|
|
11178
|
-
},
|
|
11179
|
-
{
|
|
11180
|
-
"value": "bottom",
|
|
11181
|
-
"description": "The bottom of the input"
|
|
11182
|
-
}
|
|
11183
|
-
],
|
|
11184
|
-
"defaultValue": "top"
|
|
11185
|
-
},
|
|
11186
|
-
"labelWidth": {
|
|
11187
|
-
"description": "This property sets the width of the `NumberBox` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
11188
|
-
},
|
|
11189
|
-
"labelBreak": {
|
|
11190
|
-
"description": "This boolean value indicates whether the `NumberBox` label can be split into multiple lines if it would overflow the available label width.",
|
|
11191
|
-
"valueType": "boolean",
|
|
11192
|
-
"defaultValue": true
|
|
11193
|
-
},
|
|
11194
|
-
"maxLength": {
|
|
11195
|
-
"description": "This property sets the maximum length of the input it accepts.",
|
|
11196
|
-
"valueType": "number"
|
|
11060
|
+
"maxLength": {
|
|
11061
|
+
"description": "This property sets the maximum length of the input it accepts.",
|
|
11062
|
+
"valueType": "number"
|
|
11197
11063
|
},
|
|
11198
11064
|
"autoFocus": {
|
|
11199
11065
|
"description": "If this property is set to `true`, the component gets the focus automatically when displayed.",
|
|
@@ -11436,6 +11302,9 @@ export default {
|
|
|
11436
11302
|
"description": "This boolean property indicates whether the option is enabled or disabled.",
|
|
11437
11303
|
"valueType": "boolean",
|
|
11438
11304
|
"defaultValue": true
|
|
11305
|
+
},
|
|
11306
|
+
"keywords": {
|
|
11307
|
+
"description": "An array of keywords that can be used for searching and filtering the option. These keywords are not displayed but help users find the option through search."
|
|
11439
11308
|
}
|
|
11440
11309
|
}
|
|
11441
11310
|
},
|
|
@@ -11471,6 +11340,16 @@ export default {
|
|
|
11471
11340
|
"description": "The fallback path when the current URL does not match any of the paths of the pages.",
|
|
11472
11341
|
"defaultValue": "/"
|
|
11473
11342
|
}
|
|
11343
|
+
},
|
|
11344
|
+
"themeVars": {
|
|
11345
|
+
"paddingVertical-Pages": "var(--xmlui-paddingVertical-Pages)",
|
|
11346
|
+
"paddingHorizontal-Pages": "var(--xmlui-paddingHorizontal-Pages)",
|
|
11347
|
+
"gap-Pages": "var(--xmlui-gap-Pages)"
|
|
11348
|
+
},
|
|
11349
|
+
"defaultThemeVars": {
|
|
11350
|
+
"paddingVertical-Pages": "$space-5",
|
|
11351
|
+
"paddingHorizontal-Pages": "$space-4",
|
|
11352
|
+
"gap-Pages": "$space-5"
|
|
11474
11353
|
}
|
|
11475
11354
|
},
|
|
11476
11355
|
"Pagination": {
|
|
@@ -11792,40 +11671,6 @@ export default {
|
|
|
11792
11671
|
"orientation": {
|
|
11793
11672
|
"description": "(*** NOT IMPLEMENTED YET ***) This property sets the orientation of the options within the radio group.",
|
|
11794
11673
|
"isInternal": true
|
|
11795
|
-
},
|
|
11796
|
-
"label": {
|
|
11797
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
11798
|
-
"valueType": "string"
|
|
11799
|
-
},
|
|
11800
|
-
"labelPosition": {
|
|
11801
|
-
"description": "Places the label at the given position of the component.",
|
|
11802
|
-
"availableValues": [
|
|
11803
|
-
{
|
|
11804
|
-
"value": "start",
|
|
11805
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
11806
|
-
},
|
|
11807
|
-
{
|
|
11808
|
-
"value": "end",
|
|
11809
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
11810
|
-
},
|
|
11811
|
-
{
|
|
11812
|
-
"value": "top",
|
|
11813
|
-
"description": "The top of the input"
|
|
11814
|
-
},
|
|
11815
|
-
{
|
|
11816
|
-
"value": "bottom",
|
|
11817
|
-
"description": "The bottom of the input"
|
|
11818
|
-
}
|
|
11819
|
-
],
|
|
11820
|
-
"defaultValue": "top"
|
|
11821
|
-
},
|
|
11822
|
-
"labelWidth": {
|
|
11823
|
-
"description": "This property sets the width of the `RadioGroup` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
11824
|
-
},
|
|
11825
|
-
"labelBreak": {
|
|
11826
|
-
"description": "This boolean value indicates whether the `RadioGroup` label can be split into multiple lines if it would overflow the available label width.",
|
|
11827
|
-
"valueType": "boolean",
|
|
11828
|
-
"defaultValue": true
|
|
11829
11674
|
}
|
|
11830
11675
|
},
|
|
11831
11676
|
"events": {
|
|
@@ -11967,40 +11812,6 @@ export default {
|
|
|
11967
11812
|
],
|
|
11968
11813
|
"defaultValue": "none"
|
|
11969
11814
|
},
|
|
11970
|
-
"label": {
|
|
11971
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
11972
|
-
"valueType": "string"
|
|
11973
|
-
},
|
|
11974
|
-
"labelPosition": {
|
|
11975
|
-
"description": "Places the label at the given position of the component.",
|
|
11976
|
-
"availableValues": [
|
|
11977
|
-
{
|
|
11978
|
-
"value": "start",
|
|
11979
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
11980
|
-
},
|
|
11981
|
-
{
|
|
11982
|
-
"value": "end",
|
|
11983
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
11984
|
-
},
|
|
11985
|
-
{
|
|
11986
|
-
"value": "top",
|
|
11987
|
-
"description": "The top of the input"
|
|
11988
|
-
},
|
|
11989
|
-
{
|
|
11990
|
-
"value": "bottom",
|
|
11991
|
-
"description": "The bottom of the input"
|
|
11992
|
-
}
|
|
11993
|
-
],
|
|
11994
|
-
"defaultValue": "top"
|
|
11995
|
-
},
|
|
11996
|
-
"labelWidth": {
|
|
11997
|
-
"description": "This property sets the width of the `Select` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
11998
|
-
},
|
|
11999
|
-
"labelBreak": {
|
|
12000
|
-
"description": "This boolean value indicates whether the `Select` label can be split into multiple lines if it would overflow the available label width.",
|
|
12001
|
-
"valueType": "boolean",
|
|
12002
|
-
"defaultValue": false
|
|
12003
|
-
},
|
|
12004
11815
|
"optionLabelTemplate": {
|
|
12005
11816
|
"description": "This property allows replacing the default template to display an option in the dropdown list.",
|
|
12006
11817
|
"valueType": "ComponentDef"
|
|
@@ -12079,13 +11890,38 @@ export default {
|
|
|
12079
11890
|
}
|
|
12080
11891
|
},
|
|
12081
11892
|
"themeVars": {
|
|
12082
|
-
"
|
|
12083
|
-
"
|
|
12084
|
-
"
|
|
12085
|
-
"
|
|
12086
|
-
"
|
|
12087
|
-
"
|
|
12088
|
-
"
|
|
11893
|
+
"border-Select": "var(--xmlui-border-Select)",
|
|
11894
|
+
"borderHorizontal-Select": "var(--xmlui-borderHorizontal-Select, var(--xmlui-border-Select))",
|
|
11895
|
+
"borderVertical-Select": "var(--xmlui-borderVertical-Select, var(--xmlui-border-Select))",
|
|
11896
|
+
"borderLeft-Select": "var(--xmlui-borderLeft-Select, var(--xmlui-borderHorizontal-Select, var(--xmlui-border-Select)))",
|
|
11897
|
+
"borderRight-Select": "var(--xmlui-borderRight-Select, var(--xmlui-borderHorizontal-Select, var(--xmlui-border-Select)))",
|
|
11898
|
+
"borderTop-Select": "var(--xmlui-borderTop-Select, var(--xmlui-borderVertical-Select, var(--xmlui-border-Select)))",
|
|
11899
|
+
"borderBottom-Select": "var(--xmlui-borderBottom-Select, var(--xmlui-borderVertical-Select, var(--xmlui-border-Select)))",
|
|
11900
|
+
"borderWidth-Select": "var(--xmlui-borderWidth-Select)",
|
|
11901
|
+
"borderHorizontalWidth-Select": "var(--xmlui-borderHorizontalWidth-Select, var(--xmlui-borderWidth-Select))",
|
|
11902
|
+
"borderLeftWidth-Select": "var(--xmlui-borderLeftWidth-Select, var(--xmlui-borderHorizontalWidth-Select, var(--xmlui-borderWidth-Select)))",
|
|
11903
|
+
"borderRightWidth-Select": "var(--xmlui-borderRightWidth-Select, var(--xmlui-borderHorizontalWidth-Select, var(--xmlui-borderWidth-Select)))",
|
|
11904
|
+
"borderVerticalWidth-Select": "var(--xmlui-borderVerticalWidth-Select, var(--xmlui-borderWidth-Select))",
|
|
11905
|
+
"borderTopWidth-Select": "var(--xmlui-borderTopWidth-Select, var(--xmlui-borderVerticalWidth-Select, var(--xmlui-borderWidth-Select)))",
|
|
11906
|
+
"borderBottomWidth-Select": "var(--xmlui-borderBottomWidth-Select, var(--xmlui-borderVerticalWidth-Select, var(--xmlui-borderWidth-Select)))",
|
|
11907
|
+
"borderStyle-Select": "var(--xmlui-borderStyle-Select)",
|
|
11908
|
+
"borderHorizontalStyle-Select": "var(--xmlui-borderHorizontalStyle-Select, var(--xmlui-borderStyle-Select))",
|
|
11909
|
+
"borderLeftStyle-Select": "var(--xmlui-borderLeftStyle-Select, var(--xmlui-borderHorizontalStyle-Select, var(--xmlui-borderStyle-Select)))",
|
|
11910
|
+
"borderRightStyle-Select": "var(--xmlui-borderRightStyle-Select, var(--xmlui-borderHorizontalStyle-Select, var(--xmlui-borderStyle-Select)))",
|
|
11911
|
+
"borderVerticalStyle-Select": "var(--xmlui-borderVerticalStyle-Select, var(--xmlui-borderStyle-Select))",
|
|
11912
|
+
"borderTopStyle-Select": "var(--xmlui-borderTopStyle-Select, var(--xmlui-borderVerticalStyle-Select, var(--xmlui-borderStyle-Select)))",
|
|
11913
|
+
"borderBottomStyle-Select": "var(--xmlui-borderBottomStyle-Select, var(--xmlui-borderVerticalStyle-Select, var(--xmlui-borderStyle-Select)))",
|
|
11914
|
+
"borderColor-Select": "var(--xmlui-borderColor-Select)",
|
|
11915
|
+
"borderHorizontalColor-Select": "var(--xmlui-borderHorizontalColor-Select, var(--xmlui-borderColor-Select))",
|
|
11916
|
+
"borderLeftColor-Select": "var(--xmlui-borderLeftColor-Select, var(--xmlui-borderHorizontalColor-Select, var(--xmlui-borderColor-Select)))",
|
|
11917
|
+
"borderRightColor-Select": "var(--xmlui-borderRightColor-Select, var(--xmlui-borderHorizontalColor-Select, var(--xmlui-borderColor-Select)))",
|
|
11918
|
+
"borderVerticalColor-Select": "var(--xmlui-borderVerticalColor-Select, var(--xmlui-borderColor-Select))",
|
|
11919
|
+
"borderTopColor-Select": "var(--xmlui-borderTopColor-Select, var(--xmlui-borderVerticalColor-Select, var(--xmlui-borderColor-Select)))",
|
|
11920
|
+
"borderBottomColor-Select": "var(--xmlui-borderBottomColor-Select, var(--xmlui-borderVerticalColor-Select, var(--xmlui-borderColor-Select)))",
|
|
11921
|
+
"borderStartStartRadius-Select": "var(--xmlui-borderStartStartRadius-Select, var(--xmlui-borderRadius-Select))",
|
|
11922
|
+
"borderStartEndRadius-Select": "var(--xmlui-borderStartEndRadius-Select, var(--xmlui-borderRadius-Select))",
|
|
11923
|
+
"borderEndStartRadius-Select": "var(--xmlui-borderEndStartRadius-Select, var(--xmlui-borderRadius-Select))",
|
|
11924
|
+
"borderEndEndRadius-Select": "var(--xmlui-borderEndEndRadius-Select, var(--xmlui-borderRadius-Select))",
|
|
12089
11925
|
"padding-Select": "var(--xmlui-padding-Select)",
|
|
12090
11926
|
"paddingHorizontal-Select": "var(--xmlui-paddingHorizontal-Select, var(--xmlui-padding-Select))",
|
|
12091
11927
|
"paddingVertical-Select": "var(--xmlui-paddingVertical-Select, var(--xmlui-padding-Select))",
|
|
@@ -12093,24 +11929,21 @@ export default {
|
|
|
12093
11929
|
"paddingRight-Select": "var(--xmlui-paddingRight-Select, var(--xmlui-paddingHorizontal-Select, var(--xmlui-padding-Select)))",
|
|
12094
11930
|
"paddingTop-Select": "var(--xmlui-paddingTop-Select, var(--xmlui-paddingVertical-Select, var(--xmlui-padding-Select)))",
|
|
12095
11931
|
"paddingBottom-Select": "var(--xmlui-paddingBottom-Select, var(--xmlui-paddingVertical-Select, var(--xmlui-padding-Select)))",
|
|
12096
|
-
"
|
|
12097
|
-
"
|
|
12098
|
-
"
|
|
12099
|
-
"
|
|
12100
|
-
"
|
|
12101
|
-
"
|
|
12102
|
-
"
|
|
12103
|
-
"Input:textColor-placeholder-Select-warning": "var(--xmlui-textColor-placeholder-Select-warning)",
|
|
12104
|
-
"Input:textColor-Select-warning": "var(--xmlui-textColor-Select-warning)",
|
|
12105
|
-
"Input:fontSize-Select-success": "var(--xmlui-fontSize-Select-success)",
|
|
12106
|
-
"Input:textColor-placeholder-Select-success": "var(--xmlui-textColor-placeholder-Select-success)",
|
|
12107
|
-
"Input:textColor-Select-success": "var(--xmlui-textColor-Select-success)",
|
|
11932
|
+
"padding-item-Select": "var(--xmlui-padding-item-Select)",
|
|
11933
|
+
"paddingHorizontal-item-Select": "var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select))",
|
|
11934
|
+
"paddingVertical-item-Select": "var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select))",
|
|
11935
|
+
"paddingLeft-item-Select": "var(--xmlui-paddingLeft-item-Select, var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select)))",
|
|
11936
|
+
"paddingRight-item-Select": "var(--xmlui-paddingRight-item-Select, var(--xmlui-paddingHorizontal-item-Select, var(--xmlui-padding-item-Select)))",
|
|
11937
|
+
"paddingTop-item-Select": "var(--xmlui-paddingTop-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)))",
|
|
11938
|
+
"paddingBottom-item-Select": "var(--xmlui-paddingBottom-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)))",
|
|
12108
11939
|
"Input:borderRadius-Select-default": "var(--xmlui-borderRadius-Select-default)",
|
|
12109
11940
|
"Input:borderColor-Select-default": "var(--xmlui-borderColor-Select-default)",
|
|
12110
11941
|
"Input:borderWidth-Select-default": "var(--xmlui-borderWidth-Select-default)",
|
|
12111
11942
|
"Input:borderStyle-Select-default": "var(--xmlui-borderStyle-Select-default)",
|
|
11943
|
+
"Input:fontSize-Select-default": "var(--xmlui-fontSize-Select-default)",
|
|
12112
11944
|
"Input:backgroundColor-Select-default": "var(--xmlui-backgroundColor-Select-default)",
|
|
12113
11945
|
"Input:boxShadow-Select-default": "var(--xmlui-boxShadow-Select-default)",
|
|
11946
|
+
"Input:textColor-Select-default": "var(--xmlui-textColor-Select-default)",
|
|
12114
11947
|
"Input:borderColor-Select-default--hover": "var(--xmlui-borderColor-Select-default--hover)",
|
|
12115
11948
|
"Input:backgroundColor-Select-default--hover": "var(--xmlui-backgroundColor-Select-default--hover)",
|
|
12116
11949
|
"Input:boxShadow-Select-default--hover": "var(--xmlui-boxShadow-Select-default--hover)",
|
|
@@ -12119,13 +11952,16 @@ export default {
|
|
|
12119
11952
|
"Input:outlineColor-Select-default--focus": "var(--xmlui-outlineColor-Select-default--focus)",
|
|
12120
11953
|
"Input:outlineStyle-Select-default--focus": "var(--xmlui-outlineStyle-Select-default--focus)",
|
|
12121
11954
|
"Input:outlineOffset-Select-default--focus": "var(--xmlui-outlineOffset-Select-default--focus)",
|
|
11955
|
+
"Input:textColor-placeholder-Select-default": "var(--xmlui-textColor-placeholder-Select-default)",
|
|
12122
11956
|
"Input:fontSize-placeholder-Select-default": "var(--xmlui-fontSize-placeholder-Select-default)",
|
|
12123
11957
|
"Input:borderRadius-Select-error": "var(--xmlui-borderRadius-Select-error)",
|
|
12124
11958
|
"Input:borderColor-Select-error": "var(--xmlui-borderColor-Select-error)",
|
|
12125
11959
|
"Input:borderWidth-Select-error": "var(--xmlui-borderWidth-Select-error)",
|
|
12126
11960
|
"Input:borderStyle-Select-error": "var(--xmlui-borderStyle-Select-error)",
|
|
11961
|
+
"Input:fontSize-Select-error": "var(--xmlui-fontSize-Select-error)",
|
|
12127
11962
|
"Input:backgroundColor-Select-error": "var(--xmlui-backgroundColor-Select-error)",
|
|
12128
11963
|
"Input:boxShadow-Select-error": "var(--xmlui-boxShadow-Select-error)",
|
|
11964
|
+
"Input:textColor-Select-error": "var(--xmlui-textColor-Select-error)",
|
|
12129
11965
|
"Input:borderColor-Select-error--hover": "var(--xmlui-borderColor-Select-error--hover)",
|
|
12130
11966
|
"Input:backgroundColor-Select-error--hover": "var(--xmlui-backgroundColor-Select-error--hover)",
|
|
12131
11967
|
"Input:boxShadow-Select-error--hover": "var(--xmlui-boxShadow-Select-error--hover)",
|
|
@@ -12134,13 +11970,16 @@ export default {
|
|
|
12134
11970
|
"Input:outlineColor-Select-error--focus": "var(--xmlui-outlineColor-Select-error--focus)",
|
|
12135
11971
|
"Input:outlineStyle-Select-error--focus": "var(--xmlui-outlineStyle-Select-error--focus)",
|
|
12136
11972
|
"Input:outlineOffset-Select-error--focus": "var(--xmlui-outlineOffset-Select-error--focus)",
|
|
11973
|
+
"Input:textColor-placeholder-Select-error": "var(--xmlui-textColor-placeholder-Select-error)",
|
|
12137
11974
|
"Input:fontSize-placeholder-Select-error": "var(--xmlui-fontSize-placeholder-Select-error)",
|
|
12138
11975
|
"Input:borderRadius-Select-warning": "var(--xmlui-borderRadius-Select-warning)",
|
|
12139
11976
|
"Input:borderColor-Select-warning": "var(--xmlui-borderColor-Select-warning)",
|
|
12140
11977
|
"Input:borderWidth-Select-warning": "var(--xmlui-borderWidth-Select-warning)",
|
|
12141
11978
|
"Input:borderStyle-Select-warning": "var(--xmlui-borderStyle-Select-warning)",
|
|
11979
|
+
"Input:fontSize-Select-warning": "var(--xmlui-fontSize-Select-warning)",
|
|
12142
11980
|
"Input:backgroundColor-Select-warning": "var(--xmlui-backgroundColor-Select-warning)",
|
|
12143
11981
|
"Input:boxShadow-Select-warning": "var(--xmlui-boxShadow-Select-warning)",
|
|
11982
|
+
"Input:textColor-Select-warning": "var(--xmlui-textColor-Select-warning)",
|
|
12144
11983
|
"Input:borderColor-Select-warning--hover": "var(--xmlui-borderColor-Select-warning--hover)",
|
|
12145
11984
|
"Input:backgroundColor-Select-warning--hover": "var(--xmlui-backgroundColor-Select-warning--hover)",
|
|
12146
11985
|
"Input:boxShadow-Select-warning--hover": "var(--xmlui-boxShadow-Select-warning--hover)",
|
|
@@ -12149,13 +11988,16 @@ export default {
|
|
|
12149
11988
|
"Input:outlineColor-Select-warning--focus": "var(--xmlui-outlineColor-Select-warning--focus)",
|
|
12150
11989
|
"Input:outlineStyle-Select-warning--focus": "var(--xmlui-outlineStyle-Select-warning--focus)",
|
|
12151
11990
|
"Input:outlineOffset-Select-warning--focus": "var(--xmlui-outlineOffset-Select-warning--focus)",
|
|
11991
|
+
"Input:textColor-placeholder-Select-warning": "var(--xmlui-textColor-placeholder-Select-warning)",
|
|
12152
11992
|
"Input:fontSize-placeholder-Select-warning": "var(--xmlui-fontSize-placeholder-Select-warning)",
|
|
12153
11993
|
"Input:borderRadius-Select-success": "var(--xmlui-borderRadius-Select-success)",
|
|
12154
11994
|
"Input:borderColor-Select-success": "var(--xmlui-borderColor-Select-success)",
|
|
12155
11995
|
"Input:borderWidth-Select-success": "var(--xmlui-borderWidth-Select-success)",
|
|
12156
11996
|
"Input:borderStyle-Select-success": "var(--xmlui-borderStyle-Select-success)",
|
|
11997
|
+
"Input:fontSize-Select-success": "var(--xmlui-fontSize-Select-success)",
|
|
12157
11998
|
"Input:backgroundColor-Select-success": "var(--xmlui-backgroundColor-Select-success)",
|
|
12158
11999
|
"Input:boxShadow-Select-success": "var(--xmlui-boxShadow-Select-success)",
|
|
12000
|
+
"Input:textColor-Select-success": "var(--xmlui-textColor-Select-success)",
|
|
12159
12001
|
"Input:borderColor-Select-success--hover": "var(--xmlui-borderColor-Select-success--hover)",
|
|
12160
12002
|
"Input:backgroundColor-Select-success--hover": "var(--xmlui-backgroundColor-Select-success--hover)",
|
|
12161
12003
|
"Input:boxShadow-Select-success--hover": "var(--xmlui-boxShadow-Select-success--hover)",
|
|
@@ -12164,11 +12006,16 @@ export default {
|
|
|
12164
12006
|
"Input:outlineColor-Select-success--focus": "var(--xmlui-outlineColor-Select-success--focus)",
|
|
12165
12007
|
"Input:outlineStyle-Select-success--focus": "var(--xmlui-outlineStyle-Select-success--focus)",
|
|
12166
12008
|
"Input:outlineOffset-Select-success--focus": "var(--xmlui-outlineOffset-Select-success--focus)",
|
|
12009
|
+
"Input:textColor-placeholder-Select-success": "var(--xmlui-textColor-placeholder-Select-success)",
|
|
12167
12010
|
"Input:fontSize-placeholder-Select-success": "var(--xmlui-fontSize-placeholder-Select-success)",
|
|
12168
|
-
"opacity-Select--disabled": "var(--xmlui-opacity-Select--disabled)",
|
|
12169
12011
|
"Input:backgroundColor-Select--disabled": "var(--xmlui-backgroundColor-Select--disabled)",
|
|
12170
12012
|
"Input:textColor-Select--disabled": "var(--xmlui-textColor-Select--disabled)",
|
|
12171
12013
|
"Input:borderColor-Select--disabled": "var(--xmlui-borderColor-Select--disabled)",
|
|
12014
|
+
"Input:outlineWidth-Select--focus": "var(--xmlui-outlineWidth-Select--focus)",
|
|
12015
|
+
"Input:outlineColor-Select--focus": "var(--xmlui-outlineColor-Select--focus)",
|
|
12016
|
+
"Input:outlineStyle-Select--focus": "var(--xmlui-outlineStyle-Select--focus)",
|
|
12017
|
+
"Input:outlineOffset-Select--focus": "var(--xmlui-outlineOffset-Select--focus)",
|
|
12018
|
+
"Input:textColor-placeholder-Select": "var(--xmlui-textColor-placeholder-Select)",
|
|
12172
12019
|
"paddingVertical-Select-badge": "var(--xmlui-paddingVertical-Select-badge)",
|
|
12173
12020
|
"paddingHorizontal-Select-badge": "var(--xmlui-paddingHorizontal-Select-badge)",
|
|
12174
12021
|
"borderRadius-Select-badge": "var(--xmlui-borderRadius-Select-badge)",
|
|
@@ -12179,17 +12026,16 @@ export default {
|
|
|
12179
12026
|
"Input:textColor-Select-badge--hover": "var(--xmlui-textColor-Select-badge--hover)",
|
|
12180
12027
|
"Input:backgroundColor-Select-badge--active": "var(--xmlui-backgroundColor-Select-badge--active)",
|
|
12181
12028
|
"Input:textColor-Select-badge--active": "var(--xmlui-textColor-Select-badge--active)",
|
|
12182
|
-
"Input:textColor-placeholder-Select": "var(--xmlui-textColor-placeholder-Select)",
|
|
12183
12029
|
"Input:backgroundColor-menu-Select": "var(--xmlui-backgroundColor-menu-Select)",
|
|
12184
12030
|
"Input:borderRadius-menu-Select": "var(--xmlui-borderRadius-menu-Select)",
|
|
12185
12031
|
"Input:boxShadow-menu-Select": "var(--xmlui-boxShadow-menu-Select)",
|
|
12186
12032
|
"Input:borderWidth-menu-Select": "var(--xmlui-borderWidth-menu-Select)",
|
|
12187
12033
|
"Input:borderColor-menu-Select": "var(--xmlui-borderColor-menu-Select)",
|
|
12188
12034
|
"backgroundColor-item-Select": "var(--xmlui-backgroundColor-item-Select)",
|
|
12035
|
+
"backgroundColor-item-Select--active": "var(--xmlui-backgroundColor-item-Select--active)",
|
|
12189
12036
|
"backgroundColor-item-Select--hover": "var(--xmlui-backgroundColor-item-Select--hover)",
|
|
12037
|
+
"textColor-item-Select--disabled": "var(--xmlui-textColor-item-Select--disabled)",
|
|
12190
12038
|
"opacity-text-item-Select--disabled": "var(--xmlui-opacity-text-item-Select--disabled)",
|
|
12191
|
-
"fontSize-Select": "var(--xmlui-fontSize-Select)",
|
|
12192
|
-
"backgroundColor-item-Select--active": "var(--xmlui-backgroundColor-item-Select--active)",
|
|
12193
12039
|
"textColor-indicator-Select": "var(--xmlui-textColor-indicator-Select)"
|
|
12194
12040
|
},
|
|
12195
12041
|
"defaultThemeVars": {
|
|
@@ -12212,7 +12058,7 @@ export default {
|
|
|
12212
12058
|
"backgroundColor-Select-badge--hover": "$color-primary-400",
|
|
12213
12059
|
"backgroundColor-Select-badge--active": "$color-primary-500",
|
|
12214
12060
|
"textColor-item-Select--disabled": "$color-surface-200",
|
|
12215
|
-
"textColor-Select-badge": "$color-surface-50",
|
|
12061
|
+
"textColor-Select-badge": "$const-color-surface-50",
|
|
12216
12062
|
"backgroundColor-item-Select": "$backgroundColor-dropdown-item",
|
|
12217
12063
|
"backgroundColor-item-Select--hover": "$backgroundColor-dropdown-item--hover",
|
|
12218
12064
|
"backgroundColor-item-Select--active": "$backgroundColor-dropdown-item--active",
|
|
@@ -12236,40 +12082,6 @@ export default {
|
|
|
12236
12082
|
"initialValue": {
|
|
12237
12083
|
"description": "This property sets the component's initial value."
|
|
12238
12084
|
},
|
|
12239
|
-
"label": {
|
|
12240
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
12241
|
-
"valueType": "string"
|
|
12242
|
-
},
|
|
12243
|
-
"labelPosition": {
|
|
12244
|
-
"description": "Places the label at the given position of the component.",
|
|
12245
|
-
"availableValues": [
|
|
12246
|
-
{
|
|
12247
|
-
"value": "start",
|
|
12248
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
12249
|
-
},
|
|
12250
|
-
{
|
|
12251
|
-
"value": "end",
|
|
12252
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
12253
|
-
},
|
|
12254
|
-
{
|
|
12255
|
-
"value": "top",
|
|
12256
|
-
"description": "The top of the input"
|
|
12257
|
-
},
|
|
12258
|
-
{
|
|
12259
|
-
"value": "bottom",
|
|
12260
|
-
"description": "The bottom of the input"
|
|
12261
|
-
}
|
|
12262
|
-
],
|
|
12263
|
-
"defaultValue": "top"
|
|
12264
|
-
},
|
|
12265
|
-
"labelWidth": {
|
|
12266
|
-
"description": "This property sets the width of the `Slider` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
12267
|
-
},
|
|
12268
|
-
"labelBreak": {
|
|
12269
|
-
"description": "This boolean value indicates whether the `Slider` label can be split into multiple lines if it would overflow the available label width.",
|
|
12270
|
-
"valueType": "boolean",
|
|
12271
|
-
"defaultValue": true
|
|
12272
|
-
},
|
|
12273
12085
|
"minValue": {
|
|
12274
12086
|
"description": "This property specifies the minimum value of the allowed input range.",
|
|
12275
12087
|
"valueType": "number",
|
|
@@ -12418,6 +12230,8 @@ export default {
|
|
|
12418
12230
|
"Input:borderColor-thumb-Slider": "var(--xmlui-borderColor-thumb-Slider)",
|
|
12419
12231
|
"Input:backgroundColor-thumb-Slider": "var(--xmlui-backgroundColor-thumb-Slider)",
|
|
12420
12232
|
"Input:boxShadow-thumb-Slider": "var(--xmlui-boxShadow-thumb-Slider)",
|
|
12233
|
+
"Input:backgroundColor-thumb-Slider--focus": "var(--xmlui-backgroundColor-thumb-Slider--focus)",
|
|
12234
|
+
"Input:boxShadow-thumb-Slider--focus": "var(--xmlui-boxShadow-thumb-Slider--focus)",
|
|
12421
12235
|
"Input:backgroundColor-thumb-Slider--hover": "var(--xmlui-backgroundColor-thumb-Slider--hover)",
|
|
12422
12236
|
"Input:boxShadow-thumb-Slider--hover": "var(--xmlui-boxShadow-thumb-Slider--hover)",
|
|
12423
12237
|
"Input:backgroundColor-thumb-Slider--active": "var(--xmlui-backgroundColor-thumb-Slider--active)",
|
|
@@ -12430,6 +12244,8 @@ export default {
|
|
|
12430
12244
|
"borderStyle-thumb-Slider": "solid",
|
|
12431
12245
|
"borderColor-thumb-Slider": "$color-surface-50",
|
|
12432
12246
|
"backgroundColor-thumb-Slider": "$color-primary",
|
|
12247
|
+
"backgroundColor-thumb-Slider--focus": "$color-primary",
|
|
12248
|
+
"boxShadow-thumb-Slider--focus": "0 0 0 6px rgb(from $color-primary r g b / 0.4)",
|
|
12433
12249
|
"backgroundColor-thumb-Slider--hover": "$color-primary",
|
|
12434
12250
|
"boxShadow-thumb-Slider--hover": "0 0 0 6px rgb(from $color-primary r g b / 0.4)",
|
|
12435
12251
|
"backgroundColor-thumb-Slider--active": "$color-primary-400",
|
|
@@ -13239,40 +13055,6 @@ export default {
|
|
|
13239
13055
|
}
|
|
13240
13056
|
},
|
|
13241
13057
|
"props": {
|
|
13242
|
-
"label": {
|
|
13243
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
13244
|
-
"valueType": "string"
|
|
13245
|
-
},
|
|
13246
|
-
"labelPosition": {
|
|
13247
|
-
"description": "Places the label at the given position of the component.",
|
|
13248
|
-
"availableValues": [
|
|
13249
|
-
{
|
|
13250
|
-
"value": "start",
|
|
13251
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
13252
|
-
},
|
|
13253
|
-
{
|
|
13254
|
-
"value": "end",
|
|
13255
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
13256
|
-
},
|
|
13257
|
-
{
|
|
13258
|
-
"value": "top",
|
|
13259
|
-
"description": "The top of the input"
|
|
13260
|
-
},
|
|
13261
|
-
{
|
|
13262
|
-
"value": "bottom",
|
|
13263
|
-
"description": "The bottom of the input"
|
|
13264
|
-
}
|
|
13265
|
-
],
|
|
13266
|
-
"defaultValue": "end"
|
|
13267
|
-
},
|
|
13268
|
-
"labelWidth": {
|
|
13269
|
-
"description": "This property sets the width of the `Switch` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
13270
|
-
},
|
|
13271
|
-
"labelBreak": {
|
|
13272
|
-
"description": "This boolean value indicates whether the `Switch` label can be split into multiple lines if it would overflow the available label width.",
|
|
13273
|
-
"valueType": "boolean",
|
|
13274
|
-
"defaultValue": true
|
|
13275
|
-
},
|
|
13276
13058
|
"required": {
|
|
13277
13059
|
"description": "Set this property to `true` to indicate it must have a value before submitting the containing form.",
|
|
13278
13060
|
"valueType": "boolean",
|
|
@@ -13460,6 +13242,12 @@ export default {
|
|
|
13460
13242
|
"rowsSelectable": {
|
|
13461
13243
|
"description": "Indicates whether the rows are selectable (`true`) or not (`false`)."
|
|
13462
13244
|
},
|
|
13245
|
+
"initiallySelected": {
|
|
13246
|
+
"description": "An array of IDs that should be initially selected when the table is rendered. This property only has an effect when the rowsSelectable property is set to `true`."
|
|
13247
|
+
},
|
|
13248
|
+
"syncWithAppState": {
|
|
13249
|
+
"description": "An AppState instance to synchronize the table's selection state with. The table will read from and write to the 'selectedIds' property of the AppState object. When provided, this takes precedence over the initiallySelected property for initial selection. You can use the AppState's didUpdate event to receive notifications when the selection changes."
|
|
13250
|
+
},
|
|
13463
13251
|
"pageSize": {
|
|
13464
13252
|
"description": "This property defines the number of rows to display per page when pagination is enabled."
|
|
13465
13253
|
},
|
|
@@ -13577,6 +13365,17 @@ export default {
|
|
|
13577
13365
|
"bottom"
|
|
13578
13366
|
],
|
|
13579
13367
|
"defaultValue": "center"
|
|
13368
|
+
},
|
|
13369
|
+
"checkboxTolerance": {
|
|
13370
|
+
"description": "This property controls the tolerance area around checkboxes for easier interaction. This property only has an effect when the rowsSelectable property is set to `true`. `none` provides no tolerance (0px), `compact` provides minimal tolerance (8px), `comfortable` provides medium tolerance (12px), and `spacious` provides generous tolerance (16px) for improved accessibility.",
|
|
13371
|
+
"valueType": "string",
|
|
13372
|
+
"availableValues": [
|
|
13373
|
+
"none",
|
|
13374
|
+
"compact",
|
|
13375
|
+
"comfortable",
|
|
13376
|
+
"spacious"
|
|
13377
|
+
],
|
|
13378
|
+
"defaultValue": "compact"
|
|
13580
13379
|
}
|
|
13581
13380
|
},
|
|
13582
13381
|
"events": {
|
|
@@ -13674,6 +13473,38 @@ export default {
|
|
|
13674
13473
|
"borderStartEndRadius-cell-Table": "var(--xmlui-borderStartEndRadius-cell-Table, var(--xmlui-borderRadius-cell-Table))",
|
|
13675
13474
|
"borderEndStartRadius-cell-Table": "var(--xmlui-borderEndStartRadius-cell-Table, var(--xmlui-borderRadius-cell-Table))",
|
|
13676
13475
|
"borderEndEndRadius-cell-Table": "var(--xmlui-borderEndEndRadius-cell-Table, var(--xmlui-borderRadius-cell-Table))",
|
|
13476
|
+
"border-Table": "var(--xmlui-border-Table)",
|
|
13477
|
+
"borderHorizontal-Table": "var(--xmlui-borderHorizontal-Table, var(--xmlui-border-Table))",
|
|
13478
|
+
"borderVertical-Table": "var(--xmlui-borderVertical-Table, var(--xmlui-border-Table))",
|
|
13479
|
+
"borderLeft-Table": "var(--xmlui-borderLeft-Table, var(--xmlui-borderHorizontal-Table, var(--xmlui-border-Table)))",
|
|
13480
|
+
"borderRight-Table": "var(--xmlui-borderRight-Table, var(--xmlui-borderHorizontal-Table, var(--xmlui-border-Table)))",
|
|
13481
|
+
"borderTop-Table": "var(--xmlui-borderTop-Table, var(--xmlui-borderVertical-Table, var(--xmlui-border-Table)))",
|
|
13482
|
+
"borderBottom-Table": "var(--xmlui-borderBottom-Table, var(--xmlui-borderVertical-Table, var(--xmlui-border-Table)))",
|
|
13483
|
+
"borderWidth-Table": "var(--xmlui-borderWidth-Table)",
|
|
13484
|
+
"borderHorizontalWidth-Table": "var(--xmlui-borderHorizontalWidth-Table, var(--xmlui-borderWidth-Table))",
|
|
13485
|
+
"borderLeftWidth-Table": "var(--xmlui-borderLeftWidth-Table, var(--xmlui-borderHorizontalWidth-Table, var(--xmlui-borderWidth-Table)))",
|
|
13486
|
+
"borderRightWidth-Table": "var(--xmlui-borderRightWidth-Table, var(--xmlui-borderHorizontalWidth-Table, var(--xmlui-borderWidth-Table)))",
|
|
13487
|
+
"borderVerticalWidth-Table": "var(--xmlui-borderVerticalWidth-Table, var(--xmlui-borderWidth-Table))",
|
|
13488
|
+
"borderTopWidth-Table": "var(--xmlui-borderTopWidth-Table, var(--xmlui-borderVerticalWidth-Table, var(--xmlui-borderWidth-Table)))",
|
|
13489
|
+
"borderBottomWidth-Table": "var(--xmlui-borderBottomWidth-Table, var(--xmlui-borderVerticalWidth-Table, var(--xmlui-borderWidth-Table)))",
|
|
13490
|
+
"borderStyle-Table": "var(--xmlui-borderStyle-Table)",
|
|
13491
|
+
"borderHorizontalStyle-Table": "var(--xmlui-borderHorizontalStyle-Table, var(--xmlui-borderStyle-Table))",
|
|
13492
|
+
"borderLeftStyle-Table": "var(--xmlui-borderLeftStyle-Table, var(--xmlui-borderHorizontalStyle-Table, var(--xmlui-borderStyle-Table)))",
|
|
13493
|
+
"borderRightStyle-Table": "var(--xmlui-borderRightStyle-Table, var(--xmlui-borderHorizontalStyle-Table, var(--xmlui-borderStyle-Table)))",
|
|
13494
|
+
"borderVerticalStyle-Table": "var(--xmlui-borderVerticalStyle-Table, var(--xmlui-borderStyle-Table))",
|
|
13495
|
+
"borderTopStyle-Table": "var(--xmlui-borderTopStyle-Table, var(--xmlui-borderVerticalStyle-Table, var(--xmlui-borderStyle-Table)))",
|
|
13496
|
+
"borderBottomStyle-Table": "var(--xmlui-borderBottomStyle-Table, var(--xmlui-borderVerticalStyle-Table, var(--xmlui-borderStyle-Table)))",
|
|
13497
|
+
"borderColor-Table": "var(--xmlui-borderColor-Table)",
|
|
13498
|
+
"borderHorizontalColor-Table": "var(--xmlui-borderHorizontalColor-Table, var(--xmlui-borderColor-Table))",
|
|
13499
|
+
"borderLeftColor-Table": "var(--xmlui-borderLeftColor-Table, var(--xmlui-borderHorizontalColor-Table, var(--xmlui-borderColor-Table)))",
|
|
13500
|
+
"borderRightColor-Table": "var(--xmlui-borderRightColor-Table, var(--xmlui-borderHorizontalColor-Table, var(--xmlui-borderColor-Table)))",
|
|
13501
|
+
"borderVerticalColor-Table": "var(--xmlui-borderVerticalColor-Table, var(--xmlui-borderColor-Table))",
|
|
13502
|
+
"borderTopColor-Table": "var(--xmlui-borderTopColor-Table, var(--xmlui-borderVerticalColor-Table, var(--xmlui-borderColor-Table)))",
|
|
13503
|
+
"borderBottomColor-Table": "var(--xmlui-borderBottomColor-Table, var(--xmlui-borderVerticalColor-Table, var(--xmlui-borderColor-Table)))",
|
|
13504
|
+
"borderStartStartRadius-Table": "var(--xmlui-borderStartStartRadius-Table, var(--xmlui-borderRadius-Table))",
|
|
13505
|
+
"borderStartEndRadius-Table": "var(--xmlui-borderStartEndRadius-Table, var(--xmlui-borderRadius-Table))",
|
|
13506
|
+
"borderEndStartRadius-Table": "var(--xmlui-borderEndStartRadius-Table, var(--xmlui-borderRadius-Table))",
|
|
13507
|
+
"borderEndEndRadius-Table": "var(--xmlui-borderEndEndRadius-Table, var(--xmlui-borderRadius-Table))",
|
|
13677
13508
|
"backgroundColor-pagination-Table": "var(--xmlui-backgroundColor-pagination-Table)",
|
|
13678
13509
|
"textColor-heading-Table": "var(--xmlui-textColor-heading-Table)",
|
|
13679
13510
|
"fontWeight-row-Table": "var(--xmlui-fontWeight-row-Table)",
|
|
@@ -13681,16 +13512,18 @@ export default {
|
|
|
13681
13512
|
"fontWeight-heading-Table": "var(--xmlui-fontWeight-heading-Table)",
|
|
13682
13513
|
"fontSize-heading-Table": "var(--xmlui-fontSize-heading-Table)",
|
|
13683
13514
|
"textTransform-heading-Table": "var(--xmlui-textTransform-heading-Table)",
|
|
13515
|
+
"borderRadius-Table": "var(--xmlui-borderRadius-Table)",
|
|
13684
13516
|
"outlineWidth-heading-Table--focus": "var(--xmlui-outlineWidth-heading-Table--focus)",
|
|
13685
13517
|
"outlineColor-heading-Table--focus": "var(--xmlui-outlineColor-heading-Table--focus)",
|
|
13686
13518
|
"outlineStyle-heading-Table--focus": "var(--xmlui-outlineStyle-heading-Table--focus)",
|
|
13687
|
-
"outlineOffset-heading-Table--focus": "var(--xmlui-outlineOffset-heading-Table--focus)"
|
|
13519
|
+
"outlineOffset-heading-Table--focus": "var(--xmlui-outlineOffset-heading-Table--focus)",
|
|
13520
|
+
"borderBottom-last-row-Table": "var(--xmlui-borderBottom-last-row-Table)"
|
|
13688
13521
|
},
|
|
13689
13522
|
"defaultThemeVars": {
|
|
13690
|
-
"padding-heading-Table": "$space-2 $space-
|
|
13691
|
-
"padding-cell-Table": "$space-2 $space-
|
|
13523
|
+
"padding-heading-Table": "$space-2 $space-1 $space-2 $space-2",
|
|
13524
|
+
"padding-cell-Table": "$space-2 $space-1 $space-2 $space-2",
|
|
13692
13525
|
"paddingHorizontal-cell-first-Table": "$space-5",
|
|
13693
|
-
"paddingHorizontal-cell-last-Table": "$space-
|
|
13526
|
+
"paddingHorizontal-cell-last-Table": "$space-1",
|
|
13694
13527
|
"border-cell-Table": "1px solid $borderColor",
|
|
13695
13528
|
"outlineWidth-heading-Table--focus": "$outlineWidth--focus",
|
|
13696
13529
|
"outlineStyle-heading-Table--focus": "$outlineStyle--focus",
|
|
@@ -13708,7 +13541,10 @@ export default {
|
|
|
13708
13541
|
"backgroundColor-heading-Table--hover": "$color-surface-200",
|
|
13709
13542
|
"backgroundColor-heading-Table--active": "$color-surface-300",
|
|
13710
13543
|
"backgroundColor-heading-Table": "$color-surface-100",
|
|
13711
|
-
"textColor-heading-Table": "$color-surface-500"
|
|
13544
|
+
"textColor-heading-Table": "$color-surface-500",
|
|
13545
|
+
"border-Table": "0px solid transparent",
|
|
13546
|
+
"borderBottom-last-row-Table": "$borderBottom-cell-Table",
|
|
13547
|
+
"borderRadius-Table": "$borderRadius"
|
|
13712
13548
|
}
|
|
13713
13549
|
},
|
|
13714
13550
|
"TableOfContents": {
|
|
@@ -14177,7 +14013,7 @@ export default {
|
|
|
14177
14013
|
"description": "This property indicates the index of the active tab. The indexing starts from 0, representing the starting (leftmost) tab. If not set, the first tab is selected by default."
|
|
14178
14014
|
},
|
|
14179
14015
|
"orientation": {
|
|
14180
|
-
"description": "This property indicates the orientation of the component. In horizontal orientation, the tab sections are laid out on the left side of the content panel, while in vertical orientation, the buttons are at the top.",
|
|
14016
|
+
"description": "This property indicates the orientation of the component. In horizontal orientation, the tab sections are laid out on the left side of the content panel, while in vertical orientation, the buttons are at the top. Note: This property is ignored when accordionView is set to true.",
|
|
14181
14017
|
"availableValues": [
|
|
14182
14018
|
"horizontal",
|
|
14183
14019
|
"vertical"
|
|
@@ -14185,6 +14021,22 @@ export default {
|
|
|
14185
14021
|
"defaultValue": "horizontal",
|
|
14186
14022
|
"valueType": "string"
|
|
14187
14023
|
},
|
|
14024
|
+
"tabAlignment": {
|
|
14025
|
+
"description": "This property controls how tabs are aligned within the tab header container in horizontal orientation. Use 'start' to align tabs to the left, 'end' to align to the right, 'center' to center the tabs, and 'stretch' to make tabs fill the full width of the header. Note: This property is ignored when orientation is set to 'vertical' or when accordionView is enabled.",
|
|
14026
|
+
"availableValues": [
|
|
14027
|
+
"start",
|
|
14028
|
+
"end",
|
|
14029
|
+
"center",
|
|
14030
|
+
"stretch"
|
|
14031
|
+
],
|
|
14032
|
+
"defaultValue": "start",
|
|
14033
|
+
"valueType": "string"
|
|
14034
|
+
},
|
|
14035
|
+
"accordionView": {
|
|
14036
|
+
"description": "When enabled, displays tabs in an accordion-like view where tab headers are stacked vertically and only the active tab's content is visible. Each tab header remains visible and clicking a header opens its content while closing others. When enabled, the orientation property is ignored.",
|
|
14037
|
+
"defaultValue": false,
|
|
14038
|
+
"valueType": "boolean"
|
|
14039
|
+
},
|
|
14188
14040
|
"headerTemplate": {
|
|
14189
14041
|
"description": "This property declares the template for the clickable tab area.",
|
|
14190
14042
|
"valueType": "ComponentDef"
|
|
@@ -14252,7 +14104,7 @@ export default {
|
|
|
14252
14104
|
"description": "The text to be displayed. This value can also be set via nesting the text into the `Text` component."
|
|
14253
14105
|
},
|
|
14254
14106
|
"variant": {
|
|
14255
|
-
"description": "An optional string value that provides named presets for text variants with a unique combination of font style, weight, size, color, and other parameters. If not defined, the text uses the current style of its context.",
|
|
14107
|
+
"description": "An optional string value that provides named presets for text variants with a unique combination of font style, weight, size, color, and other parameters. If not defined, the text uses the current style of its context. In addition to predefined variants, you can specify custom variant names and style them using theme variables with the pattern `{cssProperty}-Text-{variantName}` (e.g., `textColor-Text-brandTitle`, `fontSize-Text-highlight`). See the documentation for a complete list of supported CSS properties.",
|
|
14256
14108
|
"availableValues": [
|
|
14257
14109
|
{
|
|
14258
14110
|
"value": "abbr",
|
|
@@ -14423,11 +14275,38 @@ export default {
|
|
|
14423
14275
|
}
|
|
14424
14276
|
},
|
|
14425
14277
|
"themeVars": {
|
|
14278
|
+
"textColor-Text": "var(--xmlui-textColor-Text)",
|
|
14279
|
+
"fontFamily-Text": "var(--xmlui-fontFamily-Text)",
|
|
14280
|
+
"fontSize-Text": "var(--xmlui-fontSize-Text)",
|
|
14281
|
+
"fontStyle-Text": "var(--xmlui-fontStyle-Text)",
|
|
14282
|
+
"fontVariant-Text": "var(--xmlui-fontVariant-Text)",
|
|
14283
|
+
"fontWeight-Text": "var(--xmlui-fontWeight-Text)",
|
|
14284
|
+
"fontStretch-Text": "var(--xmlui-fontStretch-Text)",
|
|
14285
|
+
"textDecorationLine-Text": "var(--xmlui-textDecorationLine-Text)",
|
|
14286
|
+
"textDecorationColor-Text": "var(--xmlui-textDecorationColor-Text)",
|
|
14287
|
+
"textDecorationStyle-Text": "var(--xmlui-textDecorationStyle-Text)",
|
|
14288
|
+
"textDecorationThickness-Text": "var(--xmlui-textDecorationThickness-Text)",
|
|
14289
|
+
"textUnderlineOffset-Text": "var(--xmlui-textUnderlineOffset-Text)",
|
|
14290
|
+
"lineHeight-Text": "var(--xmlui-lineHeight-Text)",
|
|
14291
|
+
"backgroundColor-Text": "var(--xmlui-backgroundColor-Text)",
|
|
14292
|
+
"textTransform-Text": "var(--xmlui-textTransform-Text)",
|
|
14293
|
+
"letterSpacing-Text": "var(--xmlui-letterSpacing-Text)",
|
|
14294
|
+
"wordSpacing-Text": "var(--xmlui-wordSpacing-Text)",
|
|
14295
|
+
"textShadow-Text": "var(--xmlui-textShadow-Text)",
|
|
14296
|
+
"textIndent-Text": "var(--xmlui-textIndent-Text)",
|
|
14297
|
+
"textAlign-Text": "var(--xmlui-textAlign-Text)",
|
|
14298
|
+
"textAlignLast-Text": "var(--xmlui-textAlignLast-Text)",
|
|
14299
|
+
"wordBreak-Text": "var(--xmlui-wordBreak-Text)",
|
|
14300
|
+
"wordWrap-Text": "var(--xmlui-wordWrap-Text)",
|
|
14301
|
+
"direction-Text": "var(--xmlui-direction-Text)",
|
|
14302
|
+
"writingMode-Text": "var(--xmlui-writingMode-Text)",
|
|
14303
|
+
"lineBreak-Text": "var(--xmlui-lineBreak-Text)",
|
|
14426
14304
|
"marginTop-Text": "var(--xmlui-marginTop-Text)",
|
|
14427
14305
|
"marginBottom-Text": "var(--xmlui-marginBottom-Text)",
|
|
14428
14306
|
"marginLeft-Text": "var(--xmlui-marginLeft-Text)",
|
|
14429
14307
|
"marginRight-Text": "var(--xmlui-marginRight-Text)",
|
|
14430
14308
|
"verticalAlignment-Text": "var(--xmlui-verticalAlignment-Text)",
|
|
14309
|
+
"textColor-Text--hover": "var(--xmlui-textColor-Text--hover)",
|
|
14431
14310
|
"fontWeight-Text-abbr": "var(--xmlui-fontWeight-Text-abbr)",
|
|
14432
14311
|
"textTransform-Text-abbr": "var(--xmlui-textTransform-Text-abbr)",
|
|
14433
14312
|
"fontStyle-Text-cite": "var(--xmlui-fontStyle-Text-cite)",
|
|
@@ -14450,7 +14329,7 @@ export default {
|
|
|
14450
14329
|
"borderRadius-Text-keyboard": "var(--xmlui-borderRadius-Text-keyboard)",
|
|
14451
14330
|
"paddingHorizontal-Text-keyboard": "var(--xmlui-paddingHorizontal-Text-keyboard)",
|
|
14452
14331
|
"backgroundColor-Text-marked": "var(--xmlui-backgroundColor-Text-marked)",
|
|
14453
|
-
"
|
|
14332
|
+
"textColor-Text-marked": "var(--xmlui-textColor-Text-marked)",
|
|
14454
14333
|
"fontWeight-Text-marked": "var(--xmlui-fontWeight-Text-marked)",
|
|
14455
14334
|
"fontStyle-Text-marked": "var(--xmlui-fontStyle-Text-marked)",
|
|
14456
14335
|
"lineHeight-Text-marked": "var(--xmlui-lineHeight-Text-marked)",
|
|
@@ -14469,8 +14348,15 @@ export default {
|
|
|
14469
14348
|
"marginLeft-Text-small": "var(--xmlui-marginLeft-Text-small)",
|
|
14470
14349
|
"marginRight-Text-small": "var(--xmlui-marginRight-Text-small)",
|
|
14471
14350
|
"verticalAlignment-Text-small": "var(--xmlui-verticalAlignment-Text-small)",
|
|
14351
|
+
"textColor-Text-small--hover": "var(--xmlui-textColor-Text-small--hover)",
|
|
14352
|
+
"marginTop-Text-code": "var(--xmlui-marginTop-Text-code)",
|
|
14353
|
+
"marginBottom-Text-code": "var(--xmlui-marginBottom-Text-code)",
|
|
14354
|
+
"marginLeft-Text-code": "var(--xmlui-marginLeft-Text-code)",
|
|
14355
|
+
"marginRight-Text-code": "var(--xmlui-marginRight-Text-code)",
|
|
14356
|
+
"verticalAlignment-Text-code": "var(--xmlui-verticalAlignment-Text-code)",
|
|
14357
|
+
"textColor-Text-code--hover": "var(--xmlui-textColor-Text-code--hover)",
|
|
14472
14358
|
"letterSpacing-Text-caption": "var(--xmlui-letterSpacing-Text-caption)",
|
|
14473
|
-
"
|
|
14359
|
+
"textColor-Text-placeholder": "var(--xmlui-textColor-Text-placeholder)",
|
|
14474
14360
|
"fontStyle-Text-placeholder": "var(--xmlui-fontStyle-Text-placeholder)",
|
|
14475
14361
|
"fontWeight-Text-placeholder": "var(--xmlui-fontWeight-Text-placeholder)",
|
|
14476
14362
|
"fontSize-Text-placeholder": "var(--xmlui-fontSize-Text-placeholder)",
|
|
@@ -14481,26 +14367,24 @@ export default {
|
|
|
14481
14367
|
"fontStyle-Text-subheading": "var(--xmlui-fontStyle-Text-subheading)",
|
|
14482
14368
|
"letterSpacing-Text-subheading": "var(--xmlui-letterSpacing-Text-subheading)",
|
|
14483
14369
|
"textTransform-Text-subheading": "var(--xmlui-textTransform-Text-subheading)",
|
|
14484
|
-
"
|
|
14370
|
+
"textColor-Text-subheading": "var(--xmlui-textColor-Text-subheading)",
|
|
14485
14371
|
"marginTop-Text-tableheading": "var(--xmlui-marginTop-Text-tableheading)",
|
|
14486
14372
|
"marginBottom-Text-tableheading": "var(--xmlui-marginBottom-Text-tableheading)",
|
|
14487
14373
|
"paddingHorizontal-Text-tableheading": "var(--xmlui-paddingHorizontal-Text-tableheading)",
|
|
14488
14374
|
"fontSize-Text-tableheading": "var(--xmlui-fontSize-Text-tableheading)",
|
|
14489
14375
|
"fontWeight-Text-tableheading": "var(--xmlui-fontWeight-Text-tableheading)",
|
|
14490
14376
|
"fontSize-Text-secondary": "var(--xmlui-fontSize-Text-secondary)",
|
|
14491
|
-
"
|
|
14377
|
+
"textColor-Text-secondary": "var(--xmlui-textColor-Text-secondary)"
|
|
14492
14378
|
},
|
|
14493
14379
|
"defaultThemeVars": {
|
|
14494
14380
|
"borderRadius-Text": "$borderRadius",
|
|
14495
14381
|
"borderStyle-Text": "solid",
|
|
14496
14382
|
"fontSize-Text": "$fontSize-sm",
|
|
14497
|
-
"lineHeight-Text": "$lineHeight-sm",
|
|
14498
14383
|
"borderWidth-Text": "$space-0",
|
|
14499
14384
|
"lineHeight-Text-codefence": "1.5",
|
|
14500
14385
|
"fontWeight-Text-abbr": "$fontWeight-bold",
|
|
14501
14386
|
"textTransform-Text-abbr": "uppercase",
|
|
14502
14387
|
"fontSize-Text-secondary": "$fontSize-sm",
|
|
14503
|
-
"lineHeight-Text-secondary": "$lineHeight-sm",
|
|
14504
14388
|
"fontStyle-Text-cite": "italic",
|
|
14505
14389
|
"textColor-Text": "$textColor-primary",
|
|
14506
14390
|
"fontFamily-Text": "$fontFamily",
|
|
@@ -14508,7 +14392,6 @@ export default {
|
|
|
14508
14392
|
"fontSize-Text-codefence": "$fontSize-code",
|
|
14509
14393
|
"fontFamily-Text-code": "$fontFamily-monospace",
|
|
14510
14394
|
"fontSize-Text-code": "$fontSize-sm",
|
|
14511
|
-
"lineHeight-Text-code": "$lineHeight-xs",
|
|
14512
14395
|
"borderWidth-Text-code": "1px",
|
|
14513
14396
|
"borderStyle-Text-code": "solid",
|
|
14514
14397
|
"borderRadius-Text-code": "4px",
|
|
@@ -14518,37 +14401,28 @@ export default {
|
|
|
14518
14401
|
"textDecorationLine-Text-inserted": "underline",
|
|
14519
14402
|
"fontFamily-Text-keyboard": "$fontFamily-monospace",
|
|
14520
14403
|
"fontSize-Text-keyboard": "$fontSize-sm",
|
|
14521
|
-
"lineHeight-Text-keyboard": "$lineHeight-sm",
|
|
14522
14404
|
"fontWeight-Text-keyboard": "$fontWeight-bold",
|
|
14523
14405
|
"borderWidth-Text-keyboard": "1px",
|
|
14524
14406
|
"paddingHorizontal-Text-keyboard": "$space-1",
|
|
14525
14407
|
"fontFamily-Text-sample": "$fontFamily-monospace",
|
|
14526
14408
|
"fontSize-Text-sample": "$fontSize-sm",
|
|
14527
|
-
"lineHeight-Text-sample": "$lineHeight-sm",
|
|
14528
14409
|
"fontSize-Text-sup": "$fontSize-xs",
|
|
14529
|
-
"lineHeight-Text-sup": "$lineHeight-xs",
|
|
14530
14410
|
"verticalAlignment-Text-sup": "super",
|
|
14531
14411
|
"fontSize-Text-sub": "$fontSize-xs",
|
|
14532
|
-
"lineHeight-Text-sub": "$lineHeight-xs",
|
|
14533
14412
|
"verticalAlignment-Text-sub": "sub",
|
|
14534
14413
|
"fontStyle-Text-var": "italic",
|
|
14535
14414
|
"fontStyle-Text-em": "italic",
|
|
14536
14415
|
"fontFamily-Text-mono": "$fontFamily-monospace",
|
|
14537
14416
|
"fontSize-Text-title": "$fontSize-2xl",
|
|
14538
|
-
"lineHeight-Text-title": "$lineHeight-2xl",
|
|
14539
14417
|
"fontSize-Text-subtitle": "$fontSize-xl",
|
|
14540
|
-
"lineHeight-Text-subtitle": "$lineHeight-xl",
|
|
14541
14418
|
"fontSize-Text-small": "$fontSize-sm",
|
|
14542
|
-
"lineHeight-Text-small": "$lineHeight-sm",
|
|
14543
14419
|
"letterSpacing-Text-caption": "0.05rem",
|
|
14544
14420
|
"fontSize-Text-placeholder": "$fontSize-xs",
|
|
14545
|
-
"lineHeight-Text-placeholder": "$lineHeight-xs",
|
|
14546
14421
|
"fontFamily-Text-codefence": "$fontFamily-monospace",
|
|
14547
14422
|
"paddingHorizontal-Text-codefence": "$space-4",
|
|
14548
14423
|
"paddingVertical-Text-codefence": "$space-3",
|
|
14549
14424
|
"paddingVertical-Text-paragraph": "$space-1",
|
|
14550
14425
|
"fontSize-Text-subheading": "$fontSize-H6",
|
|
14551
|
-
"lineHeight-Text-subheading": "$lineHeight-sm",
|
|
14552
14426
|
"fontWeight-Text-subheading": "$fontWeight-bold",
|
|
14553
14427
|
"letterSpacing-Text-subheading": "0.04em",
|
|
14554
14428
|
"textTransform-Text-subheading": "uppercase",
|
|
@@ -14556,17 +14430,16 @@ export default {
|
|
|
14556
14430
|
"marginBottom-Text-tableheading": "$space-4",
|
|
14557
14431
|
"paddingHorizontal-Text-tableheading": "$space-1",
|
|
14558
14432
|
"fontSize-Text-tableheading": "$fontSize-H6",
|
|
14559
|
-
"lineHeight-Text-tableheading": "$lineHeight-sm",
|
|
14560
14433
|
"fontWeight-Text-tableheading": "$fontWeight-bold",
|
|
14561
14434
|
"backgroundColor-Text-code": "rgb(from $color-surface-100 r g b / 0.4)",
|
|
14562
14435
|
"borderColor-Text-code": "$color-surface-100",
|
|
14563
14436
|
"backgroundColor-Text-keyboard": "rgb(from $color-surface-100 r g b / 0.4)",
|
|
14564
14437
|
"borderColor-Text-keyboard": "$color-surface-300",
|
|
14565
14438
|
"backgroundColor-Text-marked": "rgb(from $color-primary-200 r g b / 0.4)",
|
|
14566
|
-
"
|
|
14567
|
-
"
|
|
14568
|
-
"
|
|
14569
|
-
"
|
|
14439
|
+
"textColor-Text-placeholder": "$color-surface-500",
|
|
14440
|
+
"textColor-Text-codefence": "$color-surface-900",
|
|
14441
|
+
"textColor-Text-subheading": "$textColor-secondary",
|
|
14442
|
+
"textColor-Text-secondary": "$textColor-secondary",
|
|
14570
14443
|
"dark": {
|
|
14571
14444
|
"backgroundColor-Text-marked": "rgb(from $color-primary-400 r g b / 0.4)"
|
|
14572
14445
|
}
|
|
@@ -14623,40 +14496,6 @@ export default {
|
|
|
14623
14496
|
"initialValue": {
|
|
14624
14497
|
"description": "This property sets the component's initial value."
|
|
14625
14498
|
},
|
|
14626
|
-
"label": {
|
|
14627
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
14628
|
-
"valueType": "string"
|
|
14629
|
-
},
|
|
14630
|
-
"labelPosition": {
|
|
14631
|
-
"description": "Places the label at the given position of the component.",
|
|
14632
|
-
"availableValues": [
|
|
14633
|
-
{
|
|
14634
|
-
"value": "start",
|
|
14635
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
14636
|
-
},
|
|
14637
|
-
{
|
|
14638
|
-
"value": "end",
|
|
14639
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
14640
|
-
},
|
|
14641
|
-
{
|
|
14642
|
-
"value": "top",
|
|
14643
|
-
"description": "The top of the input"
|
|
14644
|
-
},
|
|
14645
|
-
{
|
|
14646
|
-
"value": "bottom",
|
|
14647
|
-
"description": "The bottom of the input"
|
|
14648
|
-
}
|
|
14649
|
-
],
|
|
14650
|
-
"defaultValue": "top"
|
|
14651
|
-
},
|
|
14652
|
-
"labelWidth": {
|
|
14653
|
-
"description": "This property sets the width of the `TextArea` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
14654
|
-
},
|
|
14655
|
-
"labelBreak": {
|
|
14656
|
-
"description": "This boolean value indicates whether the `TextArea` label can be split into multiple lines if it would overflow the available label width.",
|
|
14657
|
-
"valueType": "boolean",
|
|
14658
|
-
"defaultValue": true
|
|
14659
|
-
},
|
|
14660
14499
|
"maxLength": {
|
|
14661
14500
|
"description": "This property sets the maximum length of the input it accepts.",
|
|
14662
14501
|
"valueType": "number"
|
|
@@ -14877,40 +14716,6 @@ export default {
|
|
|
14877
14716
|
"description": "This property sets the component's initial value.",
|
|
14878
14717
|
"defaultValue": ""
|
|
14879
14718
|
},
|
|
14880
|
-
"label": {
|
|
14881
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
14882
|
-
"valueType": "string"
|
|
14883
|
-
},
|
|
14884
|
-
"labelPosition": {
|
|
14885
|
-
"description": "Places the label at the given position of the component.",
|
|
14886
|
-
"availableValues": [
|
|
14887
|
-
{
|
|
14888
|
-
"value": "start",
|
|
14889
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
14890
|
-
},
|
|
14891
|
-
{
|
|
14892
|
-
"value": "end",
|
|
14893
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
14894
|
-
},
|
|
14895
|
-
{
|
|
14896
|
-
"value": "top",
|
|
14897
|
-
"description": "The top of the input"
|
|
14898
|
-
},
|
|
14899
|
-
{
|
|
14900
|
-
"value": "bottom",
|
|
14901
|
-
"description": "The bottom of the input"
|
|
14902
|
-
}
|
|
14903
|
-
],
|
|
14904
|
-
"defaultValue": "top"
|
|
14905
|
-
},
|
|
14906
|
-
"labelWidth": {
|
|
14907
|
-
"description": "This property sets the width of the `TextBox` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
14908
|
-
},
|
|
14909
|
-
"labelBreak": {
|
|
14910
|
-
"description": "This boolean value indicates whether the `TextBox` label can be split into multiple lines if it would overflow the available label width.",
|
|
14911
|
-
"valueType": "boolean",
|
|
14912
|
-
"defaultValue": true
|
|
14913
|
-
},
|
|
14914
14719
|
"maxLength": {
|
|
14915
14720
|
"description": "This property sets the maximum length of the input it accepts.",
|
|
14916
14721
|
"valueType": "number"
|
|
@@ -15178,40 +14983,6 @@ export default {
|
|
|
15178
14983
|
"description": "This property sets the component's initial value.",
|
|
15179
14984
|
"defaultValue": ""
|
|
15180
14985
|
},
|
|
15181
|
-
"label": {
|
|
15182
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
15183
|
-
"valueType": "string"
|
|
15184
|
-
},
|
|
15185
|
-
"labelPosition": {
|
|
15186
|
-
"description": "Places the label at the given position of the component.",
|
|
15187
|
-
"availableValues": [
|
|
15188
|
-
{
|
|
15189
|
-
"value": "start",
|
|
15190
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
15191
|
-
},
|
|
15192
|
-
{
|
|
15193
|
-
"value": "end",
|
|
15194
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
15195
|
-
},
|
|
15196
|
-
{
|
|
15197
|
-
"value": "top",
|
|
15198
|
-
"description": "The top of the input"
|
|
15199
|
-
},
|
|
15200
|
-
{
|
|
15201
|
-
"value": "bottom",
|
|
15202
|
-
"description": "The bottom of the input"
|
|
15203
|
-
}
|
|
15204
|
-
],
|
|
15205
|
-
"defaultValue": "top"
|
|
15206
|
-
},
|
|
15207
|
-
"labelWidth": {
|
|
15208
|
-
"description": "This property sets the width of the `TextBox` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
15209
|
-
},
|
|
15210
|
-
"labelBreak": {
|
|
15211
|
-
"description": "This boolean value indicates whether the `TextBox` label can be split into multiple lines if it would overflow the available label width.",
|
|
15212
|
-
"valueType": "boolean",
|
|
15213
|
-
"defaultValue": true
|
|
15214
|
-
},
|
|
15215
14986
|
"maxLength": {
|
|
15216
14987
|
"description": "This property sets the maximum length of the input it accepts.",
|
|
15217
14988
|
"valueType": "number"
|
|
@@ -15473,6 +15244,11 @@ export default {
|
|
|
15473
15244
|
"description": "This property indicates whether the component is at the root of the application.",
|
|
15474
15245
|
"valueType": "boolean",
|
|
15475
15246
|
"defaultValue": false
|
|
15247
|
+
},
|
|
15248
|
+
"applyIf": {
|
|
15249
|
+
"description": "This property controls whether the theme wrapper is applied. When true (default), the theme wraps the children. When false, children are rendered unwrapped.",
|
|
15250
|
+
"valueType": "boolean",
|
|
15251
|
+
"defaultValue": true
|
|
15476
15252
|
}
|
|
15477
15253
|
},
|
|
15478
15254
|
"opaque": true
|
|
@@ -15534,40 +15310,6 @@ export default {
|
|
|
15534
15310
|
],
|
|
15535
15311
|
"defaultValue": "none"
|
|
15536
15312
|
},
|
|
15537
|
-
"label": {
|
|
15538
|
-
"description": "This property sets the label of the component. If not set, the component will not display a label.",
|
|
15539
|
-
"valueType": "string"
|
|
15540
|
-
},
|
|
15541
|
-
"labelPosition": {
|
|
15542
|
-
"description": "Places the label at the given position of the component.",
|
|
15543
|
-
"availableValues": [
|
|
15544
|
-
{
|
|
15545
|
-
"value": "start",
|
|
15546
|
-
"description": "The left side of the input (left-to-right) or the right side of the input (right-to-left)"
|
|
15547
|
-
},
|
|
15548
|
-
{
|
|
15549
|
-
"value": "end",
|
|
15550
|
-
"description": "The right side of the input (left-to-right) or the left side of the input (right-to-left)"
|
|
15551
|
-
},
|
|
15552
|
-
{
|
|
15553
|
-
"value": "top",
|
|
15554
|
-
"description": "The top of the input"
|
|
15555
|
-
},
|
|
15556
|
-
{
|
|
15557
|
-
"value": "bottom",
|
|
15558
|
-
"description": "The bottom of the input"
|
|
15559
|
-
}
|
|
15560
|
-
],
|
|
15561
|
-
"defaultValue": "top"
|
|
15562
|
-
},
|
|
15563
|
-
"labelWidth": {
|
|
15564
|
-
"description": "This property sets the width of the `TimeInput` component's label. If not defined, the label's width will be determined by its content and the available space."
|
|
15565
|
-
},
|
|
15566
|
-
"labelBreak": {
|
|
15567
|
-
"description": "This boolean value indicates whether the `TimeInput` label can be split into multiple lines if it would overflow the available label width.",
|
|
15568
|
-
"valueType": "boolean",
|
|
15569
|
-
"defaultValue": true
|
|
15570
|
-
},
|
|
15571
15313
|
"hour24": {
|
|
15572
15314
|
"description": "Whether to use 24-hour format (true) or 12-hour format with AM/PM (false)",
|
|
15573
15315
|
"valueType": "boolean",
|
|
@@ -15924,20 +15666,288 @@ export default {
|
|
|
15924
15666
|
}
|
|
15925
15667
|
},
|
|
15926
15668
|
"Tree": {
|
|
15927
|
-
"status": "
|
|
15928
|
-
"description": "The `Tree` component is a virtualized tree component that displays hierarchical data.",
|
|
15669
|
+
"status": "stable",
|
|
15670
|
+
"description": "The `Tree` component is a virtualized tree component that displays hierarchical data with support for flat and hierarchy data formats.",
|
|
15929
15671
|
"props": {
|
|
15930
15672
|
"data": {
|
|
15931
|
-
"description": "The data source of the tree.",
|
|
15932
|
-
"
|
|
15673
|
+
"description": "The data source of the tree. Format depends on the dataFormat property.",
|
|
15674
|
+
"isRequired": true
|
|
15675
|
+
},
|
|
15676
|
+
"dataFormat": {
|
|
15677
|
+
"description": "The input data structure format: \"flat\" (array with parent relationships) or \"hierarchy\" (nested objects).",
|
|
15678
|
+
"valueType": "string",
|
|
15679
|
+
"defaultValue": "flat"
|
|
15680
|
+
},
|
|
15681
|
+
"idField": {
|
|
15682
|
+
"description": "The property name in source data for unique identifiers.",
|
|
15683
|
+
"valueType": "string",
|
|
15684
|
+
"defaultValue": "id"
|
|
15685
|
+
},
|
|
15686
|
+
"nameField": {
|
|
15687
|
+
"description": "The property name in source data for display text.",
|
|
15688
|
+
"valueType": "string",
|
|
15689
|
+
"defaultValue": "name"
|
|
15690
|
+
},
|
|
15691
|
+
"iconField": {
|
|
15692
|
+
"description": "The property name in source data for icon identifiers.",
|
|
15693
|
+
"valueType": "string",
|
|
15694
|
+
"defaultValue": "icon"
|
|
15695
|
+
},
|
|
15696
|
+
"iconExpandedField": {
|
|
15697
|
+
"description": "The property name in source data for expanded state icons.",
|
|
15698
|
+
"valueType": "string",
|
|
15699
|
+
"defaultValue": "iconExpanded"
|
|
15700
|
+
},
|
|
15701
|
+
"iconCollapsedField": {
|
|
15702
|
+
"description": "The property name in source data for collapsed state icons.",
|
|
15703
|
+
"valueType": "string",
|
|
15704
|
+
"defaultValue": "iconCollapsed"
|
|
15705
|
+
},
|
|
15706
|
+
"parentIdField": {
|
|
15707
|
+
"description": "The property name in source data for parent relationships (used in flat format).",
|
|
15708
|
+
"valueType": "string",
|
|
15709
|
+
"defaultValue": "parentId"
|
|
15710
|
+
},
|
|
15711
|
+
"childrenField": {
|
|
15712
|
+
"description": "The property name in source data for child arrays (used in hierarchy format).",
|
|
15713
|
+
"valueType": "string",
|
|
15714
|
+
"defaultValue": "children"
|
|
15715
|
+
},
|
|
15716
|
+
"selectableField": {
|
|
15717
|
+
"description": "The property name in source data for selectable state (default: \"selectable\").",
|
|
15718
|
+
"valueType": "string",
|
|
15719
|
+
"defaultValue": "selectable"
|
|
15720
|
+
},
|
|
15721
|
+
"selectedValue": {
|
|
15722
|
+
"description": "The selected item ID in source data format."
|
|
15723
|
+
},
|
|
15724
|
+
"defaultExpanded": {
|
|
15725
|
+
"description": "Initial expansion state: \"none\", \"all\", \"first-level\", or array of specific IDs.",
|
|
15726
|
+
"valueType": "string",
|
|
15727
|
+
"defaultValue": "none"
|
|
15728
|
+
},
|
|
15729
|
+
"autoExpandToSelection": {
|
|
15730
|
+
"description": "Automatically expand the path to the selected item.",
|
|
15731
|
+
"valueType": "boolean",
|
|
15732
|
+
"defaultValue": true
|
|
15733
|
+
},
|
|
15734
|
+
"itemClickExpands": {
|
|
15735
|
+
"description": "Whether clicking anywhere on a tree item should expand/collapse the node, not just the expand/collapse icon.",
|
|
15736
|
+
"valueType": "boolean",
|
|
15737
|
+
"defaultValue": false
|
|
15738
|
+
},
|
|
15739
|
+
"iconCollapsed": {
|
|
15740
|
+
"description": "The icon name to use for collapsed nodes (default: \"chevronright\").",
|
|
15741
|
+
"valueType": "string",
|
|
15742
|
+
"defaultValue": "chevronright"
|
|
15743
|
+
},
|
|
15744
|
+
"iconExpanded": {
|
|
15745
|
+
"description": "The icon name to use for expanded nodes (default: \"chevrondown\").",
|
|
15746
|
+
"valueType": "string",
|
|
15747
|
+
"defaultValue": "chevrondown"
|
|
15748
|
+
},
|
|
15749
|
+
"iconSize": {
|
|
15750
|
+
"description": "The size of the expand/collapse icons (default: \"16\").",
|
|
15751
|
+
"valueType": "string",
|
|
15752
|
+
"defaultValue": "16"
|
|
15753
|
+
},
|
|
15754
|
+
"itemHeight": {
|
|
15755
|
+
"description": "The height of each tree row in pixels (default: 35).",
|
|
15756
|
+
"valueType": "number",
|
|
15757
|
+
"defaultValue": 32
|
|
15758
|
+
},
|
|
15759
|
+
"animateExpand": {
|
|
15760
|
+
"description": "When true, uses only the collapsed icon and rotates it for expansion instead of switching icons (default: false).",
|
|
15761
|
+
"valueType": "boolean",
|
|
15762
|
+
"defaultValue": false
|
|
15763
|
+
},
|
|
15764
|
+
"expandRotation": {
|
|
15765
|
+
"description": "The number of degrees to rotate the collapsed icon when expanded in animate mode (default: 90).",
|
|
15766
|
+
"valueType": "number",
|
|
15767
|
+
"defaultValue": 90
|
|
15933
15768
|
},
|
|
15934
|
-
"
|
|
15935
|
-
"description": "The
|
|
15769
|
+
"dynamicField": {
|
|
15770
|
+
"description": "The property name in source data for dynamic loading state (default: \"dynamic\").",
|
|
15771
|
+
"valueType": "string",
|
|
15772
|
+
"defaultValue": "dynamic"
|
|
15936
15773
|
},
|
|
15937
15774
|
"itemTemplate": {
|
|
15938
15775
|
"description": "The template for each item in the tree.",
|
|
15939
15776
|
"valueType": "ComponentDef"
|
|
15940
15777
|
}
|
|
15778
|
+
},
|
|
15779
|
+
"events": {
|
|
15780
|
+
"selectionDidChange": {
|
|
15781
|
+
"description": "Fired when the tree selection changes.",
|
|
15782
|
+
"signature": "(event: TreeSelectionEvent) => void"
|
|
15783
|
+
},
|
|
15784
|
+
"nodeDidExpand": {
|
|
15785
|
+
"description": "Fired when a tree node is expanded.",
|
|
15786
|
+
"signature": "(node: FlatTreeNode) => void"
|
|
15787
|
+
},
|
|
15788
|
+
"nodeDidCollapse": {
|
|
15789
|
+
"description": "Fired when a tree node is collapsed.",
|
|
15790
|
+
"signature": "(node: FlatTreeNode) => void"
|
|
15791
|
+
},
|
|
15792
|
+
"loadChildren": {
|
|
15793
|
+
"description": "Fired when a tree node needs to load children dynamically. Should return an array of child data.",
|
|
15794
|
+
"signature": "(node: FlatTreeNode) => any[]"
|
|
15795
|
+
}
|
|
15796
|
+
},
|
|
15797
|
+
"apis": {
|
|
15798
|
+
"expandAll": {
|
|
15799
|
+
"description": "Expand all nodes in the tree.",
|
|
15800
|
+
"signature": "expandAll(): void"
|
|
15801
|
+
},
|
|
15802
|
+
"collapseAll": {
|
|
15803
|
+
"description": "Collapse all nodes in the tree.",
|
|
15804
|
+
"signature": "collapseAll(): void"
|
|
15805
|
+
},
|
|
15806
|
+
"expandToLevel": {
|
|
15807
|
+
"description": "Expand nodes up to the specified depth level (0-based).",
|
|
15808
|
+
"signature": "expandToLevel(level: number): void",
|
|
15809
|
+
"parameters": {
|
|
15810
|
+
"level": "The maximum depth level to expand (0 = root level only)"
|
|
15811
|
+
}
|
|
15812
|
+
},
|
|
15813
|
+
"expandNode": {
|
|
15814
|
+
"description": "Expand a specific node by its source data ID.",
|
|
15815
|
+
"signature": "expandNode(nodeId: string | number): void",
|
|
15816
|
+
"parameters": {
|
|
15817
|
+
"nodeId": "The ID of the node to expand (source data format)"
|
|
15818
|
+
}
|
|
15819
|
+
},
|
|
15820
|
+
"collapseNode": {
|
|
15821
|
+
"description": "Collapse a specific node by its source data ID.",
|
|
15822
|
+
"signature": "collapseNode(nodeId: string | number): void",
|
|
15823
|
+
"parameters": {
|
|
15824
|
+
"nodeId": "The ID of the node to collapse (source data format)"
|
|
15825
|
+
}
|
|
15826
|
+
},
|
|
15827
|
+
"selectNode": {
|
|
15828
|
+
"description": "Programmatically select a node by its source data ID.",
|
|
15829
|
+
"signature": "selectNode(nodeId: string | number): void",
|
|
15830
|
+
"parameters": {
|
|
15831
|
+
"nodeId": "The ID of the node to select (source data format)"
|
|
15832
|
+
}
|
|
15833
|
+
},
|
|
15834
|
+
"clearSelection": {
|
|
15835
|
+
"description": "Clear the current selection.",
|
|
15836
|
+
"signature": "clearSelection(): void"
|
|
15837
|
+
},
|
|
15838
|
+
"getNodeById": {
|
|
15839
|
+
"description": "Get a tree node by its source data ID.",
|
|
15840
|
+
"signature": "getNodeById(nodeId: string | number): TreeNode | null",
|
|
15841
|
+
"parameters": {
|
|
15842
|
+
"nodeId": "The ID of the node to retrieve (source data format)"
|
|
15843
|
+
}
|
|
15844
|
+
},
|
|
15845
|
+
"getExpandedNodes": {
|
|
15846
|
+
"description": "Get an array of currently expanded node IDs in source data format.",
|
|
15847
|
+
"signature": "getExpandedNodes(): (string | number)[]"
|
|
15848
|
+
},
|
|
15849
|
+
"getSelectedNode": {
|
|
15850
|
+
"description": "Get the currently selected tree node.",
|
|
15851
|
+
"signature": "getSelectedNode(): TreeNode | null"
|
|
15852
|
+
},
|
|
15853
|
+
"scrollIntoView": {
|
|
15854
|
+
"description": "Scroll to a specific node and expand parent nodes as needed to make it visible.",
|
|
15855
|
+
"signature": "scrollIntoView(nodeId: string | number, options?: ScrollIntoViewOptions): void",
|
|
15856
|
+
"parameters": {
|
|
15857
|
+
"nodeId": "The ID of the node to scroll to (source data format)",
|
|
15858
|
+
"options": "Optional scroll options"
|
|
15859
|
+
}
|
|
15860
|
+
},
|
|
15861
|
+
"scrollToItem": {
|
|
15862
|
+
"description": "Scroll to a specific node if it's currently visible in the tree.",
|
|
15863
|
+
"signature": "scrollToItem(nodeId: string | number): void",
|
|
15864
|
+
"parameters": {
|
|
15865
|
+
"nodeId": "The ID of the node to scroll to (source data format)"
|
|
15866
|
+
}
|
|
15867
|
+
},
|
|
15868
|
+
"appendNode": {
|
|
15869
|
+
"description": "Add a new node to the tree as a child of the specified parent node.",
|
|
15870
|
+
"signature": "appendNode(parentNodeId: string | number | null, nodeData: any): void",
|
|
15871
|
+
"parameters": {
|
|
15872
|
+
"parentNodeId": "The ID of the parent node, or null/undefined to add to root level",
|
|
15873
|
+
"nodeData": "The node data object using the format specified in dataFormat and field properties"
|
|
15874
|
+
}
|
|
15875
|
+
},
|
|
15876
|
+
"removeNode": {
|
|
15877
|
+
"description": "Remove a node and all its descendants from the tree.",
|
|
15878
|
+
"signature": "removeNode(nodeId: string | number): void",
|
|
15879
|
+
"parameters": {
|
|
15880
|
+
"nodeId": "The ID of the node to remove (along with all its descendants)"
|
|
15881
|
+
}
|
|
15882
|
+
},
|
|
15883
|
+
"removeChildren": {
|
|
15884
|
+
"description": "Remove all children (descendants) of a node while keeping the node itself.",
|
|
15885
|
+
"signature": "removeChildren(nodeId: string | number): void",
|
|
15886
|
+
"parameters": {
|
|
15887
|
+
"nodeId": "The ID of the parent node whose children should be removed"
|
|
15888
|
+
}
|
|
15889
|
+
},
|
|
15890
|
+
"insertNodeBefore": {
|
|
15891
|
+
"description": "Insert a new node before an existing node at the same level.",
|
|
15892
|
+
"signature": "insertNodeBefore(beforeNodeId: string | number, nodeData: any): void",
|
|
15893
|
+
"parameters": {
|
|
15894
|
+
"beforeNodeId": "The ID of the existing node before which the new node should be inserted",
|
|
15895
|
+
"nodeData": "The node data object using the format specified in dataFormat and field properties"
|
|
15896
|
+
}
|
|
15897
|
+
},
|
|
15898
|
+
"insertNodeAfter": {
|
|
15899
|
+
"description": "Insert a new node after an existing node at the same level.",
|
|
15900
|
+
"signature": "insertNodeAfter(afterNodeId: string | number, nodeData: any): void",
|
|
15901
|
+
"parameters": {
|
|
15902
|
+
"afterNodeId": "The ID of the existing node after which the new node should be inserted",
|
|
15903
|
+
"nodeData": "The node data object using the format specified in dataFormat and field properties"
|
|
15904
|
+
}
|
|
15905
|
+
},
|
|
15906
|
+
"getNodeLoadingState": {
|
|
15907
|
+
"description": "Get the loading state of a dynamic node.",
|
|
15908
|
+
"signature": "getNodeLoadingState(nodeId: string | number): NodeLoadingState",
|
|
15909
|
+
"parameters": {
|
|
15910
|
+
"nodeId": "The ID of the node to check loading state for"
|
|
15911
|
+
}
|
|
15912
|
+
},
|
|
15913
|
+
"markNodeLoaded": {
|
|
15914
|
+
"description": "Mark a dynamic node as loaded.",
|
|
15915
|
+
"signature": "markNodeLoaded(nodeId: string | number): void",
|
|
15916
|
+
"parameters": {
|
|
15917
|
+
"nodeId": "The ID of the node to mark as loaded"
|
|
15918
|
+
}
|
|
15919
|
+
},
|
|
15920
|
+
"markNodeUnloaded": {
|
|
15921
|
+
"description": "Mark a dynamic node as unloaded and collapse it.",
|
|
15922
|
+
"signature": "markNodeUnloaded(nodeId: string | number): void",
|
|
15923
|
+
"parameters": {
|
|
15924
|
+
"nodeId": "The ID of the node to mark as unloaded"
|
|
15925
|
+
}
|
|
15926
|
+
}
|
|
15927
|
+
},
|
|
15928
|
+
"themeVars": {
|
|
15929
|
+
"backgroundColor-Tree-row--selected": "var(--xmlui-backgroundColor-Tree-row--selected)",
|
|
15930
|
+
"backgroundColor-Tree-row--hover": "var(--xmlui-backgroundColor-Tree-row--hover)",
|
|
15931
|
+
"textColor-Tree": "var(--xmlui-textColor-Tree)",
|
|
15932
|
+
"textColor-Tree--selected": "var(--xmlui-textColor-Tree--selected)",
|
|
15933
|
+
"textColor-Tree--hover": "var(--xmlui-textColor-Tree--hover)",
|
|
15934
|
+
"borderColor-Tree-row--focus": "var(--xmlui-borderColor-Tree-row--focus)",
|
|
15935
|
+
"outlineColor-Tree--focus": "var(--xmlui-outlineColor-Tree--focus)",
|
|
15936
|
+
"outlineWidth-Tree--focus": "var(--xmlui-outlineWidth-Tree--focus)",
|
|
15937
|
+
"outlineStyle-Tree--focus": "var(--xmlui-outlineStyle-Tree--focus)",
|
|
15938
|
+
"outlineOffset-Tree--focus": "var(--xmlui-outlineOffset-Tree--focus)"
|
|
15939
|
+
},
|
|
15940
|
+
"defaultThemeVars": {
|
|
15941
|
+
"backgroundColor-Tree-row--selected": "$color-primary-50",
|
|
15942
|
+
"backgroundColor-Tree-row--hover": "$color-surface-100",
|
|
15943
|
+
"textColor-Tree": "$textColor-primary",
|
|
15944
|
+
"textColor-Tree--selected": "$color-primary-900",
|
|
15945
|
+
"textColor-Tree--hover": "$textColor-primary",
|
|
15946
|
+
"borderColor-Tree-row--focus": "$color-primary-500",
|
|
15947
|
+
"outlineColor-Tree--focus": "$outlineColor--focus",
|
|
15948
|
+
"outlineWidth-Tree--focus": "$outlineWidth--focus",
|
|
15949
|
+
"outlineStyle-Tree--focus": "$outlineStyle--focus",
|
|
15950
|
+
"outlineOffset-Tree--focus": "$outlineOffset--focus"
|
|
15941
15951
|
}
|
|
15942
15952
|
},
|
|
15943
15953
|
"BarChart": {
|
|
@@ -15948,8 +15958,8 @@ export default {
|
|
|
15948
15958
|
"data": {
|
|
15949
15959
|
"description": "This property is used to provide the component with data to display.The data needs to be an array of objects."
|
|
15950
15960
|
},
|
|
15951
|
-
"
|
|
15952
|
-
"description": "
|
|
15961
|
+
"yKeys": {
|
|
15962
|
+
"description": "Specifies the key in the data objects that will be used to label the different data series.",
|
|
15953
15963
|
"valueType": "string"
|
|
15954
15964
|
},
|
|
15955
15965
|
"stacked": {
|
|
@@ -15966,8 +15976,8 @@ export default {
|
|
|
15966
15976
|
],
|
|
15967
15977
|
"defaultValue": "vertical"
|
|
15968
15978
|
},
|
|
15969
|
-
"
|
|
15970
|
-
"description": "
|
|
15979
|
+
"xKey": {
|
|
15980
|
+
"description": "This property specifies the keys in the data objects that should be used for rendering the bars.E.g. 'id' or 'key'.",
|
|
15971
15981
|
"valueType": "string"
|
|
15972
15982
|
},
|
|
15973
15983
|
"hideX": {
|
|
@@ -16130,12 +16140,12 @@ export default {
|
|
|
16130
16140
|
"data": {
|
|
16131
16141
|
"description": "The data to be displayed in the line chart.It needs to be an array of objects, where each object represents a data point."
|
|
16132
16142
|
},
|
|
16133
|
-
"
|
|
16134
|
-
"description": "
|
|
16143
|
+
"xKey": {
|
|
16144
|
+
"description": "The key in the data objects used for labeling different data series.",
|
|
16135
16145
|
"valueType": "string"
|
|
16136
16146
|
},
|
|
16137
|
-
"
|
|
16138
|
-
"description": "
|
|
16147
|
+
"yKeys": {
|
|
16148
|
+
"description": "This property specifies the keys in the data objects that should be used for rendering the lines.",
|
|
16139
16149
|
"valueType": "string"
|
|
16140
16150
|
},
|
|
16141
16151
|
"hideX": {
|