fluent-svelte-extra 1.7.0 → 1.7.1

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.
@@ -11,7 +11,7 @@ function setSelected(value) {
11
11
  }
12
12
  </script>
13
13
 
14
- <div class="grid-view-item" class:selected>
14
+ <div class="grid-view-item" class:selected {...$$restProps}>
15
15
  {#if !singleSelect}
16
16
  <div class="item-checkbox">
17
17
  <Checkbox bind:checked={selected}></Checkbox>
@@ -1,7 +1,8 @@
1
1
  import { SvelteComponentTyped } from "svelte";
2
2
  declare const __propDef: {
3
3
  props: {
4
- /** Indicates the selected state of the grid view item. */ selected?: boolean;
4
+ [x: string]: any;
5
+ selected?: boolean;
5
6
  singleSelect?: boolean;
6
7
  };
7
8
  events: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluent-svelte-extra",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "A faithful implementation of Microsoft's Fluent Design System in Svelte.",
5
5
  "homepage": "https://github.com/OpenAnime/fluent-svelte-extra",
6
6
  "license": "MIT",