@momentum-ui/web-components 2.25.2 → 2.25.4
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/1323.js +2 -2
- package/dist/2555.js +1 -1
- package/dist/6273.js +3 -3
- package/dist/6396.js +1 -1
- package/dist/6408.js +2 -2
- package/dist/comp/md-alert-banner-entry.js +3 -3
- package/dist/comp/md-alert-entry.js +2 -2
- package/dist/comp/md-audio-player-entry.js +8 -8
- package/dist/comp/md-chat-message-entry.js +5 -2
- package/dist/comp/md-coachmark-popover-entry.js +2 -2
- package/dist/comp/md-country-code-picker-entry.js +1 -1
- package/dist/comp/md-datepicker-entry.js +3 -3
- package/dist/comp/md-dropdown-entry.js +3 -3
- package/dist/comp/md-floating-minimize-entry.js +2 -2
- package/dist/comp/md-floating-modal-entry.js +2 -2
- package/dist/comp/md-grabber-entry.js +6 -6
- package/dist/comp/md-input-entry.js +2 -2
- package/dist/comp/md-label-entry.js +1 -1
- package/dist/comp/md-menu-overlay-entry.js +2 -2
- package/dist/comp/md-modal-entry.js +7 -7
- package/dist/comp/md-phone-input-entry.js +5 -5
- package/dist/comp/md-popover-entry.js +1 -1
- package/dist/comp/md-radio-entry.js +1 -1
- package/dist/comp/md-tabs-entry.js +3 -3
- package/dist/comp/md-task-item-entry.js +9 -7
- package/dist/comp/md-timepicker-entry.js +4 -4
- package/dist/index-entry.js +72 -67
- package/dist/types/components/datepicker/DatePicker.d.ts +1 -1
- package/dist/types/components/form/index.d.ts +6 -6
- package/dist/types/components/taskitem/TaskItem.d.ts +1 -1
- package/package.json +1 -1
|
@@ -11,8 +11,8 @@ import "@/components/menu-overlay/MenuOverlay";
|
|
|
11
11
|
import { LitElement, PropertyValues, TemplateResult } from "lit-element";
|
|
12
12
|
import { DateTime } from "luxon";
|
|
13
13
|
import { MenuOverlay } from "../menu-overlay/MenuOverlay";
|
|
14
|
-
import { StrategyType } from "../popover/Popover.types";
|
|
15
14
|
import { Popover } from "../popover/Popover";
|
|
15
|
+
import { StrategyType } from "../popover/Popover.types";
|
|
16
16
|
export interface DatePickerControlButton {
|
|
17
17
|
value: string;
|
|
18
18
|
ariaLabel?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { FormControl } from
|
|
2
|
-
export { FormGroup } from
|
|
3
|
-
export { FormArray } from
|
|
4
|
-
export { Validators } from
|
|
5
|
-
export { AbstractControl } from
|
|
6
|
-
export { ValidationError } from
|
|
1
|
+
export { FormControl } from "./FormControl";
|
|
2
|
+
export { FormGroup } from "./FormGroup";
|
|
3
|
+
export { FormArray } from "./FormArray";
|
|
4
|
+
export { Validators } from "./validators";
|
|
5
|
+
export { AbstractControl } from "./Form.types";
|
|
6
|
+
export { ValidationError } from "./Form.types";
|
|
@@ -9,7 +9,7 @@ import "@/components/avatar/Avatar";
|
|
|
9
9
|
import "@/components/badge/Badge";
|
|
10
10
|
import "@/components/icon/Icon";
|
|
11
11
|
import { LitElement } from "lit-element";
|
|
12
|
-
import {
|
|
12
|
+
import { TaskItemMediaType, TaskItemStatus } from "./TaskItem.constants";
|
|
13
13
|
export declare namespace TaskItem {
|
|
14
14
|
type TaskItemStatus = (typeof TaskItemStatus)[keyof typeof TaskItemStatus];
|
|
15
15
|
type TaskItemMediaType = (typeof TaskItemMediaType)[keyof typeof TaskItemMediaType];
|