@nexxtmove/ui 0.1.30 → 0.1.31
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/index.d.ts +9 -0
- package/dist/index.js +51 -20
- package/dist/nuxt.js +26 -25
- package/package.json +1 -1
- package/src/components/Avatar/Avatar.stories.ts +28 -0
- package/src/components/Avatar/Avatar.test.ts +55 -0
- package/src/components/Avatar/Avatar.vue +49 -0
- package/src/components.json +1 -0
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -206,6 +206,15 @@ declare type IconType = 'regular' | 'solid' | 'light' | 'duotone' | 'brands';
|
|
|
206
206
|
|
|
207
207
|
export declare const NexxtAnimatedNumber: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
208
208
|
|
|
209
|
+
export declare const NexxtAvatar: DefineComponent<NexxtAvatarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtAvatarProps> & Readonly<{}>, {
|
|
210
|
+
size: "xs" | "sm" | "md" | "lg" | "xl";
|
|
211
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
212
|
+
|
|
213
|
+
declare interface NexxtAvatarProps {
|
|
214
|
+
name: string;
|
|
215
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
216
|
+
}
|
|
217
|
+
|
|
209
218
|
export declare const NexxtButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
210
219
|
|
|
211
220
|
declare interface NexxtButtonProps {
|