@momentum-ui/web-components 2.22.4 → 2.22.5
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/8028.js +11 -11
- package/dist/comp/md-avatar-entry.js +1 -1
- package/dist/comp/md-task-item-entry.js +12 -6
- package/dist/comp/md-task-item.js +1 -1
- package/dist/index-entry.js +150 -144
- package/dist/index.js +1 -1
- package/dist/types/components/avatar/Avatar.constants.d.ts +3 -2
- package/dist/types/components/avatar/Avatar.d.ts +3 -2
- package/dist/types/components/taskitem/TaskItem.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
require("./4367"),require("./7103"),require("./1890"),require("./6272"),require("./6325"),require("./6283"),require("./9217"),require("./5830"),require("./8889"),require("./8210"),require("./3135"),require("./1598"),require("./4977"),require("./1572"),require("./6366"),require("./7251"),require("./4974"),require("./2243"),require("./3553"),require("./
|
|
1
|
+
require("./4367"),require("./7103"),require("./1890"),require("./6272"),require("./6325"),require("./6283"),require("./9217"),require("./5830"),require("./8889"),require("./8210"),require("./3135"),require("./1598"),require("./4977"),require("./1572"),require("./6366"),require("./7251"),require("./4974"),require("./2243"),require("./3553"),require("./6700"),require("./528"),require("./4548"),require("./6795"),require("./76"),require("./1392"),require("./9164"),require("./2019"),require("./1625"),require("./3625"),require("./6067"),require("./8841"),require("./4663"),require("./3112"),require("./3866"),require("./1107"),require("./7330"),require("./7092"),require("./9719"),require("./6979"),require("./9130"),require("./6273"),require("./9618"),require("./8521"),require("./4400"),require("./779"),require("./573"),require("./5801"),require("./2043"),require("./8171"),require("./2798"),require("./182"),require("./2984"),require("./7919"),require("./1869"),require("./2215"),require("./5467"),require("./4392"),require("./630"),require("./3604"),require("./7833"),require("./8728"),require("./8227"),require("./1250"),require("./1705"),require("./7997"),require("./7875"),require("./6400"),require("./587"),require("./6441"),require("./6015"),require("./3663"),module.exports=require("./index-entry");
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import "@/components/icon/Icon";
|
|
2
2
|
declare const AvatarState: readonly ["active", "rest"];
|
|
3
3
|
declare const AvatarStyle: readonly ["default", "table"];
|
|
4
|
-
declare const
|
|
4
|
+
declare const AvatarChannelType: readonly ["channel-chat", "channel-sms-inbound", "channel-sms-outbound", "channel-email-inbound", "channel-email-outbound", "channel-call", "channel-social", "channel-callback", "channel-headset", "channel-campaign", "channel-emoji", "channel-webex", "channel-fb-messenger", "channel-apple-chat", "channel-line", "channel-twitter-x", "channel-viber", "channel-whats-app", "channel-we-chat", "channel-spam", "channel-custom"];
|
|
5
|
+
declare const AvatarType: readonly ["bot", "group", "self", "typing", ""];
|
|
5
6
|
declare const AvatarSize: number[];
|
|
6
|
-
export { AvatarSize, AvatarState, AvatarStyle, AvatarType };
|
|
7
|
+
export { AvatarChannelType, AvatarSize, AvatarState, AvatarStyle, AvatarType };
|
|
@@ -9,11 +9,12 @@ import "@/components/avatar/Presence";
|
|
|
9
9
|
import "@/components/icon/Icon";
|
|
10
10
|
import "@/components/loading/Loading";
|
|
11
11
|
import { LitElement, PropertyValues } from "lit-element";
|
|
12
|
-
import { AvatarSize, AvatarState, AvatarStyle, AvatarType } from "./Avatar.constants";
|
|
12
|
+
import { AvatarChannelType, AvatarSize, AvatarState, AvatarStyle, AvatarType } from "./Avatar.constants";
|
|
13
13
|
import { PresenceType } from "./Presence.utils";
|
|
14
14
|
export declare namespace Avatar {
|
|
15
15
|
type PresenceState = (typeof PresenceType)[number];
|
|
16
|
-
type
|
|
16
|
+
type ChannelType = (typeof AvatarChannelType)[number];
|
|
17
|
+
type Type = (typeof AvatarType)[number] | PresenceState | ChannelType;
|
|
17
18
|
type Size = (typeof AvatarSize)[number];
|
|
18
19
|
type State = (typeof AvatarState)[number];
|
|
19
20
|
type Style = (typeof AvatarStyle)[number];
|