sk-clib 1.18.2 → 1.18.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.
@@ -5,7 +5,7 @@
5
5
 
6
6
  let {
7
7
  children,
8
- class: className,
8
+ class: className = $bindable(undefined),
9
9
 
10
10
  // Horizontal / Vertical
11
11
  horizontal = $bindable(undefined),
@@ -12,6 +12,6 @@ import type { Props } from '..';
12
12
  * Element that is soley made to fill in space. If nothing is passed, assumes 'size-full',
13
13
  * otherwise, it fills the direction you tell it to.
14
14
  */
15
- declare const Spacer: import("svelte").Component<Props, {}, "height" | "width" | "horizontal" | "vertical">;
15
+ declare const Spacer: import("svelte").Component<Props, {}, "class" | "height" | "width" | "horizontal" | "vertical">;
16
16
  type Spacer = ReturnType<typeof Spacer>;
17
17
  export default Spacer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sk-clib",
3
- "version": "1.18.2",
3
+ "version": "1.18.3",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",