prizm-ui-vue 2.2.48 → 2.2.49

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,27 @@
1
+ import { ElAvatar } from 'element-plus';
2
+ import 'element-plus/es/components/avatar/style/css';
3
+ type ElIconProps = InstanceType<typeof ElAvatar>['$props'];
4
+ type PickedProps = Pick<ElIconProps, 'fit' | 'icon' | 'onError' | 'size' | 'shape' | 'src'>;
5
+ type Props = {
6
+ size?: PickedProps['size'];
7
+ fit?: 'fill' | 'contain' | 'cover' | 'none' | 'scale-down';
8
+ icon?: PickedProps['icon'];
9
+ onError?: PickedProps['onError'];
10
+ shape?: PickedProps['shape'];
11
+ src?: PickedProps['src'];
12
+ };
13
+ type Slots = {
14
+ default?: unknown;
15
+ };
16
+ type __VLS_Slots = Slots;
17
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
18
+ size: import("element-plus/es/utils").EpPropMergeType<readonly [NumberConstructor, StringConstructor], "" | "small" | "default" | "large", number>;
19
+ 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>;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -24,5 +24,6 @@ export { default as PrizmDropdownItem } from './PrizmDropdown/PrizmDropdownItem.
24
24
  export { default as PrizmDropdownMenu } from './PrizmDropdown/PrizmDropdownMenu.vue';
25
25
  export { default as PrizmTable } from './PrizmTable/PrizmTable.vue';
26
26
  export { default as PrizmTableColumn } from './PrizmTable/PrizmTableColumn.vue';
27
+ export { default as PrizmAvatar } from './PrizmAvatar.vue';
27
28
  export { PrizmMessageBox } from './PrizmMessageBox/PrizmMessageBox';
28
29
  export { PrizmNotification } from './PrizmNotification/PrizmNotification';