mn-angular-lib 0.0.87 → 0.0.88

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": "0.0.87",
3
+ "version": "0.0.88",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -3168,13 +3168,18 @@ declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
3168
3168
  * Attribute directive that applies responsive-hiding classes to table cells/headers.
3169
3169
  * Hides the element by default and shows it as `table-cell` at the specified breakpoint.
3170
3170
  *
3171
+ * Uses a static class map so Tailwind CSS can detect the full class names at build time.
3172
+ *
3171
3173
  * Usage: `<td [mnHiddenBelow]="column.hiddenBelow">`
3172
3174
  */
3173
3175
  declare class MnHiddenBelowDirective implements OnChanges {
3176
+ /** The breakpoint below which the element is hidden. */
3174
3177
  mnHiddenBelow: 'sm' | 'md' | 'lg' | undefined;
3175
3178
  private readonly el;
3176
3179
  private readonly renderer;
3177
3180
  private appliedClasses;
3181
+ /** Static mapping of breakpoints to their full Tailwind class names. */
3182
+ private readonly classMap;
3178
3183
  ngOnChanges(): void;
3179
3184
  static ɵfac: i0.ɵɵFactoryDeclaration<MnHiddenBelowDirective, never>;
3180
3185
  static ɵdir: i0.ɵɵDirectiveDeclaration<MnHiddenBelowDirective, "[mnHiddenBelow]", never, { "mnHiddenBelow": { "alias": "mnHiddenBelow"; "required": false; }; }, {}, never, never, true, never>;