@onsvisual/svelte-components 0.0.11 → 0.0.13

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.
@@ -3,8 +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";
7
- export { default as Filler } from "./layout/Filler/Filler.svelte";
6
+ export { default as Highlight } from "./layout/Highlight/Highlight.svelte";
8
7
  export { default as Footer } from "./layout/Footer/Footer.svelte";
9
8
  export { default as Grid } from "./layout/Grid/Grid.svelte";
10
9
  export { default as Header } from "./layout/Header/Header.svelte";
@@ -26,3 +25,4 @@ export { default as Blockquote } from "./decorators/Blockquote/Blockquote.svelte
26
25
  export { default as Divider } from "./decorators/Divider/Divider.svelte";
27
26
  export { default as Em } from "./decorators/Em/Em.svelte";
28
27
  export { default as Table } from "./datavis/Table/Table.svelte";
28
+ export { default as AnalyticsBanner, analyticsEvent } from "./layout/AnalyticsBanner/AnalyticsBanner.svelte";
@@ -1,7 +1,7 @@
1
- /** @typedef {typeof __propDef.props} FillerProps */
2
- /** @typedef {typeof __propDef.events} FillerEvents */
3
- /** @typedef {typeof __propDef.slots} FillerSlots */
4
- export default class Filler extends SvelteComponentTyped<{
1
+ /** @typedef {typeof __propDef.props} HighlightProps */
2
+ /** @typedef {typeof __propDef.events} HighlightEvents */
3
+ /** @typedef {typeof __propDef.slots} HighlightSlots */
4
+ export default class Highlight extends SvelteComponentTyped<{
5
5
  theme?: "light" | "dark" | "lightblue";
6
6
  background?: string;
7
7
  width?: "narrow" | "medium" | "wide" | "full";
@@ -16,9 +16,9 @@ export default class Filler extends SvelteComponentTyped<{
16
16
  default: {};
17
17
  }> {
18
18
  }
19
- export type FillerProps = typeof __propDef.props;
20
- export type FillerEvents = typeof __propDef.events;
21
- export type FillerSlots = typeof __propDef.slots;
19
+ export type HighlightProps = typeof __propDef.props;
20
+ export type HighlightEvents = typeof __propDef.events;
21
+ export type HighlightSlots = typeof __propDef.slots;
22
22
  import { SvelteComponentTyped } from "svelte";
23
23
  declare const __propDef: {
24
24
  props: {