@umbraco-ui/uui 1.2.0-rc.2 → 1.2.0
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/custom-elements.json +188 -82
- package/dist/uui.min.js +402 -34
- package/dist/uui.min.js.map +1 -1
- package/package.json +81 -81
- package/vscode-html-custom-data.json +85 -29
package/custom-elements.json
CHANGED
|
@@ -599,12 +599,16 @@
|
|
|
599
599
|
],
|
|
600
600
|
"slots": [
|
|
601
601
|
{
|
|
602
|
-
"name": "
|
|
603
|
-
"description": "for
|
|
602
|
+
"name": "",
|
|
603
|
+
"description": "for default content"
|
|
604
604
|
},
|
|
605
605
|
{
|
|
606
|
-
"name": "",
|
|
607
|
-
"description": "
|
|
606
|
+
"name": "label",
|
|
607
|
+
"description": "for label content"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"name": "extra",
|
|
611
|
+
"description": "for extra"
|
|
608
612
|
}
|
|
609
613
|
],
|
|
610
614
|
"cssProperties": [
|
|
@@ -1318,12 +1322,6 @@
|
|
|
1318
1322
|
"description": "fires when the element is begin checked by a user action"
|
|
1319
1323
|
}
|
|
1320
1324
|
],
|
|
1321
|
-
"slots": [
|
|
1322
|
-
{
|
|
1323
|
-
"name": "",
|
|
1324
|
-
"description": "Override the default label"
|
|
1325
|
-
}
|
|
1326
|
-
],
|
|
1327
1325
|
"cssProperties": [
|
|
1328
1326
|
{
|
|
1329
1327
|
"name": "--uui-checkbox-size",
|
|
@@ -1591,12 +1589,6 @@
|
|
|
1591
1589
|
"description": "Fired when the color changes"
|
|
1592
1590
|
}
|
|
1593
1591
|
],
|
|
1594
|
-
"slots": [
|
|
1595
|
-
{
|
|
1596
|
-
"name": "",
|
|
1597
|
-
"description": "Override the default label"
|
|
1598
|
-
}
|
|
1599
|
-
],
|
|
1600
1592
|
"cssProperties": [
|
|
1601
1593
|
{
|
|
1602
1594
|
"name": "--uui-color-picker-width",
|
|
@@ -1741,12 +1733,6 @@
|
|
|
1741
1733
|
"description": "Fires when the value of the slider changes."
|
|
1742
1734
|
}
|
|
1743
1735
|
],
|
|
1744
|
-
"slots": [
|
|
1745
|
-
{
|
|
1746
|
-
"name": "",
|
|
1747
|
-
"description": "Override the default label"
|
|
1748
|
-
}
|
|
1749
|
-
],
|
|
1750
1736
|
"cssProperties": [
|
|
1751
1737
|
{
|
|
1752
1738
|
"name": "--uui-slider-height",
|
|
@@ -1894,10 +1880,6 @@
|
|
|
1894
1880
|
{
|
|
1895
1881
|
"name": "label",
|
|
1896
1882
|
"description": "Default slot for the label."
|
|
1897
|
-
},
|
|
1898
|
-
{
|
|
1899
|
-
"name": "",
|
|
1900
|
-
"description": "Override the default label"
|
|
1901
1883
|
}
|
|
1902
1884
|
],
|
|
1903
1885
|
"cssProperties": [
|
|
@@ -2793,9 +2775,15 @@
|
|
|
2793
2775
|
"type": "boolean",
|
|
2794
2776
|
"default": "\"true\""
|
|
2795
2777
|
},
|
|
2778
|
+
{
|
|
2779
|
+
"name": "min",
|
|
2780
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
2781
|
+
"type": "number | string",
|
|
2782
|
+
"default": "\"undefined\""
|
|
2783
|
+
},
|
|
2796
2784
|
{
|
|
2797
2785
|
"name": "minlength",
|
|
2798
|
-
"description": "
|
|
2786
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
2799
2787
|
"type": "number",
|
|
2800
2788
|
"default": "\"undefined\""
|
|
2801
2789
|
},
|
|
@@ -2804,9 +2792,15 @@
|
|
|
2804
2792
|
"description": "Minlength validation message.",
|
|
2805
2793
|
"type": "boolean"
|
|
2806
2794
|
},
|
|
2795
|
+
{
|
|
2796
|
+
"name": "max",
|
|
2797
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
2798
|
+
"type": "number | string",
|
|
2799
|
+
"default": "\"undefined\""
|
|
2800
|
+
},
|
|
2807
2801
|
{
|
|
2808
2802
|
"name": "maxlength",
|
|
2809
|
-
"description": "
|
|
2803
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
2810
2804
|
"type": "number",
|
|
2811
2805
|
"default": "\"undefined\""
|
|
2812
2806
|
},
|
|
@@ -2815,6 +2809,12 @@
|
|
|
2815
2809
|
"description": "Maxlength validation message.",
|
|
2816
2810
|
"type": "boolean"
|
|
2817
2811
|
},
|
|
2812
|
+
{
|
|
2813
|
+
"name": "step",
|
|
2814
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
2815
|
+
"type": "number",
|
|
2816
|
+
"default": "\"undefined\""
|
|
2817
|
+
},
|
|
2818
2818
|
{
|
|
2819
2819
|
"name": "disabled",
|
|
2820
2820
|
"description": "Disables the input.",
|
|
@@ -2906,10 +2906,17 @@
|
|
|
2906
2906
|
"type": "CSSResult[]",
|
|
2907
2907
|
"default": "[null,null]"
|
|
2908
2908
|
},
|
|
2909
|
+
{
|
|
2910
|
+
"name": "min",
|
|
2911
|
+
"attribute": "min",
|
|
2912
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
2913
|
+
"type": "number | string",
|
|
2914
|
+
"default": "\"undefined\""
|
|
2915
|
+
},
|
|
2909
2916
|
{
|
|
2910
2917
|
"name": "minlength",
|
|
2911
2918
|
"attribute": "minlength",
|
|
2912
|
-
"description": "
|
|
2919
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
2913
2920
|
"type": "number",
|
|
2914
2921
|
"default": "\"undefined\""
|
|
2915
2922
|
},
|
|
@@ -2919,10 +2926,17 @@
|
|
|
2919
2926
|
"description": "Minlength validation message.",
|
|
2920
2927
|
"type": "boolean"
|
|
2921
2928
|
},
|
|
2929
|
+
{
|
|
2930
|
+
"name": "max",
|
|
2931
|
+
"attribute": "max",
|
|
2932
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
2933
|
+
"type": "number | string",
|
|
2934
|
+
"default": "\"undefined\""
|
|
2935
|
+
},
|
|
2922
2936
|
{
|
|
2923
2937
|
"name": "maxlength",
|
|
2924
2938
|
"attribute": "maxlength",
|
|
2925
|
-
"description": "
|
|
2939
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
2926
2940
|
"type": "number",
|
|
2927
2941
|
"default": "\"undefined\""
|
|
2928
2942
|
},
|
|
@@ -2932,6 +2946,13 @@
|
|
|
2932
2946
|
"description": "Maxlength validation message.",
|
|
2933
2947
|
"type": "boolean"
|
|
2934
2948
|
},
|
|
2949
|
+
{
|
|
2950
|
+
"name": "step",
|
|
2951
|
+
"attribute": "step",
|
|
2952
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
2953
|
+
"type": "number",
|
|
2954
|
+
"default": "\"undefined\""
|
|
2955
|
+
},
|
|
2935
2956
|
{
|
|
2936
2957
|
"name": "disabled",
|
|
2937
2958
|
"attribute": "disabled",
|
|
@@ -3058,10 +3079,6 @@
|
|
|
3058
3079
|
{
|
|
3059
3080
|
"name": "append",
|
|
3060
3081
|
"description": "for components to render to the right of the input."
|
|
3061
|
-
},
|
|
3062
|
-
{
|
|
3063
|
-
"name": "",
|
|
3064
|
-
"description": "Override the default label"
|
|
3065
3082
|
}
|
|
3066
3083
|
]
|
|
3067
3084
|
},
|
|
@@ -3069,9 +3086,15 @@
|
|
|
3069
3086
|
"name": "uui-input-password",
|
|
3070
3087
|
"path": "./../uui-input-password/lib/uui-input-password.element.ts",
|
|
3071
3088
|
"attributes": [
|
|
3089
|
+
{
|
|
3090
|
+
"name": "min",
|
|
3091
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
3092
|
+
"type": "number | string",
|
|
3093
|
+
"default": "\"undefined\""
|
|
3094
|
+
},
|
|
3072
3095
|
{
|
|
3073
3096
|
"name": "minlength",
|
|
3074
|
-
"description": "
|
|
3097
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3075
3098
|
"type": "number",
|
|
3076
3099
|
"default": "\"undefined\""
|
|
3077
3100
|
},
|
|
@@ -3080,9 +3103,15 @@
|
|
|
3080
3103
|
"description": "Minlength validation message.",
|
|
3081
3104
|
"type": "boolean"
|
|
3082
3105
|
},
|
|
3106
|
+
{
|
|
3107
|
+
"name": "max",
|
|
3108
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
3109
|
+
"type": "number | string",
|
|
3110
|
+
"default": "\"undefined\""
|
|
3111
|
+
},
|
|
3083
3112
|
{
|
|
3084
3113
|
"name": "maxlength",
|
|
3085
|
-
"description": "
|
|
3114
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3086
3115
|
"type": "number",
|
|
3087
3116
|
"default": "\"undefined\""
|
|
3088
3117
|
},
|
|
@@ -3091,6 +3120,12 @@
|
|
|
3091
3120
|
"description": "Maxlength validation message.",
|
|
3092
3121
|
"type": "boolean"
|
|
3093
3122
|
},
|
|
3123
|
+
{
|
|
3124
|
+
"name": "step",
|
|
3125
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
3126
|
+
"type": "number",
|
|
3127
|
+
"default": "\"undefined\""
|
|
3128
|
+
},
|
|
3094
3129
|
{
|
|
3095
3130
|
"name": "disabled",
|
|
3096
3131
|
"description": "Disables the input.",
|
|
@@ -3175,10 +3210,17 @@
|
|
|
3175
3210
|
"type": "CSSResult[]",
|
|
3176
3211
|
"default": "[null,null]"
|
|
3177
3212
|
},
|
|
3213
|
+
{
|
|
3214
|
+
"name": "min",
|
|
3215
|
+
"attribute": "min",
|
|
3216
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
3217
|
+
"type": "number | string",
|
|
3218
|
+
"default": "\"undefined\""
|
|
3219
|
+
},
|
|
3178
3220
|
{
|
|
3179
3221
|
"name": "minlength",
|
|
3180
3222
|
"attribute": "minlength",
|
|
3181
|
-
"description": "
|
|
3223
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3182
3224
|
"type": "number",
|
|
3183
3225
|
"default": "\"undefined\""
|
|
3184
3226
|
},
|
|
@@ -3188,10 +3230,17 @@
|
|
|
3188
3230
|
"description": "Minlength validation message.",
|
|
3189
3231
|
"type": "boolean"
|
|
3190
3232
|
},
|
|
3233
|
+
{
|
|
3234
|
+
"name": "max",
|
|
3235
|
+
"attribute": "max",
|
|
3236
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
3237
|
+
"type": "number | string",
|
|
3238
|
+
"default": "\"undefined\""
|
|
3239
|
+
},
|
|
3191
3240
|
{
|
|
3192
3241
|
"name": "maxlength",
|
|
3193
3242
|
"attribute": "maxlength",
|
|
3194
|
-
"description": "
|
|
3243
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3195
3244
|
"type": "number",
|
|
3196
3245
|
"default": "\"undefined\""
|
|
3197
3246
|
},
|
|
@@ -3201,6 +3250,13 @@
|
|
|
3201
3250
|
"description": "Maxlength validation message.",
|
|
3202
3251
|
"type": "boolean"
|
|
3203
3252
|
},
|
|
3253
|
+
{
|
|
3254
|
+
"name": "step",
|
|
3255
|
+
"attribute": "step",
|
|
3256
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
3257
|
+
"type": "number",
|
|
3258
|
+
"default": "\"undefined\""
|
|
3259
|
+
},
|
|
3204
3260
|
{
|
|
3205
3261
|
"name": "disabled",
|
|
3206
3262
|
"attribute": "disabled",
|
|
@@ -3327,10 +3383,6 @@
|
|
|
3327
3383
|
{
|
|
3328
3384
|
"name": "append",
|
|
3329
3385
|
"description": "for components to render to the right of the input."
|
|
3330
|
-
},
|
|
3331
|
-
{
|
|
3332
|
-
"name": "",
|
|
3333
|
-
"description": "Override the default label"
|
|
3334
3386
|
}
|
|
3335
3387
|
]
|
|
3336
3388
|
},
|
|
@@ -3339,9 +3391,15 @@
|
|
|
3339
3391
|
"path": "./../uui-input/lib/uui-input.element.ts",
|
|
3340
3392
|
"description": "Custom element wrapping the native input element.This is a formAssociated element, meaning it can participate in a native HTMLForm. A name:value pair will be submitted.",
|
|
3341
3393
|
"attributes": [
|
|
3394
|
+
{
|
|
3395
|
+
"name": "min",
|
|
3396
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
3397
|
+
"type": "number | string",
|
|
3398
|
+
"default": "\"undefined\""
|
|
3399
|
+
},
|
|
3342
3400
|
{
|
|
3343
3401
|
"name": "minlength",
|
|
3344
|
-
"description": "
|
|
3402
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3345
3403
|
"type": "number",
|
|
3346
3404
|
"default": "\"undefined\""
|
|
3347
3405
|
},
|
|
@@ -3350,9 +3408,15 @@
|
|
|
3350
3408
|
"description": "Minlength validation message.",
|
|
3351
3409
|
"type": "boolean"
|
|
3352
3410
|
},
|
|
3411
|
+
{
|
|
3412
|
+
"name": "max",
|
|
3413
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
3414
|
+
"type": "number | string",
|
|
3415
|
+
"default": "\"undefined\""
|
|
3416
|
+
},
|
|
3353
3417
|
{
|
|
3354
3418
|
"name": "maxlength",
|
|
3355
|
-
"description": "
|
|
3419
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3356
3420
|
"type": "number",
|
|
3357
3421
|
"default": "\"undefined\""
|
|
3358
3422
|
},
|
|
@@ -3361,6 +3425,12 @@
|
|
|
3361
3425
|
"description": "Maxlength validation message.",
|
|
3362
3426
|
"type": "boolean"
|
|
3363
3427
|
},
|
|
3428
|
+
{
|
|
3429
|
+
"name": "step",
|
|
3430
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
3431
|
+
"type": "number",
|
|
3432
|
+
"default": "\"undefined\""
|
|
3433
|
+
},
|
|
3364
3434
|
{
|
|
3365
3435
|
"name": "disabled",
|
|
3366
3436
|
"description": "Disables the input.",
|
|
@@ -3445,10 +3515,17 @@
|
|
|
3445
3515
|
"type": "CSSResult[]",
|
|
3446
3516
|
"default": "[null]"
|
|
3447
3517
|
},
|
|
3518
|
+
{
|
|
3519
|
+
"name": "min",
|
|
3520
|
+
"attribute": "min",
|
|
3521
|
+
"description": "Sets the min value of the input.\nExamples: the first date the user may pick in date and datetime-local, or the min numeric value the user can pick in a number input.",
|
|
3522
|
+
"type": "number | string",
|
|
3523
|
+
"default": "\"undefined\""
|
|
3524
|
+
},
|
|
3448
3525
|
{
|
|
3449
3526
|
"name": "minlength",
|
|
3450
3527
|
"attribute": "minlength",
|
|
3451
|
-
"description": "
|
|
3528
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3452
3529
|
"type": "number",
|
|
3453
3530
|
"default": "\"undefined\""
|
|
3454
3531
|
},
|
|
@@ -3458,10 +3535,17 @@
|
|
|
3458
3535
|
"description": "Minlength validation message.",
|
|
3459
3536
|
"type": "boolean"
|
|
3460
3537
|
},
|
|
3538
|
+
{
|
|
3539
|
+
"name": "max",
|
|
3540
|
+
"attribute": "max",
|
|
3541
|
+
"description": "Sets the max value of the input.\nExamples: the last date the user may pick in date and datetime-local, or the max numeric value the user can pick in a number input.",
|
|
3542
|
+
"type": "number | string",
|
|
3543
|
+
"default": "\"undefined\""
|
|
3544
|
+
},
|
|
3461
3545
|
{
|
|
3462
3546
|
"name": "maxlength",
|
|
3463
3547
|
"attribute": "maxlength",
|
|
3464
|
-
"description": "
|
|
3548
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3465
3549
|
"type": "number",
|
|
3466
3550
|
"default": "\"undefined\""
|
|
3467
3551
|
},
|
|
@@ -3471,6 +3555,13 @@
|
|
|
3471
3555
|
"description": "Maxlength validation message.",
|
|
3472
3556
|
"type": "boolean"
|
|
3473
3557
|
},
|
|
3558
|
+
{
|
|
3559
|
+
"name": "step",
|
|
3560
|
+
"attribute": "step",
|
|
3561
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
3562
|
+
"type": "number",
|
|
3563
|
+
"default": "\"undefined\""
|
|
3564
|
+
},
|
|
3474
3565
|
{
|
|
3475
3566
|
"name": "disabled",
|
|
3476
3567
|
"attribute": "disabled",
|
|
@@ -3597,10 +3688,6 @@
|
|
|
3597
3688
|
{
|
|
3598
3689
|
"name": "append",
|
|
3599
3690
|
"description": "for components to render to the right of the input."
|
|
3600
|
-
},
|
|
3601
|
-
{
|
|
3602
|
-
"name": "",
|
|
3603
|
-
"description": "Override the default label"
|
|
3604
3691
|
}
|
|
3605
3692
|
]
|
|
3606
3693
|
},
|
|
@@ -4610,28 +4697,28 @@
|
|
|
4610
4697
|
"default": "\"100\""
|
|
4611
4698
|
},
|
|
4612
4699
|
{
|
|
4613
|
-
"name": "
|
|
4614
|
-
"description": "
|
|
4700
|
+
"name": "min-gap",
|
|
4701
|
+
"description": "Minimum value gap between the the two picked values. Cannot be lower than the step value and cannot be higher than the maximum gap",
|
|
4615
4702
|
"type": "number",
|
|
4616
|
-
"default": "\"
|
|
4703
|
+
"default": "\"undefined\""
|
|
4617
4704
|
},
|
|
4618
4705
|
{
|
|
4619
|
-
"name": "
|
|
4620
|
-
"description": "
|
|
4706
|
+
"name": "max-gap",
|
|
4707
|
+
"description": "Maximum value gap between the the two picked values. Cannot be lower than the minimum gap.",
|
|
4621
4708
|
"type": "number",
|
|
4622
|
-
"default": "\"
|
|
4709
|
+
"default": "\"undefined\""
|
|
4623
4710
|
},
|
|
4624
4711
|
{
|
|
4625
|
-
"name": "
|
|
4626
|
-
"description": "
|
|
4712
|
+
"name": "value-low",
|
|
4713
|
+
"description": "The lower picked value.",
|
|
4627
4714
|
"type": "number",
|
|
4628
|
-
"default": "\"
|
|
4715
|
+
"default": "\"0\""
|
|
4629
4716
|
},
|
|
4630
4717
|
{
|
|
4631
|
-
"name": "
|
|
4632
|
-
"description": "
|
|
4718
|
+
"name": "value-high",
|
|
4719
|
+
"description": "The higher picked value.",
|
|
4633
4720
|
"type": "number",
|
|
4634
|
-
"default": "\"
|
|
4721
|
+
"default": "\"100\""
|
|
4635
4722
|
},
|
|
4636
4723
|
{
|
|
4637
4724
|
"name": "name",
|
|
@@ -4723,6 +4810,20 @@
|
|
|
4723
4810
|
"type": "number",
|
|
4724
4811
|
"default": "\"100\""
|
|
4725
4812
|
},
|
|
4813
|
+
{
|
|
4814
|
+
"name": "minGap",
|
|
4815
|
+
"attribute": "min-gap",
|
|
4816
|
+
"description": "Minimum value gap between the the two picked values. Cannot be lower than the step value and cannot be higher than the maximum gap",
|
|
4817
|
+
"type": "number",
|
|
4818
|
+
"default": "\"undefined\""
|
|
4819
|
+
},
|
|
4820
|
+
{
|
|
4821
|
+
"name": "maxGap",
|
|
4822
|
+
"attribute": "max-gap",
|
|
4823
|
+
"description": "Maximum value gap between the the two picked values. Cannot be lower than the minimum gap.",
|
|
4824
|
+
"type": "number",
|
|
4825
|
+
"default": "\"undefined\""
|
|
4826
|
+
},
|
|
4726
4827
|
{
|
|
4727
4828
|
"name": "valueLow",
|
|
4728
4829
|
"attribute": "value-low",
|
|
@@ -4737,20 +4838,6 @@
|
|
|
4737
4838
|
"type": "number",
|
|
4738
4839
|
"default": "\"100\""
|
|
4739
4840
|
},
|
|
4740
|
-
{
|
|
4741
|
-
"name": "minGap",
|
|
4742
|
-
"attribute": "min-gap",
|
|
4743
|
-
"description": "Minimum value gap between the the two picked values. Cannot be lower than the step value and cannot be higher than the maximum gap",
|
|
4744
|
-
"type": "number",
|
|
4745
|
-
"default": "\"1\""
|
|
4746
|
-
},
|
|
4747
|
-
{
|
|
4748
|
-
"name": "maxGap",
|
|
4749
|
-
"attribute": "max-gap",
|
|
4750
|
-
"description": "Maximum value gap between the the two picked values. Cannot be lower than the minimum gap.",
|
|
4751
|
-
"type": "number",
|
|
4752
|
-
"default": "\"undefined\""
|
|
4753
|
-
},
|
|
4754
4841
|
{
|
|
4755
4842
|
"name": "formAssociated",
|
|
4756
4843
|
"description": "This is a static class field indicating that the element is can be used inside a native form and participate in its events.\nIt may require a polyfill, check support here https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals.\nRead more about form controls here https://web.dev/more-capable-form-controls/",
|
|
@@ -4813,6 +4900,16 @@
|
|
|
4813
4900
|
{
|
|
4814
4901
|
"name": "validationMessage"
|
|
4815
4902
|
}
|
|
4903
|
+
],
|
|
4904
|
+
"events": [
|
|
4905
|
+
{
|
|
4906
|
+
"name": "input",
|
|
4907
|
+
"description": "on input"
|
|
4908
|
+
},
|
|
4909
|
+
{
|
|
4910
|
+
"name": "change",
|
|
4911
|
+
"description": "on change"
|
|
4912
|
+
}
|
|
4816
4913
|
]
|
|
4817
4914
|
},
|
|
4818
4915
|
{
|
|
@@ -5919,11 +6016,26 @@
|
|
|
5919
6016
|
{
|
|
5920
6017
|
"name": "uui-scroll-container",
|
|
5921
6018
|
"path": "./../uui-scroll-container/lib/uui-scroll-container.element.ts",
|
|
6019
|
+
"attributes": [
|
|
6020
|
+
{
|
|
6021
|
+
"name": "enforce-scroll",
|
|
6022
|
+
"description": "forces the scrollbar to appear",
|
|
6023
|
+
"type": "boolean",
|
|
6024
|
+
"default": "false"
|
|
6025
|
+
}
|
|
6026
|
+
],
|
|
5922
6027
|
"properties": [
|
|
5923
6028
|
{
|
|
5924
6029
|
"name": "styles",
|
|
5925
6030
|
"type": "CSSResult[]",
|
|
5926
6031
|
"default": "[null]"
|
|
6032
|
+
},
|
|
6033
|
+
{
|
|
6034
|
+
"name": "enforceScroll",
|
|
6035
|
+
"attribute": "enforce-scroll",
|
|
6036
|
+
"description": "forces the scrollbar to appear",
|
|
6037
|
+
"type": "boolean",
|
|
6038
|
+
"default": "false"
|
|
5927
6039
|
}
|
|
5928
6040
|
],
|
|
5929
6041
|
"slots": [
|
|
@@ -7696,12 +7808,6 @@
|
|
|
7696
7808
|
"description": "on change"
|
|
7697
7809
|
}
|
|
7698
7810
|
],
|
|
7699
|
-
"slots": [
|
|
7700
|
-
{
|
|
7701
|
-
"name": "",
|
|
7702
|
-
"description": "Override the default label"
|
|
7703
|
-
}
|
|
7704
|
-
],
|
|
7705
7811
|
"cssProperties": [
|
|
7706
7812
|
{
|
|
7707
7813
|
"name": "--uui-toggle-size",
|