@onsvisual/svelte-components 0.1.73 → 0.1.74
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/datavis/Table/Table.svelte.d.ts +2 -2
- package/dist/@types/index.d.ts +1 -0
- package/dist/@types/inputs/Input/Input.svelte.d.ts +2 -2
- package/dist/@types/layout/Accordion/AccordionItem.svelte.d.ts +2 -2
- package/dist/@types/layout/Grid/Grid.svelte.d.ts +2 -2
- package/dist/@types/layout/Titleblock/Titleblock.svelte.d.ts +2 -2
- package/dist/@types/layout/Twisty/Twisty.svelte.d.ts +2 -2
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/** @typedef {typeof __propDef.slots} TableSlots */
|
|
4
4
|
export default class Table extends SvelteComponentTyped<{
|
|
5
5
|
height?: number | "auto";
|
|
6
|
-
data?: any[];
|
|
7
6
|
title?: string;
|
|
7
|
+
data?: any[];
|
|
8
8
|
compact?: boolean;
|
|
9
9
|
responsive?: boolean;
|
|
10
10
|
rowHover?: boolean;
|
|
@@ -21,8 +21,8 @@ import { SvelteComponentTyped } from "svelte";
|
|
|
21
21
|
declare const __propDef: {
|
|
22
22
|
props: {
|
|
23
23
|
height?: number | "auto";
|
|
24
|
-
data?: any[];
|
|
25
24
|
title?: string;
|
|
25
|
+
data?: any[];
|
|
26
26
|
compact?: boolean;
|
|
27
27
|
responsive?: boolean;
|
|
28
28
|
rowHover?: boolean;
|
package/dist/@types/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export { default as Main } from "./wrappers/Main/Main.svelte";
|
|
|
5
5
|
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
|
+
export { default as AccordionItem } from "./layout/Accordion/AccordionItem.svelte";
|
|
8
9
|
export { default as Backlink } from "./layout/Backlink/Backlink.svelte";
|
|
9
10
|
export { default as Breadcrumb } from "./layout/Breadcrumb/Breadcrumb.svelte";
|
|
10
11
|
export { default as Cards } from "./layout/Cards/Cards.svelte";
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
export default class Input extends SvelteComponentTyped<{
|
|
5
5
|
id?: string;
|
|
6
6
|
width?: number;
|
|
7
|
-
label?: string;
|
|
8
7
|
numeric?: boolean;
|
|
8
|
+
label?: string;
|
|
9
9
|
error?: boolean;
|
|
10
10
|
pattern?: string;
|
|
11
11
|
value?: string;
|
|
@@ -29,8 +29,8 @@ declare const __propDef: {
|
|
|
29
29
|
props: {
|
|
30
30
|
id?: string;
|
|
31
31
|
width?: number;
|
|
32
|
-
label?: string;
|
|
33
32
|
numeric?: boolean;
|
|
33
|
+
label?: string;
|
|
34
34
|
error?: boolean;
|
|
35
35
|
pattern?: string;
|
|
36
36
|
value?: string;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
/** @typedef {typeof __propDef.slots} AccordionItemSlots */
|
|
4
4
|
export default class AccordionItem extends SvelteComponentTyped<{
|
|
5
5
|
id?: string;
|
|
6
|
-
title?: string;
|
|
7
6
|
open?: boolean;
|
|
7
|
+
title?: string;
|
|
8
8
|
}, {
|
|
9
9
|
[evt: string]: CustomEvent<any>;
|
|
10
10
|
}, {
|
|
@@ -18,8 +18,8 @@ import { SvelteComponentTyped } from "svelte";
|
|
|
18
18
|
declare const __propDef: {
|
|
19
19
|
props: {
|
|
20
20
|
id?: string;
|
|
21
|
-
title?: string;
|
|
22
21
|
open?: boolean;
|
|
22
|
+
title?: string;
|
|
23
23
|
};
|
|
24
24
|
events: {
|
|
25
25
|
[evt: string]: CustomEvent<any>;
|
|
@@ -11,8 +11,8 @@ export default class Grid extends SvelteComponentTyped<{
|
|
|
11
11
|
marginTop?: boolean;
|
|
12
12
|
marginBottom?: boolean;
|
|
13
13
|
themeOverrides?: any;
|
|
14
|
-
caption?: string;
|
|
15
14
|
title?: string;
|
|
15
|
+
caption?: string;
|
|
16
16
|
hideTitle?: boolean;
|
|
17
17
|
colwidth?: "narrow" | "medium" | "wide" | "full";
|
|
18
18
|
gap?: number;
|
|
@@ -37,8 +37,8 @@ declare const __propDef: {
|
|
|
37
37
|
marginTop?: boolean;
|
|
38
38
|
marginBottom?: boolean;
|
|
39
39
|
themeOverrides?: object;
|
|
40
|
-
caption?: string;
|
|
41
40
|
title?: string;
|
|
41
|
+
caption?: string;
|
|
42
42
|
hideTitle?: boolean;
|
|
43
43
|
colwidth?: "narrow" | "medium" | "wide" | "full";
|
|
44
44
|
gap?: number;
|
|
@@ -6,8 +6,8 @@ export default class Titleblock extends SvelteComponentTyped<{
|
|
|
6
6
|
background?: string;
|
|
7
7
|
allowClientOverrides?: boolean;
|
|
8
8
|
themeOverrides?: any;
|
|
9
|
-
meta?: any[];
|
|
10
9
|
title?: string;
|
|
10
|
+
meta?: any[];
|
|
11
11
|
natStatBadge?: boolean;
|
|
12
12
|
censusLogo?: boolean;
|
|
13
13
|
titleBadge?: string;
|
|
@@ -32,8 +32,8 @@ declare const __propDef: {
|
|
|
32
32
|
background?: string;
|
|
33
33
|
allowClientOverrides?: boolean;
|
|
34
34
|
themeOverrides?: object;
|
|
35
|
-
meta?: any[];
|
|
36
35
|
title?: string;
|
|
36
|
+
meta?: any[];
|
|
37
37
|
natStatBadge?: boolean;
|
|
38
38
|
censusLogo?: boolean;
|
|
39
39
|
titleBadge?: string;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
/** @typedef {typeof __propDef.events} TwistyEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} TwistySlots */
|
|
4
4
|
export default class Twisty extends SvelteComponentTyped<{
|
|
5
|
-
title?: string;
|
|
6
5
|
open?: boolean;
|
|
6
|
+
title?: string;
|
|
7
7
|
}, {
|
|
8
8
|
toggle: CustomEvent<any>;
|
|
9
9
|
} & {
|
|
@@ -18,8 +18,8 @@ export type TwistySlots = typeof __propDef.slots;
|
|
|
18
18
|
import { SvelteComponentTyped } from "svelte";
|
|
19
19
|
declare const __propDef: {
|
|
20
20
|
props: {
|
|
21
|
-
title?: string;
|
|
22
21
|
open?: boolean;
|
|
22
|
+
title?: string;
|
|
23
23
|
};
|
|
24
24
|
events: {
|
|
25
25
|
toggle: CustomEvent<any>;
|
package/dist/index.js
CHANGED
|
@@ -8,6 +8,7 @@ export { default as Theme } from "./wrappers/Theme/Theme.svelte";
|
|
|
8
8
|
|
|
9
9
|
// Layout
|
|
10
10
|
export { default as Accordion } from "./layout/Accordion/Accordion.svelte";
|
|
11
|
+
export { default as AccordionItem } from "./layout/Accordion/AccordionItem.svelte";
|
|
11
12
|
export { default as AnalyticsBanner } from "./layout/AnalyticsBanner/AnalyticsBanner.svelte";
|
|
12
13
|
export { analyticsEvent } from "./layout/AnalyticsBanner/AnalyticsBanner.svelte";
|
|
13
14
|
export { default as Backlink } from "./layout/Backlink/Backlink.svelte";
|