mn-angular-lib 1.0.119 → 1.0.120
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
|
@@ -244,6 +244,7 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
244
244
|
outline: string;
|
|
245
245
|
text: string;
|
|
246
246
|
textUnderline: string;
|
|
247
|
+
ghost: string;
|
|
247
248
|
};
|
|
248
249
|
color: {
|
|
249
250
|
primary: string;
|
|
@@ -265,6 +266,11 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
265
266
|
three_xl: string;
|
|
266
267
|
four_xl: string;
|
|
267
268
|
};
|
|
269
|
+
shape: {
|
|
270
|
+
default: string;
|
|
271
|
+
circle: string;
|
|
272
|
+
square: string;
|
|
273
|
+
};
|
|
268
274
|
disabled: {
|
|
269
275
|
true: string;
|
|
270
276
|
};
|
|
@@ -289,6 +295,7 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
289
295
|
outline: string;
|
|
290
296
|
text: string;
|
|
291
297
|
textUnderline: string;
|
|
298
|
+
ghost: string;
|
|
292
299
|
};
|
|
293
300
|
color: {
|
|
294
301
|
primary: string;
|
|
@@ -310,6 +317,11 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
310
317
|
three_xl: string;
|
|
311
318
|
four_xl: string;
|
|
312
319
|
};
|
|
320
|
+
shape: {
|
|
321
|
+
default: string;
|
|
322
|
+
circle: string;
|
|
323
|
+
square: string;
|
|
324
|
+
};
|
|
313
325
|
disabled: {
|
|
314
326
|
true: string;
|
|
315
327
|
};
|
|
@@ -334,6 +346,7 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
334
346
|
outline: string;
|
|
335
347
|
text: string;
|
|
336
348
|
textUnderline: string;
|
|
349
|
+
ghost: string;
|
|
337
350
|
};
|
|
338
351
|
color: {
|
|
339
352
|
primary: string;
|
|
@@ -355,6 +368,11 @@ declare const mnButtonVariants: tailwind_variants.TVReturnType<{
|
|
|
355
368
|
three_xl: string;
|
|
356
369
|
four_xl: string;
|
|
357
370
|
};
|
|
371
|
+
shape: {
|
|
372
|
+
default: string;
|
|
373
|
+
circle: string;
|
|
374
|
+
square: string;
|
|
375
|
+
};
|
|
358
376
|
disabled: {
|
|
359
377
|
true: string;
|
|
360
378
|
};
|
|
@@ -375,6 +393,7 @@ type MnButtonTypes = {
|
|
|
375
393
|
size: MnButtonVariants['size'];
|
|
376
394
|
variant: MnButtonVariants['variant'];
|
|
377
395
|
borderRadius: MnButtonVariants['borderRadius'];
|
|
396
|
+
shape?: MnButtonVariants['shape'];
|
|
378
397
|
color: MnButtonVariants['color'];
|
|
379
398
|
disabled?: MnButtonVariants['disabled'];
|
|
380
399
|
loading?: MnButtonVariants['loading'];
|