@davidbirchall/core 1.0.1 → 1.0.3

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.
@@ -1,25 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- variant: {
8
- control: string;
9
- options: string[];
10
- description: string;
11
- };
12
- size: {
13
- control: string;
14
- options: string[];
15
- description: string;
16
- };
17
- };
18
- args: {
19
- variant: string;
20
- size: string;
21
- };
22
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
23
3
  export default meta;
24
4
  type Story = StoryObj<typeof meta>;
25
5
  export declare const Primary: Story;
@@ -1,27 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- variant: {
8
- control: string;
9
- options: string[];
10
- description: string;
11
- };
12
- disabled: {
13
- control: string;
14
- description: string;
15
- };
16
- onClick: {
17
- action: string;
18
- };
19
- };
20
- args: {
21
- variant: string;
22
- disabled: boolean;
23
- };
24
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
25
3
  export default meta;
26
4
  type Story = StoryObj<typeof meta>;
27
5
  export declare const Primary: Story;
@@ -1,20 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- mode: {
8
- control: string;
9
- options: string[];
10
- };
11
- firstDayOfWeek: {
12
- control: string;
13
- options: number[];
14
- description: string;
15
- };
16
- };
17
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
18
3
  export default meta;
19
4
  type Story = StoryObj<typeof meta>;
20
5
  export declare const SingleDate: Story;
@@ -1,18 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- hoverable: {
8
- control: string;
9
- description: string;
10
- };
11
- };
12
- args: {
13
- hoverable: boolean;
14
- };
15
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
16
3
  export default meta;
17
4
  type Story = StoryObj<typeof meta>;
18
5
  export declare const Default: Story;
@@ -1,36 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- modelValue: {
8
- control: string;
9
- description: string;
10
- };
11
- label: {
12
- control: string;
13
- description: string;
14
- };
15
- disabled: {
16
- control: string;
17
- description: string;
18
- };
19
- required: {
20
- control: string;
21
- description: string;
22
- };
23
- error: {
24
- control: string;
25
- description: string;
26
- };
27
- };
28
- args: {
29
- modelValue: boolean;
30
- disabled: boolean;
31
- required: boolean;
32
- };
33
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
34
3
  export default meta;
35
4
  type Story = StoryObj<typeof meta>;
36
5
  export declare const Default: Story;
@@ -1,23 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- hoverable: {
8
- control: string;
9
- description: string;
10
- };
11
- emptyText: {
12
- control: string;
13
- description: string;
14
- };
15
- };
16
- args: {
17
- hoverable: boolean;
18
- emptyText: string;
19
- };
20
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
21
3
  export default meta;
22
4
  type Story = StoryObj<typeof meta>;
23
5
  export declare const Basic: Story;
@@ -1,9 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
7
3
  export default meta;
8
4
  type Story = StoryObj<typeof meta>;
9
5
  export declare const Default: Story;
@@ -1,27 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- placement: {
8
- control: string;
9
- options: string[];
10
- description: string;
11
- };
12
- closeOnClick: {
13
- control: string;
14
- description: string;
15
- };
16
- disabled: {
17
- control: string;
18
- description: string;
19
- };
20
- onSelect: {
21
- action: string;
22
- };
23
- };
24
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
25
3
  export default meta;
26
4
  type Story = StoryObj<typeof meta>;
27
5
  export declare const Default: Story;
@@ -1,44 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- title: {
8
- control: string;
9
- description: string;
10
- };
11
- description: {
12
- control: string;
13
- description: string;
14
- };
15
- icon: {
16
- control: string;
17
- description: string;
18
- };
19
- actionText: {
20
- control: string;
21
- description: string;
22
- };
23
- actionVariant: {
24
- control: string;
25
- options: string[];
26
- description: string;
27
- };
28
- size: {
29
- control: string;
30
- options: string[];
31
- description: string;
32
- };
33
- onAction: {
34
- action: string;
35
- };
36
- };
37
- args: {
38
- size: string;
39
- actionVariant: string;
40
- };
41
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
42
3
  export default meta;
43
4
  type Story = StoryObj<typeof meta>;
44
5
  export declare const Default: Story;
@@ -1,36 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- label: {
8
- control: string;
9
- description: string;
10
- };
11
- id: {
12
- control: string;
13
- description: string;
14
- };
15
- hint: {
16
- control: string;
17
- description: string;
18
- };
19
- error: {
20
- control: string;
21
- description: string;
22
- };
23
- required: {
24
- control: string;
25
- description: string;
26
- };
27
- };
28
- args: {
29
- label: string;
30
- id: string;
31
- required: boolean;
32
- };
33
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
34
3
  export default meta;
35
4
  type Story = StoryObj<typeof meta>;
36
5
  export declare const Default: Story;
@@ -1,27 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- tag: {
8
- control: string;
9
- options: string[];
10
- };
11
- size: {
12
- control: string;
13
- options: string[];
14
- };
15
- weight: {
16
- control: string;
17
- options: string[];
18
- };
19
- align: {
20
- control: string;
21
- options: string[];
22
- };
23
- };
24
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
25
3
  export default meta;
26
4
  type Story = StoryObj<typeof meta>;
27
5
  export declare const Default: Story;
@@ -1,40 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- type: {
8
- control: string;
9
- options: string[];
10
- description: string;
11
- };
12
- label: {
13
- control: string;
14
- description: string;
15
- };
16
- placeholder: {
17
- control: string;
18
- description: string;
19
- };
20
- disabled: {
21
- control: string;
22
- description: string;
23
- };
24
- required: {
25
- control: string;
26
- description: string;
27
- };
28
- error: {
29
- control: string;
30
- description: string;
31
- };
32
- hint: {
33
- control: string;
34
- description: string;
35
- };
36
- };
37
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
38
3
  export default meta;
39
4
  type Story = StoryObj<typeof meta>;
40
5
  export declare const Default: Story;
@@ -1,38 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- modelValue: {
8
- control: string;
9
- description: string;
10
- };
11
- title: {
12
- control: string;
13
- description: string;
14
- };
15
- size: {
16
- control: string;
17
- options: string[];
18
- description: string;
19
- };
20
- closable: {
21
- control: string;
22
- description: string;
23
- };
24
- closeOnOverlay: {
25
- control: string;
26
- description: string;
27
- };
28
- };
29
- args: {
30
- title: string;
31
- size: string;
32
- closable: boolean;
33
- closeOnOverlay: boolean;
34
- };
35
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
36
3
  export default meta;
37
4
  type Story = StoryObj<typeof meta>;
38
5
  export declare const Default: Story;
@@ -1,58 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- percentage: {
8
- control: {
9
- type: string;
10
- min: number;
11
- max: number;
12
- step: number;
13
- };
14
- description: string;
15
- };
16
- label: {
17
- control: string;
18
- description: string;
19
- };
20
- showLabel: {
21
- control: string;
22
- description: string;
23
- };
24
- showPercentageInBar: {
25
- control: string;
26
- description: string;
27
- };
28
- height: {
29
- control: {
30
- type: string;
31
- min: number;
32
- max: number;
33
- step: number;
34
- };
35
- description: string;
36
- };
37
- variant: {
38
- control: string;
39
- options: string[];
40
- description: string;
41
- };
42
- animated: {
43
- control: string;
44
- description: string;
45
- };
46
- };
47
- args: {
48
- percentage: number;
49
- showLabel: boolean;
50
- showPercentageInBar: boolean;
51
- height: number;
52
- variant: string;
53
- animated: boolean;
54
- };
55
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
56
3
  export default meta;
57
4
  type Story = StoryObj<typeof meta>;
58
5
  export declare const Default: Story;
@@ -1,35 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- label: {
8
- control: string;
9
- description: string;
10
- };
11
- placeholder: {
12
- control: string;
13
- description: string;
14
- };
15
- disabled: {
16
- control: string;
17
- description: string;
18
- };
19
- required: {
20
- control: string;
21
- description: string;
22
- };
23
- error: {
24
- control: string;
25
- description: string;
26
- };
27
- hint: {
28
- control: string;
29
- description: string;
30
- };
31
- };
32
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
33
3
  export default meta;
34
4
  type Story = StoryObj<typeof meta>;
35
5
  export declare const Default: Story;
@@ -1,46 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- title: {
8
- control: string;
9
- description: string;
10
- };
11
- value: {
12
- control: string;
13
- description: string;
14
- };
15
- variant: {
16
- control: string;
17
- options: string[];
18
- description: string;
19
- };
20
- prefix: {
21
- control: string;
22
- description: string;
23
- };
24
- suffix: {
25
- control: string;
26
- description: string;
27
- };
28
- editable: {
29
- control: string;
30
- description: string;
31
- };
32
- onInput: {
33
- action: string;
34
- };
35
- onChange: {
36
- action: string;
37
- };
38
- };
39
- args: {
40
- variant: string;
41
- editable: boolean;
42
- };
43
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
44
3
  export default meta;
45
4
  type Story = StoryObj<typeof meta>;
46
5
  export declare const Default: Story;
@@ -1,23 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- variant: {
8
- control: string;
9
- options: string[];
10
- };
11
- size: {
12
- control: string;
13
- options: string[];
14
- };
15
- };
16
- args: {
17
- variant: string;
18
- size: string;
19
- };
20
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
21
3
  export default meta;
22
4
  type Story = StoryObj<typeof meta>;
23
5
  export declare const Default: Story;
@@ -1,42 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/vue3';
2
- declare const meta: {
3
- title: string;
4
- component: import("vue").DefineComponent<{}, {}, any>;
5
- tags: string[];
6
- argTypes: {
7
- label: {
8
- control: string;
9
- description: string;
10
- };
11
- placeholder: {
12
- control: string;
13
- description: string;
14
- };
15
- rows: {
16
- control: string;
17
- description: string;
18
- };
19
- disabled: {
20
- control: string;
21
- description: string;
22
- };
23
- required: {
24
- control: string;
25
- description: string;
26
- };
27
- error: {
28
- control: string;
29
- description: string;
30
- };
31
- hint: {
32
- control: string;
33
- description: string;
34
- };
35
- };
36
- args: {
37
- rows: number;
38
- };
39
- };
2
+ declare const meta: ComponentAnnotations<import("@storybook/vue3").VueRenderer, TCmpOrArgs extends Constructor<any> ? any : TCmpOrArgs extends import("vue").FunctionalComponent<any, {}, any, {}> ? any : TCmpOrArgs>;
40
3
  export default meta;
41
4
  type Story = StoryObj<typeof meta>;
42
5
  export declare const Default: Story;