@entur/alert 0.11.9 → 0.11.11-beta.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.
Files changed (3) hide show
  1. package/dist/styles.css +41 -41
  2. package/package.json +16 -15
  3. package/CHANGELOG.md +0 -429
package/dist/styles.css CHANGED
@@ -2,6 +2,47 @@
2
2
  --eds-alert: 1;
3
3
  }/* DO NOT CHANGE!*/
4
4
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
5
+ .copyable-text {
6
+ -webkit-appearance: none;
7
+ -moz-appearance: none;
8
+ appearance: none;
9
+ background: none;
10
+ border: 0;
11
+ border-radius: 0;
12
+ color: inherit;
13
+ cursor: pointer;
14
+ display: block;
15
+ font-size: inherit;
16
+ padding: 0;
17
+ position: relative;
18
+ margin: 0 0 1rem 0;
19
+ text-align: left;
20
+ width: 100%;
21
+ }
22
+ .copyable-text > * {
23
+ margin: 0;
24
+ }
25
+ .copyable-text:focus {
26
+ outline-offset: 0.125rem;
27
+ outline: none;
28
+ box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
29
+ }
30
+ .eds-contrast .copyable-text:focus {
31
+ box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
32
+ }
33
+
34
+ .copyable-text__icon {
35
+ display: none;
36
+ position: absolute;
37
+ right: 1.5rem;
38
+ top: 1rem;
39
+ bottom: 1rem;
40
+ }
41
+ .copyable-text:hover .copyable-text__icon, .copyable-text:focus .copyable-text__icon {
42
+ display: block;
43
+ color: #181c56;
44
+ }/* DO NOT CHANGE!*/
45
+ /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
5
46
  /* DO NOT CHANGE!*/
6
47
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
7
48
  .eds-expandable-alert-box .eds-alert-box__content {
@@ -48,47 +89,6 @@
48
89
  padding-left: 0.25rem;
49
90
  }/* DO NOT CHANGE!*/
50
91
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
51
- .copyable-text {
52
- -webkit-appearance: none;
53
- -moz-appearance: none;
54
- appearance: none;
55
- background: none;
56
- border: 0;
57
- border-radius: 0;
58
- color: inherit;
59
- cursor: pointer;
60
- display: block;
61
- font-size: inherit;
62
- padding: 0;
63
- position: relative;
64
- margin: 0 0 1rem 0;
65
- text-align: left;
66
- width: 100%;
67
- }
68
- .copyable-text > * {
69
- margin: 0;
70
- }
71
- .copyable-text:focus {
72
- outline-offset: 0.125rem;
73
- outline: none;
74
- box-shadow: 0 0 0 0.125rem #ffffff, 0 0 0 0.25rem #181c56;
75
- }
76
- .eds-contrast .copyable-text:focus {
77
- box-shadow: 0 0 0 0.125rem #181c56, 0 0 0 0.25rem #ffffff;
78
- }
79
-
80
- .copyable-text__icon {
81
- display: none;
82
- position: absolute;
83
- right: 1.5rem;
84
- top: 1rem;
85
- bottom: 1rem;
86
- }
87
- .copyable-text:hover .copyable-text__icon, .copyable-text:focus .copyable-text__icon {
88
- display: block;
89
- color: #181c56;
90
- }/* DO NOT CHANGE!*/
91
- /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
92
92
  /* DO NOT CHANGE!*/
93
93
  /* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
94
94
  .eds-alert-box {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entur/alert",
3
- "version": "0.11.9",
3
+ "version": "0.11.11-beta.0",
4
4
  "license": "EUPL-1.2",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/alert.esm.js",
@@ -17,29 +17,30 @@
17
17
  "access": "public"
18
18
  },
19
19
  "scripts": {
20
- "start": "dts watch --noClean",
21
- "build": "dts build",
22
- "test": "dts test --env=jsdom",
23
- "lint": "dts lint"
20
+ "start": "yarn run dts watch --noClean",
21
+ "build": "yarn run dts build",
22
+ "prepack": "yarn run build",
23
+ "prepublish": "yarn run test && yarn run lint",
24
+ "test": "yarn run dts test --env=jsdom",
25
+ "lint": "yarn run dts lint"
24
26
  },
25
27
  "peerDependencies": {
26
28
  "react": ">=16.8.0",
27
29
  "react-dom": ">=16.8.0"
28
30
  },
29
31
  "dependencies": {
30
- "@entur/expand": "^3.3.22",
31
- "@entur/icons": "^5.1.0",
32
- "@entur/typography": "^1.7.0",
33
- "@entur/utils": "^0.4.5",
32
+ "@entur/expand": "^3.3.24-beta.0",
33
+ "@entur/icons": "^5.1.2-beta.0",
34
+ "@entur/typography": "^1.7.1-beta.0",
35
+ "@entur/utils": "^0.4.6-beta.0",
34
36
  "classnames": "^2.3.1",
35
37
  "copy-text-to-clipboard": "2.2"
36
38
  },
37
39
  "devDependencies": {
38
- "@entur/tokens": "^3.4.1"
40
+ "@entur/tokens": "^3.4.2-beta.0",
41
+ "dts-cli": "^1.1.6",
42
+ "jest-watch-typeahead": "^2.2.0",
43
+ "ts-jest": "^27.0.0"
39
44
  },
40
- "volta": {
41
- "node": "14.17.0",
42
- "yarn": "1.18.0"
43
- },
44
- "gitHead": "9d0450ea38d34dffbd45ab0b65eb9f02f499392b"
45
+ "gitHead": "d66113fbe7eee544fb34f82211406b8ed95837a1"
45
46
  }
package/CHANGELOG.md DELETED
@@ -1,429 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [0.11.9](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.8...@entur/alert@0.11.9) (2022-10-20)
7
-
8
- ### Bug Fixes
9
-
10
- - add children to toast provider ([162766b](https://bitbucket.org/enturas/design-system/commits/162766bb46e9798e9da267e927b62339feb310f2))
11
-
12
- ## [0.11.8](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.7...@entur/alert@0.11.8) (2022-10-12)
13
-
14
- **Note:** Version bump only for package @entur/alert
15
-
16
- ## [0.11.6](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.5...@entur/alert@0.11.6) (2022-08-31)
17
-
18
- **Note:** Version bump only for package @entur/alert
19
-
20
- ## [0.11.5](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.4...@entur/alert@0.11.5) (2022-08-24)
21
-
22
- **Note:** Version bump only for package @entur/alert
23
-
24
- ## [0.11.4](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.3...@entur/alert@0.11.4) (2022-08-09)
25
-
26
- **Note:** Version bump only for package @entur/alert
27
-
28
- ## [0.11.3](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.2...@entur/alert@0.11.3) (2022-07-05)
29
-
30
- **Note:** Version bump only for package @entur/alert
31
-
32
- ## [0.11.2](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.1...@entur/alert@0.11.2) (2022-06-24)
33
-
34
- **Note:** Version bump only for package @entur/alert
35
-
36
- ## [0.11.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.11.0...@entur/alert@0.11.1) (2022-06-02)
37
-
38
- **Note:** Version bump only for package @entur/alert
39
-
40
- # [0.11.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.10.6...@entur/alert@0.11.0) (2022-05-13)
41
-
42
- ### Features
43
-
44
- - **toast:** add exit animation for toast alert ([0e29579](https://bitbucket.org/enturas/design-system/commits/0e29579bea29d3b591752dd479e33989d8c8bcf1))
45
-
46
- ## [0.10.6](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.10.5...@entur/alert@0.10.6) (2022-05-04)
47
-
48
- **Note:** Version bump only for package @entur/alert
49
-
50
- ## [0.10.5](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.10.4...@entur/alert@0.10.5) (2022-04-27)
51
-
52
- ### Bug Fixes
53
-
54
- - **small alertbox:** fix alert icon not being centered on text on smaller screen sizes ([050b393](https://bitbucket.org/enturas/design-system/commits/050b3932866ef8ba73565335f88aa10ccdcee48d))
55
-
56
- ## [0.10.4](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.10.3...@entur/alert@0.10.4) (2022-04-20)
57
-
58
- **Note:** Version bump only for package @entur/alert
59
-
60
- ## [0.10.3](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.10.2...@entur/alert@0.10.3) (2022-04-19)
61
-
62
- **Note:** Version bump only for package @entur/alert
63
-
64
- ## [0.10.2](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.10.1...@entur/alert@0.10.2) (2022-03-01)
65
-
66
- **Note:** Version bump only for package @entur/alert
67
-
68
- ## [0.10.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.10.0...@entur/alert@0.10.1) (2022-02-09)
69
-
70
- **Note:** Version bump only for package @entur/alert
71
-
72
- # [0.10.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.9.1...@entur/alert@0.10.0) (2022-01-21)
73
-
74
- ### Features
75
-
76
- - **copyable text:** add new CopyableText component ([b793604](https://bitbucket.org/enturas/design-system/commits/b7936040b0fe054e061af4d6a0b56279b3e6ed1c))
77
-
78
- ## [0.9.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.9.0...@entur/alert@0.9.1) (2021-11-17)
79
-
80
- ### Bug Fixes
81
-
82
- - **smallalertbox:** fix closable prop warning ([7808494](https://bitbucket.org/enturas/design-system/commits/780849470227e2e1edf847b3d58c1b81b5b70c1c))
83
-
84
- # [0.9.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.8.3...@entur/alert@0.9.0) (2021-10-18)
85
-
86
- ### Bug Fixes
87
-
88
- - **alert box:** adjust close button focus styling ([b163918](https://bitbucket.org/enturas/design-system/commits/b1639187829e5f8d8ae971ea68f80ad0d7115c88))
89
-
90
- ### Features
91
-
92
- - **smallalertbox:** add closable prop ([f07bba6](https://bitbucket.org/enturas/design-system/commits/f07bba67ecb0829cd13f81ddb425771129efda33))
93
-
94
- ## [0.8.3](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.8.2...@entur/alert@0.8.3) (2021-09-23)
95
-
96
- ### Bug Fixes
97
-
98
- - **expandablealertbox:** fix focus styling for expand button ([7c0c604](https://bitbucket.org/enturas/design-system/commits/7c0c604b39066498d833234cdaa919049569f6f2))
99
- - **smallalertbox:** fix icon position ([e53eb11](https://bitbucket.org/enturas/design-system/commits/e53eb110df787725342d8004621fc8940a4f7744))
100
-
101
- ## [0.8.2](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.8.1...@entur/alert@0.8.2) (2021-09-13)
102
-
103
- ### Bug Fixes
104
-
105
- - **alertbox:** adjust border colors for alertbox ([9650c53](https://bitbucket.org/enturas/design-system/commits/9650c53aad246959bf107b4600648df536a70fe6))
106
- - **alertbox:** use new outlined icons in alertbox ([ff0e256](https://bitbucket.org/enturas/design-system/commits/ff0e256162a677dc68ca5f57652db48680063a0d))
107
-
108
- ## [0.8.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.8.0...@entur/alert@0.8.1) (2021-09-07)
109
-
110
- ### Bug Fixes
111
-
112
- - improve typings ([0bf1a31](https://bitbucket.org/enturas/design-system/commits/0bf1a310db9deb36cef83a6273bb1be762c2af90))
113
- - utilize reworked focus token ([586758f](https://bitbucket.org/enturas/design-system/commits/586758fc86eb5aa52116c63c14ef033eb2e8b12f))
114
-
115
- # [0.8.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.16...@entur/alert@0.8.0) (2021-07-16)
116
-
117
- ### Bug Fixes
118
-
119
- - **expandable alert box:** fix icon position ([a1b5f55](https://bitbucket.org/enturas/design-system/commits/a1b5f555d867757b09de2968cecec6f10432e2cc))
120
- - **expandablealertbox:** fix close and open label props not being set ([f3b17d4](https://bitbucket.org/enturas/design-system/commits/f3b17d47c4afb08830ddf38c36af8c262ec01bc2))
121
-
122
- ### Features
123
-
124
- - **toast:** add bounce in animation for toasts ([f85b6cc](https://bitbucket.org/enturas/design-system/commits/f85b6cc51ffd77256799d905fb8e9e3ea184b21e))
125
- - **toastprovider:** add classname and style prop ([db6227c](https://bitbucket.org/enturas/design-system/commits/db6227c6fd372b1beb9c0b53b7326a9808d6be1f))
126
-
127
- ## [0.7.16](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.15...@entur/alert@0.7.16) (2021-06-25)
128
-
129
- ### Bug Fixes
130
-
131
- - update dependencies ([84d2366](https://bitbucket.org/enturas/design-system/commits/84d236602fc0bf56b6a466ca7ecff4fcededb5fc))
132
-
133
- ## [0.7.15](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.14...@entur/alert@0.7.15) (2021-05-05)
134
-
135
- **Note:** Version bump only for package @entur/alert
136
-
137
- ## [0.7.14](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.13...@entur/alert@0.7.14) (2021-04-23)
138
-
139
- ### Bug Fixes
140
-
141
- - utilize new focus tokens ([17113ef](https://bitbucket.org/enturas/design-system/commits/17113ef3f791c86fa6e19e71680fd5acdbae4990))
142
-
143
- ## [0.7.13](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.12...@entur/alert@0.7.13) (2021-04-09)
144
-
145
- **Note:** Version bump only for package @entur/alert
146
-
147
- ## [0.7.12](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.11...@entur/alert@0.7.12) (2021-03-02)
148
-
149
- **Note:** Version bump only for package @entur/alert
150
-
151
- ## [0.7.11](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.10...@entur/alert@0.7.11) (2021-02-17)
152
-
153
- **Note:** Version bump only for package @entur/alert
154
-
155
- ## [0.7.10](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.9...@entur/alert@0.7.10) (2021-02-05)
156
-
157
- ### Bug Fixes
158
-
159
- - **toastalert:** center title if no children content ([78571b9](https://bitbucket.org/enturas/design-system/commits/78571b99feb458a46a9a39e096b8b3ab1b57576a))
160
- - **toastalert:** children props is optional ([75c5fd0](https://bitbucket.org/enturas/design-system/commits/75c5fd01015f757d54127aa72ede75f50166a84f))
161
-
162
- ## [0.7.9](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.8...@entur/alert@0.7.9) (2021-01-29)
163
-
164
- **Note:** Version bump only for package @entur/alert
165
-
166
- ## [0.7.8](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.7...@entur/alert@0.7.8) (2021-01-20)
167
-
168
- **Note:** Version bump only for package @entur/alert
169
-
170
- ## [0.7.7](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.6...@entur/alert@0.7.7) (2021-01-13)
171
-
172
- ### Bug Fixes
173
-
174
- - **alerts:** set border radius on all alerts ([fd477df](https://bitbucket.org/enturas/design-system/commits/fd477dfe49fa414d87af793b3b19ca0fdbd42762))
175
-
176
- ## [0.7.6](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.5...@entur/alert@0.7.6) (2021-01-05)
177
-
178
- ### Bug Fixes
179
-
180
- - **expandablealertbox:** fix expand button bug for long titles ([52ccfe9](https://bitbucket.org/enturas/design-system/commits/52ccfe9188a8757f84f179e7a68f9a240aa0d68c))
181
-
182
- ## [0.7.5](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.4...@entur/alert@0.7.5) (2020-12-04)
183
-
184
- **Note:** Version bump only for package @entur/alert
185
-
186
- ## [0.7.4](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.3...@entur/alert@0.7.4) (2020-11-26)
187
-
188
- ### Bug Fixes
189
-
190
- - **expandablealertbox:** type=button on expandarrow ([a03b3bd](https://bitbucket.org/enturas/design-system/commits/a03b3bdb4ba0a9789b531b4ac6cbaa16c5a85772))
191
-
192
- ## [0.7.3](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.2...@entur/alert@0.7.3) (2020-11-10)
193
-
194
- **Note:** Version bump only for package @entur/alert
195
-
196
- ## [0.7.2](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.1...@entur/alert@0.7.2) (2020-11-05)
197
-
198
- **Note:** Version bump only for package @entur/alert
199
-
200
- ## [0.7.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.7.0...@entur/alert@0.7.1) (2020-10-23)
201
-
202
- ### Bug Fixes
203
-
204
- - **expandable alert box:** fix div descendant of p warning of title ([5581a87](https://bitbucket.org/enturas/design-system/commits/5581a870dc5fa0e9c793e9ee72b49ce55cb5effd))
205
-
206
- # [0.7.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.9...@entur/alert@0.7.0) (2020-10-16)
207
-
208
- ### Bug Fixes
209
-
210
- - **basealertbox:** upgrade title prop from string to react node ([263c0a6](https://bitbucket.org/enturas/design-system/commits/263c0a6b43ce9bcc7694b53943579aae6e67bbac))
211
-
212
- ### Features
213
-
214
- - add expandable small and banner AlertBox ([3dcc2ed](https://bitbucket.org/enturas/design-system/commits/3dcc2edfc08ae7761a1e3d7b0de60e1eaf88ba85))
215
-
216
- ## [0.6.9](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.8...@entur/alert@0.6.9) (2020-10-09)
217
-
218
- **Note:** Version bump only for package @entur/alert
219
-
220
- ## [0.6.8](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.7...@entur/alert@0.6.8) (2020-09-25)
221
-
222
- ### Bug Fixes
223
-
224
- - **small alert box:** adjust font size down from 16 to 14 ([7349397](https://bitbucket.org/enturas/design-system/commits/7349397d7e47694d22ab20a0dffe133c27104516))
225
-
226
- ## [0.6.7](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.6...@entur/alert@0.6.7) (2020-09-14)
227
-
228
- **Note:** Version bump only for package @entur/alert
229
-
230
- ## [0.6.6](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.5...@entur/alert@0.6.6) (2020-09-02)
231
-
232
- ### Bug Fixes
233
-
234
- - **alert box:** shift font size for new token ([6c46880](https://bitbucket.org/enturas/design-system/commits/6c46880b2fcf5cc0ff9115dc2b9f00a3a58320b8))
235
- - **alertbox:** cursor pointer for close button ([4da18df](https://bitbucket.org/enturas/design-system/commits/4da18dfbde9176f6c1788edafdfd7b4af15ddb07))
236
-
237
- ## [0.6.5](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.4...@entur/alert@0.6.5) (2020-08-26)
238
-
239
- **Note:** Version bump only for package @entur/alert
240
-
241
- ## [0.6.4](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.3...@entur/alert@0.6.4) (2020-08-19)
242
-
243
- **Note:** Version bump only for package @entur/alert
244
-
245
- ## [0.6.3](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.2...@entur/alert@0.6.3) (2020-08-11)
246
-
247
- **Note:** Version bump only for package @entur/alert
248
-
249
- ## [0.6.2](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.1...@entur/alert@0.6.2) (2020-07-22)
250
-
251
- **Note:** Version bump only for package @entur/alert
252
-
253
- ## [0.6.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.6.0...@entur/alert@0.6.1) (2020-07-16)
254
-
255
- **Note:** Version bump only for package @entur/alert
256
-
257
- # [0.6.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.26...@entur/alert@0.6.0) (2020-07-09)
258
-
259
- ### Features
260
-
261
- - add position prop for toastprovider ([3127173](https://bitbucket.org/enturas/design-system/commits/3127173522c00fde06ff88892d216fda35ded362))
262
-
263
- ## [0.5.26](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.25...@entur/alert@0.5.26) (2020-07-03)
264
-
265
- ### Bug Fixes
266
-
267
- - fix close button position on toast alerts ([75bfc76](https://bitbucket.org/enturas/design-system/commits/75bfc7662fd99dca5d525dae6d93a8f3817b9c6c))
268
-
269
- ## [0.5.25](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.24...@entur/alert@0.5.25) (2020-06-17)
270
-
271
- **Note:** Version bump only for package @entur/alert
272
-
273
- ## [0.5.24](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.23...@entur/alert@0.5.24) (2020-05-27)
274
-
275
- **Note:** Version bump only for package @entur/alert
276
-
277
- ## [0.5.23](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.22...@entur/alert@0.5.23) (2020-05-26)
278
-
279
- **Note:** Version bump only for package @entur/alert
280
-
281
- ## [0.5.22](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.21...@entur/alert@0.5.22) (2020-05-20)
282
-
283
- **Note:** Version bump only for package @entur/alert
284
-
285
- ## [0.5.21](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.20...@entur/alert@0.5.21) (2020-04-27)
286
-
287
- **Note:** Version bump only for package @entur/alert
288
-
289
- ## [0.5.20](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.19...@entur/alert@0.5.20) (2020-04-23)
290
-
291
- ### Bug Fixes
292
-
293
- - updated to use new focus styling where applicable ([d0a52c0](https://bitbucket.org/enturas/design-system/commits/d0a52c096b673c6647070a90dd79bef9003ee0ad))
294
-
295
- ## [0.5.19](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.18...@entur/alert@0.5.19) (2020-04-08)
296
-
297
- **Note:** Version bump only for package @entur/alert
298
-
299
- ## [0.5.18](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.16...@entur/alert@0.5.18) (2020-03-25)
300
-
301
- **Note:** Version bump only for package @entur/alert
302
-
303
- ## [0.5.17](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.16...@entur/alert@0.5.17) (2020-03-25)
304
-
305
- **Note:** Version bump only for package @entur/alert
306
-
307
- ## [0.5.16](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.15...@entur/alert@0.5.16) (2020-03-20)
308
-
309
- **Note:** Version bump only for package @entur/alert
310
-
311
- ## [0.5.15](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.14...@entur/alert@0.5.15) (2020-03-18)
312
-
313
- **Note:** Version bump only for package @entur/alert
314
-
315
- ## [0.5.14](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.13...@entur/alert@0.5.14) (2020-03-05)
316
-
317
- **Note:** Version bump only for package @entur/alert
318
-
319
- ## [0.5.13](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.12...@entur/alert@0.5.13) (2020-02-26)
320
-
321
- **Note:** Version bump only for package @entur/alert
322
-
323
- ## [0.5.12](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.11...@entur/alert@0.5.12) (2020-02-20)
324
-
325
- **Note:** Version bump only for package @entur/alert
326
-
327
- ## [0.5.11](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.10...@entur/alert@0.5.11) (2020-02-14)
328
-
329
- **Note:** Version bump only for package @entur/alert
330
-
331
- ## [0.5.10](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.9...@entur/alert@0.5.10) (2020-02-12)
332
-
333
- **Note:** Version bump only for package @entur/alert
334
-
335
- ## [0.5.9](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.8...@entur/alert@0.5.9) (2020-02-05)
336
-
337
- ### Bug Fixes
338
-
339
- - remove test-files from build process ([e0b24af](https://bitbucket.org/enturas/design-system/commits/e0b24af05d5c2ad8de4ae587d83c389495235890))
340
-
341
- ## [0.5.8](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.7...@entur/alert@0.5.8) (2020-01-28)
342
-
343
- **Note:** Version bump only for package @entur/alert
344
-
345
- ## [0.5.7](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.6...@entur/alert@0.5.7) (2020-01-27)
346
-
347
- ### Bug Fixes
348
-
349
- - center text of alerts if no title is provided ([3976be9](https://bitbucket.org/enturas/design-system/commits/3976be9831c306a5d8a16530b16af03dcf5ad323))
350
- - min width and right side flexing of toast alerts ([21f2f2e](https://bitbucket.org/enturas/design-system/commits/21f2f2e33a69951ed3be64a2f1c24a6dd897f401))
351
- - **types:** place types in the correct place ([acace09](https://bitbucket.org/enturas/design-system/commits/acace09ec0e258c5cff3a65e13ab29d6603780d9))
352
-
353
- ## [0.5.6](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.5...@entur/alert@0.5.6) (2020-01-14)
354
-
355
- **Note:** Version bump only for package @entur/alert
356
-
357
- ## [0.5.5](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.4...@entur/alert@0.5.5) (2020-01-13)
358
-
359
- **Note:** Version bump only for package @entur/alert
360
-
361
- ## [0.5.4](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.3...@entur/alert@0.5.4) (2020-01-08)
362
-
363
- ### Bug Fixes
364
-
365
- - warn in development if the developer have forgotten the CSS ([e5c30fc](https://bitbucket.org/enturas/design-system/commits/e5c30fc08624ef22c02773892778abd92205c6b0))
366
-
367
- ## [0.5.3](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.2...@entur/alert@0.5.3) (2020-01-06)
368
-
369
- ### Bug Fixes
370
-
371
- - **ToastProvider:** fix issue with typescript typings ([e0217b9](https://bitbucket.org/enturas/design-system/commits/e0217b960d757c71a5ac542a7a2452510af9fc98))
372
-
373
- ## [0.5.2](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.1...@entur/alert@0.5.2) (2019-12-10)
374
-
375
- ### Bug Fixes
376
-
377
- - adding default prop as part of documentation ([1ef7510](https://bitbucket.org/enturas/design-system/commits/1ef75107362f6262429d7fe31519b4353eccc8de))
378
-
379
- ## [0.5.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.5.0...@entur/alert@0.5.1) (2019-11-29)
380
-
381
- **Note:** Version bump only for package @entur/alert
382
-
383
- # [0.5.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.4.1...@entur/alert@0.5.0) (2019-11-22)
384
-
385
- ### Features
386
-
387
- - **types:** exporting all public types for public components ([4a277ab](https://bitbucket.org/enturas/design-system/commits/4a277ab266fdb32a6760821a07b1c6cc716bac85))
388
-
389
- ## [0.4.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.4.0...@entur/alert@0.4.1) (2019-11-14)
390
-
391
- ### Bug Fixes
392
-
393
- - add missing dependencies to dependency arrays ([15f1e81](https://bitbucket.org/enturas/design-system/commits/15f1e81f5a3dfea3e60453195379d392e6d536a0))
394
- - **css classnames:** fixing naming collisions with CSS classes ([a93ca43](https://bitbucket.org/enturas/design-system/commits/a93ca435d3a01d61d8f02694a672686b9e943a66))
395
-
396
- # [0.4.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.3.1...@entur/alert@0.4.0) (2019-11-04)
397
-
398
- ### Features
399
-
400
- - **SmallAlertBox:** add width="fit-content" option ([1f4d327](https://bitbucket.org/enturas/design-system/commits/1f4d32763a65bbe2a70f814f9ca9377a737f53ca))
401
-
402
- ## [0.3.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.3.0...@entur/alert@0.3.1) (2019-10-30)
403
-
404
- ### Bug Fixes
405
-
406
- - migrate to latest version of space tokens ([4330496](https://bitbucket.org/enturas/design-system/commits/4330496e269bf628f7b9b7aec75f704800201101))
407
- - update all packages to use new tokens ([4847835](https://bitbucket.org/enturas/design-system/commits/48478359b0e562ba828e06d9b5c57239316805c2))
408
-
409
- # [0.3.0](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.2.1...@entur/alert@0.3.0) (2019-10-22)
410
-
411
- ### Bug Fixes
412
-
413
- - **alert:** tweak size of icon on banner and toast alerts ([988dc38](https://bitbucket.org/enturas/design-system/commits/988dc38cc90a4e9ec60b670b62937ceacf8a9f53))
414
- - **toast:** set toast role to status ([1337e6a](https://bitbucket.org/enturas/design-system/commits/1337e6a3c9ef15898b5d8022e00fd2f62a9259fc))
415
-
416
- ### Features
417
-
418
- - **alert:** add smarter toasts ([cab5023](https://bitbucket.org/enturas/design-system/commits/cab502382272d1c377c26ac89652755ab236a9b5))
419
-
420
- ## [0.2.1](https://bitbucket.org/enturas/design-system/compare/@entur/alert@0.2.0...@entur/alert@0.2.1) (2019-10-07)
421
-
422
- **Note:** Version bump only for package @entur/alert
423
-
424
- # 0.2.0 (2019-09-26)
425
-
426
- ### Features
427
-
428
- - add new alert package ([52e0b03](https://bitbucket.org/enturas/design-system/commits/52e0b03))
429
- - **alert:** add new prop \`closable\` ([ae80e40](https://bitbucket.org/enturas/design-system/commits/ae80e40))