@autoafleveren/ui 1.4.9 → 1.4.10
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/types/components/AppInput/index.d.ts +2 -1
- package/dist/ui.cjs +2 -2
- package/dist/ui.css +1 -1
- package/dist/ui.js +10 -6
- package/package.json +1 -1
- package/src/modules/components/AppInput/AppInput.vue +1 -0
- package/src/modules/components/AppInput/Input.vue +1 -1
- package/src/modules/components/AppInput/index.d.ts +2 -1
- package/src/modules/components/AppInput/index.ts +6 -1
|
@@ -9,13 +9,14 @@ export declare const appInputPropDefaults: {
|
|
|
9
9
|
readonly required: false;
|
|
10
10
|
readonly multiple: false;
|
|
11
11
|
readonly hasError: false;
|
|
12
|
+
readonly native: false;
|
|
12
13
|
readonly label: undefined;
|
|
13
14
|
readonly plain: false;
|
|
14
15
|
readonly custom: false;
|
|
15
16
|
readonly errorMessage: "";
|
|
16
17
|
readonly modelModifiers: () => {};
|
|
17
18
|
};
|
|
18
|
-
export declare function getInputComponent(inputType: InputType): string | Component;
|
|
19
|
+
export declare function getInputComponent(inputType: InputType, native?: boolean): string | Component;
|
|
19
20
|
export declare function isLicenseInputCheck(inputType: InputType): boolean;
|
|
20
21
|
export declare function mustRenderDefaultSlot(inputType: InputType, slots: Slots, label?: string): boolean;
|
|
21
22
|
export declare function mustRenderIconSlot(position: IconPosition, inputType: InputType, isLoading: boolean, plain: boolean, disabled: boolean, readonly: boolean, slots: Slots): boolean;
|