@onsvisual/svelte-components 0.1.108 → 0.1.110
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
|
@@ -6,7 +6,7 @@ export { default as Observe } from "./wrappers/Observe/Observe.svelte";
|
|
|
6
6
|
export { default as Theme } from "./wrappers/Theme/Theme.svelte";
|
|
7
7
|
export { default as Accordion } from "./layout/Accordion/Accordion.svelte";
|
|
8
8
|
export { default as AccordionItem } from "./layout/Accordion/AccordionItem.svelte";
|
|
9
|
-
export { default as Backlink } from "./layout/
|
|
9
|
+
export { default as Backlink } from "./layout/Back/Back.svelte";
|
|
10
10
|
export { default as Breadcrumb } from "./layout/Breadcrumb/Breadcrumb.svelte";
|
|
11
11
|
export { default as Cards } from "./layout/Cards/Cards.svelte";
|
|
12
12
|
export { default as Card } from "./layout/Cards/Card.svelte";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/** @typedef {typeof __propDef.props} BackProps */
|
|
2
|
+
/** @typedef {typeof __propDef.events} BackEvents */
|
|
3
|
+
/** @typedef {typeof __propDef.slots} BackSlots */
|
|
4
|
+
export default class Back extends SvelteComponentTyped<{
|
|
5
|
+
href?: string;
|
|
6
|
+
}, {
|
|
7
|
+
[evt: string]: CustomEvent<any>;
|
|
8
|
+
}, {}> {
|
|
9
|
+
}
|
|
10
|
+
export type BackProps = typeof __propDef.props;
|
|
11
|
+
export type BackEvents = typeof __propDef.events;
|
|
12
|
+
export type BackSlots = 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 {};
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ export { default as Accordion } from "./layout/Accordion/Accordion.svelte";
|
|
|
11
11
|
export { default as AccordionItem } from "./layout/Accordion/AccordionItem.svelte";
|
|
12
12
|
export { default as AnalyticsBanner } from "./layout/AnalyticsBanner/AnalyticsBanner.svelte";
|
|
13
13
|
export { analyticsEvent } from "./layout/AnalyticsBanner/AnalyticsBanner.svelte";
|
|
14
|
-
export { default as Backlink } from "./layout/
|
|
14
|
+
export { default as Backlink } from "./layout/Back/Back.svelte";
|
|
15
15
|
export { default as Breadcrumb } from "./layout/Breadcrumb/Breadcrumb.svelte";
|
|
16
16
|
export { default as Cards } from "./layout/Cards/Cards.svelte";
|
|
17
17
|
export { default as Card } from "./layout/Cards/Card.svelte";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onsvisual/svelte-components",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.110",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://onsvisual.github.io/svelte-components",
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
"./layout/Accordion/Accordion.svelte": "./dist/layout/Accordion/Accordion.svelte",
|
|
147
147
|
"./layout/Accordion/AccordionItem.svelte": "./dist/layout/Accordion/AccordionItem.svelte",
|
|
148
148
|
"./layout/AnalyticsBanner/AnalyticsBanner.svelte": "./dist/layout/AnalyticsBanner/AnalyticsBanner.svelte",
|
|
149
|
-
"./layout/
|
|
149
|
+
"./layout/Back/Back.svelte": "./dist/layout/Back/Back.svelte",
|
|
150
150
|
"./layout/Breadcrumb/Breadcrumb.svelte": "./dist/layout/Breadcrumb/Breadcrumb.svelte",
|
|
151
151
|
"./layout/Cards/Card.svelte": "./dist/layout/Cards/Card.svelte",
|
|
152
152
|
"./layout/Cards/Cards.svelte": "./dist/layout/Cards/Cards.svelte",
|
|
@@ -1,23 +0,0 @@
|
|
|
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 {};
|
|
File without changes
|