@pega/cosmos-react-core 9.0.0-build.10.3 → 9.0.0-build.11.1
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.
- package/lib/components/AppShell/AppHeader.styles.d.ts.map +1 -1
- package/lib/components/AppShell/AppHeader.styles.js +5 -6
- package/lib/components/AppShell/AppHeader.styles.js.map +1 -1
- package/lib/components/MultiStepForm/FormProgress.styles.d.ts.map +1 -1
- package/lib/components/MultiStepForm/FormProgress.styles.js +1 -0
- package/lib/components/MultiStepForm/FormProgress.styles.js.map +1 -1
- package/lib/components/Progress/Progress.js +1 -1
- package/lib/components/Progress/Progress.js.map +1 -1
- package/lib/hooks/useI18n.d.ts +1 -0
- package/lib/hooks/useI18n.d.ts.map +1 -1
- package/lib/i18n/default.d.ts +1 -0
- package/lib/i18n/default.d.ts.map +1 -1
- package/lib/i18n/default.js +1 -0
- package/lib/i18n/default.js.map +1 -1
- package/lib/i18n/i18n.d.ts +1 -0
- package/lib/i18n/i18n.d.ts.map +1 -1
- package/lib/styles/animations.js +1 -1
- package/lib/styles/animations.js.map +1 -1
- package/lib/theme/index.d.ts +1 -0
- package/lib/theme/index.d.ts.map +1 -1
- package/lib/theme/index.js +1 -0
- package/lib/theme/index.js.map +1 -1
- package/lib/theme/theme.d.ts +72 -36
- package/lib/theme/theme.d.ts.map +1 -1
- package/lib/theme/themeDefinition.json +40 -20
- package/lib/theme/themeOverrides.schema.json +48 -24
- package/lib/theme/themes/studioDarkTheme.json +6 -2
- package/lib/theme/themes/studioTheme.json +22 -17
- package/lib/theme/themes/virgoTheme.json +150 -0
- package/package.json +1 -1
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
{
|
|
2
|
+
"base": {
|
|
3
|
+
"font-family": "\u0027Roboto Flex\u0027, sans-serif",
|
|
4
|
+
"font-stretch": "100%",
|
|
5
|
+
"line-height": "1.28",
|
|
6
|
+
"font-scale": "majorSecond",
|
|
7
|
+
"palette": {
|
|
8
|
+
"app-background": "#e2e6f3",
|
|
9
|
+
"brand-primary": "#fff",
|
|
10
|
+
"border-line": "#cfd5e2",
|
|
11
|
+
"secondary-background": "#F3F4FA",
|
|
12
|
+
"foreground-color": "#001d54",
|
|
13
|
+
"interactive": "#3f57e4"
|
|
14
|
+
},
|
|
15
|
+
"border-radius": "1rem",
|
|
16
|
+
"shadow": {
|
|
17
|
+
"focus": "0 0 0 0.11rem #fff, 0 0 0 0.18rem #3F57E4, 0 0 0 0.3rem #3F57E41a",
|
|
18
|
+
"focus-inset": "inset 0 0 0 0.11rem #fff, inset 0 0 0 0.18rem #3F57E4, inset 0 0 0 0.3rem #3F57E41a",
|
|
19
|
+
"focus-group": "0 0 0 0.125rem #3F57E466",
|
|
20
|
+
"focus-group-inset": "inset 0 0 0 0.125rem #3F57E466",
|
|
21
|
+
"focus-solid": "0 0 0 0.0625rem rgb(63, 87, 228)",
|
|
22
|
+
"focus-filter": "drop-shadow(0 0 0.125rem rgba(63, 87, 228, 0.30))"
|
|
23
|
+
},
|
|
24
|
+
"spacing": "0.65rem"
|
|
25
|
+
},
|
|
26
|
+
"components": {
|
|
27
|
+
"avatar": {
|
|
28
|
+
"background-color": "linear-gradient(180deg, hsl(220, 100%, 17%) 0%, hsl(220, 40%, 60%) 100%)"
|
|
29
|
+
},
|
|
30
|
+
"app-shell": {
|
|
31
|
+
"nav": {
|
|
32
|
+
"background": "#e2e6f3",
|
|
33
|
+
"foreground-color": "#001F5F",
|
|
34
|
+
"border-color": "transparent",
|
|
35
|
+
"create-button-background": "#f5f5fc",
|
|
36
|
+
"nested-list-background": "#f5f5fc",
|
|
37
|
+
"detached": true
|
|
38
|
+
},
|
|
39
|
+
"header": {
|
|
40
|
+
"app-name-color": "#4a8672",
|
|
41
|
+
"background": "#fff",
|
|
42
|
+
"foreground-color": "#001F5F",
|
|
43
|
+
"border-color": "#e2e6f3"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"button": {
|
|
47
|
+
"border-radius": 0.5,
|
|
48
|
+
"foreground-color": "#ffffff",
|
|
49
|
+
"color": "#3f57e4",
|
|
50
|
+
"secondary-color": "#3f57e4"
|
|
51
|
+
},
|
|
52
|
+
"form-control": {
|
|
53
|
+
"border-radius": 0.25,
|
|
54
|
+
"border-color": "#8a8a8a"
|
|
55
|
+
},
|
|
56
|
+
"tabs": {
|
|
57
|
+
"detached": true
|
|
58
|
+
},
|
|
59
|
+
"table": {
|
|
60
|
+
"typography": {
|
|
61
|
+
"font-stretch": "60%"
|
|
62
|
+
},
|
|
63
|
+
"striped-rows": true
|
|
64
|
+
},
|
|
65
|
+
"badges": {
|
|
66
|
+
"font-stretch": "60%"
|
|
67
|
+
},
|
|
68
|
+
"announcement": {
|
|
69
|
+
"background": "#fff",
|
|
70
|
+
"foreground-color": "#001f5f"
|
|
71
|
+
},
|
|
72
|
+
"agent": {
|
|
73
|
+
"background": "linear-gradient(90deg, #f7f5ff 0%, #eff6fe 100%)",
|
|
74
|
+
"user-message": {
|
|
75
|
+
"background": "#681fc31a"
|
|
76
|
+
},
|
|
77
|
+
"coach-message": {
|
|
78
|
+
"avatar": {
|
|
79
|
+
"background": "linear-gradient(219.11deg,rgba(255, 255, 255, 0.5) 9.91%, #ac75f0 123.32%,#681fc3 163.09%)"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"case-view": {
|
|
84
|
+
"header": {
|
|
85
|
+
"background": "#fff",
|
|
86
|
+
"foreground-color": "#001f5f"
|
|
87
|
+
},
|
|
88
|
+
"summary": {
|
|
89
|
+
"detached": true
|
|
90
|
+
},
|
|
91
|
+
"utilities": {
|
|
92
|
+
"detached": true,
|
|
93
|
+
"background": "#F3F4FA"
|
|
94
|
+
},
|
|
95
|
+
"assignments": {
|
|
96
|
+
"detached": false,
|
|
97
|
+
"background": "#fff"
|
|
98
|
+
},
|
|
99
|
+
"stages": {
|
|
100
|
+
"status": {
|
|
101
|
+
"completed": {
|
|
102
|
+
"background": "#f6fef6",
|
|
103
|
+
"foreground-color": "#0b6a2b"
|
|
104
|
+
},
|
|
105
|
+
"current": {
|
|
106
|
+
"background": "#3f57e4",
|
|
107
|
+
"foreground-color": "#ffffff"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"field-value-list": {
|
|
113
|
+
"inline": {
|
|
114
|
+
"detached": true
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"label": {
|
|
118
|
+
"foreground-color": "#001d54",
|
|
119
|
+
"font-size": "s"
|
|
120
|
+
},
|
|
121
|
+
"link": {
|
|
122
|
+
"color": "#3f57e4"
|
|
123
|
+
},
|
|
124
|
+
"text": {
|
|
125
|
+
"brand-primary": {
|
|
126
|
+
"font-family": "\u0027Roboto Flex\u0027, sans-serif",
|
|
127
|
+
"font-weight": "600",
|
|
128
|
+
"font-size": "l"
|
|
129
|
+
},
|
|
130
|
+
"h1": {
|
|
131
|
+
"font-family": "Poppins, sans-serif"
|
|
132
|
+
},
|
|
133
|
+
"h2": {
|
|
134
|
+
"font-family": "Poppins, sans-serif"
|
|
135
|
+
},
|
|
136
|
+
"h3": {
|
|
137
|
+
"font-family": "Poppins, sans-serif"
|
|
138
|
+
},
|
|
139
|
+
"h4": {
|
|
140
|
+
"font-family": "Poppins, sans-serif"
|
|
141
|
+
},
|
|
142
|
+
"h5": {
|
|
143
|
+
"font-family": "Poppins, sans-serif"
|
|
144
|
+
},
|
|
145
|
+
"h6": {
|
|
146
|
+
"font-family": "Poppins, sans-serif"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pega/cosmos-react-core",
|
|
3
|
-
"version": "9.0.0-build.
|
|
3
|
+
"version": "9.0.0-build.11.1",
|
|
4
4
|
"description": "Cosmos is a visual design system and UI component collection. Its goal is to empower application developers in their pursuit to create engaging and rewarding user experiences.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Pegasystems",
|