prizm-ui-vue 2.2.26 → 2.2.28
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/PrizmButton.vue.d.ts +3 -1
- package/dist/components/PrizmCollapse/PrizmCollapse.vue.d.ts +95 -1
- package/dist/components/PrizmCollapse/PrizmCollapseItem.vue.d.ts +113 -1
- package/dist/components/PrizmSelect/PrizmSelect.vue.d.ts +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/prizm-ui.es.js +1106 -482
- package/dist/prizm-ui.umd.js +2 -2
- package/dist/shared/icon/IconDubleArrow.vue.d.ts +7 -0
- package/dist/shared/icon/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElButton } from 'element-plus';
|
|
2
2
|
import 'element-plus/es/components/button/style/css';
|
|
3
3
|
type ElementProps = InstanceType<typeof ElButton>['$props'];
|
|
4
|
-
type PickedProps = Pick<ElementProps, 'disabled' | 'type' | 'size' | 'icon' | 'link' | 'plain' | 'dark' | 'plain' | 'onClick'>;
|
|
4
|
+
type PickedProps = Pick<ElementProps, 'disabled' | 'type' | 'size' | 'icon' | 'link' | 'plain' | 'dark' | 'plain' | 'onClick' | 'nativeType'>;
|
|
5
5
|
export type ButtonProps = {
|
|
6
6
|
type?: PickedProps['type'];
|
|
7
7
|
disabled?: boolean;
|
|
@@ -10,6 +10,7 @@ export type ButtonProps = {
|
|
|
10
10
|
link?: PickedProps['link'];
|
|
11
11
|
plain?: PickedProps['plain'];
|
|
12
12
|
dark?: PickedProps['dark'];
|
|
13
|
+
nativeType?: PickedProps['nativeType'];
|
|
13
14
|
onClick?: PickedProps['onClick'];
|
|
14
15
|
};
|
|
15
16
|
type Slots = {
|
|
@@ -211,6 +212,7 @@ declare const __VLS_component: import("vue").DefineComponent<ButtonProps, {
|
|
|
211
212
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
|
|
212
213
|
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
213
214
|
type: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "text" | "default" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
215
|
+
nativeType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "button" | "reset" | "submit", unknown>;
|
|
214
216
|
plain: boolean;
|
|
215
217
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
216
218
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -1,2 +1,96 @@
|
|
|
1
|
-
|
|
1
|
+
import { type CollapseProps } from 'element-plus';
|
|
2
|
+
import 'element-plus/es/components/collapse/style/css';
|
|
3
|
+
type Slots = {
|
|
4
|
+
default?: unknown;
|
|
5
|
+
};
|
|
6
|
+
type Props = {
|
|
7
|
+
accordion?: CollapseProps['accordion'];
|
|
8
|
+
};
|
|
9
|
+
type __VLS_Slots = Slots;
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
11
|
+
baseCollapseRef: Readonly<import("vue").ShallowRef<({
|
|
12
|
+
$: import("vue").ComponentInternalInstance;
|
|
13
|
+
$data: {};
|
|
14
|
+
$props: Partial<{
|
|
15
|
+
readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue) | ((new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue))[], unknown, unknown>;
|
|
16
|
+
readonly accordion: boolean;
|
|
17
|
+
}> & Omit<{
|
|
18
|
+
readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue) | ((new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue))[], unknown, unknown>;
|
|
19
|
+
readonly accordion: boolean;
|
|
20
|
+
"onUpdate:modelValue"?: ((value: import("element-plus").CollapseModelValue) => any) | undefined | undefined;
|
|
21
|
+
onChange?: ((value: import("element-plus").CollapseModelValue) => any) | undefined | undefined;
|
|
22
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "accordion">;
|
|
23
|
+
$attrs: {
|
|
24
|
+
[x: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
$refs: {
|
|
27
|
+
[x: string]: unknown;
|
|
28
|
+
};
|
|
29
|
+
$slots: Readonly<{
|
|
30
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
31
|
+
}>;
|
|
32
|
+
$root: import("vue").ComponentPublicInstance | null;
|
|
33
|
+
$parent: import("vue").ComponentPublicInstance | null;
|
|
34
|
+
$host: Element | null;
|
|
35
|
+
$emit: ((event: "change", value: import("element-plus").CollapseModelValue) => void) & ((event: "update:modelValue", value: import("element-plus").CollapseModelValue) => void);
|
|
36
|
+
$el: any;
|
|
37
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
+
readonly accordion: BooleanConstructor;
|
|
39
|
+
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue) | ((new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue))[], unknown, unknown, () => [], boolean>;
|
|
40
|
+
}>> & {
|
|
41
|
+
"onUpdate:modelValue"?: ((value: import("element-plus").CollapseModelValue) => any) | undefined;
|
|
42
|
+
onChange?: ((value: import("element-plus").CollapseModelValue) => any) | undefined;
|
|
43
|
+
}, {
|
|
44
|
+
activeNames: import("vue").Ref<(string | number)[]>;
|
|
45
|
+
setActiveNames: (_activeNames: import("element-plus").CollapseActiveName[]) => void;
|
|
46
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
47
|
+
"update:modelValue": (value: import("element-plus").CollapseModelValue) => void;
|
|
48
|
+
change: (value: import("element-plus").CollapseModelValue) => void;
|
|
49
|
+
}, string, {
|
|
50
|
+
readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue) | ((new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue))[], unknown, unknown>;
|
|
51
|
+
readonly accordion: boolean;
|
|
52
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
53
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
54
|
+
created?: (() => void) | (() => void)[];
|
|
55
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
56
|
+
mounted?: (() => void) | (() => void)[];
|
|
57
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
58
|
+
updated?: (() => void) | (() => void)[];
|
|
59
|
+
activated?: (() => void) | (() => void)[];
|
|
60
|
+
deactivated?: (() => void) | (() => void)[];
|
|
61
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
62
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
63
|
+
destroyed?: (() => void) | (() => void)[];
|
|
64
|
+
unmounted?: (() => void) | (() => void)[];
|
|
65
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
66
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
67
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
68
|
+
};
|
|
69
|
+
$forceUpdate: () => void;
|
|
70
|
+
$nextTick: typeof import("vue").nextTick;
|
|
71
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
72
|
+
} & Readonly<{
|
|
73
|
+
readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue) | ((new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue))[], unknown, unknown>;
|
|
74
|
+
readonly accordion: boolean;
|
|
75
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
76
|
+
readonly accordion: BooleanConstructor;
|
|
77
|
+
readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue) | ((new (...args: any[]) => string | number | import("element-plus").CollapseActiveName[]) | (() => import("element-plus").CollapseModelValue))[], unknown, unknown, () => [], boolean>;
|
|
78
|
+
}>> & {
|
|
79
|
+
"onUpdate:modelValue"?: ((value: import("element-plus").CollapseModelValue) => any) | undefined;
|
|
80
|
+
onChange?: ((value: import("element-plus").CollapseModelValue) => any) | undefined;
|
|
81
|
+
}, "modelValue" | "accordion" | "activeNames" | "setActiveNames"> & import("vue").ShallowUnwrapRef<{
|
|
82
|
+
activeNames: import("vue").Ref<(string | number)[]>;
|
|
83
|
+
setActiveNames: (_activeNames: import("element-plus").CollapseActiveName[]) => void;
|
|
84
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
85
|
+
$slots: {
|
|
86
|
+
default?(_: {}): any;
|
|
87
|
+
};
|
|
88
|
+
}) | null>>;
|
|
89
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
90
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
91
|
export default _default;
|
|
92
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
93
|
+
new (): {
|
|
94
|
+
$slots: S;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
@@ -1,2 +1,114 @@
|
|
|
1
|
-
|
|
1
|
+
import { type CollapseItemProps } from 'element-plus';
|
|
2
|
+
import 'element-plus/es/components/collapse-item/style/css';
|
|
3
|
+
type Slots = {
|
|
4
|
+
default?: unknown;
|
|
5
|
+
title?: unknown;
|
|
6
|
+
icon?: unknown;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_Slots = Slots;
|
|
9
|
+
type Props = {
|
|
10
|
+
title?: CollapseItemProps['title'];
|
|
11
|
+
disabled?: CollapseItemProps['disabled'];
|
|
12
|
+
icon?: CollapseItemProps['icon'];
|
|
13
|
+
name?: CollapseItemProps['name'];
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
16
|
+
baseCollapseItemRef: Readonly<import("vue").ShallowRef<({
|
|
17
|
+
$: import("vue").ComponentInternalInstance;
|
|
18
|
+
$data: {};
|
|
19
|
+
$props: Partial<{
|
|
20
|
+
readonly title: string;
|
|
21
|
+
readonly disabled: boolean;
|
|
22
|
+
readonly name: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName))[], unknown, unknown>;
|
|
23
|
+
}> & Omit<{
|
|
24
|
+
readonly disabled: boolean;
|
|
25
|
+
readonly title: string;
|
|
26
|
+
readonly icon?: 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;
|
|
27
|
+
readonly name?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName))[], unknown, unknown> | undefined;
|
|
28
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "name" | "title">;
|
|
29
|
+
$attrs: {
|
|
30
|
+
[x: string]: unknown;
|
|
31
|
+
};
|
|
32
|
+
$refs: {
|
|
33
|
+
[x: string]: unknown;
|
|
34
|
+
};
|
|
35
|
+
$slots: Readonly<{
|
|
36
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
37
|
+
}>;
|
|
38
|
+
$root: import("vue").ComponentPublicInstance | null;
|
|
39
|
+
$parent: import("vue").ComponentPublicInstance | null;
|
|
40
|
+
$host: Element | null;
|
|
41
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
42
|
+
$el: any;
|
|
43
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
readonly title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
45
|
+
readonly name: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName))[], unknown, unknown, undefined, boolean>;
|
|
46
|
+
readonly icon: {
|
|
47
|
+
readonly type: import("vue").PropType<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>>;
|
|
48
|
+
readonly required: false;
|
|
49
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
50
|
+
__epPropKey: true;
|
|
51
|
+
};
|
|
52
|
+
readonly disabled: BooleanConstructor;
|
|
53
|
+
}>>, {
|
|
54
|
+
isActive: import("vue").ComputedRef<boolean | undefined>;
|
|
55
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
56
|
+
readonly title: string;
|
|
57
|
+
readonly disabled: boolean;
|
|
58
|
+
readonly name: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName))[], unknown, unknown>;
|
|
59
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
60
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
61
|
+
created?: (() => void) | (() => void)[];
|
|
62
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
63
|
+
mounted?: (() => void) | (() => void)[];
|
|
64
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
65
|
+
updated?: (() => void) | (() => void)[];
|
|
66
|
+
activated?: (() => void) | (() => void)[];
|
|
67
|
+
deactivated?: (() => void) | (() => void)[];
|
|
68
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
69
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
70
|
+
destroyed?: (() => void) | (() => void)[];
|
|
71
|
+
unmounted?: (() => void) | (() => void)[];
|
|
72
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
73
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
74
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
75
|
+
};
|
|
76
|
+
$forceUpdate: () => void;
|
|
77
|
+
$nextTick: typeof import("vue").nextTick;
|
|
78
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
79
|
+
} & Readonly<{
|
|
80
|
+
readonly title: string;
|
|
81
|
+
readonly disabled: boolean;
|
|
82
|
+
readonly name: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName))[], unknown, unknown>;
|
|
83
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
readonly title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
85
|
+
readonly name: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName) | ((new (...args: any[]) => string | number) | (() => import("element-plus").CollapseActiveName))[], unknown, unknown, undefined, boolean>;
|
|
86
|
+
readonly icon: {
|
|
87
|
+
readonly type: import("vue").PropType<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>>;
|
|
88
|
+
readonly required: false;
|
|
89
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
90
|
+
__epPropKey: true;
|
|
91
|
+
};
|
|
92
|
+
readonly disabled: BooleanConstructor;
|
|
93
|
+
}>>, "disabled" | "name" | "title" | "isActive"> & import("vue").ShallowUnwrapRef<{
|
|
94
|
+
isActive: import("vue").ComputedRef<boolean | undefined>;
|
|
95
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
96
|
+
$slots: {
|
|
97
|
+
title?(_: {}): any;
|
|
98
|
+
icon?(_: {
|
|
99
|
+
isActive: boolean | undefined;
|
|
100
|
+
}): any;
|
|
101
|
+
default?(_: {}): any;
|
|
102
|
+
};
|
|
103
|
+
}) | null>>;
|
|
104
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
105
|
+
icon: 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>;
|
|
106
|
+
title: CollapseItemProps["title"];
|
|
107
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
108
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
2
109
|
export default _default;
|
|
110
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
111
|
+
new (): {
|
|
112
|
+
$slots: S;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
@@ -565,6 +565,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
565
565
|
"onUpdate:modelValue"?: ((value: string | number | boolean | string[] | number[]) => any) | undefined;
|
|
566
566
|
}>, {
|
|
567
567
|
size: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>;
|
|
568
|
+
placeholder: string;
|
|
568
569
|
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>;
|
|
569
570
|
filterable: boolean;
|
|
570
571
|
noDataText: string;
|
|
@@ -15,5 +15,7 @@ export { default as PrizmRadioButton } from './PrizmRadio/PrizmRadioButton.vue';
|
|
|
15
15
|
export { default as PrizmRadioGroup } from './PrizmRadio/PrizmRadioGroup.vue';
|
|
16
16
|
export { default as PrizmSelect } from './PrizmSelect/PrizmSelect.vue';
|
|
17
17
|
export { default as PrizmOption } from './PrizmSelect/PrizmOption.vue';
|
|
18
|
+
export { default as PrizmCollapse } from './PrizmCollapse/PrizmCollapse.vue';
|
|
19
|
+
export { default as PrizmCollapseItem } from './PrizmCollapse/PrizmCollapseItem.vue';
|
|
18
20
|
export { PrizmMessageBox } from './PrizmMessageBox/PrizmMessageBox';
|
|
19
21
|
export { PrizmNotification } from './PrizmNotification/PrizmNotification';
|