@progress/kendo-vue-inputs 7.1.0-develop.3 → 7.1.0-develop.5
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/dist/cdn/js/kendo-vue-inputs.js +1 -1
- package/index.d.mts +36 -46
- package/index.d.ts +36 -46
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +9 -9
package/index.d.mts
CHANGED
|
@@ -56,7 +56,7 @@ labelOptional: PropType<boolean>;
|
|
|
56
56
|
labelClass: PropType<string>;
|
|
57
57
|
name: PropType<string>;
|
|
58
58
|
size: {
|
|
59
|
-
type: PropType<
|
|
59
|
+
type: PropType<"small" | "medium" | "large">;
|
|
60
60
|
default: string;
|
|
61
61
|
validator: (value: any) => any;
|
|
62
62
|
};
|
|
@@ -147,7 +147,7 @@ labelOptional: PropType<boolean>;
|
|
|
147
147
|
labelClass: PropType<string>;
|
|
148
148
|
name: PropType<string>;
|
|
149
149
|
size: {
|
|
150
|
-
type: PropType<
|
|
150
|
+
type: PropType<"small" | "medium" | "large">;
|
|
151
151
|
default: string;
|
|
152
152
|
validator: (value: any) => any;
|
|
153
153
|
};
|
|
@@ -179,7 +179,7 @@ onChangemodel?: (value: boolean) => any;
|
|
|
179
179
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
180
180
|
}>, {
|
|
181
181
|
value: string | number | boolean | string[];
|
|
182
|
-
size:
|
|
182
|
+
size: "small" | "medium" | "large";
|
|
183
183
|
rounded: string;
|
|
184
184
|
checked: boolean;
|
|
185
185
|
modelValue: string | number | boolean | string[];
|
|
@@ -297,7 +297,7 @@ export declare interface CheckboxProps extends ToggleBaseProps, FormComponentPro
|
|
|
297
297
|
*
|
|
298
298
|
* @default `medium`
|
|
299
299
|
*/
|
|
300
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
300
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
301
301
|
/**
|
|
302
302
|
* Configures the `rounded` style of the Checkbox.
|
|
303
303
|
*
|
|
@@ -882,7 +882,7 @@ type: PropType<boolean>;
|
|
|
882
882
|
default: any;
|
|
883
883
|
};
|
|
884
884
|
size: {
|
|
885
|
-
type: PropType<
|
|
885
|
+
type: PropType<"small" | "medium" | "large">;
|
|
886
886
|
default: string;
|
|
887
887
|
validator: (value: any) => any;
|
|
888
888
|
};
|
|
@@ -1030,7 +1030,7 @@ type: PropType<boolean>;
|
|
|
1030
1030
|
default: any;
|
|
1031
1031
|
};
|
|
1032
1032
|
size: {
|
|
1033
|
-
type: PropType<
|
|
1033
|
+
type: PropType<"small" | "medium" | "large">;
|
|
1034
1034
|
default: string;
|
|
1035
1035
|
validator: (value: any) => any;
|
|
1036
1036
|
};
|
|
@@ -1074,7 +1074,7 @@ onActivecolorclick?: (event: ColorPickerActiveColorClick) => any;
|
|
|
1074
1074
|
}>, {
|
|
1075
1075
|
value: string;
|
|
1076
1076
|
tabIndex: number;
|
|
1077
|
-
size:
|
|
1077
|
+
size: "small" | "medium" | "large";
|
|
1078
1078
|
view: string;
|
|
1079
1079
|
rounded: string;
|
|
1080
1080
|
adaptive: boolean;
|
|
@@ -1221,8 +1221,6 @@ export declare interface ColorPickerProps {
|
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Overrides the validity state of the component.
|
|
1223
1223
|
* If `valid` is set, the `required` property will be ignored.
|
|
1224
|
-
*
|
|
1225
|
-
* This property is part of the [FormComponentProps]({% slug api_common_formcomponentprops %}) interface.
|
|
1226
1224
|
*/
|
|
1227
1225
|
valid?: boolean;
|
|
1228
1226
|
/**
|
|
@@ -1339,7 +1337,7 @@ export declare interface ColorPickerProps {
|
|
|
1339
1337
|
*
|
|
1340
1338
|
* @default `medium`
|
|
1341
1339
|
*/
|
|
1342
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
1340
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
1343
1341
|
/**
|
|
1344
1342
|
* Configures the `roundness` of the ColorPicker.
|
|
1345
1343
|
*
|
|
@@ -1751,7 +1749,7 @@ type: PropType<boolean>;
|
|
|
1751
1749
|
default: boolean;
|
|
1752
1750
|
};
|
|
1753
1751
|
size: {
|
|
1754
|
-
type: PropType<
|
|
1752
|
+
type: PropType<"small" | "medium" | "large">;
|
|
1755
1753
|
default: string;
|
|
1756
1754
|
validator: (value: any) => any;
|
|
1757
1755
|
};
|
|
@@ -1881,7 +1879,7 @@ type: PropType<boolean>;
|
|
|
1881
1879
|
default: boolean;
|
|
1882
1880
|
};
|
|
1883
1881
|
size: {
|
|
1884
|
-
type: PropType<
|
|
1882
|
+
type: PropType<"small" | "medium" | "large">;
|
|
1885
1883
|
default: string;
|
|
1886
1884
|
validator: (value: any) => any;
|
|
1887
1885
|
};
|
|
@@ -1930,7 +1928,7 @@ onChangemodel?: (value: string | number) => any;
|
|
|
1930
1928
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
1931
1929
|
}>, {
|
|
1932
1930
|
required: boolean;
|
|
1933
|
-
size:
|
|
1931
|
+
size: "small" | "medium" | "large";
|
|
1934
1932
|
rounded: string;
|
|
1935
1933
|
disabled: boolean;
|
|
1936
1934
|
fillMode: string;
|
|
@@ -1986,7 +1984,7 @@ export declare interface InputProps extends FormComponentProps {
|
|
|
1986
1984
|
*
|
|
1987
1985
|
* @default `medium`
|
|
1988
1986
|
*/
|
|
1989
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
1987
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
1990
1988
|
/**
|
|
1991
1989
|
* Configures the `roundness` of the Input.
|
|
1992
1990
|
*
|
|
@@ -2186,7 +2184,7 @@ accessKey: PropType<string>;
|
|
|
2186
2184
|
disabled: PropType<boolean>;
|
|
2187
2185
|
readonly: PropType<boolean>;
|
|
2188
2186
|
size: {
|
|
2189
|
-
type: PropType<
|
|
2187
|
+
type: PropType<"small" | "medium" | "large">;
|
|
2190
2188
|
default: string;
|
|
2191
2189
|
validator: (value: any) => any;
|
|
2192
2190
|
};
|
|
@@ -2331,7 +2329,7 @@ accessKey: PropType<string>;
|
|
|
2331
2329
|
disabled: PropType<boolean>;
|
|
2332
2330
|
readonly: PropType<boolean>;
|
|
2333
2331
|
size: {
|
|
2334
|
-
type: PropType<
|
|
2332
|
+
type: PropType<"small" | "medium" | "large">;
|
|
2335
2333
|
default: string;
|
|
2336
2334
|
validator: (value: any) => any;
|
|
2337
2335
|
};
|
|
@@ -2414,7 +2412,7 @@ onChangemodel?: (value: string) => any;
|
|
|
2414
2412
|
}>, {
|
|
2415
2413
|
type: string;
|
|
2416
2414
|
required: boolean;
|
|
2417
|
-
size:
|
|
2415
|
+
size: "small" | "medium" | "large";
|
|
2418
2416
|
rounded: string;
|
|
2419
2417
|
fillMode: string;
|
|
2420
2418
|
valid: boolean;
|
|
@@ -2517,7 +2515,7 @@ export declare interface MaskedTextBoxProps extends FormComponentProps {
|
|
|
2517
2515
|
*
|
|
2518
2516
|
* @default `medium`
|
|
2519
2517
|
*/
|
|
2520
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
2518
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
2521
2519
|
/**
|
|
2522
2520
|
* Configures the `roundness` of the MaskedTextBox.
|
|
2523
2521
|
*
|
|
@@ -2716,7 +2714,7 @@ type: PropType<boolean>;
|
|
|
2716
2714
|
default: any;
|
|
2717
2715
|
};
|
|
2718
2716
|
size: {
|
|
2719
|
-
type: PropType<
|
|
2717
|
+
type: PropType<"small" | "medium" | "large">;
|
|
2720
2718
|
default: string;
|
|
2721
2719
|
validator: (value: any) => any;
|
|
2722
2720
|
};
|
|
@@ -2863,7 +2861,7 @@ type: PropType<boolean>;
|
|
|
2863
2861
|
default: any;
|
|
2864
2862
|
};
|
|
2865
2863
|
size: {
|
|
2866
|
-
type: PropType<
|
|
2864
|
+
type: PropType<"small" | "medium" | "large">;
|
|
2867
2865
|
default: string;
|
|
2868
2866
|
validator: (value: any) => any;
|
|
2869
2867
|
};
|
|
@@ -2904,7 +2902,7 @@ onChangemodel?: (value: number) => any;
|
|
|
2904
2902
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
2905
2903
|
}>, {
|
|
2906
2904
|
required: boolean;
|
|
2907
|
-
size:
|
|
2905
|
+
size: "small" | "medium" | "large";
|
|
2908
2906
|
rounded: string;
|
|
2909
2907
|
disabled: boolean;
|
|
2910
2908
|
fillMode: string;
|
|
@@ -2998,7 +2996,7 @@ type: PropType<string>;
|
|
|
2998
2996
|
default: string;
|
|
2999
2997
|
};
|
|
3000
2998
|
size: {
|
|
3001
|
-
type: PropType<
|
|
2999
|
+
type: PropType<"small" | "medium" | "large">;
|
|
3002
3000
|
default: string;
|
|
3003
3001
|
validator: (value: any) => any;
|
|
3004
3002
|
};
|
|
@@ -3041,7 +3039,7 @@ type: PropType<string>;
|
|
|
3041
3039
|
default: string;
|
|
3042
3040
|
};
|
|
3043
3041
|
size: {
|
|
3044
|
-
type: PropType<
|
|
3042
|
+
type: PropType<"small" | "medium" | "large">;
|
|
3045
3043
|
default: string;
|
|
3046
3044
|
validator: (value: any) => any;
|
|
3047
3045
|
};
|
|
@@ -3057,7 +3055,7 @@ onBlur?: (event: RadioButtonBlurEvent) => any;
|
|
|
3057
3055
|
onChange?: (event: RadioButtonChangeEvent) => any;
|
|
3058
3056
|
onFocus?: (event: RadioButtonFocusEvent) => any;
|
|
3059
3057
|
}>, {
|
|
3060
|
-
size:
|
|
3058
|
+
size: "small" | "medium" | "large";
|
|
3061
3059
|
valid: boolean;
|
|
3062
3060
|
tag: string;
|
|
3063
3061
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3171,7 +3169,7 @@ export declare interface RadioButtonProps {
|
|
|
3171
3169
|
*
|
|
3172
3170
|
* @default `medium`
|
|
3173
3171
|
*/
|
|
3174
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
3172
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
3175
3173
|
/**
|
|
3176
3174
|
* Sets the `tabIndex` property of the Radio button.
|
|
3177
3175
|
* Defaults to `0`.
|
|
@@ -3180,8 +3178,6 @@ export declare interface RadioButtonProps {
|
|
|
3180
3178
|
/**
|
|
3181
3179
|
* Overrides the validity state of the component.
|
|
3182
3180
|
* If `valid` is set, the `required` property will be ignored.
|
|
3183
|
-
*
|
|
3184
|
-
* This property is part of the [FormComponentProps]({% slug api_common_formcomponentprops %}) interface.
|
|
3185
3181
|
*/
|
|
3186
3182
|
valid?: boolean;
|
|
3187
3183
|
/**
|
|
@@ -3393,8 +3389,6 @@ export declare interface RadioGroupProps {
|
|
|
3393
3389
|
/**
|
|
3394
3390
|
* Overrides the validity state of the component.
|
|
3395
3391
|
* If `valid` is set, the `required` property will be ignored.
|
|
3396
|
-
*
|
|
3397
|
-
* This property is part of the [FormComponentProps]({% slug api_common_formcomponentprops %}) interface.
|
|
3398
3392
|
*/
|
|
3399
3393
|
valid?: boolean;
|
|
3400
3394
|
}
|
|
@@ -3926,7 +3920,7 @@ type: PropType<boolean>;
|
|
|
3926
3920
|
default: any;
|
|
3927
3921
|
};
|
|
3928
3922
|
size: {
|
|
3929
|
-
type: PropType<
|
|
3923
|
+
type: PropType<"small" | "medium" | "large">;
|
|
3930
3924
|
default: string;
|
|
3931
3925
|
validator: (value: any) => any;
|
|
3932
3926
|
};
|
|
@@ -4056,7 +4050,7 @@ type: PropType<boolean>;
|
|
|
4056
4050
|
default: any;
|
|
4057
4051
|
};
|
|
4058
4052
|
size: {
|
|
4059
|
-
type: PropType<
|
|
4053
|
+
type: PropType<"small" | "medium" | "large">;
|
|
4060
4054
|
default: string;
|
|
4061
4055
|
validator: (value: any) => any;
|
|
4062
4056
|
};
|
|
@@ -4080,7 +4074,7 @@ onChangemodel?: (value: string) => any;
|
|
|
4080
4074
|
onOpen?: (event: SignatureOpenEvent) => any;
|
|
4081
4075
|
}>, {
|
|
4082
4076
|
required: boolean;
|
|
4083
|
-
size:
|
|
4077
|
+
size: "small" | "medium" | "large";
|
|
4084
4078
|
rounded: string;
|
|
4085
4079
|
fillMode: string;
|
|
4086
4080
|
valid: boolean;
|
|
@@ -4230,7 +4224,7 @@ export declare interface SignatureProps extends FormComponentProps {
|
|
|
4230
4224
|
*
|
|
4231
4225
|
* @default `medium`
|
|
4232
4226
|
*/
|
|
4233
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
4227
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
4234
4228
|
/**
|
|
4235
4229
|
* Configures the `roundness` of the Signature.
|
|
4236
4230
|
*
|
|
@@ -4891,7 +4885,7 @@ export declare interface SwitchProps extends ToggleBaseProps, FormComponentProps
|
|
|
4891
4885
|
*
|
|
4892
4886
|
* @default `medium`
|
|
4893
4887
|
*/
|
|
4894
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
4888
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
4895
4889
|
/**
|
|
4896
4890
|
* Configures the `trackRounded` of the Switch.
|
|
4897
4891
|
*
|
|
@@ -5018,7 +5012,7 @@ id: PropType<string>;
|
|
|
5018
5012
|
name: PropType<string>;
|
|
5019
5013
|
validationMessage: PropType<string>;
|
|
5020
5014
|
size: {
|
|
5021
|
-
type: PropType<
|
|
5015
|
+
type: PropType<"small" | "medium" | "large">;
|
|
5022
5016
|
default: string;
|
|
5023
5017
|
validator: (value: any) => any;
|
|
5024
5018
|
};
|
|
@@ -5140,7 +5134,7 @@ id: PropType<string>;
|
|
|
5140
5134
|
name: PropType<string>;
|
|
5141
5135
|
validationMessage: PropType<string>;
|
|
5142
5136
|
size: {
|
|
5143
|
-
type: PropType<
|
|
5137
|
+
type: PropType<"small" | "medium" | "large">;
|
|
5144
5138
|
default: string;
|
|
5145
5139
|
validator: (value: any) => any;
|
|
5146
5140
|
};
|
|
@@ -5193,7 +5187,7 @@ onFocus?: (event: TextAreaFocusEvent) => any;
|
|
|
5193
5187
|
onChangemodel?: (value: string | number | string[]) => any;
|
|
5194
5188
|
"onUpdate:modelValue"?: (value: string | number | string[]) => any;
|
|
5195
5189
|
}>, {
|
|
5196
|
-
size:
|
|
5190
|
+
size: "small" | "medium" | "large";
|
|
5197
5191
|
rounded: string;
|
|
5198
5192
|
fillMode: string;
|
|
5199
5193
|
flow: string;
|
|
@@ -5321,8 +5315,6 @@ export declare interface TextAreaProps extends FormComponentProps {
|
|
|
5321
5315
|
id?: string;
|
|
5322
5316
|
/**
|
|
5323
5317
|
* Specifies the `name` property of the `textarea` DOM element.
|
|
5324
|
-
*
|
|
5325
|
-
* This property is part of the [FormComponentProps]({% slug api_common_formcomponentprops %}) interface.
|
|
5326
5318
|
*/
|
|
5327
5319
|
name?: string;
|
|
5328
5320
|
/**
|
|
@@ -5345,7 +5337,7 @@ export declare interface TextAreaProps extends FormComponentProps {
|
|
|
5345
5337
|
*
|
|
5346
5338
|
* @default `medium`
|
|
5347
5339
|
*/
|
|
5348
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
5340
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
5349
5341
|
/**
|
|
5350
5342
|
* Configures the `roundness` of the NumericTextBox.
|
|
5351
5343
|
*
|
|
@@ -5378,8 +5370,6 @@ export declare interface TextAreaProps extends FormComponentProps {
|
|
|
5378
5370
|
/**
|
|
5379
5371
|
* If set to `false`, no visual representation of the invalid state of the component will be applied.
|
|
5380
5372
|
*
|
|
5381
|
-
* This property is part of the [FormComponentProps]({% slug api_common_formcomponentprops %}) interface.
|
|
5382
|
-
*
|
|
5383
5373
|
* @default true
|
|
5384
5374
|
*/
|
|
5385
5375
|
validityStyles?: boolean;
|
|
@@ -5506,7 +5496,7 @@ type: PropType<boolean>;
|
|
|
5506
5496
|
default: boolean;
|
|
5507
5497
|
};
|
|
5508
5498
|
size: {
|
|
5509
|
-
type: PropType<
|
|
5499
|
+
type: PropType<"small" | "medium" | "large">;
|
|
5510
5500
|
default: string;
|
|
5511
5501
|
validator: (value: any) => any;
|
|
5512
5502
|
};
|
|
@@ -5651,7 +5641,7 @@ type: PropType<boolean>;
|
|
|
5651
5641
|
default: boolean;
|
|
5652
5642
|
};
|
|
5653
5643
|
size: {
|
|
5654
|
-
type: PropType<
|
|
5644
|
+
type: PropType<"small" | "medium" | "large">;
|
|
5655
5645
|
default: string;
|
|
5656
5646
|
validator: (value: any) => any;
|
|
5657
5647
|
};
|
|
@@ -5710,7 +5700,7 @@ onChangemodel?: (value: string | number) => any;
|
|
|
5710
5700
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
|
5711
5701
|
}>, {
|
|
5712
5702
|
required: boolean;
|
|
5713
|
-
size:
|
|
5703
|
+
size: "small" | "medium" | "large";
|
|
5714
5704
|
rounded: string;
|
|
5715
5705
|
disabled: boolean;
|
|
5716
5706
|
fillMode: string;
|
|
@@ -5781,7 +5771,7 @@ export declare interface TextBoxProps extends FormComponentProps {
|
|
|
5781
5771
|
*
|
|
5782
5772
|
* @default `medium`
|
|
5783
5773
|
*/
|
|
5784
|
-
size?: null | 'small' | 'medium' | 'large'
|
|
5774
|
+
size?: null | 'small' | 'medium' | 'large';
|
|
5785
5775
|
/**
|
|
5786
5776
|
* Configures the `roundness` of the TextBox.
|
|
5787
5777
|
*
|