ember-freestyle 0.19.0 → 0.20.0
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
|
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
|
|
8
|
+
## v0.20.0 (2023-10-07)
|
|
9
|
+
|
|
10
|
+
#### :rocket: Enhancement
|
|
11
|
+
* [#973](https://github.com/chrislopresto/ember-freestyle/pull/973) Eliminate uppercase'ing of menu items and update menu item hover state ([@lukemelia](https://github.com/lukemelia))
|
|
12
|
+
|
|
13
|
+
#### Committers: 1
|
|
14
|
+
- Luke Melia ([@lukemelia](https://github.com/lukemelia))
|
|
15
|
+
|
|
7
16
|
## v0.19.0 (2023-09-28)
|
|
8
17
|
|
|
9
18
|
#### :boom: Breaking Change
|
|
@@ -5,22 +5,27 @@
|
|
|
5
5
|
|
|
6
6
|
&-item,
|
|
7
7
|
&-submenuItem {
|
|
8
|
-
padding-top: 0.
|
|
9
|
-
text-transform: uppercase;
|
|
8
|
+
padding-top: 0.1rem;
|
|
10
9
|
}
|
|
11
10
|
|
|
12
11
|
&-itemLink,
|
|
13
12
|
&-submenuItemLink {
|
|
13
|
+
border-radius: 6px;
|
|
14
14
|
color: $FreestyleGuide-color--foreground;
|
|
15
|
+
display: block;
|
|
16
|
+
padding: 0.3rem 0.3rem 0.3rem 0.5rem;
|
|
15
17
|
text-decoration: none;
|
|
16
18
|
|
|
17
19
|
&.active {
|
|
18
|
-
color: $FreestyleGuide-color--primary;
|
|
20
|
+
background-color: $FreestyleGuide-color--primary;
|
|
21
|
+
color: white;
|
|
19
22
|
text-decoration: none;
|
|
23
|
+
font-weight: bold;
|
|
20
24
|
}
|
|
21
25
|
|
|
22
26
|
&:hover {
|
|
23
|
-
color: $FreestyleGuide-color--
|
|
27
|
+
background-color: $FreestyleGuide-color--primary;
|
|
28
|
+
color: white;
|
|
24
29
|
text-decoration: none;
|
|
25
30
|
}
|
|
26
31
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-freestyle",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "Create a living styleguide for your Ember app.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"ember-focus-trap": "^1.0.1",
|
|
47
47
|
"ember-modifier": "^3.2.7 || ^4.0.0",
|
|
48
48
|
"ember-named-blocks-polyfill": "^0.2.5",
|
|
49
|
-
"ember-truth-helpers": "^
|
|
49
|
+
"ember-truth-helpers": "^4.0.3",
|
|
50
50
|
"json-formatter-js": "^2.3.4",
|
|
51
51
|
"macro-decorators": "^0.1.2",
|
|
52
52
|
"strip-indent": "^3.0.0",
|
|
@@ -61,12 +61,12 @@
|
|
|
61
61
|
"@glint/template": "^1.2.0",
|
|
62
62
|
"@glint/environment-ember-loose": "^1.2.0",
|
|
63
63
|
"@release-it-plugins/lerna-changelog": "^5.0.0",
|
|
64
|
-
"@tsconfig/ember": "^
|
|
65
|
-
"@types/ember": "^4.0.
|
|
64
|
+
"@tsconfig/ember": "^3.0.1",
|
|
65
|
+
"@types/ember": "^4.0.6",
|
|
66
66
|
"@types/ember-resolver": "^5.0.11",
|
|
67
67
|
"@types/ember__application": "^4.0.2",
|
|
68
68
|
"@types/ember__array": "^4.0.2",
|
|
69
|
-
"@types/ember__component": "^4.0.
|
|
69
|
+
"@types/ember__component": "^4.0.18",
|
|
70
70
|
"@types/ember__controller": "^4.0.4",
|
|
71
71
|
"@types/ember__debug": "^4.0.1",
|
|
72
72
|
"@types/ember__engine": "^4.0.4",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"@types/ember__string": "^3.0.9",
|
|
82
82
|
"@types/ember__template": "^4.0.0",
|
|
83
83
|
"@types/ember__test": "^4.0.0",
|
|
84
|
-
"@types/ember__utils": "^4.0.
|
|
84
|
+
"@types/ember__utils": "^4.0.4",
|
|
85
85
|
"@types/qunit": "^2.19.3",
|
|
86
86
|
"@types/remarkable": "^2.0.3",
|
|
87
87
|
"@types/rsvp": "^4.0.4",
|
|
@@ -128,8 +128,8 @@
|
|
|
128
128
|
"qunit-dom": "^2.0.0",
|
|
129
129
|
"release-it": "^14.10.0",
|
|
130
130
|
"remarkable": "^2.0.1",
|
|
131
|
-
"sass": "^1.
|
|
132
|
-
"stylelint": "^15.10.
|
|
131
|
+
"sass": "^1.68.0",
|
|
132
|
+
"stylelint": "^15.10.3",
|
|
133
133
|
"stylelint-config-prettier": "^9.0.5",
|
|
134
134
|
"stylelint-config-recommended-scss": "^13.0.0",
|
|
135
135
|
"stylelint-prettier": "^4.0.2",
|
|
@@ -307,7 +307,6 @@ END-FREESTYLE-USAGE */
|
|
|
307
307
|
margin: 0 1rem;
|
|
308
308
|
max-width: calc(1200px - 1rem);
|
|
309
309
|
padding: 1rem 0 0.4rem;
|
|
310
|
-
text-transform: uppercase;
|
|
311
310
|
}
|
|
312
311
|
.FreestyleSection--hidden {
|
|
313
312
|
display: none;
|
|
@@ -320,7 +319,6 @@ END-FREESTYLE-USAGE */
|
|
|
320
319
|
font-size: 1.3rem;
|
|
321
320
|
margin: 0 1rem;
|
|
322
321
|
padding: 0.8rem 0 0.4rem;
|
|
323
|
-
text-transform: uppercase;
|
|
324
322
|
}
|
|
325
323
|
|
|
326
324
|
.FreestyleMenu {
|
|
@@ -329,19 +327,24 @@ END-FREESTYLE-USAGE */
|
|
|
329
327
|
padding-left: 1rem;
|
|
330
328
|
}
|
|
331
329
|
.FreestyleMenu-item, .FreestyleMenu-submenuItem {
|
|
332
|
-
padding-top: 0.
|
|
333
|
-
text-transform: uppercase;
|
|
330
|
+
padding-top: 0.1rem;
|
|
334
331
|
}
|
|
335
332
|
.FreestyleMenu-itemLink, .FreestyleMenu-submenuItemLink {
|
|
333
|
+
border-radius: 6px;
|
|
336
334
|
color: #212121;
|
|
335
|
+
display: block;
|
|
336
|
+
padding: 0.3rem 0.3rem 0.3rem 0.5rem;
|
|
337
337
|
text-decoration: none;
|
|
338
338
|
}
|
|
339
339
|
.FreestyleMenu-itemLink.active, .FreestyleMenu-submenuItemLink.active {
|
|
340
|
-
color: #00bcd4;
|
|
340
|
+
background-color: #00bcd4;
|
|
341
|
+
color: white;
|
|
341
342
|
text-decoration: none;
|
|
343
|
+
font-weight: bold;
|
|
342
344
|
}
|
|
343
345
|
.FreestyleMenu-itemLink:hover, .FreestyleMenu-submenuItemLink:hover {
|
|
344
|
-
color: #
|
|
346
|
+
background-color: #00bcd4;
|
|
347
|
+
color: white;
|
|
345
348
|
text-decoration: none;
|
|
346
349
|
}
|
|
347
350
|
.FreestyleMenu-submenu {
|