@agorapulse/ui-theme 15.0.15 → 15.0.17

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
@@ -1,8 +1,3 @@
1
- /**
2
- * Do not edit directly
3
- * Generated on Fri, 23 Jun 2023 12:56:12 GMT
4
- */
5
-
6
1
  :root {
7
2
  --ref-border-radius-sm: 4px;
8
3
  --ref-border-radius-md: 6px;
@@ -99,6 +94,8 @@
99
94
  --ref-color-tiktok-blue-100: #25F4EE;
100
95
  --ref-color-tiktok-red-10: #fee9ee;
101
96
  --ref-color-tiktok-red-100: #FE2C55;
97
+ --ref-color-pinterest-10: #fee5e5;
98
+ --ref-color-pinterest-100: #E60023;
102
99
  --ref-font-family: Averta;
103
100
  --ref-font-size-xs: 12px;
104
101
  --ref-font-size-sm: 14px;
@@ -127,6 +124,7 @@
127
124
  --ref-spacing-xl: 40px;
128
125
  --ref-spacing-xxl: 48px;
129
126
  --ref-spacing-xxxl: 60px;
127
+ --ref-transition-duration: 250ms;
130
128
  --sys-border-color-default: #EAECEF;
131
129
  --sys-border-color-active: #178DFE;
132
130
  --sys-border-color-error: #E81313;
@@ -183,6 +181,7 @@
183
181
  --sys-color-feature-lock-text: #6554C0;
184
182
  --sys-icon-sm: 14px;
185
183
  --sys-icon-md: 16px;
184
+ --sys-radio-transition-duration: 250ms;
186
185
  --sys-text-color-default: #344563;
187
186
  --sys-text-color-light: #5D6A82;
188
187
  --sys-text-color-error: #E81313;
@@ -1,8 +1,3 @@
1
- /**
2
- * Do not edit directly
3
- * Generated on Fri, 23 Jun 2023 12:56:12 GMT
4
- */
5
-
6
1
  :root {
7
2
  --ref-border-radius-sm: 4px;
8
3
  --ref-border-radius-md: 6px;
@@ -99,6 +94,8 @@
99
94
  --ref-color-tiktok-blue-100: #25F4EE;
100
95
  --ref-color-tiktok-red-10: #fee9ee;
101
96
  --ref-color-tiktok-red-100: #FE2C55;
97
+ --ref-color-pinterest-10: #fee5e5;
98
+ --ref-color-pinterest-100: #E60023;
102
99
  --ref-font-family: Averta;
103
100
  --ref-font-size-xs: 12px;
104
101
  --ref-font-size-sm: 14px;
@@ -127,6 +124,7 @@
127
124
  --ref-spacing-xl: 40px;
128
125
  --ref-spacing-xxl: 48px;
129
126
  --ref-spacing-xxxl: 60px;
127
+ --ref-transition-duration: 250ms;
130
128
  --sys-border-color-default: #EAECEF;
131
129
  --sys-border-color-active: #178DFE;
132
130
  --sys-border-color-error: #E81313;
@@ -183,6 +181,7 @@
183
181
  --sys-color-feature-lock-text: #6554C0;
184
182
  --sys-icon-sm: 14px;
185
183
  --sys-icon-md: 16px;
184
+ --sys-radio-transition-duration: 250ms;
186
185
  --sys-text-color-default: #344563;
187
186
  --sys-text-color-light: #5D6A82;
188
187
  --sys-text-color-error: #E81313;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agorapulse/ui-theme",
3
- "version": "15.0.15",
3
+ "version": "15.0.17",
4
4
  "description": "Agorapulse UI Theme Library",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,6 +13,9 @@ module.exports = {
13
13
  {
14
14
  format: 'css/variables',
15
15
  destination: '../assets/desktop_variables.css',
16
+ options: {
17
+ showFileHeader: false,
18
+ },
16
19
  },
17
20
  ],
18
21
  },
@@ -13,6 +13,9 @@ module.exports = {
13
13
  {
14
14
  format: 'css/variables',
15
15
  destination: '../assets/mobile_variables.css',
16
+ options: {
17
+ showFileHeader: false,
18
+ },
16
19
  },
17
20
  ],
18
21
  },
@@ -0,0 +1,11 @@
1
+ {
2
+ "comp": {
3
+ "radio": {
4
+ "transition": {
5
+ "duration": {
6
+ "value": "{sys.radio.transition.duration}"
7
+ }
8
+ }
9
+ }
10
+ }
11
+ }
@@ -134,6 +134,10 @@
134
134
  "100" : { "value": "#FE2C55" },
135
135
  "10" : { "value": "#fee9ee" }
136
136
  }
137
+ },
138
+ "pinterest": {
139
+ "100" : { "value": "#E60023" },
140
+ "10" : { "value": "#fee5e5" }
137
141
  }
138
142
  }
139
143
  }
@@ -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