@onsvisual/svelte-components 0.0.5 → 0.0.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.
@@ -11,8 +11,8 @@ export { default as Hero } from "./layout/Hero/Hero.svelte";
11
11
  export { default as List } from "./layout/List/List.svelte";
12
12
  export { default as NavSection } from "./layout/NavSections/NavSection.svelte";
13
13
  export { default as NavSections } from "./layout/NavSections/NavSections.svelte";
14
- export { default as Scoller } from "./layout/Scoller/Scoller.svelte";
15
- export { default as ScollerSection } from "./layout/Scoller/ScollerSection.svelte";
14
+ export { default as Scroller } from "./layout/Scroller/Scroller.svelte";
15
+ export { default as ScrollerSection } from "./layout/Scroller/ScrollerSection.svelte";
16
16
  export { default as Section } from "./layout/Section/Section.svelte";
17
17
  export { default as TitleBlock } from "./layout/TitleBlock/TitleBlock.svelte";
18
18
  export { default as Twisty } from "./layout/Twisty/Twisty.svelte";
@@ -2,7 +2,7 @@
2
2
  /** @typedef {typeof __propDef.events} ButtonEvents */
3
3
  /** @typedef {typeof __propDef.slots} ButtonSlots */
4
4
  export default class Button extends SvelteComponentTyped<{
5
- type?: "button" | "sumbit" | "reset";
5
+ type?: "button" | "reset" | "sumbit";
6
6
  variant?: "primary" | "secondary" | "ghost";
7
7
  href?: string;
8
8
  small?: boolean;
@@ -6,6 +6,7 @@ export default class Input extends SvelteComponentTyped<{
6
6
  id?: string;
7
7
  label?: string;
8
8
  numeric?: boolean;
9
+ error?: boolean;
9
10
  hideLabel?: boolean;
10
11
  value?: string;
11
12
  description?: string;
@@ -14,7 +15,6 @@ export default class Input extends SvelteComponentTyped<{
14
15
  suffix?: string;
15
16
  unitLabel?: string;
16
17
  pattern?: string;
17
- error?: boolean;
18
18
  }, {
19
19
  change: CustomEvent<any>;
20
20
  } & {
@@ -31,6 +31,7 @@ declare const __propDef: {
31
31
  id?: string;
32
32
  label?: string;
33
33
  numeric?: boolean;
34
+ error?: boolean;
34
35
  hideLabel?: boolean;
35
36
  value?: string;
36
37
  description?: string;
@@ -39,7 +40,6 @@ declare const __propDef: {
39
40
  suffix?: string;
40
41
  unitLabel?: string;
41
42
  pattern?: string;
42
- error?: boolean;
43
43
  };
44
44
  events: {
45
45
  change: CustomEvent<any>;