@mineui/tokens 0.0.8 → 0.0.9

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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  </div>
9
9
 
10
10
  <div align="center">
11
- <img src="https://img.shields.io/badge/v-0.0.8-black"/>
11
+ <img src="https://img.shields.io/badge/v-0.0.9-black"/>
12
12
  <a href="https://github.com/mineui-org"><img src="https://img.shields.io/badge/🔥-@mineui-black"/></a>
13
13
  <br>
14
14
  <img src="https://img.shields.io/github/issues/mineui-org/tokens?style=flat" alt="Github Repo Issues" />
@@ -0,0 +1,15 @@
1
+ // aspect.scss
2
+ //
3
+ // Made with ❤️ by Maysara.
4
+
5
+ @use 'sass:math';
6
+
7
+ // ----------------------------------------------------------------------------
8
+ // ASPECT RATIOS
9
+ // ----------------------------------------------------------------------------
10
+ $aspect-square: math.div(1, 1);
11
+ $aspect-video: math.div(16, 9);
12
+ $aspect-4-3: math.div(4, 3);
13
+ $aspect-21-9: math.div(21, 9);
14
+ $aspect-portrait: math.div(3, 4);
15
+ $aspect-auto: auto;
@@ -12,7 +12,7 @@
12
12
  $bp-md: 768px;
13
13
  $bp-lg: 1024px;
14
14
  $bp-xl: 1280px;
15
- $bp-2xl: 1536px;
15
+ $bp-xxl: 1536px;
16
16
 
17
17
  // Map for easy iteration
18
18
  $breakpoints: (
@@ -21,6 +21,6 @@
21
21
  'md': $bp-md,
22
22
  'lg': $bp-lg,
23
23
  'xl': $bp-xl,
24
- '2xl': $bp-2xl,
24
+ 'xxl': $bp-xxl,
25
25
  );
26
26
 
@@ -7,15 +7,15 @@
7
7
  // ----------------------------------------------------------------------------
8
8
  // PACK
9
9
  // ----------------------------------------------------------------------------
10
- @use './colors.scss';
11
- @use './spaces.scss';
12
- @use './typography.scss';
13
- @use './borders.scss';
14
- @use './shadows.scss';
15
- @use './z-index.scss';
16
- @use './transitions.scss';
17
- @use './opacity.scss';
18
- @use './blur.scss';
19
- @use './aspect.scss';
20
- @use './sizes.scss';
21
- @use './breakpoints.scss';
10
+ @forward './colors.scss';
11
+ @forward './spaces.scss';
12
+ @forward './typography.scss';
13
+ @forward './borders.scss';
14
+ @forward './shadows.scss';
15
+ @forward './z-index.scss';
16
+ @forward './transitions.scss';
17
+ @forward './opacity.scss';
18
+ @forward './blur.scss';
19
+ @forward './aspect.scss';
20
+ @forward './sizes.scss';
21
+ @forward './breakpoints.scss';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mineui/tokens",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Design tokens used by utilities",
5
5
  "keywords": ["mine", "ui", "tokens"],
6
6
  "license": "MIT",
@@ -1,15 +0,0 @@
1
- // aspect.scss
2
- //
3
- // Made with ❤️ by Maysara.
4
-
5
-
6
-
7
- // ----------------------------------------------------------------------------
8
- // ASPECT RATIOS
9
- // ----------------------------------------------------------------------------
10
- $aspect-square: 1 / 1;
11
- $aspect-video: 16 / 9;
12
- $aspect-4-3: 4 / 3;
13
- $aspect-21-9: 21 / 9;
14
- $aspect-portrait: 3 / 4;
15
- $aspect-auto: auto;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes