veloce-vue 0.19.0 → 0.21.0

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.
Files changed (41) hide show
  1. package/components/Accordion.vue.d.ts +19 -1
  2. package/components/Badge.vue.d.ts +58 -0
  3. package/components/Button.vue.d.ts +7 -7
  4. package/components/Checkbox.vue.d.ts +1 -1
  5. package/components/Chip.vue.d.ts +81 -0
  6. package/components/Fieldset.vue.d.ts +62 -0
  7. package/components/Input.vue.d.ts +2 -2
  8. package/components/JsonRenderer.vue.d.ts +14 -0
  9. package/components/Layout.vue.d.ts +38 -0
  10. package/components/Message.vue.d.ts +154 -0
  11. package/components/MiniEditor.vue.d.ts +12 -0
  12. package/components/ProgressBar.vue.d.ts +70 -0
  13. package/components/ProgressSpinner.vue.d.ts +25 -0
  14. package/components/Select.vue.d.ts +1 -1
  15. package/components/Separator.vue.d.ts +3 -3
  16. package/components/Skeleton.vue.d.ts +51 -0
  17. package/components/Switch.vue.d.ts +1 -1
  18. package/components/icon/icons.d.ts +3 -0
  19. package/components/typography/Blockquote.vue.d.ts +151 -0
  20. package/components/typography/Code.vue.d.ts +160 -0
  21. package/components/typography/H1.vue.d.ts +151 -0
  22. package/components/typography/H2.vue.d.ts +151 -0
  23. package/components/typography/H3.vue.d.ts +151 -0
  24. package/components/typography/H4.vue.d.ts +151 -0
  25. package/components/typography/H5.vue.d.ts +151 -0
  26. package/components/typography/H6.vue.d.ts +151 -0
  27. package/components/typography/Label.vue.d.ts +160 -0
  28. package/components/typography/List.vue.d.ts +123 -0
  29. package/components/typography/P.vue.d.ts +151 -0
  30. package/components/typography/Span.vue.d.ts +151 -0
  31. package/exports/composables.d.ts +1 -0
  32. package/exports/toast.d.ts +4 -0
  33. package/exports/types.d.ts +54 -1
  34. package/exports/typography.d.ts +12 -0
  35. package/exports/ui.d.ts +10 -0
  36. package/exports/utils.d.ts +3 -0
  37. package/icons.js +1 -1
  38. package/{index-Cqxg4hfC.js → index-BLYh_r9b.js} +216 -167
  39. package/package.json +1 -1
  40. package/ui.js +4396 -2721
  41. package/veloce.css +1 -1
@@ -0,0 +1,70 @@
1
+ import { Severity } from '../exports/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ value: {
5
+ type: NumberConstructor;
6
+ default: number;
7
+ };
8
+ max: {
9
+ type: NumberConstructor;
10
+ default: number;
11
+ };
12
+ severity: {
13
+ type: () => Severity;
14
+ default: string;
15
+ };
16
+ striped: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ animated: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ mode: {
25
+ type: () => "indeterminate" | "determinate";
26
+ default: string;
27
+ };
28
+ textColor: {
29
+ type: () => Severity | "white";
30
+ default: string;
31
+ };
32
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
33
+ value: {
34
+ type: NumberConstructor;
35
+ default: number;
36
+ };
37
+ max: {
38
+ type: NumberConstructor;
39
+ default: number;
40
+ };
41
+ severity: {
42
+ type: () => Severity;
43
+ default: string;
44
+ };
45
+ striped: {
46
+ type: BooleanConstructor;
47
+ default: boolean;
48
+ };
49
+ animated: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ mode: {
54
+ type: () => "indeterminate" | "determinate";
55
+ default: string;
56
+ };
57
+ textColor: {
58
+ type: () => Severity | "white";
59
+ default: string;
60
+ };
61
+ }>> & Readonly<{}>, {
62
+ mode: "indeterminate" | "determinate";
63
+ max: number;
64
+ value: number;
65
+ severity: Severity;
66
+ striped: boolean;
67
+ animated: boolean;
68
+ textColor: Severity | "white";
69
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
70
+ export default _default;
@@ -0,0 +1,25 @@
1
+ import { Severity, Size } from '../exports/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ severity: {
5
+ type: () => Severity;
6
+ default: string;
7
+ };
8
+ size: {
9
+ type: () => Size;
10
+ default: string;
11
+ };
12
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
13
+ severity: {
14
+ type: () => Severity;
15
+ default: string;
16
+ };
17
+ size: {
18
+ type: () => Size;
19
+ default: string;
20
+ };
21
+ }>> & Readonly<{}>, {
22
+ size: Size;
23
+ severity: Severity;
24
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
25
+ export default _default;
@@ -81,8 +81,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
81
81
  }>, {
82
82
  size: Size;
83
83
  fontWeight: FontWeight;
84
- variant: Variant;
85
84
  severity: Severity;
85
+ variant: Variant;
86
86
  isOpen: boolean;
87
87
  showFilter: boolean;
88
88
  closeOnClickOutside: boolean;
@@ -91,12 +91,12 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
91
91
  label: string;
92
92
  height: string;
93
93
  type: SeparatorType;
94
- icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
94
+ icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out" | "bold" | "italic" | "highlight";
95
95
  size: Size;
96
- direction: Direction;
96
+ bordered: boolean;
97
97
  rounded: boolean;
98
+ direction: Direction;
98
99
  severity: Severity;
99
- bordered: boolean;
100
100
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
101
101
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
102
102
  export default _default;
@@ -0,0 +1,51 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ width: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ height: {
8
+ type: StringConstructor;
9
+ default: string;
10
+ };
11
+ rounded: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ variant: {
16
+ type: () => "text" | "circular" | "rectangular";
17
+ default: string;
18
+ };
19
+ animation: {
20
+ type: () => "pulse" | "wave" | "none";
21
+ default: string;
22
+ };
23
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
24
+ width: {
25
+ type: StringConstructor;
26
+ default: string;
27
+ };
28
+ height: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ rounded: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ variant: {
37
+ type: () => "text" | "circular" | "rectangular";
38
+ default: string;
39
+ };
40
+ animation: {
41
+ type: () => "pulse" | "wave" | "none";
42
+ default: string;
43
+ };
44
+ }>> & Readonly<{}>, {
45
+ width: string;
46
+ height: string;
47
+ rounded: boolean;
48
+ animation: "none" | "pulse" | "wave";
49
+ variant: "text" | "circular" | "rectangular";
50
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
51
+ export default _default;
@@ -38,7 +38,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
38
38
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
39
39
  }>, {
40
40
  size: Size;
41
- disabled: boolean;
42
41
  severity: Severity;
42
+ disabled: boolean;
43
43
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
44
44
  export default _default;
@@ -136,4 +136,7 @@ export declare const iconsMap: {
136
136
  readonly zap: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
137
137
  readonly "zoom-in": DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
138
138
  readonly "zoom-out": DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
139
+ readonly bold: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
140
+ readonly italic: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
141
+ readonly highlight: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
139
142
  };
@@ -0,0 +1,151 @@
1
+ import { TextColor, FontWeight, Margin, Padding, FontSize, LineHeight, LetterSpacing } from '../../exports/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ text: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ fontSize: {
9
+ type: () => FontSize;
10
+ default: FontSize;
11
+ };
12
+ color: {
13
+ type: () => TextColor;
14
+ default: TextColor;
15
+ };
16
+ fontWeight: {
17
+ type: () => FontWeight;
18
+ default: FontWeight;
19
+ };
20
+ lineHeight: {
21
+ type: () => LineHeight;
22
+ default: LineHeight;
23
+ };
24
+ letterSpacing: {
25
+ type: () => LetterSpacing;
26
+ default: LetterSpacing;
27
+ };
28
+ margin: {
29
+ type: () => Margin;
30
+ default: string;
31
+ };
32
+ marginLeft: {
33
+ type: () => Margin;
34
+ default: string;
35
+ };
36
+ marginRight: {
37
+ type: () => Margin;
38
+ default: string;
39
+ };
40
+ marginTop: {
41
+ type: () => Margin;
42
+ default: string;
43
+ };
44
+ marginBottom: {
45
+ type: () => Margin;
46
+ default: string;
47
+ };
48
+ padding: {
49
+ type: () => Padding;
50
+ default: string;
51
+ };
52
+ paddingLeft: {
53
+ type: () => Padding;
54
+ default: string;
55
+ };
56
+ paddingRight: {
57
+ type: () => Padding;
58
+ default: string;
59
+ };
60
+ paddingTop: {
61
+ type: () => Padding;
62
+ default: string;
63
+ };
64
+ paddingBottom: {
65
+ type: () => Padding;
66
+ default: string;
67
+ };
68
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
69
+ text: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ fontSize: {
74
+ type: () => FontSize;
75
+ default: FontSize;
76
+ };
77
+ color: {
78
+ type: () => TextColor;
79
+ default: TextColor;
80
+ };
81
+ fontWeight: {
82
+ type: () => FontWeight;
83
+ default: FontWeight;
84
+ };
85
+ lineHeight: {
86
+ type: () => LineHeight;
87
+ default: LineHeight;
88
+ };
89
+ letterSpacing: {
90
+ type: () => LetterSpacing;
91
+ default: LetterSpacing;
92
+ };
93
+ margin: {
94
+ type: () => Margin;
95
+ default: string;
96
+ };
97
+ marginLeft: {
98
+ type: () => Margin;
99
+ default: string;
100
+ };
101
+ marginRight: {
102
+ type: () => Margin;
103
+ default: string;
104
+ };
105
+ marginTop: {
106
+ type: () => Margin;
107
+ default: string;
108
+ };
109
+ marginBottom: {
110
+ type: () => Margin;
111
+ default: string;
112
+ };
113
+ padding: {
114
+ type: () => Padding;
115
+ default: string;
116
+ };
117
+ paddingLeft: {
118
+ type: () => Padding;
119
+ default: string;
120
+ };
121
+ paddingRight: {
122
+ type: () => Padding;
123
+ default: string;
124
+ };
125
+ paddingTop: {
126
+ type: () => Padding;
127
+ default: string;
128
+ };
129
+ paddingBottom: {
130
+ type: () => Padding;
131
+ default: string;
132
+ };
133
+ }>> & Readonly<{}>, {
134
+ text: string;
135
+ fontSize: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
136
+ color: TextColor;
137
+ fontWeight: FontWeight;
138
+ lineHeight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
139
+ letterSpacing: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
140
+ margin: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
141
+ marginLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
142
+ marginRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
143
+ marginTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
144
+ marginBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
145
+ padding: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
146
+ paddingLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
147
+ paddingRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
148
+ paddingTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
149
+ paddingBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
150
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLQuoteElement>;
151
+ export default _default;
@@ -0,0 +1,160 @@
1
+ import { TextColor, FontWeight, Margin, Padding, FontSize, LineHeight, LetterSpacing } from '../../exports/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ text: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ fontSize: {
9
+ type: () => FontSize;
10
+ default: FontSize;
11
+ };
12
+ color: {
13
+ type: () => TextColor;
14
+ default: TextColor;
15
+ };
16
+ fontWeight: {
17
+ type: () => FontWeight;
18
+ default: FontWeight;
19
+ };
20
+ lineHeight: {
21
+ type: () => LineHeight;
22
+ default: LineHeight;
23
+ };
24
+ letterSpacing: {
25
+ type: () => LetterSpacing;
26
+ default: LetterSpacing;
27
+ };
28
+ block: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ margin: {
33
+ type: () => Margin;
34
+ default: string;
35
+ };
36
+ marginLeft: {
37
+ type: () => Margin;
38
+ default: string;
39
+ };
40
+ marginRight: {
41
+ type: () => Margin;
42
+ default: string;
43
+ };
44
+ marginTop: {
45
+ type: () => Margin;
46
+ default: string;
47
+ };
48
+ marginBottom: {
49
+ type: () => Margin;
50
+ default: string;
51
+ };
52
+ padding: {
53
+ type: () => Padding;
54
+ default: string;
55
+ };
56
+ paddingLeft: {
57
+ type: () => Padding;
58
+ default: string;
59
+ };
60
+ paddingRight: {
61
+ type: () => Padding;
62
+ default: string;
63
+ };
64
+ paddingTop: {
65
+ type: () => Padding;
66
+ default: string;
67
+ };
68
+ paddingBottom: {
69
+ type: () => Padding;
70
+ default: string;
71
+ };
72
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
73
+ text: {
74
+ type: StringConstructor;
75
+ default: string;
76
+ };
77
+ fontSize: {
78
+ type: () => FontSize;
79
+ default: FontSize;
80
+ };
81
+ color: {
82
+ type: () => TextColor;
83
+ default: TextColor;
84
+ };
85
+ fontWeight: {
86
+ type: () => FontWeight;
87
+ default: FontWeight;
88
+ };
89
+ lineHeight: {
90
+ type: () => LineHeight;
91
+ default: LineHeight;
92
+ };
93
+ letterSpacing: {
94
+ type: () => LetterSpacing;
95
+ default: LetterSpacing;
96
+ };
97
+ block: {
98
+ type: BooleanConstructor;
99
+ default: boolean;
100
+ };
101
+ margin: {
102
+ type: () => Margin;
103
+ default: string;
104
+ };
105
+ marginLeft: {
106
+ type: () => Margin;
107
+ default: string;
108
+ };
109
+ marginRight: {
110
+ type: () => Margin;
111
+ default: string;
112
+ };
113
+ marginTop: {
114
+ type: () => Margin;
115
+ default: string;
116
+ };
117
+ marginBottom: {
118
+ type: () => Margin;
119
+ default: string;
120
+ };
121
+ padding: {
122
+ type: () => Padding;
123
+ default: string;
124
+ };
125
+ paddingLeft: {
126
+ type: () => Padding;
127
+ default: string;
128
+ };
129
+ paddingRight: {
130
+ type: () => Padding;
131
+ default: string;
132
+ };
133
+ paddingTop: {
134
+ type: () => Padding;
135
+ default: string;
136
+ };
137
+ paddingBottom: {
138
+ type: () => Padding;
139
+ default: string;
140
+ };
141
+ }>> & Readonly<{}>, {
142
+ text: string;
143
+ fontSize: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
144
+ color: TextColor;
145
+ fontWeight: FontWeight;
146
+ lineHeight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
147
+ letterSpacing: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
148
+ margin: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
149
+ marginLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
150
+ marginRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
151
+ marginTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
152
+ marginBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
153
+ padding: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
154
+ paddingLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
155
+ paddingRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
156
+ paddingTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
157
+ paddingBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
158
+ block: boolean;
159
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLElement>;
160
+ export default _default;
@@ -0,0 +1,151 @@
1
+ import { TextColor, FontWeight, Margin, Padding, FontSize, LineHeight, LetterSpacing } from '../../exports/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ text: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ fontSize: {
9
+ type: () => FontSize;
10
+ default: FontSize;
11
+ };
12
+ color: {
13
+ type: () => TextColor;
14
+ default: TextColor;
15
+ };
16
+ fontWeight: {
17
+ type: () => FontWeight;
18
+ default: FontWeight;
19
+ };
20
+ lineHeight: {
21
+ type: () => LineHeight;
22
+ default: LineHeight;
23
+ };
24
+ letterSpacing: {
25
+ type: () => LetterSpacing;
26
+ default: LetterSpacing;
27
+ };
28
+ margin: {
29
+ type: () => Margin;
30
+ default: string;
31
+ };
32
+ marginLeft: {
33
+ type: () => Margin;
34
+ default: string;
35
+ };
36
+ marginRight: {
37
+ type: () => Margin;
38
+ default: string;
39
+ };
40
+ marginTop: {
41
+ type: () => Margin;
42
+ default: string;
43
+ };
44
+ marginBottom: {
45
+ type: () => Margin;
46
+ default: string;
47
+ };
48
+ padding: {
49
+ type: () => Padding;
50
+ default: string;
51
+ };
52
+ paddingLeft: {
53
+ type: () => Padding;
54
+ default: string;
55
+ };
56
+ paddingRight: {
57
+ type: () => Padding;
58
+ default: string;
59
+ };
60
+ paddingTop: {
61
+ type: () => Padding;
62
+ default: string;
63
+ };
64
+ paddingBottom: {
65
+ type: () => Padding;
66
+ default: string;
67
+ };
68
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
69
+ text: {
70
+ type: StringConstructor;
71
+ default: string;
72
+ };
73
+ fontSize: {
74
+ type: () => FontSize;
75
+ default: FontSize;
76
+ };
77
+ color: {
78
+ type: () => TextColor;
79
+ default: TextColor;
80
+ };
81
+ fontWeight: {
82
+ type: () => FontWeight;
83
+ default: FontWeight;
84
+ };
85
+ lineHeight: {
86
+ type: () => LineHeight;
87
+ default: LineHeight;
88
+ };
89
+ letterSpacing: {
90
+ type: () => LetterSpacing;
91
+ default: LetterSpacing;
92
+ };
93
+ margin: {
94
+ type: () => Margin;
95
+ default: string;
96
+ };
97
+ marginLeft: {
98
+ type: () => Margin;
99
+ default: string;
100
+ };
101
+ marginRight: {
102
+ type: () => Margin;
103
+ default: string;
104
+ };
105
+ marginTop: {
106
+ type: () => Margin;
107
+ default: string;
108
+ };
109
+ marginBottom: {
110
+ type: () => Margin;
111
+ default: string;
112
+ };
113
+ padding: {
114
+ type: () => Padding;
115
+ default: string;
116
+ };
117
+ paddingLeft: {
118
+ type: () => Padding;
119
+ default: string;
120
+ };
121
+ paddingRight: {
122
+ type: () => Padding;
123
+ default: string;
124
+ };
125
+ paddingTop: {
126
+ type: () => Padding;
127
+ default: string;
128
+ };
129
+ paddingBottom: {
130
+ type: () => Padding;
131
+ default: string;
132
+ };
133
+ }>> & Readonly<{}>, {
134
+ text: string;
135
+ fontSize: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
136
+ color: TextColor;
137
+ fontWeight: FontWeight;
138
+ lineHeight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
139
+ letterSpacing: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
140
+ margin: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
141
+ marginLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
142
+ marginRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
143
+ marginTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
144
+ marginBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
145
+ padding: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
146
+ paddingLeft: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
147
+ paddingRight: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
148
+ paddingTop: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
149
+ paddingBottom: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl";
150
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLHeadingElement>;
151
+ export default _default;