plugin-ui-for-kzt 0.0.19 → 0.0.20
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/components/BaseButton/BaseButton.vue.d.ts +0 -2
- package/dist/components/BaseCalendar/BaseCalendar.vue.d.ts +9 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +0 -2
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +0 -2
- package/dist/components/BaseField/BaseField.vue.d.ts +98 -0
- package/dist/components/BaseInput/BaseInput.vue.d.ts +16 -14
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +13 -15
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +7 -9
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +7 -12
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +7 -12
- package/dist/components/BaseOpenedListItem/BaseOpenedListItem.vue.d.ts +0 -2
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +0 -2
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +0 -2
- package/dist/components/BaseSiteInput/BaseSiteInput.vue.d.ts +11 -7
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +7 -12
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +0 -2
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/composables/kit/state.d.ts +1 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/example/App.vue +170 -128
- package/package.json +1 -1
- package/src/components/BaseField/BaseField.vue +184 -0
- package/src/components/BaseField/README.md +85 -0
- package/src/components/BaseInput/BaseInput.vue +162 -228
- package/src/components/BaseInputCalendar/BaseInputCalendar.vue +10 -7
- package/src/components/BaseInputCurrency/BaseInputCurrency.vue +39 -78
- package/src/components/BaseInputEmail/BaseInputEmail.vue +2 -4
- package/src/components/BaseInputPhone/BaseInputPhone.vue +29 -89
- package/src/components/BaseSelect/BaseSelect.vue +9 -52
- package/src/components/BaseSiteInput/BaseSiteInput.vue +11 -63
- package/src/components/BaseTextarea/BaseTextarea.vue +3 -30
- package/src/composables/kit/state.ts +1 -2
- package/src/index.ts +5 -2
- package/src/styles/index.scss +87 -2
- package/src/styles/root.scss +1 -0
- package/src/styles/variables.scss +2 -1
- package/src/types/calendar.d.ts +2 -0
- package/src/types/field.d.ts +12 -0
- package/src/types/input.d.ts +26 -8
- package/src/types/utils.d.ts +0 -1
|
@@ -28,7 +28,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
28
28
|
loading: {
|
|
29
29
|
type: BooleanConstructor;
|
|
30
30
|
};
|
|
31
|
-
hint: {};
|
|
32
31
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
33
32
|
[key: string]: any;
|
|
34
33
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -61,7 +60,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
61
60
|
loading: {
|
|
62
61
|
type: BooleanConstructor;
|
|
63
62
|
};
|
|
64
|
-
hint: {};
|
|
65
63
|
}>> & Readonly<{
|
|
66
64
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
65
|
}>, {
|
|
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
34
34
|
};
|
|
35
35
|
}>> & Readonly<{}>, {
|
|
36
36
|
position: string;
|
|
37
|
-
arrow: boolean;
|
|
38
37
|
theme: string;
|
|
39
38
|
trigger: string;
|
|
39
|
+
arrow: boolean;
|
|
40
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
41
41
|
export default _default;
|
|
@@ -4,10 +4,9 @@ export declare function useKitState(props: ICoreState): {
|
|
|
4
4
|
'--is-selected': boolean | undefined;
|
|
5
5
|
'--is-active': boolean | undefined;
|
|
6
6
|
'--is-required': boolean | undefined;
|
|
7
|
-
'--is-error':
|
|
7
|
+
'--is-error': boolean;
|
|
8
8
|
'--is-loading': boolean | undefined;
|
|
9
9
|
'--is-disabled': boolean | undefined;
|
|
10
|
-
'--is-has-hint': import("../../types/utils").Nullable<string | number | boolean> | undefined;
|
|
11
10
|
}[]>;
|
|
12
11
|
stateAttrs: import("vue").ComputedRef<{
|
|
13
12
|
disabled?: true | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -33,8 +33,9 @@ import BaseUpload from "./components/BaseUpload/BaseUpload.vue";
|
|
|
33
33
|
import BaseBadge from "./components/BaseBadge/BaseBadge.vue";
|
|
34
34
|
import BaseTag from "./components/BaseTag/BaseTag.vue";
|
|
35
35
|
import BaseBadgeGroup from "./components/BaseBadge/BaseBadgeGroup.vue";
|
|
36
|
+
import BaseField from "./components/BaseField/BaseField.vue";
|
|
36
37
|
declare const _default: {
|
|
37
38
|
install(app: any): void;
|
|
38
39
|
};
|
|
39
40
|
export default _default;
|
|
40
|
-
export { BaseModal, BaseBadgeGroup, BaseBadge, DataTable, BaseTag, Tooltip, Spinner, useModal, useToast, BaseIcon, BaseBreadCrumbs, BaseButton, BaseLoader, BaseCalendar, BaseCheckbox, BaseRadio, BaseTextarea, BaseToggle, BaseTooltip, BaseInput, BaseInputEmail, BaseInputCalendar, BaseOpenedListItem, BaseDropdown, BaseSelect, BaseSiteInput, BaseInputPhone, BaseInputCurrency, BasePagination, BaseSegmentedButtons, BaseChips, BaseSwiper, BaseUpload };
|
|
41
|
+
export { BaseModal, BaseBadgeGroup, BaseBadge, DataTable, BaseTag, Tooltip, Spinner, useModal, useToast, BaseIcon, BaseBreadCrumbs, BaseButton, BaseLoader, BaseCalendar, BaseCheckbox, BaseRadio, BaseTextarea, BaseToggle, BaseTooltip, BaseInput, BaseInputEmail, BaseInputCalendar, BaseOpenedListItem, BaseDropdown, BaseSelect, BaseSiteInput, BaseInputPhone, BaseInputCurrency, BasePagination, BaseSegmentedButtons, BaseChips, BaseSwiper, BaseUpload, BaseField };
|