m3-svelte 4.5.5 → 4.5.6
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/package/buttons/TogglePrimitive.svelte +1 -1
- package/package/forms/TextField.svelte +1 -1
- package/package/forms/TextFieldMultiline.svelte +1 -1
- package/package/forms/TextFieldOutlined.svelte +1 -1
- package/package/forms/TextFieldOutlinedMultiline.svelte +1 -1
- package/package/nav/Tabs.svelte +1 -1
- package/package/nav/VariableTabs.svelte +1 -1
- package/package/utils/DateField.svelte +1 -1
- package/package.json +1 -1
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
error?: boolean;
|
|
20
20
|
value?: string;
|
|
21
21
|
} & HTMLTextareaAttributes = $props();
|
|
22
|
-
const id =
|
|
22
|
+
const id = $props.id();
|
|
23
23
|
const resize = (node: HTMLElement) => {
|
|
24
24
|
const update = () => {
|
|
25
25
|
const textarea = node.firstElementChild as HTMLTextAreaElement;
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
error?: boolean;
|
|
20
20
|
value?: string;
|
|
21
21
|
} & HTMLTextareaAttributes = $props();
|
|
22
|
-
const id =
|
|
22
|
+
const id = $props.id();
|
|
23
23
|
const resize = (node: HTMLElement) => {
|
|
24
24
|
const update = () => {
|
|
25
25
|
const textarea = node.firstElementChild as HTMLTextAreaElement;
|
package/package/nav/Tabs.svelte
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
}[];
|
|
20
20
|
} & HTMLInputAttributes = $props();
|
|
21
21
|
|
|
22
|
-
const name =
|
|
22
|
+
const name = $props.id();
|
|
23
23
|
let wrapper: HTMLDivElement | undefined = $state();
|
|
24
24
|
const handleInput = (e: Event & { currentTarget: EventTarget & HTMLInputElement }) => {
|
|
25
25
|
const before = tab;
|