@dynamicforms/vuetify-inputs 0.6.0 → 0.6.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 -1
- package/dist/dynamicforms-vuetify-inputs.js +552 -574
- package/dist/dynamicforms-vuetify-inputs.js.map +1 -1
- package/dist/dynamicforms-vuetify-inputs.umd.cjs +3 -3
- package/dist/dynamicforms-vuetify-inputs.umd.cjs.map +1 -1
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
- package/readme.md +10 -4
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ import { LocaleUnit } from 'date-fns';
|
|
|
26
26
|
import { LocalizeFn } from 'date-fns';
|
|
27
27
|
import { MatchFn } from 'date-fns';
|
|
28
28
|
import { MaybeRef } from 'vue';
|
|
29
|
+
import { MdString } from '@dynamicforms/vue-forms';
|
|
29
30
|
import { Month } from 'date-fns';
|
|
30
31
|
import { PublicProps } from 'vue';
|
|
31
32
|
import { Quarter } from 'date-fns';
|
|
@@ -88,9 +89,10 @@ onBlur?: (() => any) | undefined;
|
|
|
88
89
|
|
|
89
90
|
declare type __VLS_Props = {
|
|
90
91
|
data?: DefaultInputSlot & {
|
|
91
|
-
label?: string;
|
|
92
|
+
label?: string | MdString;
|
|
92
93
|
};
|
|
93
94
|
label: Label;
|
|
95
|
+
allowWrap?: boolean;
|
|
94
96
|
};
|
|
95
97
|
|
|
96
98
|
declare type __VLS_Props_2 = BaseProps & {
|
|
@@ -212,7 +214,7 @@ export declare interface BaseEmits<T = any> {
|
|
|
212
214
|
export declare interface BaseProps<T = any> {
|
|
213
215
|
control?: default_2.IField<T>;
|
|
214
216
|
modelValue?: T;
|
|
215
|
-
label?: string | Label;
|
|
217
|
+
label?: string | Label | MdString;
|
|
216
218
|
errors?: string[];
|
|
217
219
|
placeholder?: string;
|
|
218
220
|
helpText?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -5,8 +5,8 @@ Visual components based on Vuetify library to support @dynamicforms/vue-forms.
|
|
|
5
5
|
## Introduction
|
|
6
6
|
|
|
7
7
|
`@dynamicforms/vuetify-inputs` provides input components for data entry that will be stored in form data. It is the
|
|
8
|
-
visual implementation of logical concepts from
|
|
9
|
-
[@dynamicforms/vue-forms](https://github.com/
|
|
8
|
+
visual implementation of logical concepts from
|
|
9
|
+
[@dynamicforms/vue-forms](https://github.com/dynamicforms/vue-forms).
|
|
10
10
|
|
|
11
11
|
## Features
|
|
12
12
|
|
|
@@ -107,10 +107,16 @@ npm run docs:dev
|
|
|
107
107
|
|
|
108
108
|
## Available Components
|
|
109
109
|
|
|
110
|
+
- **InputBase**: The base component for all input elements
|
|
111
|
+
- **df-actions**: An actions group.
|
|
112
|
+
- **df-checkbox**: A checkbox component.
|
|
113
|
+
- **df-color**: A color input.
|
|
114
|
+
- **df-date-time**: A date and time selection component with configurable format and type.
|
|
115
|
+
- **df-file**: A file upload component with progress indication
|
|
116
|
+
- **df-input**: A general value input.
|
|
117
|
+
- **df-rtf-editor**: A RTF editor input.
|
|
110
118
|
- **df-select**: A selection component supporting static or dynamic options, multiple selection, and tagging
|
|
111
119
|
- **df-textarea**: A textarea component with configurable rows and validation
|
|
112
|
-
- **df-file**: A file upload component with progress indication
|
|
113
|
-
- **InputBase**: The base component for all input elements
|
|
114
120
|
|
|
115
121
|
## TypeScript Support
|
|
116
122
|
|