@umbraco-ui/uui-toast-notification 1.14.0-rc.1 → 1.14.0-rc.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.
Files changed (2) hide show
  1. package/lib/index.js +20 -4
  2. package/package.json +3 -3
package/lib/index.js CHANGED
@@ -280,12 +280,20 @@ UUIToastNotificationElement.styles = [
280
280
  :host([color='default']) #toast > div {
281
281
  background-color: var(--uui-color-default,#1b264f);
282
282
  color: var(--uui-color-default-contrast,#fff);
283
- border-color: var(--uui-color-default-standalone,rgb(28, 35, 59));
283
+ border-color: var(--uui-color-default-standalone,rgb(
284
+ 28,
285
+ 35,
286
+ 59
287
+ ));
284
288
  }
285
289
  :host([color='positive']) #toast > div {
286
290
  background-color: var(--uui-color-positive,#0b8152);
287
291
  color: var(--uui-color-positive-contrast,#fff);
288
- border-color: var(--uui-color-positive-standalone,rgb(10, 115, 73));
292
+ border-color: var(--uui-color-positive-standalone,rgb(
293
+ 10,
294
+ 115,
295
+ 73
296
+ ));
289
297
  }
290
298
  :host([color='warning']) #toast > div {
291
299
  background-color: var(--uui-color-warning,#fbd142);
@@ -295,12 +303,20 @@ UUIToastNotificationElement.styles = [
295
303
  :host([color='danger']) #toast > div {
296
304
  background-color: var(--uui-color-danger,#d42054);
297
305
  color: var(--uui-color-danger-contrast,white);
298
- border-color: var(--uui-color-danger-standalone,rgb(191, 33, 78));
306
+ border-color: var(--uui-color-danger-standalone,rgb(
307
+ 191,
308
+ 33,
309
+ 78
310
+ ));
299
311
  }
300
312
  :host([color='invalid']) #toast > div {
301
313
  background-color: var(--uui-color-invalid,#d42054);
302
314
  color: var(--uui-color-invalid-contrast,white);
303
- border-color: var(--uui-color-invalid-standalone,rgb(191, 33, 78));
315
+ border-color: var(--uui-color-invalid-standalone,rgb(
316
+ 191,
317
+ 33,
318
+ 78
319
+ ));
304
320
  }
305
321
  `
306
322
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-toast-notification",
3
- "version": "1.14.0-rc.1",
3
+ "version": "1.14.0-rc.2",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "@umbraco-ui/uui-base": "1.14.0-rc.1",
34
34
  "@umbraco-ui/uui-button": "1.14.0-rc.1",
35
- "@umbraco-ui/uui-css": "1.14.0-rc.0",
35
+ "@umbraco-ui/uui-css": "1.14.0-rc.2",
36
36
  "@umbraco-ui/uui-icon": "1.14.0-rc.1",
37
37
  "@umbraco-ui/uui-icon-registry-essential": "1.14.0-rc.1"
38
38
  },
@@ -45,5 +45,5 @@
45
45
  "access": "public"
46
46
  },
47
47
  "homepage": "https://uui.umbraco.com/?path=/story/uui-toast-notification",
48
- "gitHead": "c3c2fc0f8a68b897b5c88e0c3e09f549150f1034"
48
+ "gitHead": "4b881fe62e09e598d3da3050d13fe8fa0f9f3040"
49
49
  }