@onsvisual/svelte-components 0.0.6 → 0.0.8

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 (61) hide show
  1. package/dist/@types/datavis/Table/Table.svelte.d.ts +4 -4
  2. package/dist/@types/datavis/shared/data.d.ts +6 -0
  3. package/dist/@types/index.d.ts +1 -0
  4. package/dist/@types/inputs/Button/Button.svelte.d.ts +2 -2
  5. package/dist/@types/inputs/Dropdown/Dropdown.svelte.d.ts +2 -2
  6. package/dist/@types/inputs/ErrorSummary/ErrorSummary.svelte.d.ts +27 -0
  7. package/dist/@types/inputs/Input/Input.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 +30 -0
  12. package/dist/@types/layout/BackLink/Backlink.svelte.d.ts +23 -0
  13. package/dist/@types/layout/Breadcrumb/Breadcrumb.svelte.d.ts +23 -0
  14. package/dist/@types/layout/Contents/Contents.svelte.d.ts +29 -0
  15. package/dist/@types/layout/ErrorPage/ErrorPage.svelte.d.ts +25 -0
  16. package/dist/@types/layout/Grid/Grid.svelte.d.ts +2 -2
  17. package/dist/@types/layout/Header/Header.svelte.d.ts +2 -2
  18. package/dist/@types/layout/Hero/Hero.svelte.d.ts +2 -2
  19. package/dist/@types/layout/NavSections/NavSection.svelte.d.ts +2 -2
  20. package/dist/@types/layout/Notice/Notice.svelte.d.ts +31 -0
  21. package/dist/@types/layout/PhaseBanner/PhaseBanner.svelte.d.ts +25 -0
  22. package/dist/@types/layout/Scroller/Scroller.svelte.d.ts +2 -2
  23. package/dist/@types/layout/Scroller/ScrollerSection.svelte.d.ts +2 -2
  24. package/dist/@types/layout/Section/Section.svelte.d.ts +2 -2
  25. package/dist/@types/layout/ShareButtons/ShareButtons.svelte.d.ts +33 -0
  26. package/dist/@types/layout/Summary/Summary.svelte.d.ts +25 -0
  27. package/dist/@types/layout/Survey/Survey.svelte.d.ts +23 -0
  28. package/dist/@types/layout/Survey/init-survey.d.ts +1 -0
  29. package/dist/@types/layout/Tabs/Tab.svelte.d.ts +31 -0
  30. package/dist/@types/layout/Tabs/Tabs.svelte.d.ts +27 -0
  31. package/dist/@types/layout/TitleBlock/TitleBlock.svelte.d.ts +2 -2
  32. package/dist/datavis/Table/Table.svelte +1 -1
  33. package/dist/datavis/shared/data.js +18 -0
  34. package/dist/decorators/Divider/Divider.svelte +1 -1
  35. package/dist/index.js +2 -0
  36. package/dist/inputs/ErrorSummary/ErrorSummary.svelte +21 -0
  37. package/dist/layout/Accordion/AccordionItem.svelte +1 -1
  38. package/dist/layout/AnalyticsBanner/AnalyticsBanner.svelte +256 -0
  39. package/dist/layout/BackLink/Backlink.svelte +32 -0
  40. package/dist/layout/Breadcrumb/Breadcrumb.svelte +39 -0
  41. package/dist/layout/Contents/Contents.svelte +44 -0
  42. package/dist/layout/ErrorPage/ErrorPage.svelte +39 -0
  43. package/dist/layout/Filler/Filler.svelte +1 -1
  44. package/dist/layout/Footer/Footer.svelte +1 -1
  45. package/dist/layout/Grid/Grid.svelte +1 -1
  46. package/dist/layout/Header/Header.svelte +2 -2
  47. package/dist/layout/Hero/Hero.svelte +2 -2
  48. package/dist/layout/NavSections/NavSection.svelte +3 -3
  49. package/dist/layout/Notice/Notice.svelte +54 -0
  50. package/dist/layout/PhaseBanner/PhaseBanner.svelte +40 -0
  51. package/dist/layout/Scroller/ScrollerSection.svelte +3 -3
  52. package/dist/layout/Section/Section.svelte +4 -4
  53. package/dist/layout/ShareButtons/ShareButtons.svelte +177 -0
  54. package/dist/layout/Summary/Summary.svelte +51 -0
  55. package/dist/layout/Survey/Survey.svelte +96 -0
  56. package/dist/layout/Survey/init-survey.js +230 -0
  57. package/dist/layout/Tabs/Tab.svelte +48 -0
  58. package/dist/layout/Tabs/Tabs.svelte +85 -0
  59. package/dist/layout/TitleBlock/Meta.svelte +1 -1
  60. package/dist/layout/TitleBlock/TitleBlock.svelte +1 -1
  61. package/package.json +17 -1
@@ -2,11 +2,11 @@
2
2
  /** @typedef {typeof __propDef.events} TableEvents */
3
3
  /** @typedef {typeof __propDef.slots} TableSlots */
4
4
  export default class Table extends SvelteComponentTyped<{
5
- compact?: boolean;
5
+ data?: any[];
6
6
  title?: string;
7
+ compact?: boolean;
7
8
  responsive?: boolean;
8
9
  rowHover?: boolean;
9
- data?: any[];
10
10
  columns?: any[];
11
11
  }, {
12
12
  [evt: string]: CustomEvent<any>;
@@ -18,11 +18,11 @@ export type TableSlots = typeof __propDef.slots;
18
18
  import { SvelteComponentTyped } from "svelte";
19
19
  declare const __propDef: {
20
20
  props: {
21
- compact?: boolean;
21
+ data?: any[];
22
22
  title?: string;
23
+ compact?: boolean;
23
24
  responsive?: boolean;
24
25
  rowHover?: boolean;
25
- data?: any[];
26
26
  columns?: any[];
27
27
  };
28
28
  events: {
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ year: number;
3
+ value: number;
4
+ group: string;
5
+ }[];
6
+ export default _default;
@@ -3,6 +3,7 @@ export { default as Embed } from "./wrappers/Embed/Embed.svelte";
3
3
  export { default as Main } from "./wrappers/Main/Main.svelte";
4
4
  export { default as Theme } from "./wrappers/Theme/Theme.svelte";
5
5
  export { default as Accordion } from "./layout/Accordion/Accordion.svelte";
6
+ export { default as AnalyticsBanner } from "./layout/AnalyticsBanner/AnalyticsBanner.svelte";
6
7
  export { default as Filler } from "./layout/Filler/Filler.svelte";
7
8
  export { default as Footer } from "./layout/Footer/Footer.svelte";
8
9
  export { default as Grid } from "./layout/Grid/Grid.svelte";
@@ -2,10 +2,10 @@
2
2
  /** @typedef {typeof __propDef.events} ButtonEvents */
3
3
  /** @typedef {typeof __propDef.slots} ButtonSlots */
4
4
  export default class Button extends SvelteComponentTyped<{
5
+ small?: boolean;
5
6
  type?: "button" | "reset" | "sumbit";
6
7
  variant?: "primary" | "secondary" | "ghost";
7
8
  href?: string;
8
- small?: boolean;
9
9
  icon?: string;
10
10
  iconPosition?: "before" | "after";
11
11
  disabled?: boolean;
@@ -23,10 +23,10 @@ export type ButtonSlots = typeof __propDef.slots;
23
23
  import { SvelteComponentTyped } from "svelte";
24
24
  declare const __propDef: {
25
25
  props: {
26
+ small?: boolean;
26
27
  type?: "button" | "sumbit" | "reset";
27
28
  variant?: "primary" | "secondary" | "ghost";
28
29
  href?: string;
29
- small?: boolean;
30
30
  icon?: string;
31
31
  iconPosition?: "before" | "after";
32
32
  disabled?: boolean;
@@ -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
- id?: string;
6
5
  label?: string;
6
+ id?: string;
7
7
  hideLabel?: boolean;
8
8
  placeholder?: string;
9
9
  value?: any;
@@ -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
- id?: string;
24
23
  label?: string;
24
+ id?: string;
25
25
  hideLabel?: boolean;
26
26
  placeholder?: string;
27
27
  value?: object;
@@ -0,0 +1,27 @@
1
+ /** @typedef {typeof __propDef.props} ErrorSummaryProps */
2
+ /** @typedef {typeof __propDef.events} ErrorSummaryEvents */
3
+ /** @typedef {typeof __propDef.slots} ErrorSummarySlots */
4
+ export default class ErrorSummary extends SvelteComponentTyped<{
5
+ title?: string;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {
9
+ default: {};
10
+ }> {
11
+ }
12
+ export type ErrorSummaryProps = typeof __propDef.props;
13
+ export type ErrorSummaryEvents = typeof __propDef.events;
14
+ export type ErrorSummarySlots = typeof __propDef.slots;
15
+ import { SvelteComponentTyped } from "svelte";
16
+ declare const __propDef: {
17
+ props: {
18
+ title?: string;
19
+ };
20
+ events: {
21
+ [evt: string]: CustomEvent<any>;
22
+ };
23
+ slots: {
24
+ default: {};
25
+ };
26
+ };
27
+ export {};
@@ -3,8 +3,8 @@
3
3
  /** @typedef {typeof __propDef.slots} InputSlots */
4
4
  export default class Input extends SvelteComponentTyped<{
5
5
  width?: number;
6
- id?: string;
7
6
  label?: string;
7
+ id?: string;
8
8
  numeric?: boolean;
9
9
  error?: boolean;
10
10
  hideLabel?: boolean;
@@ -28,8 +28,8 @@ import { SvelteComponentTyped } from "svelte";
28
28
  declare const __propDef: {
29
29
  props: {
30
30
  width?: number;
31
- id?: string;
32
31
  label?: string;
32
+ id?: string;
33
33
  numeric?: boolean;
34
34
  error?: boolean;
35
35
  hideLabel?: boolean;
@@ -3,8 +3,8 @@
3
3
  /** @typedef {typeof __propDef.slots} SelectSlots */
4
4
  export default class Select extends SvelteComponentTyped<{
5
5
  width?: number;
6
- id?: string;
7
6
  label?: string;
7
+ id?: string;
8
8
  mode?: "default" | "search";
9
9
  hideLabel?: boolean;
10
10
  placeholder?: string;
@@ -36,8 +36,8 @@ import { SvelteComponentTyped } from "svelte";
36
36
  declare const __propDef: {
37
37
  props: {
38
38
  width?: number;
39
- id?: string;
40
39
  label?: string;
40
+ id?: string;
41
41
  mode?: "default" | "search";
42
42
  hideLabel?: boolean;
43
43
  placeholder?: string;
@@ -3,8 +3,8 @@
3
3
  /** @typedef {typeof __propDef.slots} TextareaSlots */
4
4
  export default class Textarea extends SvelteComponentTyped<{
5
5
  width?: number;
6
- id?: string;
7
6
  label?: string;
7
+ id?: string;
8
8
  hideLabel?: boolean;
9
9
  value?: string;
10
10
  description?: string;
@@ -21,8 +21,8 @@ import { SvelteComponentTyped } from "svelte";
21
21
  declare const __propDef: {
22
22
  props: {
23
23
  width?: number;
24
- id?: string;
25
24
  label?: string;
25
+ id?: string;
26
26
  hideLabel?: boolean;
27
27
  value?: string;
28
28
  description?: string;
@@ -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
- id?: string;
6
5
  title?: string;
6
+ id?: 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
- id?: string;
21
20
  title?: string;
21
+ id?: string;
22
22
  open?: boolean;
23
23
  };
24
24
  events: {
@@ -0,0 +1,30 @@
1
+ export function analyticsEvent(props: any): void;
2
+ /** @typedef {typeof __propDef.props} AnalyticsBannerProps */
3
+ /** @typedef {typeof __propDef.events} AnalyticsBannerEvents */
4
+ /** @typedef {typeof __propDef.slots} AnalyticsBannerSlots */
5
+ export default class AnalyticsBanner extends SvelteComponentTyped<{
6
+ width?: "medium" | "wide";
7
+ analyticsId?: string;
8
+ analyticsProps?: any;
9
+ usageCookies?: boolean;
10
+ }, {
11
+ [evt: string]: CustomEvent<any>;
12
+ }, {}> {
13
+ }
14
+ export type AnalyticsBannerProps = typeof __propDef.props;
15
+ export type AnalyticsBannerEvents = typeof __propDef.events;
16
+ export type AnalyticsBannerSlots = typeof __propDef.slots;
17
+ import { SvelteComponentTyped } from "svelte";
18
+ declare const __propDef: {
19
+ props: {
20
+ width?: "medium" | "wide";
21
+ analyticsId?: string;
22
+ analyticsProps?: object;
23
+ usageCookies?: boolean;
24
+ };
25
+ events: {
26
+ [evt: string]: CustomEvent<any>;
27
+ };
28
+ slots: {};
29
+ };
30
+ export {};
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} BacklinkProps */
2
+ /** @typedef {typeof __propDef.events} BacklinkEvents */
3
+ /** @typedef {typeof __propDef.slots} BacklinkSlots */
4
+ export default class Backlink extends SvelteComponentTyped<{
5
+ href?: string;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type BacklinkProps = typeof __propDef.props;
11
+ export type BacklinkEvents = typeof __propDef.events;
12
+ export type BacklinkSlots = typeof __propDef.slots;
13
+ import { SvelteComponentTyped } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ href?: string;
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} BreadcrumbProps */
2
+ /** @typedef {typeof __propDef.events} BreadcrumbEvents */
3
+ /** @typedef {typeof __propDef.slots} BreadcrumbSlots */
4
+ export default class Breadcrumb extends SvelteComponentTyped<{
5
+ links?: any[];
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type BreadcrumbProps = typeof __propDef.props;
11
+ export type BreadcrumbEvents = typeof __propDef.events;
12
+ export type BreadcrumbSlots = typeof __propDef.slots;
13
+ import { SvelteComponentTyped } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ links?: any[];
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -0,0 +1,29 @@
1
+ /** @typedef {typeof __propDef.props} ContentsProps */
2
+ /** @typedef {typeof __propDef.events} ContentsEvents */
3
+ /** @typedef {typeof __propDef.slots} ContentsSlots */
4
+ export default class Contents extends SvelteComponentTyped<{
5
+ title?: string;
6
+ hideTitle?: boolean;
7
+ links?: any[];
8
+ skipHref?: string;
9
+ }, {
10
+ [evt: string]: CustomEvent<any>;
11
+ }, {}> {
12
+ }
13
+ export type ContentsProps = typeof __propDef.props;
14
+ export type ContentsEvents = typeof __propDef.events;
15
+ export type ContentsSlots = typeof __propDef.slots;
16
+ import { SvelteComponentTyped } from "svelte";
17
+ declare const __propDef: {
18
+ props: {
19
+ title?: string;
20
+ hideTitle?: boolean;
21
+ links?: any[];
22
+ skipHref?: string;
23
+ };
24
+ events: {
25
+ [evt: string]: CustomEvent<any>;
26
+ };
27
+ slots: {};
28
+ };
29
+ export {};
@@ -0,0 +1,25 @@
1
+ /** @typedef {typeof __propDef.props} ErrorPageProps */
2
+ /** @typedef {typeof __propDef.events} ErrorPageEvents */
3
+ /** @typedef {typeof __propDef.slots} ErrorPageSlots */
4
+ export default class ErrorPage extends SvelteComponentTyped<{
5
+ page?: any;
6
+ status?: number;
7
+ }, {
8
+ [evt: string]: CustomEvent<any>;
9
+ }, {}> {
10
+ }
11
+ export type ErrorPageProps = typeof __propDef.props;
12
+ export type ErrorPageEvents = typeof __propDef.events;
13
+ export type ErrorPageSlots = typeof __propDef.slots;
14
+ import { SvelteComponentTyped } from "svelte";
15
+ declare const __propDef: {
16
+ props: {
17
+ page?: any;
18
+ status?: number;
19
+ };
20
+ events: {
21
+ [evt: string]: CustomEvent<any>;
22
+ };
23
+ slots: {};
24
+ };
25
+ export {};
@@ -8,9 +8,9 @@ export default class Grid extends SvelteComponentTyped<{
8
8
  marginTop?: boolean;
9
9
  marginBottom?: boolean;
10
10
  themeOverrides?: any;
11
+ caption?: string;
11
12
  id?: string;
12
13
  colwidth?: "narrow" | "medium" | "wide" | "full";
13
- caption?: string;
14
14
  gap?: number;
15
15
  }, {
16
16
  [evt: string]: CustomEvent<any>;
@@ -30,9 +30,9 @@ declare const __propDef: {
30
30
  marginTop?: boolean;
31
31
  marginBottom?: boolean;
32
32
  themeOverrides?: object;
33
+ caption?: string;
33
34
  id?: string;
34
35
  colwidth?: "narrow" | "medium" | "wide" | "full";
35
- caption?: string;
36
36
  gap?: number;
37
37
  };
38
38
  events: {
@@ -4,8 +4,8 @@
4
4
  export default class Header extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark";
6
6
  themeOverrides?: any;
7
- compact?: boolean;
8
7
  title?: string;
8
+ compact?: boolean;
9
9
  titleHref?: string;
10
10
  }, {
11
11
  [evt: string]: CustomEvent<any>;
@@ -21,8 +21,8 @@ declare const __propDef: {
21
21
  props: {
22
22
  theme?: "light" | "dark";
23
23
  themeOverrides?: object;
24
- compact?: boolean;
25
24
  title?: string;
25
+ compact?: boolean;
26
26
  titleHref?: string;
27
27
  };
28
28
  events: {
@@ -7,8 +7,8 @@ export default class Hero extends SvelteComponentTyped<{
7
7
  width?: "narrow" | "medium" | "wide" | "full";
8
8
  height?: "full" | "auto" | "tall";
9
9
  themeOverrides?: any;
10
- id?: string;
11
10
  title?: string;
11
+ id?: string;
12
12
  lede?: string;
13
13
  date?: string;
14
14
  }, {
@@ -28,8 +28,8 @@ declare const __propDef: {
28
28
  width?: "narrow" | "medium" | "wide" | "full";
29
29
  height?: "auto" | "tall" | "full";
30
30
  themeOverrides?: object;
31
- id?: string;
32
31
  title?: string;
32
+ id?: string;
33
33
  lede?: string;
34
34
  date?: string;
35
35
  };
@@ -2,8 +2,8 @@
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;
6
5
  title?: string;
6
+ id?: string;
7
7
  hideTitle?: boolean;
8
8
  }, {
9
9
  [evt: string]: CustomEvent<any>;
@@ -17,8 +17,8 @@ export type NavSectionSlots = typeof __propDef.slots;
17
17
  import { SvelteComponentTyped } from "svelte";
18
18
  declare const __propDef: {
19
19
  props: {
20
- id?: string;
21
20
  title?: string;
21
+ id?: string;
22
22
  hideTitle?: boolean;
23
23
  };
24
24
  events: {
@@ -0,0 +1,31 @@
1
+ /** @typedef {typeof __propDef.props} NoticeProps */
2
+ /** @typedef {typeof __propDef.events} NoticeEvents */
3
+ /** @typedef {typeof __propDef.slots} NoticeSlots */
4
+ export default class Notice extends SvelteComponentTyped<{
5
+ title?: string;
6
+ mode?: "error" | "info" | "success" | "pending";
7
+ important?: boolean;
8
+ }, {
9
+ [evt: string]: CustomEvent<any>;
10
+ }, {
11
+ default: {};
12
+ }> {
13
+ }
14
+ export type NoticeProps = typeof __propDef.props;
15
+ export type NoticeEvents = typeof __propDef.events;
16
+ export type NoticeSlots = typeof __propDef.slots;
17
+ import { SvelteComponentTyped } from "svelte";
18
+ declare const __propDef: {
19
+ props: {
20
+ title?: string;
21
+ mode?: "info" | "success" | "pending" | "error";
22
+ important?: boolean;
23
+ };
24
+ events: {
25
+ [evt: string]: CustomEvent<any>;
26
+ };
27
+ slots: {
28
+ default: {};
29
+ };
30
+ };
31
+ export {};
@@ -0,0 +1,25 @@
1
+ /** @typedef {typeof __propDef.props} PhaseBannerProps */
2
+ /** @typedef {typeof __propDef.events} PhaseBannerEvents */
3
+ /** @typedef {typeof __propDef.slots} PhaseBannerSlots */
4
+ export default class PhaseBanner extends SvelteComponentTyped<{
5
+ href?: string;
6
+ phase?: string;
7
+ }, {
8
+ [evt: string]: CustomEvent<any>;
9
+ }, {}> {
10
+ }
11
+ export type PhaseBannerProps = typeof __propDef.props;
12
+ export type PhaseBannerEvents = typeof __propDef.events;
13
+ export type PhaseBannerSlots = typeof __propDef.slots;
14
+ import { SvelteComponentTyped } from "svelte";
15
+ declare const __propDef: {
16
+ props: {
17
+ href?: string;
18
+ phase?: string;
19
+ };
20
+ events: {
21
+ [evt: string]: CustomEvent<any>;
22
+ };
23
+ slots: {};
24
+ };
25
+ export {};
@@ -3,8 +3,8 @@
3
3
  /** @typedef {typeof __propDef.slots} ScrollerSlots */
4
4
  export default class Scroller extends SvelteComponentTyped<{
5
5
  marginBottom?: boolean;
6
- id?: string;
7
6
  progress?: number;
7
+ id?: string;
8
8
  splitscreen?: boolean;
9
9
  threshold?: number;
10
10
  count?: number;
@@ -28,8 +28,8 @@ import { SvelteComponentTyped } from "svelte";
28
28
  declare const __propDef: {
29
29
  props: {
30
30
  marginBottom?: boolean;
31
- id?: string;
32
31
  progress?: number;
32
+ id?: string;
33
33
  splitscreen?: boolean;
34
34
  threshold?: number;
35
35
  count?: number;
@@ -3,8 +3,8 @@
3
3
  /** @typedef {typeof __propDef.slots} ScrollerSectionSlots */
4
4
  export default class ScrollerSection extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
- id?: string;
7
6
  title?: string;
7
+ id?: string;
8
8
  hideTitle?: boolean;
9
9
  }, {
10
10
  [evt: string]: CustomEvent<any>;
@@ -19,8 +19,8 @@ import { SvelteComponentTyped } from "svelte";
19
19
  declare const __propDef: {
20
20
  props: {
21
21
  theme?: "light" | "dark" | "lightblue";
22
- id?: string;
23
22
  title?: string;
23
+ id?: string;
24
24
  hideTitle?: boolean;
25
25
  };
26
26
  events: {
@@ -7,8 +7,8 @@ export default class Section extends SvelteComponentTyped<{
7
7
  marginTop?: boolean;
8
8
  marginBottom?: boolean;
9
9
  themeOverrides?: any;
10
- id?: string;
11
10
  title?: string;
11
+ id?: string;
12
12
  hideTitle?: boolean;
13
13
  }, {
14
14
  [evt: string]: CustomEvent<any>;
@@ -27,8 +27,8 @@ declare const __propDef: {
27
27
  marginTop?: boolean;
28
28
  marginBottom?: boolean;
29
29
  themeOverrides?: object;
30
- id?: string;
31
30
  title?: string;
31
+ id?: string;
32
32
  hideTitle?: boolean;
33
33
  };
34
34
  events: {
@@ -0,0 +1,33 @@
1
+ /** @typedef {typeof __propDef.props} ShareButtonsProps */
2
+ /** @typedef {typeof __propDef.events} ShareButtonsEvents */
3
+ /** @typedef {typeof __propDef.slots} ShareButtonsSlots */
4
+ export default class ShareButtons extends SvelteComponentTyped<{
5
+ theme?: "light" | "dark" | "lightblue";
6
+ width?: "narrow" | "medium" | "wide" | "full";
7
+ marginTop?: boolean;
8
+ marginBottom?: boolean;
9
+ themeOverrides?: any;
10
+ title?: string;
11
+ }, {
12
+ [evt: string]: CustomEvent<any>;
13
+ }, {}> {
14
+ }
15
+ export type ShareButtonsProps = typeof __propDef.props;
16
+ export type ShareButtonsEvents = typeof __propDef.events;
17
+ export type ShareButtonsSlots = typeof __propDef.slots;
18
+ import { SvelteComponentTyped } from "svelte";
19
+ declare const __propDef: {
20
+ props: {
21
+ theme?: "light" | "dark" | "lightblue";
22
+ width?: "narrow" | "medium" | "wide" | "full";
23
+ marginTop?: boolean;
24
+ marginBottom?: boolean;
25
+ themeOverrides?: object;
26
+ title?: string;
27
+ };
28
+ events: {
29
+ [evt: string]: CustomEvent<any>;
30
+ };
31
+ slots: {};
32
+ };
33
+ export {};
@@ -0,0 +1,25 @@
1
+ /** @typedef {typeof __propDef.props} SummaryProps */
2
+ /** @typedef {typeof __propDef.events} SummaryEvents */
3
+ /** @typedef {typeof __propDef.slots} SummarySlots */
4
+ export default class Summary extends SvelteComponentTyped<{
5
+ title?: string;
6
+ items?: any[];
7
+ }, {
8
+ [evt: string]: CustomEvent<any>;
9
+ }, {}> {
10
+ }
11
+ export type SummaryProps = typeof __propDef.props;
12
+ export type SummaryEvents = typeof __propDef.events;
13
+ export type SummarySlots = typeof __propDef.slots;
14
+ import { SvelteComponentTyped } from "svelte";
15
+ declare const __propDef: {
16
+ props: {
17
+ title?: string;
18
+ items?: any[];
19
+ };
20
+ events: {
21
+ [evt: string]: CustomEvent<any>;
22
+ };
23
+ slots: {};
24
+ };
25
+ export {};
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} SurveyProps */
2
+ /** @typedef {typeof __propDef.events} SurveyEvents */
3
+ /** @typedef {typeof __propDef.slots} SurveySlots */
4
+ export default class Survey extends SvelteComponentTyped<{
5
+ [x: string]: never;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type SurveyProps = typeof __propDef.props;
11
+ export type SurveyEvents = typeof __propDef.events;
12
+ export type SurveySlots = typeof __propDef.slots;
13
+ import { SvelteComponentTyped } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ [x: string]: never;
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -0,0 +1 @@
1
+ export default function initSurvey(): void;
@@ -0,0 +1,31 @@
1
+ /** @typedef {typeof __propDef.props} TabProps */
2
+ /** @typedef {typeof __propDef.events} TabEvents */
3
+ /** @typedef {typeof __propDef.slots} TabSlots */
4
+ export default class Tab extends SvelteComponentTyped<{
5
+ title?: string;
6
+ id?: string;
7
+ hideTitle?: boolean;
8
+ }, {
9
+ [evt: string]: CustomEvent<any>;
10
+ }, {
11
+ default: {};
12
+ }> {
13
+ }
14
+ export type TabProps = typeof __propDef.props;
15
+ export type TabEvents = typeof __propDef.events;
16
+ export type TabSlots = typeof __propDef.slots;
17
+ import { SvelteComponentTyped } from "svelte";
18
+ declare const __propDef: {
19
+ props: {
20
+ title?: string;
21
+ id?: string;
22
+ hideTitle?: boolean;
23
+ };
24
+ events: {
25
+ [evt: string]: CustomEvent<any>;
26
+ };
27
+ slots: {
28
+ default: {};
29
+ };
30
+ };
31
+ export {};