@@ -1151,6 +1151,14 @@ export namespace Components {
1151
1151
* Specifies the status of the input field, which determines message and icons.
1152
1152
*/
1153
1153
"status": Status;
1154
+ /**
1155
+ * Specifies the validation icon to display under the component.
1156
+ */
1157
+ "validationIcon": string | boolean;
1158
+ /**
1159
+ * Specifies the validation message to display under the component.
1160
+ */
1161
+ "validationMessage": string;
1154
1162
/**
1155
1163
* The component's value(s) from the selected `calcite-combobox-item`(s).
1156
1164
*/
@@ -2033,6 +2041,14 @@ export namespace Components {
2033
2041
| "time"
2034
2042
| "url"
2035
2043
| "week";
2044
+ /**
2045
+ * Specifies the validation icon to display under the component.
2046
+ */
2047
+ "validationIcon": string | boolean;
2048
+ /**
2049
+ * Specifies the validation message to display under the component.
2050
+ */
2051
+ "validationMessage": string;
2036
2052
/**
2037
2053
* The component's value.
2038
2054
*/
@@ -2142,6 +2158,14 @@ export namespace Components {
2142
2158
* Specifies the status of the input field, which determines message and icons.
2143
2159
*/
2144
2160
"status": Status;
2161
+ /**
2162
+ * Specifies the validation icon to display under the component.
2163
+ */
2164
+ "validationIcon": string | boolean;
2165
+ /**
2166
+ * Specifies the validation message to display under the component.
2167
+ */
2168
+ "validationMessage": string;
2145
2169
/**
2146
2170
* Selected date as a string in ISO format (YYYY-MM-DD)
2147
2171
*/
@@ -2326,6 +2350,14 @@ export namespace Components {
2326
2350
* Adds text to the end of the component.
2327
2351
*/
2328
2352
"suffixText": string;
2353
+ /**
2354
+ * Specifies the validation icon to display under the component.
2355
+ */
2356
+ "validationIcon": string | boolean;
2357
+ /**
2358
+ * Specifies the validation message to display under the component.
2359
+ */
2360
+ "validationMessage": string;
2329
2361
/**
2330
2362
* The component's value.
2331
2363
*/
@@ -2458,6 +2490,14 @@ export namespace Components {
2458
2490
* Adds text to the end of the component.
2459
2491
*/
2460
2492
"suffixText": string;
2493
+ /**
2494
+ * Specifies the validation icon to display under the component.
2495
+ */
2496
+ "validationIcon": string | boolean;
2497
+ /**
2498
+ * Specifies the validation message to display under the component.
2499
+ */
2500
+ "validationMessage": string;
2461
2501
/**
2462
2502
* The component's value.
2463
2503
*/
@@ -2534,6 +2574,14 @@ export namespace Components {
2534
2574
* Specifies the granularity the component's `value` must adhere to (in seconds).
2535
2575
*/
2536
2576
"step": number;
2577
+ /**
2578
+ * Specifies the validation icon to display under the component.
2579
+ */
2580
+ "validationIcon": string | boolean;
2581
+ /**
2582
+ * Specifies the validation message to display under the component.
2583
+ */
2584
+ "validationMessage": string;
2537
2585
/**
2538
2586
* The time value in ISO (24-hour) format.
2539
2587
*/
@@ -2595,6 +2643,14 @@ export namespace Components {
2595
2643
* Specifies the status of the input field, which determines message and icons.
2596
2644
*/
2597
2645
"status": Status;
2646
+ /**
2647
+ * Specifies the validation icon to display under the component.
2648
+ */
2649
+ "validationIcon": string | boolean;
2650
+ /**
2651
+ * Specifies the validation message to display under the component.
2652
+ */
2653
+ "validationMessage": string;
2598
2654
/**
2599
2655
* The component's value, where the value is the time zone offset or the difference, in minutes, between the selected time zone and UTC. If no value is provided, the user's time zone offset will be selected by default.
2600
2656
* @see https://www.w3.org/International/core/2005/09/timezone.html#:~:text=What%20is%20a%20%22zone%20offset,or%20%22%2D%22%20from%20UTC.
@@ -3909,6 +3965,14 @@ export namespace Components {
3909
3965
* Specifies the status of the input field, which determines message and icons.
3910
3966
*/
3911
3967
"status": Status;
3968
+ /**
3969
+ * Specifies the validation icon to display under the component.
3970
+ */
3971
+ "validationIcon": string | boolean;
3972
+ /**
3973
+ * Specifies the validation message to display under the component.
3974
+ */
3975
+ "validationMessage": string;
3912
3976
/**
3913
3977
* The component's `selectedOption` value.
3914
3978
*/
@@ -4577,7 +4641,12 @@ export namespace Components {
4577
4641
*/
4578
4642
"selectionMode": Extract<"none" | "multiple" | "single", SelectionMode>;
4579
4643
/**
4580
- * When `true`, displays zebra styling in the component.
4644
+ * When `true`, displays striped styling in the component.
4645
+ */
4646
+ "striped": boolean;
4647
+ /**
4648
+ * When `true`, displays striped styling in the component.
4649
+ * @deprecated Use the `striped` property instead.
4581
4650
*/
4582
4651
"zebra": boolean;
4583
4652
}
@@ -4794,6 +4863,14 @@ export namespace Components {
4794
4863
* Specifies the status of the input field, which determines message and icons.
4795
4864
*/
4796
4865
"status": Status;
4866
+ /**
4867
+ * Specifies the validation icon to display under the component.
4868
+ */
4869
+ "validationIcon": string | boolean;
4870
+ /**
4871
+ * Specifies the validation message to display under the component.
4872
+ */
4873
+ "validationMessage": string;
4797
4874
/**
4798
4875
* The component's value.
4799
4876
*/
@@ -8334,6 +8411,14 @@ declare namespace LocalJSX {
8334
8411
* Specifies the status of the input field, which determines message and icons.
8335
8412
*/
8336
8413
"status"?: Status;
8414
+ /**
8415
+ * Specifies the validation icon to display under the component.
8416
+ */
8417
+ "validationIcon"?: string | boolean;
8418
+ /**
8419
+ * Specifies the validation message to display under the component.
8420
+ */
8421
+ "validationMessage"?: string;
8337
8422
/**
8338
8423
* The component's value(s) from the selected `calcite-combobox-item`(s).
8339
8424
*/
@@ -9257,6 +9342,14 @@ declare namespace LocalJSX {
9257
9342
| "time"
9258
9343
| "url"
9259
9344
| "week";
9345
+ /**
9346
+ * Specifies the validation icon to display under the component.
9347
+ */
9348
+ "validationIcon"?: string | boolean;
9349
+ /**
9350
+ * Specifies the validation message to display under the component.
9351
+ */
9352
+ "validationMessage"?: string;
9260
9353
/**
9261
9354
* The component's value.
9262
9355
*/
@@ -9377,6 +9470,14 @@ declare namespace LocalJSX {
9377
9470
* Specifies the status of the input field, which determines message and icons.
9378
9471
*/
9379
9472
"status"?: Status;
9473
+ /**
9474
+ * Specifies the validation icon to display under the component.
9475
+ */
9476
+ "validationIcon"?: string | boolean;
9477
+ /**
9478
+ * Specifies the validation message to display under the component.
9479
+ */
9480
+ "validationMessage"?: string;
9380
9481
/**
9381
9482
* Selected date as a string in ISO format (YYYY-MM-DD)
9382
9483
*/
@@ -9563,6 +9664,14 @@ declare namespace LocalJSX {
9563
9664
* Adds text to the end of the component.
9564
9665
*/
9565
9666
"suffixText"?: string;
9667
+ /**
9668
+ * Specifies the validation icon to display under the component.
9669
+ */
9670
+ "validationIcon"?: string | boolean;
9671
+ /**
9672
+ * Specifies the validation message to display under the component.
9673
+ */
9674
+ "validationMessage"?: string;
9566
9675
/**
9567
9676
* The component's value.
9568
9677
*/
@@ -9700,6 +9809,14 @@ declare namespace LocalJSX {
9700
9809
* Adds text to the end of the component.
9701
9810
*/
9702
9811
"suffixText"?: string;
9812
+ /**
9813
+ * Specifies the validation icon to display under the component.
9814
+ */
9815
+ "validationIcon"?: string | boolean;
9816
+ /**
9817
+ * Specifies the validation message to display under the component.
9818
+ */
9819
+ "validationMessage"?: string;
9703
9820
/**
9704
9821
* The component's value.
9705
9822
*/
@@ -9787,6 +9904,14 @@ declare namespace LocalJSX {
9787
9904
* Specifies the granularity the component's `value` must adhere to (in seconds).
9788
9905
*/
9789
9906
"step"?: number;
9907
+ /**
9908
+ * Specifies the validation icon to display under the component.
9909
+ */
9910
+ "validationIcon"?: string | boolean;
9911
+ /**
9912
+ * Specifies the validation message to display under the component.
9913
+ */
9914
+ "validationMessage"?: string;
9790
9915
/**
9791
9916
* The time value in ISO (24-hour) format.
9792
9917
*/
@@ -9852,6 +9977,14 @@ declare namespace LocalJSX {
9852
9977
* Specifies the status of the input field, which determines message and icons.
9853
9978
*/
9854
9979
"status"?: Status;
9980
+ /**
9981
+ * Specifies the validation icon to display under the component.
9982
+ */
9983
+ "validationIcon"?: string | boolean;
9984
+ /**
9985
+ * Specifies the validation message to display under the component.
9986
+ */
9987
+ "validationMessage"?: string;
9855
9988
/**
9856
9989
* The component's value, where the value is the time zone offset or the difference, in minutes, between the selected time zone and UTC. If no value is provided, the user's time zone offset will be selected by default.
9857
9990
* @see https://www.w3.org/International/core/2005/09/timezone.html#:~:text=What%20is%20a%20%22zone%20offset,or%20%22%2D%22%20from%20UTC.
@@ -11233,6 +11366,14 @@ declare namespace LocalJSX {
11233
11366
* Specifies the status of the input field, which determines message and icons.
11234
11367
*/
11235
11368
"status"?: Status;
11369
+ /**
11370
+ * Specifies the validation icon to display under the component.
11371
+ */
11372
+ "validationIcon"?: string | boolean;
11373
+ /**
11374
+ * Specifies the validation message to display under the component.
11375
+ */
11376
+ "validationMessage"?: string;
11236
11377
/**
11237
11378
* The component's `selectedOption` value.
11238
11379
*/
@@ -11930,7 +12071,12 @@ declare namespace LocalJSX {
11930
12071
*/
11931
12072
"selectionMode"?: Extract<"none" | "multiple" | "single", SelectionMode>;
11932
12073
/**
11933
- * When `true`, displays zebra styling in the component.
12074
+ * When `true`, displays striped styling in the component.
12075
+ */
12076
+ "striped"?: boolean;
12077
+ /**
12078
+ * When `true`, displays striped styling in the component.
12079
+ * @deprecated Use the `striped` property instead.
11934
12080
*/
11935
12081
"zebra"?: boolean;
11936
12082
}
@@ -12144,6 +12290,14 @@ declare namespace LocalJSX {
12144
12290
* Specifies the status of the input field, which determines message and icons.
12145
12291
*/
12146
12292
"status"?: Status;
12293
+ /**
12294
+ * Specifies the validation icon to display under the component.
12295
+ */
12296
+ "validationIcon"?: string | boolean;
12297
+ /**
12298
+ * Specifies the validation message to display under the component.
12299
+ */
12300
+ "validationMessage"?: string;
12147
12301
/**
12148
12302
* The component's value.
12149
12303
*/
0 commit comments