commons-shared-web-ui 0.0.32 → 0.0.34
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/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ $default-smart-form-config: (
|
|
|
16
16
|
|
|
17
17
|
// ── Accent colour (flows from app primary; replaces hard-coded blue) ────────
|
|
18
18
|
accent-color: #3B82F6,
|
|
19
|
+
selected-color: #3B82F6,
|
|
19
20
|
|
|
20
21
|
// ── Form container ──────────────────────────────────────────────────────────
|
|
21
22
|
form-bg: #ffffff,
|
|
@@ -252,6 +253,7 @@ $theme-2-smart-form-config: (
|
|
|
252
253
|
|
|
253
254
|
// ── Accent colour ───────────────────────────────────────────────────────────
|
|
254
255
|
accent-color: #818CF8,
|
|
256
|
+
selected-color: #818CF8,
|
|
255
257
|
|
|
256
258
|
// ── Form container ──────────────────────────────────────────────────────────
|
|
257
259
|
form-bg: #0F172A,
|
|
@@ -482,6 +484,9 @@ $theme-2-smart-form-config: (
|
|
|
482
484
|
|
|
483
485
|
// ── Theme 3 — Campus Students (campus red accent) ─────────────────────────────
|
|
484
486
|
$type1-config: map.merge($default-smart-form-config, (
|
|
487
|
+
accent-color: #E63E30,
|
|
488
|
+
selected-color: #E63E30,
|
|
489
|
+
|
|
485
490
|
input-focus-border: #E63E30,
|
|
486
491
|
input-focus-shadow: 0 0 0 3px rgba(230, 62, 48, 0.08),
|
|
487
492
|
chip-selected-bg: #E63E30,
|
|
@@ -553,6 +558,7 @@ $type1-config: map.merge($default-smart-form-config, (
|
|
|
553
558
|
|
|
554
559
|
// Accent colour
|
|
555
560
|
--cc-sf-accent-color: #{map.get($config, accent-color)};
|
|
561
|
+
--cc-sf-selected-color: #{map.get($config, selected-color)};
|
|
556
562
|
|
|
557
563
|
// Form container
|
|
558
564
|
--cc-sf-form-bg: #{map.get($config, form-bg)};
|