@umbraco-ui/uui 1.2.0-rc.3 → 1.2.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 +129 -12
- package/dist/uui.min.js +15 -15
- package/dist/uui.min.js.map +1 -1
- package/package.json +81 -81
- package/vscode-html-custom-data.json +54 -9
package/custom-elements.json
CHANGED
|
@@ -2775,9 +2775,15 @@
|
|
|
2775
2775
|
"type": "boolean",
|
|
2776
2776
|
"default": "\"true\""
|
|
2777
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
|
+
},
|
|
2778
2784
|
{
|
|
2779
2785
|
"name": "minlength",
|
|
2780
|
-
"description": "
|
|
2786
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
2781
2787
|
"type": "number",
|
|
2782
2788
|
"default": "\"undefined\""
|
|
2783
2789
|
},
|
|
@@ -2786,9 +2792,15 @@
|
|
|
2786
2792
|
"description": "Minlength validation message.",
|
|
2787
2793
|
"type": "boolean"
|
|
2788
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
|
+
},
|
|
2789
2801
|
{
|
|
2790
2802
|
"name": "maxlength",
|
|
2791
|
-
"description": "
|
|
2803
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
2792
2804
|
"type": "number",
|
|
2793
2805
|
"default": "\"undefined\""
|
|
2794
2806
|
},
|
|
@@ -2797,6 +2809,12 @@
|
|
|
2797
2809
|
"description": "Maxlength validation message.",
|
|
2798
2810
|
"type": "boolean"
|
|
2799
2811
|
},
|
|
2812
|
+
{
|
|
2813
|
+
"name": "step",
|
|
2814
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
2815
|
+
"type": "number",
|
|
2816
|
+
"default": "\"undefined\""
|
|
2817
|
+
},
|
|
2800
2818
|
{
|
|
2801
2819
|
"name": "disabled",
|
|
2802
2820
|
"description": "Disables the input.",
|
|
@@ -2888,10 +2906,17 @@
|
|
|
2888
2906
|
"type": "CSSResult[]",
|
|
2889
2907
|
"default": "[null,null]"
|
|
2890
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
|
+
},
|
|
2891
2916
|
{
|
|
2892
2917
|
"name": "minlength",
|
|
2893
2918
|
"attribute": "minlength",
|
|
2894
|
-
"description": "
|
|
2919
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
2895
2920
|
"type": "number",
|
|
2896
2921
|
"default": "\"undefined\""
|
|
2897
2922
|
},
|
|
@@ -2901,10 +2926,17 @@
|
|
|
2901
2926
|
"description": "Minlength validation message.",
|
|
2902
2927
|
"type": "boolean"
|
|
2903
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
|
+
},
|
|
2904
2936
|
{
|
|
2905
2937
|
"name": "maxlength",
|
|
2906
2938
|
"attribute": "maxlength",
|
|
2907
|
-
"description": "
|
|
2939
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
2908
2940
|
"type": "number",
|
|
2909
2941
|
"default": "\"undefined\""
|
|
2910
2942
|
},
|
|
@@ -2914,6 +2946,13 @@
|
|
|
2914
2946
|
"description": "Maxlength validation message.",
|
|
2915
2947
|
"type": "boolean"
|
|
2916
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
|
+
},
|
|
2917
2956
|
{
|
|
2918
2957
|
"name": "disabled",
|
|
2919
2958
|
"attribute": "disabled",
|
|
@@ -3047,9 +3086,15 @@
|
|
|
3047
3086
|
"name": "uui-input-password",
|
|
3048
3087
|
"path": "./../uui-input-password/lib/uui-input-password.element.ts",
|
|
3049
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
|
+
},
|
|
3050
3095
|
{
|
|
3051
3096
|
"name": "minlength",
|
|
3052
|
-
"description": "
|
|
3097
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3053
3098
|
"type": "number",
|
|
3054
3099
|
"default": "\"undefined\""
|
|
3055
3100
|
},
|
|
@@ -3058,9 +3103,15 @@
|
|
|
3058
3103
|
"description": "Minlength validation message.",
|
|
3059
3104
|
"type": "boolean"
|
|
3060
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
|
+
},
|
|
3061
3112
|
{
|
|
3062
3113
|
"name": "maxlength",
|
|
3063
|
-
"description": "
|
|
3114
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3064
3115
|
"type": "number",
|
|
3065
3116
|
"default": "\"undefined\""
|
|
3066
3117
|
},
|
|
@@ -3069,6 +3120,12 @@
|
|
|
3069
3120
|
"description": "Maxlength validation message.",
|
|
3070
3121
|
"type": "boolean"
|
|
3071
3122
|
},
|
|
3123
|
+
{
|
|
3124
|
+
"name": "step",
|
|
3125
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
3126
|
+
"type": "number",
|
|
3127
|
+
"default": "\"undefined\""
|
|
3128
|
+
},
|
|
3072
3129
|
{
|
|
3073
3130
|
"name": "disabled",
|
|
3074
3131
|
"description": "Disables the input.",
|
|
@@ -3153,10 +3210,17 @@
|
|
|
3153
3210
|
"type": "CSSResult[]",
|
|
3154
3211
|
"default": "[null,null]"
|
|
3155
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
|
+
},
|
|
3156
3220
|
{
|
|
3157
3221
|
"name": "minlength",
|
|
3158
3222
|
"attribute": "minlength",
|
|
3159
|
-
"description": "
|
|
3223
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3160
3224
|
"type": "number",
|
|
3161
3225
|
"default": "\"undefined\""
|
|
3162
3226
|
},
|
|
@@ -3166,10 +3230,17 @@
|
|
|
3166
3230
|
"description": "Minlength validation message.",
|
|
3167
3231
|
"type": "boolean"
|
|
3168
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
|
+
},
|
|
3169
3240
|
{
|
|
3170
3241
|
"name": "maxlength",
|
|
3171
3242
|
"attribute": "maxlength",
|
|
3172
|
-
"description": "
|
|
3243
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3173
3244
|
"type": "number",
|
|
3174
3245
|
"default": "\"undefined\""
|
|
3175
3246
|
},
|
|
@@ -3179,6 +3250,13 @@
|
|
|
3179
3250
|
"description": "Maxlength validation message.",
|
|
3180
3251
|
"type": "boolean"
|
|
3181
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
|
+
},
|
|
3182
3260
|
{
|
|
3183
3261
|
"name": "disabled",
|
|
3184
3262
|
"attribute": "disabled",
|
|
@@ -3313,9 +3391,15 @@
|
|
|
3313
3391
|
"path": "./../uui-input/lib/uui-input.element.ts",
|
|
3314
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.",
|
|
3315
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
|
+
},
|
|
3316
3400
|
{
|
|
3317
3401
|
"name": "minlength",
|
|
3318
|
-
"description": "
|
|
3402
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3319
3403
|
"type": "number",
|
|
3320
3404
|
"default": "\"undefined\""
|
|
3321
3405
|
},
|
|
@@ -3324,9 +3408,15 @@
|
|
|
3324
3408
|
"description": "Minlength validation message.",
|
|
3325
3409
|
"type": "boolean"
|
|
3326
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
|
+
},
|
|
3327
3417
|
{
|
|
3328
3418
|
"name": "maxlength",
|
|
3329
|
-
"description": "
|
|
3419
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3330
3420
|
"type": "number",
|
|
3331
3421
|
"default": "\"undefined\""
|
|
3332
3422
|
},
|
|
@@ -3335,6 +3425,12 @@
|
|
|
3335
3425
|
"description": "Maxlength validation message.",
|
|
3336
3426
|
"type": "boolean"
|
|
3337
3427
|
},
|
|
3428
|
+
{
|
|
3429
|
+
"name": "step",
|
|
3430
|
+
"description": "Specifies the interval between legal numbers of the input",
|
|
3431
|
+
"type": "number",
|
|
3432
|
+
"default": "\"undefined\""
|
|
3433
|
+
},
|
|
3338
3434
|
{
|
|
3339
3435
|
"name": "disabled",
|
|
3340
3436
|
"description": "Disables the input.",
|
|
@@ -3419,10 +3515,17 @@
|
|
|
3419
3515
|
"type": "CSSResult[]",
|
|
3420
3516
|
"default": "[null]"
|
|
3421
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
|
+
},
|
|
3422
3525
|
{
|
|
3423
3526
|
"name": "minlength",
|
|
3424
3527
|
"attribute": "minlength",
|
|
3425
|
-
"description": "
|
|
3528
|
+
"description": "Sets the minimum length of the value of the input.",
|
|
3426
3529
|
"type": "number",
|
|
3427
3530
|
"default": "\"undefined\""
|
|
3428
3531
|
},
|
|
@@ -3432,10 +3535,17 @@
|
|
|
3432
3535
|
"description": "Minlength validation message.",
|
|
3433
3536
|
"type": "boolean"
|
|
3434
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
|
+
},
|
|
3435
3545
|
{
|
|
3436
3546
|
"name": "maxlength",
|
|
3437
3547
|
"attribute": "maxlength",
|
|
3438
|
-
"description": "
|
|
3548
|
+
"description": "Sets the maximum length of the value of the input.",
|
|
3439
3549
|
"type": "number",
|
|
3440
3550
|
"default": "\"undefined\""
|
|
3441
3551
|
},
|
|
@@ -3445,6 +3555,13 @@
|
|
|
3445
3555
|
"description": "Maxlength validation message.",
|
|
3446
3556
|
"type": "boolean"
|
|
3447
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
|
+
},
|
|
3448
3565
|
{
|
|
3449
3566
|
"name": "disabled",
|
|
3450
3567
|
"attribute": "disabled",
|