@asd20/ui-next 2.7.4 → 2.7.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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.7.5](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.7.4...ui-next-v2.7.5) (2026-05-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * harden font hydration; fix vue 3 transition compatibility with asd20organizationpicker ([ca158d0](https://github.com/academydistrict20/asd20-ui-next/commit/ca158d03e17b9c3b6626373459cc797424ab4816))
9
+
3
10
  ## [2.7.4](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.7.3...ui-next-v2.7.4) (2026-05-05)
4
11
 
5
12
  ## [2.7.3](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.7.2...ui-next-v2.7.3) (2026-05-05)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asd20/ui-next",
3
- "version": "2.7.4",
3
+ "version": "2.7.5",
4
4
  "private": false,
5
5
  "description": "ASD20 UI component library for Vue 3.",
6
6
  "license": "MIT",
@@ -62,7 +62,6 @@ import FocusTrap from '../../utils/FocusTrap'
62
62
  export default {
63
63
  name: 'Asd20Modal',
64
64
  components: { Asd20Icon, Asd20Button, FocusTrap },
65
- model: { prop: 'open', event: 'dismiss' },
66
65
  props: {
67
66
  open: { type: Boolean, default: false },
68
67
  modelValue: { type: Boolean, default: undefined },
@@ -38,7 +38,6 @@
38
38
  >
39
39
  <transition-group
40
40
  name="fade"
41
- mode="in-out"
42
41
  >
43
42
  <div
44
43
  v-for="item in trueItems"
@@ -74,7 +73,6 @@
74
73
  >
75
74
  <transition-group
76
75
  name="fade"
77
- mode="in-out"
78
76
  >
79
77
  <div
80
78
  v-for="item in categoryItem.itemsSorted"
@@ -91,9 +91,6 @@ export default {
91
91
  Intersect,
92
92
  Asd20PeopleList,
93
93
  },
94
- // model: {
95
- // prop: 'factoids',
96
- // },
97
94
  props: {
98
95
  relatedPages: { type: Array, default: () => [] },
99
96
  relatedPagesProps: {