@umbraco-ui/uui 1.4.0-rc.0 → 1.4.0-rc.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/custom-elements.json +76 -45
- package/dist/uui.min.js +8 -8
- package/dist/uui.min.js.map +1 -1
- package/package.json +81 -81
- package/vscode-html-custom-data.json +39 -27
package/custom-elements.json
CHANGED
|
@@ -680,6 +680,10 @@
|
|
|
680
680
|
{
|
|
681
681
|
"name": "--uui-button-contrast-disabled",
|
|
682
682
|
"description": "overwrite the text color for disabled state"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "--uui-button-content-align",
|
|
686
|
+
"description": "Overwrite justify-content alignment. Possible values: 'left', 'right', 'center'."
|
|
683
687
|
}
|
|
684
688
|
]
|
|
685
689
|
},
|
|
@@ -2799,7 +2803,7 @@
|
|
|
2799
2803
|
{
|
|
2800
2804
|
"name": "minlength-message",
|
|
2801
2805
|
"description": "Minlength validation message.",
|
|
2802
|
-
"type": "
|
|
2806
|
+
"type": "string"
|
|
2803
2807
|
},
|
|
2804
2808
|
{
|
|
2805
2809
|
"name": "max",
|
|
@@ -2816,7 +2820,7 @@
|
|
|
2816
2820
|
{
|
|
2817
2821
|
"name": "maxlength-message",
|
|
2818
2822
|
"description": "Maxlength validation message.",
|
|
2819
|
-
"type": "
|
|
2823
|
+
"type": "string"
|
|
2820
2824
|
},
|
|
2821
2825
|
{
|
|
2822
2826
|
"name": "step",
|
|
@@ -2852,7 +2856,7 @@
|
|
|
2852
2856
|
"name": "auto-width",
|
|
2853
2857
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
2854
2858
|
"type": "boolean",
|
|
2855
|
-
"default": "
|
|
2859
|
+
"default": "false"
|
|
2856
2860
|
},
|
|
2857
2861
|
{
|
|
2858
2862
|
"name": "type",
|
|
@@ -2863,14 +2867,18 @@
|
|
|
2863
2867
|
{
|
|
2864
2868
|
"name": "pattern",
|
|
2865
2869
|
"description": "Validates the input based on the Regex pattern",
|
|
2866
|
-
"type": "string"
|
|
2867
|
-
"default": "\"undefined\""
|
|
2870
|
+
"type": "string"
|
|
2868
2871
|
},
|
|
2869
2872
|
{
|
|
2870
|
-
"name": "
|
|
2873
|
+
"name": "inputMode",
|
|
2871
2874
|
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
2872
2875
|
"type": "string",
|
|
2873
|
-
"default": "\"
|
|
2876
|
+
"default": "\"\""
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"name": "spellcheck",
|
|
2880
|
+
"description": "get/set native spellcheck attribute",
|
|
2881
|
+
"type": "boolean"
|
|
2874
2882
|
},
|
|
2875
2883
|
{
|
|
2876
2884
|
"name": "name",
|
|
@@ -2951,7 +2959,7 @@
|
|
|
2951
2959
|
"name": "minlengthMessage",
|
|
2952
2960
|
"attribute": "minlength-message",
|
|
2953
2961
|
"description": "Minlength validation message.",
|
|
2954
|
-
"type": "
|
|
2962
|
+
"type": "string"
|
|
2955
2963
|
},
|
|
2956
2964
|
{
|
|
2957
2965
|
"name": "max",
|
|
@@ -2971,7 +2979,7 @@
|
|
|
2971
2979
|
"name": "maxlengthMessage",
|
|
2972
2980
|
"attribute": "maxlength-message",
|
|
2973
2981
|
"description": "Maxlength validation message.",
|
|
2974
|
-
"type": "
|
|
2982
|
+
"type": "string"
|
|
2975
2983
|
},
|
|
2976
2984
|
{
|
|
2977
2985
|
"name": "step",
|
|
@@ -3013,7 +3021,7 @@
|
|
|
3013
3021
|
"attribute": "auto-width",
|
|
3014
3022
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
3015
3023
|
"type": "boolean",
|
|
3016
|
-
"default": "
|
|
3024
|
+
"default": "false"
|
|
3017
3025
|
},
|
|
3018
3026
|
{
|
|
3019
3027
|
"name": "type",
|
|
@@ -3026,15 +3034,20 @@
|
|
|
3026
3034
|
"name": "pattern",
|
|
3027
3035
|
"attribute": "pattern",
|
|
3028
3036
|
"description": "Validates the input based on the Regex pattern",
|
|
3029
|
-
"type": "string"
|
|
3030
|
-
"default": "\"undefined\""
|
|
3037
|
+
"type": "string"
|
|
3031
3038
|
},
|
|
3032
3039
|
{
|
|
3033
|
-
"name": "
|
|
3034
|
-
"attribute": "
|
|
3040
|
+
"name": "inputMode",
|
|
3041
|
+
"attribute": "inputMode",
|
|
3035
3042
|
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
3036
3043
|
"type": "string",
|
|
3037
|
-
"default": "\"
|
|
3044
|
+
"default": "\"\""
|
|
3045
|
+
},
|
|
3046
|
+
{
|
|
3047
|
+
"name": "spellcheck",
|
|
3048
|
+
"attribute": "spellcheck",
|
|
3049
|
+
"description": "get/set native spellcheck attribute",
|
|
3050
|
+
"type": "boolean"
|
|
3038
3051
|
},
|
|
3039
3052
|
{
|
|
3040
3053
|
"name": "formAssociated",
|
|
@@ -3149,7 +3162,7 @@
|
|
|
3149
3162
|
{
|
|
3150
3163
|
"name": "minlength-message",
|
|
3151
3164
|
"description": "Minlength validation message.",
|
|
3152
|
-
"type": "
|
|
3165
|
+
"type": "string"
|
|
3153
3166
|
},
|
|
3154
3167
|
{
|
|
3155
3168
|
"name": "max",
|
|
@@ -3166,7 +3179,7 @@
|
|
|
3166
3179
|
{
|
|
3167
3180
|
"name": "maxlength-message",
|
|
3168
3181
|
"description": "Maxlength validation message.",
|
|
3169
|
-
"type": "
|
|
3182
|
+
"type": "string"
|
|
3170
3183
|
},
|
|
3171
3184
|
{
|
|
3172
3185
|
"name": "step",
|
|
@@ -3202,7 +3215,7 @@
|
|
|
3202
3215
|
"name": "auto-width",
|
|
3203
3216
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
3204
3217
|
"type": "boolean",
|
|
3205
|
-
"default": "
|
|
3218
|
+
"default": "false"
|
|
3206
3219
|
},
|
|
3207
3220
|
{
|
|
3208
3221
|
"name": "type",
|
|
@@ -3213,14 +3226,18 @@
|
|
|
3213
3226
|
{
|
|
3214
3227
|
"name": "pattern",
|
|
3215
3228
|
"description": "Validates the input based on the Regex pattern",
|
|
3216
|
-
"type": "string"
|
|
3217
|
-
"default": "\"undefined\""
|
|
3229
|
+
"type": "string"
|
|
3218
3230
|
},
|
|
3219
3231
|
{
|
|
3220
|
-
"name": "
|
|
3232
|
+
"name": "inputMode",
|
|
3221
3233
|
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
3222
3234
|
"type": "string",
|
|
3223
|
-
"default": "\"
|
|
3235
|
+
"default": "\"\""
|
|
3236
|
+
},
|
|
3237
|
+
{
|
|
3238
|
+
"name": "spellcheck",
|
|
3239
|
+
"description": "get/set native spellcheck attribute",
|
|
3240
|
+
"type": "boolean"
|
|
3224
3241
|
},
|
|
3225
3242
|
{
|
|
3226
3243
|
"name": "name",
|
|
@@ -3294,7 +3311,7 @@
|
|
|
3294
3311
|
"name": "minlengthMessage",
|
|
3295
3312
|
"attribute": "minlength-message",
|
|
3296
3313
|
"description": "Minlength validation message.",
|
|
3297
|
-
"type": "
|
|
3314
|
+
"type": "string"
|
|
3298
3315
|
},
|
|
3299
3316
|
{
|
|
3300
3317
|
"name": "max",
|
|
@@ -3314,7 +3331,7 @@
|
|
|
3314
3331
|
"name": "maxlengthMessage",
|
|
3315
3332
|
"attribute": "maxlength-message",
|
|
3316
3333
|
"description": "Maxlength validation message.",
|
|
3317
|
-
"type": "
|
|
3334
|
+
"type": "string"
|
|
3318
3335
|
},
|
|
3319
3336
|
{
|
|
3320
3337
|
"name": "step",
|
|
@@ -3356,7 +3373,7 @@
|
|
|
3356
3373
|
"attribute": "auto-width",
|
|
3357
3374
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
3358
3375
|
"type": "boolean",
|
|
3359
|
-
"default": "
|
|
3376
|
+
"default": "false"
|
|
3360
3377
|
},
|
|
3361
3378
|
{
|
|
3362
3379
|
"name": "type",
|
|
@@ -3369,15 +3386,20 @@
|
|
|
3369
3386
|
"name": "pattern",
|
|
3370
3387
|
"attribute": "pattern",
|
|
3371
3388
|
"description": "Validates the input based on the Regex pattern",
|
|
3372
|
-
"type": "string"
|
|
3373
|
-
"default": "\"undefined\""
|
|
3389
|
+
"type": "string"
|
|
3374
3390
|
},
|
|
3375
3391
|
{
|
|
3376
|
-
"name": "
|
|
3377
|
-
"attribute": "
|
|
3392
|
+
"name": "inputMode",
|
|
3393
|
+
"attribute": "inputMode",
|
|
3378
3394
|
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
3379
3395
|
"type": "string",
|
|
3380
|
-
"default": "\"
|
|
3396
|
+
"default": "\"\""
|
|
3397
|
+
},
|
|
3398
|
+
{
|
|
3399
|
+
"name": "spellcheck",
|
|
3400
|
+
"attribute": "spellcheck",
|
|
3401
|
+
"description": "get/set native spellcheck attribute",
|
|
3402
|
+
"type": "boolean"
|
|
3381
3403
|
},
|
|
3382
3404
|
{
|
|
3383
3405
|
"name": "formAssociated",
|
|
@@ -3493,7 +3515,7 @@
|
|
|
3493
3515
|
{
|
|
3494
3516
|
"name": "minlength-message",
|
|
3495
3517
|
"description": "Minlength validation message.",
|
|
3496
|
-
"type": "
|
|
3518
|
+
"type": "string"
|
|
3497
3519
|
},
|
|
3498
3520
|
{
|
|
3499
3521
|
"name": "max",
|
|
@@ -3510,7 +3532,7 @@
|
|
|
3510
3532
|
{
|
|
3511
3533
|
"name": "maxlength-message",
|
|
3512
3534
|
"description": "Maxlength validation message.",
|
|
3513
|
-
"type": "
|
|
3535
|
+
"type": "string"
|
|
3514
3536
|
},
|
|
3515
3537
|
{
|
|
3516
3538
|
"name": "step",
|
|
@@ -3546,7 +3568,7 @@
|
|
|
3546
3568
|
"name": "auto-width",
|
|
3547
3569
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
3548
3570
|
"type": "boolean",
|
|
3549
|
-
"default": "
|
|
3571
|
+
"default": "false"
|
|
3550
3572
|
},
|
|
3551
3573
|
{
|
|
3552
3574
|
"name": "type",
|
|
@@ -3557,14 +3579,18 @@
|
|
|
3557
3579
|
{
|
|
3558
3580
|
"name": "pattern",
|
|
3559
3581
|
"description": "Validates the input based on the Regex pattern",
|
|
3560
|
-
"type": "string"
|
|
3561
|
-
"default": "\"undefined\""
|
|
3582
|
+
"type": "string"
|
|
3562
3583
|
},
|
|
3563
3584
|
{
|
|
3564
|
-
"name": "
|
|
3585
|
+
"name": "inputMode",
|
|
3565
3586
|
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
3566
3587
|
"type": "string",
|
|
3567
|
-
"default": "\"
|
|
3588
|
+
"default": "\"\""
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"name": "spellcheck",
|
|
3592
|
+
"description": "get/set native spellcheck attribute",
|
|
3593
|
+
"type": "boolean"
|
|
3568
3594
|
},
|
|
3569
3595
|
{
|
|
3570
3596
|
"name": "name",
|
|
@@ -3638,7 +3664,7 @@
|
|
|
3638
3664
|
"name": "minlengthMessage",
|
|
3639
3665
|
"attribute": "minlength-message",
|
|
3640
3666
|
"description": "Minlength validation message.",
|
|
3641
|
-
"type": "
|
|
3667
|
+
"type": "string"
|
|
3642
3668
|
},
|
|
3643
3669
|
{
|
|
3644
3670
|
"name": "max",
|
|
@@ -3658,7 +3684,7 @@
|
|
|
3658
3684
|
"name": "maxlengthMessage",
|
|
3659
3685
|
"attribute": "maxlength-message",
|
|
3660
3686
|
"description": "Maxlength validation message.",
|
|
3661
|
-
"type": "
|
|
3687
|
+
"type": "string"
|
|
3662
3688
|
},
|
|
3663
3689
|
{
|
|
3664
3690
|
"name": "step",
|
|
@@ -3700,7 +3726,7 @@
|
|
|
3700
3726
|
"attribute": "auto-width",
|
|
3701
3727
|
"description": "Sets the input width to fit the value or placeholder if empty",
|
|
3702
3728
|
"type": "boolean",
|
|
3703
|
-
"default": "
|
|
3729
|
+
"default": "false"
|
|
3704
3730
|
},
|
|
3705
3731
|
{
|
|
3706
3732
|
"name": "type",
|
|
@@ -3713,15 +3739,20 @@
|
|
|
3713
3739
|
"name": "pattern",
|
|
3714
3740
|
"attribute": "pattern",
|
|
3715
3741
|
"description": "Validates the input based on the Regex pattern",
|
|
3716
|
-
"type": "string"
|
|
3717
|
-
"default": "\"undefined\""
|
|
3742
|
+
"type": "string"
|
|
3718
3743
|
},
|
|
3719
3744
|
{
|
|
3720
|
-
"name": "
|
|
3721
|
-
"attribute": "
|
|
3745
|
+
"name": "inputMode",
|
|
3746
|
+
"attribute": "inputMode",
|
|
3722
3747
|
"description": "The inputmode global attribute is an enumerated attribute that hints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard.",
|
|
3723
3748
|
"type": "string",
|
|
3724
|
-
"default": "\"
|
|
3749
|
+
"default": "\"\""
|
|
3750
|
+
},
|
|
3751
|
+
{
|
|
3752
|
+
"name": "spellcheck",
|
|
3753
|
+
"attribute": "spellcheck",
|
|
3754
|
+
"description": "get/set native spellcheck attribute",
|
|
3755
|
+
"type": "boolean"
|
|
3725
3756
|
},
|
|
3726
3757
|
{
|
|
3727
3758
|
"name": "formAssociated",
|