@agorapulse/ui-theme 17.0.0 → 17.1.0
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
|
|
@@ -281,6 +281,14 @@
|
|
|
281
281
|
--comp-counter-blue-with-background-background-color: #E8F4FF;
|
|
282
282
|
--comp-counter-grey-color: #344563;
|
|
283
283
|
--comp-counter-grey-with-background-background-color: #EAECEF;
|
|
284
|
+
--comp-dot-stepper-dot-size: 12px;
|
|
285
|
+
--comp-dot-stepper-dot-active-background-color: #0E72D6;
|
|
286
|
+
--comp-dot-stepper-dot-inactive-hovered-background-color: #74BBFE;
|
|
287
|
+
--comp-dot-stepper-dot-inactive-clicked-background-color: #178DFE;
|
|
288
|
+
--comp-dot-stepper-dot-inactive-focused-background-color: #74BBFE;
|
|
289
|
+
--comp-dot-stepper-dot-inactive-border-width: 2px;
|
|
290
|
+
--comp-dot-stepper-dot-inactive-border-color: #AEB5C1;
|
|
291
|
+
--comp-dot-stepper-spacing: 8px;
|
|
284
292
|
--comp-icon-button-padding: 10px;
|
|
285
293
|
--comp-icon-button-width: 36px;
|
|
286
294
|
--comp-icon-button-height: 36px;
|
|
@@ -281,6 +281,14 @@
|
|
|
281
281
|
--comp-counter-blue-with-background-background-color: #E8F4FF;
|
|
282
282
|
--comp-counter-grey-color: #344563;
|
|
283
283
|
--comp-counter-grey-with-background-background-color: #EAECEF;
|
|
284
|
+
--comp-dot-stepper-dot-size: 12px;
|
|
285
|
+
--comp-dot-stepper-dot-active-background-color: #0E72D6;
|
|
286
|
+
--comp-dot-stepper-dot-inactive-hovered-background-color: #74BBFE;
|
|
287
|
+
--comp-dot-stepper-dot-inactive-clicked-background-color: #178DFE;
|
|
288
|
+
--comp-dot-stepper-dot-inactive-focused-background-color: #74BBFE;
|
|
289
|
+
--comp-dot-stepper-dot-inactive-border-width: 2px;
|
|
290
|
+
--comp-dot-stepper-dot-inactive-border-color: #AEB5C1;
|
|
291
|
+
--comp-dot-stepper-spacing: 8px;
|
|
284
292
|
--comp-icon-button-padding: 8px;
|
|
285
293
|
--comp-icon-button-width: 36px;
|
|
286
294
|
--comp-icon-button-height: 36px;
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
"name": "@agorapulse/ui-theme",
|
|
3
|
+
"version": "17.1.0",
|
|
4
|
+
"description": "Agorapulse UI Theme Library",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/agorapulse/design.git"
|
|
8
|
+
},
|
|
9
|
+
"author": "Arnaud BUSO",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/agorapulse/design/issues"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"generate-tokens": "cd src && node build.js && cd ../assets && git add mobile_variables.css && git add desktop_variables.css"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/agorapulse/design#readme",
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"@angular/material": "^17.3.0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"style-dictionary": "^3.7.2"
|
|
23
|
+
}
|
|
24
24
|
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"comp": {
|
|
3
|
+
"dot-stepper": {
|
|
4
|
+
"dot": {
|
|
5
|
+
"size": {
|
|
6
|
+
"value": "12px"
|
|
7
|
+
},
|
|
8
|
+
"active": {
|
|
9
|
+
"background": {
|
|
10
|
+
"color": {
|
|
11
|
+
"value": "{ref.color.electricBlue.150}"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"inactive": {
|
|
16
|
+
"hovered": {
|
|
17
|
+
"background": {
|
|
18
|
+
"color": {
|
|
19
|
+
"value": "{ref.color.electricBlue.60}"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"clicked": {
|
|
24
|
+
"background": {
|
|
25
|
+
"color": {
|
|
26
|
+
"value": "{ref.color.electricBlue.100}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"focused": {
|
|
31
|
+
"background": {
|
|
32
|
+
"color": {
|
|
33
|
+
"value": "{ref.color.electricBlue.60}"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"border": {
|
|
38
|
+
"width": {
|
|
39
|
+
"value": "2px"
|
|
40
|
+
},
|
|
41
|
+
"color": {
|
|
42
|
+
"value": "{ref.color.grey.40}"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"spacing": {
|
|
48
|
+
"value": "{ref.spacing.xxs}"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
Binary file
|