@c15t/svelte 3.0.0-alpha.0
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/AGENTS.md +88 -0
- package/README.md +136 -0
- package/SKILL.md +14 -0
- package/dist/actions/focus-trap.d.ts +8 -0
- package/dist/actions/focus-trap.js +23 -0
- package/dist/actions/portal.d.ts +8 -0
- package/dist/actions/portal.js +39 -0
- package/dist/actions/scroll-lock.d.ts +8 -0
- package/dist/actions/scroll-lock.js +23 -0
- package/dist/components/action-button.svelte +119 -0
- package/dist/components/action-button.svelte.d.ts +18 -0
- package/dist/components/branding.svelte +139 -0
- package/dist/components/branding.svelte.d.ts +13 -0
- package/dist/components/consent-dev-tools.svelte +58 -0
- package/dist/components/consent-dev-tools.svelte.d.ts +4 -0
- package/dist/components/frame.svelte +95 -0
- package/dist/components/frame.svelte.d.ts +12 -0
- package/dist/components/iab-panel.svelte +542 -0
- package/dist/components/iab-panel.svelte.d.ts +16 -0
- package/dist/components/iab-prompt.svelte +304 -0
- package/dist/components/iab-prompt.svelte.d.ts +14 -0
- package/dist/components/iab-purpose-item.svelte +511 -0
- package/dist/components/iab-purpose-item.svelte.d.ts +26 -0
- package/dist/components/iab-stack-item.svelte +146 -0
- package/dist/components/iab-stack-item.svelte.d.ts +19 -0
- package/dist/components/iab-vendor-list.svelte +900 -0
- package/dist/components/iab-vendor-list.svelte.d.ts +19 -0
- package/dist/components/icons/c15-t-icon-only.svelte +27 -0
- package/dist/components/icons/c15-t-icon-only.svelte.d.ts +9 -0
- package/dist/components/icons/chevron-down-icon.svelte +30 -0
- package/dist/components/icons/chevron-down-icon.svelte.d.ts +10 -0
- package/dist/components/icons/chevron-right-icon.svelte +36 -0
- package/dist/components/icons/chevron-right-icon.svelte.d.ts +12 -0
- package/dist/components/icons/close-icon.svelte +40 -0
- package/dist/components/icons/close-icon.svelte.d.ts +10 -0
- package/dist/components/icons/consent-icon-only.svelte +36 -0
- package/dist/components/icons/consent-icon-only.svelte.d.ts +9 -0
- package/dist/components/icons/external-link-icon.svelte +30 -0
- package/dist/components/icons/external-link-icon.svelte.d.ts +8 -0
- package/dist/components/icons/globe-icon.svelte +39 -0
- package/dist/components/icons/globe-icon.svelte.d.ts +9 -0
- package/dist/components/icons/info-icon.svelte +42 -0
- package/dist/components/icons/info-icon.svelte.d.ts +9 -0
- package/dist/components/icons/inth-logo.svelte +38 -0
- package/dist/components/icons/inth-logo.svelte.d.ts +9 -0
- package/dist/components/icons/layers-icon.svelte +25 -0
- package/dist/components/icons/layers-icon.svelte.d.ts +8 -0
- package/dist/components/icons/legitimate-interest-icon.svelte +29 -0
- package/dist/components/icons/legitimate-interest-icon.svelte.d.ts +10 -0
- package/dist/components/icons/lock-icon.svelte +31 -0
- package/dist/components/icons/lock-icon.svelte.d.ts +8 -0
- package/dist/components/icons/search-icon.svelte +33 -0
- package/dist/components/icons/search-icon.svelte.d.ts +8 -0
- package/dist/components/inline-legal-links.svelte +95 -0
- package/dist/components/inline-legal-links.svelte.d.ts +10 -0
- package/dist/components/manager-provider.svelte +459 -0
- package/dist/components/manager-provider.svelte.d.ts +27 -0
- package/dist/components/overlay.svelte +79 -0
- package/dist/components/overlay.svelte.d.ts +7 -0
- package/dist/components/panel-link.svelte +33 -0
- package/dist/components/panel-link.svelte.d.ts +10 -0
- package/dist/components/panel-trigger.svelte +237 -0
- package/dist/components/panel-trigger.svelte.d.ts +16 -0
- package/dist/components/panel.svelte +258 -0
- package/dist/components/panel.svelte.d.ts +22 -0
- package/dist/components/policy-actions-renderer.svelte +79 -0
- package/dist/components/policy-actions-renderer.svelte.d.ts +19 -0
- package/dist/components/preferences.svelte +320 -0
- package/dist/components/preferences.svelte.d.ts +8 -0
- package/dist/components/prompt.svelte +514 -0
- package/dist/components/prompt.svelte.d.ts +43 -0
- package/dist/context.svelte.d.ts +125 -0
- package/dist/context.svelte.js +354 -0
- package/dist/devtools-options.d.ts +7 -0
- package/dist/devtools-options.js +1 -0
- package/dist/devtools.d.ts +9 -0
- package/dist/devtools.js +7 -0
- package/dist/headless.d.ts +10 -0
- package/dist/headless.js +7 -0
- package/dist/iab/styles.css +11 -0
- package/dist/iab-loader.d.ts +30 -0
- package/dist/iab-loader.js +33 -0
- package/dist/iab-translations.d.ts +84 -0
- package/dist/iab-translations.js +45 -0
- package/dist/iab-types.d.ts +62 -0
- package/dist/iab-types.js +43 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.js +21 -0
- package/dist/kit/app.d.ts +35 -0
- package/dist/kit/handle.d.ts +34 -0
- package/dist/kit/handle.js +87 -0
- package/dist/kit/index.d.ts +30 -0
- package/dist/kit/index.js +5 -0
- package/dist/kit/load-consent.d.ts +57 -0
- package/dist/kit/load-consent.js +144 -0
- package/dist/kit/routes.d.ts +46 -0
- package/dist/kit/routes.js +203 -0
- package/dist/kit/types.d.ts +56 -0
- package/dist/kit/types.js +1 -0
- package/dist/primitives/accordion/accordion-item-content.svelte +35 -0
- package/dist/primitives/accordion/accordion-item-content.svelte.d.ts +9 -0
- package/dist/primitives/accordion/accordion-item-trigger.svelte +54 -0
- package/dist/primitives/accordion/accordion-item-trigger.svelte.d.ts +10 -0
- package/dist/primitives/accordion/accordion-item.svelte +61 -0
- package/dist/primitives/accordion/accordion-item.svelte.d.ts +11 -0
- package/dist/primitives/accordion/accordion-root.svelte +61 -0
- package/dist/primitives/accordion/accordion-root.svelte.d.ts +13 -0
- package/dist/primitives/accordion/context.d.ts +18 -0
- package/dist/primitives/accordion/context.js +23 -0
- package/dist/primitives/accordion/index.d.ts +29 -0
- package/dist/primitives/accordion/index.js +11 -0
- package/dist/primitives/collapsible/collapsible-content.svelte +36 -0
- package/dist/primitives/collapsible/collapsible-content.svelte.d.ts +9 -0
- package/dist/primitives/collapsible/collapsible-indicator.svelte +29 -0
- package/dist/primitives/collapsible/collapsible-indicator.svelte.d.ts +9 -0
- package/dist/primitives/collapsible/collapsible-root.svelte +70 -0
- package/dist/primitives/collapsible/collapsible-root.svelte.d.ts +11 -0
- package/dist/primitives/collapsible/collapsible-trigger.svelte +52 -0
- package/dist/primitives/collapsible/collapsible-trigger.svelte.d.ts +10 -0
- package/dist/primitives/collapsible/context.d.ts +10 -0
- package/dist/primitives/collapsible/context.js +12 -0
- package/dist/primitives/collapsible/index.d.ts +26 -0
- package/dist/primitives/collapsible/index.js +11 -0
- package/dist/primitives/dialog/context.d.ts +14 -0
- package/dist/primitives/dialog/context.js +12 -0
- package/dist/primitives/dialog/dialog-backdrop.svelte +39 -0
- package/dist/primitives/dialog/dialog-backdrop.svelte.d.ts +7 -0
- package/dist/primitives/dialog/dialog-close-trigger.svelte +48 -0
- package/dist/primitives/dialog/dialog-close-trigger.svelte.d.ts +11 -0
- package/dist/primitives/dialog/dialog-content.svelte +81 -0
- package/dist/primitives/dialog/dialog-content.svelte.d.ts +9 -0
- package/dist/primitives/dialog/dialog-description.svelte +28 -0
- package/dist/primitives/dialog/dialog-description.svelte.d.ts +9 -0
- package/dist/primitives/dialog/dialog-positioner.svelte +33 -0
- package/dist/primitives/dialog/dialog-positioner.svelte.d.ts +9 -0
- package/dist/primitives/dialog/dialog-root.svelte +117 -0
- package/dist/primitives/dialog/dialog-root.svelte.d.ts +14 -0
- package/dist/primitives/dialog/dialog-title.svelte +28 -0
- package/dist/primitives/dialog/dialog-title.svelte.d.ts +9 -0
- package/dist/primitives/dialog/index.d.ts +50 -0
- package/dist/primitives/dialog/index.js +19 -0
- package/dist/primitives/index.d.ts +7 -0
- package/dist/primitives/index.js +7 -0
- package/dist/primitives/portal/index.d.ts +4 -0
- package/dist/primitives/portal/index.js +2 -0
- package/dist/primitives/portal/portal.svelte +23 -0
- package/dist/primitives/portal/portal.svelte.d.ts +9 -0
- package/dist/primitives/preference-item/context.d.ts +11 -0
- package/dist/primitives/preference-item/context.js +12 -0
- package/dist/primitives/preference-item/index.d.ts +54 -0
- package/dist/primitives/preference-item/index.js +21 -0
- package/dist/primitives/preference-item/preference-item-auxiliary.svelte +33 -0
- package/dist/primitives/preference-item/preference-item-auxiliary.svelte.d.ts +9 -0
- package/dist/primitives/preference-item/preference-item-content.svelte +68 -0
- package/dist/primitives/preference-item/preference-item-content.svelte.d.ts +14 -0
- package/dist/primitives/preference-item/preference-item-control.svelte +33 -0
- package/dist/primitives/preference-item/preference-item-control.svelte.d.ts +9 -0
- package/dist/primitives/preference-item/preference-item-header.svelte +33 -0
- package/dist/primitives/preference-item/preference-item-header.svelte.d.ts +9 -0
- package/dist/primitives/preference-item/preference-item-leading.svelte +33 -0
- package/dist/primitives/preference-item/preference-item-leading.svelte.d.ts +9 -0
- package/dist/primitives/preference-item/preference-item-meta.svelte +33 -0
- package/dist/primitives/preference-item/preference-item-meta.svelte.d.ts +9 -0
- package/dist/primitives/preference-item/preference-item-root.svelte +82 -0
- package/dist/primitives/preference-item/preference-item-root.svelte.d.ts +12 -0
- package/dist/primitives/preference-item/preference-item-title.svelte +33 -0
- package/dist/primitives/preference-item/preference-item-title.svelte.d.ts +9 -0
- package/dist/primitives/preference-item/preference-item-trigger.svelte +62 -0
- package/dist/primitives/preference-item/preference-item-trigger.svelte.d.ts +10 -0
- package/dist/primitives/switch/context.d.ts +7 -0
- package/dist/primitives/switch/context.js +12 -0
- package/dist/primitives/switch/index.d.ts +25 -0
- package/dist/primitives/switch/index.js +11 -0
- package/dist/primitives/switch/switch-control.svelte +21 -0
- package/dist/primitives/switch/switch-control.svelte.d.ts +9 -0
- package/dist/primitives/switch/switch-hidden-input.svelte +31 -0
- package/dist/primitives/switch/switch-hidden-input.svelte.d.ts +8 -0
- package/dist/primitives/switch/switch-root.svelte +86 -0
- package/dist/primitives/switch/switch-root.svelte.d.ts +12 -0
- package/dist/primitives/switch/switch-thumb.svelte +14 -0
- package/dist/primitives/switch/switch-thumb.svelte.d.ts +7 -0
- package/dist/primitives/tabs/context.d.ts +11 -0
- package/dist/primitives/tabs/context.js +12 -0
- package/dist/primitives/tabs/index.d.ts +32 -0
- package/dist/primitives/tabs/index.js +11 -0
- package/dist/primitives/tabs/tabs-content.svelte +45 -0
- package/dist/primitives/tabs/tabs-content.svelte.d.ts +11 -0
- package/dist/primitives/tabs/tabs-list.svelte +38 -0
- package/dist/primitives/tabs/tabs-list.svelte.d.ts +10 -0
- package/dist/primitives/tabs/tabs-root.svelte +67 -0
- package/dist/primitives/tabs/tabs-root.svelte.d.ts +14 -0
- package/dist/primitives/tabs/tabs-trigger.svelte +108 -0
- package/dist/primitives/tabs/tabs-trigger.svelte.d.ts +11 -0
- package/dist/server/headers.d.ts +13 -0
- package/dist/server/headers.js +37 -0
- package/dist/server/index.d.ts +8 -0
- package/dist/server/index.js +116 -0
- package/dist/server/normalize-url.d.ts +23 -0
- package/dist/server/normalize-url.js +46 -0
- package/dist/server/types.d.ts +25 -0
- package/dist/server/types.js +1 -0
- package/dist/styles.css +10 -0
- package/dist/transports/offline.d.ts +14 -0
- package/dist/transports/offline.js +22 -0
- package/dist/types.d.ts +70 -0
- package/dist/types.js +1 -0
- package/dist/use-banner-visibility.svelte.d.ts +25 -0
- package/dist/use-banner-visibility.svelte.js +108 -0
- package/dist/utils.d.ts +25 -0
- package/dist/utils.js +32 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +2 -0
- package/docs/README.md +88 -0
- package/docs/assets/v3/brand-bar.png +0 -0
- package/docs/assets/v3/brand-card.png +0 -0
- package/docs/assets/v3/choice-wall.png +0 -0
- package/docs/assets/v3/mobile-card.png +0 -0
- package/docs/assets/v3/preferences.png +0 -0
- package/docs/customization/overview.md +45 -0
- package/docs/customization/recipes.md +79 -0
- package/docs/customization/slots.md +55 -0
- package/docs/customization/tokens.md +76 -0
- package/docs/customization/translations.md +49 -0
- package/docs/frameworks/svelte/quickstart.md +133 -0
- package/docs/frameworks/sveltekit/quickstart.md +144 -0
- package/docs/guides/consent-state.md +60 -0
- package/docs/guides/data-fetching.md +163 -0
- package/docs/guides/deployment-modes.md +63 -0
- package/docs/guides/troubleshooting.md +68 -0
- package/docs/guides/verify-consent.md +62 -0
- package/docs/integrations/adobe-analytics.md +294 -0
- package/docs/integrations/ahrefs-analytics.md +291 -0
- package/docs/integrations/amplitude.md +292 -0
- package/docs/integrations/building-integrations.md +47 -0
- package/docs/integrations/clearbit.md +291 -0
- package/docs/integrations/cloudflare-web-analytics.md +292 -0
- package/docs/integrations/crisp.md +294 -0
- package/docs/integrations/databuddy.md +311 -0
- package/docs/integrations/fathom-analytics.md +293 -0
- package/docs/integrations/google-maps.md +384 -0
- package/docs/integrations/google-tag-manager.md +306 -0
- package/docs/integrations/google-tag.md +305 -0
- package/docs/integrations/heap.md +292 -0
- package/docs/integrations/hightouch.md +293 -0
- package/docs/integrations/hotjar.md +292 -0
- package/docs/integrations/intercom.md +285 -0
- package/docs/integrations/linkedin-insights.md +291 -0
- package/docs/integrations/logrocket.md +293 -0
- package/docs/integrations/matomo-analytics.md +316 -0
- package/docs/integrations/meta-pixel.md +285 -0
- package/docs/integrations/microsoft-clarity.md +292 -0
- package/docs/integrations/microsoft-uet.md +291 -0
- package/docs/integrations/mixpanel-analytics.md +295 -0
- package/docs/integrations/openai-pixel.md +441 -0
- package/docs/integrations/overview.md +111 -0
- package/docs/integrations/pirsch.md +295 -0
- package/docs/integrations/plausible-analytics.md +295 -0
- package/docs/integrations/posthog.md +397 -0
- package/docs/integrations/promptwatch.md +291 -0
- package/docs/integrations/reddit-pixel.md +294 -0
- package/docs/integrations/rudderstack.md +328 -0
- package/docs/integrations/rybbit-analytics.md +296 -0
- package/docs/integrations/segment.md +292 -0
- package/docs/integrations/snapchat-pixel.md +293 -0
- package/docs/integrations/tiktok-pixel.md +291 -0
- package/docs/integrations/umami-analytics.md +295 -0
- package/docs/integrations/vercel-analytics.md +293 -0
- package/docs/integrations/x-pixel.md +291 -0
- package/docs/integrations/youtube.md +405 -0
- package/docs/upgrade-v3.md +334 -0
- package/iab/styles.css +1 -0
- package/package.json +153 -0
- package/readme.json +36 -0
- package/styles.css +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { GlobalVendorList } from '@c15t/core';
|
|
2
|
+
import type { IABTranslations } from '../iab-translations';
|
|
3
|
+
import type { NonIABVendor, ProcessedPurpose, VendorId } from '../iab-types';
|
|
4
|
+
type $$ComponentProps = {
|
|
5
|
+
vendorData: GlobalVendorList | null;
|
|
6
|
+
purposes: ProcessedPurpose[];
|
|
7
|
+
vendorConsents: Record<string, boolean>;
|
|
8
|
+
onVendorToggle: (vendorId: VendorId, value: boolean) => void;
|
|
9
|
+
selectedVendorId: VendorId | null;
|
|
10
|
+
onClearSelection: () => void;
|
|
11
|
+
customVendors?: NonIABVendor[];
|
|
12
|
+
vendorLegitimateInterests?: Record<string, boolean>;
|
|
13
|
+
onVendorLegitimateInterestToggle?: (vendorId: VendorId, value: boolean) => void;
|
|
14
|
+
noStyle?: boolean;
|
|
15
|
+
iabT: IABTranslations;
|
|
16
|
+
};
|
|
17
|
+
declare const IabVendorList: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
18
|
+
type IabVendorList = ReturnType<typeof IabVendorList>;
|
|
19
|
+
export default IabVendorList;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
title = 'c15t',
|
|
4
|
+
titleId = 'c15t-icon',
|
|
5
|
+
class: className = 'c15t-icon',
|
|
6
|
+
...restProps
|
|
7
|
+
}: {
|
|
8
|
+
title?: string;
|
|
9
|
+
titleId?: string;
|
|
10
|
+
class?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
} = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<svg
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
viewBox="0 0 446 445"
|
|
18
|
+
aria-labelledby={titleId}
|
|
19
|
+
class={className}
|
|
20
|
+
{...restProps}
|
|
21
|
+
>
|
|
22
|
+
<title id={titleId}>{title}</title>
|
|
23
|
+
<path
|
|
24
|
+
fill="currentColor"
|
|
25
|
+
d="M223.178.313c39.064 0 70.732 31.668 70.732 70.732-.001 39.064-31.668 70.731-70.732 70.731-12.181 0-23.642-3.079-33.649-8.502l-55.689 55.689a70.267 70.267 0 0 1 5.574 13.441h167.531c8.695-29.217 35.762-50.523 67.804-50.523 39.064 0 70.731 31.668 70.731 70.732s-31.668 70.732-70.731 70.732c-32.042 0-59.108-21.306-67.803-50.523H139.413a70.417 70.417 0 0 1-7.888 17.396l54.046 54.046c10.893-6.851 23.786-10.815 37.605-10.815 39.064 0 70.732 31.669 70.732 70.733 0 39.064-31.668 70.731-70.732 70.731s-70.732-31.667-70.732-70.731c0-10.518 2.296-20.499 6.414-29.471l-57.78-57.78c-8.972 4.117-18.952 6.414-29.47 6.414-39.063 0-70.731-31.668-70.732-70.732 0-39.064 31.669-70.732 70.733-70.732 12.18 0 23.642 3.079 33.649 8.502l55.688-55.688c-5.423-10.007-8.502-21.469-8.502-33.65 0-39.064 31.668-70.733 70.732-70.733Zm0 343.555c-16.742 0-30.314 13.572-30.314 30.314 0 16.741 13.572 30.313 30.314 30.313s30.314-13.572 30.314-30.313c0-16.742-13.572-30.314-30.314-30.314ZM71.611 192.299c-16.742 0-30.315 13.572-30.315 30.314s13.573 30.314 30.315 30.314c16.741 0 30.313-13.572 30.313-30.314 0-16.741-13.572-30.314-30.313-30.314Zm303.138 0c-16.729 0-30.294 13.551-30.315 30.275l.001.039-.001.038c.021 16.725 13.586 30.276 30.315 30.276 16.741 0 30.313-13.572 30.313-30.314 0-16.741-13.572-30.314-30.313-30.314ZM223.178 40.73c-16.742 0-30.314 13.573-30.314 30.315s13.573 30.313 30.314 30.313c16.742 0 30.313-13.572 30.314-30.313 0-16.742-13.572-30.314-30.314-30.315Z"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
title?: string;
|
|
3
|
+
titleId?: string;
|
|
4
|
+
class?: string;
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
};
|
|
7
|
+
declare const C15TIconOnly: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
8
|
+
type C15TIconOnly = ReturnType<typeof C15TIconOnly>;
|
|
9
|
+
export default C15TIconOnly;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
expanded = false,
|
|
5
|
+
'aria-hidden': ariaHidden,
|
|
6
|
+
...rest
|
|
7
|
+
}: {
|
|
8
|
+
class?: string;
|
|
9
|
+
/** Point the chevron up instead of down. */
|
|
10
|
+
expanded?: boolean;
|
|
11
|
+
'aria-hidden'?: boolean;
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
} = $props();
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<svg
|
|
17
|
+
class={className}
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
fill="none"
|
|
20
|
+
stroke="currentColor"
|
|
21
|
+
stroke-width="2"
|
|
22
|
+
aria-hidden={ariaHidden}
|
|
23
|
+
{...rest}
|
|
24
|
+
>
|
|
25
|
+
{#if expanded}
|
|
26
|
+
<path d="M19 15l-7-7-7 7" />
|
|
27
|
+
{:else}
|
|
28
|
+
<path d="M19 9l-7 7-7-7" />
|
|
29
|
+
{/if}
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
class?: string;
|
|
3
|
+
/** Point the chevron up instead of down. */
|
|
4
|
+
expanded?: boolean;
|
|
5
|
+
'aria-hidden'?: boolean;
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
};
|
|
8
|
+
declare const ChevronDownIcon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
9
|
+
type ChevronDownIcon = ReturnType<typeof ChevronDownIcon>;
|
|
10
|
+
export default ChevronDownIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
width,
|
|
5
|
+
height,
|
|
6
|
+
expanded = false,
|
|
7
|
+
'aria-hidden': ariaHidden,
|
|
8
|
+
...rest
|
|
9
|
+
}: {
|
|
10
|
+
class?: string;
|
|
11
|
+
width?: string;
|
|
12
|
+
height?: string;
|
|
13
|
+
/** Point the chevron down instead of right. */
|
|
14
|
+
expanded?: boolean;
|
|
15
|
+
'aria-hidden'?: boolean;
|
|
16
|
+
[key: string]: unknown;
|
|
17
|
+
} = $props();
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<svg
|
|
21
|
+
class={className}
|
|
22
|
+
{width}
|
|
23
|
+
{height}
|
|
24
|
+
viewBox="0 0 24 24"
|
|
25
|
+
fill="none"
|
|
26
|
+
stroke="currentColor"
|
|
27
|
+
stroke-width="2"
|
|
28
|
+
aria-hidden={ariaHidden}
|
|
29
|
+
{...rest}
|
|
30
|
+
>
|
|
31
|
+
{#if expanded}
|
|
32
|
+
<path d="M19 9l-7 7-7-7" />
|
|
33
|
+
{:else}
|
|
34
|
+
<path d="M9 5l7 7-7 7" />
|
|
35
|
+
{/if}
|
|
36
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
class?: string;
|
|
3
|
+
width?: string;
|
|
4
|
+
height?: string;
|
|
5
|
+
/** Point the chevron down instead of right. */
|
|
6
|
+
expanded?: boolean;
|
|
7
|
+
'aria-hidden'?: boolean;
|
|
8
|
+
[key: string]: unknown;
|
|
9
|
+
};
|
|
10
|
+
declare const ChevronRightIcon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
11
|
+
type ChevronRightIcon = ReturnType<typeof ChevronRightIcon>;
|
|
12
|
+
export default ChevronRightIcon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
width,
|
|
5
|
+
height,
|
|
6
|
+
'aria-hidden': ariaHidden,
|
|
7
|
+
...rest
|
|
8
|
+
}: {
|
|
9
|
+
class?: string;
|
|
10
|
+
width?: string;
|
|
11
|
+
height?: string;
|
|
12
|
+
'aria-hidden'?: boolean;
|
|
13
|
+
[key: string]: unknown;
|
|
14
|
+
} = $props();
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<svg
|
|
18
|
+
class={className}
|
|
19
|
+
{width}
|
|
20
|
+
{height}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
stroke="currentColor"
|
|
24
|
+
stroke-width="2"
|
|
25
|
+
aria-hidden={ariaHidden}
|
|
26
|
+
{...rest}
|
|
27
|
+
>
|
|
28
|
+
<line
|
|
29
|
+
x1="18"
|
|
30
|
+
y1="6"
|
|
31
|
+
x2="6"
|
|
32
|
+
y2="18"
|
|
33
|
+
/>
|
|
34
|
+
<line
|
|
35
|
+
x1="6"
|
|
36
|
+
y1="6"
|
|
37
|
+
x2="18"
|
|
38
|
+
y2="18"
|
|
39
|
+
/>
|
|
40
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
class?: string;
|
|
3
|
+
width?: string;
|
|
4
|
+
height?: string;
|
|
5
|
+
'aria-hidden'?: boolean;
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
};
|
|
8
|
+
declare const CloseIcon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
9
|
+
type CloseIcon = ReturnType<typeof CloseIcon>;
|
|
10
|
+
export default CloseIcon;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
title = 'Consent',
|
|
4
|
+
titleId = 'consent-icon',
|
|
5
|
+
class: className,
|
|
6
|
+
...restProps
|
|
7
|
+
}: {
|
|
8
|
+
title?: string;
|
|
9
|
+
titleId?: string;
|
|
10
|
+
class?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
} = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<svg
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
viewBox="0 0 140 97"
|
|
18
|
+
fill="none"
|
|
19
|
+
aria-labelledby={titleId}
|
|
20
|
+
class={className}
|
|
21
|
+
{...restProps}
|
|
22
|
+
>
|
|
23
|
+
<title id={titleId}>{title}</title>
|
|
24
|
+
<path
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
fill-rule="evenodd"
|
|
27
|
+
d="M53.179 70.787c6.17 0 11.172-5.002 11.172-11.172 0-4.009-2.111-7.524-5.283-9.495a23.87 23.87 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"
|
|
28
|
+
clip-rule="evenodd"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
fill="currentColor"
|
|
32
|
+
fill-rule="evenodd"
|
|
33
|
+
d="M.618 74.716a68.453 68.453 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.343H.618Z"
|
|
34
|
+
clip-rule="evenodd"
|
|
35
|
+
/>
|
|
36
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
title?: string;
|
|
3
|
+
titleId?: string;
|
|
4
|
+
class?: string;
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
};
|
|
7
|
+
declare const ConsentIconOnly: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
8
|
+
type ConsentIconOnly = ReturnType<typeof ConsentIconOnly>;
|
|
9
|
+
export default ConsentIconOnly;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
'aria-hidden': ariaHidden,
|
|
5
|
+
...rest
|
|
6
|
+
}: {
|
|
7
|
+
class?: string;
|
|
8
|
+
'aria-hidden'?: boolean;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
} = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<svg
|
|
14
|
+
class={className}
|
|
15
|
+
viewBox="0 0 24 24"
|
|
16
|
+
fill="none"
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
stroke-width="2"
|
|
19
|
+
aria-hidden={ariaHidden}
|
|
20
|
+
{...rest}
|
|
21
|
+
>
|
|
22
|
+
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" />
|
|
23
|
+
<polyline points="15 3 21 3 21 9" />
|
|
24
|
+
<line
|
|
25
|
+
x1="10"
|
|
26
|
+
y1="14"
|
|
27
|
+
x2="21"
|
|
28
|
+
y2="3"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
class?: string;
|
|
3
|
+
'aria-hidden'?: boolean;
|
|
4
|
+
[key: string]: unknown;
|
|
5
|
+
};
|
|
6
|
+
declare const ExternalLinkIcon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
7
|
+
type ExternalLinkIcon = ReturnType<typeof ExternalLinkIcon>;
|
|
8
|
+
export default ExternalLinkIcon;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
'aria-hidden': ariaHidden,
|
|
5
|
+
'aria-label': ariaLabel,
|
|
6
|
+
...rest
|
|
7
|
+
}: {
|
|
8
|
+
class?: string;
|
|
9
|
+
'aria-hidden'?: boolean;
|
|
10
|
+
'aria-label'?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
} = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<svg
|
|
16
|
+
class={className}
|
|
17
|
+
viewBox="0 0 24 24"
|
|
18
|
+
fill="none"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
stroke-width="2"
|
|
21
|
+
aria-hidden={ariaHidden}
|
|
22
|
+
aria-label={ariaLabel}
|
|
23
|
+
{...rest}
|
|
24
|
+
>
|
|
25
|
+
<circle
|
|
26
|
+
cx="12"
|
|
27
|
+
cy="12"
|
|
28
|
+
r="10"
|
|
29
|
+
/>
|
|
30
|
+
<line
|
|
31
|
+
x1="2"
|
|
32
|
+
y1="12"
|
|
33
|
+
x2="22"
|
|
34
|
+
y2="12"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"
|
|
38
|
+
/>
|
|
39
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
class?: string;
|
|
3
|
+
'aria-hidden'?: boolean;
|
|
4
|
+
'aria-label'?: string;
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
};
|
|
7
|
+
declare const GlobeIcon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
8
|
+
type GlobeIcon = ReturnType<typeof GlobeIcon>;
|
|
9
|
+
export default GlobeIcon;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
'aria-hidden': ariaHidden,
|
|
5
|
+
'aria-label': ariaLabel,
|
|
6
|
+
...rest
|
|
7
|
+
}: {
|
|
8
|
+
class?: string;
|
|
9
|
+
'aria-hidden'?: boolean;
|
|
10
|
+
'aria-label'?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
} = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<svg
|
|
16
|
+
class={className}
|
|
17
|
+
viewBox="0 0 24 24"
|
|
18
|
+
fill="none"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
stroke-width="2"
|
|
21
|
+
aria-hidden={ariaHidden}
|
|
22
|
+
aria-label={ariaLabel}
|
|
23
|
+
{...rest}
|
|
24
|
+
>
|
|
25
|
+
<circle
|
|
26
|
+
cx="12"
|
|
27
|
+
cy="12"
|
|
28
|
+
r="10"
|
|
29
|
+
/>
|
|
30
|
+
<line
|
|
31
|
+
x1="12"
|
|
32
|
+
y1="16"
|
|
33
|
+
x2="12"
|
|
34
|
+
y2="12"
|
|
35
|
+
/>
|
|
36
|
+
<line
|
|
37
|
+
x1="12"
|
|
38
|
+
y1="8"
|
|
39
|
+
x2="12.01"
|
|
40
|
+
y2="8"
|
|
41
|
+
/>
|
|
42
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
class?: string;
|
|
3
|
+
'aria-hidden'?: boolean;
|
|
4
|
+
'aria-label'?: string;
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
};
|
|
7
|
+
declare const InfoIcon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
8
|
+
type InfoIcon = ReturnType<typeof InfoIcon>;
|
|
9
|
+
export default InfoIcon;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
title = 'INTH',
|
|
4
|
+
titleId = 'inth-logo',
|
|
5
|
+
class: className,
|
|
6
|
+
...restProps
|
|
7
|
+
}: {
|
|
8
|
+
title?: string;
|
|
9
|
+
titleId?: string;
|
|
10
|
+
class?: string;
|
|
11
|
+
[key: string]: unknown;
|
|
12
|
+
} = $props();
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<svg
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
viewBox="0 0 88 90"
|
|
18
|
+
fill="none"
|
|
19
|
+
aria-labelledby={titleId}
|
|
20
|
+
class={className}
|
|
21
|
+
{...restProps}
|
|
22
|
+
>
|
|
23
|
+
<title id={titleId}>{title}</title>
|
|
24
|
+
<path
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
d="M40.9164 0V8.26444H27.6933V26.7966H40.9164V35.0608H6.15594V26.7966H19.3788V8.26444H6.15594V0H40.9164Z"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fill="currentColor"
|
|
30
|
+
d="M72.1149 20.1264V0H80.0343V35.0608H74.2747L54.9798 14.8193V35.0608H47.0604V0H52.964L72.1149 20.1264Z"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
fill="currentColor"
|
|
34
|
+
fill-rule="evenodd"
|
|
35
|
+
clip-rule="evenodd"
|
|
36
|
+
d="M71.36 41.6H88V89.6H0V41.6H61.12V31.04L71.36 41.6ZM6.15594 48.0891V56.4034H19.1784V83.2H27.4428V56.4034H40.5656V48.0891H6.15594ZM47.0603 48.1391V83.2H55.3247V70.2441H71.7531V83.2H80.0675V48.1391H71.7531V61.9797H55.3247V48.1391H47.0603Z"
|
|
37
|
+
/>
|
|
38
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
title?: string;
|
|
3
|
+
titleId?: string;
|
|
4
|
+
class?: string;
|
|
5
|
+
[key: string]: unknown;
|
|
6
|
+
};
|
|
7
|
+
declare const InthLogo: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
8
|
+
type InthLogo = ReturnType<typeof InthLogo>;
|
|
9
|
+
export default InthLogo;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
'aria-hidden': ariaHidden,
|
|
5
|
+
...rest
|
|
6
|
+
}: {
|
|
7
|
+
class?: string;
|
|
8
|
+
'aria-hidden'?: boolean;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
} = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<svg
|
|
14
|
+
class={className}
|
|
15
|
+
viewBox="0 0 24 24"
|
|
16
|
+
fill="none"
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
stroke-width="2"
|
|
19
|
+
aria-hidden={ariaHidden}
|
|
20
|
+
{...rest}
|
|
21
|
+
>
|
|
22
|
+
<path d="M12 2L2 7l10 5 10-5-10-5z" />
|
|
23
|
+
<path d="M2 17l10 5 10-5" />
|
|
24
|
+
<path d="M2 12l10 5 10-5" />
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
width,
|
|
5
|
+
height,
|
|
6
|
+
'aria-hidden': ariaHidden,
|
|
7
|
+
...rest
|
|
8
|
+
}: {
|
|
9
|
+
class?: string;
|
|
10
|
+
width?: string;
|
|
11
|
+
height?: string;
|
|
12
|
+
'aria-hidden'?: boolean;
|
|
13
|
+
[key: string]: unknown;
|
|
14
|
+
} = $props();
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<svg
|
|
18
|
+
class={className}
|
|
19
|
+
{width}
|
|
20
|
+
{height}
|
|
21
|
+
viewBox="0 0 24 24"
|
|
22
|
+
fill="none"
|
|
23
|
+
stroke="currentColor"
|
|
24
|
+
stroke-width="2"
|
|
25
|
+
aria-hidden={ariaHidden}
|
|
26
|
+
{...rest}
|
|
27
|
+
>
|
|
28
|
+
<path d="M12 3v18M3 12h18M4.93 4.93l14.14 14.14M19.07 4.93L4.93 19.07" />
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
class?: string;
|
|
3
|
+
width?: string;
|
|
4
|
+
height?: string;
|
|
5
|
+
'aria-hidden'?: boolean;
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
};
|
|
8
|
+
declare const LegitimateInterestIcon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
9
|
+
type LegitimateInterestIcon = ReturnType<typeof LegitimateInterestIcon>;
|
|
10
|
+
export default LegitimateInterestIcon;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
'aria-hidden': ariaHidden,
|
|
5
|
+
...rest
|
|
6
|
+
}: {
|
|
7
|
+
class?: string;
|
|
8
|
+
'aria-hidden'?: boolean;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
} = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<svg
|
|
14
|
+
class={className}
|
|
15
|
+
viewBox="0 0 24 24"
|
|
16
|
+
fill="none"
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
stroke-width="2"
|
|
19
|
+
aria-hidden={ariaHidden}
|
|
20
|
+
{...rest}
|
|
21
|
+
>
|
|
22
|
+
<rect
|
|
23
|
+
x="3"
|
|
24
|
+
y="11"
|
|
25
|
+
width="18"
|
|
26
|
+
height="11"
|
|
27
|
+
rx="2"
|
|
28
|
+
ry="2"
|
|
29
|
+
/>
|
|
30
|
+
<path d="M7 11V7a5 5 0 0 1 10 0v4" />
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
let {
|
|
3
|
+
class: className,
|
|
4
|
+
'aria-hidden': ariaHidden,
|
|
5
|
+
...rest
|
|
6
|
+
}: {
|
|
7
|
+
class?: string;
|
|
8
|
+
'aria-hidden'?: boolean;
|
|
9
|
+
[key: string]: unknown;
|
|
10
|
+
} = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<svg
|
|
14
|
+
class={className}
|
|
15
|
+
viewBox="0 0 24 24"
|
|
16
|
+
fill="none"
|
|
17
|
+
stroke="currentColor"
|
|
18
|
+
stroke-width="2"
|
|
19
|
+
aria-hidden={ariaHidden}
|
|
20
|
+
{...rest}
|
|
21
|
+
>
|
|
22
|
+
<circle
|
|
23
|
+
cx="11"
|
|
24
|
+
cy="11"
|
|
25
|
+
r="8"
|
|
26
|
+
/>
|
|
27
|
+
<line
|
|
28
|
+
x1="21"
|
|
29
|
+
y1="21"
|
|
30
|
+
x2="16.65"
|
|
31
|
+
y2="16.65"
|
|
32
|
+
/>
|
|
33
|
+
</svg>
|