Skip to content

Commit bc769c9

Browse files
Version Packages
1 parent 7c69df1 commit bc769c9

10 files changed

Lines changed: 17 additions & 27 deletions

File tree

.changeset/classnames-export.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fast-pumas-juggle.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# CHANGELOG
22

3+
## 0.90.0
4+
5+
### Minor Changes
6+
7+
- [#4096](https://github.com/primer/view_components/pull/4096) [`3ba48a2`](https://github.com/opf/primer_view_components/commit/3ba48a24494e2bb2bb4ed1aff5c612b55c237980) Thanks [@jonrohan](https://github.com/jonrohan)! - Add `static/classnames.js`, which default-exports a `Set` of every unique CSS class name in the library for consumers and tooling. It is available via the `@openproject/primer-view-components/classnames` import subpath.
8+
9+
### Patch Changes
10+
11+
- [#4095](https://github.com/primer/view_components/pull/4095) [`6733f3c`](https://github.com/opf/primer_view_components/commit/6733f3c0e902523dd23e5b94d3cd8fab7443aea2) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Improve CSS style-recalc performance by removing selectors with universal subjects and expanding merged `:is()` selector lists so the browser can fast-reject them. Affects `autocomplete-item`, `Popover-message--*`, `breadcrumb-item`, and `FormControl-checkbox-wrap`/`FormControl-radio-wrap` styles.
12+
313
## 0.89.2
414

515
### Patch Changes

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
openproject-primer_view_components (0.89.2)
4+
openproject-primer_view_components (0.90.0)
55
actionview (>= 7.2.0)
66
activesupport (>= 7.2.0)
77
openproject-octicons (>= 19.34.0)

demo/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
openproject-primer_view_components (0.89.2)
4+
openproject-primer_view_components (0.90.0)
55
actionview (>= 7.2.0)
66
activesupport (>= 7.2.0)
77
openproject-octicons (>= 19.34.0)

lib/primer/view_components/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ module Primer
55
module ViewComponents
66
module VERSION
77
MAJOR = 0
8-
MINOR = 89
9-
PATCH = 2
8+
MINOR = 90
9+
PATCH = 0
1010

1111
STRING = [MAJOR, MINOR, PATCH].join(".")
1212
end

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openproject/primer-view-components",
3-
"version": "0.89.2",
3+
"version": "0.90.0",
44
"description": "ViewComponents of the Primer Design System for OpenProject",
55
"main": "app/assets/javascripts/primer_view_components.js",
66
"module": "app/components/primer/primer.js",

static/classnames.cjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ module.exports = new Set([
7272
'Box-footer',
7373
'Box-header',
7474
'Box-header--blue',
75-
'Box-list',
7675
'Box-row',
7776
'Box-row--blue',
7877
'Box-row--drag-button',
@@ -96,7 +95,6 @@ module.exports = new Set([
9695
'Button--labelWrap',
9796
'Button--large',
9897
'Button--link',
99-
'Button--medium',
10098
'Button--primary',
10199
'Button--secondary',
102100
'Button--small',
@@ -452,9 +450,6 @@ module.exports = new Set([
452450
'btn-small-mktg',
453451
'btn-subtle-mktg',
454452
'close-button',
455-
'container-lg',
456-
'container-md',
457-
'container-xl',
458453
'css-truncate',
459454
'css-truncate-overflow',
460455
'css-truncate-target',

static/classnames.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ const classNames = new Set([
7272
'Box-footer',
7373
'Box-header',
7474
'Box-header--blue',
75-
'Box-list',
7675
'Box-row',
7776
'Box-row--blue',
7877
'Box-row--drag-button',
@@ -96,7 +95,6 @@ const classNames = new Set([
9695
'Button--labelWrap',
9796
'Button--large',
9897
'Button--link',
99-
'Button--medium',
10098
'Button--primary',
10199
'Button--secondary',
102100
'Button--small',
@@ -452,9 +450,6 @@ const classNames = new Set([
452450
'btn-small-mktg',
453451
'btn-subtle-mktg',
454452
'close-button',
455-
'container-lg',
456-
'container-md',
457-
'container-xl',
458453
'css-truncate',
459454
'css-truncate-overflow',
460455
'css-truncate-target',

0 commit comments

Comments
 (0)