@coreui/vue-pro 4.2.0 → 4.3.0

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.
Files changed (77) hide show
  1. package/README.md +1 -1
  2. package/dist/components/calendar/CCalendar.d.ts +198 -0
  3. package/dist/components/calendar/index.d.ts +6 -0
  4. package/dist/components/carousel/CCarousel.d.ts +1 -1
  5. package/dist/components/date-picker/CDatePicker.d.ts +414 -0
  6. package/dist/components/date-picker/index.d.ts +6 -0
  7. package/dist/components/date-range-picker/CDateRangePicker.d.ts +563 -0
  8. package/dist/components/date-range-picker/index.d.ts +6 -0
  9. package/dist/components/form/CFormCheck.d.ts +88 -39
  10. package/dist/components/form/CFormControlValidation.d.ts +98 -0
  11. package/dist/components/form/CFormControlWrapper.d.ts +6 -0
  12. package/dist/components/form/CFormFeedback.d.ts +2 -2
  13. package/dist/components/form/CFormInput.d.ts +125 -25
  14. package/dist/components/form/CFormRange.d.ts +18 -16
  15. package/dist/components/form/CFormSelect.d.ts +125 -16
  16. package/dist/components/form/CFormSwitch.d.ts +0 -23
  17. package/dist/components/form/CFormTextarea.d.ts +125 -24
  18. package/dist/components/index.d.ts +5 -0
  19. package/dist/components/modal/CModal.d.ts +1 -1
  20. package/dist/components/multi-select/CMultiSelect.d.ts +2 -2
  21. package/dist/components/offcanvas/COffcanvas.d.ts +1 -1
  22. package/dist/components/picker/CPicker.d.ts +11 -0
  23. package/dist/components/picker/index.d.ts +6 -0
  24. package/dist/components/popover/CPopover.d.ts +1 -1
  25. package/dist/components/sidebar/CSidebar.d.ts +1 -1
  26. package/dist/components/smart-table/CSmartTable.d.ts +35 -99
  27. package/dist/components/smart-table/CSmartTableInterface.d.ts +3 -3
  28. package/dist/components/time-picker/CTimePicker.d.ts +10 -0
  29. package/dist/components/time-picker/CTimePickerRollCol.d.ts +27 -0
  30. package/dist/components/time-picker/index.d.ts +6 -0
  31. package/dist/components/toast/CToast.d.ts +8 -2
  32. package/dist/index.es.js +6249 -1276
  33. package/dist/index.es.js.map +1 -1
  34. package/dist/index.js +6256 -1273
  35. package/dist/index.js.map +1 -1
  36. package/dist/utils/calendar.d.ts +23 -0
  37. package/dist/utils/time.d.ts +21 -0
  38. package/dist/utils/transition.d.ts +3 -0
  39. package/package.json +11 -10
  40. package/src/components/backdrop/CBackdrop.ts +8 -6
  41. package/src/components/button/CButton.ts +2 -2
  42. package/src/components/calendar/CCalendar.ts +616 -0
  43. package/src/components/calendar/index.ts +10 -0
  44. package/src/components/collapse/CCollapse.ts +5 -6
  45. package/src/components/date-picker/CDatePicker.ts +240 -0
  46. package/src/components/date-picker/index.ts +10 -0
  47. package/src/components/date-range-picker/CDateRangePicker.ts +733 -0
  48. package/src/components/date-range-picker/index.ts +10 -0
  49. package/src/components/dropdown/CDropdownMenu.ts +4 -2
  50. package/src/components/dropdown/CDropdownToggle.ts +24 -9
  51. package/src/components/form/CFormCheck.ts +119 -94
  52. package/src/components/form/CFormControlValidation.ts +97 -0
  53. package/src/components/form/CFormControlWrapper.ts +106 -0
  54. package/src/components/form/CFormInput.ts +113 -29
  55. package/src/components/form/CFormRange.ts +25 -11
  56. package/src/components/form/CFormSelect.ts +126 -41
  57. package/src/components/form/CFormSwitch.ts +2 -21
  58. package/src/components/form/CFormTextarea.ts +105 -25
  59. package/src/components/index.ts +5 -0
  60. package/src/components/modal/CModal.ts +14 -6
  61. package/src/components/nav/CNavGroup.ts +4 -6
  62. package/src/components/offcanvas/COffcanvas.ts +5 -7
  63. package/src/components/pagination/CSmartPagination.ts +4 -4
  64. package/src/components/picker/CPicker.ts +221 -0
  65. package/src/components/picker/index.ts +10 -0
  66. package/src/components/popover/CPopover.ts +5 -5
  67. package/src/components/smart-table/CSmartTable.ts +17 -49
  68. package/src/components/smart-table/CSmartTableInterface.ts +5 -3
  69. package/src/components/tabs/CTabPane.ts +4 -6
  70. package/src/components/time-picker/CTimePicker.ts +405 -0
  71. package/src/components/time-picker/CTimePickerRollCol.ts +58 -0
  72. package/src/components/time-picker/index.ts +10 -0
  73. package/src/components/toast/CToast.ts +17 -12
  74. package/src/components/tooltip/CTooltip.ts +5 -5
  75. package/src/utils/calendar.ts +270 -0
  76. package/src/utils/time.ts +84 -0
  77. package/src/utils/transition.ts +65 -0
@@ -1,20 +1,48 @@
1
1
  declare const CFormCheck: import("vue").DefineComponent<{
2
2
  /**
3
3
  * Create button-like checkboxes and radio buttons.
4
+ *
5
+ * @see http://coreui.io/vue/docs/components/button.html
6
+ */
7
+ button: {
8
+ type: ObjectConstructor;
9
+ };
10
+ /**
11
+ * Provide valuable, actionable feedback.
12
+ *
13
+ * @since 4.3.0
14
+ */
15
+ feedback: {
16
+ type: StringConstructor;
17
+ };
18
+ /**
19
+ * Provide valuable, actionable feedback.
20
+ *
21
+ * @since 4.3.0
4
22
  */
5
- button: import("vue-types").VueTypeShape<{
6
- color: string;
7
- shape: string;
8
- size: string;
9
- variant: string;
10
- }>;
23
+ feedbackInvalid: {
24
+ type: StringConstructor;
25
+ };
26
+ /**
27
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
28
+ *
29
+ * @since 4.3.0
30
+ */
31
+ feedbackValid: {
32
+ type: StringConstructor;
33
+ };
34
+ /**
35
+ * Sets hit area to the full area of the component.
36
+ */
37
+ hitArea: {
38
+ type: StringConstructor;
39
+ validator: (value: string) => boolean;
40
+ };
11
41
  /**
12
42
  * The id global attribute defines an identifier (ID) that must be unique in the whole document.
13
43
  */
14
44
  id: {
15
45
  type: StringConstructor;
16
- default: undefined;
17
- required: false;
18
46
  };
19
47
  /**
20
48
  * Input Checkbox indeterminate Property
@@ -25,22 +53,16 @@ declare const CFormCheck: import("vue").DefineComponent<{
25
53
  */
26
54
  inline: {
27
55
  type: BooleanConstructor;
28
- required: false;
29
56
  };
30
57
  /**
31
58
  * Set component validation state to invalid.
32
59
  */
33
- invalid: {
34
- type: BooleanConstructor;
35
- required: false;
36
- };
60
+ invalid: BooleanConstructor;
37
61
  /**
38
62
  * The element represents a caption for a component.
39
63
  */
40
64
  label: {
41
65
  type: StringConstructor;
42
- default: undefined;
43
- required: false;
44
66
  };
45
67
  /**
46
68
  * The default name for a value passed using v-model.
@@ -48,8 +70,13 @@ declare const CFormCheck: import("vue").DefineComponent<{
48
70
  modelValue: {
49
71
  type: (StringConstructor | BooleanConstructor)[];
50
72
  value: undefined;
51
- required: false;
52
73
  };
74
+ /**
75
+ * Display validation feedback in a styled tooltip.
76
+ *
77
+ * @since 4.3.0
78
+ */
79
+ tooltipFeedback: BooleanConstructor;
53
80
  /**
54
81
  * Specifies the type of component.
55
82
  *
@@ -58,14 +85,12 @@ declare const CFormCheck: import("vue").DefineComponent<{
58
85
  type: {
59
86
  type: StringConstructor;
60
87
  default: string;
61
- required: false;
62
88
  };
63
89
  /**
64
90
  * Set component validation state to valid.
65
91
  */
66
92
  valid: {
67
93
  type: BooleanConstructor;
68
- required: false;
69
94
  };
70
95
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
71
96
  [key: string]: any;
@@ -74,20 +99,48 @@ declare const CFormCheck: import("vue").DefineComponent<{
74
99
  }> | undefined)[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
75
100
  /**
76
101
  * Create button-like checkboxes and radio buttons.
102
+ *
103
+ * @see http://coreui.io/vue/docs/components/button.html
77
104
  */
78
- button: import("vue-types").VueTypeShape<{
79
- color: string;
80
- shape: string;
81
- size: string;
82
- variant: string;
83
- }>;
105
+ button: {
106
+ type: ObjectConstructor;
107
+ };
108
+ /**
109
+ * Provide valuable, actionable feedback.
110
+ *
111
+ * @since 4.3.0
112
+ */
113
+ feedback: {
114
+ type: StringConstructor;
115
+ };
116
+ /**
117
+ * Provide valuable, actionable feedback.
118
+ *
119
+ * @since 4.3.0
120
+ */
121
+ feedbackInvalid: {
122
+ type: StringConstructor;
123
+ };
124
+ /**
125
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
126
+ *
127
+ * @since 4.3.0
128
+ */
129
+ feedbackValid: {
130
+ type: StringConstructor;
131
+ };
132
+ /**
133
+ * Sets hit area to the full area of the component.
134
+ */
135
+ hitArea: {
136
+ type: StringConstructor;
137
+ validator: (value: string) => boolean;
138
+ };
84
139
  /**
85
140
  * The id global attribute defines an identifier (ID) that must be unique in the whole document.
86
141
  */
87
142
  id: {
88
143
  type: StringConstructor;
89
- default: undefined;
90
- required: false;
91
144
  };
92
145
  /**
93
146
  * Input Checkbox indeterminate Property
@@ -98,22 +151,16 @@ declare const CFormCheck: import("vue").DefineComponent<{
98
151
  */
99
152
  inline: {
100
153
  type: BooleanConstructor;
101
- required: false;
102
154
  };
103
155
  /**
104
156
  * Set component validation state to invalid.
105
157
  */
106
- invalid: {
107
- type: BooleanConstructor;
108
- required: false;
109
- };
158
+ invalid: BooleanConstructor;
110
159
  /**
111
160
  * The element represents a caption for a component.
112
161
  */
113
162
  label: {
114
163
  type: StringConstructor;
115
- default: undefined;
116
- required: false;
117
164
  };
118
165
  /**
119
166
  * The default name for a value passed using v-model.
@@ -121,8 +168,13 @@ declare const CFormCheck: import("vue").DefineComponent<{
121
168
  modelValue: {
122
169
  type: (StringConstructor | BooleanConstructor)[];
123
170
  value: undefined;
124
- required: false;
125
171
  };
172
+ /**
173
+ * Display validation feedback in a styled tooltip.
174
+ *
175
+ * @since 4.3.0
176
+ */
177
+ tooltipFeedback: BooleanConstructor;
126
178
  /**
127
179
  * Specifies the type of component.
128
180
  *
@@ -131,25 +183,22 @@ declare const CFormCheck: import("vue").DefineComponent<{
131
183
  type: {
132
184
  type: StringConstructor;
133
185
  default: string;
134
- required: false;
135
186
  };
136
187
  /**
137
188
  * Set component validation state to valid.
138
189
  */
139
190
  valid: {
140
191
  type: BooleanConstructor;
141
- required: false;
142
192
  };
143
193
  }>> & {
144
194
  onChange?: ((...args: any[]) => any) | undefined;
145
195
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
146
196
  }, {
147
197
  type: string;
148
- id: string;
149
198
  invalid: boolean;
150
- label: string;
199
+ valid: boolean;
200
+ tooltipFeedback: boolean;
151
201
  indeterminate: boolean;
152
202
  inline: boolean;
153
- valid: boolean;
154
203
  }>;
155
204
  export { CFormCheck };
@@ -0,0 +1,98 @@
1
+ declare const CFormControlValidation: import("vue").DefineComponent<{
2
+ /**
3
+ * @ignore
4
+ */
5
+ describedby: {
6
+ type: StringConstructor;
7
+ };
8
+ /**
9
+ * Provide valuable, actionable feedback.
10
+ *
11
+ * @since 4.3.0
12
+ */
13
+ feedback: {
14
+ type: StringConstructor;
15
+ };
16
+ /**
17
+ * Provide valuable, actionable feedback.
18
+ *
19
+ * @since 4.3.0
20
+ */
21
+ feedbackInvalid: {
22
+ type: StringConstructor;
23
+ };
24
+ /**
25
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
26
+ *
27
+ * @since 4.3.0
28
+ */
29
+ feedbackValid: {
30
+ type: StringConstructor;
31
+ };
32
+ /**
33
+ * Set component validation state to invalid.
34
+ */
35
+ invalid: BooleanConstructor;
36
+ /**
37
+ * Display validation feedback in a styled tooltip.
38
+ *
39
+ * @since 4.3.0
40
+ */
41
+ tooltipFeedback: BooleanConstructor;
42
+ /**
43
+ * Set component validation state to valid.
44
+ */
45
+ valid: BooleanConstructor;
46
+ }, () => (false | "" | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
47
+ [key: string]: any;
48
+ }> | undefined)[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
49
+ /**
50
+ * @ignore
51
+ */
52
+ describedby: {
53
+ type: StringConstructor;
54
+ };
55
+ /**
56
+ * Provide valuable, actionable feedback.
57
+ *
58
+ * @since 4.3.0
59
+ */
60
+ feedback: {
61
+ type: StringConstructor;
62
+ };
63
+ /**
64
+ * Provide valuable, actionable feedback.
65
+ *
66
+ * @since 4.3.0
67
+ */
68
+ feedbackInvalid: {
69
+ type: StringConstructor;
70
+ };
71
+ /**
72
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
73
+ *
74
+ * @since 4.3.0
75
+ */
76
+ feedbackValid: {
77
+ type: StringConstructor;
78
+ };
79
+ /**
80
+ * Set component validation state to invalid.
81
+ */
82
+ invalid: BooleanConstructor;
83
+ /**
84
+ * Display validation feedback in a styled tooltip.
85
+ *
86
+ * @since 4.3.0
87
+ */
88
+ tooltipFeedback: BooleanConstructor;
89
+ /**
90
+ * Set component validation state to valid.
91
+ */
92
+ valid: BooleanConstructor;
93
+ }>>, {
94
+ invalid: boolean;
95
+ valid: boolean;
96
+ tooltipFeedback: boolean;
97
+ }>;
98
+ export { CFormControlValidation };
@@ -0,0 +1,6 @@
1
+ declare const CFormControlWrapper: import("vue").DefineComponent<any, () => any[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2
+ [key: string]: any;
3
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<any>, {} | {
4
+ [x: string]: any;
5
+ }>;
6
+ export { CFormControlWrapper };
@@ -43,9 +43,9 @@ declare const CFormFeedback: import("vue").DefineComponent<{
43
43
  */
44
44
  valid: BooleanConstructor;
45
45
  }>>, {
46
- component: string;
47
46
  invalid: boolean;
48
- valid: boolean;
47
+ component: string;
49
48
  tooltip: boolean;
49
+ valid: boolean;
50
50
  }>;
51
51
  export { CFormFeedback };
@@ -6,12 +6,55 @@ declare const CFormInput: import("vue").DefineComponent<{
6
6
  type: BooleanConstructor;
7
7
  required: false;
8
8
  };
9
+ /**
10
+ * Provide valuable, actionable feedback.
11
+ *
12
+ * @since 4.3.0
13
+ */
14
+ feedback: {
15
+ type: StringConstructor;
16
+ };
17
+ /**
18
+ * Provide valuable, actionable feedback.
19
+ *
20
+ * @since 4.3.0
21
+ */
22
+ feedbackInvalid: {
23
+ type: StringConstructor;
24
+ };
25
+ /**
26
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
27
+ *
28
+ * @since 4.3.0
29
+ */
30
+ feedbackValid: {
31
+ type: StringConstructor;
32
+ };
33
+ /**
34
+ * Provide valuable, actionable valid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
35
+ *
36
+ * @since 4.3.0
37
+ */
38
+ floatingLabel: {
39
+ type: StringConstructor;
40
+ };
41
+ /**
42
+ * The id global attribute defines an identifier (ID) that must be unique in the whole document.
43
+ */
44
+ id: {
45
+ type: StringConstructor;
46
+ };
9
47
  /**
10
48
  * Set component validation state to invalid.
11
49
  */
12
- invalid: {
13
- type: BooleanConstructor;
14
- required: false;
50
+ invalid: BooleanConstructor;
51
+ /**
52
+ * Add a caption for a component.
53
+ *
54
+ * @since 4.3.0
55
+ */
56
+ label: {
57
+ type: StringConstructor;
15
58
  };
16
59
  /**
17
60
  * The default name for a value passed using v-model.
@@ -19,7 +62,6 @@ declare const CFormInput: import("vue").DefineComponent<{
19
62
  modelValue: {
20
63
  type: StringConstructor;
21
64
  default: undefined;
22
- require: boolean;
23
65
  };
24
66
  /**
25
67
  * Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use only along side `readonly`.
@@ -42,10 +84,22 @@ declare const CFormInput: import("vue").DefineComponent<{
42
84
  */
43
85
  size: {
44
86
  type: StringConstructor;
45
- default: undefined;
46
- require: boolean;
47
87
  validator: (value: string) => boolean;
48
88
  };
89
+ /**
90
+ * Add helper text to the component.
91
+ *
92
+ * @since 4.3.0
93
+ */
94
+ text: {
95
+ type: StringConstructor;
96
+ };
97
+ /**
98
+ * Display validation feedback in a styled tooltip.
99
+ *
100
+ * @since 4.3.0
101
+ */
102
+ tooltipFeedback: BooleanConstructor;
49
103
  /**
50
104
  * Specifies the type of component.
51
105
  *
@@ -54,15 +108,11 @@ declare const CFormInput: import("vue").DefineComponent<{
54
108
  type: {
55
109
  type: StringConstructor;
56
110
  default: string;
57
- require: boolean;
58
111
  };
59
112
  /**
60
113
  * Set component validation state to valid.
61
114
  */
62
- valid: {
63
- type: BooleanConstructor;
64
- required: false;
65
- };
115
+ valid: BooleanConstructor;
66
116
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
67
117
  [key: string]: any;
68
118
  }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "update:modelValue")[], "change" | "input" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -73,12 +123,55 @@ declare const CFormInput: import("vue").DefineComponent<{
73
123
  type: BooleanConstructor;
74
124
  required: false;
75
125
  };
126
+ /**
127
+ * Provide valuable, actionable feedback.
128
+ *
129
+ * @since 4.3.0
130
+ */
131
+ feedback: {
132
+ type: StringConstructor;
133
+ };
134
+ /**
135
+ * Provide valuable, actionable feedback.
136
+ *
137
+ * @since 4.3.0
138
+ */
139
+ feedbackInvalid: {
140
+ type: StringConstructor;
141
+ };
142
+ /**
143
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
144
+ *
145
+ * @since 4.3.0
146
+ */
147
+ feedbackValid: {
148
+ type: StringConstructor;
149
+ };
150
+ /**
151
+ * Provide valuable, actionable valid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
152
+ *
153
+ * @since 4.3.0
154
+ */
155
+ floatingLabel: {
156
+ type: StringConstructor;
157
+ };
158
+ /**
159
+ * The id global attribute defines an identifier (ID) that must be unique in the whole document.
160
+ */
161
+ id: {
162
+ type: StringConstructor;
163
+ };
76
164
  /**
77
165
  * Set component validation state to invalid.
78
166
  */
79
- invalid: {
80
- type: BooleanConstructor;
81
- required: false;
167
+ invalid: BooleanConstructor;
168
+ /**
169
+ * Add a caption for a component.
170
+ *
171
+ * @since 4.3.0
172
+ */
173
+ label: {
174
+ type: StringConstructor;
82
175
  };
83
176
  /**
84
177
  * The default name for a value passed using v-model.
@@ -86,7 +179,6 @@ declare const CFormInput: import("vue").DefineComponent<{
86
179
  modelValue: {
87
180
  type: StringConstructor;
88
181
  default: undefined;
89
- require: boolean;
90
182
  };
91
183
  /**
92
184
  * Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use only along side `readonly`.
@@ -109,10 +201,22 @@ declare const CFormInput: import("vue").DefineComponent<{
109
201
  */
110
202
  size: {
111
203
  type: StringConstructor;
112
- default: undefined;
113
- require: boolean;
114
204
  validator: (value: string) => boolean;
115
205
  };
206
+ /**
207
+ * Add helper text to the component.
208
+ *
209
+ * @since 4.3.0
210
+ */
211
+ text: {
212
+ type: StringConstructor;
213
+ };
214
+ /**
215
+ * Display validation feedback in a styled tooltip.
216
+ *
217
+ * @since 4.3.0
218
+ */
219
+ tooltipFeedback: BooleanConstructor;
116
220
  /**
117
221
  * Specifies the type of component.
118
222
  *
@@ -121,26 +225,22 @@ declare const CFormInput: import("vue").DefineComponent<{
121
225
  type: {
122
226
  type: StringConstructor;
123
227
  default: string;
124
- require: boolean;
125
228
  };
126
229
  /**
127
230
  * Set component validation state to valid.
128
231
  */
129
- valid: {
130
- type: BooleanConstructor;
131
- required: false;
132
- };
232
+ valid: BooleanConstructor;
133
233
  }>> & {
134
234
  onChange?: ((...args: any[]) => any) | undefined;
135
235
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
136
236
  onInput?: ((...args: any[]) => any) | undefined;
137
237
  }, {
138
238
  type: string;
139
- disabled: boolean;
140
- size: string;
141
239
  invalid: boolean;
142
- modelValue: string;
240
+ disabled: boolean;
143
241
  valid: boolean;
242
+ tooltipFeedback: boolean;
243
+ modelValue: string;
144
244
  plainText: boolean;
145
245
  readonly: boolean;
146
246
  }>;
@@ -5,7 +5,14 @@ declare const CFormRange: import("vue").DefineComponent<{
5
5
  disabled: {
6
6
  type: BooleanConstructor;
7
7
  default: undefined;
8
- required: false;
8
+ };
9
+ /**
10
+ * Add a caption for a component.
11
+ *
12
+ * @since 4.3.0
13
+ */
14
+ label: {
15
+ type: StringConstructor;
9
16
  };
10
17
  /**
11
18
  * Specifies the maximum value for the component.
@@ -13,7 +20,6 @@ declare const CFormRange: import("vue").DefineComponent<{
13
20
  max: {
14
21
  type: NumberConstructor;
15
22
  default: undefined;
16
- required: false;
17
23
  };
18
24
  /**
19
25
  * Specifies the minimum value for the component.
@@ -21,7 +27,6 @@ declare const CFormRange: import("vue").DefineComponent<{
21
27
  min: {
22
28
  type: NumberConstructor;
23
29
  default: undefined;
24
- required: false;
25
30
  };
26
31
  /**
27
32
  * The default name for a value passed using v-model.
@@ -29,14 +34,12 @@ declare const CFormRange: import("vue").DefineComponent<{
29
34
  modelValue: {
30
35
  type: StringConstructor;
31
36
  value: undefined;
32
- required: false;
33
37
  };
34
38
  /**
35
39
  * Toggle the readonly state for the component.
36
40
  */
37
41
  readonly: {
38
42
  type: BooleanConstructor;
39
- required: false;
40
43
  };
41
44
  /**
42
45
  * Specifies the interval between legal numbers in the component.
@@ -44,7 +47,6 @@ declare const CFormRange: import("vue").DefineComponent<{
44
47
  steps: {
45
48
  type: NumberConstructor;
46
49
  default: undefined;
47
- required: false;
48
50
  };
49
51
  /**
50
52
  * The `value` attribute of component.
@@ -54,18 +56,24 @@ declare const CFormRange: import("vue").DefineComponent<{
54
56
  value: {
55
57
  type: NumberConstructor;
56
58
  default: undefined;
57
- required: false;
58
59
  };
59
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
60
+ }, () => ("" | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
60
61
  [key: string]: any;
61
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
62
+ }> | undefined)[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
62
63
  /**
63
64
  * Toggle the disabled state for the component.
64
65
  */
65
66
  disabled: {
66
67
  type: BooleanConstructor;
67
68
  default: undefined;
68
- required: false;
69
+ };
70
+ /**
71
+ * Add a caption for a component.
72
+ *
73
+ * @since 4.3.0
74
+ */
75
+ label: {
76
+ type: StringConstructor;
69
77
  };
70
78
  /**
71
79
  * Specifies the maximum value for the component.
@@ -73,7 +81,6 @@ declare const CFormRange: import("vue").DefineComponent<{
73
81
  max: {
74
82
  type: NumberConstructor;
75
83
  default: undefined;
76
- required: false;
77
84
  };
78
85
  /**
79
86
  * Specifies the minimum value for the component.
@@ -81,7 +88,6 @@ declare const CFormRange: import("vue").DefineComponent<{
81
88
  min: {
82
89
  type: NumberConstructor;
83
90
  default: undefined;
84
- required: false;
85
91
  };
86
92
  /**
87
93
  * The default name for a value passed using v-model.
@@ -89,14 +95,12 @@ declare const CFormRange: import("vue").DefineComponent<{
89
95
  modelValue: {
90
96
  type: StringConstructor;
91
97
  value: undefined;
92
- required: false;
93
98
  };
94
99
  /**
95
100
  * Toggle the readonly state for the component.
96
101
  */
97
102
  readonly: {
98
103
  type: BooleanConstructor;
99
- required: false;
100
104
  };
101
105
  /**
102
106
  * Specifies the interval between legal numbers in the component.
@@ -104,7 +108,6 @@ declare const CFormRange: import("vue").DefineComponent<{
104
108
  steps: {
105
109
  type: NumberConstructor;
106
110
  default: undefined;
107
- required: false;
108
111
  };
109
112
  /**
110
113
  * The `value` attribute of component.
@@ -114,7 +117,6 @@ declare const CFormRange: import("vue").DefineComponent<{
114
117
  value: {
115
118
  type: NumberConstructor;
116
119
  default: undefined;
117
- required: false;
118
120
  };
119
121
  }>> & {
120
122
  onChange?: ((...args: any[]) => any) | undefined;