mn-angular-lib 1.0.53 → 1.0.55

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.53",
3
+ "version": "1.0.55",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -13,3 +13,11 @@
13
13
  --color-brand-800: #5B21B6;
14
14
  --color-brand-900: #4C1D95;
15
15
  }
16
+
17
+ @utility scrollbar-hide {
18
+ -ms-overflow-style: none; /* IE and Edge */
19
+ scrollbar-width: none; /* Firefox */
20
+ &::-webkit-scrollbar {
21
+ display: none; /* Safari and Chrome */
22
+ }
23
+ }
@@ -4573,6 +4573,16 @@ interface MnTabDataSource {
4573
4573
  declare class MnTabComponent implements OnInit {
4574
4574
  /** Data source containing tab items and default active index. */
4575
4575
  dataSource: MnTabDataSource;
4576
+ /**
4577
+ * Whether to enable horizontal scrolling when items overflow.
4578
+ * If true, tabs will scroll horizontally instead of shrinking too much.
4579
+ */
4580
+ scrollable: boolean;
4581
+ /**
4582
+ * Whether tabs should stretch to fill the available width.
4583
+ * Defaults to false, so tabs only take as much space as their content.
4584
+ */
4585
+ justified: boolean;
4576
4586
  /** Emits the newly activated tab item whenever the active tab changes. */
4577
4587
  activeChange: EventEmitter<MnTabItem>;
4578
4588
  /** The currently active tab item. */
@@ -4585,7 +4595,7 @@ declare class MnTabComponent implements OnInit {
4585
4595
  */
4586
4596
  setActive(item: MnTabItem): void;
4587
4597
  static ɵfac: i0.ɵɵFactoryDeclaration<MnTabComponent, never>;
4588
- static ɵcmp: i0.ɵɵComponentDeclaration<MnTabComponent, "mn-tab", never, { "dataSource": { "alias": "dataSource"; "required": false; }; }, { "activeChange": "activeChange"; }, never, never, true, never>;
4598
+ static ɵcmp: i0.ɵɵComponentDeclaration<MnTabComponent, "mn-tab", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "justified": { "alias": "justified"; "required": false; }; }, { "activeChange": "activeChange"; }, never, never, true, never>;
4589
4599
  }
4590
4600
 
4591
4601
  declare const mnIconVariants: tailwind_variants.TVReturnType<{
@@ -1 +0,0 @@
1
- /* All styling uses Tailwind utility classes in the template */