@pega/cosmos-react-core 9.0.0-build.6.4 → 9.0.0-build.6.6

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.
Files changed (39) hide show
  1. package/lib/components/AppShell/NavigationListItemWrapper.d.ts.map +1 -1
  2. package/lib/components/AppShell/NavigationListItemWrapper.js +3 -4
  3. package/lib/components/AppShell/NavigationListItemWrapper.js.map +1 -1
  4. package/lib/components/Fullscreen/Fullscreen.d.ts.map +1 -1
  5. package/lib/components/Fullscreen/Fullscreen.js +1 -0
  6. package/lib/components/Fullscreen/Fullscreen.js.map +1 -1
  7. package/lib/components/Modal/Modal.styles.d.ts.map +1 -1
  8. package/lib/components/Modal/Modal.styles.js +5 -1
  9. package/lib/components/Modal/Modal.styles.js.map +1 -1
  10. package/lib/components/PageTemplates/GridLayout/EditorBackground.js +1 -1
  11. package/lib/components/PageTemplates/GridLayout/EditorBackground.js.map +1 -1
  12. package/lib/components/PageTemplates/GridLayout/GridLayoutEditor.js +1 -1
  13. package/lib/components/PageTemplates/GridLayout/GridLayoutEditor.js.map +1 -1
  14. package/lib/components/PageTemplates/GridLayout/GridLayoutViewer.d.ts +5 -0
  15. package/lib/components/PageTemplates/GridLayout/GridLayoutViewer.d.ts.map +1 -1
  16. package/lib/components/PageTemplates/GridLayout/GridLayoutViewer.js +2 -2
  17. package/lib/components/PageTemplates/GridLayout/GridLayoutViewer.js.map +1 -1
  18. package/lib/components/PageTemplates/GridLayout/config.d.ts +1 -1
  19. package/lib/components/PageTemplates/GridLayout/config.d.ts.map +1 -1
  20. package/lib/components/PageTemplates/GridLayout/config.js +3 -3
  21. package/lib/components/PageTemplates/GridLayout/config.js.map +1 -1
  22. package/lib/components/Popover/Popover.styles.d.ts.map +1 -1
  23. package/lib/components/Popover/Popover.styles.js +2 -4
  24. package/lib/components/Popover/Popover.styles.js.map +1 -1
  25. package/lib/styles/GlobalStyle.d.ts +1 -1
  26. package/lib/styles/GlobalStyle.d.ts.map +1 -1
  27. package/lib/styles/GlobalStyle.js +2 -1
  28. package/lib/styles/GlobalStyle.js.map +1 -1
  29. package/lib/theme/index.d.ts +2 -0
  30. package/lib/theme/index.d.ts.map +1 -1
  31. package/lib/theme/index.js +2 -0
  32. package/lib/theme/index.js.map +1 -1
  33. package/lib/theme/theme.d.ts +138 -0
  34. package/lib/theme/theme.d.ts.map +1 -1
  35. package/lib/theme/themeDefinition.json +76 -0
  36. package/lib/theme/themeOverrides.schema.json +93 -0
  37. package/lib/theme/themes/studioDarkTheme.json +237 -0
  38. package/lib/theme/themes/studioTheme.json +75 -0
  39. package/package.json +1 -1
@@ -0,0 +1,237 @@
1
+ {
2
+ "base": {
3
+ "palette": {
4
+ "ai": "#993CF0",
5
+ "app-background": "url(https://pegasystems.github.io/uplus-wss/img/studio-dark-bg.jpg) no-repeat center / cover",
6
+ "primary-background": "#161E33",
7
+ "secondary-background": "#283B67",
8
+ "foreground-color": "#F5F7FA",
9
+ "brand-primary": "#75D7CD",
10
+ "urgent": "#FF0099",
11
+ "warn": "#CC5353",
12
+ "success": "#3FDF78",
13
+ "info": "#3AB4FD",
14
+ "interactive": "#75D7CD",
15
+ "pending": "#8B6EC3",
16
+ "border-line": "#3B3F4C",
17
+ "skeleton": "#AAB0C0",
18
+ "app-foreground": "#F5F7FA"
19
+ },
20
+ "shadow": {
21
+ "focus": "0 0 0 0.11rem #161E33, 0 0 0 0.14rem #ffffff80 , 0 0 0 0.18rem #75D7CD, 0 0 0 0.3rem #0A0A0A1A",
22
+ "focus-inset": "inset 0 0 0 0.11rem #161E33 , inset 0 0 0 0.18rem #75D7CD, inset 0 0 0 0.3rem #75D7CD1a",
23
+ "focus-group": "0 0 0 0.125rem #75D7CD99",
24
+ "focus-group-inset": "inset 0 0 0 0.125rem #75D7CD99"
25
+ },
26
+ "font-family": "'Noto Sans', sans-serif",
27
+ "font-stretch": "100%",
28
+ "font-scale": "minorThird",
29
+ "border-radius": "0.5rem"
30
+ },
31
+ "components": {
32
+ "icon": {
33
+ "size": {
34
+ "s": "1.125rem",
35
+ "m": "1.5rem",
36
+ "l": "2rem"
37
+ }
38
+ },
39
+ "avatar": {
40
+ "background-color": "#15112C"
41
+ },
42
+ "app-shell": {
43
+ "nav": {
44
+ "background": "#283B6780",
45
+ "foreground-color": "#ffffff",
46
+ "border-color": "transparent",
47
+ "detached": false
48
+ },
49
+ "header": {
50
+ "background": "#000000",
51
+ "border-color": "transparent"
52
+ }
53
+ },
54
+ "button": {
55
+ "border-radius": 0.5,
56
+ "color": "#75D7CD",
57
+ "secondary-color": "#75D7CD"
58
+ },
59
+ "form-control": {
60
+ "border-radius": 0.5,
61
+ ":hover": {
62
+ "border-color": "#7382A3"
63
+ },
64
+ ":disabled": {
65
+ "background-color": "#2a354e"
66
+ },
67
+ ":read-only": {
68
+ "background-color": "#2a354e"
69
+ },
70
+ "border-color": "#324155"
71
+ },
72
+ "tabs": {
73
+ "detached": false
74
+ },
75
+ "table": {
76
+ "typography": {
77
+ "font-stretch": "70%"
78
+ },
79
+ "header": {
80
+ "background-color": "#283B67",
81
+ "foreground-color": "#ffffff"
82
+ },
83
+ "striped-rows": true
84
+ },
85
+ "tooltip": {
86
+ "foreground-color": "#3f3f3f",
87
+ "background-color": "#fafafa"
88
+ },
89
+ "badges": {
90
+ "font-stretch": "70%",
91
+ "count": {
92
+ "default": {
93
+ "background": "#E5E2FF1a",
94
+ "foreground": "#E5E2FF"
95
+ }
96
+ },
97
+ "keyboard": {
98
+ "background-color": "#676767",
99
+ "border-color": "#9E9E9E"
100
+ },
101
+ "status": {
102
+ "success": {
103
+ "background": "#3FDF78",
104
+ "foreground": "#1F351F"
105
+ },
106
+ "warn": {
107
+ "background": "#CC5353",
108
+ "foreground": "#37281E"
109
+ },
110
+ "urgent": {
111
+ "background": "#FF0099",
112
+ "foreground": "#1F1112"
113
+ },
114
+ "pending": {
115
+ "background": "#8B6EC3",
116
+ "foreground": "#1B1425"
117
+ },
118
+ "info": {
119
+ "background": "#8D8E9933",
120
+ "foreground": "#e9eef3"
121
+ }
122
+ }
123
+ },
124
+ "announcement": {
125
+ "background": "#75D7CD"
126
+ },
127
+ "case-view": {
128
+ "header": {
129
+ "background": "#283B6780",
130
+ "foreground-color": "#ffffff"
131
+ },
132
+ "summary": {
133
+ "detached": true
134
+ },
135
+ "utilities": {
136
+ "detached": false,
137
+ "background": "#283B6780"
138
+ },
139
+ "assignments": {
140
+ "detached": true,
141
+ "background": "#283B6780",
142
+ "foreground-color": "auto"
143
+ },
144
+ "stages": {
145
+ "status": {
146
+ "completed": {
147
+ "background": "#156f35",
148
+ "foreground-color": "#d4f7d5"
149
+ },
150
+ "current": {
151
+ "background": "#75D7CD",
152
+ "foreground-color": "#314054"
153
+ },
154
+ "pending": {
155
+ "background": "#3b5081"
156
+ }
157
+ }
158
+ }
159
+ },
160
+ "field-value-list": {
161
+ "inline": {
162
+ "detached": true
163
+ }
164
+ },
165
+ "card": {
166
+ "background": "#283B6780",
167
+ "border-radius": "0.5rem",
168
+ "foreground-color": "#fff"
169
+ },
170
+ "text": {
171
+ "primary": {
172
+ "font-family": "'Noto Sans', sans-serif",
173
+ "font-size": "s"
174
+ },
175
+ "secondary": {
176
+ "font-family": "'Noto Sans', sans-serif",
177
+ "font-size": "s"
178
+ },
179
+ "h1": {
180
+ "font-family": "'Saira', sans-serif",
181
+ "font-size": "xxxl",
182
+ "font-weight": "500"
183
+ },
184
+ "h2": {
185
+ "font-family": "'Saira', sans-serif"
186
+ },
187
+ "h3": {
188
+ "font-family": "'Noto Sans', sans-serif"
189
+ },
190
+ "h4": {
191
+ "font-family": "'Noto Sans', sans-serif"
192
+ },
193
+ "h5": {
194
+ "font-family": "'Noto Sans', sans-serif"
195
+ },
196
+ "h6": {
197
+ "font-family": "'Noto Sans', sans-serif"
198
+ },
199
+ "brand-primary": {
200
+ "font-family": "'Saira', sans-serif"
201
+ }
202
+ },
203
+ "link": {
204
+ "color": "#75D7CD"
205
+ },
206
+ "modal": {
207
+ "background": "#192645"
208
+ },
209
+ "lifecycle": {
210
+ "background": "none",
211
+ "task": {
212
+ "background": "#1A2642"
213
+ },
214
+ "stage": {
215
+ "background": "#161E33",
216
+ "foreground-color": "#FFFFFF",
217
+ "start": {
218
+ "background": "#02468F",
219
+ "hover-color": "#02468F"
220
+ },
221
+ "default": {
222
+ "background": "#26628D",
223
+ "hover-color": "#26628D"
224
+ },
225
+ "resolution": {
226
+ "background": "#097359",
227
+ "hover-color": "#097359"
228
+ },
229
+ "alternate": {
230
+ "background": "#574F6F",
231
+ "hover-color": "#574F6F",
232
+ "resolution-highlight": "#097359"
233
+ }
234
+ }
235
+ }
236
+ }
237
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "base": {
3
+ "icon-set": "streamline",
4
+ "palette": {
5
+ "brand-primary": "#515fc1",
6
+ "app-background": "repeating-linear-gradient(135deg, rgba(242,244,246, 0.24) 0px, rgba(242,244,246, 0.24) 1px,transparent 1px, transparent 11px,rgba(242,244,246, 0.24) 11px, rgba(242,244,246, 0.24) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(45deg, rgba(242,244,246, 0.24) 0px, rgba(242,244,246, 0.24) 1px,transparent 1px, transparent 11px,rgba(242,244,246, 0.24) 11px, rgba(242,244,246, 0.24) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(90deg, rgba(242,244,246, 0.24) 0px, rgba(242,244,246, 0.24) 1px,transparent 1px, transparent 11px,rgba(242,244,246, 0.24) 11px, rgba(242,244,246, 0.24) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(0deg, rgba(242,244,246, 0.24) 0px, rgba(242,244,246, 0.24) 1px,transparent 1px, transparent 11px,rgba(242,244,246, 0.24) 11px, rgba(242,244,246, 0.24) 12px,transparent 12px, transparent 32px),linear-gradient(90deg, rgba(192,238,231, 0.41),rgb(201,197,240))"
7
+ },
8
+ "shadow": {
9
+ "focus": "0 0 0 0.11rem #fff, 0 0 0 0.18rem #515fc1, 0 0 0 0.3rem #0A0A0A1A",
10
+ "focus-inset": "inset 0 0 0 0.11rem #fff, inset 0 0 0 0.18rem #515fc1, inset 0 0 0 0.3rem #515fc11a",
11
+ "focus-group": "0 0 0 0.125rem #515fc199",
12
+ "focus-group-inset": "inset 0 0 0 0.125rem #515fc199",
13
+ "high": "0 0 0.125rem 0.125rem #515fc11A, 0 0 1rem 0.125rem #515fc11A",
14
+ "low": "0 0 0.06rem 0.06rem #515fc110, 0 0 0.5rem 0.125rem #515fc110"
15
+ },
16
+ "font-family": "'Noto Sans', sans-serif",
17
+ "font-stretch": "100%",
18
+ "line-height": "1.28",
19
+ "font-scale": "minorThird",
20
+ "border-radius": "0.5rem",
21
+ "spacing": "0.4rem",
22
+ "font-size": "0.8125rem"
23
+ },
24
+ "components": {
25
+ "icon": {
26
+ "size": {
27
+ "s": "1.125rem",
28
+ "m": "1.5rem",
29
+ "l": "2rem"
30
+ }
31
+ },
32
+ "button": {
33
+ "border-radius": 0.5
34
+ },
35
+ "card": {
36
+ "background": "#05131E0A"
37
+ },
38
+ "badges": {
39
+ "font-stretch": "70%"
40
+ },
41
+ "field-value-list": {
42
+ "inline": {
43
+ "detached": true
44
+ }
45
+ },
46
+ "label": {
47
+ "font-size": "s"
48
+ },
49
+ "text": {
50
+ "h1": {
51
+ "font-family": "'Saira', sans-serif",
52
+ "font-weight": "500",
53
+ "font-size": "xxxl"
54
+ },
55
+ "h2": {
56
+ "font-family": "'Saira', sans-serif"
57
+ },
58
+ "h3": {
59
+ "font-family": "'Noto Sans', sans-serif"
60
+ },
61
+ "h4": {
62
+ "font-family": "'Noto Sans', sans-serif"
63
+ },
64
+ "h5": {
65
+ "font-family": "'Noto Sans', sans-serif"
66
+ },
67
+ "h6": {
68
+ "font-family": "'Noto Sans', sans-serif"
69
+ },
70
+ "brand-primary": {
71
+ "font-family": "'Saira', sans-serif"
72
+ }
73
+ }
74
+ }
75
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pega/cosmos-react-core",
3
- "version": "9.0.0-build.6.4",
3
+ "version": "9.0.0-build.6.6",
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",