@davincihealthcare/elty-design-system-vue 1.34.1 → 1.34.3
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/ElInlineBanner.vue.d.ts +50 -0
- package/dist/index.js +103 -99
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -83,10 +83,27 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
83
83
|
}>>, "disabled" | "type" | "onClick" | "label" | "size" | "dark" | "loading" | "icon" | "error" | "variant" | "loadOnClick">, "label"> & {
|
|
84
84
|
onClick: Function;
|
|
85
85
|
}) | undefined;
|
|
86
|
+
icon?: (Partial<{}> & Omit<{
|
|
87
|
+
readonly name: import('./ElIcon.vue').IconNames;
|
|
88
|
+
readonly solid?: boolean | undefined;
|
|
89
|
+
readonly disabled?: boolean | undefined;
|
|
90
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
91
|
+
name: {
|
|
92
|
+
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
93
|
+
required: true;
|
|
94
|
+
};
|
|
95
|
+
solid: {
|
|
96
|
+
type: import('vue').PropType<boolean>;
|
|
97
|
+
};
|
|
98
|
+
disabled: {
|
|
99
|
+
type: import('vue').PropType<boolean>;
|
|
100
|
+
};
|
|
101
|
+
}>>, never>) | undefined;
|
|
86
102
|
}>, {
|
|
87
103
|
state: string;
|
|
88
104
|
title: undefined;
|
|
89
105
|
action: undefined;
|
|
106
|
+
icon: undefined;
|
|
90
107
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
91
108
|
state?: "error" | "warning" | "info" | undefined;
|
|
92
109
|
title?: string | undefined;
|
|
@@ -168,12 +185,45 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
168
185
|
}>>, "disabled" | "type" | "onClick" | "label" | "size" | "dark" | "loading" | "icon" | "error" | "variant" | "loadOnClick">, "label"> & {
|
|
169
186
|
onClick: Function;
|
|
170
187
|
}) | undefined;
|
|
188
|
+
icon?: (Partial<{}> & Omit<{
|
|
189
|
+
readonly name: import('./ElIcon.vue').IconNames;
|
|
190
|
+
readonly solid?: boolean | undefined;
|
|
191
|
+
readonly disabled?: boolean | undefined;
|
|
192
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
193
|
+
name: {
|
|
194
|
+
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
195
|
+
required: true;
|
|
196
|
+
};
|
|
197
|
+
solid: {
|
|
198
|
+
type: import('vue').PropType<boolean>;
|
|
199
|
+
};
|
|
200
|
+
disabled: {
|
|
201
|
+
type: import('vue').PropType<boolean>;
|
|
202
|
+
};
|
|
203
|
+
}>>, never>) | undefined;
|
|
171
204
|
}>, {
|
|
172
205
|
state: string;
|
|
173
206
|
title: undefined;
|
|
174
207
|
action: undefined;
|
|
208
|
+
icon: undefined;
|
|
175
209
|
}>>>, {
|
|
176
210
|
title: string;
|
|
211
|
+
icon: Omit<{
|
|
212
|
+
readonly name: import('./ElIcon.vue').IconNames;
|
|
213
|
+
readonly solid?: boolean | undefined;
|
|
214
|
+
readonly disabled?: boolean | undefined;
|
|
215
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
216
|
+
name: {
|
|
217
|
+
type: import('vue').PropType<import('./ElIcon.vue').IconNames>;
|
|
218
|
+
required: true;
|
|
219
|
+
};
|
|
220
|
+
solid: {
|
|
221
|
+
type: import('vue').PropType<boolean>;
|
|
222
|
+
};
|
|
223
|
+
disabled: {
|
|
224
|
+
type: import('vue').PropType<boolean>;
|
|
225
|
+
};
|
|
226
|
+
}>>, never>;
|
|
177
227
|
action: Pick<InstanceType<typeof ElButton>['$props'], 'label'> & {
|
|
178
228
|
onClick: Function;
|
|
179
229
|
};
|