scb-wc-test 0.1.111 → 0.1.113

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/all.js CHANGED
@@ -15,6 +15,7 @@ import './mvc/components/scb-card/scb-card.js';
15
15
  import './mvc/components/scb-checkbox/scb-checkbox-group.js';
16
16
  import './mvc/components/scb-checkbox/scb-checkbox.js';
17
17
  import './mvc/components/scb-chip/scb-chip.js';
18
+ import './mvc/components/scb-cookies-consent/scb-cookies-consent.js';
18
19
  import './mvc/components/scb-datepicker/scb-datepicker.js';
19
20
  import './mvc/components/scb-dialog/scb-dialog.js';
20
21
  import './mvc/components/scb-divider/scb-divider.js';
@@ -87,6 +88,7 @@ import './scb-card/scb-card.js';
87
88
  import './scb-checkbox/scb-checkbox-group.js';
88
89
  import './scb-checkbox/scb-checkbox.js';
89
90
  import './scb-chip/scb-chip.js';
91
+ import './scb-cookies-consent/scb-cookies-consent.js';
90
92
  import './scb-datepicker/scb-datepicker.js';
91
93
  import './scb-dialog/scb-dialog.js';
92
94
  import './scb-divider/scb-divider.js';
@@ -1038,6 +1038,17 @@ namespace ScbBlazorDemo
1038
1038
  return JS.InvokeVoidAsync("SCBBlazor.setVizSelectedChipById", id ?? string.Empty, selectedChip ?? string.Empty).AsTask();
1039
1039
  }
1040
1040
 
1041
+
1042
+ protected Task SetVizViewAsync(int index, string view)
1043
+ {
1044
+ return JS.InvokeVoidAsync("SCBBlazor.setVizView", index, view ?? string.Empty).AsTask();
1045
+ }
1046
+
1047
+ protected Task SetVizViewByIdAsync(string id, string view)
1048
+ {
1049
+ return JS.InvokeVoidAsync("SCBBlazor.setVizViewById", id ?? string.Empty, view ?? string.Empty).AsTask();
1050
+ }
1051
+
1041
1052
  // Nedan följer alla state-klasser som används i Razor views
1042
1053
 
1043
1054
  protected sealed class HeaderState
@@ -58,6 +58,18 @@
58
58
  function mirrorHeaderDrawer(el, isOpen) {
59
59
  if (isOpen) el.setAttribute('drawer-open', '');
60
60
  else el.removeAttribute('drawer-open');
61
+
62
+ // Spegla aria-expanded på menyknappen i headerns shadow DOM så att läget blir rätt även vid overlay-stängning
63
+ try {
64
+ const sr = el.shadowRoot;
65
+ if (sr) {
66
+ const btn =
67
+ sr.querySelector('.menu-trigger') ||
68
+ sr.querySelector('[data-drawer-toggle]') ||
69
+ sr.querySelector('[aria-controls]');
70
+ if (btn) btn.setAttribute('aria-expanded', String(!!isOpen));
71
+ }
72
+ } catch (_) {}
61
73
  }
62
74
 
63
75
  function mirrorHeaderSearch(el, ev) {
@@ -91,6 +103,19 @@
91
103
  to: 'draweropen',
92
104
  mirror: (el) => mirrorHeaderDrawer(el, false),
93
105
  },
106
+ // Speglar headerns drawer-state även när drawern stängs/öppnas via overlay eller ESC
107
+ {
108
+ sel: 'scb-header',
109
+ from: 'scb-drawer-opened',
110
+ to: 'scb-drawer-opened',
111
+ mirror: (el) => mirrorHeaderDrawer(el, true),
112
+ },
113
+ {
114
+ sel: 'scb-header',
115
+ from: 'scb-drawer-closed',
116
+ to: 'scb-drawer-closed',
117
+ mirror: (el) => mirrorHeaderDrawer(el, false),
118
+ },
94
119
  { sel: 'scb-header', from: 'drawer-select', to: 'select' },
95
120
  { sel: 'scb-header', from: 'menu-click', to: 'menuclick' },
96
121
  {
@@ -1968,6 +1993,46 @@ window.SCBBlazor.registerScbEventHandlers = function (dotNetRef) {
1968
1993
  (function () {
1969
1994
  'use strict';
1970
1995
 
1996
+ function buildAttrSelector(attr, value) {
1997
+ const v = String(value ?? '')
1998
+ .replace(/\\/g, '\\\\')
1999
+ .replace(/"/g, '\\"');
2000
+ return `[${attr}="${v}"]`;
2001
+ }
2002
+
2003
+ function getOpenState(el) {
2004
+ if (!el) return false;
2005
+ try {
2006
+ if (typeof el.open === 'boolean') return el.open;
2007
+ } catch (_) {}
2008
+ return el.hasAttribute && el.hasAttribute('open');
2009
+ }
2010
+
2011
+ function safeClick(el) {
2012
+ if (!el) return false;
2013
+ try {
2014
+ el.dispatchEvent(
2015
+ new MouseEvent('click', { bubbles: true, composed: true }),
2016
+ );
2017
+ return true;
2018
+ } catch (_) {}
2019
+ try {
2020
+ el.click();
2021
+ return true;
2022
+ } catch (_) {}
2023
+ return false;
2024
+ }
2025
+
2026
+ function findTrigger(kind, id, wantOpen) {
2027
+ if (!id) return null;
2028
+ const selectors = [];
2029
+ if (wantOpen) selectors.push(buildAttrSelector(`data-${kind}-open`, id));
2030
+ else selectors.push(buildAttrSelector(`data-${kind}-close`, id));
2031
+ selectors.push(buildAttrSelector(`data-${kind}-toggle`, id));
2032
+ selectors.push(buildAttrSelector('aria-controls', id));
2033
+ return document.querySelector(selectors.join(','));
2034
+ }
2035
+
1971
2036
  function getByIndex(selector, index) {
1972
2037
  const list = document.querySelectorAll(selector);
1973
2038
  if (!list || list.length === 0) return null;
@@ -2018,8 +2083,50 @@ window.SCBBlazor.registerScbEventHandlers = function (dotNetRef) {
2018
2083
  const header = document.querySelector('scb-header');
2019
2084
  if (!header) return;
2020
2085
  const isOpen = toBool(open);
2021
- if (isOpen) header.setAttribute('drawer-open', '');
2022
- else header.removeAttribute('drawer-open');
2086
+
2087
+ // Markör på hosten används av getState för Header.DrawerOpen
2088
+ try {
2089
+ mirrorHeaderDrawer(header, isOpen);
2090
+ } catch (_) {
2091
+ if (isOpen) header.setAttribute('drawer-open', '');
2092
+ else header.removeAttribute('drawer-open');
2093
+ }
2094
+
2095
+ // Styr drawern som ligger inuti headerns shadow DOM (standard id: main-drawer)
2096
+ try {
2097
+ const sr = header.shadowRoot;
2098
+ if (sr) {
2099
+ const btn =
2100
+ sr.querySelector('.menu-trigger') ||
2101
+ sr.querySelector('[data-drawer-toggle]') ||
2102
+ sr.querySelector('[aria-controls]');
2103
+
2104
+ const drawerId =
2105
+ (btn &&
2106
+ (btn.getAttribute('aria-controls') ||
2107
+ btn.getAttribute('data-drawer-toggle'))) ||
2108
+ 'main-drawer';
2109
+
2110
+ const safeId =
2111
+ window.CSS && typeof window.CSS.escape === 'function'
2112
+ ? window.CSS.escape(String(drawerId))
2113
+ : String(drawerId);
2114
+
2115
+ const drawer =
2116
+ sr.querySelector(`#${safeId}`) ||
2117
+ sr.querySelector('scb-drawer');
2118
+
2119
+ if (drawer) {
2120
+ try {
2121
+ drawer.open = isOpen;
2122
+ } catch (_) {}
2123
+ if (isOpen) drawer.setAttribute('open', '');
2124
+ else drawer.removeAttribute('open');
2125
+ }
2126
+ }
2127
+ } catch (_) {}
2128
+
2129
+ // Trigga state-refresh i Blazor
2023
2130
  dispatchChange(header, 'draweropen', { open: isOpen });
2024
2131
  };
2025
2132
 
@@ -2037,16 +2144,28 @@ window.SCBBlazor.registerScbEventHandlers = function (dotNetRef) {
2037
2144
 
2038
2145
  // Drawer och menu
2039
2146
 
2040
- api.setDrawerOpen = function (open) {
2147
+ api.setDrawerOpen = function (open) {
2041
2148
  const drawer = document.querySelector('scb-drawer');
2042
2149
  if (!drawer) return;
2150
+
2043
2151
  const isOpen = toBool(open);
2152
+ const prev = getOpenState(drawer);
2153
+ if (prev === isOpen) return;
2154
+
2155
+ // Primärt: använd samma trigger-logik som i UI:t (aria-controls / data-drawer-*)
2156
+ const id = drawer.id;
2157
+ const trigger = findTrigger('drawer', id, isOpen);
2158
+ if (trigger) {
2159
+ safeClick(trigger);
2160
+ if (getOpenState(drawer) === isOpen) return;
2161
+ }
2162
+
2163
+ // Fallback: sätt open direkt
2044
2164
  try {
2045
2165
  drawer.open = isOpen;
2046
2166
  } catch (_) {}
2047
2167
  if (isOpen) drawer.setAttribute('open', '');
2048
2168
  else drawer.removeAttribute('open');
2049
- dispatchChange(drawer, 'openchange', { open: isOpen });
2050
2169
  };
2051
2170
 
2052
2171
  api.setDrawerText = function (label, subLabel) {
@@ -2273,15 +2392,40 @@ window.SCBBlazor.registerScbEventHandlers = function (dotNetRef) {
2273
2392
 
2274
2393
  // Dialog, notification och snackbar
2275
2394
 
2276
- api.setDialogOpen = function (open) {
2395
+ api.setDialogOpen = function (open) {
2277
2396
  const dialog = document.querySelector('scb-dialog');
2278
2397
  if (!dialog) return;
2398
+
2279
2399
  const isOpen = toBool(open);
2400
+ const prev = getOpenState(dialog);
2401
+ if (prev === isOpen) return;
2402
+
2403
+ // Primärt: använd samma trigger-logik som i UI:t (aria-controls / data-dialog-*)
2404
+ const id = dialog.id;
2405
+ const trigger = findTrigger('dialog', id, isOpen);
2406
+ if (trigger) {
2407
+ safeClick(trigger);
2408
+ if (getOpenState(dialog) === isOpen) {
2409
+ // Dialogen behöver en normaliserad event-signal för att Blazor ska uppdatera state
2410
+ dispatchChange(dialog, 'openchange', { open: isOpen });
2411
+ return;
2412
+ }
2413
+ }
2414
+
2415
+ // Fallback: försök komponentens API om det finns
2416
+ try {
2417
+ if (isOpen && typeof dialog.showModal === 'function') dialog.showModal();
2418
+ else if (isOpen && typeof dialog.show === 'function') dialog.show();
2419
+ else if (!isOpen && typeof dialog.close === 'function') dialog.close();
2420
+ } catch (_) {}
2421
+
2422
+ // Sista fallback: sätt open direkt
2280
2423
  try {
2281
2424
  dialog.open = isOpen;
2282
2425
  } catch (_) {}
2283
2426
  if (isOpen) dialog.setAttribute('open', '');
2284
2427
  else dialog.removeAttribute('open');
2428
+
2285
2429
  dispatchChange(dialog, 'openchange', { open: isOpen });
2286
2430
  };
2287
2431
 
@@ -2514,4 +2658,148 @@ window.SCBBlazor.registerScbEventHandlers = function (dotNetRef) {
2514
2658
  } catch (_) {}
2515
2659
  dispatchChange(viz, 'valuechange', { value });
2516
2660
  };
2661
+
2662
+ api.setVizView = function (index, view) {
2663
+ const viz = getByIndex('scb-viz', index);
2664
+ if (!viz) return;
2665
+ setVizViewOnElement(viz, view);
2666
+ };
2667
+
2668
+ api.setVizViewById = function (id, view) {
2669
+ const viz = getById(id, 'scb-viz');
2670
+ if (!viz) return;
2671
+ setVizViewOnElement(viz, view);
2672
+ };
2673
+
2674
+ function setVizViewOnElement(viz, view) {
2675
+ const raw = view == null ? '' : String(view);
2676
+ const v = raw.trim().toLowerCase();
2677
+ const showTable = v === 'table' || v === 'tabell';
2678
+
2679
+ // Försöker först styra via viz egna UI (segmented) så att både vy och vald knapp hamnar i synk.
2680
+ try {
2681
+ const sr = viz.shadowRoot;
2682
+ if (sr) {
2683
+ const scbSegmented = sr.querySelector('scb-segmented-button');
2684
+ if (scbSegmented) {
2685
+ const targetLabel = showTable ? 'tabell' : 'diagram';
2686
+ const targetLabelAlt = showTable ? 'table' : 'chart';
2687
+
2688
+ const items = Array.from(
2689
+ scbSegmented.querySelectorAll('scb-segmented-item, button, [role="button"]'),
2690
+ );
2691
+
2692
+ const pickByLabel = (el) => {
2693
+ const label = (
2694
+ el.getAttribute('label') ||
2695
+ el.getAttribute('aria-label') ||
2696
+ (el.label ?? '')
2697
+ )
2698
+ .toString()
2699
+ .trim()
2700
+ .toLowerCase();
2701
+ const text = (el.textContent ?? '').toString().trim().toLowerCase();
2702
+ const s = `${label} ${text}`.trim();
2703
+ return s.includes(targetLabel) || s.includes(targetLabelAlt);
2704
+ };
2705
+
2706
+ let targetEl = items.find(pickByLabel);
2707
+ if (!targetEl && items.length >= 2) {
2708
+ targetEl = items[showTable ? 1 : 0];
2709
+ }
2710
+
2711
+ if (targetEl) {
2712
+ const itemValue = (
2713
+ targetEl.getAttribute('value') ||
2714
+ targetEl.getAttribute('data-value') ||
2715
+ (targetEl.value ?? '')
2716
+ )
2717
+ .toString()
2718
+ .trim();
2719
+
2720
+ if (itemValue) {
2721
+ try {
2722
+ scbSegmented.value = itemValue;
2723
+ } catch (_) {}
2724
+ }
2725
+
2726
+ if (typeof targetEl.click === 'function') {
2727
+ targetEl.click();
2728
+ }
2729
+
2730
+ return;
2731
+ }
2732
+ }
2733
+
2734
+ // Fallback för Material/Web eller annan intern implementation där knapparna ligger direkt i shadowRoot.
2735
+ const mdButtons = Array.from(sr.querySelectorAll('md-segmented-button'));
2736
+ const buttons = mdButtons.length
2737
+ ? mdButtons
2738
+ : Array.from(sr.querySelectorAll('button, [role="button"]'));
2739
+
2740
+ if (buttons.length) {
2741
+ const targetLabel = showTable ? 'tabell' : 'diagram';
2742
+ const targetLabelAlt = showTable ? 'table' : 'chart';
2743
+
2744
+ const pickByLabel = (el) => {
2745
+ const label = (
2746
+ el.getAttribute('label') ||
2747
+ el.getAttribute('aria-label') ||
2748
+ (el.label ?? '')
2749
+ )
2750
+ .toString()
2751
+ .trim()
2752
+ .toLowerCase();
2753
+ const text = (el.textContent ?? '').toString().trim().toLowerCase();
2754
+ const s = `${label} ${text}`.trim();
2755
+ return s.includes(targetLabel) || s.includes(targetLabelAlt);
2756
+ };
2757
+
2758
+ let targetEl = buttons.find(pickByLabel);
2759
+ if (!targetEl && buttons.length >= 2) {
2760
+ targetEl = buttons[showTable ? 1 : 0];
2761
+ }
2762
+
2763
+ if (targetEl) {
2764
+ if (typeof targetEl.click === 'function') {
2765
+ targetEl.click();
2766
+ return;
2767
+ }
2768
+
2769
+ try {
2770
+ targetEl.dispatchEvent(
2771
+ new MouseEvent('click', { bubbles: true, composed: true }),
2772
+ );
2773
+ return;
2774
+ } catch (_) {}
2775
+ }
2776
+ }
2777
+ }
2778
+ } catch (_) {}
2779
+
2780
+ // Sista fallback: växlar synlighet på slottat innehåll.
2781
+ const diagramSlot = viz.querySelector('[slot="diagram"]');
2782
+ const tableSlot = viz.querySelector('[slot="table"]');
2783
+
2784
+ if (diagramSlot) {
2785
+ if (showTable) {
2786
+ diagramSlot.setAttribute('hidden', '');
2787
+ diagramSlot.style.setProperty('display', 'none', 'important');
2788
+ } else {
2789
+ diagramSlot.removeAttribute('hidden');
2790
+ diagramSlot.style.removeProperty('display');
2791
+ }
2792
+ }
2793
+
2794
+ if (tableSlot) {
2795
+ if (showTable) {
2796
+ tableSlot.removeAttribute('hidden');
2797
+ tableSlot.style.removeProperty('display');
2798
+ } else {
2799
+ tableSlot.setAttribute('hidden', '');
2800
+ tableSlot.style.setProperty('display', 'none', 'important');
2801
+ }
2802
+ }
2803
+ };
2804
+
2517
2805
  })();
package/index.d.ts CHANGED
@@ -11,6 +11,7 @@ export * from './scb-card/scb-card';
11
11
  export * from './scb-checkbox/scb-checkbox-group';
12
12
  export * from './scb-checkbox/scb-checkbox';
13
13
  export * from './scb-chip/scb-chip';
14
+ export * from './scb-cookies-consent/scb-cookies-consent';
14
15
  export * from './scb-datepicker/scb-datepicker';
15
16
  export * from './scb-dialog/scb-dialog';
16
17
  export * from './scb-divider/scb-divider';
package/index.js CHANGED
@@ -4,133 +4,135 @@ import { ScbAppBar as p } from "./scb-app-bar/scb-app-bar.js";
4
4
  import { ScbAvatar as b } from "./scb-avatar/scb-avatar.js";
5
5
  import { ScbBadge as f } from "./scb-badge/scb-badge.js";
6
6
  import { SCBBreadcrumbItem as i } from "./scb-breadcrumb/scb-breadcrumb-item.js";
7
- import { SCBBreadcrumb as n } from "./scb-breadcrumb/scb-breadcrumb.js";
8
- import { ScbButton as l } from "./scb-button/scb-button.js";
9
- import { ScbCalendarCard as I } from "./scb-calendar-card/scb-calendar-card.js";
7
+ import { SCBBreadcrumb as d } from "./scb-breadcrumb/scb-breadcrumb.js";
8
+ import { ScbButton as C } from "./scb-button/scb-button.js";
9
+ import { ScbCalendarCard as s } from "./scb-calendar-card/scb-calendar-card.js";
10
10
  import { ScbCard as B } from "./scb-card/scb-card.js";
11
11
  import { ScbCheckboxGroup as D } from "./scb-checkbox/scb-checkbox-group.js";
12
- import { ScbCheckbox as k } from "./scb-checkbox/scb-checkbox.js";
12
+ import { ScbCheckbox as T } from "./scb-checkbox/scb-checkbox.js";
13
13
  import { ScbChip as F } from "./scb-chip/scb-chip.js";
14
- import { ScbDatepicker as P } from "./scb-datepicker/scb-datepicker.js";
15
- import { ScbDialog as G } from "./scb-dialog/scb-dialog.js";
16
- import { ScbDivider as A } from "./scb-divider/scb-divider.js";
17
- import { ScbDrawerItem as M } from "./scb-drawer/scb-drawer-item.js";
18
- import { ScbDrawerSection as z } from "./scb-drawer/scb-drawer-section.js";
19
- import { ScbDrawer as K } from "./scb-drawer/scb-drawer.js";
20
- import { ScbSubDrawer as O } from "./scb-drawer/scb-sub-drawer.js";
21
- import { ScbFactCardContent as V } from "./scb-fact-card/scb-fact-card-content.js";
22
- import { ScbFactCard as q } from "./scb-fact-card/scb-fact-card.js";
23
- import { ScbFooterSection as J } from "./scb-footer/scb-footer-section.js";
24
- import { ScbFooter as W } from "./scb-footer/scb-footer.js";
25
- import { ScbGridItem as Y } from "./scb-grid/scb-grid-item.js";
26
- import { ScbGrid as _ } from "./scb-grid/scb-grid.js";
27
- import { ScbStack as rr } from "./scb-grid/scb-stack.js";
28
- import { ScbHeaderDrawerGroup as er } from "./scb-header/scb-header-drawer-group.js";
29
- import { ScbHeaderDrawerItem as cr } from "./scb-header/scb-header-drawer-item.js";
30
- import { ScbHeaderTab as pr } from "./scb-header/scb-header-tab.js";
31
- import { ScbHeaderUtility as br } from "./scb-header/scb-header-utility.js";
32
- import { ScbHeader as fr } from "./scb-header/scb-header.js";
33
- import { ScbHorizontalScroller as ir } from "./scb-horizontal-scroller/scb-horizontal-scroller.js";
34
- import { ScbIconButton as nr } from "./scb-icon-button/scb-icon-button.js";
35
- import { ScbKeyFigureCard as lr } from "./scb-keyfigure-card/scb-keyfigure-card.js";
36
- import { ScbLink as Ir } from "./scb-link/scb-link.js";
37
- import { ScbListItem as Br } from "./scb-list/scb-list-item.js";
38
- import { ScbList as Dr } from "./scb-list/scb-list.js";
39
- import { ScbMenuItem as kr } from "./scb-menu/scb-menu-item.js";
40
- import { ScbMenu as Fr } from "./scb-menu/scb-menu.js";
41
- import { ScbSubMenu as Pr } from "./scb-menu/scb-sub-menu.js";
42
- import { ScbNotificationCard as Gr } from "./scb-notification-card/scb-notification-card.js";
43
- import { ScbPagination as Ar } from "./scb-pagination/scb-pagination.js";
44
- import { ScbProgressIndicator as Mr } from "./scb-progress-indicator/scb-progress-indicator.js";
45
- import { ScbProgressStep as zr } from "./scb-progress-stepper/scb-progress-step.js";
46
- import { ScbProgressStepper as Kr } from "./scb-progress-stepper/scb-progress-stepper.js";
47
- import { ScbRadioButton as Or } from "./scb-radio-button/scb-radio-button.js";
48
- import { ScbRadioGroup as Vr } from "./scb-radio-button/scb-radio-group.js";
49
- import { ScbSearch as qr } from "./scb-search/scb-search.js";
50
- import { ScbSegmentedButton as Jr } from "./scb-segmented-button/scb-segmented-button.js";
51
- import { ScbSegmentedItem as Wr } from "./scb-segmented-button/scb-segmented-item.js";
52
- import { ScbSelectOption as Yr } from "./scb-select/scb-select-option.js";
53
- import { ScbSelect as _r } from "./scb-select/scb-select.js";
54
- import { ScbSkeleton as ro } from "./scb-skeleton/scb-skeleton.js";
55
- import { ScbSnackbar as eo } from "./scb-snackbar/scb-snackbar.js";
56
- import { ScbStatusPill as co } from "./scb-status-pill/scb-status-pill.js";
57
- import { ScbStep as po } from "./scb-stepper/scb-step.js";
58
- import { ScbStepper as bo } from "./scb-stepper/scb-stepper.js";
59
- import { ScbSwitch as fo } from "./scb-switch/scb-switch.js";
60
- import { ScbPrimaryTab as io } from "./scb-tabs/scb-primary-tab.js";
61
- import { ScbSecondaryTab as uo } from "./scb-tabs/scb-secondary-tab.js";
62
- import { ScbTabs as Co } from "./scb-tabs/scb-tabs.js";
63
- import { ScbTextField as so } from "./scb-textfield/scb-textfield.js";
64
- import { ScbTocItem as go } from "./scb-toc/scb-toc-item.js";
65
- import { ScbToc as To } from "./scb-toc/scb-toc.js";
66
- import { ScbTooltip as wo } from "./scb-tooltip/scb-tooltip.js";
67
- import { ScbViz as Ho } from "./scb-viz/scb-viz.js";
14
+ import { ScbCookiesConsent as P } from "./scb-cookies-consent/scb-cookies-consent.js";
15
+ import { ScbDatepicker as G } from "./scb-datepicker/scb-datepicker.js";
16
+ import { ScbDialog as A } from "./scb-dialog/scb-dialog.js";
17
+ import { ScbDivider as M } from "./scb-divider/scb-divider.js";
18
+ import { ScbDrawerItem as z } from "./scb-drawer/scb-drawer-item.js";
19
+ import { ScbDrawerSection as K } from "./scb-drawer/scb-drawer-section.js";
20
+ import { ScbDrawer as O } from "./scb-drawer/scb-drawer.js";
21
+ import { ScbSubDrawer as V } from "./scb-drawer/scb-sub-drawer.js";
22
+ import { ScbFactCardContent as q } from "./scb-fact-card/scb-fact-card-content.js";
23
+ import { ScbFactCard as J } from "./scb-fact-card/scb-fact-card.js";
24
+ import { ScbFooterSection as W } from "./scb-footer/scb-footer-section.js";
25
+ import { ScbFooter as Y } from "./scb-footer/scb-footer.js";
26
+ import { ScbGridItem as _ } from "./scb-grid/scb-grid-item.js";
27
+ import { ScbGrid as rr } from "./scb-grid/scb-grid.js";
28
+ import { ScbStack as er } from "./scb-grid/scb-stack.js";
29
+ import { ScbHeaderDrawerGroup as cr } from "./scb-header/scb-header-drawer-group.js";
30
+ import { ScbHeaderDrawerItem as pr } from "./scb-header/scb-header-drawer-item.js";
31
+ import { ScbHeaderTab as br } from "./scb-header/scb-header-tab.js";
32
+ import { ScbHeaderUtility as fr } from "./scb-header/scb-header-utility.js";
33
+ import { ScbHeader as ir } from "./scb-header/scb-header.js";
34
+ import { ScbHorizontalScroller as dr } from "./scb-horizontal-scroller/scb-horizontal-scroller.js";
35
+ import { ScbIconButton as Cr } from "./scb-icon-button/scb-icon-button.js";
36
+ import { ScbKeyFigureCard as sr } from "./scb-keyfigure-card/scb-keyfigure-card.js";
37
+ import { ScbLink as Br } from "./scb-link/scb-link.js";
38
+ import { ScbListItem as Dr } from "./scb-list/scb-list-item.js";
39
+ import { ScbList as Tr } from "./scb-list/scb-list.js";
40
+ import { ScbMenuItem as Fr } from "./scb-menu/scb-menu-item.js";
41
+ import { ScbMenu as Pr } from "./scb-menu/scb-menu.js";
42
+ import { ScbSubMenu as Gr } from "./scb-menu/scb-sub-menu.js";
43
+ import { ScbNotificationCard as Ar } from "./scb-notification-card/scb-notification-card.js";
44
+ import { ScbPagination as Mr } from "./scb-pagination/scb-pagination.js";
45
+ import { ScbProgressIndicator as zr } from "./scb-progress-indicator/scb-progress-indicator.js";
46
+ import { ScbProgressStep as Kr } from "./scb-progress-stepper/scb-progress-step.js";
47
+ import { ScbProgressStepper as Or } from "./scb-progress-stepper/scb-progress-stepper.js";
48
+ import { ScbRadioButton as Vr } from "./scb-radio-button/scb-radio-button.js";
49
+ import { ScbRadioGroup as qr } from "./scb-radio-button/scb-radio-group.js";
50
+ import { ScbSearch as Jr } from "./scb-search/scb-search.js";
51
+ import { ScbSegmentedButton as Wr } from "./scb-segmented-button/scb-segmented-button.js";
52
+ import { ScbSegmentedItem as Yr } from "./scb-segmented-button/scb-segmented-item.js";
53
+ import { ScbSelectOption as _r } from "./scb-select/scb-select-option.js";
54
+ import { ScbSelect as ro } from "./scb-select/scb-select.js";
55
+ import { ScbSkeleton as eo } from "./scb-skeleton/scb-skeleton.js";
56
+ import { ScbSnackbar as co } from "./scb-snackbar/scb-snackbar.js";
57
+ import { ScbStatusPill as po } from "./scb-status-pill/scb-status-pill.js";
58
+ import { ScbStep as bo } from "./scb-stepper/scb-step.js";
59
+ import { ScbStepper as fo } from "./scb-stepper/scb-stepper.js";
60
+ import { ScbSwitch as io } from "./scb-switch/scb-switch.js";
61
+ import { ScbPrimaryTab as uo } from "./scb-tabs/scb-primary-tab.js";
62
+ import { ScbSecondaryTab as lo } from "./scb-tabs/scb-secondary-tab.js";
63
+ import { ScbTabs as Io } from "./scb-tabs/scb-tabs.js";
64
+ import { ScbTextField as go } from "./scb-textfield/scb-textfield.js";
65
+ import { ScbTocItem as ko } from "./scb-toc/scb-toc-item.js";
66
+ import { ScbToc as wo } from "./scb-toc/scb-toc.js";
67
+ import { ScbTooltip as Ho } from "./scb-tooltip/scb-tooltip.js";
68
+ import { ScbViz as ho } from "./scb-viz/scb-viz.js";
68
69
  export {
69
- n as SCBBreadcrumb,
70
+ d as SCBBreadcrumb,
70
71
  i as SCBBreadcrumbItem,
71
72
  c as ScbAccordion,
72
73
  e as ScbAccordionItem,
73
74
  p as ScbAppBar,
74
75
  b as ScbAvatar,
75
76
  f as ScbBadge,
76
- l as ScbButton,
77
- I as ScbCalendarCard,
77
+ C as ScbButton,
78
+ s as ScbCalendarCard,
78
79
  B as ScbCard,
79
- k as ScbCheckbox,
80
+ T as ScbCheckbox,
80
81
  D as ScbCheckboxGroup,
81
82
  F as ScbChip,
82
- P as ScbDatepicker,
83
- G as ScbDialog,
84
- A as ScbDivider,
85
- K as ScbDrawer,
86
- M as ScbDrawerItem,
87
- z as ScbDrawerSection,
88
- q as ScbFactCard,
89
- V as ScbFactCardContent,
90
- W as ScbFooter,
91
- J as ScbFooterSection,
92
- _ as ScbGrid,
93
- Y as ScbGridItem,
94
- fr as ScbHeader,
95
- er as ScbHeaderDrawerGroup,
96
- cr as ScbHeaderDrawerItem,
97
- pr as ScbHeaderTab,
98
- br as ScbHeaderUtility,
99
- ir as ScbHorizontalScroller,
100
- nr as ScbIconButton,
101
- lr as ScbKeyFigureCard,
102
- Ir as ScbLink,
103
- Dr as ScbList,
104
- Br as ScbListItem,
105
- Fr as ScbMenu,
106
- kr as ScbMenuItem,
107
- Gr as ScbNotificationCard,
108
- Ar as ScbPagination,
109
- io as ScbPrimaryTab,
110
- Mr as ScbProgressIndicator,
111
- zr as ScbProgressStep,
112
- Kr as ScbProgressStepper,
113
- Or as ScbRadioButton,
114
- Vr as ScbRadioGroup,
115
- qr as ScbSearch,
116
- uo as ScbSecondaryTab,
117
- Jr as ScbSegmentedButton,
118
- Wr as ScbSegmentedItem,
119
- _r as ScbSelect,
120
- Yr as ScbSelectOption,
121
- ro as ScbSkeleton,
122
- eo as ScbSnackbar,
123
- rr as ScbStack,
124
- co as ScbStatusPill,
125
- po as ScbStep,
126
- bo as ScbStepper,
127
- O as ScbSubDrawer,
128
- Pr as ScbSubMenu,
129
- fo as ScbSwitch,
130
- Co as ScbTabs,
131
- so as ScbTextField,
132
- To as ScbToc,
133
- go as ScbTocItem,
134
- wo as ScbTooltip,
135
- Ho as ScbViz
83
+ P as ScbCookiesConsent,
84
+ G as ScbDatepicker,
85
+ A as ScbDialog,
86
+ M as ScbDivider,
87
+ O as ScbDrawer,
88
+ z as ScbDrawerItem,
89
+ K as ScbDrawerSection,
90
+ J as ScbFactCard,
91
+ q as ScbFactCardContent,
92
+ Y as ScbFooter,
93
+ W as ScbFooterSection,
94
+ rr as ScbGrid,
95
+ _ as ScbGridItem,
96
+ ir as ScbHeader,
97
+ cr as ScbHeaderDrawerGroup,
98
+ pr as ScbHeaderDrawerItem,
99
+ br as ScbHeaderTab,
100
+ fr as ScbHeaderUtility,
101
+ dr as ScbHorizontalScroller,
102
+ Cr as ScbIconButton,
103
+ sr as ScbKeyFigureCard,
104
+ Br as ScbLink,
105
+ Tr as ScbList,
106
+ Dr as ScbListItem,
107
+ Pr as ScbMenu,
108
+ Fr as ScbMenuItem,
109
+ Ar as ScbNotificationCard,
110
+ Mr as ScbPagination,
111
+ uo as ScbPrimaryTab,
112
+ zr as ScbProgressIndicator,
113
+ Kr as ScbProgressStep,
114
+ Or as ScbProgressStepper,
115
+ Vr as ScbRadioButton,
116
+ qr as ScbRadioGroup,
117
+ Jr as ScbSearch,
118
+ lo as ScbSecondaryTab,
119
+ Wr as ScbSegmentedButton,
120
+ Yr as ScbSegmentedItem,
121
+ ro as ScbSelect,
122
+ _r as ScbSelectOption,
123
+ eo as ScbSkeleton,
124
+ co as ScbSnackbar,
125
+ er as ScbStack,
126
+ po as ScbStatusPill,
127
+ bo as ScbStep,
128
+ fo as ScbStepper,
129
+ V as ScbSubDrawer,
130
+ Gr as ScbSubMenu,
131
+ io as ScbSwitch,
132
+ Io as ScbTabs,
133
+ go as ScbTextField,
134
+ wo as ScbToc,
135
+ ko as ScbTocItem,
136
+ Ho as ScbTooltip,
137
+ ho as ScbViz
136
138
  };