@mobileaction/action-kit 1.31.14 → 1.32.1
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/CHANGELOG.md +15 -0
- package/dist/action-kit.js +1 -1
- package/dist/action-kit.mjs +1 -1
- package/dist/components/avatar/index.vue.d.ts +12 -39
- package/dist/components/avatar/types.d.ts +3 -7
- package/dist/components/badge/index.vue.d.ts +3 -3
- package/dist/components/button/index.vue.d.ts +1 -1
- package/dist/components/button/link-button/index.vue.d.ts +1 -1
- package/dist/components/side-menu/menu-item/index.vue.d.ts +3 -3
- package/dist/{index-00c1fe84.mjs → index-7ec41c45.mjs} +3144 -3158
- package/dist/index-e1570224.js +47 -0
- package/dist/{lottie_light-cb8bba6a.js → lottie_light-a47279c3.js} +1 -1
- package/dist/{lottie_light-14e20f95.mjs → lottie_light-c32e6c0b.mjs} +1 -1
- package/dist/src/components/avatar/avatar.test.d.ts +1 -0
- package/dist/src/components/avatar/index.vue.d.ts +6 -9
- package/dist/src/components/avatar/stories/constants.d.ts +1 -10
- package/dist/src/components/avatar/stories/default.stories.d.ts +7 -0
- package/dist/src/components/avatar/types.d.ts +3 -7
- package/dist/src/components/badge/index.vue.d.ts +1 -1
- package/dist/src/components/side-menu/menu-item/index.vue.d.ts +1 -1
- package/dist/src/utils/slots.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/user-avatar-564edacc.js +1 -0
- package/dist/user-avatar-7739d996.mjs +16 -0
- package/dist/utils/slots.d.ts +2 -0
- package/package.json +1 -1
- package/dist/index-4f376d15.js +0 -47
- package/dist/src/components/avatar/group.vue.d.ts +0 -37
- package/dist/src/components/avatar/labelGroup.vue.d.ts +0 -31
- package/dist/src/components/avatar/profileAvatar.vue.d.ts +0 -28
- package/dist/src/components/avatar/stories/group.stories.d.ts +0 -11
- package/dist/src/components/avatar/stories/labelGroup.stories.d.ts +0 -8
- package/dist/src/components/avatar/stories/profilePhoto.stories.d.ts +0 -8
- package/dist/src/components/avatar/stories/visuals.stories.d.ts +0 -14
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { MaAvatarGroupSize } from '@/components/avatar/types';
|
|
2
|
-
export interface MaAvatarGroupProps {
|
|
3
|
-
users: string[];
|
|
4
|
-
size?: MaAvatarGroupSize;
|
|
5
|
-
maxAvatars?: number;
|
|
6
|
-
addUser?: boolean;
|
|
7
|
-
}
|
|
8
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAvatarGroupProps>, {
|
|
9
|
-
size: string;
|
|
10
|
-
maxAvatars: number;
|
|
11
|
-
addUser: boolean;
|
|
12
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "buttonClick"[], "buttonClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAvatarGroupProps>, {
|
|
13
|
-
size: string;
|
|
14
|
-
maxAvatars: number;
|
|
15
|
-
addUser: boolean;
|
|
16
|
-
}>>> & {
|
|
17
|
-
onButtonClick?: (...args: any[]) => any;
|
|
18
|
-
}, {
|
|
19
|
-
size: string;
|
|
20
|
-
maxAvatars: number;
|
|
21
|
-
addUser: boolean;
|
|
22
|
-
}>;
|
|
23
|
-
export default _default;
|
|
24
|
-
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
25
|
-
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
26
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
27
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
28
|
-
} : {
|
|
29
|
-
type: import('vue').PropType<T[K]>;
|
|
30
|
-
required: true;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
declare type __VLS_WithDefaults<P, D> = {
|
|
34
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
35
|
-
default: D[K];
|
|
36
|
-
} : P[K];
|
|
37
|
-
};
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { MaAvatarLabelGroupPropSize } from '@/components/avatar/types';
|
|
2
|
-
export interface MaAvatarLabelGroupProps {
|
|
3
|
-
titleText?: string;
|
|
4
|
-
supportingText?: string;
|
|
5
|
-
onlineIndicator?: boolean;
|
|
6
|
-
companyLogoSrc?: string;
|
|
7
|
-
src?: string;
|
|
8
|
-
size?: MaAvatarLabelGroupPropSize;
|
|
9
|
-
}
|
|
10
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAvatarLabelGroupProps>, {
|
|
11
|
-
size: string;
|
|
12
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAvatarLabelGroupProps>, {
|
|
13
|
-
size: string;
|
|
14
|
-
}>>>, {
|
|
15
|
-
size: string;
|
|
16
|
-
}>;
|
|
17
|
-
export default _default;
|
|
18
|
-
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
19
|
-
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
20
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
21
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
22
|
-
} : {
|
|
23
|
-
type: import('vue').PropType<T[K]>;
|
|
24
|
-
required: true;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
declare type __VLS_WithDefaults<P, D> = {
|
|
28
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
29
|
-
default: D[K];
|
|
30
|
-
} : P[K];
|
|
31
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { MaAvatarProfilePhotoPropSize } from '@/components/avatar/types';
|
|
2
|
-
export interface MaAvatarProfilePhotoProps {
|
|
3
|
-
src?: string;
|
|
4
|
-
size?: MaAvatarProfilePhotoPropSize;
|
|
5
|
-
text?: string;
|
|
6
|
-
}
|
|
7
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAvatarProfilePhotoProps>, {
|
|
8
|
-
size: string;
|
|
9
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaAvatarProfilePhotoProps>, {
|
|
10
|
-
size: string;
|
|
11
|
-
}>>>, {
|
|
12
|
-
size: string;
|
|
13
|
-
}>;
|
|
14
|
-
export default _default;
|
|
15
|
-
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
-
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
-
} : {
|
|
20
|
-
type: import('vue').PropType<T[K]>;
|
|
21
|
-
required: true;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
declare type __VLS_WithDefaults<P, D> = {
|
|
25
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
26
|
-
default: D[K];
|
|
27
|
-
} : P[K];
|
|
28
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
-
import MaAvatarGroup from '../group.vue';
|
|
3
|
-
declare const meta: Meta<typeof MaAvatarGroup>;
|
|
4
|
-
export default meta;
|
|
5
|
-
declare type Story = StoryObj<typeof MaAvatarGroup>;
|
|
6
|
-
export declare const GroupWithUsers: Story;
|
|
7
|
-
export declare const LargeGroupWithAddButton: Story;
|
|
8
|
-
export declare const SmallGroupWithAddButton: Story;
|
|
9
|
-
export declare const Group: Story;
|
|
10
|
-
export declare const GroupWithCustomMaxAvatar: Story;
|
|
11
|
-
export declare const GroupWithCustomMaxAvatarAndButton: Story;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
-
import MaAvatarLabelGroup from '@/components/avatar/labelGroup.vue';
|
|
3
|
-
declare const meta: Meta<typeof MaAvatarLabelGroup>;
|
|
4
|
-
export default meta;
|
|
5
|
-
declare type Story = StoryObj<typeof MaAvatarLabelGroup>;
|
|
6
|
-
export declare const LabelGroup: Story;
|
|
7
|
-
export declare const LabelGroupWithProfilePicture: Story;
|
|
8
|
-
export declare const LabelGroupWithCompanyStatus: Story;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
-
import MaAvatarProfilePhoto from '@/components/avatar/profileAvatar.vue';
|
|
3
|
-
declare const meta: Meta<typeof MaAvatarProfilePhoto>;
|
|
4
|
-
export default meta;
|
|
5
|
-
declare type Story = StoryObj<typeof MaAvatarProfilePhoto>;
|
|
6
|
-
export declare const ProfilePhoto: Story;
|
|
7
|
-
export declare const ProfilePhotoWithPhoto: Story;
|
|
8
|
-
export declare const ProfilePhotoWithText: Story;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
-
import MaAvatar from '../index.vue';
|
|
3
|
-
declare const meta: Meta<typeof MaAvatar>;
|
|
4
|
-
export default meta;
|
|
5
|
-
declare type Story = StoryObj<typeof MaAvatar>;
|
|
6
|
-
export declare const Default: Story;
|
|
7
|
-
export declare const ProfilePicture: Story;
|
|
8
|
-
export declare const Text: Story;
|
|
9
|
-
export declare const OnlineIndicator: Story;
|
|
10
|
-
export declare const OnlineIndicatorWithProfilePicture: Story;
|
|
11
|
-
export declare const CompanyLogo: Story;
|
|
12
|
-
export declare const CompanyLogoWithProfilePicture: Story;
|
|
13
|
-
export declare const CompanyLogoWithText: Story;
|
|
14
|
-
export declare const OnlineIndicatorWithText: Story;
|