File tree Expand file tree Collapse file tree 13 files changed +112
-27
lines changed
Expand file tree Collapse file tree 13 files changed +112
-27
lines changed Original file line number Diff line number Diff line change 4747 " band" ,
4848 " breezy-bikes-smell" ,
4949 " button" ,
50+ " calm-cheetahs-burn" ,
5051 " card" ,
52+ " chatty-pears-press" ,
5153 " clipboard" ,
5254 " codeblock" ,
5355 " collapse" ,
5658 " datetime" ,
5759 " dropdown" ,
5860 " empty-cougars-remain" ,
61+ " few-windows-exercise" ,
5962 " five-planets-prove" ,
6063 " forty-berries-cry" ,
6164 " good-actors-allow" ,
65+ " good-terms-smile" ,
6266 " health-index" ,
6367 " icon-panel" ,
6468 " icon" ,
8185 " tabs" ,
8286 " tasty-dragons-drum" ,
8387 " toast" ,
84- " violet-sheep-ring"
88+ " violet-cows-film" ,
89+ " violet-sheep-ring" ,
90+ " yellow-dingos-heal"
8591 ]
8692}
Original file line number Diff line number Diff line change 11# @patternfly/pfe-core
22
3+ ## 2.0.0-next.1
4+
5+ ### Patch Changes
6+
7+ - 999cdfdd: Register context providers even if they upgrade after the consumers
8+
39## 2.0.0-next.0
10+
411### Major Changes
512
613- e8788c72: Initial Release 🎉
7-
14+
815 ` @patternfly/pfe-core ` provides utilities for building PatternFly elements,
916 like [ TypeScript decorators] ( https://www.typescriptlang.org/docs/handbook/decorators.html ) and
1017 [ Lit reactive controllers] ( https://lit.dev/docs/composition/controllers/ ) .
1118 Core utilities replace the ` PFElement ` base class.
12-
19+
1320 ### Before
14-
21+
1522 ``` js
1623 export class PfeJazzHands extends PFElement {
1724 static get tag () {
1825 return " pfe-jazz-hands" ;
1926 }
20-
27+
2128 static get properties () {
2229 return {
2330 cool: {
2431 type: Boolean ,
25- observer: " _upgradeObserver" ,
32+ observer: " _upgradeObserver"
2633 }
27- }
34+ };
2835 }
2936 }
3037 PFElement .create (PfeJazzHands);
3138 ```
32-
39+
3340 ### After
34-
41+
3542 ``` ts
36- @customElement (' pfe-jazz-hands' ) @pfelement ()
43+ @customElement (" pfe-jazz-hands" )
44+ @pfelement ()
3745 export class PfeJazzHands extends LitElement {
38- static readonly version = ' {{version}}' ;
39-
40- @observed (' _upgradeObserver' )
41- @property ({ type: Boolean }) cool = true ;
46+ static readonly version = " {{version}}" ;
47+
48+ @observed (" _upgradeObserver" )
49+ @property ({ type: Boolean })
50+ cool = true ;
4251 }
4352 ```
44-
53+
4554 See README and [ the docs] ( https://patternflyelements.org/core/core/ ) for more info.
Original file line number Diff line number Diff line change 11{
22 "name" : " @patternfly/pfe-core" ,
3- "version" : " 2.0.0-next.0 " ,
3+ "version" : " 2.0.0-next.1 " ,
44 "license" : " MIT" ,
55 "description" : " PatternFly Elements Core Library" ,
66 "customElements" : " custom-elements.json" ,
Original file line number Diff line number Diff line change 11# @patternfly/pfe-sass
22
3+ ## 2.0.0-next.1
4+
5+ ### Major Changes
6+
7+ - 62a5d643: Remove ` focus-ring ` , ` pfe-typography ` , and ` pfe-c-typogrpahy ` mixins
8+
9+ To implement focus-ring, see ` pfe-accordion-header ` or ` pfe-jump-links ` .
10+
11+ ``` scss
12+ outline: none;
13+ position: relative;
14+
15+ & ::before {
16+ position : absolute ;
17+ content : " " ;
18+ top : -2px ;
19+ left : -2px ;
20+ width : calc (100% + #{pfe-var (ui--border-width--active )} );
21+ height : calc (100% + #{pfe-var (ui--border-width--active )} );
22+ border-radius : pfe-var (ui--border-radius );
23+ border : pfe-var (ui--border-width--md ) pfe-var (ui--border-style ) transparent ;
24+ }
25+
26+ & :focus ::before {
27+ border-color : #6b9ff0 ;
28+ }
29+
30+ & :focus:not (:focus-visible )::before {
31+ border : unset ;
32+ }
33+ ```
34+
35+ To implement typography, see ` core/pfe-sass/extends/_typography_extends.scss `
36+
337## 2.0.0-next.0
438
539### Major Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @patternfly/pfe-sass" ,
3- "version" : " 2.0.0-next.0 " ,
3+ "version" : " 2.0.0-next.1 " ,
44 "license" : " MIT" ,
55 "description" : " Sass variables and mixins for PatternFly Elements" ,
66 "main" : " ./index.scss" ,
Original file line number Diff line number Diff line change 11# @patternfly/pfe-accordion
22
3+ ## 2.0.0-next.1
4+
5+ ### Patch Changes
6+
7+ - b6f89a8f: allow HTML literals to be optimized by aliasing static html tag
8+ - Updated dependencies [ 999cdfdd]
9+ - @patternfly/pfe-core @2.0.0-next.1
10+
311## 2.0.0-next.0
12+
413### Major Changes
514
615- eaa5361b: ## 🔥 Migrate to Lit
7-
16+
817 This release migrates ` <pfe-accordion> ` to LitElement. It also fixes several keyboard accessibility bugs.
9-
18+
1019 ### NEW: CSS Shadow Parts
20+
1121 - Adds ` text ` , ` accents ` , and ` icon ` CSS parts to ` <pfe-accordion-header> `
1222 - Adds ` container ` CSS part to ` <pfe-accordion-panel> `
13-
23+
1424 ### Breaking Changes
25+
1526 - Initial render is now [ asynchronous] ( https://lit.dev/docs/components/lifecycle/#reactive-update-cycle ) .
1627 If your code assumes that shadow DOM is ready once the element is constructed, update it to ` await element.updateComplete ` ;
1728 - Deprecates ` pfe-accordion:expand ` and ` pfe-accordion:collapse ` events. Use ` expand ` and ` collapse ` instead
18-
29+
1930 See [ docs] ( https://patternflyelements.org/components/autocomplete/ ) for more info
2031
2132### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @patternfly/pfe-accordion" ,
3- "version" : " 2.0.0-next.0 " ,
3+ "version" : " 2.0.0-next.1 " ,
44 "license" : " MIT" ,
55 "description" : " Accordion for PatternFly Elements" ,
66 "customElements" : " custom-elements.json" ,
7676 ],
7777 "dependencies" : {
7878 "@patternfly/pfe-collapse" : " ^2.0.0-next.0" ,
79- "@patternfly/pfe-core" : " ^2.0.0-next.0 " ,
79+ "@patternfly/pfe-core" : " ^2.0.0-next.1 " ,
8080 "@patternfly/pfe-icon" : " ^2.0.0-next.0" ,
8181 "lit" : " ^2.1.2"
8282 }
Original file line number Diff line number Diff line change 11## 1.0.0 ( TBD )
22
3+ ## 2.0.0-next.1
4+
5+ ### Patch Changes
6+
7+ - b6f89a8f: allow HTML literals to be optimized by aliasing static html tag
8+ - Updated dependencies [ 999cdfdd]
9+ - @patternfly/pfe-core @2.0.0-next.1
10+
311## 2.0.0-next.0
412
513### Major Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @patternfly/pfe-primary-detail" ,
33 "license" : " MIT" ,
4- "version" : " 2.0.0-next.0 " ,
4+ "version" : " 2.0.0-next.1 " ,
55 "description" : " Primary detail element for PatternFly Elements" ,
66 "customElements" : " custom-elements.json" ,
77 "type" : " module" ,
7272 " Benny Powers <[email protected] >" 7373 ],
7474 "dependencies" : {
75- "@patternfly/pfe-core" : " ^2.0.0-next.0 " ,
75+ "@patternfly/pfe-core" : " ^2.0.0-next.1 " ,
7676 "lit" : " ^2.1.2"
7777 }
7878}
Original file line number Diff line number Diff line change 11# @patternfly/create-element
22
3+ ## 0.0.2-next.5
4+
5+ ### Patch Changes
6+
7+ - 56baa0ec: update components entrypoint filename
8+ - a6253d3c: Generate the single-file bundle entrypoint at runtime
9+
310## 0.0.2-next.4
411
512### Patch Changes
You can’t perform that action at this time.
0 commit comments