@asd20/ui-next 2.0.4 → 2.0.6

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.6](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.5...ui-next-v2.0.6) (2026-03-27)
4
+
5
+ ## [2.0.5](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.4...ui-next-v2.0.5) (2026-03-27)
6
+
3
7
  ## [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
8
 
5
9
  ## [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.6",
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);
@@ -251,6 +251,23 @@ $logo-width: 50vw;
251
251
  display: none !important;
252
252
  }
253
253
  }
254
+ @media (min-width: 1024px) and (min-height: 651px) {
255
+ .navbar {
256
+ width: space(3);
257
+ }
258
+
259
+ .navbar .menu-button.asd20-action-menu-item--md,
260
+ .navbar .search-button.asd20-action-menu-item--md {
261
+ width: space(3);
262
+ height: space(3);
263
+ }
264
+
265
+ .navbar .menu-button :deep(.asd20-icon--md),
266
+ .navbar .search-button :deep(.asd20-icon--md) {
267
+ width: 48px;
268
+ height: 48px;
269
+ }
270
+ }
254
271
  @media (min-width: 1024px) {
255
272
  .navbar
256
273
  .menu-button,
@@ -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);