@hashicorp/design-system-components 2.12.1 → 2.12.2
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 +11 -0
- package/addon/components/hds/text/body.hbs +0 -1
- package/addon/components/hds/text/code.hbs +0 -1
- package/addon/components/hds/text/display.hbs +0 -1
- package/addon/components/hds/text/index.hbs +6 -4
- package/app/styles/@hashicorp/design-system-power-select-overrides.scss +8 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @hashicorp/design-system-components
|
|
2
2
|
|
|
3
|
+
## 2.12.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1655](https://github.com/hashicorp/design-system/pull/1655) [`38f7e36c2`](https://github.com/hashicorp/design-system/commit/38f7e36c25f3efdade9c8833512d55af502ee07e) Thanks [@alex-ju](https://github.com/alex-ju)! - PowerSelect - fix style overrides when the list is positioned above
|
|
8
|
+
|
|
9
|
+
- [#1652](https://github.com/hashicorp/design-system/pull/1652) [`61af964b0`](https://github.com/hashicorp/design-system/commit/61af964b0078377dcedafa744e0fd18e89852b96) Thanks [@didoo](https://github.com/didoo)! - `Text` - Fixed issue with whitespace adding extra underline when used in links (eg. inside a `Link::Inline`)
|
|
10
|
+
|
|
11
|
+
- Updated dependencies []:
|
|
12
|
+
- @hashicorp/ember-flight-icons@3.1.3
|
|
13
|
+
|
|
3
14
|
## 2.12.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
Copyright (c) HashiCorp, Inc.
|
|
3
3
|
SPDX-License-Identifier: MPL-2.0
|
|
4
4
|
}}
|
|
5
|
-
|
|
6
|
-
{{#let (element this.componentTag) as |Tag|}}
|
|
7
|
-
|
|
8
|
-
{{
|
|
5
|
+
{{! IMPORTANT: we removed any extra newlines before/after the `let` to reduce the issues with unexpected whitespaces (see https://github.com/hashicorp/design-system/pull/1652) }}
|
|
6
|
+
{{#let (element this.componentTag) as |Tag|}}<Tag
|
|
7
|
+
class={{this.classNames}}
|
|
8
|
+
{{style color=this.customColor}}
|
|
9
|
+
...attributes
|
|
10
|
+
>{{yield}}</Tag>{{/let}}
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
|
|
72
72
|
.ember-basic-select-dropdown,
|
|
73
73
|
.ember-power-select-dropdown {
|
|
74
|
+
&.ember-basic-dropdown-content--below,
|
|
74
75
|
&.ember-basic-dropdown-content--in-place {
|
|
75
76
|
margin-top: -3px;
|
|
76
77
|
border: var(--token-form-control-border-width) solid var(--token-form-control-base-border-color-default);
|
|
@@ -78,6 +79,13 @@
|
|
|
78
79
|
border-bottom-left-radius: 6px;
|
|
79
80
|
box-shadow: var(--token-elevation-high-box-shadow), var(--token-elevation-high-box-shadow);
|
|
80
81
|
}
|
|
82
|
+
|
|
83
|
+
&.ember-basic-dropdown-content--above {
|
|
84
|
+
margin-top: 3px;
|
|
85
|
+
border: var(--token-form-control-border-width) solid var(--token-form-control-base-border-color-default);
|
|
86
|
+
border-radius: 6px 6px 0 0;
|
|
87
|
+
box-shadow: none;
|
|
88
|
+
}
|
|
81
89
|
}
|
|
82
90
|
|
|
83
91
|
.ember-power-select-search {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hashicorp/design-system-components",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.2",
|
|
4
4
|
"description": "Helios Design System Components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"hashicorp",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@ember/render-modifiers": "^2.0.5",
|
|
43
43
|
"@ember/test-waiters": "^3.0.2",
|
|
44
44
|
"@hashicorp/design-system-tokens": "^1.8.0",
|
|
45
|
-
"@hashicorp/ember-flight-icons": "^3.1.
|
|
45
|
+
"@hashicorp/ember-flight-icons": "^3.1.3",
|
|
46
46
|
"dialog-polyfill": "^0.5.6",
|
|
47
47
|
"ember-a11y-refocus": "^3.0.2",
|
|
48
48
|
"ember-auto-import": "^2.6.3",
|