@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zap-wunschlachen/wl-shared-components",
3
- "version": "1.0.43",
3
+ "version": "1.0.45",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
package/src/index.ts CHANGED
@@ -32,3 +32,6 @@ export * from './components';
32
32
 
33
33
  // Export utilities
34
34
  export * from './utils';
35
+
36
+ // Export types
37
+ export * from './types';
@@ -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