@m3e/card 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.
@@ -0,0 +1,171 @@
1
+ import { CSSResultGroup, LitElement, PropertyValues } from "lit";
2
+ import { CardVariant } from "./CardVariant";
3
+ import { CardOrientation } from "./CardOrientation";
4
+ declare const M3eCardElement_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").FormSubmitterMixin> & import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor & import("node_modules/@m3e/core/dist/src/shared/mixins/Constructor").Constructor<import("@m3e/core").DisabledInteractiveMixin> & 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> & typeof LitElement;
5
+ /**
6
+ * A content container for text, images (or other media), and actions in the context of a single subject.
7
+ *
8
+ * @description
9
+ * The `m3e-card` component is a flexible, expressive container for presenting a unified subject—text,
10
+ * media, and actions—on a visually distinct surface. It supports multiple appearance variants via the
11
+ * `variant` attribute: `filled` (default, for solid emphasis), `outlined` (for subtle framing with a border),
12
+ * and `elevated` (for depth and motion with shadow elevation).
13
+ *
14
+ * Cards can be made actionable, responding to user interaction when the `actionable` attribute is set, and can be
15
+ * presented inline with surrounding content using the `inline` attribute.
16
+ *
17
+ * It supports both vertical and horizontal layouts through the `orientation` attribute. Content organization is
18
+ * enabled via dedicated slots for `header`, `content`, `actions`, and `footer`, or developers can use the default
19
+ * slot for custom layouts.
20
+ *
21
+ * The component provides dynamic elevation, adaptive shape, and expressive color theming, and responds to interaction states
22
+ * (hover, focus, press, disabled) with smooth motion and visual feedback, ensuring clarity, accessibility,
23
+ * and a cohesive user experience in accordance with Material Design 3 guidelines.
24
+ *
25
+ * @example
26
+ * The following example illustrates each of the dedicated slots of a card.
27
+ * ```html
28
+ * <m3e-card>
29
+ * <div slot="header">Header section</div>
30
+ * <div slot="content">Content section</div>
31
+ * <div slot="actions">Actions section</div>
32
+ * <div slot="footer">Footer section</div>
33
+ * </m3e-card>
34
+ * ```
35
+ *
36
+ * @tag m3e-card
37
+ *
38
+ * @slot - Renders the content of the card without padding.
39
+ * @slot header - Renders the header of the card.
40
+ * @slot content - Renders the content of the card with padding.
41
+ * @slot actions - Renders the actions of the card.
42
+ * @slot footer - Renders the footer of the card.
43
+ *
44
+ * @attr actionable - Whether the card is "actionable" and will respond to use interaction.
45
+ * @attr inline - Whether to present the card inline with surrounding content.
46
+ * @attr orientation - The orientation of the card.
47
+ * @attr variant - The appearance variant of the card.
48
+ *
49
+ * @fires click - Emitted when the element is clicked.
50
+ *
51
+ * @cssprop --m3e-card-padding - Internal spacing for all slotted regions
52
+ * @cssprop --m3e-card-shape - Corner radius of the card container.
53
+ * @cssprop --m3e-filled-card-text-color - Foreground color for text content in filled cards.
54
+ * @cssprop --m3e-filled-card-container-color - Background color of the filled card container.
55
+ * @cssprop --m3e-filled-card-container-elevation - Elevation level for filled card container.
56
+ * @cssprop --m3e-filled-card-disabled-text-color - Text color when filled card is disabled.
57
+ * @cssprop --m3e-filled-card-disabled-text-opacity - Opacity applied to text when disabled.
58
+ * @cssprop --m3e-filled-card-disabled-container-color - Background color when disabled.
59
+ * @cssprop --m3e-filled-card-disabled-container-elevation - Elevation level when disabled.
60
+ * @cssprop --m3e-filled-card-disabled-container-elevation-color - Shadow color when disabled.
61
+ * @cssprop --m3e-filled-card-disabled-container-elevation-opacity - Shadow opacity when disabled.
62
+ * @cssprop --m3e-filled-card-disabled-container-opacity - Overall container opacity when disabled.
63
+ * @cssprop --m3e-filled-card-hover-text-color - Text color on hover.
64
+ * @cssprop --m3e-filled-card-hover-state-layer-color - State layer color on hover.
65
+ * @cssprop --m3e-filled-card-hover-state-layer-opacity - State layer opacity on hover.
66
+ * @cssprop --m3e-filled-card-hover-container-elevation - Elevation level on hover.
67
+ * @cssprop --m3e-filled-card-focus-text-color - Text color on focus.
68
+ * @cssprop --m3e-filled-card-focus-state-layer-color - State layer color on focus.
69
+ * @cssprop --m3e-filled-card-focus-state-layer-opacity - State layer opacity on focus.
70
+ * @cssprop --m3e-filled-card-focus-container-elevation - Elevation level on focus.
71
+ * @cssprop --m3e-filled-card-pressed-text-color - Text color on press.
72
+ * @cssprop --m3e-filled-card-pressed-state-layer-color - State layer color on press.
73
+ * @cssprop --m3e-filled-card-pressed-state-layer-opacity - State layer opacity on press.
74
+ * @cssprop --m3e-filled-card-pressed-container-elevation - Elevation level on press.
75
+ * @cssprop --m3e-elevated-card-text-color - Foreground color for text content in elevated cards.
76
+ * @cssprop --m3e-elevated-card-container-color - Background color of the elevated card container.
77
+ * @cssprop --m3e-elevated-card-container-elevation - Elevation level for elevated card container.
78
+ * @cssprop --m3e-elevated-card-disabled-text-color - Text color when elevated card is disabled.
79
+ * @cssprop --m3e-elevated-card-disabled-text-opacity - Opacity applied to text when disabled.
80
+ * @cssprop --m3e-elevated-card-disabled-container-color - Background color when disabled.
81
+ * @cssprop --m3e-elevated-card-disabled-container-elevation - Elevation level when disabled.
82
+ * @cssprop --m3e-elevated-card-disabled-container-elevation-color - Shadow color when disabled.
83
+ * @cssprop --m3e-elevated-card-disabled-container-elevation-opacity - Shadow opacity when disabled.
84
+ * @cssprop --m3e-elevated-card-disabled-container-opacity - Overall container opacity when disabled.
85
+ * @cssprop --m3e-elevated-card-hover-text-color - Text color on hover.
86
+ * @cssprop --m3e-elevated-card-hover-state-layer-color - State layer color on hover.
87
+ * @cssprop --m3e-elevated-card-hover-state-layer-opacity - State layer opacity on hover.
88
+ * @cssprop --m3e-elevated-card-hover-container-elevation - Elevation level on hover.
89
+ * @cssprop --m3e-elevated-card-focus-text-color - Text color on focus.
90
+ * @cssprop --m3e-elevated-card-focus-state-layer-color - State layer color on focus.
91
+ * @cssprop --m3e-elevated-card-focus-state-layer-opacity - State layer opacity on focus.
92
+ * @cssprop --m3e-elevated-card-focus-container-elevation - Elevation level on focus.
93
+ * @cssprop --m3e-elevated-card-pressed-text-color - Text color on press.
94
+ * @cssprop --m3e-elevated-card-pressed-state-layer-color - State layer color on press.
95
+ * @cssprop --m3e-elevated-card-pressed-state-layer-opacity - State layer opacity on press.
96
+ * @cssprop --m3e-elevated-card-pressed-container-elevation - Elevation level on press.
97
+ * @cssprop --m3e-outlined-card-text-color - Foreground color for text content in outlined cards.
98
+ * @cssprop --m3e-outlined-card-container-elevation - Elevation level for outlined card container.
99
+ * @cssprop --m3e-outlined-card-outline-color - Border color for outlined cards.
100
+ * @cssprop --m3e-outlined-card-outline-thickness - Border thickness for outlined cards.
101
+ * @cssprop --m3e-outlined-card-disabled-text-color - Text color when outlined card is disabled.
102
+ * @cssprop --m3e-outlined-card-disabled-text-opacity - Opacity applied to text when disabled.
103
+ * @cssprop --m3e-outlined-card-disabled-container-elevation - Elevation level when disabled.
104
+ * @cssprop --m3e-outlined-card-disabled-container-elevation-color - Shadow color when disabled.
105
+ * @cssprop --m3e-outlined-card-disabled-container-elevation-opacity - Shadow opacity when disabled.
106
+ * @cssprop --m3e-outlined-card-disabled-outline-color - Border color when disabled.
107
+ * @cssprop --m3e-outlined-card-disabled-outline-opacity - Border opacity when disabled.
108
+ * @cssprop --m3e-outlined-card-hover-text-color - Text color on hover.
109
+ * @cssprop --m3e-outlined-card-hover-state-layer-color - State layer color on hover.
110
+ * @cssprop --m3e-outlined-card-hover-state-layer-opacity - State layer opacity on hover.
111
+ * @cssprop --m3e-outlined-card-hover-container-elevation - Elevation level on hover.
112
+ * @cssprop --m3e-outlined-card-hover-outline-color - Border color on hover.
113
+ * @cssprop --m3e-outlined-card-focus-text-color - Text color on focus.
114
+ * @cssprop --m3e-outlined-card-focus-state-layer-color - State layer color on focus.
115
+ * @cssprop --m3e-outlined-card-focus-state-layer-opacity - State layer opacity on focus.
116
+ * @cssprop --m3e-outlined-card-focus-container-elevation - Elevation level on focus.
117
+ * @cssprop --m3e-outlined-card-focus-outline-color - Border color on focus.
118
+ * @cssprop --m3e-outlined-card-pressed-text-color - Text color on press.
119
+ * @cssprop --m3e-outlined-card-pressed-state-layer-color - State layer color on press.
120
+ * @cssprop --m3e-outlined-card-pressed-state-layer-opacity - State layer opacity on press.
121
+ * @cssprop --m3e-outlined-card-pressed-container-elevation - Elevation level on press.
122
+ * @cssprop --m3e-outlined-card-pressed-outline-color - Border color on press.
123
+ */
124
+ export declare class M3eCardElement extends M3eCardElement_base {
125
+ #private;
126
+ /** The styles of the element. */
127
+ static styles: CSSResultGroup;
128
+ /** @private */ private readonly _base?;
129
+ /** @private */ private readonly _elevation?;
130
+ /** @private */ private readonly _focusRing?;
131
+ /** @private */ private readonly _stateLayer?;
132
+ /** @private */ private readonly _ripple?;
133
+ constructor();
134
+ /**
135
+ * Whether to present the card inline with surrounding content.
136
+ * @default false
137
+ */
138
+ inline: boolean;
139
+ /**
140
+ * Whether the card is "actionable" and will respond to use interaction.
141
+ * @default false
142
+ */
143
+ actionable: boolean;
144
+ /**
145
+ * The appearance variant of the card.
146
+ * @default "filled"
147
+ */
148
+ variant: CardVariant;
149
+ /**
150
+ * The orientation of the card.
151
+ * @default "vertical"
152
+ */
153
+ orientation: CardOrientation;
154
+ /** @inheritdoc */
155
+ connectedCallback(): void;
156
+ /** @inheritdoc */
157
+ disconnectedCallback(): void;
158
+ /** @inheritdoc */
159
+ protected render(): unknown;
160
+ /** @inheritdoc */
161
+ protected firstUpdated(_changedProperties: PropertyValues<this>): void;
162
+ /** @inheritdoc */
163
+ protected update(changedProperties: PropertyValues<this>): void;
164
+ }
165
+ declare global {
166
+ interface HTMLElementTagNameMap {
167
+ "m3e-card": M3eCardElement;
168
+ }
169
+ }
170
+ export {};
171
+ //# sourceMappingURL=CardElement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardElement.d.ts","sourceRoot":"","sources":["../../src/CardElement.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAQ,UAAU,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAmBvE,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAG5C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;;AAEpD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsHG;AACH,qBACa,cAAe,SAAQ,mBAEnC;;IACC,iCAAiC;IACjC,OAAgB,MAAM,EAAE,cAAc,CAAiC;IAEvE,eAAe,CAAiB,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAc;IACrE,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;;IAiB9E;;;OAGG;IAC0B,MAAM,UAAS;IAE5C;;;OAGG;IAC0B,UAAU,UAAS;IAEhD;;;OAGG;IAC0B,OAAO,EAAE,WAAW,CAAY;IAE7D;;;OAGG;IAC0B,WAAW,EAAE,eAAe,CAAc;IAEvE,kBAAkB;IACT,iBAAiB,IAAI,IAAI;IAUlC,kBAAkB;IACT,oBAAoB,IAAI,IAAI;IAOrC,kBAAkB;cACC,MAAM,IAAI,OAAO;IAuBpC,kBAAkB;cACC,YAAY,CAAC,kBAAkB,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;IAU/E,kBAAkB;cACC,MAAM,CAAC,iBAAiB,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI;CAezE;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,UAAU,EAAE,cAAc,CAAC;KAC5B;CACF"}
@@ -0,0 +1,3 @@
1
+ /** Specifies the possible orientations of a card. */
2
+ export type CardOrientation = "horizontal" | "vertical";
3
+ //# sourceMappingURL=CardOrientation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardOrientation.d.ts","sourceRoot":"","sources":["../../src/CardOrientation.ts"],"names":[],"mappings":"AAAA,qDAAqD;AACrD,MAAM,MAAM,eAAe,GAAG,YAAY,GAAG,UAAU,CAAC"}
@@ -0,0 +1,3 @@
1
+ /** Specifies the possible appearance variants of a card. */
2
+ export type CardVariant = "elevated" | "filled" | "outlined";
3
+ //# sourceMappingURL=CardVariant.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardVariant.d.ts","sourceRoot":"","sources":["../../src/CardVariant.ts"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,QAAQ,GAAG,UAAU,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from "./CardElement";
2
+ export * from "./CardOrientation";
3
+ export * from "./CardVariant";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { CSSResult } from "lit";
2
+ /**
3
+ * Baseline styles for `M3eCardElement`.
4
+ * @internal
5
+ */
6
+ export declare const CardStyle: CSSResult;
7
+ //# sourceMappingURL=CardStyle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardStyle.d.ts","sourceRoot":"","sources":["../../../src/styles/CardStyle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,SAAS,EAAa,MAAM,KAAK,CAAC;AAOhD;;;GAGG;AACH,eAAO,MAAM,SAAS,EAAE,SAuJvB,CAAC"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Component design tokens for `M3eCardElement`.
3
+ * @internal
4
+ */
5
+ export declare const CardToken: {
6
+ readonly padding: import("lit").CSSResult;
7
+ readonly shape: import("lit").CSSResult;
8
+ };
9
+ //# sourceMappingURL=CardToken.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardToken.d.ts","sourceRoot":"","sources":["../../../src/styles/CardToken.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,eAAO,MAAM,SAAS;;;CAGZ,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { CSSResultGroup } from "lit";
2
+ /**
3
+ * Appearance variant styles for `M3eCardElement`.
4
+ * @internal
5
+ */
6
+ export declare const CardVariantStyle: CSSResultGroup;
7
+ //# sourceMappingURL=CardVariantStyle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardVariantStyle.d.ts","sourceRoot":"","sources":["../../../src/styles/CardVariantStyle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,cAAc,EAAa,MAAM,KAAK,CAAC;AA0FhE;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,cAI9B,CAAC"}
@@ -0,0 +1,50 @@
1
+ import { CSSResult } from "lit";
2
+ import { CardVariant } from "../CardVariant";
3
+ /** @private */
4
+ type _CardVariantToken = {
5
+ textColor: CSSResult;
6
+ containerColor?: CSSResult;
7
+ containerElevation: CSSResult;
8
+ outlineColor?: CSSResult;
9
+ outlineThickness?: CSSResult;
10
+ disabled: {
11
+ textColor: CSSResult;
12
+ textOpacity: CSSResult;
13
+ imageOpacity: CSSResult;
14
+ containerColor?: CSSResult;
15
+ containerOpacity?: CSSResult;
16
+ containerElevation: CSSResult;
17
+ containerElevationColor: CSSResult;
18
+ containerElevationOpacity: CSSResult;
19
+ outlineColor?: CSSResult;
20
+ outlineOpacity?: CSSResult;
21
+ };
22
+ hover: {
23
+ textColor: CSSResult;
24
+ stateLayerColor: CSSResult;
25
+ stateLayerOpacity: CSSResult;
26
+ containerElevation?: CSSResult;
27
+ outlineColor?: CSSResult;
28
+ };
29
+ focus: {
30
+ textColor: CSSResult;
31
+ stateLayerColor: CSSResult;
32
+ stateLayerOpacity: CSSResult;
33
+ containerElevation?: CSSResult;
34
+ outlineColor?: CSSResult;
35
+ };
36
+ pressed: {
37
+ textColor: CSSResult;
38
+ stateLayerColor: CSSResult;
39
+ stateLayerOpacity: CSSResult;
40
+ containerElevation?: CSSResult;
41
+ outlineColor?: CSSResult;
42
+ };
43
+ };
44
+ /**
45
+ * Component design tokens that control the appearance variants of `M3eCardElement`.
46
+ * @internal
47
+ */
48
+ export declare const CardVariantToken: Record<CardVariant, _CardVariantToken>;
49
+ export {};
50
+ //# sourceMappingURL=CardVariantToken.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardVariantToken.d.ts","sourceRoot":"","sources":["../../../src/styles/CardVariantToken.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAa,MAAM,KAAK,CAAC;AAI3C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAE7C,eAAe;AACf,KAAK,iBAAiB,GAAG;IACvB,SAAS,EAAE,SAAS,CAAC;IACrB,cAAc,CAAC,EAAE,SAAS,CAAC;IAC3B,kBAAkB,EAAE,SAAS,CAAC;IAC9B,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB,gBAAgB,CAAC,EAAE,SAAS,CAAC;IAC7B,QAAQ,EAAE;QACR,SAAS,EAAE,SAAS,CAAC;QACrB,WAAW,EAAE,SAAS,CAAC;QACvB,YAAY,EAAE,SAAS,CAAC;QACxB,cAAc,CAAC,EAAE,SAAS,CAAC;QAC3B,gBAAgB,CAAC,EAAE,SAAS,CAAC;QAC7B,kBAAkB,EAAE,SAAS,CAAC;QAC9B,uBAAuB,EAAE,SAAS,CAAC;QACnC,yBAAyB,EAAE,SAAS,CAAC;QACrC,YAAY,CAAC,EAAE,SAAS,CAAC;QACzB,cAAc,CAAC,EAAE,SAAS,CAAC;KAC5B,CAAC;IACF,KAAK,EAAE;QACL,SAAS,EAAE,SAAS,CAAC;QACrB,eAAe,EAAE,SAAS,CAAC;QAC3B,iBAAiB,EAAE,SAAS,CAAC;QAC7B,kBAAkB,CAAC,EAAE,SAAS,CAAC;QAC/B,YAAY,CAAC,EAAE,SAAS,CAAC;KAC1B,CAAC;IACF,KAAK,EAAE;QACL,SAAS,EAAE,SAAS,CAAC;QACrB,eAAe,EAAE,SAAS,CAAC;QAC3B,iBAAiB,EAAE,SAAS,CAAC;QAC7B,kBAAkB,CAAC,EAAE,SAAS,CAAC;QAC/B,YAAY,CAAC,EAAE,SAAS,CAAC;KAC1B,CAAC;IACF,OAAO,EAAE;QACP,SAAS,EAAE,SAAS,CAAC;QACrB,eAAe,EAAE,SAAS,CAAC;QAC3B,iBAAiB,EAAE,SAAS,CAAC;QAC7B,kBAAkB,CAAC,EAAE,SAAS,CAAC;QAC/B,YAAY,CAAC,EAAE,SAAS,CAAC;KAC1B,CAAC;CACH,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,WAAW,EAAE,iBAAiB,CAwJ1D,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from "./CardStyle";
2
+ export * from "./CardVariantStyle";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/styles/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,oBAAoB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m3e/card",
3
- "version": "1.0.0-rc.2",
3
+ "version": "1.0.0-rc.3",
4
4
  "description": "Card 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.2",
30
+ "@m3e/core": "1.0.0-rc.3",
31
31
  "lit": "^3.3.0"
32
32
  },
33
33
  "devDependencies": {