@choosemycompany/ui 0.0.11 → 0.2.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,10 @@ 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
+
22
26
  declare type __VLS_Props = {
23
27
  kind: ButtonKind;
24
28
  variant: ButtonVariant;
@@ -31,6 +35,15 @@ declare type __VLS_Props_2 = {
31
35
  level: HeadingLevels;
32
36
  };
33
37
 
38
+ declare type __VLS_Props_3 = {
39
+ status?: Status;
40
+ };
41
+
42
+ declare type __VLS_Props_4 = {
43
+ name: IconName;
44
+ size?: IconsSize;
45
+ };
46
+
34
47
  declare function __VLS_template(): {
35
48
  attrs: Partial<{}>;
36
49
  slots: {
@@ -63,12 +76,23 @@ declare function __VLS_template_3(): {
63
76
  rootEl: any;
64
77
  };
65
78
 
79
+ declare function __VLS_template_4(): {
80
+ attrs: Partial<{}>;
81
+ slots: {
82
+ default?(_: {}): any;
83
+ };
84
+ refs: {};
85
+ rootEl: HTMLDivElement;
86
+ };
87
+
66
88
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
67
89
 
68
90
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
69
91
 
70
92
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
71
93
 
94
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
95
+
72
96
  declare type __VLS_WithTemplateSlots<T, S> = T & {
73
97
  new (): {
74
98
  $slots: S;
@@ -87,6 +111,12 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
87
111
  };
88
112
  };
89
113
 
114
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
115
+ new (): {
116
+ $slots: S;
117
+ };
118
+ };
119
+
90
120
  declare type ButtonKind = keyof typeof buttonKindOptions;
91
121
 
92
122
  export declare const buttonKindOptions: {
@@ -112,6 +142,13 @@ export declare const CmcButton: __VLS_WithTemplateSlots<typeof __VLS_component,
112
142
 
113
143
  export declare const CmcHeading: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
114
144
 
145
+ export declare const CmcIcon: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {
146
+ name: IconName;
147
+ size: IconsSize;
148
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
149
+
150
+ export declare const CmcStatus: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
151
+
115
152
  export declare const CmcTitle: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
116
153
 
117
154
  export declare const headingLevelOptions: {
@@ -125,4 +162,16 @@ export declare const headingLevelOptions: {
125
162
 
126
163
  declare type HeadingLevels = keyof typeof headingLevelOptions;
127
164
 
165
+ declare type IconName = keyof typeof iconsMap;
166
+
167
+ export declare const iconsMap: Record<string, string>;
168
+
169
+ declare type IconsSize = keyof typeof iconsSizeOptions;
170
+
171
+ export declare const iconsSizeOptions: Record<string, number>;
172
+
173
+ declare type Status = keyof typeof statusOptions;
174
+
175
+ export declare const statusOptions: Record<string, string>;
176
+
128
177
  export { }