m3-svelte 5.8.0 → 5.9.0
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.
|
@@ -13,6 +13,6 @@ type $$ComponentProps = {
|
|
|
13
13
|
color?: "primary-container" | "secondary-container" | "tertiary-container" | "primary" | "secondary" | "tertiary";
|
|
14
14
|
elevation?: "normal" | "lowered" | "none";
|
|
15
15
|
} & ContentProps & ButtonAttrs;
|
|
16
|
-
declare const
|
|
17
|
-
type
|
|
18
|
-
export default
|
|
16
|
+
declare const FAB: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
17
|
+
type FAB = ReturnType<typeof FAB>;
|
|
18
|
+
export default FAB;
|
|
@@ -164,10 +164,15 @@
|
|
|
164
164
|
}}
|
|
165
165
|
/>
|
|
166
166
|
|
|
167
|
+
<div class="hitbox"></div>
|
|
167
168
|
<div class="ripple-container broken" use:createRipple></div>
|
|
168
169
|
<div class="tint"></div>
|
|
169
170
|
|
|
170
171
|
<style>
|
|
172
|
+
.hitbox {
|
|
173
|
+
position: absolute;
|
|
174
|
+
inset: 0;
|
|
175
|
+
}
|
|
171
176
|
.ripple-container {
|
|
172
177
|
position: absolute;
|
|
173
178
|
inset: 0;
|
|
@@ -3,6 +3,6 @@ type $$ComponentProps = {
|
|
|
3
3
|
variant: "compact" | "medium" | "large" | "expanded" | "auto";
|
|
4
4
|
children: Snippet;
|
|
5
5
|
};
|
|
6
|
-
declare const
|
|
7
|
-
type
|
|
8
|
-
export default
|
|
6
|
+
declare const NavCMLX: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
7
|
+
type NavCMLX = ReturnType<typeof NavCMLX>;
|
|
8
|
+
export default NavCMLX;
|
|
@@ -11,6 +11,6 @@ type $$ComponentProps = {
|
|
|
11
11
|
text: string;
|
|
12
12
|
selected: boolean;
|
|
13
13
|
} & ActionProps;
|
|
14
|
-
declare const
|
|
15
|
-
type
|
|
16
|
-
export default
|
|
14
|
+
declare const NavCMLXItem: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
15
|
+
type NavCMLXItem = ReturnType<typeof NavCMLXItem>;
|
|
16
|
+
export default NavCMLXItem;
|