@onsvisual/svelte-components 0.0.20 → 0.0.21
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
|
@@ -15,6 +15,8 @@ export { default as Highlight } from "./layout/Highlight/Highlight.svelte";
|
|
|
15
15
|
export { default as List } from "./layout/List/List.svelte";
|
|
16
16
|
export { default as NavSection } from "./layout/NavSections/NavSection.svelte";
|
|
17
17
|
export { default as NavSections } from "./layout/NavSections/NavSections.svelte";
|
|
18
|
+
export { default as Notice } from "./layout/Notice/Notice.svelte";
|
|
19
|
+
export { default as PhaseBanner } from "./layout/NavSections/PhaseBanner.svelte";
|
|
18
20
|
export { default as Scroller } from "./layout/Scroller/Scroller.svelte";
|
|
19
21
|
export { default as ScrollerSection } from "./layout/Scroller/ScrollerSection.svelte";
|
|
20
22
|
export { default as Section } from "./layout/Section/Section.svelte";
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/** @typedef {typeof __propDef.slots} NoticeSlots */
|
|
4
4
|
export default class Notice extends SvelteComponentTyped<{
|
|
5
5
|
title?: string;
|
|
6
|
-
mode?: "
|
|
6
|
+
mode?: "info" | "success" | "pending" | "error";
|
|
7
7
|
important?: boolean;
|
|
8
8
|
}, {
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
package/dist/index.js
CHANGED
|
@@ -20,6 +20,8 @@ export { default as Highlight } from "./layout/Highlight/Highlight.svelte";
|
|
|
20
20
|
export { default as List } from "./layout/List/List.svelte";
|
|
21
21
|
export { default as NavSection } from "./layout/NavSections/NavSection.svelte";
|
|
22
22
|
export { default as NavSections } from "./layout/NavSections/NavSections.svelte";
|
|
23
|
+
export { default as Notice } from "./layout/Notice/Notice.svelte";
|
|
24
|
+
export { default as PhaseBanner } from "./layout/NavSections/PhaseBanner.svelte";
|
|
23
25
|
export { default as Scroller } from "./layout/Scroller/Scroller.svelte";
|
|
24
26
|
export { default as ScrollerSection } from "./layout/Scroller/ScrollerSection.svelte";
|
|
25
27
|
export { default as Section } from "./layout/Section/Section.svelte";
|