@agorapulse/ui-theme 16.3.8 → 16.3.10

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.
Binary file
@@ -482,6 +482,21 @@
482
482
  --comp-select-search-bar-bottom-link-padding-top: 12px;
483
483
  --comp-select-search-bar-bottom-link-padding-bottom: 4px;
484
484
  --comp-select-search-bar-bottom-link-border-top-color: #EAECEF;
485
+ --comp-snackbar-text-style-font-family: Averta;
486
+ --comp-snackbar-text-style-size: 14px;
487
+ --comp-snackbar-text-style-font-weight: 400;
488
+ --comp-snackbar-text-style-line-height: 18px;
489
+ --comp-snackbar-text-color: #344563;
490
+ --comp-snackbar-width: 420px;
491
+ --comp-snackbar-border-radius: 8px;
492
+ --comp-snackbar-padding-horizontal: 16px;
493
+ --comp-snackbar-padding-vertical: 12px;
494
+ --comp-snackbar-spacing: 12px;
495
+ --comp-snackbar-success-background-color: #DAF1DD;
496
+ --comp-snackbar-success-icon-color: #0F821D;
497
+ --comp-snackbar-error-background-color: #FAD0D0;
498
+ --comp-snackbar-error-icon-color: #D80505;
499
+ --comp-snackbar-shadow: 0px 7px 50px 0px rgba(0, 0, 0, 0.08);
485
500
  --comp-split-button-text-size: 14px;
486
501
  --comp-split-button-text-font-family: Averta;
487
502
  --comp-split-button-text-weight: 700;
@@ -482,6 +482,21 @@
482
482
  --comp-select-search-bar-bottom-link-padding-top: 12px;
483
483
  --comp-select-search-bar-bottom-link-padding-bottom: 4px;
484
484
  --comp-select-search-bar-bottom-link-border-top-color: #EAECEF;
485
+ --comp-snackbar-text-style-font-family: Averta;
486
+ --comp-snackbar-text-style-size: 14px;
487
+ --comp-snackbar-text-style-font-weight: 400;
488
+ --comp-snackbar-text-style-line-height: 18px;
489
+ --comp-snackbar-text-color: #344563;
490
+ --comp-snackbar-width: 420px;
491
+ --comp-snackbar-border-radius: 8px;
492
+ --comp-snackbar-padding-horizontal: 16px;
493
+ --comp-snackbar-padding-vertical: 12px;
494
+ --comp-snackbar-spacing: 12px;
495
+ --comp-snackbar-success-background-color: #DAF1DD;
496
+ --comp-snackbar-success-icon-color: #0F821D;
497
+ --comp-snackbar-error-background-color: #FAD0D0;
498
+ --comp-snackbar-error-icon-color: #D80505;
499
+ --comp-snackbar-shadow: 0px 7px 50px 0px rgba(0, 0, 0, 0.08);
485
500
  --comp-split-button-text-size: 14px;
486
501
  --comp-split-button-text-font-family: Averta;
487
502
  --comp-split-button-text-weight: 700;
@@ -584,6 +584,9 @@
584
584
  &:active {
585
585
  color: var(--ref-color-electric-blue-150);
586
586
  }
587
+ span {
588
+ text-align: left;
589
+ }
587
590
  }
588
591
  }
589
592
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agorapulse/ui-theme",
3
- "version": "16.3.8",
3
+ "version": "16.3.10",
4
4
  "description": "Agorapulse UI Theme Library",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,71 @@
1
+ {
2
+ "comp": {
3
+ "snackbar": {
4
+ "text": {
5
+ "style": {
6
+ "font-family": {
7
+ "value": "{sys.text.style.body.font-family}"
8
+ },
9
+ "size": {
10
+ "value": "{sys.text.style.body.size}"
11
+ },
12
+ "font-weight": {
13
+ "value": "{sys.text.style.body.weight}"
14
+ },
15
+ "line-height": {
16
+ "value": "{sys.text.style.body.line-height}"
17
+ }
18
+ },
19
+ "color": {
20
+ "value": "{ref.color.grey.100}"
21
+ }
22
+ },
23
+ "width": {
24
+ "value": "420px"
25
+ },
26
+ "border": {
27
+ "radius": {
28
+ "value": "{sys.border.radius.lg}"
29
+ }
30
+ },
31
+ "padding": {
32
+ "horizontal": {
33
+ "value": "{ref.spacing.sm}"
34
+ },
35
+ "vertical": {
36
+ "value": "{ref.spacing.xs}"
37
+ }
38
+ },
39
+ "spacing": {
40
+ "value": "{ref.spacing.xs}"
41
+ },
42
+ "success": {
43
+ "background": {
44
+ "color": {
45
+ "value": "{ref.color.green.20}"
46
+ }
47
+ },
48
+ "icon": {
49
+ "color": {
50
+ "value": "{ref.color.green.150}"
51
+ }
52
+ }
53
+ },
54
+ "error": {
55
+ "background": {
56
+ "color": {
57
+ "value": "{ref.color.red.20}"
58
+ }
59
+ },
60
+ "icon": {
61
+ "color": {
62
+ "value": "{ref.color.red.150}"
63
+ }
64
+ }
65
+ },
66
+ "shadow": {
67
+ "value": "0px 7px 50px 0px rgba(0, 0, 0, 0.08)"
68
+ }
69
+ }
70
+ }
71
+ }
Binary file