@m3e/app-bar 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/src/AppBarElement.d.ts +139 -0
- package/dist/src/AppBarElement.d.ts.map +1 -0
- package/dist/src/AppBarSize.d.ts +3 -0
- package/dist/src/AppBarSize.d.ts.map +1 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/styles/AppBarSizeStyle.d.ts +7 -0
- package/dist/src/styles/AppBarSizeStyle.d.ts.map +1 -0
- package/dist/src/styles/AppBarSizeToken.d.ts +28 -0
- package/dist/src/styles/AppBarSizeToken.d.ts.map +1 -0
- package/dist/src/styles/AppBarStyle.d.ts +7 -0
- package/dist/src/styles/AppBarStyle.d.ts.map +1 -0
- package/dist/src/styles/AppBarToken.d.ts +15 -0
- package/dist/src/styles/AppBarToken.d.ts.map +1 -0
- package/dist/src/styles/index.d.ts +3 -0
- package/dist/src/styles/index.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -1516,25 +1516,6 @@
|
|
|
1516
1516
|
"kind": "mixin",
|
|
1517
1517
|
"description": "Mixin that adds support for custom event attributes.",
|
|
1518
1518
|
"name": "EventAttribute",
|
|
1519
|
-
"members": [
|
|
1520
|
-
{
|
|
1521
|
-
"kind": "method",
|
|
1522
|
-
"name": "dispatchEvent",
|
|
1523
|
-
"return": {
|
|
1524
|
-
"type": {
|
|
1525
|
-
"text": "boolean"
|
|
1526
|
-
}
|
|
1527
|
-
},
|
|
1528
|
-
"parameters": [
|
|
1529
|
-
{
|
|
1530
|
-
"name": "event",
|
|
1531
|
-
"type": {
|
|
1532
|
-
"text": "Event"
|
|
1533
|
-
}
|
|
1534
|
-
}
|
|
1535
|
-
]
|
|
1536
|
-
}
|
|
1537
|
-
],
|
|
1538
1519
|
"parameters": [
|
|
1539
1520
|
{
|
|
1540
1521
|
"name": "base",
|
|
@@ -1832,6 +1813,17 @@
|
|
|
1832
1813
|
"description": "Mixin to augment an element with behavior used to submit a form.",
|
|
1833
1814
|
"name": "FormSubmitter",
|
|
1834
1815
|
"members": [
|
|
1816
|
+
{
|
|
1817
|
+
"kind": "field",
|
|
1818
|
+
"name": "formAssociated",
|
|
1819
|
+
"type": {
|
|
1820
|
+
"text": "boolean"
|
|
1821
|
+
},
|
|
1822
|
+
"static": true,
|
|
1823
|
+
"readonly": true,
|
|
1824
|
+
"default": "true",
|
|
1825
|
+
"description": "Indicates that this custom element participates in form submission, validation, and form state restoration."
|
|
1826
|
+
},
|
|
1835
1827
|
{
|
|
1836
1828
|
"kind": "field",
|
|
1837
1829
|
"name": "name",
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { CSSResultGroup, LitElement, PropertyValues } from "lit";
|
|
2
|
+
import { AppBarSize } from "./AppBarSize";
|
|
3
|
+
declare const M3eAppBarElement_base: import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor<import("@m3e/core").HtmlForMixin> & import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor & typeof LitElement;
|
|
4
|
+
/**
|
|
5
|
+
* A bar, placed a the top of a screen, used to help users navigate through an application.
|
|
6
|
+
*
|
|
7
|
+
* @description
|
|
8
|
+
* The `m3e-app-bar` component is a prominent user interface component that provides consistent
|
|
9
|
+
* access to key actions, navigation, and contextual information at the top of an application screen.
|
|
10
|
+
* Designed according to Material 3 principles, it organizes content with clear hierarchy, supports
|
|
11
|
+
* dynamic color, elevation, and shape, and adapts to scrolling behavior.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```html
|
|
15
|
+
* <m3e-app-bar size="medium">
|
|
16
|
+
* <m3e-icon-button slot="leading-icon" aria-label="Back">
|
|
17
|
+
* <m3e-icon name="arrow_back"></m3e-icon>
|
|
18
|
+
* </m3e-icon-button>
|
|
19
|
+
* <span slot="title">Top 10 hiking trails</span>
|
|
20
|
+
* <span slot="subtitle">Discover popular trails</span>
|
|
21
|
+
* <m3e-icon-button slot="trailing-icon" aria-label="Bookmark" variant="tonal">
|
|
22
|
+
* <m3e-icon name="bookmark" filled></m3e-icon>
|
|
23
|
+
* </m3e-icon-button>
|
|
24
|
+
* <m3e-app-bar>
|
|
25
|
+
* ```
|
|
26
|
+
* @example
|
|
27
|
+
* The next example illustrates how to attach an app bar to a parenting scroll container
|
|
28
|
+
* to produce elevation on scroll. In this example, the `for` attribute is used to attach a
|
|
29
|
+
* sticky positioned `m3e-app-bar` to a parenting container styled to overflow vertically.
|
|
30
|
+
* When scrolled, the app bar will automatically transition to an elevated state.
|
|
31
|
+
* ```html
|
|
32
|
+
* <div style="overflow-y: auto; height: 300px" id="scrollContainer">
|
|
33
|
+
* <m3e-app-bar for="scrollContainer" style="position: sticky; top: 0">
|
|
34
|
+
* <span slot="title">Title</span>
|
|
35
|
+
* </m3e-app-bar>
|
|
36
|
+
* <div style="height: 400px; display: flex; align-items: center; justify-content: center">
|
|
37
|
+
* I am scrolling content
|
|
38
|
+
* </div>
|
|
39
|
+
* </div>
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* @tag m3e-app-bar
|
|
43
|
+
*
|
|
44
|
+
* @slot leading-icon - Renders a leading icon.
|
|
45
|
+
* @slot subtitle - Renders the subtitle.
|
|
46
|
+
* @slot title - Renders the title.
|
|
47
|
+
* @slot trailing-icon - Renders a trailing icon.
|
|
48
|
+
*
|
|
49
|
+
* @attr centered - Whether the title and subtitle are centered.
|
|
50
|
+
* @attr for - The identifier of the interactive control to which this element is attached.
|
|
51
|
+
* @attr size - The size of the bar.
|
|
52
|
+
*
|
|
53
|
+
* @cssprop --m3e-app-bar-container-color - Background color of the app bar container.
|
|
54
|
+
* @cssprop --m3e-app-bar-container-color-on-scroll - Background color of the app bar container when scrolled.
|
|
55
|
+
* @cssprop --m3e-app-bar-container-elevation - Elevation (shadow) of the app bar container.
|
|
56
|
+
* @cssprop --m3e-app-bar-container-elevation-on-scroll - Elevation (shadow) of the app bar container when scrolled.
|
|
57
|
+
* @cssprop --m3e-app-bar-title-text-color - Color of the app bar title text.
|
|
58
|
+
* @cssprop --m3e-app-bar-subtitle-text-color - Color of the app bar subtitle text.
|
|
59
|
+
* @cssprop --m3e-app-bar-padding-left - Left padding for the app bar container.
|
|
60
|
+
* @cssprop --m3e-app-bar-padding-right - Right padding for the app bar container.
|
|
61
|
+
* @cssprop --m3e-app-bar-small-container-height - Height of the small app bar container.
|
|
62
|
+
* @cssprop --m3e-app-bar-small-title-text-font-size - Font size for the small app bar title text.
|
|
63
|
+
* @cssprop --m3e-app-bar-small-title-text-font-weight - Font weight for the small app bar title text.
|
|
64
|
+
* @cssprop --m3e-app-bar-small-title-text-line-height - Line height for the small app bar title text.
|
|
65
|
+
* @cssprop --m3e-app-bar-small-subtitle-text-tracking - Letter spacing (tracking) for the small app bar title text.
|
|
66
|
+
* @cssprop --m3e-app-bar-small-subtitle-text-font-size - Font size for the small app bar subtitle text.
|
|
67
|
+
* @cssprop --m3e-app-bar-small-subtitle-text-font-weight - Font weight for the small app bar subtitle text.
|
|
68
|
+
* @cssprop --m3e-app-bar-small-subtitle-text-line-height - Line height for the small app bar subtitle text.
|
|
69
|
+
* @cssprop --m3e-app-bar-small-subtitle-text-tracking - Letter spacing (tracking) for the small app bar subtitle text.
|
|
70
|
+
* @cssprop --m3e-app-bar-small-heading-padding-left - Left padding for the small app bar heading.
|
|
71
|
+
* @cssprop --m3e-app-bar-small-heading-padding-right - Right padding for the small app bar heading.
|
|
72
|
+
* @cssprop --m3e-app-bar-medium-container-height - Height of the medium app bar container.
|
|
73
|
+
* @cssprop --m3e-app-bar-medium-container-height-with-subtitle - Height of the medium app bar container with subtitle.
|
|
74
|
+
* @cssprop --m3e-app-bar-medium-title-text-font-size - Font size for the medium app bar title text.
|
|
75
|
+
* @cssprop --m3e-app-bar-medium-title-text-font-weight - Font weight for the medium app bar title text.
|
|
76
|
+
* @cssprop --m3e-app-bar-medium-title-text-line-height - Line height for the medium app bar title text.
|
|
77
|
+
* @cssprop --m3e-app-bar-medium-subtitle-text-tracking - Letter spacing (tracking) for the medium app bar title text.
|
|
78
|
+
* @cssprop --m3e-app-bar-medium-subtitle-text-font-size - Font size for the medium app bar subtitle text.
|
|
79
|
+
* @cssprop --m3e-app-bar-medium-subtitle-text-font-weight - Font weight for the medium app bar subtitle text.
|
|
80
|
+
* @cssprop --m3e-app-bar-medium-subtitle-text-line-height - Line height for the medium app bar subtitle text.
|
|
81
|
+
* @cssprop --m3e-app-bar-medium-subtitle-text-tracking - Letter spacing (tracking) for the medium app bar subtitle text.
|
|
82
|
+
* @cssprop --m3e-app-bar-medium-heading-padding-left - Left padding for the medium app bar heading.
|
|
83
|
+
* @cssprop --m3e-app-bar-medium-heading-padding-right - Right padding for the medium app bar heading.
|
|
84
|
+
* @cssprop --m3e-app-bar-medium-padding-top - Top padding for the medium app bar.
|
|
85
|
+
* @cssprop --m3e-app-bar-medium-padding-bottom - Bottom padding for the medium app bar.
|
|
86
|
+
* @cssprop --m3e-app-bar-medium-title-max-lines - Maximum number of lines for the medium app bar title.
|
|
87
|
+
* @cssprop --m3e-app-bar-medium-subtitle-max-lines - Maximum number of lines for the medium app bar subtitle.
|
|
88
|
+
* @cssprop --m3e-app-bar-large-container-height - Height of the large app bar container.
|
|
89
|
+
* @cssprop --m3e-app-bar-large-container-height-with-subtitle - Height of the large app bar container with subtitle.
|
|
90
|
+
* @cssprop --m3e-app-bar-large-title-text-font-size - Font size for the large app bar title text.
|
|
91
|
+
* @cssprop --m3e-app-bar-large-title-text-font-weight - Font weight for the large app bar title text.
|
|
92
|
+
* @cssprop --m3e-app-bar-large-title-text-line-height - Line height for the large app bar title text.
|
|
93
|
+
* @cssprop --m3e-app-bar-large-subtitle-text-tracking - Letter spacing (tracking) for the large app bar title text.
|
|
94
|
+
* @cssprop --m3e-app-bar-large-subtitle-text-font-size - Font size for the large app bar subtitle text.
|
|
95
|
+
* @cssprop --m3e-app-bar-large-subtitle-text-font-weight - Font weight for the large app bar subtitle text.
|
|
96
|
+
* @cssprop --m3e-app-bar-large-subtitle-text-line-height - Line height for the large app bar subtitle text.
|
|
97
|
+
* @cssprop --m3e-app-bar-large-subtitle-text-tracking - Letter spacing (tracking) for the large app bar subtitle text.
|
|
98
|
+
* @cssprop --m3e-app-bar-large-heading-padding-left - Left padding for the large app bar heading.
|
|
99
|
+
* @cssprop --m3e-app-bar-large-heading-padding-right - Right padding for the large app bar heading.
|
|
100
|
+
* @cssprop --m3e-app-bar-large-padding-top - Top padding for the large app bar.
|
|
101
|
+
* @cssprop --m3e-app-bar-large-padding-bottom - Bottom padding for the large app bar.
|
|
102
|
+
* @cssprop --m3e-app-bar-large-title-max-lines - Maximum number of lines for the large app bar title.
|
|
103
|
+
* @cssprop --m3e-app-bar-large-subtitle-max-lines - Maximum number of lines for the large app bar subtitle.
|
|
104
|
+
*/
|
|
105
|
+
export declare class M3eAppBarElement extends M3eAppBarElement_base {
|
|
106
|
+
#private;
|
|
107
|
+
/** The styles of the element. */
|
|
108
|
+
static styles: CSSResultGroup;
|
|
109
|
+
/** @private */ private readonly _base?;
|
|
110
|
+
/** @private */ private readonly _leadingIcon?;
|
|
111
|
+
/** @private */ private readonly _trailingIcon?;
|
|
112
|
+
/**
|
|
113
|
+
* Whether the title and subtitle are centered.
|
|
114
|
+
* @default false
|
|
115
|
+
*/
|
|
116
|
+
centered: boolean;
|
|
117
|
+
/**
|
|
118
|
+
* The size of the bar.
|
|
119
|
+
* @default "small"
|
|
120
|
+
*/
|
|
121
|
+
size: AppBarSize;
|
|
122
|
+
/** @inheritdoc */
|
|
123
|
+
attach(control: HTMLElement): void;
|
|
124
|
+
/** @inheritdoc */
|
|
125
|
+
detach(): void;
|
|
126
|
+
/** @inheritdoc */
|
|
127
|
+
protected updated(_changedProperties: PropertyValues<this>): void;
|
|
128
|
+
/** @inheritdoc */
|
|
129
|
+
protected render(): unknown;
|
|
130
|
+
/** @private */
|
|
131
|
+
private _updateScroll;
|
|
132
|
+
}
|
|
133
|
+
declare global {
|
|
134
|
+
interface HTMLElementTagNameMap {
|
|
135
|
+
"m3e-app-bar": M3eAppBarElement;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
export {};
|
|
139
|
+
//# sourceMappingURL=AppBarElement.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppBarElement.d.ts","sourceRoot":"","sources":["../../src/AppBarElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAQ,UAAU,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAKvE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;;AAI1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoGG;AACH,qBACa,gBAAiB,SAAQ,qBAAmC;;IACvE,iCAAiC;IACjC,OAAgB,MAAM,EAAE,cAAc,CAAkC;IAIxE,eAAe,CAAiB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAc;IACrE,eAAe,CAAyB,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAc;IACpF,eAAe,CAA0B,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAc;IAEtF;;;OAGG;IACyC,QAAQ,UAAS;IAE7D;;;OAGG;IAC0B,IAAI,EAAE,UAAU,CAAW;IAExD,kBAAkB;IACT,MAAM,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI;IAW3C,kBAAkB;IACT,MAAM,IAAI,IAAI;IAWvB,kBAAkB;cACC,OAAO,CAAC,kBAAkB,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;IAY1E,kBAAkB;cACC,MAAM,IAAI,OAAO;IA4FpC,eAAe;IAEf,OAAO,CAAC,aAAa;CA4BtB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,aAAa,EAAE,gBAAgB,CAAC;KACjC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppBarSize.d.ts","sourceRoot":"","sources":["../../src/AppBarSize.ts"],"names":[],"mappings":"AAAA,0DAA0D;AAC1D,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppBarSizeStyle.d.ts","sourceRoot":"","sources":["../../../src/styles/AppBarSizeStyle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,cAAc,EAAa,MAAM,KAAK,CAAC;AA8DhE;;;GAGG;AACH,eAAO,MAAM,eAAe,EAAE,cAAoF,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CSSResult } from "lit";
|
|
2
|
+
import { AppBarSize } from "../AppBarSize";
|
|
3
|
+
/** @private */
|
|
4
|
+
type _AppBarSizeToken = {
|
|
5
|
+
containerHeight: CSSResult;
|
|
6
|
+
containerHeightWithSubtitle?: CSSResult;
|
|
7
|
+
paddingTop?: CSSResult;
|
|
8
|
+
paddingBottom?: CSSResult;
|
|
9
|
+
titleTextFontSize: CSSResult;
|
|
10
|
+
titleTextFontWeight: CSSResult;
|
|
11
|
+
titleTextLineHeight: CSSResult;
|
|
12
|
+
titleTextTracking: CSSResult;
|
|
13
|
+
subtitleTextFontSize: CSSResult;
|
|
14
|
+
subtitleTextFontWeight: CSSResult;
|
|
15
|
+
subtitleTextLineHeight: CSSResult;
|
|
16
|
+
subtitleTextTracking: CSSResult;
|
|
17
|
+
titleMaxLines?: CSSResult;
|
|
18
|
+
subtitleMaxLines?: CSSResult;
|
|
19
|
+
headingPaddingLeft: CSSResult;
|
|
20
|
+
headingPaddingRight: CSSResult;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Component design tokens that control the `M3eAppBarElement` for all size variants.
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
export declare const AppBarSizeToken: Record<AppBarSize, _AppBarSizeToken>;
|
|
27
|
+
export {};
|
|
28
|
+
//# sourceMappingURL=AppBarSizeToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppBarSizeToken.d.ts","sourceRoot":"","sources":["../../../src/styles/AppBarSizeToken.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAa,MAAM,KAAK,CAAC;AAI3C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,eAAe;AACf,KAAK,gBAAgB,GAAG;IACtB,eAAe,EAAE,SAAS,CAAC;IAC3B,2BAA2B,CAAC,EAAE,SAAS,CAAC;IACxC,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,iBAAiB,EAAE,SAAS,CAAC;IAC7B,mBAAmB,EAAE,SAAS,CAAC;IAC/B,mBAAmB,EAAE,SAAS,CAAC;IAC/B,iBAAiB,EAAE,SAAS,CAAC;IAC7B,oBAAoB,EAAE,SAAS,CAAC;IAChC,sBAAsB,EAAE,SAAS,CAAC;IAClC,sBAAsB,EAAE,SAAS,CAAC;IAClC,oBAAoB,EAAE,SAAS,CAAC;IAChC,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,gBAAgB,CAAC,EAAE,SAAS,CAAC;IAC7B,kBAAkB,EAAE,SAAS,CAAC;IAC9B,mBAAmB,EAAE,SAAS,CAAC;CAChC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,UAAU,EAAE,gBAAgB,CAkGvD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppBarStyle.d.ts","sourceRoot":"","sources":["../../../src/styles/AppBarStyle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,SAAS,EAAa,MAAM,KAAK,CAAC;AAMhD;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,SA8GzB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Component design tokens that control `M3eAppBarElement`.
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const AppBarToken: {
|
|
6
|
+
readonly containerColor: import("lit").CSSResult;
|
|
7
|
+
readonly containerColorOnScroll: import("lit").CSSResult;
|
|
8
|
+
readonly containerElevation: import("lit").CSSResult;
|
|
9
|
+
readonly containerElevationOnScroll: import("lit").CSSResult;
|
|
10
|
+
readonly titleTextColor: import("lit").CSSResult;
|
|
11
|
+
readonly subtitleTextColor: import("lit").CSSResult;
|
|
12
|
+
readonly paddingLeft: import("lit").CSSResult;
|
|
13
|
+
readonly paddingRight: import("lit").CSSResult;
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=AppBarToken.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AppBarToken.d.ts","sourceRoot":"","sources":["../../../src/styles/AppBarToken.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,eAAO,MAAM,WAAW;;;;;;;;;CAad,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/styles/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m3e/app-bar",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.3",
|
|
4
4
|
"description": "App Bar for M3E",
|
|
5
5
|
"author": "matraic <matraic@yahoo.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"clean": "rimraf dist"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@m3e/core": "1.0.0-rc.
|
|
30
|
+
"@m3e/core": "1.0.0-rc.3",
|
|
31
31
|
"lit": "^3.3.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|