cja-phoenix 0.24.9 → 0.24.10

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.
@@ -19683,7 +19683,11 @@ const q4 = {
19683
19683
  max: 1199
19684
19684
  },
19685
19685
  xl: {
19686
- min: 1200
19686
+ min: 1200,
19687
+ max: 1439
19688
+ },
19689
+ xxl: {
19690
+ min: 1440
19687
19691
  }
19688
19692
  }, O4 = (e) => {
19689
19693
  for (const t in Dc)
@@ -20,5 +20,9 @@ export declare const mediaBreakpoints: {
20
20
  };
21
21
  xl: {
22
22
  min: number;
23
+ max: number;
24
+ };
25
+ xxl: {
26
+ min: number;
23
27
  };
24
28
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cja-phoenix",
3
- "version": "0.24.9",
3
+ "version": "0.24.10",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -13,3 +13,6 @@ $break-lg-min: 1024px;
13
13
  $break-lg-max: 1199px;
14
14
 
15
15
  $break-xl-min: 1200px;
16
+ $break-xl-max: 1439px;
17
+
18
+ $break-xxl-min: 1440px;
@@ -20,5 +20,9 @@ export const mediaBreakpoints = {
20
20
  },
21
21
  xl: {
22
22
  min: 1200,
23
+ max: 1439,
24
+ },
25
+ xxl: {
26
+ min: 1440,
23
27
  },
24
28
  };