mn-angular-lib 1.0.119 → 1.0.121

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mn-angular-lib",
3
- "version": "1.0.119",
3
+ "version": "1.0.121",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -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'];
@@ -5582,7 +5601,6 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
5582
5601
  label: string;
5583
5602
  }[];
5584
5603
  isMobileView: boolean;
5585
- isTabletView: boolean;
5586
5604
  /** BehaviorSubject so late-subscribing child views receive the last emitted events. */
5587
5605
  internalEventsChanged: BehaviorSubject<CalendarEvent[]>;
5588
5606
  /** Subject for broadcasting focus-day changes to child views. */