@onsvisual/svelte-components 0.0.23 → 0.0.25

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.
Files changed (41) hide show
  1. package/dist/@types/decorators/Divider/Divider.svelte.d.ts +2 -2
  2. package/dist/@types/index.d.ts +2 -0
  3. package/dist/@types/inputs/Checkbox/Checkbox.svelte.d.ts +2 -2
  4. package/dist/@types/inputs/Dropdown/Dropdown.svelte.d.ts +2 -2
  5. package/dist/@types/inputs/Input/Input.svelte.d.ts +2 -2
  6. package/dist/@types/inputs/Radios/Radio.svelte.d.ts +2 -2
  7. package/dist/@types/inputs/Radios/Radios.svelte.d.ts +2 -2
  8. package/dist/@types/inputs/Select/Select.svelte.d.ts +2 -2
  9. package/dist/@types/inputs/Textarea/Textarea.svelte.d.ts +2 -2
  10. package/dist/@types/layout/Accordion/AccordionItem.svelte.d.ts +2 -2
  11. package/dist/@types/layout/AnalyticsBanner/AnalyticsBanner.svelte.d.ts +2 -2
  12. package/dist/@types/layout/Breadcrumb/Breadcrumb.svelte.d.ts +2 -2
  13. package/dist/@types/layout/Cards/Card.svelte.d.ts +43 -0
  14. package/dist/@types/layout/Cards/Cards.svelte.d.ts +51 -0
  15. package/dist/@types/layout/Grid/Grid.svelte.d.ts +10 -4
  16. package/dist/@types/layout/Hero/Hero.svelte.d.ts +6 -4
  17. package/dist/@types/layout/Highlight/Highlight.svelte.d.ts +4 -4
  18. package/dist/@types/layout/NavSections/NavSection.svelte.d.ts +2 -2
  19. package/dist/@types/layout/NavSections/NavSections.svelte.d.ts +16 -2
  20. package/dist/@types/layout/Scroller/Scroller.svelte.d.ts +2 -2
  21. package/dist/@types/layout/Scroller/ScrollerSection.svelte.d.ts +2 -2
  22. package/dist/@types/layout/Section/Section.svelte.d.ts +6 -4
  23. package/dist/@types/layout/ShareButtons/ShareButtons.svelte.d.ts +2 -2
  24. package/dist/@types/layout/Tabs/Tab.svelte.d.ts +2 -2
  25. package/dist/@types/wrappers/Container/Container.svelte.d.ts +6 -2
  26. package/dist/@types/wrappers/Theme/Theme.svelte.d.ts +4 -0
  27. package/dist/decorators/Divider/Divider.svelte +2 -2
  28. package/dist/index.js +2 -0
  29. package/dist/layout/AnalyticsBanner/AnalyticsBanner.svelte +5 -5
  30. package/dist/layout/Breadcrumb/Breadcrumb.svelte +2 -2
  31. package/dist/layout/Cards/Card.svelte +85 -0
  32. package/dist/layout/Cards/Cards.svelte +95 -0
  33. package/dist/layout/Grid/Grid.svelte +26 -5
  34. package/dist/layout/Hero/Hero.svelte +10 -3
  35. package/dist/layout/Highlight/Highlight.svelte +2 -2
  36. package/dist/layout/NavSections/NavSections.svelte +64 -8
  37. package/dist/layout/Section/Section.svelte +9 -2
  38. package/dist/layout/ShareButtons/ShareButtons.svelte +1 -1
  39. package/dist/wrappers/Container/Container.svelte +45 -11
  40. package/dist/wrappers/Theme/Theme.svelte +11 -2
  41. package/package.json +3 -1
@@ -3,7 +3,7 @@
3
3
  /** @typedef {typeof __propDef.slots} DividerSlots */
4
4
  export default class Divider extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
- width?: "narrow" | "medium" | "wide" | "full";
6
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
7
7
  marginTop?: boolean;
8
8
  marginBottom?: boolean;
9
9
  themeOverrides?: any;
@@ -19,7 +19,7 @@ import { SvelteComponentTyped } from "svelte";
19
19
  declare const __propDef: {
20
20
  props: {
21
21
  theme?: "light" | "dark" | "lightblue";
22
- width?: "narrow" | "medium" | "wide" | "full";
22
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
23
23
  marginTop?: boolean;
24
24
  marginBottom?: boolean;
25
25
  themeOverrides?: object;
@@ -5,6 +5,8 @@ export { default as Theme } from "./wrappers/Theme/Theme.svelte";
5
5
  export { default as Accordion } from "./layout/Accordion/Accordion.svelte";
6
6
  export { default as Backlink } from "./layout/Backlink/Backlink.svelte";
7
7
  export { default as Breadcrumb } from "./layout/Breadcrumb/Breadcrumb.svelte";
8
+ export { default as Cards } from "./layout/Cards/Cards.svelte";
9
+ export { default as Card } from "./layout/Cards/Card.svelte";
8
10
  export { default as Contents } from "./layout/Contents/Contents.svelte";
9
11
  export { default as ErrorPage } from "./layout/ErrorPage/ErrorPage.svelte";
10
12
  export { default as Footer } from "./layout/Footer/Footer.svelte";
@@ -2,8 +2,8 @@
2
2
  /** @typedef {typeof __propDef.events} CheckboxEvents */
3
3
  /** @typedef {typeof __propDef.slots} CheckboxSlots */
4
4
  export default class Checkbox extends SvelteComponentTyped<{
5
- label: string;
6
5
  id: string;
6
+ label: string;
7
7
  compact?: boolean;
8
8
  description?: string;
9
9
  variant?: "default" | "ghost";
@@ -22,8 +22,8 @@ export type CheckboxSlots = typeof __propDef.slots;
22
22
  import { SvelteComponentTyped } from "svelte";
23
23
  declare const __propDef: {
24
24
  props: {
25
- label: string;
26
25
  id: string;
26
+ label: string;
27
27
  compact?: boolean;
28
28
  description?: string;
29
29
  variant?: "default" | "ghost";
@@ -2,8 +2,8 @@
2
2
  /** @typedef {typeof __propDef.events} DropdownEvents */
3
3
  /** @typedef {typeof __propDef.slots} DropdownSlots */
4
4
  export default class Dropdown extends SvelteComponentTyped<{
5
- label?: string;
6
5
  id?: string;
6
+ label?: string;
7
7
  value?: any;
8
8
  hideLabel?: boolean;
9
9
  placeholder?: string;
@@ -20,8 +20,8 @@ export type DropdownSlots = typeof __propDef.slots;
20
20
  import { SvelteComponentTyped } from "svelte";
21
21
  declare const __propDef: {
22
22
  props: {
23
- label?: string;
24
23
  id?: string;
24
+ label?: string;
25
25
  value?: object;
26
26
  hideLabel?: boolean;
27
27
  placeholder?: string;
@@ -2,9 +2,9 @@
2
2
  /** @typedef {typeof __propDef.events} InputEvents */
3
3
  /** @typedef {typeof __propDef.slots} InputSlots */
4
4
  export default class Input extends SvelteComponentTyped<{
5
+ id?: string;
5
6
  width?: number;
6
7
  label?: string;
7
- id?: string;
8
8
  numeric?: boolean;
9
9
  error?: boolean;
10
10
  pattern?: string;
@@ -27,9 +27,9 @@ export type InputSlots = typeof __propDef.slots;
27
27
  import { SvelteComponentTyped } from "svelte";
28
28
  declare const __propDef: {
29
29
  props: {
30
+ id?: string;
30
31
  width?: number;
31
32
  label?: string;
32
- id?: string;
33
33
  numeric?: boolean;
34
34
  error?: boolean;
35
35
  pattern?: string;
@@ -2,8 +2,8 @@
2
2
  /** @typedef {typeof __propDef.events} RadioEvents */
3
3
  /** @typedef {typeof __propDef.slots} RadioSlots */
4
4
  export default class Radio extends SvelteComponentTyped<{
5
- label: string;
6
5
  id: string;
6
+ label: string;
7
7
  groupId: string;
8
8
  compact?: boolean;
9
9
  value?: string;
@@ -20,8 +20,8 @@ export type RadioSlots = typeof __propDef.slots;
20
20
  import { SvelteComponentTyped } from "svelte";
21
21
  declare const __propDef: {
22
22
  props: {
23
- label: string;
24
23
  id: string;
24
+ label: string;
25
25
  groupId: string;
26
26
  compact?: boolean;
27
27
  value?: string;
@@ -2,9 +2,9 @@
2
2
  /** @typedef {typeof __propDef.events} RadiosEvents */
3
3
  /** @typedef {typeof __propDef.slots} RadiosSlots */
4
4
  export default class Radios extends SvelteComponentTyped<{
5
+ id?: string;
5
6
  label?: string;
6
7
  compact?: boolean;
7
- id?: string;
8
8
  items?: any[];
9
9
  value?: string;
10
10
  }, {
@@ -21,9 +21,9 @@ export type RadiosSlots = typeof __propDef.slots;
21
21
  import { SvelteComponentTyped } from "svelte";
22
22
  declare const __propDef: {
23
23
  props: {
24
+ id?: string;
24
25
  label?: string;
25
26
  compact?: boolean;
26
- id?: string;
27
27
  items?: any[];
28
28
  value?: string;
29
29
  };
@@ -2,9 +2,9 @@
2
2
  /** @typedef {typeof __propDef.events} SelectEvents */
3
3
  /** @typedef {typeof __propDef.slots} SelectSlots */
4
4
  export default class Select extends SvelteComponentTyped<{
5
+ id?: string;
5
6
  width?: number;
6
7
  label?: string;
7
- id?: string;
8
8
  mode?: "default" | "search";
9
9
  value?: any;
10
10
  hideLabel?: boolean;
@@ -35,9 +35,9 @@ export type SelectSlots = typeof __propDef.slots;
35
35
  import { SvelteComponentTyped } from "svelte";
36
36
  declare const __propDef: {
37
37
  props: {
38
+ id?: string;
38
39
  width?: number;
39
40
  label?: string;
40
- id?: string;
41
41
  mode?: "default" | "search";
42
42
  value?: object;
43
43
  hideLabel?: boolean;
@@ -2,9 +2,9 @@
2
2
  /** @typedef {typeof __propDef.events} TextareaEvents */
3
3
  /** @typedef {typeof __propDef.slots} TextareaSlots */
4
4
  export default class Textarea extends SvelteComponentTyped<{
5
+ id?: string;
5
6
  width?: number;
6
7
  label?: string;
7
- id?: string;
8
8
  value?: string;
9
9
  description?: string;
10
10
  hideLabel?: boolean;
@@ -20,9 +20,9 @@ export type TextareaSlots = typeof __propDef.slots;
20
20
  import { SvelteComponentTyped } from "svelte";
21
21
  declare const __propDef: {
22
22
  props: {
23
+ id?: string;
23
24
  width?: number;
24
25
  label?: string;
25
- id?: string;
26
26
  value?: string;
27
27
  description?: string;
28
28
  hideLabel?: boolean;
@@ -2,8 +2,8 @@
2
2
  /** @typedef {typeof __propDef.events} AccordionItemEvents */
3
3
  /** @typedef {typeof __propDef.slots} AccordionItemSlots */
4
4
  export default class AccordionItem extends SvelteComponentTyped<{
5
- title?: string;
6
5
  id?: string;
6
+ title?: string;
7
7
  open?: boolean;
8
8
  }, {
9
9
  [evt: string]: CustomEvent<any>;
@@ -17,8 +17,8 @@ export type AccordionItemSlots = typeof __propDef.slots;
17
17
  import { SvelteComponentTyped } from "svelte";
18
18
  declare const __propDef: {
19
19
  props: {
20
- title?: string;
21
20
  id?: string;
21
+ title?: string;
22
22
  open?: boolean;
23
23
  };
24
24
  events: {
@@ -3,7 +3,7 @@ export function analyticsEvent(props: any): void;
3
3
  /** @typedef {typeof __propDef.events} AnalyticsBannerEvents */
4
4
  /** @typedef {typeof __propDef.slots} AnalyticsBannerSlots */
5
5
  export default class AnalyticsBanner extends SvelteComponentTyped<{
6
- width?: "medium" | "wide";
6
+ width?: "wide" | "wider";
7
7
  analyticsId?: string;
8
8
  analyticsProps?: any;
9
9
  usageCookies?: boolean;
@@ -17,7 +17,7 @@ export type AnalyticsBannerSlots = typeof __propDef.slots;
17
17
  import { SvelteComponentTyped } from "svelte";
18
18
  declare const __propDef: {
19
19
  props: {
20
- width?: "medium" | "wide";
20
+ width?: "wide" | "wider";
21
21
  analyticsId?: string;
22
22
  analyticsProps?: object;
23
23
  usageCookies?: boolean;
@@ -4,7 +4,7 @@
4
4
  export default class Breadcrumb extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
6
  background?: string;
7
- width?: "narrow" | "medium" | "wide" | "full";
7
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
8
8
  themeOverrides?: any;
9
9
  links?: any[];
10
10
  }, {
@@ -19,7 +19,7 @@ declare const __propDef: {
19
19
  props: {
20
20
  theme?: "light" | "dark" | "lightblue";
21
21
  background?: string;
22
- width?: "narrow" | "medium" | "wide" | "full";
22
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
23
23
  themeOverrides?: object;
24
24
  links?: any[];
25
25
  };
@@ -0,0 +1,43 @@
1
+ /** @typedef {typeof __propDef.props} CardProps */
2
+ /** @typedef {typeof __propDef.events} CardEvents */
3
+ /** @typedef {typeof __propDef.slots} CardSlots */
4
+ export default class Card extends SvelteComponentTyped<{
5
+ id?: any;
6
+ title?: string;
7
+ href?: string;
8
+ hideTitle?: boolean;
9
+ noBackground?: any;
10
+ image?: string;
11
+ imageAlt?: string;
12
+ colspan?: number;
13
+ grow?: boolean;
14
+ }, {
15
+ [evt: string]: CustomEvent<any>;
16
+ }, {
17
+ default: {};
18
+ }> {
19
+ }
20
+ export type CardProps = typeof __propDef.props;
21
+ export type CardEvents = typeof __propDef.events;
22
+ export type CardSlots = typeof __propDef.slots;
23
+ import { SvelteComponentTyped } from "svelte";
24
+ declare const __propDef: {
25
+ props: {
26
+ id?: any;
27
+ title?: string;
28
+ href?: string;
29
+ hideTitle?: boolean;
30
+ noBackground?: any;
31
+ image?: string;
32
+ imageAlt?: string;
33
+ colspan?: number;
34
+ grow?: boolean;
35
+ };
36
+ events: {
37
+ [evt: string]: CustomEvent<any>;
38
+ };
39
+ slots: {
40
+ default: {};
41
+ };
42
+ };
43
+ export {};
@@ -0,0 +1,51 @@
1
+ /** @typedef {typeof __propDef.props} CardsProps */
2
+ /** @typedef {typeof __propDef.events} CardsEvents */
3
+ /** @typedef {typeof __propDef.slots} CardsSlots */
4
+ export default class Cards extends SvelteComponentTyped<{
5
+ theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
7
+ cls?: string;
8
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
9
+ height?: string | number;
10
+ marginTop?: boolean;
11
+ marginBottom?: boolean;
12
+ themeOverrides?: any;
13
+ title?: string;
14
+ hideTitle?: boolean;
15
+ colwidth?: "narrow" | "medium" | "wide" | "full";
16
+ gap?: number;
17
+ noBackground?: boolean;
18
+ }, {
19
+ [evt: string]: CustomEvent<any>;
20
+ }, {
21
+ default: {};
22
+ }> {
23
+ }
24
+ export type CardsProps = typeof __propDef.props;
25
+ export type CardsEvents = typeof __propDef.events;
26
+ export type CardsSlots = typeof __propDef.slots;
27
+ import { SvelteComponentTyped } from "svelte";
28
+ declare const __propDef: {
29
+ props: {
30
+ theme?: "light" | "dark" | "lightblue";
31
+ id?: string;
32
+ cls?: string;
33
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
34
+ height?: number | string;
35
+ marginTop?: boolean;
36
+ marginBottom?: boolean;
37
+ themeOverrides?: object;
38
+ title?: string;
39
+ hideTitle?: boolean;
40
+ colwidth?: "narrow" | "medium" | "wide" | "full";
41
+ gap?: number;
42
+ noBackground?: boolean;
43
+ };
44
+ events: {
45
+ [evt: string]: CustomEvent<any>;
46
+ };
47
+ slots: {
48
+ default: {};
49
+ };
50
+ };
51
+ export {};
@@ -3,13 +3,16 @@
3
3
  /** @typedef {typeof __propDef.slots} GridSlots */
4
4
  export default class Grid extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
- width?: "narrow" | "medium" | "wide" | "full";
6
+ id?: string;
7
+ cls?: string;
8
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
7
9
  height?: string | number;
8
10
  marginTop?: boolean;
9
11
  marginBottom?: boolean;
10
12
  themeOverrides?: any;
11
13
  caption?: string;
12
- id?: string;
14
+ title?: string;
15
+ hideTitle?: boolean;
13
16
  colwidth?: "narrow" | "medium" | "wide" | "full";
14
17
  gap?: number;
15
18
  }, {
@@ -25,13 +28,16 @@ import { SvelteComponentTyped } from "svelte";
25
28
  declare const __propDef: {
26
29
  props: {
27
30
  theme?: "light" | "dark" | "lightblue";
28
- width?: "narrow" | "medium" | "wide" | "full";
31
+ id?: string;
32
+ cls?: string;
33
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
29
34
  height?: number | string;
30
35
  marginTop?: boolean;
31
36
  marginBottom?: boolean;
32
37
  themeOverrides?: object;
33
38
  caption?: string;
34
- id?: string;
39
+ title?: string;
40
+ hideTitle?: boolean;
35
41
  colwidth?: "narrow" | "medium" | "wide" | "full";
36
42
  gap?: number;
37
43
  };
@@ -3,12 +3,13 @@
3
3
  /** @typedef {typeof __propDef.slots} HeroSlots */
4
4
  export default class Hero extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
7
+ cls?: string;
6
8
  background?: string;
7
- width?: "narrow" | "medium" | "wide" | "full";
9
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
8
10
  height?: "full" | "auto" | "tall";
9
11
  themeOverrides?: any;
10
12
  title?: string;
11
- id?: string;
12
13
  lede?: string;
13
14
  date?: string;
14
15
  }, {
@@ -24,12 +25,13 @@ import { SvelteComponentTyped } from "svelte";
24
25
  declare const __propDef: {
25
26
  props: {
26
27
  theme?: "light" | "dark" | "lightblue";
28
+ id?: string;
29
+ cls?: string;
27
30
  background?: string;
28
- width?: "narrow" | "medium" | "wide" | "full";
31
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
29
32
  height?: "auto" | "tall" | "full";
30
33
  themeOverrides?: object;
31
34
  title?: string;
32
- id?: string;
33
35
  lede?: string;
34
36
  date?: string;
35
37
  };
@@ -3,13 +3,13 @@
3
3
  /** @typedef {typeof __propDef.slots} HighlightSlots */
4
4
  export default class Highlight extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
6
7
  background?: string;
7
- width?: "narrow" | "medium" | "wide" | "full";
8
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
8
9
  height?: "full" | "auto" | "tall";
9
10
  marginTop?: boolean;
10
11
  marginBottom?: boolean;
11
12
  themeOverrides?: any;
12
- id?: string;
13
13
  }, {
14
14
  [evt: string]: CustomEvent<any>;
15
15
  }, {
@@ -23,13 +23,13 @@ import { SvelteComponentTyped } from "svelte";
23
23
  declare const __propDef: {
24
24
  props: {
25
25
  theme?: "light" | "dark" | "lightblue";
26
+ id?: string;
26
27
  background?: string;
27
- width?: "narrow" | "medium" | "wide" | "full";
28
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
28
29
  height?: "auto" | "tall" | "full";
29
30
  marginTop?: boolean;
30
31
  marginBottom?: boolean;
31
32
  themeOverrides?: object;
32
- id?: string;
33
33
  };
34
34
  events: {
35
35
  [evt: string]: CustomEvent<any>;
@@ -2,9 +2,9 @@
2
2
  /** @typedef {typeof __propDef.events} NavSectionEvents */
3
3
  /** @typedef {typeof __propDef.slots} NavSectionSlots */
4
4
  export default class NavSection extends SvelteComponentTyped<{
5
+ id?: string;
5
6
  title?: string;
6
7
  hideTitle?: boolean;
7
- id?: string;
8
8
  }, {
9
9
  [evt: string]: CustomEvent<any>;
10
10
  }, {
@@ -17,9 +17,9 @@ export type NavSectionSlots = typeof __propDef.slots;
17
17
  import { SvelteComponentTyped } from "svelte";
18
18
  declare const __propDef: {
19
19
  props: {
20
+ id?: string;
20
21
  title?: string;
21
22
  hideTitle?: boolean;
22
- id?: string;
23
23
  };
24
24
  events: {
25
25
  [evt: string]: CustomEvent<any>;
@@ -2,7 +2,14 @@
2
2
  /** @typedef {typeof __propDef.events} NavSectionsEvents */
3
3
  /** @typedef {typeof __propDef.slots} NavSectionsSlots */
4
4
  export default class NavSections extends SvelteComponentTyped<{
5
- tocId?: string;
5
+ theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
7
+ cls?: string;
8
+ background?: string;
9
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
10
+ marginTop?: boolean;
11
+ marginBottom?: boolean;
12
+ themeOverrides?: any;
6
13
  contentsLabel?: string;
7
14
  noContents?: boolean;
8
15
  }, {
@@ -23,7 +30,14 @@ export type NavSectionsSlots = typeof __propDef.slots;
23
30
  import { SvelteComponentTyped } from "svelte";
24
31
  declare const __propDef: {
25
32
  props: {
26
- tocId?: string;
33
+ theme?: "light" | "dark" | "lightblue";
34
+ id?: string;
35
+ cls?: string;
36
+ background?: string;
37
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
38
+ marginTop?: boolean;
39
+ marginBottom?: boolean;
40
+ themeOverrides?: object;
27
41
  contentsLabel?: string;
28
42
  noContents?: boolean;
29
43
  };
@@ -2,9 +2,9 @@
2
2
  /** @typedef {typeof __propDef.events} ScrollerEvents */
3
3
  /** @typedef {typeof __propDef.slots} ScrollerSlots */
4
4
  export default class Scroller extends SvelteComponentTyped<{
5
+ id?: string;
5
6
  marginBottom?: boolean;
6
7
  progress?: number;
7
- id?: string;
8
8
  splitscreen?: boolean;
9
9
  threshold?: number;
10
10
  count?: number;
@@ -27,9 +27,9 @@ export type ScrollerSlots = typeof __propDef.slots;
27
27
  import { SvelteComponentTyped } from "svelte";
28
28
  declare const __propDef: {
29
29
  props: {
30
+ id?: string;
30
31
  marginBottom?: boolean;
31
32
  progress?: number;
32
- id?: string;
33
33
  splitscreen?: boolean;
34
34
  threshold?: number;
35
35
  count?: number;
@@ -3,9 +3,9 @@
3
3
  /** @typedef {typeof __propDef.slots} ScrollerSectionSlots */
4
4
  export default class ScrollerSection extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
6
7
  title?: string;
7
8
  hideTitle?: boolean;
8
- id?: string;
9
9
  }, {
10
10
  [evt: string]: CustomEvent<any>;
11
11
  }, {
@@ -19,9 +19,9 @@ import { SvelteComponentTyped } from "svelte";
19
19
  declare const __propDef: {
20
20
  props: {
21
21
  theme?: "light" | "dark" | "lightblue";
22
+ id?: string;
22
23
  title?: string;
23
24
  hideTitle?: boolean;
24
- id?: string;
25
25
  };
26
26
  events: {
27
27
  [evt: string]: CustomEvent<any>;
@@ -3,14 +3,15 @@
3
3
  /** @typedef {typeof __propDef.slots} SectionSlots */
4
4
  export default class Section extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
7
+ cls?: string;
6
8
  background?: string;
7
- width?: "narrow" | "medium" | "wide" | "full";
9
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
8
10
  marginTop?: boolean;
9
11
  marginBottom?: boolean;
10
12
  themeOverrides?: any;
11
13
  title?: string;
12
14
  hideTitle?: boolean;
13
- id?: string;
14
15
  }, {
15
16
  [evt: string]: CustomEvent<any>;
16
17
  }, {
@@ -24,14 +25,15 @@ import { SvelteComponentTyped } from "svelte";
24
25
  declare const __propDef: {
25
26
  props: {
26
27
  theme?: "light" | "dark" | "lightblue";
28
+ id?: string;
29
+ cls?: string;
27
30
  background?: string;
28
- width?: "narrow" | "medium" | "wide" | "full";
31
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
29
32
  marginTop?: boolean;
30
33
  marginBottom?: boolean;
31
34
  themeOverrides?: object;
32
35
  title?: string;
33
36
  hideTitle?: boolean;
34
- id?: string;
35
37
  };
36
38
  events: {
37
39
  [evt: string]: CustomEvent<any>;
@@ -3,7 +3,7 @@
3
3
  /** @typedef {typeof __propDef.slots} ShareButtonsSlots */
4
4
  export default class ShareButtons extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
- width?: "narrow" | "medium" | "wide" | "full";
6
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
7
7
  marginTop?: boolean;
8
8
  marginBottom?: boolean;
9
9
  themeOverrides?: any;
@@ -19,7 +19,7 @@ import { SvelteComponentTyped } from "svelte";
19
19
  declare const __propDef: {
20
20
  props: {
21
21
  theme?: "light" | "dark" | "lightblue";
22
- width?: "narrow" | "medium" | "wide" | "full";
22
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
23
23
  marginTop?: boolean;
24
24
  marginBottom?: boolean;
25
25
  themeOverrides?: object;
@@ -2,9 +2,9 @@
2
2
  /** @typedef {typeof __propDef.events} TabEvents */
3
3
  /** @typedef {typeof __propDef.slots} TabSlots */
4
4
  export default class Tab extends SvelteComponentTyped<{
5
+ id?: string;
5
6
  title?: string;
6
7
  hideTitle?: boolean;
7
- id?: string;
8
8
  }, {
9
9
  [evt: string]: CustomEvent<any>;
10
10
  }, {
@@ -17,9 +17,9 @@ export type TabSlots = typeof __propDef.slots;
17
17
  import { SvelteComponentTyped } from "svelte";
18
18
  declare const __propDef: {
19
19
  props: {
20
+ id?: string;
20
21
  title?: string;
21
22
  hideTitle?: boolean;
22
- id?: string;
23
23
  };
24
24
  events: {
25
25
  [evt: string]: CustomEvent<any>;
@@ -3,8 +3,10 @@
3
3
  /** @typedef {typeof __propDef.slots} ContainerSlots */
4
4
  export default class Container extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
7
+ cls?: string;
6
8
  background?: string;
7
- width?: "narrow" | "medium" | "wide" | "full";
9
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
8
10
  height?: "full" | "auto" | "tall";
9
11
  marginTop?: boolean;
10
12
  marginBottom?: boolean;
@@ -22,8 +24,10 @@ import { SvelteComponentTyped } from "svelte";
22
24
  declare const __propDef: {
23
25
  props: {
24
26
  theme?: "light" | "dark" | "lightblue";
27
+ id?: string;
28
+ cls?: string;
25
29
  background?: string;
26
- width?: "narrow" | "medium" | "wide" | "full";
30
+ width?: "narrow" | "medium" | "wide" | "wider" | "full";
27
31
  height?: "auto" | "tall" | "full";
28
32
  marginTop?: boolean;
29
33
  marginBottom?: boolean;
@@ -3,6 +3,8 @@
3
3
  /** @typedef {typeof __propDef.slots} ThemeSlots */
4
4
  export default class Theme extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
+ id?: string;
7
+ cls?: string;
6
8
  global?: boolean;
7
9
  overrides?: any;
8
10
  background?: string;
@@ -19,6 +21,8 @@ import { SvelteComponentTyped } from "svelte";
19
21
  declare const __propDef: {
20
22
  props: {
21
23
  theme?: "light" | "dark" | "lightblue";
24
+ id?: string;
25
+ cls?: string;
22
26
  global?: boolean;
23
27
  overrides?: object;
24
28
  background?: string;
@@ -8,9 +8,9 @@
8
8
  export let hr = "narrow";
9
9
  /**
10
10
  * Sets the width of the container
11
- * @type {"narrow"|"medium"|"wide"|"full"}
11
+ * @type {"narrow"|"medium"|"wide"|"wider"|"full"}
12
12
  */
13
- export let width = "medium";
13
+ export let width = "wide";
14
14
  /**
15
15
  * Sets a predefined theme
16
16
  * @type {"light"|"dark"|"lightblue"}