@agorapulse/ui-theme 15.0.16 → 15.0.18

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
@@ -124,6 +124,7 @@
124
124
  --ref-spacing-xl: 40px;
125
125
  --ref-spacing-xxl: 48px;
126
126
  --ref-spacing-xxxl: 60px;
127
+ --ref-transition-duration: 250ms;
127
128
  --sys-border-color-default: #EAECEF;
128
129
  --sys-border-color-active: #178DFE;
129
130
  --sys-border-color-error: #E81313;
@@ -180,6 +181,7 @@
180
181
  --sys-color-feature-lock-text: #6554C0;
181
182
  --sys-icon-sm: 14px;
182
183
  --sys-icon-md: 16px;
184
+ --sys-radio-transition-duration: 250ms;
183
185
  --sys-text-color-default: #344563;
184
186
  --sys-text-color-light: #5D6A82;
185
187
  --sys-text-color-error: #E81313;
@@ -124,6 +124,7 @@
124
124
  --ref-spacing-xl: 40px;
125
125
  --ref-spacing-xxl: 48px;
126
126
  --ref-spacing-xxxl: 60px;
127
+ --ref-transition-duration: 250ms;
127
128
  --sys-border-color-default: #EAECEF;
128
129
  --sys-border-color-active: #178DFE;
129
130
  --sys-border-color-error: #E81313;
@@ -180,6 +181,7 @@
180
181
  --sys-color-feature-lock-text: #6554C0;
181
182
  --sys-icon-sm: 14px;
182
183
  --sys-icon-md: 16px;
184
+ --sys-radio-transition-duration: 250ms;
183
185
  --sys-text-color-default: #344563;
184
186
  --sys-text-color-light: #5D6A82;
185
187
  --sys-text-color-error: #E81313;
@@ -8,7 +8,8 @@
8
8
  }
9
9
 
10
10
  .ng-select {
11
- div, span {
11
+ div,
12
+ span {
12
13
  font-weight: normal !important;
13
14
  }
14
15
  input {
@@ -39,6 +40,11 @@
39
40
  ap-symbol {
40
41
  padding-right: $padding-s;
41
42
  }
43
+ ap-avatar {
44
+ ap-symbol {
45
+ padding: 0 !important;
46
+ }
47
+ }
42
48
  }
43
49
  }
44
50
  }
@@ -53,7 +59,7 @@
53
59
  &.ng-select-single {
54
60
  .ng-select-container {
55
61
  .ng-value-container {
56
- .ng-input {
62
+ .ng-input {
57
63
  padding-left: $padding-m;
58
64
  }
59
65
  }
@@ -94,7 +100,8 @@ form.submitted {
94
100
  }
95
101
  .ng-dropdown-panel-items {
96
102
  padding: $padding-s 0;
97
- .ng-option, .ng-optgroup {
103
+ .ng-option,
104
+ .ng-optgroup {
98
105
  padding: $padding-s $padding-m;
99
106
  span {
100
107
  color: $form-control-selected-font-color;
@@ -102,10 +109,15 @@ form.submitted {
102
109
  ap-symbol {
103
110
  padding-right: $padding-s;
104
111
  }
112
+ ap-avatar {
113
+ ap-symbol {
114
+ padding: 0 !important;
115
+ }
116
+ }
105
117
  .checkmark {
106
118
  ap-symbol {
107
119
  padding-right: 0;
108
- }
120
+ }
109
121
  }
110
122
  }
111
123
  div {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agorapulse/ui-theme",
3
- "version": "15.0.16",
3
+ "version": "15.0.18",
4
4
  "description": "Agorapulse UI Theme Library",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,11 @@
1
+ {
2
+ "comp": {
3
+ "radio": {
4
+ "transition": {
5
+ "duration": {
6
+ "value": "{sys.radio.transition.duration}"
7
+ }
8
+ }
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "ref": {
3
+ "transition": {
4
+ "duration" : {
5
+ "value": "250ms"
6
+ }
7
+ }
8
+ }
9
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "sys": {
3
+ "radio": {
4
+ "transition": {
5
+ "duration": {
6
+ "value": "{ref.transition.duration}"
7
+ }
8
+ }
9
+ }
10
+ }
11
+ }
Binary file