prizm-ui-vue 2.2.18 → 2.2.19

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.
@@ -67,10 +67,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
67
67
  readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
68
68
  readonly tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
69
69
  readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
70
- readonly clearable: boolean;
71
- readonly readonly: boolean;
72
70
  readonly autosize: import("element-plus").InputAutoSize;
73
71
  readonly autocomplete: string;
72
+ readonly readonly: boolean;
73
+ readonly clearable: boolean;
74
74
  readonly showPassword: boolean;
75
75
  readonly showWordLimit: boolean;
76
76
  readonly inputStyle: import("vue").StyleValue;
@@ -78,15 +78,15 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
78
78
  readonly size?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never> | undefined;
79
79
  readonly resize?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown> | undefined;
80
80
  readonly id?: string | undefined;
81
- readonly form?: string | undefined;
82
- readonly prefixIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
83
- readonly placeholder?: string | undefined;
84
81
  readonly ariaLabel?: string | undefined;
85
82
  readonly maxlength?: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
86
83
  readonly minlength?: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
87
84
  readonly formatter?: Function | undefined;
88
85
  readonly parser?: Function | undefined;
86
+ readonly placeholder?: string | undefined;
87
+ readonly form?: string | undefined;
89
88
  readonly suffixIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
89
+ readonly prefixIcon?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown> | undefined;
90
90
  readonly containerRole?: string | undefined;
91
91
  "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
92
92
  onChange?: ((value: string) => any) | undefined | undefined;
@@ -100,7 +100,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
100
100
  onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
101
101
  onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
102
102
  onClear?: (() => any) | undefined | undefined;
103
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "id" | "tabindex" | "validateEvent" | "clearable" | "readonly" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
103
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "id" | "tabindex" | "validateEvent" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
104
104
  $attrs: {
105
105
  [x: string]: unknown;
106
106
  };
@@ -388,7 +388,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
388
388
  onMouseenter?: ((evt: MouseEvent) => any) | undefined;
389
389
  onMouseleave?: ((evt: MouseEvent) => any) | undefined;
390
390
  onClear?: (() => any) | undefined;
391
- }, "disabled" | "type" | "autofocus" | "clear" | "ref" | "blur" | "focus" | "input" | "select" | "modelValue" | "id" | "tabindex" | "validateEvent" | "textarea" | "clearable" | "readonly" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import("vue").ShallowUnwrapRef<{
391
+ }, "disabled" | "type" | "autofocus" | "clear" | "ref" | "blur" | "focus" | "input" | "select" | "modelValue" | "id" | "tabindex" | "validateEvent" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textarea" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import("vue").ShallowUnwrapRef<{
392
392
  input: import("vue").ShallowRef<HTMLInputElement | undefined>;
393
393
  textarea: import("vue").ShallowRef<HTMLTextAreaElement | undefined>;
394
394
  ref: import("vue").ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
@@ -1,2 +1,9 @@
1
1
  export { default as PrizmButton } from './PrizmButton.vue';
2
2
  export { default as PrizmCheckbox } from './PrizmCheckbox/PrizmCheckbox.vue';
3
+ export { default as PrizmCheckboxGroup } from './PrizmCheckbox/PrizmCheckboxGroup.vue';
4
+ export { default as PrizmTag } from './PrizmTag.vue';
5
+ export { default as PrizmInput } from './PrizmInput.vue';
6
+ export { default as PrizmIcon } from './PrizmIcon.vue';
7
+ export { default as PrizmDatePicker } from './PrizmDatePicker.vue';
8
+ export { default as PrizmForm } from './PrizmForm/PrizmForm.vue';
9
+ export { default as PrizmFormItem } from './PrizmForm/PrizmFormItem.vue';