@prijsvrijtechsupport/ui 0.0.44 → 0.0.46
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/components/blogWidget/styles.css +1 -0
- package/dist/components/calendar/styles.css +11 -0
- package/dist/dist/index.css +18 -0
- package/dist/dist/index.css.map +1 -1
- package/dist/index.cjs +232 -211
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +232 -211
- package/dist/index.js.map +1 -1
- package/dist/styles/utilities.css +1 -0
- package/dist/styles/variables.css +6 -0
- package/dist/utils/storybookIcons.d.ts +1 -1
- package/package.json +1 -1
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
@import '../components/quantityButtons/styles.css';
|
|
35
35
|
@import '../components/matrixTable/styles.css';
|
|
36
36
|
@import '../components/pageNavigation/styles.css';
|
|
37
|
+
@import '../components/calendar/styles.css';
|
|
37
38
|
|
|
38
39
|
@utility transition-max-height {
|
|
39
40
|
transition: max-height 0.3s ease-in-out;
|
|
@@ -328,6 +328,7 @@
|
|
|
328
328
|
--fontFamily-price-check-price: "Hermes Maia T4", sans-serif;
|
|
329
329
|
--fontFamily-blog-widget: "Hermes Maia T4", sans-serif;
|
|
330
330
|
--fontFamily-blog-widget-date: var(--font-open-sans), sans-serif;
|
|
331
|
+
--color-blog-widget-date: #80c8f8;
|
|
331
332
|
|
|
332
333
|
--fontWeight-price-text: 400;
|
|
333
334
|
--price-background: var(--prijsvrij-alternative);
|
|
@@ -398,6 +399,8 @@
|
|
|
398
399
|
--price-minus-bottom: 10px;
|
|
399
400
|
--price-price-margin-top: 0;
|
|
400
401
|
|
|
402
|
+
--color-calendar-selected: #029a02;
|
|
403
|
+
|
|
401
404
|
--toggle-active-background-color: var(--prijsvrij-primary);
|
|
402
405
|
--toggle-inactive-background-color: #EFF8FE;
|
|
403
406
|
--toggle-active-color: white;
|
|
@@ -608,6 +611,7 @@
|
|
|
608
611
|
--fontFamily-price-check-price: var(--font-titillium-web), sans-serif;
|
|
609
612
|
--fontFamily-blog-widget: var(--font-open-sans), sans-serif;
|
|
610
613
|
--fontFamily-blog-widget-date: var(--font-open-sans), sans-serif;
|
|
614
|
+
--color-blog-widget-date: #80c8f8;
|
|
611
615
|
|
|
612
616
|
--fontWeight-price-text: 600;
|
|
613
617
|
--price-background: transparent;
|
|
@@ -622,6 +626,8 @@
|
|
|
622
626
|
--price-minus-bottom: 10px;
|
|
623
627
|
--price-price-margin-top: -8px;
|
|
624
628
|
|
|
629
|
+
--color-calendar-selected: #029a02;
|
|
630
|
+
|
|
625
631
|
--toggle-active-background-color: var(--dreizen-secondary);
|
|
626
632
|
--toggle-inactive-background-color: #ff780133;
|
|
627
633
|
--toggle-active-color: white;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const iconOptions: string[];
|
|
2
|
-
export declare const getIcon: (iconName: string) => React.ReactNode;
|
|
2
|
+
export declare const getIcon: (iconName: string, color?: string) => React.ReactNode;
|