prizm-ui-vue 2.2.10 → 2.2.12

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.
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,24 @@
1
+ import { ElOption } from 'element-plus';
2
+ import 'element-plus/es/components/option/style/css';
3
+ type ElSelectProps = InstanceType<typeof ElOption>['$props'];
4
+ type PickedProps = Pick<ElSelectProps, 'value' | 'label' | 'disabled'>;
5
+ type Props = {
6
+ value: PickedProps['value'];
7
+ label?: PickedProps['label'];
8
+ disabled?: PickedProps['disabled'];
9
+ width?: 'auto' | string | number;
10
+ };
11
+ type Slots = {
12
+ default?: unknown;
13
+ };
14
+ type __VLS_Slots = Slots;
15
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
16
+ width: "auto" | string | number;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
19
+ export default _default;
20
+ type __VLS_WithSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -0,0 +1,54 @@
1
+ import { ElSelect } from 'element-plus';
2
+ import 'element-plus/es/components/select/style/css';
3
+ type ElSelectProps = InstanceType<typeof ElSelect>['$props'];
4
+ type PickedProps = Pick<ElSelectProps, 'size' | 'clearable' | 'clearIcon' | 'effect' | 'filterable' | 'placeholder' | 'defaultFirstOption' | 'onClear' | 'onChange' | 'onRemove-tag' | 'multiple' | 'fallbackPlacements' | 'disabled' | 'noDataText' | 'placement'>;
5
+ type Slots = {
6
+ default?: unknown;
7
+ header?: unknown;
8
+ footer?: unknown;
9
+ prefix?: unknown;
10
+ empty?: unknown;
11
+ tag?: unknown;
12
+ loading?: unknown;
13
+ label?: unknown;
14
+ };
15
+ type __VLS_Slots = Slots;
16
+ declare const modelValue: import("vue").ModelRef<string | number | boolean | string[] | number[], string, string | number | boolean | string[] | number[], string | number | boolean | string[] | number[]>;
17
+ type Props = {
18
+ size?: PickedProps['size'];
19
+ clearable?: PickedProps['clearable'];
20
+ clearIcon?: PickedProps['clearIcon'];
21
+ effect?: PickedProps['effect'];
22
+ filterable?: PickedProps['filterable'];
23
+ placeholder?: PickedProps['placeholder'];
24
+ defaultFirstOption?: PickedProps['defaultFirstOption'];
25
+ onClear?: PickedProps['onClear'];
26
+ onChange?: PickedProps['onChange'];
27
+ onRemoveTag?: PickedProps['onRemove-tag'];
28
+ multiple?: PickedProps['multiple'];
29
+ fallbackPlacements?: PickedProps['fallbackPlacements'];
30
+ disabled?: PickedProps['disabled'];
31
+ noDataText?: PickedProps['noDataText'];
32
+ placement?: PickedProps['placement'];
33
+ };
34
+ type __VLS_Props = Props;
35
+ type __VLS_PublicProps = __VLS_Props & {
36
+ modelValue: typeof modelValue['value'];
37
+ };
38
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
39
+ "update:modelValue": (value: string | number | boolean | string[] | number[]) => any;
40
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
41
+ "onUpdate:modelValue"?: ((value: string | number | boolean | string[] | number[]) => any) | undefined;
42
+ }>, {
43
+ size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
44
+ placement: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown>;
45
+ filterable: boolean;
46
+ noDataText: string;
47
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
48
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
49
+ export default _default;
50
+ type __VLS_WithSlots<T, S> = T & {
51
+ new (): {
52
+ $slots: S;
53
+ };
54
+ };
@@ -13,5 +13,7 @@ export { default as PrizmTabPane } from './PrizmTabs/PrizmTabPane.vue';
13
13
  export { default as PrizmRadio } from './PrizmRadio/PrizmRadio.vue';
14
14
  export { default as PrizmRadioButton } from './PrizmRadio/PrizmRadioButton.vue';
15
15
  export { default as PrizmRadioGroup } from './PrizmRadio/PrizmRadioGroup.vue';
16
+ export { default as PrizmSelect } from './PrizmSelect/PrizmSelect.vue';
17
+ export { default as PrizmOption } from './PrizmSelect/PrizmOption.vue';
16
18
  export { PrizmMessageBox } from './PrizmMessageBox/PrizmMessageBox';
17
19
  export { PrizmNotification } from './PrizmNotification/PrizmNotification';