@onsvisual/svelte-components 0.0.8 → 0.0.10

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.
@@ -0,0 +1,41 @@
1
+ /** @typedef {typeof __propDef.props} CheckboxProps */
2
+ /** @typedef {typeof __propDef.events} CheckboxEvents */
3
+ /** @typedef {typeof __propDef.slots} CheckboxSlots */
4
+ export default class Checkbox extends SvelteComponentTyped<{
5
+ label: string;
6
+ id: string;
7
+ compact?: boolean;
8
+ variant?: "default" | "ghost";
9
+ disabled?: boolean;
10
+ description?: string;
11
+ group?: boolean;
12
+ checked?: boolean;
13
+ }, {
14
+ change: CustomEvent<any>;
15
+ } & {
16
+ [evt: string]: CustomEvent<any>;
17
+ }, {}> {
18
+ }
19
+ export type CheckboxProps = typeof __propDef.props;
20
+ export type CheckboxEvents = typeof __propDef.events;
21
+ export type CheckboxSlots = typeof __propDef.slots;
22
+ import { SvelteComponentTyped } from "svelte";
23
+ declare const __propDef: {
24
+ props: {
25
+ label: string;
26
+ id: string;
27
+ compact?: boolean;
28
+ variant?: "default" | "ghost";
29
+ disabled?: boolean;
30
+ description?: string;
31
+ group?: boolean;
32
+ checked?: boolean;
33
+ };
34
+ events: {
35
+ change: CustomEvent<any>;
36
+ } & {
37
+ [evt: string]: CustomEvent<any>;
38
+ };
39
+ slots: {};
40
+ };
41
+ export {};
@@ -0,0 +1,37 @@
1
+ /** @typedef {typeof __propDef.props} CheckboxesProps */
2
+ /** @typedef {typeof __propDef.events} CheckboxesEvents */
3
+ /** @typedef {typeof __propDef.slots} CheckboxesSlots */
4
+ export default class Checkboxes extends SvelteComponentTyped<{
5
+ label?: string;
6
+ compact?: boolean;
7
+ value?: any[];
8
+ items?: any[];
9
+ }, {
10
+ change: CustomEvent<any>;
11
+ } & {
12
+ [evt: string]: CustomEvent<any>;
13
+ }, {
14
+ default: {};
15
+ }> {
16
+ }
17
+ export type CheckboxesProps = typeof __propDef.props;
18
+ export type CheckboxesEvents = typeof __propDef.events;
19
+ export type CheckboxesSlots = typeof __propDef.slots;
20
+ import { SvelteComponentTyped } from "svelte";
21
+ declare const __propDef: {
22
+ props: {
23
+ label?: string;
24
+ compact?: boolean;
25
+ value?: any[];
26
+ items?: any[];
27
+ };
28
+ events: {
29
+ change: CustomEvent<any>;
30
+ } & {
31
+ [evt: string]: CustomEvent<any>;
32
+ };
33
+ slots: {
34
+ default: {};
35
+ };
36
+ };
37
+ export {};
@@ -0,0 +1,27 @@
1
+ /** @typedef {typeof __propDef.props} ErrorPanelProps */
2
+ /** @typedef {typeof __propDef.events} ErrorPanelEvents */
3
+ /** @typedef {typeof __propDef.slots} ErrorPanelSlots */
4
+ export default class ErrorPanel extends SvelteComponentTyped<{
5
+ message?: string;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {
9
+ default: {};
10
+ }> {
11
+ }
12
+ export type ErrorPanelProps = typeof __propDef.props;
13
+ export type ErrorPanelEvents = typeof __propDef.events;
14
+ export type ErrorPanelSlots = typeof __propDef.slots;
15
+ import { SvelteComponentTyped } from "svelte";
16
+ declare const __propDef: {
17
+ props: {
18
+ message?: string;
19
+ };
20
+ events: {
21
+ [evt: string]: CustomEvent<any>;
22
+ };
23
+ slots: {
24
+ default: {};
25
+ };
26
+ };
27
+ export {};
@@ -3,6 +3,7 @@
3
3
  /** @typedef {typeof __propDef.slots} ErrorSummarySlots */
4
4
  export default class ErrorSummary extends SvelteComponentTyped<{
5
5
  title?: string;
6
+ items?: any[];
6
7
  }, {
7
8
  [evt: string]: CustomEvent<any>;
8
9
  }, {
@@ -16,6 +17,7 @@ import { SvelteComponentTyped } from "svelte";
16
17
  declare const __propDef: {
17
18
  props: {
18
19
  title?: string;
20
+ items?: any[];
19
21
  };
20
22
  events: {
21
23
  [evt: string]: CustomEvent<any>;
@@ -0,0 +1,37 @@
1
+ /** @typedef {typeof __propDef.props} RadioProps */
2
+ /** @typedef {typeof __propDef.events} RadioEvents */
3
+ /** @typedef {typeof __propDef.slots} RadioSlots */
4
+ export default class Radio extends SvelteComponentTyped<{
5
+ label: string;
6
+ id: string;
7
+ groupId: string;
8
+ compact?: boolean;
9
+ value?: string;
10
+ description?: string;
11
+ }, {
12
+ change: CustomEvent<any>;
13
+ } & {
14
+ [evt: string]: CustomEvent<any>;
15
+ }, {}> {
16
+ }
17
+ export type RadioProps = typeof __propDef.props;
18
+ export type RadioEvents = typeof __propDef.events;
19
+ export type RadioSlots = typeof __propDef.slots;
20
+ import { SvelteComponentTyped } from "svelte";
21
+ declare const __propDef: {
22
+ props: {
23
+ label: string;
24
+ id: string;
25
+ groupId: string;
26
+ compact?: boolean;
27
+ value?: string;
28
+ description?: string;
29
+ };
30
+ events: {
31
+ change: CustomEvent<any>;
32
+ } & {
33
+ [evt: string]: CustomEvent<any>;
34
+ };
35
+ slots: {};
36
+ };
37
+ export {};
@@ -0,0 +1,39 @@
1
+ /** @typedef {typeof __propDef.props} RadiosProps */
2
+ /** @typedef {typeof __propDef.events} RadiosEvents */
3
+ /** @typedef {typeof __propDef.slots} RadiosSlots */
4
+ export default class Radios extends SvelteComponentTyped<{
5
+ label?: string;
6
+ id?: string;
7
+ compact?: boolean;
8
+ value?: string;
9
+ items?: any[];
10
+ }, {
11
+ change: CustomEvent<any>;
12
+ } & {
13
+ [evt: string]: CustomEvent<any>;
14
+ }, {
15
+ default: {};
16
+ }> {
17
+ }
18
+ export type RadiosProps = typeof __propDef.props;
19
+ export type RadiosEvents = typeof __propDef.events;
20
+ export type RadiosSlots = typeof __propDef.slots;
21
+ import { SvelteComponentTyped } from "svelte";
22
+ declare const __propDef: {
23
+ props: {
24
+ label?: string;
25
+ id?: string;
26
+ compact?: boolean;
27
+ value?: string;
28
+ items?: any[];
29
+ };
30
+ events: {
31
+ change: CustomEvent<any>;
32
+ } & {
33
+ [evt: string]: CustomEvent<any>;
34
+ };
35
+ slots: {
36
+ default: {};
37
+ };
38
+ };
39
+ export {};