@marianmeres/stuic 2.50.0 → 2.51.0

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.
@@ -62,7 +62,7 @@
62
62
  `;
63
63
 
64
64
  const CLS_ITEM = `
65
- min-w-0 flex-1
65
+ min-w-0 flex-1 max-w-40
66
66
  `;
67
67
 
68
68
  const CLS_BUTTON = `
@@ -35,6 +35,7 @@ export declare class Breakpoint {
35
35
  get lg(): boolean;
36
36
  get xl(): boolean;
37
37
  get ["2xl"](): boolean;
38
+ get isMobile(): boolean;
38
39
  get dump(): BreakpointValue;
39
40
  }
40
41
  export {};
@@ -55,6 +55,9 @@ export class Breakpoint {
55
55
  get ["2xl"]() {
56
56
  return this.#bp["2xl"];
57
57
  }
58
+ get isMobile() {
59
+ return !this.#bp.md;
60
+ }
58
61
  get dump() {
59
62
  return this.#bp;
60
63
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/stuic",
3
- "version": "2.50.0",
3
+ "version": "2.51.0",
4
4
  "files": [
5
5
  "dist",
6
6
  "!dist/**/*.test.*",