@dynamicforms/vuetify-inputs 0.7.0 → 0.7.2
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/dynamicforms-vuetify-inputs.css +1 -4
- package/dist/dynamicforms-vuetify-inputs.js +387 -447
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +1 -43
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -120,6 +120,7 @@ declare function __VLS_template_2(): {
|
|
|
120
120
|
props: Record<string, unknown>;
|
|
121
121
|
isActive: Ref<boolean>;
|
|
122
122
|
isFocused: Ref<boolean>;
|
|
123
|
+
iconColor: ComputedRef<string | undefined>;
|
|
123
124
|
controlRef: Ref<HTMLElement | undefined>;
|
|
124
125
|
focus: () => void;
|
|
125
126
|
blur: () => void;
|
|
@@ -131,6 +132,7 @@ declare function __VLS_template_2(): {
|
|
|
131
132
|
'prepend-inner'?(_: {
|
|
132
133
|
isActive: Ref<boolean>;
|
|
133
134
|
isFocused: Ref<boolean>;
|
|
135
|
+
iconColor: ComputedRef<string | undefined>;
|
|
134
136
|
controlRef: Ref<HTMLElement | undefined>;
|
|
135
137
|
focus: () => void;
|
|
136
138
|
blur: () => void;
|
package/package.json
CHANGED