@onsvisual/svelte-components 0.0.7 → 0.0.9

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 (63) 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/Checkbox/Checkbox.svelte.d.ts +41 -0
  6. package/dist/@types/inputs/Checkboxes/Checkboxes.svelte.d.ts +37 -0
  7. package/dist/@types/inputs/Dropdown/Dropdown.svelte.d.ts +2 -2
  8. package/dist/@types/inputs/ErrorPanel/ErrorPanel.svelte.d.ts +27 -0
  9. package/dist/@types/inputs/ErrorSummary/ErrorSummary.svelte.d.ts +29 -0
  10. package/dist/@types/inputs/Input/Input.svelte.d.ts +2 -2
  11. package/dist/@types/inputs/Radios/Radio.svelte.d.ts +37 -0
  12. package/dist/@types/inputs/Radios/Radios.svelte.d.ts +39 -0
  13. package/dist/@types/inputs/Select/Select.svelte.d.ts +2 -2
  14. package/dist/@types/inputs/Textarea/Textarea.svelte.d.ts +2 -2
  15. package/dist/@types/layout/Accordion/AccordionItem.svelte.d.ts +2 -2
  16. package/dist/@types/layout/AnalyticsBanner/AnalyticsBanner.svelte.d.ts +30 -0
  17. package/dist/@types/layout/BackLink/Backlink.svelte.d.ts +23 -0
  18. package/dist/@types/layout/Breadcrumb/Breadcrumb.svelte.d.ts +23 -0
  19. package/dist/@types/layout/Contents/Contents.svelte.d.ts +29 -0
  20. package/dist/@types/layout/ErrorPage/ErrorPage.svelte.d.ts +25 -0
  21. package/dist/@types/layout/Grid/Grid.svelte.d.ts +2 -2
  22. package/dist/@types/layout/Header/Header.svelte.d.ts +2 -2
  23. package/dist/@types/layout/Hero/Hero.svelte.d.ts +2 -2
  24. package/dist/@types/layout/NavSections/NavSection.svelte.d.ts +2 -2
  25. package/dist/@types/layout/Notice/Notice.svelte.d.ts +31 -0
  26. package/dist/@types/layout/PhaseBanner/PhaseBanner.svelte.d.ts +25 -0
  27. package/dist/@types/layout/Scroller/Scroller.svelte.d.ts +2 -2
  28. package/dist/@types/layout/Scroller/ScrollerSection.svelte.d.ts +2 -2
  29. package/dist/@types/layout/Section/Section.svelte.d.ts +2 -2
  30. package/dist/@types/layout/ShareButtons/ShareButtons.svelte.d.ts +33 -0
  31. package/dist/@types/layout/Summary/Summary.svelte.d.ts +25 -0
  32. package/dist/@types/layout/Survey/Survey.svelte.d.ts +23 -0
  33. package/dist/@types/layout/Survey/init-survey.d.ts +1 -0
  34. package/dist/@types/layout/Tabs/Tab.svelte.d.ts +31 -0
  35. package/dist/@types/layout/Tabs/Tabs.svelte.d.ts +27 -0
  36. package/dist/@types/layout/TitleBlock/TitleBlock.svelte.d.ts +2 -2
  37. package/dist/css/main.css +2 -2
  38. package/dist/datavis/shared/data.js +18 -0
  39. package/dist/index.js +2 -0
  40. package/dist/inputs/Checkbox/Checkbox.svelte +133 -0
  41. package/dist/inputs/Checkboxes/Checkboxes.svelte +33 -0
  42. package/dist/inputs/ErrorPanel/ErrorPanel.svelte +35 -0
  43. package/dist/inputs/ErrorSummary/ErrorSummary.svelte +40 -0
  44. package/dist/inputs/Radios/Radio.svelte +108 -0
  45. package/dist/inputs/Radios/Radios.svelte +46 -0
  46. package/dist/layout/AnalyticsBanner/AnalyticsBanner.svelte +256 -0
  47. package/dist/layout/BackLink/Backlink.svelte +32 -0
  48. package/dist/layout/Breadcrumb/Breadcrumb.svelte +39 -0
  49. package/dist/layout/Contents/Contents.svelte +44 -0
  50. package/dist/layout/ErrorPage/ErrorPage.svelte +39 -0
  51. package/dist/layout/Header/Header.svelte +1 -1
  52. package/dist/layout/NavSections/NavSection.svelte +2 -2
  53. package/dist/layout/Notice/Notice.svelte +54 -0
  54. package/dist/layout/PhaseBanner/PhaseBanner.svelte +40 -0
  55. package/dist/layout/Scroller/ScrollerSection.svelte +2 -2
  56. package/dist/layout/Section/Section.svelte +2 -2
  57. package/dist/layout/ShareButtons/ShareButtons.svelte +177 -0
  58. package/dist/layout/Summary/Summary.svelte +51 -0
  59. package/dist/layout/Survey/Survey.svelte +96 -0
  60. package/dist/layout/Survey/init-survey.js +230 -0
  61. package/dist/layout/Tabs/Tab.svelte +48 -0
  62. package/dist/layout/Tabs/Tabs.svelte +85 -0
  63. package/package.json +22 -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;
@@ -0,0 +1,41 @@
1
+ /** @typedef {typeof __propDef.props} CheckboxProps */
2
+ /** @typedef {typeof __propDef.events} CheckboxEvents */
3
+ /** @typedef {typeof __propDef.slots} CheckboxSlots */
4
+ export default class Checkbox extends SvelteComponentTyped<{
5
+ label: string;
6
+ id: string;
7
+ compact?: boolean;
8
+ variant?: "default" | "ghost";
9
+ disabled?: boolean;
10
+ description?: string;
11
+ group?: boolean;
12
+ checked?: boolean;
13
+ }, {
14
+ change: CustomEvent<any>;
15
+ } & {
16
+ [evt: string]: CustomEvent<any>;
17
+ }, {}> {
18
+ }
19
+ export type CheckboxProps = typeof __propDef.props;
20
+ export type CheckboxEvents = typeof __propDef.events;
21
+ export type CheckboxSlots = typeof __propDef.slots;
22
+ import { SvelteComponentTyped } from "svelte";
23
+ declare const __propDef: {
24
+ props: {
25
+ label: string;
26
+ id: string;
27
+ compact?: boolean;
28
+ variant?: "default" | "ghost";
29
+ disabled?: boolean;
30
+ description?: string;
31
+ group?: boolean;
32
+ checked?: boolean;
33
+ };
34
+ events: {
35
+ change: CustomEvent<any>;
36
+ } & {
37
+ [evt: string]: CustomEvent<any>;
38
+ };
39
+ slots: {};
40
+ };
41
+ export {};
@@ -0,0 +1,37 @@
1
+ /** @typedef {typeof __propDef.props} CheckboxesProps */
2
+ /** @typedef {typeof __propDef.events} CheckboxesEvents */
3
+ /** @typedef {typeof __propDef.slots} CheckboxesSlots */
4
+ export default class Checkboxes extends SvelteComponentTyped<{
5
+ label?: string;
6
+ compact?: boolean;
7
+ value?: any[];
8
+ items?: any[];
9
+ }, {
10
+ change: CustomEvent<any>;
11
+ } & {
12
+ [evt: string]: CustomEvent<any>;
13
+ }, {
14
+ default: {};
15
+ }> {
16
+ }
17
+ export type CheckboxesProps = typeof __propDef.props;
18
+ export type CheckboxesEvents = typeof __propDef.events;
19
+ export type CheckboxesSlots = typeof __propDef.slots;
20
+ import { SvelteComponentTyped } from "svelte";
21
+ declare const __propDef: {
22
+ props: {
23
+ label?: string;
24
+ compact?: boolean;
25
+ value?: any[];
26
+ items?: any[];
27
+ };
28
+ events: {
29
+ change: CustomEvent<any>;
30
+ } & {
31
+ [evt: string]: CustomEvent<any>;
32
+ };
33
+ slots: {
34
+ default: {};
35
+ };
36
+ };
37
+ export {};
@@ -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} ErrorPanelProps */
2
+ /** @typedef {typeof __propDef.events} ErrorPanelEvents */
3
+ /** @typedef {typeof __propDef.slots} ErrorPanelSlots */
4
+ export default class ErrorPanel extends SvelteComponentTyped<{
5
+ message?: string;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {
9
+ default: {};
10
+ }> {
11
+ }
12
+ export type ErrorPanelProps = typeof __propDef.props;
13
+ export type ErrorPanelEvents = typeof __propDef.events;
14
+ export type ErrorPanelSlots = typeof __propDef.slots;
15
+ import { SvelteComponentTyped } from "svelte";
16
+ declare const __propDef: {
17
+ props: {
18
+ message?: string;
19
+ };
20
+ events: {
21
+ [evt: string]: CustomEvent<any>;
22
+ };
23
+ slots: {
24
+ default: {};
25
+ };
26
+ };
27
+ export {};
@@ -0,0 +1,29 @@
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
+ items?: any[];
7
+ }, {
8
+ [evt: string]: CustomEvent<any>;
9
+ }, {
10
+ default: {};
11
+ }> {
12
+ }
13
+ export type ErrorSummaryProps = typeof __propDef.props;
14
+ export type ErrorSummaryEvents = typeof __propDef.events;
15
+ export type ErrorSummarySlots = typeof __propDef.slots;
16
+ import { SvelteComponentTyped } from "svelte";
17
+ declare const __propDef: {
18
+ props: {
19
+ title?: string;
20
+ items?: any[];
21
+ };
22
+ events: {
23
+ [evt: string]: CustomEvent<any>;
24
+ };
25
+ slots: {
26
+ default: {};
27
+ };
28
+ };
29
+ 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;
@@ -0,0 +1,37 @@
1
+ /** @typedef {typeof __propDef.props} RadioProps */
2
+ /** @typedef {typeof __propDef.events} RadioEvents */
3
+ /** @typedef {typeof __propDef.slots} RadioSlots */
4
+ export default class Radio extends SvelteComponentTyped<{
5
+ label: string;
6
+ id: string;
7
+ groupId: string;
8
+ compact?: boolean;
9
+ value?: string;
10
+ description?: string;
11
+ }, {
12
+ change: CustomEvent<any>;
13
+ } & {
14
+ [evt: string]: CustomEvent<any>;
15
+ }, {}> {
16
+ }
17
+ export type RadioProps = typeof __propDef.props;
18
+ export type RadioEvents = typeof __propDef.events;
19
+ export type RadioSlots = typeof __propDef.slots;
20
+ import { SvelteComponentTyped } from "svelte";
21
+ declare const __propDef: {
22
+ props: {
23
+ label: string;
24
+ id: string;
25
+ groupId: string;
26
+ compact?: boolean;
27
+ value?: string;
28
+ description?: string;
29
+ };
30
+ events: {
31
+ change: CustomEvent<any>;
32
+ } & {
33
+ [evt: string]: CustomEvent<any>;
34
+ };
35
+ slots: {};
36
+ };
37
+ export {};
@@ -0,0 +1,39 @@
1
+ /** @typedef {typeof __propDef.props} RadiosProps */
2
+ /** @typedef {typeof __propDef.events} RadiosEvents */
3
+ /** @typedef {typeof __propDef.slots} RadiosSlots */
4
+ export default class Radios extends SvelteComponentTyped<{
5
+ label?: string;
6
+ id?: string;
7
+ compact?: boolean;
8
+ value?: string;
9
+ items?: any[];
10
+ }, {
11
+ change: CustomEvent<any>;
12
+ } & {
13
+ [evt: string]: CustomEvent<any>;
14
+ }, {
15
+ default: {};
16
+ }> {
17
+ }
18
+ export type RadiosProps = typeof __propDef.props;
19
+ export type RadiosEvents = typeof __propDef.events;
20
+ export type RadiosSlots = typeof __propDef.slots;
21
+ import { SvelteComponentTyped } from "svelte";
22
+ declare const __propDef: {
23
+ props: {
24
+ label?: string;
25
+ id?: string;
26
+ compact?: boolean;
27
+ value?: string;
28
+ items?: any[];
29
+ };
30
+ events: {
31
+ change: CustomEvent<any>;
32
+ } & {
33
+ [evt: string]: CustomEvent<any>;
34
+ };
35
+ slots: {
36
+ default: {};
37
+ };
38
+ };
39
+ export {};
@@ -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 {};