@coreui/vue-pro 4.3.0-beta.0 → 4.3.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.
Files changed (78) hide show
  1. package/README.md +113 -5
  2. package/dist/components/accordion/index.d.ts +1 -2
  3. package/dist/components/calendar/CCalendar.d.ts +15 -2
  4. package/dist/components/carousel/CCarousel.d.ts +1 -1
  5. package/dist/components/date-picker/CDatePicker.d.ts +24 -2
  6. package/dist/components/date-range-picker/CDateRangePicker.d.ts +102 -3
  7. package/dist/components/form/CFormCheck.d.ts +88 -39
  8. package/dist/components/form/CFormControlValidation.d.ts +98 -0
  9. package/dist/components/form/CFormControlWrapper.d.ts +6 -0
  10. package/dist/components/form/CFormFeedback.d.ts +2 -2
  11. package/dist/components/form/CFormInput.d.ts +133 -27
  12. package/dist/components/form/CFormRange.d.ts +18 -16
  13. package/dist/components/form/CFormSelect.d.ts +125 -16
  14. package/dist/components/form/CFormSwitch.d.ts +0 -23
  15. package/dist/components/form/CFormTextarea.d.ts +125 -24
  16. package/dist/components/modal/CModal.d.ts +1 -1
  17. package/dist/components/offcanvas/COffcanvas.d.ts +1 -1
  18. package/dist/components/smart-table/CSmartTable.d.ts +34 -98
  19. package/dist/components/smart-table/CSmartTableInterface.d.ts +3 -3
  20. package/dist/components/time-picker/CTimePicker.d.ts +1 -1
  21. package/dist/components/toast/CToast.d.ts +7 -1
  22. package/dist/components/widgets/CWidgetStatsB.d.ts +3 -8
  23. package/dist/components/widgets/CWidgetStatsC.d.ts +3 -8
  24. package/dist/directives/v-c-popover.d.ts +1 -1
  25. package/dist/directives/v-c-tooltip.d.ts +1 -1
  26. package/dist/index.es.js +5523 -644
  27. package/dist/index.es.js.map +1 -1
  28. package/dist/index.js +5522 -644
  29. package/dist/index.js.map +1 -1
  30. package/dist/utils/calendar.d.ts +4 -2
  31. package/dist/utils/time.d.ts +6 -2
  32. package/dist/utils/transition.d.ts +3 -0
  33. package/package.json +12 -11
  34. package/src/components/accordion/index.ts +0 -3
  35. package/src/components/backdrop/CBackdrop.ts +8 -6
  36. package/src/components/button/CButton.ts +2 -2
  37. package/src/components/calendar/CCalendar.ts +132 -62
  38. package/src/components/close-button/CCloseButton.ts +1 -0
  39. package/src/components/close-button/__tests__/__snapshots__/CCloseButton.spec.ts.snap +2 -2
  40. package/src/components/collapse/CCollapse.ts +5 -6
  41. package/src/components/date-picker/CDatePicker.ts +14 -10
  42. package/src/components/date-range-picker/CDateRangePicker.ts +209 -100
  43. package/src/components/form/CFormCheck.ts +118 -95
  44. package/src/components/form/CFormControlValidation.ts +97 -0
  45. package/src/components/form/CFormControlWrapper.ts +106 -0
  46. package/src/components/form/CFormInput.ts +115 -30
  47. package/src/components/form/CFormRange.ts +25 -11
  48. package/src/components/form/CFormSelect.ts +127 -41
  49. package/src/components/form/CFormSwitch.ts +2 -21
  50. package/src/components/form/CFormTextarea.ts +113 -25
  51. package/src/components/form/__tests__/CFormInput.spec.ts +11 -11
  52. package/src/components/form/__tests__/CFormRange.spec.ts +9 -9
  53. package/src/components/form/__tests__/CFormSelect.spec.ts +4 -4
  54. package/src/components/form/__tests__/CFormTextarea.spec.ts +4 -4
  55. package/src/components/form/__tests__/__snapshots__/CFormCheck.spec.ts.snap +8 -2
  56. package/src/components/form/__tests__/__snapshots__/CFormRange.spec.ts.snap +1 -1
  57. package/src/components/modal/CModal.ts +14 -6
  58. package/src/components/modal/__tests__/__snapshots__/CModal.spec.ts.snap +1 -2
  59. package/src/components/modal/__tests__/__snapshots__/CModalHeader.spec.ts.snap +2 -2
  60. package/src/components/nav/CNavGroup.ts +4 -6
  61. package/src/components/offcanvas/COffcanvas.ts +5 -7
  62. package/src/components/pagination/CSmartPagination.ts +4 -4
  63. package/src/components/picker/CPicker.ts +1 -0
  64. package/src/components/popover/CPopover.ts +5 -5
  65. package/src/components/sidebar/__tests__/__snapshots__/CSidebar.spec.ts.snap +2 -8
  66. package/src/components/smart-table/CSmartTable.ts +17 -49
  67. package/src/components/smart-table/CSmartTableInterface.ts +5 -3
  68. package/src/components/tabs/CTabPane.ts +4 -6
  69. package/src/components/time-picker/CTimePicker.ts +12 -17
  70. package/src/components/toast/CToast.ts +17 -12
  71. package/src/components/toast/__tests__/__snapshots__/CToastClose.spec.ts.snap +1 -1
  72. package/src/components/toast/__tests__/__snapshots__/CToastHeader.spec.ts.snap +1 -1
  73. package/src/components/tooltip/CTooltip.ts +5 -5
  74. package/src/directives/v-c-popover.ts +1 -1
  75. package/src/directives/v-c-tooltip.ts +1 -1
  76. package/src/utils/calendar.ts +86 -9
  77. package/src/utils/time.ts +29 -3
  78. package/src/utils/transition.ts +65 -0
@@ -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;
@@ -6,6 +6,38 @@ declare type Option = {
6
6
  value?: string;
7
7
  };
8
8
  declare const CFormSelect: import("vue").DefineComponent<{
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
+ };
9
41
  /**
10
42
  * Specifies the number of visible options in a drop-down list.
11
43
  */
@@ -14,12 +46,23 @@ declare const CFormSelect: import("vue").DefineComponent<{
14
46
  default: undefined;
15
47
  required: false;
16
48
  };
49
+ /**
50
+ * The id global attribute defines an identifier (ID) that must be unique in the whole document.
51
+ */
52
+ id: {
53
+ type: StringConstructor;
54
+ };
17
55
  /**
18
56
  * Set component validation state to invalid.
19
57
  */
20
- invalid: {
21
- type: BooleanConstructor;
22
- required: false;
58
+ invalid: BooleanConstructor;
59
+ /**
60
+ * Add a caption for a component.
61
+ *
62
+ * @since 4.3.0
63
+ */
64
+ label: {
65
+ type: StringConstructor;
23
66
  };
24
67
  /**
25
68
  * The default name for a value passed using v-model.
@@ -56,15 +99,58 @@ declare const CFormSelect: import("vue").DefineComponent<{
56
99
  validator: (value: string) => boolean;
57
100
  };
58
101
  /**
59
- * Set component validation state to valid.
102
+ * Add helper text to the component.
103
+ *
104
+ * @since 4.3.0
60
105
  */
61
- valid: {
62
- type: BooleanConstructor;
63
- required: false;
106
+ text: {
107
+ type: StringConstructor;
64
108
  };
109
+ /**
110
+ * Display validation feedback in a styled tooltip.
111
+ *
112
+ * @since 4.3.0
113
+ */
114
+ tooltipFeedback: BooleanConstructor;
115
+ /**
116
+ * Set component validation state to valid.
117
+ */
118
+ valid: BooleanConstructor;
65
119
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
66
120
  [key: string]: any;
67
121
  }>, 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<{
122
+ /**
123
+ * Provide valuable, actionable feedback.
124
+ *
125
+ * @since 4.3.0
126
+ */
127
+ feedback: {
128
+ type: StringConstructor;
129
+ };
130
+ /**
131
+ * Provide valuable, actionable feedback.
132
+ *
133
+ * @since 4.3.0
134
+ */
135
+ feedbackInvalid: {
136
+ type: StringConstructor;
137
+ };
138
+ /**
139
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
140
+ *
141
+ * @since 4.3.0
142
+ */
143
+ feedbackValid: {
144
+ type: StringConstructor;
145
+ };
146
+ /**
147
+ * Provide valuable, actionable valid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
148
+ *
149
+ * @since 4.3.0
150
+ */
151
+ floatingLabel: {
152
+ type: StringConstructor;
153
+ };
68
154
  /**
69
155
  * Specifies the number of visible options in a drop-down list.
70
156
  */
@@ -73,12 +159,23 @@ declare const CFormSelect: import("vue").DefineComponent<{
73
159
  default: undefined;
74
160
  required: false;
75
161
  };
162
+ /**
163
+ * The id global attribute defines an identifier (ID) that must be unique in the whole document.
164
+ */
165
+ id: {
166
+ type: StringConstructor;
167
+ };
76
168
  /**
77
169
  * Set component validation state to invalid.
78
170
  */
79
- invalid: {
80
- type: BooleanConstructor;
81
- required: false;
171
+ invalid: BooleanConstructor;
172
+ /**
173
+ * Add a caption for a component.
174
+ *
175
+ * @since 4.3.0
176
+ */
177
+ label: {
178
+ type: StringConstructor;
82
179
  };
83
180
  /**
84
181
  * The default name for a value passed using v-model.
@@ -115,20 +212,32 @@ declare const CFormSelect: import("vue").DefineComponent<{
115
212
  validator: (value: string) => boolean;
116
213
  };
117
214
  /**
118
- * Set component validation state to valid.
215
+ * Add helper text to the component.
216
+ *
217
+ * @since 4.3.0
119
218
  */
120
- valid: {
121
- type: BooleanConstructor;
122
- required: false;
219
+ text: {
220
+ type: StringConstructor;
123
221
  };
222
+ /**
223
+ * Display validation feedback in a styled tooltip.
224
+ *
225
+ * @since 4.3.0
226
+ */
227
+ tooltipFeedback: BooleanConstructor;
228
+ /**
229
+ * Set component validation state to valid.
230
+ */
231
+ valid: BooleanConstructor;
124
232
  }>> & {
125
233
  onChange?: ((...args: any[]) => any) | undefined;
126
234
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
127
235
  }, {
128
- size: string;
129
236
  invalid: boolean;
130
- modelValue: string | string[];
237
+ size: string;
131
238
  valid: boolean;
239
+ tooltipFeedback: boolean;
240
+ modelValue: string | string[];
132
241
  htmlSize: number;
133
242
  multiple: boolean;
134
243
  options: string[] | Option[];
@@ -4,23 +4,18 @@ declare const CFormSwitch: import("vue").DefineComponent<{
4
4
  */
5
5
  id: {
6
6
  type: StringConstructor;
7
- default: undefined;
8
- required: false;
9
7
  };
10
8
  /**
11
9
  * Set component validation state to invalid.
12
10
  */
13
11
  invalid: {
14
12
  type: BooleanConstructor;
15
- required: false;
16
13
  };
17
14
  /**
18
15
  * The element represents a caption for a component.
19
16
  */
20
17
  label: {
21
18
  type: StringConstructor;
22
- default: undefined;
23
- required: false;
24
19
  };
25
20
  /**
26
21
  * The default name for a value passed using v-model.
@@ -28,7 +23,6 @@ declare const CFormSwitch: import("vue").DefineComponent<{
28
23
  modelValue: {
29
24
  type: (StringConstructor | BooleanConstructor)[];
30
25
  value: undefined;
31
- required: false;
32
26
  };
33
27
  /**
34
28
  * Size the component large or extra large. Works only with `switch`.
@@ -37,8 +31,6 @@ declare const CFormSwitch: import("vue").DefineComponent<{
37
31
  */
38
32
  size: {
39
33
  type: StringConstructor;
40
- default: undefined;
41
- required: false;
42
34
  validator: (value: string) => boolean;
43
35
  };
44
36
  /**
@@ -49,14 +41,12 @@ declare const CFormSwitch: import("vue").DefineComponent<{
49
41
  type: {
50
42
  type: StringConstructor;
51
43
  default: string;
52
- required: false;
53
44
  };
54
45
  /**
55
46
  * Set component validation state to valid.
56
47
  */
57
48
  valid: {
58
49
  type: BooleanConstructor;
59
- required: false;
60
50
  };
61
51
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
62
52
  [key: string]: any;
@@ -66,23 +56,18 @@ declare const CFormSwitch: import("vue").DefineComponent<{
66
56
  */
67
57
  id: {
68
58
  type: StringConstructor;
69
- default: undefined;
70
- required: false;
71
59
  };
72
60
  /**
73
61
  * Set component validation state to invalid.
74
62
  */
75
63
  invalid: {
76
64
  type: BooleanConstructor;
77
- required: false;
78
65
  };
79
66
  /**
80
67
  * The element represents a caption for a component.
81
68
  */
82
69
  label: {
83
70
  type: StringConstructor;
84
- default: undefined;
85
- required: false;
86
71
  };
87
72
  /**
88
73
  * The default name for a value passed using v-model.
@@ -90,7 +75,6 @@ declare const CFormSwitch: import("vue").DefineComponent<{
90
75
  modelValue: {
91
76
  type: (StringConstructor | BooleanConstructor)[];
92
77
  value: undefined;
93
- required: false;
94
78
  };
95
79
  /**
96
80
  * Size the component large or extra large. Works only with `switch`.
@@ -99,8 +83,6 @@ declare const CFormSwitch: import("vue").DefineComponent<{
99
83
  */
100
84
  size: {
101
85
  type: StringConstructor;
102
- default: undefined;
103
- required: false;
104
86
  validator: (value: string) => boolean;
105
87
  };
106
88
  /**
@@ -111,24 +93,19 @@ declare const CFormSwitch: import("vue").DefineComponent<{
111
93
  type: {
112
94
  type: StringConstructor;
113
95
  default: string;
114
- required: false;
115
96
  };
116
97
  /**
117
98
  * Set component validation state to valid.
118
99
  */
119
100
  valid: {
120
101
  type: BooleanConstructor;
121
- required: false;
122
102
  };
123
103
  }>> & {
124
104
  onChange?: ((...args: any[]) => any) | undefined;
125
105
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
126
106
  }, {
127
107
  type: string;
128
- size: string;
129
- id: string;
130
108
  invalid: boolean;
131
- label: string;
132
109
  valid: boolean;
133
110
  }>;
134
111
  export { CFormSwitch };
@@ -4,14 +4,56 @@ declare const CFormTextarea: import("vue").DefineComponent<{
4
4
  */
5
5
  disabled: {
6
6
  type: BooleanConstructor;
7
- required: false;
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
+ * Provide valuable, actionable valid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
34
+ *
35
+ * @since 4.3.0
36
+ */
37
+ floatingLabel: {
38
+ type: StringConstructor;
39
+ };
40
+ /**
41
+ * The id global attribute defines an identifier (ID) that must be unique in the whole document.
42
+ */
43
+ id: {
44
+ type: StringConstructor;
8
45
  };
9
46
  /**
10
47
  * Set component validation state to invalid.
11
48
  */
12
- invalid: {
13
- type: BooleanConstructor;
14
- required: false;
49
+ invalid: BooleanConstructor;
50
+ /**
51
+ * Add a caption for a component.
52
+ *
53
+ * @since 4.3.0
54
+ */
55
+ label: {
56
+ type: StringConstructor;
15
57
  };
16
58
  /**
17
59
  * The default name for a value passed using v-model.
@@ -19,29 +61,37 @@ declare const CFormTextarea: import("vue").DefineComponent<{
19
61
  modelValue: {
20
62
  type: StringConstructor;
21
63
  default: undefined;
22
- require: boolean;
23
64
  };
24
65
  /**
25
66
  * 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`.
26
67
  */
27
68
  plainText: {
28
69
  type: BooleanConstructor;
29
- required: false;
30
70
  };
31
71
  /**
32
72
  * Toggle the readonly state for the component.
33
73
  */
34
74
  readonly: {
35
75
  type: BooleanConstructor;
36
- required: false;
37
76
  };
38
77
  /**
39
- * Set component validation state to valid.
78
+ * Add helper text to the component.
79
+ *
80
+ * @since 4.3.0
40
81
  */
41
- valid: {
42
- type: BooleanConstructor;
43
- required: false;
82
+ text: {
83
+ type: StringConstructor;
44
84
  };
85
+ /**
86
+ * Display validation feedback in a styled tooltip.
87
+ *
88
+ * @since 4.3.0
89
+ */
90
+ tooltipFeedback: BooleanConstructor;
91
+ /**
92
+ * Set component validation state to valid.
93
+ */
94
+ valid: BooleanConstructor;
45
95
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
46
96
  [key: string]: any;
47
97
  }>, 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<{
@@ -50,14 +100,56 @@ declare const CFormTextarea: import("vue").DefineComponent<{
50
100
  */
51
101
  disabled: {
52
102
  type: BooleanConstructor;
53
- required: false;
103
+ };
104
+ /**
105
+ * Provide valuable, actionable feedback.
106
+ *
107
+ * @since 4.3.0
108
+ */
109
+ feedback: {
110
+ type: StringConstructor;
111
+ };
112
+ /**
113
+ * Provide valuable, actionable feedback.
114
+ *
115
+ * @since 4.3.0
116
+ */
117
+ feedbackInvalid: {
118
+ type: StringConstructor;
119
+ };
120
+ /**
121
+ * Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
122
+ *
123
+ * @since 4.3.0
124
+ */
125
+ feedbackValid: {
126
+ type: StringConstructor;
127
+ };
128
+ /**
129
+ * Provide valuable, actionable valid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.
130
+ *
131
+ * @since 4.3.0
132
+ */
133
+ floatingLabel: {
134
+ type: StringConstructor;
135
+ };
136
+ /**
137
+ * The id global attribute defines an identifier (ID) that must be unique in the whole document.
138
+ */
139
+ id: {
140
+ type: StringConstructor;
54
141
  };
55
142
  /**
56
143
  * Set component validation state to invalid.
57
144
  */
58
- invalid: {
59
- type: BooleanConstructor;
60
- required: false;
145
+ invalid: BooleanConstructor;
146
+ /**
147
+ * Add a caption for a component.
148
+ *
149
+ * @since 4.3.0
150
+ */
151
+ label: {
152
+ type: StringConstructor;
61
153
  };
62
154
  /**
63
155
  * The default name for a value passed using v-model.
@@ -65,38 +157,47 @@ declare const CFormTextarea: import("vue").DefineComponent<{
65
157
  modelValue: {
66
158
  type: StringConstructor;
67
159
  default: undefined;
68
- require: boolean;
69
160
  };
70
161
  /**
71
162
  * 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`.
72
163
  */
73
164
  plainText: {
74
165
  type: BooleanConstructor;
75
- required: false;
76
166
  };
77
167
  /**
78
168
  * Toggle the readonly state for the component.
79
169
  */
80
170
  readonly: {
81
171
  type: BooleanConstructor;
82
- required: false;
83
172
  };
84
173
  /**
85
- * Set component validation state to valid.
174
+ * Add helper text to the component.
175
+ *
176
+ * @since 4.3.0
86
177
  */
87
- valid: {
88
- type: BooleanConstructor;
89
- required: false;
178
+ text: {
179
+ type: StringConstructor;
90
180
  };
181
+ /**
182
+ * Display validation feedback in a styled tooltip.
183
+ *
184
+ * @since 4.3.0
185
+ */
186
+ tooltipFeedback: BooleanConstructor;
187
+ /**
188
+ * Set component validation state to valid.
189
+ */
190
+ valid: BooleanConstructor;
91
191
  }>> & {
92
192
  onChange?: ((...args: any[]) => any) | undefined;
93
193
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
94
194
  onInput?: ((...args: any[]) => any) | undefined;
95
195
  }, {
96
- disabled: boolean;
97
196
  invalid: boolean;
98
- modelValue: string;
197
+ disabled: boolean;
99
198
  valid: boolean;
199
+ tooltipFeedback: boolean;
200
+ modelValue: string;
100
201
  plainText: boolean;
101
202
  readonly: boolean;
102
203
  }>;
@@ -87,7 +87,7 @@ declare const CModal: import("vue").DefineComponent<{
87
87
  visible: BooleanConstructor;
88
88
  }, () => (false | "" | import("vue").VNode<import("vue").RendererNode, RendererElement, {
89
89
  [key: string]: any;
90
- }>)[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("show" | "close" | "close-prevented")[], "show" | "close" | "close-prevented", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
90
+ }>)[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "show" | "close-prevented")[], "close" | "show" | "close-prevented", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
91
91
  /**
92
92
  * Align the modal in the center or top of the screen.
93
93
  *
@@ -91,8 +91,8 @@ declare const COffcanvas: import("vue").DefineComponent<{
91
91
  onHide?: ((...args: any[]) => any) | undefined;
92
92
  onShow?: ((...args: any[]) => any) | undefined;
93
93
  }, {
94
- visible: boolean;
95
94
  scroll: boolean;
95
+ visible: boolean;
96
96
  placement: string;
97
97
  backdrop: boolean;
98
98
  keyboard: boolean;