@umbraco-ui/uui 1.13.0 → 1.14.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 +183 -49
- package/dist/uui.min.js +68 -68
- package/dist/uui.min.js.map +1 -1
- package/package.json +86 -86
- package/vscode-html-custom-data.json +157 -24
package/custom-elements.json
CHANGED
|
@@ -85,6 +85,12 @@
|
|
|
85
85
|
"description": "Provide the name used for labels and to generate the initials.",
|
|
86
86
|
"type": "string",
|
|
87
87
|
"default": "\"''\""
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "initials",
|
|
91
|
+
"description": "Use this to override the initials generated from the name.",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"default": "\"undefined\""
|
|
88
94
|
}
|
|
89
95
|
],
|
|
90
96
|
"properties": [
|
|
@@ -116,6 +122,13 @@
|
|
|
116
122
|
"type": "string",
|
|
117
123
|
"default": "\"''\""
|
|
118
124
|
},
|
|
125
|
+
{
|
|
126
|
+
"name": "initials",
|
|
127
|
+
"attribute": "initials",
|
|
128
|
+
"description": "Use this to override the initials generated from the name.",
|
|
129
|
+
"type": "string",
|
|
130
|
+
"default": "\"undefined\""
|
|
131
|
+
},
|
|
119
132
|
{
|
|
120
133
|
"name": "styles",
|
|
121
134
|
"type": "CSSResult[]",
|
|
@@ -1854,6 +1867,10 @@
|
|
|
1854
1867
|
"name": "tag",
|
|
1855
1868
|
"description": "slot for the tag with support for `<uui-tag>` elements"
|
|
1856
1869
|
},
|
|
1870
|
+
{
|
|
1871
|
+
"name": "avatar",
|
|
1872
|
+
"description": "slot for the avatar with support for the `<uui-avatar>` element"
|
|
1873
|
+
},
|
|
1857
1874
|
{
|
|
1858
1875
|
"name": "actions",
|
|
1859
1876
|
"description": "slot for the actions with support for the `<uui-action-bar>` element"
|
|
@@ -3796,6 +3813,18 @@
|
|
|
3796
3813
|
"type": "boolean",
|
|
3797
3814
|
"default": "\"true\""
|
|
3798
3815
|
},
|
|
3816
|
+
{
|
|
3817
|
+
"name": "unlock-label",
|
|
3818
|
+
"description": "Define the label for the unlock button.",
|
|
3819
|
+
"type": "string",
|
|
3820
|
+
"default": "\"true\""
|
|
3821
|
+
},
|
|
3822
|
+
{
|
|
3823
|
+
"name": "lock-label",
|
|
3824
|
+
"description": "Define the label for the lock button.",
|
|
3825
|
+
"type": "string",
|
|
3826
|
+
"default": "\"true\""
|
|
3827
|
+
},
|
|
3799
3828
|
{
|
|
3800
3829
|
"name": "min",
|
|
3801
3830
|
"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.",
|
|
@@ -3811,7 +3840,7 @@
|
|
|
3811
3840
|
{
|
|
3812
3841
|
"name": "minlength-message",
|
|
3813
3842
|
"description": "Minlength validation message.",
|
|
3814
|
-
"type": "string",
|
|
3843
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
3815
3844
|
"default": "\"\""
|
|
3816
3845
|
},
|
|
3817
3846
|
{
|
|
@@ -3829,7 +3858,7 @@
|
|
|
3829
3858
|
{
|
|
3830
3859
|
"name": "maxlength-message",
|
|
3831
3860
|
"description": "Maxlength validation message.",
|
|
3832
|
-
"type": "string",
|
|
3861
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
3833
3862
|
"default": "\"\""
|
|
3834
3863
|
},
|
|
3835
3864
|
{
|
|
@@ -3871,7 +3900,13 @@
|
|
|
3871
3900
|
{
|
|
3872
3901
|
"name": "type",
|
|
3873
3902
|
"description": "This property specifies the type of input that will be rendered.",
|
|
3874
|
-
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
3903
|
+
"type": "'text' | 'tel' | 'url' | 'email' | 'password' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'color'",
|
|
3904
|
+
"default": "\"text\""
|
|
3905
|
+
},
|
|
3906
|
+
{
|
|
3907
|
+
"name": "inputmode",
|
|
3908
|
+
"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.",
|
|
3909
|
+
"type": "'text' | 'none' | 'decimal' | 'number' | 'tel' | 'search' | 'email' | 'url'",
|
|
3875
3910
|
"default": "\"text\""
|
|
3876
3911
|
},
|
|
3877
3912
|
{
|
|
@@ -3880,10 +3915,10 @@
|
|
|
3880
3915
|
"type": "string"
|
|
3881
3916
|
},
|
|
3882
3917
|
{
|
|
3883
|
-
"name": "
|
|
3884
|
-
"description": "
|
|
3885
|
-
"type": "
|
|
3886
|
-
"default": "
|
|
3918
|
+
"name": "tabindex",
|
|
3919
|
+
"description": "Set the input tabindex, set this to `-1` to avoid tabbing into the input.",
|
|
3920
|
+
"type": "number",
|
|
3921
|
+
"default": "-1"
|
|
3887
3922
|
},
|
|
3888
3923
|
{
|
|
3889
3924
|
"name": "spellcheck",
|
|
@@ -3946,6 +3981,20 @@
|
|
|
3946
3981
|
"type": "boolean",
|
|
3947
3982
|
"default": "\"true\""
|
|
3948
3983
|
},
|
|
3984
|
+
{
|
|
3985
|
+
"name": "unlockLabel",
|
|
3986
|
+
"attribute": "unlock-label",
|
|
3987
|
+
"description": "Define the label for the unlock button.",
|
|
3988
|
+
"type": "string",
|
|
3989
|
+
"default": "\"true\""
|
|
3990
|
+
},
|
|
3991
|
+
{
|
|
3992
|
+
"name": "lockLabel",
|
|
3993
|
+
"attribute": "lock-label",
|
|
3994
|
+
"description": "Define the label for the lock button.",
|
|
3995
|
+
"type": "string",
|
|
3996
|
+
"default": "\"true\""
|
|
3997
|
+
},
|
|
3949
3998
|
{
|
|
3950
3999
|
"name": "min",
|
|
3951
4000
|
"attribute": "min",
|
|
@@ -3964,7 +4013,7 @@
|
|
|
3964
4013
|
"name": "minlengthMessage",
|
|
3965
4014
|
"attribute": "minlength-message",
|
|
3966
4015
|
"description": "Minlength validation message.",
|
|
3967
|
-
"type": "string",
|
|
4016
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
3968
4017
|
"default": "\"\""
|
|
3969
4018
|
},
|
|
3970
4019
|
{
|
|
@@ -3985,7 +4034,7 @@
|
|
|
3985
4034
|
"name": "maxlengthMessage",
|
|
3986
4035
|
"attribute": "maxlength-message",
|
|
3987
4036
|
"description": "Maxlength validation message.",
|
|
3988
|
-
"type": "string",
|
|
4037
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
3989
4038
|
"default": "\"\""
|
|
3990
4039
|
},
|
|
3991
4040
|
{
|
|
@@ -4034,7 +4083,14 @@
|
|
|
4034
4083
|
"name": "type",
|
|
4035
4084
|
"attribute": "type",
|
|
4036
4085
|
"description": "This property specifies the type of input that will be rendered.",
|
|
4037
|
-
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
4086
|
+
"type": "'text' | 'tel' | 'url' | 'email' | 'password' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'color'",
|
|
4087
|
+
"default": "\"text\""
|
|
4088
|
+
},
|
|
4089
|
+
{
|
|
4090
|
+
"name": "inputMode",
|
|
4091
|
+
"attribute": "inputmode",
|
|
4092
|
+
"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.",
|
|
4093
|
+
"type": "'text' | 'none' | 'decimal' | 'number' | 'tel' | 'search' | 'email' | 'url'",
|
|
4038
4094
|
"default": "\"text\""
|
|
4039
4095
|
},
|
|
4040
4096
|
{
|
|
@@ -4044,11 +4100,11 @@
|
|
|
4044
4100
|
"type": "string"
|
|
4045
4101
|
},
|
|
4046
4102
|
{
|
|
4047
|
-
"name": "
|
|
4048
|
-
"attribute": "
|
|
4049
|
-
"description": "
|
|
4050
|
-
"type": "
|
|
4051
|
-
"default": "
|
|
4103
|
+
"name": "tabIndex",
|
|
4104
|
+
"attribute": "tabindex",
|
|
4105
|
+
"description": "Set the input tabindex, set this to `-1` to avoid tabbing into the input.",
|
|
4106
|
+
"type": "number",
|
|
4107
|
+
"default": "-1"
|
|
4052
4108
|
},
|
|
4053
4109
|
{
|
|
4054
4110
|
"name": "styles",
|
|
@@ -4217,7 +4273,7 @@
|
|
|
4217
4273
|
{
|
|
4218
4274
|
"name": "minlength-message",
|
|
4219
4275
|
"description": "Minlength validation message.",
|
|
4220
|
-
"type": "string",
|
|
4276
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
4221
4277
|
"default": "\"\""
|
|
4222
4278
|
},
|
|
4223
4279
|
{
|
|
@@ -4235,7 +4291,7 @@
|
|
|
4235
4291
|
{
|
|
4236
4292
|
"name": "maxlength-message",
|
|
4237
4293
|
"description": "Maxlength validation message.",
|
|
4238
|
-
"type": "string",
|
|
4294
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
4239
4295
|
"default": "\"\""
|
|
4240
4296
|
},
|
|
4241
4297
|
{
|
|
@@ -4277,7 +4333,13 @@
|
|
|
4277
4333
|
{
|
|
4278
4334
|
"name": "type",
|
|
4279
4335
|
"description": "This property specifies the type of input that will be rendered.",
|
|
4280
|
-
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
4336
|
+
"type": "'text' | 'tel' | 'url' | 'email' | 'password' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'color'",
|
|
4337
|
+
"default": "\"text\""
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"name": "inputmode",
|
|
4341
|
+
"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.",
|
|
4342
|
+
"type": "'text' | 'none' | 'decimal' | 'number' | 'tel' | 'search' | 'email' | 'url'",
|
|
4281
4343
|
"default": "\"text\""
|
|
4282
4344
|
},
|
|
4283
4345
|
{
|
|
@@ -4286,10 +4348,10 @@
|
|
|
4286
4348
|
"type": "string"
|
|
4287
4349
|
},
|
|
4288
4350
|
{
|
|
4289
|
-
"name": "
|
|
4290
|
-
"description": "
|
|
4291
|
-
"type": "
|
|
4292
|
-
"default": "
|
|
4351
|
+
"name": "tabindex",
|
|
4352
|
+
"description": "Set the input tabindex, set this to `-1` to avoid tabbing into the input.",
|
|
4353
|
+
"type": "number",
|
|
4354
|
+
"default": "0"
|
|
4293
4355
|
},
|
|
4294
4356
|
{
|
|
4295
4357
|
"name": "spellcheck",
|
|
@@ -4363,7 +4425,7 @@
|
|
|
4363
4425
|
"name": "minlengthMessage",
|
|
4364
4426
|
"attribute": "minlength-message",
|
|
4365
4427
|
"description": "Minlength validation message.",
|
|
4366
|
-
"type": "string",
|
|
4428
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
4367
4429
|
"default": "\"\""
|
|
4368
4430
|
},
|
|
4369
4431
|
{
|
|
@@ -4384,7 +4446,7 @@
|
|
|
4384
4446
|
"name": "maxlengthMessage",
|
|
4385
4447
|
"attribute": "maxlength-message",
|
|
4386
4448
|
"description": "Maxlength validation message.",
|
|
4387
|
-
"type": "string",
|
|
4449
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
4388
4450
|
"default": "\"\""
|
|
4389
4451
|
},
|
|
4390
4452
|
{
|
|
@@ -4433,7 +4495,14 @@
|
|
|
4433
4495
|
"name": "type",
|
|
4434
4496
|
"attribute": "type",
|
|
4435
4497
|
"description": "This property specifies the type of input that will be rendered.",
|
|
4436
|
-
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
4498
|
+
"type": "'text' | 'tel' | 'url' | 'email' | 'password' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'color'",
|
|
4499
|
+
"default": "\"text\""
|
|
4500
|
+
},
|
|
4501
|
+
{
|
|
4502
|
+
"name": "inputMode",
|
|
4503
|
+
"attribute": "inputmode",
|
|
4504
|
+
"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.",
|
|
4505
|
+
"type": "'text' | 'none' | 'decimal' | 'number' | 'tel' | 'search' | 'email' | 'url'",
|
|
4437
4506
|
"default": "\"text\""
|
|
4438
4507
|
},
|
|
4439
4508
|
{
|
|
@@ -4443,11 +4512,11 @@
|
|
|
4443
4512
|
"type": "string"
|
|
4444
4513
|
},
|
|
4445
4514
|
{
|
|
4446
|
-
"name": "
|
|
4447
|
-
"attribute": "
|
|
4448
|
-
"description": "
|
|
4449
|
-
"type": "
|
|
4450
|
-
"default": "
|
|
4515
|
+
"name": "tabIndex",
|
|
4516
|
+
"attribute": "tabindex",
|
|
4517
|
+
"description": "Set the input tabindex, set this to `-1` to avoid tabbing into the input.",
|
|
4518
|
+
"type": "number",
|
|
4519
|
+
"default": "0"
|
|
4451
4520
|
},
|
|
4452
4521
|
{
|
|
4453
4522
|
"name": "styles",
|
|
@@ -4617,7 +4686,7 @@
|
|
|
4617
4686
|
{
|
|
4618
4687
|
"name": "minlength-message",
|
|
4619
4688
|
"description": "Minlength validation message.",
|
|
4620
|
-
"type": "string",
|
|
4689
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
4621
4690
|
"default": "\"\""
|
|
4622
4691
|
},
|
|
4623
4692
|
{
|
|
@@ -4635,7 +4704,7 @@
|
|
|
4635
4704
|
{
|
|
4636
4705
|
"name": "maxlength-message",
|
|
4637
4706
|
"description": "Maxlength validation message.",
|
|
4638
|
-
"type": "string",
|
|
4707
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
4639
4708
|
"default": "\"\""
|
|
4640
4709
|
},
|
|
4641
4710
|
{
|
|
@@ -4677,7 +4746,13 @@
|
|
|
4677
4746
|
{
|
|
4678
4747
|
"name": "type",
|
|
4679
4748
|
"description": "This property specifies the type of input that will be rendered.",
|
|
4680
|
-
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
4749
|
+
"type": "'text' | 'tel' | 'url' | 'email' | 'password' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'color'",
|
|
4750
|
+
"default": "\"text\""
|
|
4751
|
+
},
|
|
4752
|
+
{
|
|
4753
|
+
"name": "inputmode",
|
|
4754
|
+
"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.",
|
|
4755
|
+
"type": "'text' | 'none' | 'decimal' | 'number' | 'tel' | 'search' | 'email' | 'url'",
|
|
4681
4756
|
"default": "\"text\""
|
|
4682
4757
|
},
|
|
4683
4758
|
{
|
|
@@ -4686,10 +4761,10 @@
|
|
|
4686
4761
|
"type": "string"
|
|
4687
4762
|
},
|
|
4688
4763
|
{
|
|
4689
|
-
"name": "
|
|
4690
|
-
"description": "
|
|
4691
|
-
"type": "
|
|
4692
|
-
"default": "
|
|
4764
|
+
"name": "tabindex",
|
|
4765
|
+
"description": "Set the input tabindex, set this to `-1` to avoid tabbing into the input.",
|
|
4766
|
+
"type": "number",
|
|
4767
|
+
"default": "0"
|
|
4693
4768
|
},
|
|
4694
4769
|
{
|
|
4695
4770
|
"name": "spellcheck",
|
|
@@ -4763,7 +4838,7 @@
|
|
|
4763
4838
|
"name": "minlengthMessage",
|
|
4764
4839
|
"attribute": "minlength-message",
|
|
4765
4840
|
"description": "Minlength validation message.",
|
|
4766
|
-
"type": "string",
|
|
4841
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
4767
4842
|
"default": "\"\""
|
|
4768
4843
|
},
|
|
4769
4844
|
{
|
|
@@ -4784,7 +4859,7 @@
|
|
|
4784
4859
|
"name": "maxlengthMessage",
|
|
4785
4860
|
"attribute": "maxlength-message",
|
|
4786
4861
|
"description": "Maxlength validation message.",
|
|
4787
|
-
"type": "string",
|
|
4862
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
4788
4863
|
"default": "\"\""
|
|
4789
4864
|
},
|
|
4790
4865
|
{
|
|
@@ -4833,7 +4908,14 @@
|
|
|
4833
4908
|
"name": "type",
|
|
4834
4909
|
"attribute": "type",
|
|
4835
4910
|
"description": "This property specifies the type of input that will be rendered.",
|
|
4836
|
-
"type": "'text' | 'tel'| 'url'| 'email'| 'password'| 'date'| 'month'| 'week'| 'time'| 'datetime-local'| 'number'| 'color'",
|
|
4911
|
+
"type": "'text' | 'tel' | 'url' | 'email' | 'password' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'color'",
|
|
4912
|
+
"default": "\"text\""
|
|
4913
|
+
},
|
|
4914
|
+
{
|
|
4915
|
+
"name": "inputMode",
|
|
4916
|
+
"attribute": "inputmode",
|
|
4917
|
+
"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.",
|
|
4918
|
+
"type": "'text' | 'none' | 'decimal' | 'number' | 'tel' | 'search' | 'email' | 'url'",
|
|
4837
4919
|
"default": "\"text\""
|
|
4838
4920
|
},
|
|
4839
4921
|
{
|
|
@@ -4843,11 +4925,11 @@
|
|
|
4843
4925
|
"type": "string"
|
|
4844
4926
|
},
|
|
4845
4927
|
{
|
|
4846
|
-
"name": "
|
|
4847
|
-
"attribute": "
|
|
4848
|
-
"description": "
|
|
4849
|
-
"type": "
|
|
4850
|
-
"default": "
|
|
4928
|
+
"name": "tabIndex",
|
|
4929
|
+
"attribute": "tabindex",
|
|
4930
|
+
"description": "Set the input tabindex, set this to `-1` to avoid tabbing into the input.",
|
|
4931
|
+
"type": "number",
|
|
4932
|
+
"default": "0"
|
|
4851
4933
|
},
|
|
4852
4934
|
{
|
|
4853
4935
|
"name": "styles",
|
|
@@ -5687,6 +5769,30 @@
|
|
|
5687
5769
|
"type": "string",
|
|
5688
5770
|
"default": "\"\""
|
|
5689
5771
|
},
|
|
5772
|
+
{
|
|
5773
|
+
"name": "firstLabel",
|
|
5774
|
+
"description": "This property is used to generate the name of the first button",
|
|
5775
|
+
"type": "string",
|
|
5776
|
+
"default": "\"First\""
|
|
5777
|
+
},
|
|
5778
|
+
{
|
|
5779
|
+
"name": "previousLabel",
|
|
5780
|
+
"description": "This property is used to generate the name of the previous button",
|
|
5781
|
+
"type": "string",
|
|
5782
|
+
"default": "\"Previous\""
|
|
5783
|
+
},
|
|
5784
|
+
{
|
|
5785
|
+
"name": "nextLabel",
|
|
5786
|
+
"description": "This property is used to generate the name of the next button",
|
|
5787
|
+
"type": "string",
|
|
5788
|
+
"default": "\"Next\""
|
|
5789
|
+
},
|
|
5790
|
+
{
|
|
5791
|
+
"name": "lastLabel",
|
|
5792
|
+
"description": "This property is used to generate the name of the last button",
|
|
5793
|
+
"type": "string",
|
|
5794
|
+
"default": "\"Last\""
|
|
5795
|
+
},
|
|
5690
5796
|
{
|
|
5691
5797
|
"name": "total",
|
|
5692
5798
|
"description": "Set the amount of pages to navigate.",
|
|
@@ -5714,6 +5820,34 @@
|
|
|
5714
5820
|
"type": "string",
|
|
5715
5821
|
"default": "\"\""
|
|
5716
5822
|
},
|
|
5823
|
+
{
|
|
5824
|
+
"name": "firstLabel",
|
|
5825
|
+
"attribute": "firstLabel",
|
|
5826
|
+
"description": "This property is used to generate the name of the first button",
|
|
5827
|
+
"type": "string",
|
|
5828
|
+
"default": "\"First\""
|
|
5829
|
+
},
|
|
5830
|
+
{
|
|
5831
|
+
"name": "previousLabel",
|
|
5832
|
+
"attribute": "previousLabel",
|
|
5833
|
+
"description": "This property is used to generate the name of the previous button",
|
|
5834
|
+
"type": "string",
|
|
5835
|
+
"default": "\"Previous\""
|
|
5836
|
+
},
|
|
5837
|
+
{
|
|
5838
|
+
"name": "nextLabel",
|
|
5839
|
+
"attribute": "nextLabel",
|
|
5840
|
+
"description": "This property is used to generate the name of the next button",
|
|
5841
|
+
"type": "string",
|
|
5842
|
+
"default": "\"Next\""
|
|
5843
|
+
},
|
|
5844
|
+
{
|
|
5845
|
+
"name": "lastLabel",
|
|
5846
|
+
"attribute": "lastLabel",
|
|
5847
|
+
"description": "This property is used to generate the name of the last button",
|
|
5848
|
+
"type": "string",
|
|
5849
|
+
"default": "\"Last\""
|
|
5850
|
+
},
|
|
5717
5851
|
{
|
|
5718
5852
|
"name": "total",
|
|
5719
5853
|
"attribute": "total",
|
|
@@ -9349,7 +9483,7 @@
|
|
|
9349
9483
|
{
|
|
9350
9484
|
"name": "minlength-message",
|
|
9351
9485
|
"description": "Minlength validation message.",
|
|
9352
|
-
"type": "
|
|
9486
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
9353
9487
|
"default": "\"\""
|
|
9354
9488
|
},
|
|
9355
9489
|
{
|
|
@@ -9361,7 +9495,7 @@
|
|
|
9361
9495
|
{
|
|
9362
9496
|
"name": "maxlength-message",
|
|
9363
9497
|
"description": "Maxlength validation message.",
|
|
9364
|
-
"type": "
|
|
9498
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
9365
9499
|
"default": "\"\""
|
|
9366
9500
|
},
|
|
9367
9501
|
{
|
|
@@ -9467,7 +9601,7 @@
|
|
|
9467
9601
|
"name": "minlengthMessage",
|
|
9468
9602
|
"attribute": "minlength-message",
|
|
9469
9603
|
"description": "Minlength validation message.",
|
|
9470
|
-
"type": "
|
|
9604
|
+
"type": "string | ((charsLeft: number) => string)",
|
|
9471
9605
|
"default": "\"\""
|
|
9472
9606
|
},
|
|
9473
9607
|
{
|
|
@@ -9481,7 +9615,7 @@
|
|
|
9481
9615
|
"name": "maxlengthMessage",
|
|
9482
9616
|
"attribute": "maxlength-message",
|
|
9483
9617
|
"description": "Maxlength validation message.",
|
|
9484
|
-
"type": "
|
|
9618
|
+
"type": "string | ((max: number, current: number) => string)",
|
|
9485
9619
|
"default": "\"\""
|
|
9486
9620
|
},
|
|
9487
9621
|
{
|