@fastkit/vui 0.16.84 → 0.17.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.
package/dist/vui.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export * from '@fastkit/vue-app-layout';
|
|
|
16
16
|
import { VueColorSchemePluginSettings, ScopeName as ScopeName$1 } from '@fastkit/vue-color-scheme';
|
|
17
17
|
export * from '@fastkit/vue-color-scheme';
|
|
18
18
|
import * as _fastkit_vue_form_control from '@fastkit/vue-form-control';
|
|
19
|
-
import { FormSelectorControl, ResolvedFormSelectorItem, FormNodeControl,
|
|
19
|
+
import { FormSelectorControl, ResolvedFormSelectorItem, FormNodeControl, TextInputNodeEmits, FormControlHinttipDelay, VueForm, RequiredChipSource, FormControl, FormSelectorItemGroupControl, FormSelectorItemControl, FormGroupControl, VueFormServiceOptions } from '@fastkit/vue-form-control';
|
|
20
20
|
export * from '@fastkit/vue-form-control';
|
|
21
21
|
import { UseScroller } from '@fastkit/vue-scroller';
|
|
22
22
|
export * from '@fastkit/vue-scroller';
|
|
@@ -487,7 +487,7 @@ declare function createTextFieldProps(): {
|
|
|
487
487
|
detach: BooleanConstructor;
|
|
488
488
|
};
|
|
489
489
|
type TextFieldPropsOptions = ReturnType<typeof createTextFieldProps>;
|
|
490
|
-
type TextFieldEmits =
|
|
490
|
+
type TextFieldEmits = TextInputNodeEmits;
|
|
491
491
|
type TextFieldInput = ExtractPropInput<ReturnType<typeof createTextFieldProps>>;
|
|
492
492
|
declare const VTextField: vue.DefineComponent<{
|
|
493
493
|
'v-slots': vue.PropType<{
|
package/dist/vui.mjs
CHANGED
|
@@ -20,7 +20,7 @@ import { VAppContainer, VueAppLayout, VAppLayout, installVueAppLayout } from '@f
|
|
|
20
20
|
export * from '@fastkit/vue-app-layout';
|
|
21
21
|
import { colorSchemeProps, useColorClasses, useScopeColorClass, toScopeColorClass, useInjectTheme, VueColorSchemePlugin } from '@fastkit/vue-color-scheme';
|
|
22
22
|
export * from '@fastkit/vue-color-scheme';
|
|
23
|
-
import { createFormControlSettings, useFormControl, useParentFormNode, createFormSelectorItemSettings, useFormSelectorItemControl, createFormSelectorItemGroupProps, useFormSelectorItemGroupControl, createFormSelectorSettings, createFormControlProps, useFormSelectorControl,
|
|
23
|
+
import { createFormControlSettings, useFormControl, useParentFormNode, createFormSelectorItemSettings, useFormSelectorItemControl, createFormSelectorItemGroupProps, useFormSelectorItemGroupControl, createFormSelectorSettings, createFormControlProps, useFormSelectorControl, createTextInputNodeSettings, useTextInputNodeControl, createTextareaNodeSettings, useTextareaNodeControl, createFormGroupSettings, useFormGroup, createFormSettings, useForm, installVueFormPlugin } from '@fastkit/vue-form-control';
|
|
24
24
|
export * from '@fastkit/vue-form-control';
|
|
25
25
|
import { VScroller, getDocumentScroller } from '@fastkit/vue-scroller';
|
|
26
26
|
export * from '@fastkit/vue-scroller';
|
|
@@ -3043,7 +3043,7 @@ var VSelect = defineComponent({
|
|
|
3043
3043
|
var {
|
|
3044
3044
|
props: props8,
|
|
3045
3045
|
emits: emits8
|
|
3046
|
-
} =
|
|
3046
|
+
} = createTextInputNodeSettings();
|
|
3047
3047
|
var slots9 = defineSlots();
|
|
3048
3048
|
function createTextFieldProps() {
|
|
3049
3049
|
return {
|
|
@@ -3061,7 +3061,7 @@ var VTextField = defineComponent({
|
|
|
3061
3061
|
emits: emits8,
|
|
3062
3062
|
slots: slots9,
|
|
3063
3063
|
setup(props12, ctx) {
|
|
3064
|
-
const inputControl =
|
|
3064
|
+
const inputControl = useTextInputNodeControl(props12, ctx, {
|
|
3065
3065
|
nodeType: VUI_TEXT_FIELD_SYMBOL
|
|
3066
3066
|
});
|
|
3067
3067
|
const control = useControl(props12);
|
|
@@ -3177,7 +3177,7 @@ var VNumberField = defineComponent({
|
|
|
3177
3177
|
var {
|
|
3178
3178
|
props: props9,
|
|
3179
3179
|
emits: emits9
|
|
3180
|
-
} =
|
|
3180
|
+
} = createTextareaNodeSettings();
|
|
3181
3181
|
var slots10 = defineSlots();
|
|
3182
3182
|
var VTextarea = defineComponent({
|
|
3183
3183
|
name: "VTextarea",
|
|
@@ -3192,7 +3192,7 @@ var VTextarea = defineComponent({
|
|
|
3192
3192
|
emits: emits9,
|
|
3193
3193
|
setup(props12, ctx) {
|
|
3194
3194
|
const vui = useVui();
|
|
3195
|
-
const inputControl =
|
|
3195
|
+
const inputControl = useTextareaNodeControl(props12, ctx, {
|
|
3196
3196
|
nodeType: VUI_TEXTAREA_SYMBOL,
|
|
3197
3197
|
defaultRows: vui.textareaRows
|
|
3198
3198
|
});
|