@c15t/react 0.0.1-rc.9 → 1.0.1
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/consent-manager-dialog/__tests__/styles.spec.cjs +41 -20
- package/dist/components/consent-manager-dialog/__tests__/styles.spec.js +34 -6
- package/dist/components/consent-manager-dialog/atoms/dialog-card.cjs +67 -32
- package/dist/components/consent-manager-dialog/atoms/dialog-card.d.ts +9 -3
- package/dist/components/consent-manager-dialog/atoms/dialog-card.d.ts.map +1 -1
- package/dist/components/consent-manager-dialog/atoms/dialog-card.js +26 -12
- package/dist/components/consent-manager-dialog/atoms/overlay.cjs +20 -19
- package/dist/components/consent-manager-dialog/atoms/overlay.d.ts.map +1 -1
- package/dist/components/consent-manager-dialog/atoms/overlay.js +7 -4
- package/dist/components/consent-manager-dialog/consent-manager-dialog.cjs +20 -16
- package/dist/components/consent-manager-dialog/consent-manager-dialog.d.ts +0 -2
- package/dist/components/consent-manager-dialog/consent-manager-dialog.d.ts.map +1 -1
- package/dist/components/consent-manager-dialog/consent-manager-dialog.js +10 -2
- package/dist/components/consent-manager-dialog/consent-manager-dialog.module.cjs +12 -10
- package/dist/components/consent-manager-dialog/consent-manager-dialog.module.js +4 -2
- package/dist/components/consent-manager-dialog/consent-manager-dialog_module.css +29 -15
- package/dist/components/consent-manager-dialog/index.cjs +43 -17
- package/dist/components/consent-manager-dialog/theme.cjs +3 -4
- package/dist/components/consent-manager-widget/__tests__/styles.spec.cjs +41 -20
- package/dist/components/consent-manager-widget/__tests__/styles.spec.js +34 -6
- package/dist/components/consent-manager-widget/atoms/accordion.cjs +50 -24
- package/dist/components/consent-manager-widget/atoms/accordion.d.ts.map +1 -1
- package/dist/components/consent-manager-widget/atoms/button.cjs +27 -13
- package/dist/components/consent-manager-widget/atoms/footer.cjs +19 -17
- package/dist/components/consent-manager-widget/atoms/root.cjs +10 -8
- package/dist/components/consent-manager-widget/consent-manager-widget.cjs +11 -22
- package/dist/components/consent-manager-widget/consent-manager-widget.d.ts.map +1 -1
- package/dist/components/consent-manager-widget/consent-manager-widget.js +3 -14
- package/dist/components/consent-manager-widget/consent-manager-widget.module.cjs +12 -13
- package/dist/components/consent-manager-widget/consent-manager-widget.module.js +4 -5
- package/dist/components/consent-manager-widget/consent-manager-widget_module.css +24 -29
- package/dist/components/consent-manager-widget/index.cjs +87 -29
- package/dist/components/consent-manager-widget/theme.cjs +3 -4
- package/dist/components/consent-manager-widget/types.cjs +3 -4
- package/dist/components/cookie-banner/__tests__/cookie-banner.e2e.test.cjs +189 -0
- package/dist/components/cookie-banner/__tests__/cookie-banner.e2e.test.d.ts +2 -0
- package/dist/components/cookie-banner/__tests__/cookie-banner.e2e.test.d.ts.map +1 -0
- package/dist/components/cookie-banner/__tests__/cookie-banner.e2e.test.js +183 -0
- package/dist/components/cookie-banner/__tests__/styles.spec.cjs +35 -20
- package/dist/components/cookie-banner/__tests__/styles.spec.js +28 -6
- package/dist/components/cookie-banner/atoms/overlay.cjs +18 -18
- package/dist/components/cookie-banner/atoms/overlay.d.ts.map +1 -1
- package/dist/components/cookie-banner/atoms/overlay.js +7 -5
- package/dist/components/cookie-banner/atoms/root.cjs +17 -17
- package/dist/components/cookie-banner/atoms/root.d.ts +14 -0
- package/dist/components/cookie-banner/atoms/root.d.ts.map +1 -1
- package/dist/components/cookie-banner/atoms/root.js +6 -4
- package/dist/components/cookie-banner/components.cjs +69 -28
- package/dist/components/cookie-banner/components.d.ts.map +1 -1
- package/dist/components/cookie-banner/components.js +14 -3
- package/dist/components/cookie-banner/cookie-banner.cjs +11 -9
- package/dist/components/cookie-banner/cookie-banner.d.ts +12 -0
- package/dist/components/cookie-banner/cookie-banner.d.ts.map +1 -1
- package/dist/components/cookie-banner/cookie-banner.js +3 -1
- package/dist/components/cookie-banner/cookie-banner.module.cjs +10 -10
- package/dist/components/cookie-banner/cookie-banner.module.js +2 -2
- package/dist/components/cookie-banner/cookie-banner_module.css +7 -7
- package/dist/components/cookie-banner/error-boundary.cjs +8 -9
- package/dist/components/cookie-banner/error-boundary.d.ts +1 -1
- package/dist/components/cookie-banner/error-boundary.js +0 -1
- package/dist/components/cookie-banner/index.cjs +65 -23
- package/dist/components/cookie-banner/theme.cjs +3 -4
- package/dist/components/shared/libs/polymorphic.cjs +3 -4
- package/dist/components/shared/libs/polymorphic.d.ts +1 -7
- package/dist/components/shared/libs/polymorphic.d.ts.map +1 -1
- package/dist/components/shared/libs/recursive-clone-children.cjs +8 -8
- package/dist/components/shared/primitives/box.cjs +10 -10
- package/dist/components/shared/primitives/box.d.ts.map +1 -1
- package/dist/components/shared/primitives/box.js +3 -3
- package/dist/components/shared/primitives/button.cjs +9 -9
- package/dist/components/shared/primitives/button.d.ts +2 -102
- package/dist/components/shared/primitives/button.d.ts.map +1 -1
- package/dist/components/shared/primitives/button.js +2 -2
- package/dist/components/shared/primitives/button.types.cjs +3 -4
- package/dist/components/shared/primitives/button.types.d.ts +1 -8
- package/dist/components/shared/primitives/button.types.d.ts.map +1 -1
- package/dist/components/shared/ui/accordion/accordion.cjs +25 -17
- package/dist/components/shared/ui/accordion/accordion.d.ts.map +1 -1
- package/dist/components/shared/ui/accordion/accordion.js +8 -8
- package/dist/components/shared/ui/accordion/accordion.module.cjs +11 -11
- package/dist/components/shared/ui/accordion/accordion.module.js +3 -3
- package/dist/components/shared/ui/accordion/accordion.types.cjs +3 -4
- package/dist/components/shared/ui/accordion/accordion.types.d.ts +0 -10
- package/dist/components/shared/ui/accordion/accordion.types.d.ts.map +1 -1
- package/dist/components/shared/ui/accordion/accordion_module.css +39 -19
- package/dist/components/shared/ui/accordion/index.cjs +7 -14
- package/dist/components/shared/ui/button/button.cjs +16 -16
- package/dist/components/shared/ui/button/button.d.ts +4 -204
- package/dist/components/shared/ui/button/button.d.ts.map +1 -1
- package/dist/components/shared/ui/button/button.module.cjs +10 -10
- package/dist/components/shared/ui/button/button.module.js +2 -2
- package/dist/components/shared/ui/button/button.types.cjs +3 -4
- package/dist/components/shared/ui/button/button_module.css +40 -19
- package/dist/components/shared/ui/button/index.cjs +7 -14
- package/dist/components/shared/ui/icon.cjs +8 -8
- package/dist/components/shared/ui/icon.d.ts.map +1 -1
- package/dist/components/shared/ui/logo.cjs +43 -54
- package/dist/components/shared/ui/logo.d.ts +3 -2
- package/dist/components/shared/ui/logo.d.ts.map +1 -1
- package/dist/components/shared/ui/logo.js +32 -46
- package/dist/components/shared/ui/switch/index.cjs +7 -14
- package/dist/components/shared/ui/switch/switch.cjs +11 -15
- package/dist/components/shared/ui/switch/switch.d.ts.map +1 -1
- package/dist/components/shared/ui/switch/switch.js +3 -3
- package/dist/components/shared/ui/switch/switch.module.cjs +10 -10
- package/dist/components/shared/ui/switch/switch.module.js +2 -2
- package/dist/components/shared/ui/switch/switch.types.cjs +3 -4
- package/dist/components/shared/ui/switch/switch_module.css +32 -10
- package/dist/context/consent-manager-context.cjs +9 -9
- package/dist/context/consent-manager-context.d.ts +29 -10
- package/dist/context/consent-manager-context.d.ts.map +1 -1
- package/dist/context/consent-manager-context.js +1 -1
- package/dist/context/theme-context.cjs +17 -9
- package/dist/context/theme-context.d.ts +16 -1
- package/dist/context/theme-context.d.ts.map +1 -1
- package/dist/context/theme-context.js +7 -1
- package/dist/hooks/__tests__/use-consent-manager.test.cjs +76 -0
- package/dist/hooks/__tests__/use-consent-manager.test.d.ts +2 -0
- package/dist/hooks/__tests__/use-consent-manager.test.d.ts.map +1 -0
- package/dist/hooks/__tests__/use-consent-manager.test.js +70 -0
- package/dist/hooks/__tests__/use-styles.test.cjs +76 -0
- package/dist/hooks/__tests__/use-styles.test.d.ts +2 -0
- package/dist/hooks/__tests__/use-styles.test.d.ts.map +1 -0
- package/dist/hooks/__tests__/use-styles.test.js +70 -0
- package/dist/hooks/__tests__/use-theme.test.cjs +86 -0
- package/dist/hooks/__tests__/use-theme.test.d.ts +2 -0
- package/dist/hooks/__tests__/use-theme.test.d.ts.map +1 -0
- package/dist/hooks/__tests__/use-theme.test.js +80 -0
- package/dist/hooks/index.cjs +23 -21
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/use-color-scheme.cjs +66 -0
- package/dist/hooks/use-color-scheme.d.ts +16 -0
- package/dist/hooks/use-color-scheme.d.ts.map +1 -0
- package/dist/hooks/use-color-scheme.js +32 -0
- package/dist/hooks/use-consent-manager.cjs +13 -9
- package/dist/hooks/use-consent-manager.d.ts +13 -5
- package/dist/hooks/use-consent-manager.d.ts.map +1 -1
- package/dist/hooks/use-consent-manager.js +5 -1
- package/dist/hooks/use-focus-trap.cjs +76 -0
- package/dist/hooks/use-focus-trap.d.ts +15 -0
- package/dist/hooks/use-focus-trap.d.ts.map +1 -0
- package/dist/hooks/use-focus-trap.js +42 -0
- package/dist/hooks/use-scroll-lock.cjs +55 -0
- package/dist/hooks/use-scroll-lock.d.ts +26 -0
- package/dist/hooks/use-scroll-lock.d.ts.map +1 -0
- package/dist/hooks/use-scroll-lock.js +21 -0
- package/dist/{utils → hooks}/use-styles.cjs +13 -13
- package/dist/{utils → hooks}/use-styles.d.ts.map +1 -1
- package/dist/{utils → hooks}/use-styles.js +5 -5
- package/dist/hooks/use-theme.cjs +10 -12
- package/dist/hooks/use-theme.d.ts.map +1 -1
- package/dist/hooks/use-theme.js +2 -4
- package/dist/hooks/use-translations.cjs +8 -8
- package/dist/index.cjs +66 -30
- package/dist/index.d.ts +9 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -4
- package/dist/providers/__tests__/provider-basic.test.cjs +127 -0
- package/dist/providers/__tests__/provider-basic.test.d.ts +2 -0
- package/dist/providers/__tests__/provider-basic.test.d.ts.map +1 -0
- package/dist/providers/__tests__/provider-basic.test.js +121 -0
- package/dist/providers/__tests__/provider-context.test.cjs +139 -0
- package/dist/providers/__tests__/provider-context.test.d.ts +2 -0
- package/dist/providers/__tests__/provider-context.test.d.ts.map +1 -0
- package/dist/providers/__tests__/provider-context.test.js +133 -0
- package/dist/providers/__tests__/provider-errors.test.cjs +98 -0
- package/dist/providers/__tests__/provider-errors.test.d.ts +2 -0
- package/dist/providers/__tests__/provider-errors.test.d.ts.map +1 -0
- package/dist/providers/__tests__/provider-errors.test.js +92 -0
- package/dist/providers/__tests__/test-helpers.cjs +171 -0
- package/dist/providers/__tests__/test-helpers.d.ts +6 -0
- package/dist/providers/__tests__/test-helpers.d.ts.map +1 -0
- package/dist/providers/__tests__/test-helpers.js +134 -0
- package/dist/providers/consent-manager-provider.cjs +95 -38
- package/dist/providers/consent-manager-provider.d.ts +16 -2
- package/dist/providers/consent-manager-provider.d.ts.map +1 -1
- package/dist/providers/consent-manager-provider.js +87 -30
- package/dist/types/consent-manager.cjs +3 -4
- package/dist/types/consent-manager.d.ts +47 -72
- package/dist/types/consent-manager.d.ts.map +1 -1
- package/dist/types/theme/index.cjs +7 -14
- package/dist/types/theme/style-keys.cjs +3 -4
- package/dist/types/theme/style-types.cjs +3 -4
- package/dist/utils/cn.cjs +10 -16
- package/dist/utils/cn.d.ts +1 -5
- package/dist/utils/cn.d.ts.map +1 -1
- package/dist/utils/cn.js +1 -2
- package/dist/utils/merge-styles.cjs +8 -8
- package/dist/utils/test-helpers.cjs +70 -0
- package/dist/utils/test-helpers.d.ts +30 -0
- package/dist/utils/test-helpers.d.ts.map +1 -0
- package/dist/utils/test-helpers.js +33 -0
- package/dist/utils/translations.cjs +12 -8
- package/package.json +13 -12
- package/dist/components/consent-manager-dialog/__tests__/utils.cjs +0 -68
- package/dist/components/consent-manager-dialog/__tests__/utils.d.ts +0 -13
- package/dist/components/consent-manager-dialog/__tests__/utils.d.ts.map +0 -1
- package/dist/components/consent-manager-dialog/__tests__/utils.js +0 -34
- package/dist/components/consent-manager-widget/__tests__/utils.cjs +0 -68
- package/dist/components/consent-manager-widget/__tests__/utils.d.ts +0 -13
- package/dist/components/consent-manager-widget/__tests__/utils.d.ts.map +0 -1
- package/dist/components/consent-manager-widget/__tests__/utils.js +0 -34
- package/dist/components/consent-manager-widget/atoms/logo.cjs +0 -101
- package/dist/components/consent-manager-widget/atoms/logo.d.ts +0 -8
- package/dist/components/consent-manager-widget/atoms/logo.d.ts.map +0 -1
- package/dist/components/consent-manager-widget/atoms/logo.js +0 -67
- package/dist/components/cookie-banner/__tests__/utils.cjs +0 -67
- package/dist/components/cookie-banner/__tests__/utils.d.ts +0 -13
- package/dist/components/cookie-banner/__tests__/utils.d.ts.map +0 -1
- package/dist/components/cookie-banner/__tests__/utils.js +0 -33
- /package/dist/{utils → hooks}/use-styles.d.ts +0 -0
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
--button-neutral-hover-dark: #363d49;
|
|
10
10
|
--button-neutral-soft: #ebebeb;
|
|
11
11
|
--button-neutral-soft-dark: #414958;
|
|
12
|
+
--button-focus-ring: #476cff;
|
|
13
|
+
--button-focus-ring-dark: #2547d0;
|
|
12
14
|
--button-text: #5c5c5c;
|
|
13
15
|
--button-text-dark: #b3b3b3;
|
|
14
16
|
--button-text-hover: #171717;
|
|
@@ -31,8 +33,10 @@
|
|
|
31
33
|
--button-cursor: pointer;
|
|
32
34
|
--button-shadow: 0px 1px 2px 0px #0e121b0f;
|
|
33
35
|
--button-shadow-dark: 0px 1px 2px 0px #8080800f;
|
|
34
|
-
--button-shadow-primary-focus: 0 0 0
|
|
35
|
-
--button-shadow-neutral-focus: 0 0 0
|
|
36
|
+
--button-shadow-primary-focus: 0 0 0 2px var(--button-focus-ring);
|
|
37
|
+
--button-shadow-neutral-focus: 0 0 0 2px var(--button-focus-ring);
|
|
38
|
+
--button-shadow-primary-focus-dark: 0 0 0 2px var(--button-focus-ring-dark);
|
|
39
|
+
--button-shadow-neutral-focus-dark: 0 0 0 2px var(--button-focus-ring-dark);
|
|
36
40
|
--button-shadow-primary: var(--button-shadow), inset 0 0 0 1px var(--button-primary);
|
|
37
41
|
--button-shadow-primary-dark: var(--button-shadow-dark), inset 0 0 0 1px var(--button-primary-dark);
|
|
38
42
|
--button-shadow-primary-hover: none;
|
|
@@ -59,7 +63,16 @@
|
|
|
59
63
|
display: inline-flex;
|
|
60
64
|
}
|
|
61
65
|
|
|
62
|
-
.
|
|
66
|
+
.c15t-button-YKOgW:focus-visible {
|
|
67
|
+
box-shadow: var(--button-shadow-primary-focus);
|
|
68
|
+
outline: none;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.c15t-dark .c15t-button-YKOgW:focus-visible {
|
|
72
|
+
box-shadow: var(--button-shadow-primary-focus-dark);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.c15t-dark .c15t-button-YKOgW {
|
|
63
76
|
color: var(--button-text-dark);
|
|
64
77
|
}
|
|
65
78
|
|
|
@@ -97,7 +110,11 @@
|
|
|
97
110
|
color: var(--button-background-color);
|
|
98
111
|
}
|
|
99
112
|
|
|
100
|
-
.
|
|
113
|
+
.c15t-button-primary-filled-YzeKk:focus-visible {
|
|
114
|
+
box-shadow: var(--button-shadow-primary-focus);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.c15t-dark .c15t-button-primary-filled-YzeKk {
|
|
101
118
|
background-color: var(--button-primary-dark);
|
|
102
119
|
color: var(--button-background-color-dark);
|
|
103
120
|
}
|
|
@@ -106,7 +123,7 @@
|
|
|
106
123
|
background-color: var(--button-primary-hover);
|
|
107
124
|
}
|
|
108
125
|
|
|
109
|
-
.dark .c15t-button-primary-filled-YzeKk:hover:not(:disabled) {
|
|
126
|
+
.c15t-dark .c15t-button-primary-filled-YzeKk:hover:not(:disabled) {
|
|
110
127
|
background-color: var(--button-primary-hover-dark);
|
|
111
128
|
}
|
|
112
129
|
|
|
@@ -116,7 +133,7 @@
|
|
|
116
133
|
box-shadow: var(--button-shadow-primary);
|
|
117
134
|
}
|
|
118
135
|
|
|
119
|
-
.dark .c15t-button-primary-stroke-TWzjH {
|
|
136
|
+
.c15t-dark .c15t-button-primary-stroke-TWzjH {
|
|
120
137
|
background-color: var(--button-background-color-dark);
|
|
121
138
|
color: var(--button-primary-dark);
|
|
122
139
|
box-shadow: var(--button-shadow-primary-dark);
|
|
@@ -127,7 +144,7 @@
|
|
|
127
144
|
box-shadow: var(--button-shadow-primary-hover);
|
|
128
145
|
}
|
|
129
146
|
|
|
130
|
-
.dark .c15t-button-primary-stroke-TWzjH:hover:not(:disabled) {
|
|
147
|
+
.c15t-dark .c15t-button-primary-stroke-TWzjH:hover:not(:disabled) {
|
|
131
148
|
background-color: var(--button-primary-hover-dark);
|
|
132
149
|
box-shadow: var(--button-shadow-primary-hover-dark);
|
|
133
150
|
}
|
|
@@ -137,7 +154,7 @@
|
|
|
137
154
|
color: var(--button-primary);
|
|
138
155
|
}
|
|
139
156
|
|
|
140
|
-
.dark .c15t-button-primary-lighter-kAHLT {
|
|
157
|
+
.c15t-dark .c15t-button-primary-lighter-kAHLT {
|
|
141
158
|
background-color: color-mix(in srgb, var(--button-primary-dark) 10%, transparent);
|
|
142
159
|
color: var(--button-primary-dark);
|
|
143
160
|
}
|
|
@@ -146,7 +163,7 @@
|
|
|
146
163
|
background-color: color-mix(in srgb, var(--button-primary) 20%, transparent);
|
|
147
164
|
}
|
|
148
165
|
|
|
149
|
-
.dark .c15t-button-primary-lighter-kAHLT:hover:not(:disabled) {
|
|
166
|
+
.c15t-dark .c15t-button-primary-lighter-kAHLT:hover:not(:disabled) {
|
|
150
167
|
background-color: color-mix(in srgb, var(--button-primary-dark) 20%, transparent);
|
|
151
168
|
}
|
|
152
169
|
|
|
@@ -154,7 +171,7 @@
|
|
|
154
171
|
color: var(--button-primary);
|
|
155
172
|
}
|
|
156
173
|
|
|
157
|
-
.dark .c15t-button-primary-ghost-j0CcU {
|
|
174
|
+
.c15t-dark .c15t-button-primary-ghost-j0CcU {
|
|
158
175
|
color: var(--button-primary-dark);
|
|
159
176
|
}
|
|
160
177
|
|
|
@@ -162,7 +179,7 @@
|
|
|
162
179
|
background-color: var(--button-hover-overlay);
|
|
163
180
|
}
|
|
164
181
|
|
|
165
|
-
.dark .c15t-button-primary-ghost-j0CcU:hover:not(:disabled) {
|
|
182
|
+
.c15t-dark .c15t-button-primary-ghost-j0CcU:hover:not(:disabled) {
|
|
166
183
|
background-color: var(--button-hover-overlay-dark);
|
|
167
184
|
}
|
|
168
185
|
|
|
@@ -171,7 +188,11 @@
|
|
|
171
188
|
color: var(--button-background-color);
|
|
172
189
|
}
|
|
173
190
|
|
|
174
|
-
.
|
|
191
|
+
.c15t-button-neutral-filled-uvvkN:focus-visible {
|
|
192
|
+
box-shadow: var(--button-shadow-neutral-focus);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.c15t-dark .c15t-button-neutral-filled-uvvkN {
|
|
175
196
|
background-color: var(--button-neutral-dark);
|
|
176
197
|
color: var(--button-background-color-dark);
|
|
177
198
|
}
|
|
@@ -180,7 +201,7 @@
|
|
|
180
201
|
background-color: var(--button-neutral-hover);
|
|
181
202
|
}
|
|
182
203
|
|
|
183
|
-
.dark .c15t-button-neutral-filled-uvvkN:hover:not(:disabled) {
|
|
204
|
+
.c15t-dark .c15t-button-neutral-filled-uvvkN:hover:not(:disabled) {
|
|
184
205
|
background-color: var(--button-neutral-hover-dark);
|
|
185
206
|
}
|
|
186
207
|
|
|
@@ -189,7 +210,7 @@
|
|
|
189
210
|
box-shadow: var(--button-shadow-neutral);
|
|
190
211
|
}
|
|
191
212
|
|
|
192
|
-
.dark .c15t-button-neutral-stroke-EAzCC {
|
|
213
|
+
.c15t-dark .c15t-button-neutral-stroke-EAzCC {
|
|
193
214
|
background-color: var(--button-background-color-dark);
|
|
194
215
|
box-shadow: var(--button-shadow-neutral-dark);
|
|
195
216
|
}
|
|
@@ -200,7 +221,7 @@
|
|
|
200
221
|
background-color: #0000;
|
|
201
222
|
}
|
|
202
223
|
|
|
203
|
-
.dark .c15t-button-neutral-stroke-EAzCC:hover:not(:disabled) {
|
|
224
|
+
.c15t-dark .c15t-button-neutral-stroke-EAzCC:hover:not(:disabled) {
|
|
204
225
|
box-shadow: var(--button-shadow-neutral-hover-dark);
|
|
205
226
|
color: var(--button-text-hover-dark);
|
|
206
227
|
}
|
|
@@ -210,7 +231,7 @@
|
|
|
210
231
|
color: var(--button-neutral);
|
|
211
232
|
}
|
|
212
233
|
|
|
213
|
-
.dark .c15t-button-neutral-lighter-ANBJI {
|
|
234
|
+
.c15t-dark .c15t-button-neutral-lighter-ANBJI {
|
|
214
235
|
background-color: color-mix(in srgb, var(--button-neutral-dark) 10%, transparent);
|
|
215
236
|
color: var(--button-neutral-dark);
|
|
216
237
|
}
|
|
@@ -219,7 +240,7 @@
|
|
|
219
240
|
background-color: color-mix(in srgb, var(--button-neutral) 20%, transparent);
|
|
220
241
|
}
|
|
221
242
|
|
|
222
|
-
.dark .c15t-button-neutral-lighter-ANBJI:hover:not(:disabled) {
|
|
243
|
+
.c15t-dark .c15t-button-neutral-lighter-ANBJI:hover:not(:disabled) {
|
|
223
244
|
background-color: color-mix(in srgb, var(--button-neutral-dark) 20%, transparent);
|
|
224
245
|
}
|
|
225
246
|
|
|
@@ -227,7 +248,7 @@
|
|
|
227
248
|
color: var(--button-neutral);
|
|
228
249
|
}
|
|
229
250
|
|
|
230
|
-
.dark .c15t-button-neutral-ghost-x4zTl {
|
|
251
|
+
.c15t-dark .c15t-button-neutral-ghost-x4zTl {
|
|
231
252
|
color: var(--button-neutral-dark);
|
|
232
253
|
}
|
|
233
254
|
|
|
@@ -235,7 +256,7 @@
|
|
|
235
256
|
background-color: var(--button-hover-overlay);
|
|
236
257
|
}
|
|
237
258
|
|
|
238
|
-
.dark .c15t-button-neutral-ghost-x4zTl:hover:not(:disabled) {
|
|
259
|
+
.c15t-dark .c15t-button-neutral-ghost-x4zTl:hover:not(:disabled) {
|
|
239
260
|
background-color: var(--button-hover-overlay-dark);
|
|
240
261
|
}
|
|
241
262
|
|
|
@@ -18,12 +18,8 @@ function __webpack_require__(moduleId) {
|
|
|
18
18
|
return module.exports;
|
|
19
19
|
}
|
|
20
20
|
(()=>{
|
|
21
|
-
__webpack_require__.n =
|
|
22
|
-
var getter = module && module.__esModule ?
|
|
23
|
-
return module['default'];
|
|
24
|
-
} : function() {
|
|
25
|
-
return module;
|
|
26
|
-
};
|
|
21
|
+
__webpack_require__.n = (module)=>{
|
|
22
|
+
var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
|
|
27
23
|
__webpack_require__.d(getter, {
|
|
28
24
|
a: getter
|
|
29
25
|
});
|
|
@@ -31,7 +27,7 @@ function __webpack_require__(moduleId) {
|
|
|
31
27
|
};
|
|
32
28
|
})();
|
|
33
29
|
(()=>{
|
|
34
|
-
__webpack_require__.d =
|
|
30
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
35
31
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
36
32
|
enumerable: true,
|
|
37
33
|
get: definition[key]
|
|
@@ -39,12 +35,10 @@ function __webpack_require__(moduleId) {
|
|
|
39
35
|
};
|
|
40
36
|
})();
|
|
41
37
|
(()=>{
|
|
42
|
-
__webpack_require__.o =
|
|
43
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
44
|
-
};
|
|
38
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
45
39
|
})();
|
|
46
40
|
(()=>{
|
|
47
|
-
__webpack_require__.r =
|
|
41
|
+
__webpack_require__.r = (exports1)=>{
|
|
48
42
|
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
49
43
|
value: 'Module'
|
|
50
44
|
});
|
|
@@ -69,8 +63,7 @@ var __webpack_exports__ = {};
|
|
|
69
63
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
70
64
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
71
65
|
})();
|
|
72
|
-
var
|
|
73
|
-
|
|
74
|
-
if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
|
|
66
|
+
for(var __webpack_i__ in __webpack_exports__)exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
67
|
+
Object.defineProperty(exports, '__esModule', {
|
|
75
68
|
value: true
|
|
76
69
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __webpack_require__ = {};
|
|
3
3
|
(()=>{
|
|
4
|
-
__webpack_require__.d =
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
5
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
6
|
enumerable: true,
|
|
7
7
|
get: definition[key]
|
|
@@ -9,12 +9,10 @@ var __webpack_require__ = {};
|
|
|
9
9
|
};
|
|
10
10
|
})();
|
|
11
11
|
(()=>{
|
|
12
|
-
__webpack_require__.o =
|
|
13
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
14
|
-
};
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
15
13
|
})();
|
|
16
14
|
(()=>{
|
|
17
|
-
__webpack_require__.r =
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
18
16
|
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
19
17
|
value: 'Module'
|
|
20
18
|
});
|
|
@@ -50,8 +48,10 @@ const LucideIcon = ({ title, iconPath })=>{
|
|
|
50
48
|
const IconComponent = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)((svgProps, ref)=>Icon(svgProps, ref, title, iconPath));
|
|
51
49
|
return IconComponent;
|
|
52
50
|
};
|
|
53
|
-
|
|
54
|
-
for(var __webpack_i__ in __webpack_exports__)
|
|
55
|
-
|
|
51
|
+
exports.LucideIcon = __webpack_exports__.LucideIcon;
|
|
52
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
53
|
+
"LucideIcon"
|
|
54
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
55
|
+
Object.defineProperty(exports, '__esModule', {
|
|
56
56
|
value: true
|
|
57
57
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../../src/components/shared/ui/icon.tsx"],"names":[],"mappings":"AAAA,OAAO,EACN,KAAK,WAAW,EAChB,KAAK,GAAG,EAER,KAAK,QAAQ,EAEb,MAAM,OAAO,CAAC;AAuBf,KAAK,eAAe,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IAChD,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../../src/components/shared/ui/icon.tsx"],"names":[],"mappings":"AAAA,OAAO,EACN,KAAK,WAAW,EAChB,KAAK,GAAG,EAER,KAAK,QAAQ,EAEb,MAAM,OAAO,CAAC;AAuBf,KAAK,eAAe,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IAChD,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,qBAAqB,eAAe,KAItC,WACxB,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __webpack_require__ = {};
|
|
3
3
|
(()=>{
|
|
4
|
-
__webpack_require__.d =
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
5
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
6
|
enumerable: true,
|
|
7
7
|
get: definition[key]
|
|
@@ -9,12 +9,10 @@ var __webpack_require__ = {};
|
|
|
9
9
|
};
|
|
10
10
|
})();
|
|
11
11
|
(()=>{
|
|
12
|
-
__webpack_require__.o =
|
|
13
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
14
|
-
};
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
15
13
|
})();
|
|
16
14
|
(()=>{
|
|
17
|
-
__webpack_require__.r =
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
18
16
|
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
19
17
|
value: 'Module'
|
|
20
18
|
});
|
|
@@ -26,12 +24,13 @@ var __webpack_require__ = {};
|
|
|
26
24
|
var __webpack_exports__ = {};
|
|
27
25
|
__webpack_require__.r(__webpack_exports__);
|
|
28
26
|
__webpack_require__.d(__webpack_exports__, {
|
|
29
|
-
|
|
27
|
+
C15TIcon: ()=>C15TIcon,
|
|
28
|
+
ConsentLogo: ()=>ConsentLogo
|
|
30
29
|
});
|
|
31
30
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
32
|
-
const
|
|
31
|
+
const C15TIcon = ({ title = 'c15t', titleId = 'c15t', ...props })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("svg", {
|
|
33
32
|
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
-
viewBox: "0 0
|
|
33
|
+
viewBox: "0 0 408 149",
|
|
35
34
|
"aria-labelledby": titleId,
|
|
36
35
|
...props,
|
|
37
36
|
children: [
|
|
@@ -40,62 +39,52 @@ const ConsentManagementIcon = ({ title = 'Consent Management', titleId = 'Consen
|
|
|
40
39
|
children: title
|
|
41
40
|
}),
|
|
42
41
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
strokeLinejoin: "round"
|
|
48
|
-
}),
|
|
49
|
-
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
50
|
-
d: "M62.0082 46.5772L35.7363 72.8491",
|
|
51
|
-
stroke: "currentColor",
|
|
52
|
-
strokeWidth: "13.4728",
|
|
53
|
-
strokeLinecap: "round",
|
|
54
|
-
strokeLinejoin: "round"
|
|
55
|
-
}),
|
|
56
|
-
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
57
|
-
d: "M61.0776 124.531L34.8057 98.2592",
|
|
58
|
-
stroke: "currentColor",
|
|
59
|
-
strokeWidth: "13.4728",
|
|
60
|
-
strokeLinecap: "round",
|
|
61
|
-
strokeLinejoin: "round"
|
|
42
|
+
fill: "currentColor",
|
|
43
|
+
fillRule: "evenodd",
|
|
44
|
+
d: "M74.133 14.042c-5.58 0-10.105 4.524-10.105 10.104 0 5.581 4.524 10.105 10.105 10.105 5.58 0 10.105-4.524 10.105-10.105 0-5.58-4.524-10.104-10.105-10.104ZM50.556 24.146C50.556 11.125 61.112.57 74.133.57 87.154.57 97.71 11.125 97.71 24.146c0 13.022-10.556 23.578-23.577 23.578-4.06 0-7.88-1.027-11.216-2.834L44.354 63.453a23.424 23.424 0 0 1 1.858 4.48h55.843c2.899-9.74 11.921-16.841 22.601-16.841 13.022 0 23.578 10.556 23.578 23.577 0 13.022-10.556 23.578-23.578 23.578-10.68 0-19.702-7.102-22.601-16.841H46.211a23.455 23.455 0 0 1-2.628 5.798l18.015 18.015a23.473 23.473 0 0 1 12.535-3.604c13.021 0 23.577 10.556 23.577 23.577 0 13.022-10.556 23.577-23.577 23.577-13.021 0-23.577-10.555-23.577-23.577 0-3.506.765-6.833 2.138-9.824l-19.26-19.26a23.49 23.49 0 0 1-9.823 2.139C10.588 98.247.032 87.69.032 74.669c0-13.021 10.556-23.577 23.577-23.577 4.061 0 7.882 1.026 11.217 2.834L53.39 35.364a23.473 23.473 0 0 1-2.834-11.218Zm63.996 50.523v.023c.012 5.57 4.531 10.082 10.104 10.082 5.581 0 10.105-4.524 10.105-10.105 0-5.58-4.524-10.104-10.105-10.104-5.573 0-10.092 4.511-10.104 10.082v.022ZM23.61 64.565c-5.58 0-10.104 4.524-10.104 10.104 0 5.58 4.524 10.105 10.104 10.105 5.581 0 10.105-4.524 10.105-10.105 0-5.58-4.524-10.104-10.105-10.104Zm40.418 60.627c0-5.581 4.524-10.104 10.105-10.104 5.58 0 10.105 4.523 10.105 10.104 0 5.581-4.524 10.105-10.105 10.105-5.58 0-10.105-4.524-10.105-10.105Z",
|
|
45
|
+
clipRule: "evenodd"
|
|
62
46
|
}),
|
|
63
47
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
48
|
+
fill: "currentColor",
|
|
49
|
+
d: "M213.869 86.31c0-18.48 14.64-32.04 32.88-32.04 9 0 17.28 3 24.24 10.44l-8.88 9.24c-4.08-4.2-8.88-6.6-15.36-6.6-10.56 0-18.6 8.04-18.6 18.96 0 10.92 8.04 18.959 18.6 18.959 6.48 0 11.28-2.4 15.36-6.6l8.88 9.24c-6.96 7.44-15.24 10.44-24.24 10.44-18.24 0-32.88-13.56-32.88-32.04Zm70.372-39.72h-11.88V33.03h26.88v83.639h-15v-70.08Zm23.468 54.599 12.24-6.96c2.88 6.12 9.24 10.2 16.44 10.2 10.2 0 17.04-6.36 17.04-15.84s-6.48-15.84-16.2-15.84c-4.68 0-9.48 1.44-12.48 4.32l-10.8-2.88 7.8-41.16h40.56v13.56h-29.28l-3 15.12c2.52-1.08 5.52-1.56 8.76-1.56 17.76 0 29.52 11.28 29.52 28.32 0 17.76-12.72 29.64-31.92 29.64-12.6 0-23.52-6.84-28.68-16.92Zm72.386-31.92h-7.8V56.19h7.8V33.03h14.4v23.16h13.08v13.08h-13.08v47.4h-14.4v-47.4Z"
|
|
50
|
+
})
|
|
51
|
+
]
|
|
52
|
+
});
|
|
53
|
+
const ConsentLogo = ({ title = 'Consent', titleId = 'consent-logo', ...props })=>/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("svg", {
|
|
54
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
55
|
+
viewBox: "0 0 595 97",
|
|
56
|
+
"aria-labelledby": titleId,
|
|
57
|
+
className: "consent-logo",
|
|
58
|
+
...props,
|
|
59
|
+
children: [
|
|
60
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("title", {
|
|
61
|
+
id: titleId,
|
|
62
|
+
children: title
|
|
76
63
|
}),
|
|
77
64
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
strokeLinejoin: "round"
|
|
65
|
+
fill: "currentColor",
|
|
66
|
+
fillRule: "evenodd",
|
|
67
|
+
d: "M53.679 70.787c6.17 0 11.172-5.002 11.172-11.172 0-4.009-2.111-7.524-5.283-9.495a23.868 23.868 0 0 1 8.817-1.677c13.217 0 23.93 10.714 23.93 23.93s-10.713 23.93-23.93 23.93c-13.216 0-23.93-10.714-23.93-23.93 0-1.924.227-3.795.656-5.588a11.148 11.148 0 0 0 8.568 4.002Z",
|
|
68
|
+
clipRule: "evenodd"
|
|
83
69
|
}),
|
|
84
70
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
strokeLinejoin: "round"
|
|
71
|
+
fill: "currentColor",
|
|
72
|
+
fillRule: "evenodd",
|
|
73
|
+
d: "M1.118 74.716a68.462 68.462 0 0 1-.098-3.654c0-37.205 30.16-67.365 67.365-67.365s67.365 30.16 67.365 67.365c0 1.226-.032 2.444-.097 3.654h-21.927c.041-.776.061-1.557.061-2.343 0-24.531-19.887-44.418-44.418-44.418-24.532 0-44.418 19.887-44.418 44.418 0 .786.02 1.567.06 2.343H1.118Z",
|
|
74
|
+
clipRule: "evenodd"
|
|
90
75
|
}),
|
|
91
76
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("path", {
|
|
92
|
-
|
|
93
|
-
|
|
77
|
+
fill: "currentColor",
|
|
78
|
+
d: "M566.424 36.6h-7.8V23.52h7.8V.36h14.4v23.16h13.08V36.6h-13.08V84h-14.4V36.6ZM497.535 23.52h14.28v8.64c2.76-5.76 9.6-9.84 18.36-9.84 14.52 0 22.92 9.36 22.92 24.24V84h-14.4V48.6c0-8.16-4.68-13.44-12.84-13.44s-14.04 5.76-14.04 14.04V84h-14.28V23.52ZM429.265 53.76c0-19.44 13.56-31.92 31.68-31.92 18 0 29.88 13.56 29.88 30.48 0 0 0 2.64-.24 5.04h-47.04c.48 9.6 7.56 15.84 18.24 15.84 7.32 0 11.76-2.4 16.32-6.96l8.64 8.4c-7.8 8.28-16.32 10.8-25.44 10.8-18.96 0-32.04-12.24-32.04-31.2v-.48Zm46.92-6.48c0-7.2-6.84-13.2-15.24-13.2-9 0-16.44 5.88-17.04 13.2h32.28ZM385.367 65.52c2.52 4.08 8.159 7.56 15.959 7.56 8.28 0 10.8-3.48 10.8-6.6 0-5.04-7.2-6.24-16.56-9.6-8.88-3.24-14.88-7.8-14.88-17.04 0-11.64 9.84-18.12 21.36-18.12 10.08 0 16.8 3.84 21 9.12l-8.039 8.52c-2.521-3-6.6-5.28-13.2-5.28-4.56 0-7.321 2.16-7.321 5.4 0 4.56 5.041 5.16 15.241 8.88 11.16 3.96 16.199 9.24 16.199 18 0 10.44-7.559 19.2-24.839 19.2-12.6 0-21.241-5.04-24.961-12.24l9.241-7.8ZM315.997 23.52h14.28v8.64c2.76-5.76 9.6-9.84 18.36-9.84 14.52 0 22.92 9.36 22.92 24.24V84h-14.4V48.6c0-8.16-4.68-13.44-12.84-13.44s-14.04 5.76-14.04 14.04V84h-14.28V23.52ZM242.806 53.76c0-18.12 14.64-32.04 33-32.04 18.24 0 33 13.92 33 32.04 0 18.12-14.76 32.04-33 32.04-18.36 0-33-13.92-33-32.04Zm14.28 0c0 10.68 8.04 18.96 18.72 18.96 10.56 0 18.72-8.28 18.72-18.96 0-10.68-8.16-18.96-18.72-18.96-10.68 0-18.72 8.28-18.72 18.96ZM183.387 53.64c0-18.48 14.64-32.04 32.88-32.04 9 0 17.28 3 24.24 10.44l-8.88 9.24c-4.08-4.2-8.88-6.6-15.36-6.6-10.56 0-18.6 8.04-18.6 18.96 0 10.92 8.04 18.96 18.6 18.96 6.48 0 11.28-2.4 15.36-6.6l8.88 9.24c-6.96 7.44-15.24 10.44-24.24 10.44-18.24 0-32.88-13.56-32.88-32.04Z"
|
|
94
79
|
})
|
|
95
80
|
]
|
|
96
81
|
});
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
82
|
+
exports.C15TIcon = __webpack_exports__.C15TIcon;
|
|
83
|
+
exports.ConsentLogo = __webpack_exports__.ConsentLogo;
|
|
84
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
85
|
+
"C15TIcon",
|
|
86
|
+
"ConsentLogo"
|
|
87
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
88
|
+
Object.defineProperty(exports, '__esModule', {
|
|
100
89
|
value: true
|
|
101
90
|
});
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type { SVGProps } from 'react';
|
|
2
|
-
interface
|
|
2
|
+
interface C15TIconProps {
|
|
3
3
|
title?: string;
|
|
4
4
|
titleId?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const C15TIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & C15TIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const ConsentLogo: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & C15TIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
8
9
|
//# sourceMappingURL=logo.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logo.d.ts","sourceRoot":"","sources":["../../../../src/components/shared/ui/logo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,UAAU,
|
|
1
|
+
{"version":3,"file":"logo.d.ts","sourceRoot":"","sources":["../../../../src/components/shared/ui/logo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,UAAU,aAAa;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,QAAQ,GAAI,8BAItB,QAAQ,CAAC,aAAa,CAAC,GAAG,aAAa,4CAmBzC,CAAC;AAGF,eAAO,MAAM,WAAW,GAAI,8BAIzB,QAAQ,CAAC,aAAa,CAAC,GAAG,aAAa,4CA0BzC,CAAC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__ from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const C15TIcon = ({ title = 'c15t', titleId = 'c15t', ...props })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("svg", {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
-
viewBox: "0 0
|
|
4
|
+
viewBox: "0 0 408 149",
|
|
5
5
|
"aria-labelledby": titleId,
|
|
6
6
|
...props,
|
|
7
7
|
children: [
|
|
@@ -10,58 +10,44 @@ const ConsentManagementIcon = ({ title = 'Consent Management', titleId = 'Consen
|
|
|
10
10
|
children: title
|
|
11
11
|
}),
|
|
12
12
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
strokeLinejoin: "round"
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
d: "M74.133 14.042c-5.58 0-10.105 4.524-10.105 10.104 0 5.581 4.524 10.105 10.105 10.105 5.58 0 10.105-4.524 10.105-10.105 0-5.58-4.524-10.104-10.105-10.104ZM50.556 24.146C50.556 11.125 61.112.57 74.133.57 87.154.57 97.71 11.125 97.71 24.146c0 13.022-10.556 23.578-23.577 23.578-4.06 0-7.88-1.027-11.216-2.834L44.354 63.453a23.424 23.424 0 0 1 1.858 4.48h55.843c2.899-9.74 11.921-16.841 22.601-16.841 13.022 0 23.578 10.556 23.578 23.577 0 13.022-10.556 23.578-23.578 23.578-10.68 0-19.702-7.102-22.601-16.841H46.211a23.455 23.455 0 0 1-2.628 5.798l18.015 18.015a23.473 23.473 0 0 1 12.535-3.604c13.021 0 23.577 10.556 23.577 23.577 0 13.022-10.556 23.577-23.577 23.577-13.021 0-23.577-10.555-23.577-23.577 0-3.506.765-6.833 2.138-9.824l-19.26-19.26a23.49 23.49 0 0 1-9.823 2.139C10.588 98.247.032 87.69.032 74.669c0-13.021 10.556-23.577 23.577-23.577 4.061 0 7.882 1.026 11.217 2.834L53.39 35.364a23.473 23.473 0 0 1-2.834-11.218Zm63.996 50.523v.023c.012 5.57 4.531 10.082 10.104 10.082 5.581 0 10.105-4.524 10.105-10.105 0-5.58-4.524-10.104-10.105-10.104-5.573 0-10.092 4.511-10.104 10.082v.022ZM23.61 64.565c-5.58 0-10.104 4.524-10.104 10.104 0 5.58 4.524 10.105 10.104 10.105 5.581 0 10.105-4.524 10.105-10.105 0-5.58-4.524-10.104-10.105-10.104Zm40.418 60.627c0-5.581 4.524-10.104 10.105-10.104 5.58 0 10.105 4.523 10.105 10.104 0 5.581-4.524 10.105-10.105 10.105-5.58 0-10.105-4.524-10.105-10.105Z",
|
|
16
|
+
clipRule: "evenodd"
|
|
18
17
|
}),
|
|
19
18
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
stroke: "currentColor",
|
|
36
|
-
strokeWidth: "13.4728",
|
|
37
|
-
strokeLinecap: "round",
|
|
38
|
-
strokeLinejoin: "round"
|
|
39
|
-
}),
|
|
40
|
-
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
41
|
-
d: "M40.4517 84.9747H107.815",
|
|
42
|
-
stroke: "currentColor",
|
|
43
|
-
strokeWidth: "13.4728",
|
|
44
|
-
strokeLinecap: "round",
|
|
45
|
-
strokeLinejoin: "round"
|
|
19
|
+
fill: "currentColor",
|
|
20
|
+
d: "M213.869 86.31c0-18.48 14.64-32.04 32.88-32.04 9 0 17.28 3 24.24 10.44l-8.88 9.24c-4.08-4.2-8.88-6.6-15.36-6.6-10.56 0-18.6 8.04-18.6 18.96 0 10.92 8.04 18.959 18.6 18.959 6.48 0 11.28-2.4 15.36-6.6l8.88 9.24c-6.96 7.44-15.24 10.44-24.24 10.44-18.24 0-32.88-13.56-32.88-32.04Zm70.372-39.72h-11.88V33.03h26.88v83.639h-15v-70.08Zm23.468 54.599 12.24-6.96c2.88 6.12 9.24 10.2 16.44 10.2 10.2 0 17.04-6.36 17.04-15.84s-6.48-15.84-16.2-15.84c-4.68 0-9.48 1.44-12.48 4.32l-10.8-2.88 7.8-41.16h40.56v13.56h-29.28l-3 15.12c2.52-1.08 5.52-1.56 8.76-1.56 17.76 0 29.52 11.28 29.52 28.32 0 17.76-12.72 29.64-31.92 29.64-12.6 0-23.52-6.84-28.68-16.92Zm72.386-31.92h-7.8V56.19h7.8V33.03h14.4v23.16h13.08v13.08h-13.08v47.4h-14.4v-47.4Z"
|
|
21
|
+
})
|
|
22
|
+
]
|
|
23
|
+
});
|
|
24
|
+
const ConsentLogo = ({ title = 'Consent', titleId = 'consent-logo', ...props })=>/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsxs)("svg", {
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
viewBox: "0 0 595 97",
|
|
27
|
+
"aria-labelledby": titleId,
|
|
28
|
+
className: "consent-logo",
|
|
29
|
+
...props,
|
|
30
|
+
children: [
|
|
31
|
+
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("title", {
|
|
32
|
+
id: titleId,
|
|
33
|
+
children: title
|
|
46
34
|
}),
|
|
47
35
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
strokeLinejoin: "round"
|
|
36
|
+
fill: "currentColor",
|
|
37
|
+
fillRule: "evenodd",
|
|
38
|
+
d: "M53.679 70.787c6.17 0 11.172-5.002 11.172-11.172 0-4.009-2.111-7.524-5.283-9.495a23.868 23.868 0 0 1 8.817-1.677c13.217 0 23.93 10.714 23.93 23.93s-10.713 23.93-23.93 23.93c-13.216 0-23.93-10.714-23.93-23.93 0-1.924.227-3.795.656-5.588a11.148 11.148 0 0 0 8.568 4.002Z",
|
|
39
|
+
clipRule: "evenodd"
|
|
53
40
|
}),
|
|
54
41
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
strokeLinejoin: "round"
|
|
42
|
+
fill: "currentColor",
|
|
43
|
+
fillRule: "evenodd",
|
|
44
|
+
d: "M1.118 74.716a68.462 68.462 0 0 1-.098-3.654c0-37.205 30.16-67.365 67.365-67.365s67.365 30.16 67.365 67.365c0 1.226-.032 2.444-.097 3.654h-21.927c.041-.776.061-1.557.061-2.343 0-24.531-19.887-44.418-44.418-44.418-24.532 0-44.418 19.887-44.418 44.418 0 .786.02 1.567.06 2.343H1.118Z",
|
|
45
|
+
clipRule: "evenodd"
|
|
60
46
|
}),
|
|
61
47
|
/*#__PURE__*/ (0, __WEBPACK_EXTERNAL_MODULE_react_jsx_runtime_225474f2__.jsx)("path", {
|
|
62
|
-
|
|
63
|
-
|
|
48
|
+
fill: "currentColor",
|
|
49
|
+
d: "M566.424 36.6h-7.8V23.52h7.8V.36h14.4v23.16h13.08V36.6h-13.08V84h-14.4V36.6ZM497.535 23.52h14.28v8.64c2.76-5.76 9.6-9.84 18.36-9.84 14.52 0 22.92 9.36 22.92 24.24V84h-14.4V48.6c0-8.16-4.68-13.44-12.84-13.44s-14.04 5.76-14.04 14.04V84h-14.28V23.52ZM429.265 53.76c0-19.44 13.56-31.92 31.68-31.92 18 0 29.88 13.56 29.88 30.48 0 0 0 2.64-.24 5.04h-47.04c.48 9.6 7.56 15.84 18.24 15.84 7.32 0 11.76-2.4 16.32-6.96l8.64 8.4c-7.8 8.28-16.32 10.8-25.44 10.8-18.96 0-32.04-12.24-32.04-31.2v-.48Zm46.92-6.48c0-7.2-6.84-13.2-15.24-13.2-9 0-16.44 5.88-17.04 13.2h32.28ZM385.367 65.52c2.52 4.08 8.159 7.56 15.959 7.56 8.28 0 10.8-3.48 10.8-6.6 0-5.04-7.2-6.24-16.56-9.6-8.88-3.24-14.88-7.8-14.88-17.04 0-11.64 9.84-18.12 21.36-18.12 10.08 0 16.8 3.84 21 9.12l-8.039 8.52c-2.521-3-6.6-5.28-13.2-5.28-4.56 0-7.321 2.16-7.321 5.4 0 4.56 5.041 5.16 15.241 8.88 11.16 3.96 16.199 9.24 16.199 18 0 10.44-7.559 19.2-24.839 19.2-12.6 0-21.241-5.04-24.961-12.24l9.241-7.8ZM315.997 23.52h14.28v8.64c2.76-5.76 9.6-9.84 18.36-9.84 14.52 0 22.92 9.36 22.92 24.24V84h-14.4V48.6c0-8.16-4.68-13.44-12.84-13.44s-14.04 5.76-14.04 14.04V84h-14.28V23.52ZM242.806 53.76c0-18.12 14.64-32.04 33-32.04 18.24 0 33 13.92 33 32.04 0 18.12-14.76 32.04-33 32.04-18.36 0-33-13.92-33-32.04Zm14.28 0c0 10.68 8.04 18.96 18.72 18.96 10.56 0 18.72-8.28 18.72-18.96 0-10.68-8.16-18.96-18.72-18.96-10.68 0-18.72 8.28-18.72 18.96ZM183.387 53.64c0-18.48 14.64-32.04 32.88-32.04 9 0 17.28 3 24.24 10.44l-8.88 9.24c-4.08-4.2-8.88-6.6-15.36-6.6-10.56 0-18.6 8.04-18.6 18.96 0 10.92 8.04 18.96 18.6 18.96 6.48 0 11.28-2.4 15.36-6.6l8.88 9.24c-6.96 7.44-15.24 10.44-24.24 10.44-18.24 0-32.88-13.56-32.88-32.04Z"
|
|
64
50
|
})
|
|
65
51
|
]
|
|
66
52
|
});
|
|
67
|
-
export {
|
|
53
|
+
export { C15TIcon, ConsentLogo };
|
|
@@ -18,12 +18,8 @@ function __webpack_require__(moduleId) {
|
|
|
18
18
|
return module.exports;
|
|
19
19
|
}
|
|
20
20
|
(()=>{
|
|
21
|
-
__webpack_require__.n =
|
|
22
|
-
var getter = module && module.__esModule ?
|
|
23
|
-
return module['default'];
|
|
24
|
-
} : function() {
|
|
25
|
-
return module;
|
|
26
|
-
};
|
|
21
|
+
__webpack_require__.n = (module)=>{
|
|
22
|
+
var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
|
|
27
23
|
__webpack_require__.d(getter, {
|
|
28
24
|
a: getter
|
|
29
25
|
});
|
|
@@ -31,7 +27,7 @@ function __webpack_require__(moduleId) {
|
|
|
31
27
|
};
|
|
32
28
|
})();
|
|
33
29
|
(()=>{
|
|
34
|
-
__webpack_require__.d =
|
|
30
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
35
31
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
36
32
|
enumerable: true,
|
|
37
33
|
get: definition[key]
|
|
@@ -39,12 +35,10 @@ function __webpack_require__(moduleId) {
|
|
|
39
35
|
};
|
|
40
36
|
})();
|
|
41
37
|
(()=>{
|
|
42
|
-
__webpack_require__.o =
|
|
43
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
44
|
-
};
|
|
38
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
45
39
|
})();
|
|
46
40
|
(()=>{
|
|
47
|
-
__webpack_require__.r =
|
|
41
|
+
__webpack_require__.r = (exports1)=>{
|
|
48
42
|
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
49
43
|
value: 'Module'
|
|
50
44
|
});
|
|
@@ -69,8 +63,7 @@ var __webpack_exports__ = {};
|
|
|
69
63
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
70
64
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
71
65
|
})();
|
|
72
|
-
var
|
|
73
|
-
|
|
74
|
-
if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, '__esModule', {
|
|
66
|
+
for(var __webpack_i__ in __webpack_exports__)exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
67
|
+
Object.defineProperty(exports, '__esModule', {
|
|
75
68
|
value: true
|
|
76
69
|
});
|