@windstream/react-shared-components 0.0.57 → 0.0.59
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/dist/contentful/index.d.ts +15 -2
- package/dist/contentful/index.esm.js +1 -1
- package/dist/contentful/index.esm.js.map +1 -1
- package/dist/contentful/index.js +1 -1
- package/dist/contentful/index.js.map +1 -1
- package/dist/core.d.ts +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/src/components/accordion/index.tsx +61 -49
- package/src/components/accordion/types.ts +1 -0
- package/src/components/material-icon/constants.ts +1 -1
- package/src/contentful/blocks/accordion/index.tsx +1 -0
- package/src/contentful/blocks/cards/testimonial-card/index.tsx +86 -0
- package/src/contentful/blocks/cards/testimonial-card/types.tsx +10 -0
- package/src/contentful/index.ts +54 -51
- package/src/styles/globals.css +17 -17
package/src/styles/globals.css
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
/* Color tokens - Border */
|
|
23
23
|
--color-border: #e6e6e6;
|
|
24
24
|
--color-border-brand: #24a76a;
|
|
25
|
-
--color-border-critical: #
|
|
25
|
+
--color-border-critical: #d40000;
|
|
26
26
|
--color-border-critical-secondary: #f0a7a7;
|
|
27
27
|
--color-border-disabled: #f2f2f4;
|
|
28
28
|
--color-border-focus: #24a76a;
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
--color-border-secondary-on-bg-fill: #949494;
|
|
36
36
|
--color-border-success: #24a76a;
|
|
37
37
|
--color-border-tertiary: #cecece;
|
|
38
|
-
--color-border-accent: #
|
|
38
|
+
--color-border-accent: #f5ff1e;
|
|
39
39
|
|
|
40
40
|
/* Color tokens - Icon */
|
|
41
41
|
--color-icon-brand: #24a76a;
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
--color-toggle-bg-fill: #ffffff;
|
|
91
91
|
--color-toggle-bg-surface-active: #24a76a;
|
|
92
92
|
--color-toggle-bg-surface-inactive: #949494;
|
|
93
|
-
--color-toggle-bg-surface-disabled: #
|
|
93
|
+
--color-toggle-bg-surface-disabled: #e6e6e6;
|
|
94
94
|
|
|
95
95
|
/* Color tokens - Tooltip */
|
|
96
96
|
--color-tooltip-bg: #757575;
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
--color-text-link-inverse: #ffffff;
|
|
161
161
|
--color-text-secondary: #464646;
|
|
162
162
|
--color-text-success: #1b8352;
|
|
163
|
-
--color-text-accent-on-bg-inverse: #
|
|
163
|
+
--color-text-accent-on-bg-inverse: #f5ff1e;
|
|
164
164
|
|
|
165
165
|
/* Border radius tokens - Default (Residential) */
|
|
166
166
|
--border-radius-2-5: 10px;
|
|
@@ -245,29 +245,29 @@
|
|
|
245
245
|
|
|
246
246
|
[data-theme="business-cart"] {
|
|
247
247
|
/* Border colors */
|
|
248
|
-
--color-border-brand: #
|
|
249
|
-
--color-border-focus: #
|
|
248
|
+
--color-border-brand: #0393ba;
|
|
249
|
+
--color-border-focus: #0393ba;
|
|
250
250
|
|
|
251
251
|
/* Icon colors */
|
|
252
|
-
--color-icon-brand: #
|
|
252
|
+
--color-icon-brand: #0393ba;
|
|
253
253
|
|
|
254
254
|
/* Input colors */
|
|
255
|
-
--color-input-border-selected: #
|
|
256
|
-
|
|
255
|
+
--color-input-border-selected: #07b2e2;
|
|
256
|
+
|
|
257
257
|
/* Toggle colors */
|
|
258
|
-
--color-toggle-bg-surface-active: #
|
|
259
|
-
|
|
258
|
+
--color-toggle-bg-surface-active: #0393ba;
|
|
259
|
+
|
|
260
260
|
/* Background fill colors */
|
|
261
|
-
--color-bg-fill-brand: #
|
|
262
|
-
--color-bg-fill-brand-hover: #
|
|
261
|
+
--color-bg-fill-brand: #0393ba;
|
|
262
|
+
--color-bg-fill-brand-hover: #07b2e2;
|
|
263
263
|
--color-bg-fill-brand-active: #027693;
|
|
264
|
-
--color-bg-fill-brand-selected: #
|
|
264
|
+
--color-bg-fill-brand-selected: #0393ba;
|
|
265
265
|
|
|
266
|
-
--color-bg-fill-brand-supporting: #
|
|
266
|
+
--color-bg-fill-brand-supporting: #26b170;
|
|
267
267
|
|
|
268
268
|
/* Text colors */
|
|
269
|
-
--color-text-brand: #
|
|
270
|
-
--color-text-hover: #027693;
|
|
269
|
+
--color-text-brand: #0393ba;
|
|
270
|
+
--color-text-hover: #027693;
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
/* Base styles for components */
|