@asd20/ui-next 2.0.4 → 2.0.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.5](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.4...ui-next-v2.0.5) (2026-03-27)
4
+
3
5
  ## [2.0.4](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.3...ui-next-v2.0.4) (2026-03-27)
4
6
 
5
7
  ## [2.0.3](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.2...ui-next-v2.0.3) (2026-03-27)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asd20/ui-next",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "private": false,
5
5
  "description": "ASD20 UI component library for Vue 3.",
6
6
  "license": "MIT",
@@ -15,7 +15,7 @@ export default {
15
15
 
16
16
  .asd20-widget-group {
17
17
  --minimum-column-width: 150px;
18
- --gutter: space(1);
18
+ --gutter: #{space(1)};
19
19
  display: flex;
20
20
  flex-wrap: wrap;
21
21
  margin: calc(var(--gutter) * -1);
@@ -1,3 +1,5 @@
1
+ @use './variables';
2
+
1
3
  @mixin template {
2
4
  .page-enter-active, .page-leave-active {
3
5
  transition: opacity .5s;
@@ -6,7 +8,7 @@
6
8
  opacity: 0;
7
9
  }
8
10
  .notification-group--inline {
9
- margin: space(1);
11
+ margin: variables.space(1);
10
12
  }
11
13
 
12
14
  .asd20-widgets-section {
@@ -14,7 +16,7 @@
14
16
  // background-image: var(--website-texture__default);
15
17
  // background-position-y: top;
16
18
 
17
- padding: space(0.5);
19
+ padding: variables.space(0.5);
18
20
  }
19
21
  main .asd20-widgets-section {
20
22
  // margin-bottom: space(-1);
@@ -23,10 +25,10 @@
23
25
 
24
26
  @mixin template-desktop {
25
27
  .notification-group--inline {
26
- margin: space(1) space(3);
28
+ margin: variables.space(1) variables.space(3);
27
29
  }
28
30
  .asd20-widgets-section {
29
- padding: space(2);
31
+ padding: variables.space(2);
30
32
  margin: 0;
31
33
  // & > * {
32
34
  // padding: space(2) space(4) space(2) space(4);