mn-angular-lib 1.0.21 → 1.0.23
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/package.json
CHANGED
|
@@ -148,6 +148,10 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
|
|
|
148
148
|
lg: string;
|
|
149
149
|
xl: string;
|
|
150
150
|
};
|
|
151
|
+
wrap: {
|
|
152
|
+
true: string;
|
|
153
|
+
false: string;
|
|
154
|
+
};
|
|
151
155
|
color: {
|
|
152
156
|
primary: string;
|
|
153
157
|
secondary: string;
|
|
@@ -164,6 +168,10 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
|
|
|
164
168
|
lg: string;
|
|
165
169
|
xl: string;
|
|
166
170
|
};
|
|
171
|
+
wrap: {
|
|
172
|
+
true: string;
|
|
173
|
+
false: string;
|
|
174
|
+
};
|
|
167
175
|
color: {
|
|
168
176
|
primary: string;
|
|
169
177
|
secondary: string;
|
|
@@ -180,6 +188,10 @@ declare const mnBadgeVariants: tailwind_variants.TVReturnType<{
|
|
|
180
188
|
lg: string;
|
|
181
189
|
xl: string;
|
|
182
190
|
};
|
|
191
|
+
wrap: {
|
|
192
|
+
true: string;
|
|
193
|
+
false: string;
|
|
194
|
+
};
|
|
183
195
|
color: {
|
|
184
196
|
primary: string;
|
|
185
197
|
secondary: string;
|
|
@@ -195,6 +207,7 @@ type MnBadgeVariants = VariantProps<typeof mnBadgeVariants>;
|
|
|
195
207
|
interface MnBadgeTypes {
|
|
196
208
|
size: MnBadgeVariants['size'];
|
|
197
209
|
color: MnBadgeVariants['color'];
|
|
210
|
+
wrap: MnBadgeVariants['wrap'];
|
|
198
211
|
}
|
|
199
212
|
|
|
200
213
|
declare class MnBadge {
|
|
@@ -238,8 +251,9 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
238
251
|
disabled: {
|
|
239
252
|
true: string;
|
|
240
253
|
};
|
|
241
|
-
|
|
254
|
+
wrap: {
|
|
242
255
|
true: string;
|
|
256
|
+
false: string;
|
|
243
257
|
};
|
|
244
258
|
}, undefined, "hover:cursor-pointer transition-all duration-300 ease-in-out", {
|
|
245
259
|
size: {
|
|
@@ -275,8 +289,9 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
275
289
|
disabled: {
|
|
276
290
|
true: string;
|
|
277
291
|
};
|
|
278
|
-
|
|
292
|
+
wrap: {
|
|
279
293
|
true: string;
|
|
294
|
+
false: string;
|
|
280
295
|
};
|
|
281
296
|
}, undefined, tailwind_variants.TVReturnType<{
|
|
282
297
|
size: {
|
|
@@ -312,8 +327,9 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
312
327
|
disabled: {
|
|
313
328
|
true: string;
|
|
314
329
|
};
|
|
315
|
-
|
|
330
|
+
wrap: {
|
|
316
331
|
true: string;
|
|
332
|
+
false: string;
|
|
317
333
|
};
|
|
318
334
|
}, undefined, "hover:cursor-pointer transition-all duration-300 ease-in-out", unknown, unknown, undefined>>;
|
|
319
335
|
type MnButtonVariants = VariantProps<typeof mnButtonVariants>;
|
|
@@ -324,7 +340,7 @@ interface MnButtonTypes {
|
|
|
324
340
|
borderRadius: MnButtonVariants['borderRadius'];
|
|
325
341
|
color: MnButtonVariants['color'];
|
|
326
342
|
disabled?: MnButtonVariants['disabled'];
|
|
327
|
-
|
|
343
|
+
wrap?: MnButtonVariants['wrap'];
|
|
328
344
|
}
|
|
329
345
|
|
|
330
346
|
declare class MnButton {
|