@momentum-ui/web-components 2.13.5 → 2.13.7-dev
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/chunks/md-10.js +1 -1
- package/dist/chunks/md-15.js +3 -2
- package/dist/chunks/md-19.js +1 -1
- package/dist/chunks/md-23.js +15 -13
- package/dist/chunks/md-37.js +4 -4
- package/dist/chunks/md-38.js +4 -2
- package/dist/chunks/md-74.js +1 -0
- package/dist/chunks/md-82.js +1 -1
- package/dist/types/components/avatar/Avatar.constants.d.ts +1 -1
- package/dist/types/components/avatar/Avatar.d.ts +3 -3
- package/dist/types/components/datepicker/DatePicker.d.ts +1 -0
- package/dist/types/components/input/Input.d.ts +2 -0
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "@/components/icon/Icon";
|
|
2
|
-
declare const AvatarType: readonly ["active", "away", "busy", "bot", "call", "dnd", "group", "inactive", "meeting", "ooo", "on-mobile", "on-device", "on-hold", "presenting", "self", "schedule", "typing", "engaged", "idle", "rona", "quiet-hours", ""];
|
|
2
|
+
declare const AvatarType: readonly ["active", "away", "away-calling", "busy", "bot", "call", "dnd", "group", "inactive", "meeting", "ooo", "on-mobile", "on-device", "on-hold", "presenting", "self", "schedule", "typing", "engaged", "idle", "rona", "quiet-hours", ""];
|
|
3
3
|
declare const AvatarSize: number[];
|
|
4
4
|
declare const AVATAR_PRESENCE_ICON_SIZE_MAPPING: Record<number, number>;
|
|
5
5
|
export { AvatarType, AvatarSize, AVATAR_PRESENCE_ICON_SIZE_MAPPING };
|
|
@@ -28,9 +28,9 @@ export declare namespace Avatar {
|
|
|
28
28
|
hasNotification: boolean;
|
|
29
29
|
private imageLoaded;
|
|
30
30
|
private imageErrored;
|
|
31
|
-
presenceColor
|
|
32
|
-
presenceIcon
|
|
33
|
-
isCircularWrapper
|
|
31
|
+
private presenceColor;
|
|
32
|
+
private presenceIcon;
|
|
33
|
+
private isCircularWrapper;
|
|
34
34
|
static get styles(): import("lit-element").CSSResult[];
|
|
35
35
|
firstUpdated(): void;
|
|
36
36
|
updated(changedProperties: PropertyValues): void;
|
|
@@ -75,6 +75,7 @@ export declare namespace Input {
|
|
|
75
75
|
type: Input.Type;
|
|
76
76
|
value: string;
|
|
77
77
|
ariaControls: string;
|
|
78
|
+
ariaExpanded: string;
|
|
78
79
|
input: HTMLInputElement;
|
|
79
80
|
private isEditing;
|
|
80
81
|
private readonly messageController;
|
|
@@ -115,6 +116,7 @@ export declare namespace Input {
|
|
|
115
116
|
"md-disabled": boolean;
|
|
116
117
|
"md-dirty": boolean;
|
|
117
118
|
};
|
|
119
|
+
get ariaExpandedValue(): "true" | "false" | "undefined";
|
|
118
120
|
inputTemplate(): import("lit-element").TemplateResult;
|
|
119
121
|
inputLeftTemplate(): {};
|
|
120
122
|
inputRightTemplate(): import("lit-element").TemplateResult | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@momentum-ui/web-components",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.7-dev",
|
|
4
4
|
"author": "Yana Harris",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "https://github.com/momentum-design/momentum-ui.git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"papaparse": "^5.3.0",
|
|
26
26
|
"sortablejs": "^1.13.0",
|
|
27
27
|
"lit-virtualizer": "0.4.2",
|
|
28
|
-
"@momentum-design/tokens": "0.0.
|
|
28
|
+
"@momentum-design/tokens": "0.0.66",
|
|
29
29
|
"@momentum-design/icons": "0.0.145"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|