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