@zap-wunschlachen/wl-shared-components 1.0.43 → 1.0.45
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/package.json +1 -1
- package/src/index.ts +3 -0
- package/src/utils/index.ts +8 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
package/src/utils/index.ts
CHANGED
|
@@ -434,6 +434,14 @@ if (typeof document !== 'undefined') {
|
|
|
434
434
|
root.style.setProperty('--accordion-content-color', siteColors['accordion_content_color']);
|
|
435
435
|
root.style.setProperty('--accordion-divider-color', siteColors['accordion_divider_color']);
|
|
436
436
|
root.style.setProperty('--accordion-icon-color', siteColors['accordion_icon_color']);
|
|
437
|
+
|
|
438
|
+
// Appointment card colors
|
|
439
|
+
root.style.setProperty('--appointment_card_header_default_bg', siteColors['appointment_card_header_default_bg']);
|
|
440
|
+
root.style.setProperty('--appointment_card_header_text', siteColors['appointment_card_header_text']);
|
|
441
|
+
root.style.setProperty('--appointment_card_default_bg', siteColors['appointment_card_default_bg']);
|
|
442
|
+
root.style.setProperty('--appointment_card_title', siteColors['appointment_card_title']);
|
|
443
|
+
root.style.setProperty('--appointment_card_text', siteColors['appointment_card_text']);
|
|
444
|
+
root.style.setProperty('--appointment_card_delimiter', siteColors['appointment_card_delimiter']);
|
|
437
445
|
}
|
|
438
446
|
|
|
439
447
|
// Function to set domain for testing purposes
|