@choosemycompany/ui 0.1.0 → 0.3.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.
package/dist/index.d.ts CHANGED
@@ -19,6 +19,14 @@ declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {},
19
19
 
20
20
  declare const __VLS_component_3: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
21
21
 
22
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
23
+ status: Status;
24
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
25
+
26
+ declare const __VLS_component_5: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
27
+ gap: ButtonGroupGap;
28
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
29
+
22
30
  declare type __VLS_Props = {
23
31
  kind: ButtonKind;
24
32
  variant: ButtonVariant;
@@ -31,6 +39,20 @@ declare type __VLS_Props_2 = {
31
39
  level: HeadingLevels;
32
40
  };
33
41
 
42
+ declare type __VLS_Props_3 = {
43
+ status?: Status;
44
+ };
45
+
46
+ declare type __VLS_Props_4 = {
47
+ name: IconName;
48
+ size?: IconSize;
49
+ color?: IconColor;
50
+ };
51
+
52
+ declare type __VLS_Props_5 = {
53
+ gap: ButtonGroupGap;
54
+ };
55
+
34
56
  declare function __VLS_template(): {
35
57
  attrs: Partial<{}>;
36
58
  slots: {
@@ -63,12 +85,34 @@ declare function __VLS_template_3(): {
63
85
  rootEl: any;
64
86
  };
65
87
 
88
+ declare function __VLS_template_4(): {
89
+ attrs: Partial<{}>;
90
+ slots: {
91
+ default?(_: {}): any;
92
+ };
93
+ refs: {};
94
+ rootEl: HTMLDivElement;
95
+ };
96
+
97
+ declare function __VLS_template_5(): {
98
+ attrs: Partial<{}>;
99
+ slots: {
100
+ default?(_: {}): any;
101
+ };
102
+ refs: {};
103
+ rootEl: HTMLDivElement;
104
+ };
105
+
66
106
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
67
107
 
68
108
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
69
109
 
70
110
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
71
111
 
112
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
113
+
114
+ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
115
+
72
116
  declare type __VLS_WithTemplateSlots<T, S> = T & {
73
117
  new (): {
74
118
  $slots: S;
@@ -87,6 +131,24 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
87
131
  };
88
132
  };
89
133
 
134
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
135
+ new (): {
136
+ $slots: S;
137
+ };
138
+ };
139
+
140
+ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
141
+ new (): {
142
+ $slots: S;
143
+ };
144
+ };
145
+
146
+ declare type ButtonGroupGap = keyof typeof buttonGroupGapOptions;
147
+
148
+ declare const buttonGroupGapOptions: {
149
+ readonly medium: "medium";
150
+ };
151
+
90
152
  declare type ButtonKind = keyof typeof buttonKindOptions;
91
153
 
92
154
  export declare const buttonKindOptions: {
@@ -110,8 +172,18 @@ export declare const buttonVariantOptions: {
110
172
 
111
173
  export declare const CmcButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
112
174
 
175
+ export declare const CmcButtonGroup: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
176
+
113
177
  export declare const CmcHeading: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
114
178
 
179
+ export declare const CmcIcon: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {
180
+ name: IconName;
181
+ size: IconSize;
182
+ color: IconColor;
183
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
184
+
185
+ export declare const CmcStatus: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
186
+
115
187
  export declare const CmcTitle: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
116
188
 
117
189
  export declare const headingLevelOptions: {
@@ -125,4 +197,20 @@ export declare const headingLevelOptions: {
125
197
 
126
198
  declare type HeadingLevels = keyof typeof headingLevelOptions;
127
199
 
200
+ declare type IconColor = keyof typeof iconColorOptions;
201
+
202
+ export declare const iconColorOptions: Record<string, string>;
203
+
204
+ declare type IconName = keyof typeof iconsMap;
205
+
206
+ declare type IconSize = keyof typeof iconSizeOptions;
207
+
208
+ export declare const iconSizeOptions: Record<string, number>;
209
+
210
+ export declare const iconsMap: Record<string, string>;
211
+
212
+ declare type Status = keyof typeof statusOptions;
213
+
214
+ export declare const statusOptions: Record<string, string>;
215
+
128
216
  export { }