Skip to content

Commit

Permalink
Merge pull request #63 from opf/bump/primer-upstream
Browse files Browse the repository at this point in the history
Bump/primer upstream
  • Loading branch information
HDinger authored Dec 11, 2023
2 parents 3196679 + dd04150 commit b294d93
Show file tree
Hide file tree
Showing 9 changed files with 597 additions and 268 deletions.
5 changes: 5 additions & 0 deletions .changeset/kind-years-wink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': patch
---

Fix typo in argument passed to event listener in ToolTip
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- name: Get specific changed files
id: changed-files
uses: tj-actions/[email protected].0
uses: tj-actions/[email protected].1
with:
files: |
docs/**/*.md
Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- name: Get specific changed files
id: changed-files
uses: tj-actions/[email protected].0
uses: tj-actions/[email protected].1
with:
files: |
app/**/*.rb
Expand All @@ -62,7 +62,7 @@ jobs:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected].0
uses: tj-actions/[email protected].1
with:
files: |
app/components/**/*.erb
Expand All @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected].0
uses: tj-actions/[email protected].1
with:
files: |
app/components/**/*.ts
Expand All @@ -103,7 +103,7 @@ jobs:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected].0
uses: tj-actions/[email protected].1
with:
files: |
app/components/**/*.pcss
Expand Down
2 changes: 1 addition & 1 deletion app/components/primer/alpha/tool_tip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class ToolTipElement extends HTMLElement {
})
this.ownerDocument.addEventListener('focusout', focusOutListener)
this.ownerDocument.addEventListener('focusin', focusInListener)
this.ownerDocument.addEventListener('keydown', this, {signal, captures: true})
this.ownerDocument.addEventListener('keydown', this, {signal, capture: true})
}

disconnectedCallback() {
Expand Down
8 changes: 4 additions & 4 deletions demo/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ GEM
public_suffix (>= 2.0.2, < 6.0)
azure_mgmt_container_service (0.22.0)
ms_rest_azure (~> 0.12.0)
base64 (0.1.1)
base64 (0.2.0)
bigdecimal (3.1.4)
bootsnap (1.17.0)
msgpack (~> 1.2)
Expand All @@ -66,7 +66,7 @@ GEM
docker-remote (0.8.0)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
drb (2.1.1)
drb (2.2.0)
ruby2_keywords
dry-inflector (0.3.0)
ejson (1.4.1)
Expand Down Expand Up @@ -232,7 +232,7 @@ GEM
msgpack (1.7.2)
multi_json (1.15.0)
multipart-post (2.3.0)
mutex_m (0.1.2)
mutex_m (0.2.0)
netrc (0.11.0)
nio4r (2.5.9)
nokogiri (1.15.4-arm64-darwin)
Expand Down Expand Up @@ -329,7 +329,7 @@ GEM
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
view_component (3.7.0)
view_component (3.8.0)
activesupport (>= 5.2.0, < 8.0)
concurrent-ruby (~> 1.0)
method_source (~> 1.0)
Expand Down
98 changes: 49 additions & 49 deletions demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"version": "0.1.0",
"dependencies": {
"@primer/css": "^21.0.10",
"@primer/css": "^21.1.0",
"@primer/primitives": "7.15.4",
"@rails/actioncable": "^7.1.2",
"@rails/ujs": "^7.1.2",
Expand Down
Loading

0 comments on commit b294d93

Please sign in to comment.