@asd20/ui-next 1.0.5 → 1.0.8

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,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.8](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v1.0.7...ui-next-v1.0.8) (2026-03-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **migration:** close out template verification ([f210d49](https://github.com/academydistrict20/asd20-ui-next/commit/f210d49d7ba0d7409fca2633cb05e14d20422a3a))
9
+
10
+ ## [1.0.7](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v1.0.5...ui-next-v1.0.7) (2026-03-21)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **sass:** align modern tooling and document release ([2e3362f](https://github.com/academydistrict20/asd20-ui-next/commit/2e3362f4ea901f4f8a2e02fcfa0ddd3f86c35405))
16
+
17
+ ## [1.0.6](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v1.0.5...ui-next-v1.0.6) (2026-03-21)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **sass:** remove deprecated shared design `if()` usage and align the modern Sass toolchain with downstream consumers
23
+
3
24
  ## [1.0.5](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v1.0.3...ui-next-v1.0.5) (2026-03-21)
4
25
 
5
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asd20/ui-next",
3
- "version": "1.0.5",
3
+ "version": "1.0.8",
4
4
  "private": false,
5
5
  "description": "ASD20 UI component library migration workspace.",
6
6
  "license": "MIT",
@@ -33,14 +33,14 @@
33
33
  "./package.json": "./package.json"
34
34
  },
35
35
  "dependencies": {
36
- "axios": "^1.12.2",
36
+ "axios": "^1.13.6",
37
37
  "basicscroll": "^3.0.2",
38
38
  "countup.js": "^2.0.0",
39
39
  "date-fns": "^2.30.0",
40
40
  "date-fns-tz": "^1.1.7",
41
41
  "focus-trap": "^6.9.4",
42
42
  "js-cookie": "^2.2.1",
43
- "lodash": "^4.17.21",
43
+ "lodash": "^4.17.23",
44
44
  "swiper": "^5.4.5",
45
45
  "uuid": "^3.3.2"
46
46
  },
@@ -42,7 +42,11 @@ $swatch-interval: 10%;
42
42
 
43
43
  @function asd20-swatch($key: 'primary', $level: 0) {
44
44
  $swatch: map.get($swatches, $key);
45
- $color-base: if($level < 0, black, white);
45
+ $color-base: white;
46
+
47
+ @if $level < 0 {
48
+ $color-base: black;
49
+ }
46
50
 
47
51
  // @return $swatch;
48
52