@onsvisual/svelte-components 0.0.11 → 0.0.12
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.
package/dist/@types/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ 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
6
|
export { default as AnalyticsBanner } from "./layout/AnalyticsBanner/AnalyticsBanner.svelte";
|
|
7
|
-
export { default as
|
|
7
|
+
export { default as Highlight } from "./layout/Highlight/Highlight.svelte";
|
|
8
8
|
export { default as Footer } from "./layout/Footer/Footer.svelte";
|
|
9
9
|
export { default as Grid } from "./layout/Grid/Grid.svelte";
|
|
10
10
|
export { default as Header } from "./layout/Header/Header.svelte";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/** @typedef {typeof __propDef.props}
|
|
2
|
-
/** @typedef {typeof __propDef.events}
|
|
3
|
-
/** @typedef {typeof __propDef.slots}
|
|
4
|
-
export default class
|
|
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
|
|
20
|
-
export type
|
|
21
|
-
export type
|
|
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: {
|