@hashicorp/design-system-components 1.0.0 → 1.0.3
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 +24 -1
- package/addon/components/hds/form/checkbox/field.hbs +1 -1
- package/addon/components/hds/form/radio/field.hbs +1 -1
- package/addon/components/hds/form/select/field.hbs +1 -1
- package/addon/components/hds/form/text-input/field.hbs +1 -1
- package/addon/components/hds/form/textarea/field.hbs +1 -1
- package/addon/components/hds/form/toggle/field.hbs +1 -1
- package/app/styles/components/alert.scss +1 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,32 @@
|
|
|
1
1
|
# @hashicorp/design-system-components
|
|
2
2
|
|
|
3
|
+
## 1.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#529](https://github.com/hashicorp/design-system/pull/529) [`b956be8f`](https://github.com/hashicorp/design-system/commit/b956be8fcb3692d184603a2a40e0c42df0461ff5) Thanks [@alex-ju](https://github.com/alex-ju)! - Fix `required` attribute on form fields
|
|
8
|
+
|
|
9
|
+
## 1.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies []:
|
|
14
|
+
- @hashicorp/ember-flight-icons@2.0.11
|
|
15
|
+
|
|
16
|
+
## 1.0.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- [#516](https://github.com/hashicorp/design-system/pull/516) [`a81a3580`](https://github.com/hashicorp/design-system/commit/a81a35806504f6a7b7f9dfdf0e8a5ddbef0f47fc) Thanks [@alex-ju](https://github.com/alex-ju)! - Fix text wrapping in alert description
|
|
21
|
+
|
|
3
22
|
## 1.0.0 🎉
|
|
4
23
|
|
|
5
24
|
### Major Changes
|
|
6
25
|
|
|
7
26
|
This release signifies the first major release of the HashiCorp Design System. Moving forward we expect to respect [SemVer](https://semver.org/) as we make additional changes to the design system.
|
|
8
27
|
|
|
28
|
+
**Note:** Even though this is a major version bump, there should not be any breaking changes from the last minor releases.
|
|
29
|
+
|
|
9
30
|
### Minor Changes
|
|
10
31
|
|
|
11
32
|
#### Stepper component
|
|
@@ -13,9 +34,11 @@ This release signifies the first major release of the HashiCorp Design System. M
|
|
|
13
34
|
- [#470](https://github.com/hashicorp/design-system/pull/470) [`96d47264`](https://github.com/hashicorp/design-system/commit/96d4726404664f301df0352a1fdbc4b6b6e9cb88) Thanks [@jorytindall](https://github.com/jorytindall)! - Added Stepper component structure and step/task components
|
|
14
35
|
|
|
15
36
|
#### ButtonSet component
|
|
16
|
-
|
|
37
|
+
|
|
38
|
+
- [#486](https://github.com/hashicorp/design-system/pull/486) [`3ea2ad55`](https://github.com/hashicorp/design-system/commit/3ea2ad55b2ec9c579e2154ac4bb820f06a231e9f) Thanks [@KristinLBradley](https://github.com/KristinLBradley)! - Add new ButtonSet component to standardize button spacing
|
|
17
39
|
|
|
18
40
|
#### Tag component
|
|
41
|
+
|
|
19
42
|
- [#443](https://github.com/hashicorp/design-system/pull/443) [`7756c855`](https://github.com/hashicorp/design-system/commit/7756c8554114564eccb2b08872ceabff02351682) Thanks [@alex-ju](https://github.com/alex-ju) & [@agendelHC](https://github.com/agendelHC)! - Add tag component
|
|
20
43
|
|
|
21
44
|
#### Form controls components
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
@value={{@value}}
|
|
16
16
|
@isInvalid={{@isInvalid}}
|
|
17
17
|
@width={{@width}}
|
|
18
|
+
required={{@isRequired}}
|
|
18
19
|
...attributes
|
|
19
20
|
id={{F.id}}
|
|
20
21
|
aria-describedby={{F.ariaDescribedBy}}
|
|
21
|
-
required={{@isRequired}}
|
|
22
22
|
as |S|
|
|
23
23
|
>
|
|
24
24
|
{{yield (hash Options=S.Options)}}
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
{{! template-lint-disable no-capital-arguments }}
|
|
13
13
|
@_wrapperClass="hds-form-field__control"
|
|
14
14
|
@value={{@value}}
|
|
15
|
+
required={{@isRequired}}
|
|
15
16
|
...attributes
|
|
16
17
|
id={{F.id}}
|
|
17
18
|
aria-describedby={{F.ariaDescribedBy}}
|
|
18
|
-
required={{@isRequired}}
|
|
19
19
|
/>
|
|
20
20
|
</F.Control>
|
|
21
21
|
</Hds::Form::Field>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hashicorp/design-system-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "HashiCorp Design System Components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"hashicorp",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@hashicorp/design-system-tokens": "^1.0.0",
|
|
38
|
-
"@hashicorp/ember-flight-icons": "^2.0.
|
|
38
|
+
"@hashicorp/ember-flight-icons": "^2.0.11",
|
|
39
39
|
"ember-auto-import": "^2.4.1",
|
|
40
40
|
"ember-cli-babel": "^7.26.11",
|
|
41
41
|
"ember-cli-htmlbars": "^6.0.1",
|
|
@@ -50,11 +50,12 @@
|
|
|
50
50
|
"@embroider/test-setup": "^1.5.0",
|
|
51
51
|
"@glimmer/component": "^1.0.4",
|
|
52
52
|
"@glimmer/tracking": "^1.0.4",
|
|
53
|
-
"@percy/cli": "^1.
|
|
54
|
-
"@percy/ember": "^3.0.
|
|
53
|
+
"@percy/cli": "^1.9.0",
|
|
54
|
+
"@percy/ember": "^3.0.1",
|
|
55
55
|
"babel-eslint": "^10.1.0",
|
|
56
56
|
"broccoli-asset-rev": "^3.0.0",
|
|
57
57
|
"ember-a11y-refocus": "^2.1.0",
|
|
58
|
+
"ember-a11y-testing": "^5.0.0",
|
|
58
59
|
"ember-cli": "~4.3.0",
|
|
59
60
|
"ember-cli-clipboard": "^0.16.0",
|
|
60
61
|
"ember-cli-dependency-checker": "^3.3.0",
|