@asd20/ui-next 2.3.5 → 2.3.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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.3.6](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.3.5...ui-next-v2.3.6) (2026-04-29)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * remove page header category tags ([3bab2af](https://github.com/academydistrict20/asd20-ui-next/commit/3bab2af6825c3ff025ffcaba8c23846337601779))
9
+
3
10
  ## [2.3.5](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.3.4...ui-next-v2.3.5) (2026-04-28)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asd20/ui-next",
3
- "version": "2.3.5",
3
+ "version": "2.3.6",
4
4
  "private": false,
5
5
  "description": "ASD20 UI component library for Vue 3.",
6
6
  "license": "MIT",
@@ -93,11 +93,6 @@
93
93
  </span>
94
94
  <asd20-formatted-date :date-time="modifiedDateTime" />
95
95
  </div>
96
- <asd20-tag-group
97
- v-if="categories.length"
98
- :tags="categories"
99
- class="date-prefix"
100
- />
101
96
  <slot name="meta" />
102
97
  </div>
103
98
  <div
@@ -194,7 +189,6 @@ import Asd20Breadcrumb from '../../../components/atoms/Asd20Breadcrumb'
194
189
  import Asd20LanguageTranslation from '../../molecules/Asd20LanguageTranslation'
195
190
  import Asd20Share from '../../molecules/Asd20Share'
196
191
  import Asd20FormattedDate from '../../atoms/Asd20FormattedDate'
197
- import Asd20TagGroup from '../../organisms/Asd20TagGroup'
198
192
 
199
193
  import truncate from 'lodash/truncate'
200
194
 
@@ -205,7 +199,6 @@ export default {
205
199
  // Asd20DistrictLogo,
206
200
  Asd20OrganizationPicker,
207
201
  Asd20Breadcrumb,
208
- Asd20TagGroup,
209
202
  Asd20LanguageTranslation,
210
203
  Asd20Share,
211
204
  Asd20FormattedDate,
@@ -255,7 +248,6 @@ export default {
255
248
  return (
256
249
  this.publishDateTime ||
257
250
  this.showModifiedDateTime ||
258
- this.categories.length ||
259
251
  this.$slots.meta
260
252
  )
261
253
  },
@@ -497,15 +489,12 @@ export default {
497
489
  }
498
490
 
499
491
  &__meta {
492
+ font-family: var(--website-typography__font-family-headlines);
493
+ font-size: 0.75rem;
494
+ font-weight: 400;
500
495
  margin-bottom: space(0.5);
501
- .asd20-tag-group {
502
- margin-left: -0.5em;
503
- }
504
496
  .date-prefix {
505
- @include asd20-font(
506
- 0.6,
507
- var(--website-typography__font-family-headlines)
508
- );
497
+ font: inherit;
509
498
  }
510
499
  .modified-meta {
511
500
  display: inline-block;
@@ -514,10 +503,7 @@ export default {
514
503
  margin-left: 0.25em;
515
504
  }
516
505
  .asd20-formatted-date {
517
- @include asd20-font(
518
- 0.6,
519
- var(--website-typography__font-family-headlines)
520
- );
506
+ font: inherit;
521
507
  }
522
508
  }
523
509