Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update to @patternfly/pfe-core version 3.0 #1508

Merged
merged 43 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
3a724da
chore: update patternfly/elements dep to 3.0
zeroedin Apr 2, 2024
9baf780
chore: update lit and typescript deps
zeroedin Apr 2, 2024
e9c0764
chore: update typescript config and declaration
zeroedin Apr 2, 2024
1c53a67
fix(tile): update internals controller instantiation
zeroedin Apr 2, 2024
5cc26f5
fix(button): update internals controller instantiation
zeroedin Apr 2, 2024
51922af
fix(accordion): update rti api for setting active item
zeroedin Apr 2, 2024
9348861
fix(menu): update rti api for setting active item
zeroedin Apr 2, 2024
069bfe9
fix(navigation-secondary): update rti api for setting active item
zeroedin Apr 2, 2024
9c304cd
fix(subnav): update rti api for setting active item
zeroedin Apr 2, 2024
32e62ea
fix(tabs): update rti api for setting active item
zeroedin Apr 2, 2024
a83aea6
chore: remove pfe elements from dep to a devDep add pfe-core as dep
zeroedin Apr 2, 2024
210fa37
docs(dialog): remove unneeded imports from demo
zeroedin Apr 2, 2024
29c90ba
chore: lint
zeroedin Apr 2, 2024
2875c6d
chore: update deps
bennypowers Apr 3, 2024
a86fe7b
test(tile): tile group a11y spec
bennypowers Apr 3, 2024
cff20b6
chore: node version
bennypowers Apr 3, 2024
f651667
docs: remove cases of band shortcode
bennypowers Apr 3, 2024
c276f84
docs: uxdot-search a11y tweaks
bennypowers Apr 3, 2024
ec1bd26
docs: 11ty plugins
bennypowers Apr 3, 2024
3103315
docs: import package
bennypowers Apr 3, 2024
cc45e0b
fix(button): lint a11y in template
bennypowers Apr 3, 2024
683aa98
fix(audio-player): label dialog from it's opening button
bennypowers Apr 3, 2024
0ebc84e
chore: add playwright browser install to test workflow
zeroedin Apr 3, 2024
a0cf7ca
fix(tooltip): a11y template linting
bennypowers Apr 3, 2024
b592bdb
fix(tabs): use context instead of lightdom classes
bennypowers Apr 3, 2024
582b4e7
docs: add @lit/context to importMap
zeroedin Apr 3, 2024
c075b96
style(tabs): lint css
bennypowers Apr 4, 2024
8579277
Merge branch 'staging/chansey' into chore/dep/pfe-3-0
bennypowers Apr 4, 2024
4b27d24
fix(tabs) revert use context instead of lightdom classes
zeroedin Apr 13, 2024
ddb5d0d
fix(tabs): Reverts 4b27d24
zeroedin Apr 16, 2024
e477314
chore: update lit/context to 1.1.1
zeroedin Apr 16, 2024
81c00eb
Merge branch 'staging/chansey' into chore/dep/pfe-3-0
zeroedin Apr 16, 2024
2f234c2
fix(menu): implement updated RTIC api
zeroedin Apr 16, 2024
c97106d
test(menu): remove pageup and pagedown tests reserved for scrolling page
zeroedin Apr 16, 2024
e90d332
refactor: no side effects in getters
bennypowers Apr 17, 2024
b465aef
Merge remote-tracking branch 'origin/staging/chansey' into chore/dep/…
bennypowers Apr 17, 2024
9895eb6
test(footer): deflake tests
bennypowers Apr 17, 2024
1a33ecc
test(tooltip): assert on ax tree instead of shadow root
bennypowers Apr 17, 2024
f3a9e5b
fix(tooltip): invert css to hide content until open / initialized
bennypowers Apr 17, 2024
3120a38
fix(tabs): use aria-tabs-controller
bennypowers Apr 17, 2024
c4cce62
fix(tabs): refactor using pfe-core 3
bennypowers Apr 17, 2024
8fe349d
fix(tabs): tab context
bennypowers Apr 17, 2024
47ea3a4
fix(tabs): box context
bennypowers Apr 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:

- name: Install dependencies
run: npm ci --prefer-offline

- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Lint
id: lint
run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.12.1
v20.10.0
5 changes: 1 addition & 4 deletions declaration.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
declare module '*.css' {
import type { CSSResult } from 'lit';

// import style from './some-styles.css';
const style: CSSResult;
const style: CSSStyleSheet
export default style;
}

Expand Down
Loading