@m3e/fab-menu 1.0.0-rc.2 → 1.0.0-rc.3
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/custom-elements.json +11 -19
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +13 -11
- package/dist/index.min.js.map +1 -1
- package/dist/src/FabMenuElement.d.ts +107 -0
- package/dist/src/FabMenuElement.d.ts.map +1 -0
- package/dist/src/FabMenuItemElement.d.ts +74 -0
- package/dist/src/FabMenuItemElement.d.ts.map +1 -0
- package/dist/src/FabMenuTriggerElement.d.ts +50 -0
- package/dist/src/FabMenuTriggerElement.d.ts.map +1 -0
- package/dist/src/FabMenuVariant.d.ts +3 -0
- package/dist/src/FabMenuVariant.d.ts.map +1 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/src/index.d.ts.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { CSSResultGroup, LitElement, PropertyValues } from "lit";
|
|
2
|
+
import { FabMenuVariant } from "./FabMenuVariant";
|
|
3
|
+
declare const M3eFabMenuElement_base: import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor & typeof LitElement;
|
|
4
|
+
/**
|
|
5
|
+
* A menu, opened from a floating action button (FAB), used to display multiple related actions.
|
|
6
|
+
*
|
|
7
|
+
* @description
|
|
8
|
+
* The `m3e-fab-menu` component presents a dynamic menu of related actions, elegantly revealed from a
|
|
9
|
+
* floating action button (FAB). Designed using expressive, adaptive surfaces, it enables seamless access
|
|
10
|
+
* to contextual actions in modern, visually rich interfaces.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* The following example illustrates triggering a `m3e-fab-menu` from an `m3e-fab` using a `m3e-fab-menu-trigger`.
|
|
14
|
+
* ```html
|
|
15
|
+
* <m3e-fab variant="primary" size="large">
|
|
16
|
+
* <m3e-fab-menu-trigger for="fabmenu">
|
|
17
|
+
* <m3e-icon name="edit"></m3e-icon>
|
|
18
|
+
* </m3e-fab-menu-trigger>
|
|
19
|
+
* </m3e-fab>
|
|
20
|
+
* <m3e-fab-menu id="fabmenu" variant="secondary">
|
|
21
|
+
* <m3e-fab-menu-item>First</m3e-fab-menu-item>
|
|
22
|
+
* <m3e-fab-menu-item>Second</m3e-fab-menu-item>
|
|
23
|
+
* <m3e-fab-menu-item>Third</m3e-fab-menu-item>
|
|
24
|
+
* <m3e-fab-menu-item>Forth</m3e-fab-menu-item>
|
|
25
|
+
* <m3e-fab-menu-item>Fifth</m3e-fab-menu-item>
|
|
26
|
+
* <m3e-fab-menu-item>Sixth</m3e-fab-menu-item>
|
|
27
|
+
* </m3e-fab-menu>
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* @tag m3e-fab-menu
|
|
31
|
+
*
|
|
32
|
+
* @slot - Renders the contents of the menu.
|
|
33
|
+
*
|
|
34
|
+
* @attr variant - The appearance variant of the menu.
|
|
35
|
+
*
|
|
36
|
+
* @cssprop --m3e-fab-menu-spacing - Vertical gap between menu items.
|
|
37
|
+
* @cssprop --m3e-fab-menu-max-width - Maximum width of the menu.
|
|
38
|
+
* @cssprop --m3e-primary-fab-color - Foreground color for primary variant items.
|
|
39
|
+
* @cssprop --m3e-primary-fab-container-color - Container color for primary variant items.
|
|
40
|
+
* @cssprop --m3e-primary-fab-hover-color - Hover background color for primary variant items.
|
|
41
|
+
* @cssprop --m3e-primary-fab-focus-color - Focus background color for primary variant items.
|
|
42
|
+
* @cssprop --m3e-primary-fab-ripple-color - Ripple color for primary variant items.
|
|
43
|
+
* @cssprop --m3e-secondary-fab-color - Foreground color for secondary variant items.
|
|
44
|
+
* @cssprop --m3e-secondary-fab-container-color - Container color for secondary variant items.
|
|
45
|
+
* @cssprop --m3e-secondary-fab-hover-color - Hover background color for secondary variant items.
|
|
46
|
+
* @cssprop --m3e-secondary-fab-focus-color - Focus background color for secondary variant items.
|
|
47
|
+
* @cssprop --m3e-secondary-fab-ripple-color - Ripple color for secondary variant items.
|
|
48
|
+
* @cssprop --m3e-tertiary-fab-color - Foreground color for tertiary variant items.
|
|
49
|
+
* @cssprop --m3e-tertiary-fab-container-color - Container color for tertiary variant items.
|
|
50
|
+
* @cssprop --m3e-tertiary-fab-hover-color - Hover background color for tertiary variant items.
|
|
51
|
+
* @cssprop --m3e-tertiary-fab-focus-color - Focus background color for tertiary variant items.
|
|
52
|
+
* @cssprop --m3e-tertiary-fab-ripple-color - Ripple color for tertiary variant items.
|
|
53
|
+
*/
|
|
54
|
+
export declare class M3eFabMenuElement extends M3eFabMenuElement_base {
|
|
55
|
+
#private;
|
|
56
|
+
/** The styles of the element. */
|
|
57
|
+
static styles: CSSResultGroup;
|
|
58
|
+
/**
|
|
59
|
+
* The appearance variant of the menu.
|
|
60
|
+
* @default "primary"
|
|
61
|
+
*/
|
|
62
|
+
variant: FabMenuVariant;
|
|
63
|
+
/** Whether the menu is open. */
|
|
64
|
+
get isOpen(): boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Opens the menu.
|
|
67
|
+
* @param {HTMLElement} trigger The element that triggered the menu.
|
|
68
|
+
* @returns {Promise<void>} A `Promise` that resolves when the menu is opened.
|
|
69
|
+
*/
|
|
70
|
+
show(trigger: HTMLElement): Promise<void>;
|
|
71
|
+
/**
|
|
72
|
+
* Hides the menu.
|
|
73
|
+
* @param {boolean} [restoreFocus=false] A value indicating whether to restore focus to the menu's trigger.
|
|
74
|
+
*/
|
|
75
|
+
hide(restoreFocus?: boolean): void;
|
|
76
|
+
/**
|
|
77
|
+
* Toggles the menu.
|
|
78
|
+
* @param {HTMLElement} trigger The element that triggered the menu.
|
|
79
|
+
* @returns {Promise<void>} A `Promise` that resolves when the menu is opened or closed.
|
|
80
|
+
*/
|
|
81
|
+
toggle(trigger: HTMLElement): Promise<void>;
|
|
82
|
+
/** @inheritdoc */
|
|
83
|
+
connectedCallback(): void;
|
|
84
|
+
/** @inheritdoc */
|
|
85
|
+
disconnectedCallback(): void;
|
|
86
|
+
/** @inheritdoc */
|
|
87
|
+
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
88
|
+
/** @inheritdoc */
|
|
89
|
+
protected render(): unknown;
|
|
90
|
+
}
|
|
91
|
+
interface M3eFabMenuElementEventMap extends HTMLElementEventMap {
|
|
92
|
+
beforetoggle: ToggleEvent;
|
|
93
|
+
toggle: ToggleEvent;
|
|
94
|
+
}
|
|
95
|
+
export interface M3eFabMenuElement {
|
|
96
|
+
addEventListener<K extends keyof M3eFabMenuElementEventMap>(type: K, listener: (this: M3eFabMenuElement, ev: M3eFabMenuElementEventMap[K]) => void, options?: boolean | AddEventListenerOptions): void;
|
|
97
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
98
|
+
removeEventListener<K extends keyof M3eFabMenuElementEventMap>(type: K, listener: (this: M3eFabMenuElement, ev: M3eFabMenuElementEventMap[K]) => void, options?: boolean | EventListenerOptions): void;
|
|
99
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
100
|
+
}
|
|
101
|
+
declare global {
|
|
102
|
+
interface HTMLElementTagNameMap {
|
|
103
|
+
"m3e-fab-menu": M3eFabMenuElement;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
export {};
|
|
107
|
+
//# sourceMappingURL=FabMenuElement.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FabMenuElement.d.ts","sourceRoot":"","sources":["../../src/FabMenuElement.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,cAAc,EAAQ,UAAU,EAAE,cAAc,EAAa,MAAM,KAAK,CAAC;AAUvF,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;;AAGlD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,qBACa,iBAAkB,SAAQ,sBAAwB;;IAC7D,iCAAiC;IACjC,OAAgB,MAAM,EAAE,cAAc,CA8FpC;IA8BF;;;OAGG;IAC0B,OAAO,EAAE,cAAc,CAAa;IAEjE,gCAAgC;IAChC,IAAI,MAAM,YAET;IAED;;;;OAIG;IACG,IAAI,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAiC/C;;;OAGG;IACH,IAAI,CAAC,YAAY,GAAE,OAAe,GAAG,IAAI;IAezC;;;;OAIG;IACG,MAAM,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAQjD,kBAAkB;IACT,iBAAiB,IAAI,IAAI;IAYlC,kBAAkB;IACT,oBAAoB,IAAI,IAAI;IAQrC,kBAAkB;cACC,YAAY,CAAC,kBAAkB,EAAE,cAAc,GAAG,IAAI;IAKzE,kBAAkB;cACC,MAAM,IAAI,OAAO;CA2DrC;AAED,UAAU,yBAA0B,SAAQ,mBAAmB;IAC7D,YAAY,EAAE,WAAW,CAAC;IAC1B,MAAM,EAAE,WAAW,CAAC;CACrB;AAED,MAAM,WAAW,iBAAiB;IAChC,gBAAgB,CAAC,CAAC,SAAS,MAAM,yBAAyB,EACxD,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,CAAC,IAAI,EAAE,iBAAiB,EAAE,EAAE,EAAE,yBAAyB,CAAC,CAAC,CAAC,KAAK,IAAI,EAC7E,OAAO,CAAC,EAAE,OAAO,GAAG,uBAAuB,GAC1C,IAAI,CAAC;IAER,gBAAgB,CACd,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,kCAAkC,EAC5C,OAAO,CAAC,EAAE,OAAO,GAAG,uBAAuB,GAC1C,IAAI,CAAC;IAER,mBAAmB,CAAC,CAAC,SAAS,MAAM,yBAAyB,EAC3D,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,CAAC,IAAI,EAAE,iBAAiB,EAAE,EAAE,EAAE,yBAAyB,CAAC,CAAC,CAAC,KAAK,IAAI,EAC7E,OAAO,CAAC,EAAE,OAAO,GAAG,oBAAoB,GACvC,IAAI,CAAC;IAER,mBAAmB,CACjB,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,kCAAkC,EAC5C,OAAO,CAAC,EAAE,OAAO,GAAG,oBAAoB,GACvC,IAAI,CAAC;CACT;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,cAAc,EAAE,iBAAiB,CAAC;KACnC;CACF"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { CSSResultGroup, LitElement, PropertyValues } from "lit";
|
|
2
|
+
import type { M3eFabMenuElement } from "./FabMenuElement";
|
|
3
|
+
declare const M3eFabMenuItemElement_base: import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor<import("@m3e/core").LinkButtonMixin> & import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor<import("@m3e/core").DisabledMixin> & import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor<import("@m3e/core").AttachInternalsMixin> & import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor & typeof LitElement;
|
|
4
|
+
/**
|
|
5
|
+
* An item of a floating action button (FAB) menu.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* The following example illustrates triggering a `m3e-fab-menu` from an `m3e-fab` using a `m3e-fab-menu-trigger`.
|
|
9
|
+
* ```html
|
|
10
|
+
* <m3e-fab variant="primary" size="large">
|
|
11
|
+
* <m3e-fab-menu-trigger for="fabmenu">
|
|
12
|
+
* <m3e-icon name="edit"></m3e-icon>
|
|
13
|
+
* </m3e-fab-menu-trigger>
|
|
14
|
+
* </m3e-fab>
|
|
15
|
+
* <m3e-fab-menu id="fabmenu" variant="secondary">
|
|
16
|
+
* <m3e-fab-menu-item>First</m3e-fab-menu-item>
|
|
17
|
+
* <m3e-fab-menu-item>Second</m3e-fab-menu-item>
|
|
18
|
+
* <m3e-fab-menu-item>Third</m3e-fab-menu-item>
|
|
19
|
+
* <m3e-fab-menu-item>Forth</m3e-fab-menu-item>
|
|
20
|
+
* <m3e-fab-menu-item>Fifth</m3e-fab-menu-item>
|
|
21
|
+
* <m3e-fab-menu-item>Sixth</m3e-fab-menu-item>
|
|
22
|
+
* </m3e-fab-menu>
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @tag m3e-menu-item
|
|
26
|
+
*
|
|
27
|
+
* @slot - Renders the label of the item.
|
|
28
|
+
* @slot icon - Renders an icon before the items's label.
|
|
29
|
+
*
|
|
30
|
+
* @attr disabled - Whether the element is disabled.
|
|
31
|
+
* @attr download - A value indicating whether the `target` of the link button will be downloaded, optionally specifying the new name of the file.
|
|
32
|
+
* @attr href - The URL to which the link button points.
|
|
33
|
+
* @attr rel - The relationship between the `target` of the link button and the document.
|
|
34
|
+
* @attr target - The target of the link button.
|
|
35
|
+
*
|
|
36
|
+
* @fires click - Emitted when the element is clicked.
|
|
37
|
+
*
|
|
38
|
+
* @cssprop --m3e-fab-menu-item-height - Height of the menu item.
|
|
39
|
+
* @cssprop --m3e-fab-menu-item-font-size - Font size of the menu item label.
|
|
40
|
+
* @cssprop --m3e-fab-menu-item-font-weight - Font weight of the menu item label.
|
|
41
|
+
* @cssprop --m3e-fab-menu-item-line-height - Line height of the menu item label.
|
|
42
|
+
* @cssprop --m3e-fab-menu-item-tracking - Letter spacing of the menu item label.
|
|
43
|
+
* @cssprop --m3e-fab-menu-item-shape - Border radius of the menu item.
|
|
44
|
+
* @cssprop --m3e-fab-menu-item-leading-space - Padding at the start of the menu item.
|
|
45
|
+
* @cssprop --m3e-fab-menu-item-trailing-space - Padding at the end of the menu item.
|
|
46
|
+
* @cssprop --m3e-fab-menu-item-spacing - Gap between icon and label.
|
|
47
|
+
* @cssprop --m3e-fab-menu-item-icon-size - Size of the icon in the menu item.
|
|
48
|
+
*/
|
|
49
|
+
export declare class M3eFabMenuItemElement extends M3eFabMenuItemElement_base {
|
|
50
|
+
#private;
|
|
51
|
+
/** The styles of the element. */
|
|
52
|
+
static styles: CSSResultGroup;
|
|
53
|
+
/** @private */ private readonly _elevation?;
|
|
54
|
+
/** @private */ private readonly _focusRing?;
|
|
55
|
+
/** @private */ private readonly _stateLayer?;
|
|
56
|
+
/** @private */ private readonly _ripple?;
|
|
57
|
+
/** The floating action button (FAB) menu to which this item belongs. */
|
|
58
|
+
get menu(): M3eFabMenuElement | null;
|
|
59
|
+
/** @inheritdoc */
|
|
60
|
+
connectedCallback(): void;
|
|
61
|
+
/** @inheritdoc */
|
|
62
|
+
disconnectedCallback(): void;
|
|
63
|
+
/** @inheritdoc */
|
|
64
|
+
protected firstUpdated(_changedProperties: PropertyValues<this>): void;
|
|
65
|
+
/** @inheritdoc */
|
|
66
|
+
render(): unknown;
|
|
67
|
+
}
|
|
68
|
+
declare global {
|
|
69
|
+
interface HTMLElementTagNameMap {
|
|
70
|
+
"m3e-fab-menu-item": M3eFabMenuItemElement;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
export {};
|
|
74
|
+
//# sourceMappingURL=FabMenuItemElement.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FabMenuItemElement.d.ts","sourceRoot":"","sources":["../../src/FabMenuItemElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,cAAc,EAAQ,UAAU,EAAE,cAAc,EAAa,MAAM,KAAK,CAAC;AAiBvF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;;AAE1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,qBACa,qBAAsB,SAAQ,0BAE1C;;IACC,iCAAiC;IACjC,OAAgB,MAAM,EAAE,cAAc,CA6HpC;IAEF,eAAe,CAAsB,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAsB;IACvF,eAAe,CAAuB,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAsB;IACxF,eAAe,CAAwB,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,CAAuB;IAC3F,eAAe,CAAmB,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAmB;IAI9E,wEAAwE;IACxE,IAAI,IAAI,IAAI,iBAAiB,GAAG,IAAI,CAEnC;IAED,kBAAkB;IACT,iBAAiB,IAAI,IAAI;IAKlC,kBAAkB;IACT,oBAAoB,IAAI,IAAI;IAKrC,kBAAkB;cACC,YAAY,CAAC,kBAAkB,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;IAK/E,kBAAkB;IACT,MAAM,IAAI,OAAO;CAqB3B;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,mBAAmB,EAAE,qBAAqB,CAAC;KAC5C;CACF"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { CSSResultGroup, LitElement } from "lit";
|
|
2
|
+
import { M3eFabMenuElement } from "./FabMenuElement";
|
|
3
|
+
declare const M3eFabMenuTriggerElement_base: import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor<import("@m3e/core").HtmlForMixin> & typeof LitElement;
|
|
4
|
+
/**
|
|
5
|
+
* An element, nested within a clickable element, used to open a floating action button (FAB) menu.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* The following example illustrates triggering a `m3e-fab-menu` from an `m3e-fab` using a `m3e-fab-menu-trigger`.
|
|
9
|
+
* ```html
|
|
10
|
+
* <m3e-fab variant="primary" size="large">
|
|
11
|
+
* <m3e-fab-menu-trigger for="fabmenu">
|
|
12
|
+
* <m3e-icon name="edit"></m3e-icon>
|
|
13
|
+
* </m3e-fab-menu-trigger>
|
|
14
|
+
* </m3e-fab>
|
|
15
|
+
* <m3e-fab-menu id="fabmenu" variant="secondary">
|
|
16
|
+
* <m3e-fab-menu-item>First</m3e-fab-menu-item>
|
|
17
|
+
* <m3e-fab-menu-item>Second</m3e-fab-menu-item>
|
|
18
|
+
* <m3e-fab-menu-item>Third</m3e-fab-menu-item>
|
|
19
|
+
* <m3e-fab-menu-item>Forth</m3e-fab-menu-item>
|
|
20
|
+
* <m3e-fab-menu-item>Fifth</m3e-fab-menu-item>
|
|
21
|
+
* <m3e-fab-menu-item>Sixth</m3e-fab-menu-item>
|
|
22
|
+
* </m3e-fab-menu>
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @tag m3e-fab-menu-trigger
|
|
26
|
+
*/
|
|
27
|
+
export declare class M3eFabMenuTriggerElement extends M3eFabMenuTriggerElement_base {
|
|
28
|
+
#private;
|
|
29
|
+
/** The styles of the element. */
|
|
30
|
+
static styles: CSSResultGroup;
|
|
31
|
+
/** The menu triggered by the element. */
|
|
32
|
+
get menu(): M3eFabMenuElement | null;
|
|
33
|
+
/** @inheritdoc */
|
|
34
|
+
connectedCallback(): void;
|
|
35
|
+
/** @inheritdoc */
|
|
36
|
+
disconnectedCallback(): void;
|
|
37
|
+
/** @inheritdoc */
|
|
38
|
+
attach(control: HTMLElement): void;
|
|
39
|
+
/** @inheritdoc */
|
|
40
|
+
detach(): void;
|
|
41
|
+
/** @inheritdoc */
|
|
42
|
+
protected render(): unknown;
|
|
43
|
+
}
|
|
44
|
+
declare global {
|
|
45
|
+
interface HTMLElementTagNameMap {
|
|
46
|
+
"m3e-fab-menu-trigger": M3eFabMenuTriggerElement;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
export {};
|
|
50
|
+
//# sourceMappingURL=FabMenuTriggerElement.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FabMenuTriggerElement.d.ts","sourceRoot":"","sources":["../../src/FabMenuTriggerElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,cAAc,EAAQ,UAAU,EAAE,MAAM,KAAK,CAAC;AAM5D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;;AAErD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,qBACa,wBAAyB,SAAQ,6BAAmB;;IAC/D,iCAAiC;IACjC,OAAgB,MAAM,EAAE,cAAc,CAOpC;IAIF,yCAAyC;IACzC,IAAI,IAAI,IAAI,iBAAiB,GAAG,IAAI,CAEnC;IAED,kBAAkB;IACT,iBAAiB,IAAI,IAAI;IAKlC,kBAAkB;IACT,oBAAoB,IAAI,IAAI;IAKrC,kBAAkB;IACT,MAAM,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI;IAc3C,kBAAkB;IACT,MAAM,IAAI,IAAI;IAYvB,kBAAkB;cACC,MAAM,IAAI,OAAO;CAUrC;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,sBAAsB,EAAE,wBAAwB,CAAC;KAClD;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FabMenuVariant.d.ts","sourceRoot":"","sources":["../../src/FabMenuVariant.ts"],"names":[],"mappings":"AAAA,mFAAmF;AACnF,MAAM,MAAM,cAAc,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,yBAAyB,CAAC;AACxC,cAAc,kBAAkB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/fab-menu",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.3",
|
|
4
4
|
"description": "FAB Menu for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"clean": "rimraf dist"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@m3e/core": "1.0.0-rc.
|
|
31
|
-
"@m3e/fab": "1.0.0-rc.
|
|
30
|
+
"@m3e/core": "1.0.0-rc.3",
|
|
31
|
+
"@m3e/fab": "1.0.0-rc.3",
|
|
32
32
|
"lit": "^3.3.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|