scb-wc 0.1.3 → 0.1.4
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/README.md +194 -164
- package/all.js +91 -5
- package/blazor/CustomEvents.cs +83 -0
- package/blazor/ScbBlazorInteropBase.cs +4460 -1674
- package/blazor/scb-blazor-bridge.js +6827 -2805
- package/blazor/wrappers/ScbAccordion.razor +50 -0
- package/blazor/wrappers/ScbAppBar.razor +95 -0
- package/blazor/wrappers/ScbBreadcrumb.razor +59 -0
- package/blazor/wrappers/ScbCalendar.razor +100 -0
- package/blazor/wrappers/ScbCalendarCard.razor +189 -0
- package/blazor/wrappers/ScbCheckbox.razor +92 -0
- package/blazor/wrappers/ScbCollapse.razor +76 -0
- package/blazor/wrappers/ScbCookiesConsent.razor +106 -0
- package/blazor/wrappers/ScbDatepicker.razor +77 -0
- package/blazor/wrappers/ScbDialog.razor +72 -0
- package/blazor/wrappers/ScbDrawer.razor +64 -0
- package/blazor/wrappers/ScbDropZone.razor +168 -0
- package/blazor/wrappers/ScbDropdown.razor +76 -0
- package/blazor/wrappers/ScbHorizontalScroller.razor +137 -0
- package/blazor/wrappers/ScbList.razor +77 -0
- package/blazor/wrappers/ScbMenu.razor +71 -0
- package/blazor/wrappers/ScbNav.razor +92 -0
- package/blazor/wrappers/ScbNotificationCard.razor +122 -0
- package/blazor/wrappers/ScbOptionsMenu.razor +88 -0
- package/blazor/wrappers/ScbPagination.razor +80 -0
- package/blazor/wrappers/ScbRadioGroup.razor +94 -0
- package/blazor/wrappers/ScbSearch.razor +83 -0
- package/blazor/wrappers/ScbSegmentedButton.razor +85 -0
- package/blazor/wrappers/ScbSelect.razor +79 -0
- package/blazor/wrappers/ScbSlider.razor +96 -0
- package/blazor/wrappers/ScbSnackbar.razor +93 -0
- package/blazor/wrappers/ScbSwitch.razor +92 -0
- package/blazor/wrappers/ScbTable.razor +67 -0
- package/blazor/wrappers/ScbTableAdvanced.razor +78 -0
- package/blazor/wrappers/ScbTabs.razor +55 -0
- package/blazor/wrappers/ScbTextfield.razor +104 -0
- package/blazor/wrappers/ScbTooltip.razor +88 -0
- package/blazor/wrappers/ScbViz.razor +142 -0
- package/demo-data-preview.svg +12 -0
- package/dummy.png +0 -0
- package/fonts/inter/files/inter-latin-wght-italic.woff2 +0 -0
- package/fonts/inter/files/inter-latin-wght-normal.woff2 +0 -0
- package/fonts/material-symbols-outlined/files/material-symbols-outlined-latin-wght-normal.woff2 +0 -0
- package/index.js +91 -1
- package/mvc/components/all.js +90 -1
- package/mvc/components/scb-accordion/scb-accordion-item.js +211 -0
- package/mvc/components/scb-accordion/scb-accordion.js +44 -0
- package/mvc/components/scb-app-bar/scb-app-bar.js +166 -0
- package/mvc/components/scb-avatar/scb-avatar.js +111 -0
- package/mvc/components/scb-badge/scb-badge.js +80 -0
- package/mvc/components/scb-breadcrumb/scb-breadcrumb-item.js +14 -0
- package/mvc/components/scb-breadcrumb/scb-breadcrumb.js +96 -0
- package/mvc/components/scb-button/scb-button.js +268 -0
- package/mvc/components/scb-calendar/scb-calendar-event.js +6 -0
- package/mvc/components/scb-calendar/scb-calendar.js +168 -0
- package/mvc/components/scb-calendar-card/scb-calendar-card.js +346 -0
- package/mvc/components/scb-card/scb-card.js +761 -0
- package/mvc/components/scb-checkbox/scb-checkbox-group.js +33 -0
- package/mvc/components/scb-checkbox/scb-checkbox.js +140 -0
- package/mvc/components/scb-chevron/scb-chevron.js +121 -0
- package/mvc/components/scb-chip/scb-chip.js +66 -0
- package/mvc/components/scb-collapse/scb-collapse.js +89 -0
- package/mvc/components/scb-cookies-consent/scb-cookies-consent.js +78 -0
- package/mvc/components/scb-datepicker/scb-datepicker.js +296 -0
- package/mvc/components/scb-dialog/scb-dialog.js +265 -0
- package/mvc/components/scb-divider/scb-divider.js +69 -0
- package/mvc/components/scb-drawer/scb-drawer.js +128 -0
- package/mvc/components/scb-drop-zone/scb-drop-zone.js +555 -0
- package/mvc/components/scb-dropdown/scb-dropdown.js +306 -0
- package/mvc/components/scb-fab/scb-fab.js +108 -0
- package/mvc/components/scb-fact-card/scb-fact-card-content.js +46 -0
- package/mvc/components/scb-fact-card/scb-fact-card.js +226 -0
- package/mvc/components/scb-footer/scb-footer-section.js +3 -0
- package/mvc/components/scb-footer/scb-footer.js +210 -0
- package/mvc/components/scb-gallery-grid/scb-gallery-grid.js +131 -0
- package/mvc/components/scb-grid/scb-grid-item.js +11 -0
- package/mvc/components/scb-grid/scb-grid.js +98 -0
- package/mvc/components/scb-grid/scb-stack.js +33 -0
- package/mvc/components/scb-header/scb-header-menu-group.js +1 -0
- package/mvc/components/scb-header/scb-header-menu-item.js +5 -0
- package/mvc/components/scb-header/scb-header-tab.js +5 -0
- package/mvc/components/scb-header/scb-header-utility.js +1 -0
- package/mvc/components/scb-header/scb-header.js +681 -0
- package/mvc/components/scb-horizontal-scroller/scb-horizontal-scroller.js +196 -0
- package/mvc/components/scb-icon-button/scb-icon-button.js +171 -0
- package/mvc/components/scb-keyfigure-card/scb-keyfigure-card.js +212 -0
- package/mvc/components/scb-link/scb-link.js +61 -0
- package/mvc/components/scb-list/scb-list-item.js +153 -0
- package/mvc/components/scb-list/scb-list.js +26 -0
- package/mvc/components/scb-menu/scb-menu-item.js +205 -0
- package/mvc/components/scb-menu/scb-menu-section.js +42 -0
- package/mvc/components/scb-menu/scb-menu.js +81 -0
- package/mvc/components/scb-menu/scb-sub-menu.js +10 -0
- package/mvc/components/scb-nav/scb-nav-item.js +28 -0
- package/mvc/components/scb-nav/scb-nav.js +104 -0
- package/mvc/components/scb-notification-card/scb-notification-card.js +358 -0
- package/mvc/components/scb-options-menu/scb-options-menu-item.js +66 -0
- package/mvc/components/scb-options-menu/scb-options-menu.js +88 -0
- package/mvc/components/scb-options-menu/scb-options-sub-menu.js +34 -0
- package/mvc/components/scb-overlay/scb-overlay.js +49 -0
- package/mvc/components/scb-pagination/scb-pagination.js +312 -0
- package/mvc/components/scb-progress-indicator/scb-progress-indicator.js +87 -0
- package/mvc/components/scb-progress-stepper/scb-progress-step.js +147 -0
- package/mvc/components/scb-progress-stepper/scb-progress-stepper.js +62 -0
- package/mvc/components/scb-radio-button/scb-radio-button.js +132 -0
- package/mvc/components/scb-radio-button/scb-radio-group.js +43 -0
- package/mvc/components/scb-scrollspy/scb-scrollspy.js +79 -0
- package/mvc/components/scb-search/scb-search.js +292 -0
- package/mvc/components/scb-segmented-button/scb-segmented-button.js +32 -0
- package/mvc/components/scb-segmented-button/scb-segmented-item.js +74 -0
- package/mvc/components/scb-select/scb-select-option.js +61 -0
- package/mvc/components/scb-select/scb-select.js +284 -0
- package/mvc/components/scb-skeleton/scb-skeleton.js +38 -0
- package/mvc/components/scb-slider/scb-slider.js +27 -0
- package/mvc/components/scb-snackbar/scb-snackbar.js +128 -0
- package/mvc/components/scb-status-pill/scb-status-pill.js +45 -0
- package/mvc/components/scb-stepper/scb-step.js +239 -0
- package/mvc/components/scb-stepper/scb-stepper.js +139 -0
- package/mvc/components/scb-switch/scb-switch.js +59 -0
- package/mvc/components/scb-table/scb-table.js +51 -0
- package/mvc/components/scb-table-advanced/scb-table-advanced.js +76 -0
- package/mvc/components/scb-tabs/scb-primary-tab.js +6 -0
- package/mvc/components/scb-tabs/scb-secondary-tab.js +6 -0
- package/mvc/components/scb-tabs/scb-tabs.js +28 -0
- package/mvc/components/scb-textfield/scb-textfield.js +595 -0
- package/mvc/components/scb-toc/scb-toc-item.js +303 -0
- package/mvc/components/scb-toc/scb-toc.js +19 -0
- package/mvc/components/scb-tooltip/scb-tooltip.js +196 -0
- package/mvc/components/scb-vignette/scb-vignette.js +37 -0
- package/mvc/components/scb-viz/scb-viz-actions-runtime.js +2 -0
- package/mvc/components/scb-viz/scb-viz-print-runtime.js +98 -0
- package/mvc/components/scb-viz/scb-viz-series-differentiation-registry.js +1 -0
- package/mvc/components/scb-viz/scb-viz-series-differentiation-runtime.js +1 -0
- package/mvc/components/scb-viz/scb-viz-table-runtime.js +1 -0
- package/mvc/components/scb-viz/scb-viz.js +1140 -0
- package/mvc/fonts/inter/files/inter-latin-wght-italic.woff2 +0 -0
- package/mvc/fonts/inter/files/inter-latin-wght-normal.woff2 +0 -0
- package/mvc/fonts/material-symbols-outlined/files/material-symbols-outlined-latin-wght-normal.woff2 +0 -0
- package/mvc/scb-blazor-bridge.js +6827 -2805
- package/mvc/scb-logo.svg +20 -20
- package/mvc/scb-typography.css +1 -1
- package/mvc/scb-wc.css +3 -2
- package/mvc/scb.svg +13 -13
- package/mvc/vendor/assertClassBrand.js +1 -0
- package/mvc/vendor/classPrivateFieldGet2.js +1 -0
- package/mvc/vendor/decorate.js +1 -0
- package/mvc/vendor/preload-helper.js +1 -0
- package/mvc/vendor/vendor-lit.js +1 -0
- package/mvc/vendor/vendor-material.js +364 -0
- package/mvc/vendor/vendor.js +4 -0
- package/package.json +420 -77
- package/scb-accordion/scb-accordion-item.js +340 -0
- package/scb-accordion/scb-accordion.js +151 -0
- package/scb-app-bar/scb-app-bar.js +317 -0
- package/scb-avatar/scb-avatar.js +197 -0
- package/scb-badge/scb-badge.js +165 -0
- package/scb-breadcrumb/scb-breadcrumb-item.js +62 -0
- package/scb-breadcrumb/scb-breadcrumb.js +255 -0
- package/scb-button/scb-button.js +398 -0
- package/scb-calendar/scb-calendar-event.js +48 -0
- package/scb-calendar/scb-calendar.js +700 -0
- package/scb-calendar-card/scb-calendar-card.js +505 -0
- package/scb-card/scb-card.js +1231 -0
- package/scb-checkbox/scb-checkbox-group.js +104 -0
- package/scb-checkbox/scb-checkbox.js +316 -0
- package/scb-chevron/scb-chevron.js +144 -0
- package/scb-chip/scb-chip.js +234 -0
- package/scb-collapse/scb-collapse.js +231 -0
- package/scb-cookies-consent/scb-cookies-consent.js +164 -0
- package/scb-datepicker/scb-datepicker.js +470 -0
- package/scb-dialog/scb-dialog.js +574 -0
- package/scb-divider/scb-divider.js +119 -0
- package/scb-drawer/scb-drawer.js +297 -0
- package/scb-drop-zone/scb-drop-zone.js +965 -0
- package/scb-dropdown/scb-dropdown.js +598 -0
- package/scb-fab/scb-fab.js +190 -0
- package/scb-fact-card/scb-fact-card-content.js +82 -0
- package/scb-fact-card/scb-fact-card.js +376 -0
- package/scb-footer/scb-footer-section.js +23 -0
- package/scb-footer/scb-footer.js +343 -0
- package/scb-gallery-grid/scb-gallery-grid.js +242 -0
- package/scb-grid/scb-grid-item.js +81 -0
- package/scb-grid/scb-grid.js +200 -0
- package/scb-grid/scb-stack.js +120 -0
- package/scb-header/scb-header-menu-group.js +21 -0
- package/scb-header/scb-header-menu-item.js +22 -0
- package/scb-header/scb-header-tab.js +25 -0
- package/scb-header/scb-header-utility.js +27 -0
- package/scb-header/scb-header.js +1358 -0
- package/scb-horizontal-scroller/scb-horizontal-scroller.js +353 -0
- package/scb-icon-button/scb-icon-button.js +335 -0
- package/scb-keyfigure-card/scb-keyfigure-card.js +340 -0
- package/scb-link/scb-link.js +136 -0
- package/scb-list/scb-list-item.js +297 -0
- package/scb-list/scb-list.js +119 -0
- package/scb-menu/scb-menu-item.js +330 -0
- package/scb-menu/scb-menu-section.js +60 -0
- package/scb-menu/scb-menu.js +154 -0
- package/scb-menu/scb-sub-menu.js +36 -0
- package/scb-nav/scb-nav-item.js +96 -0
- package/scb-nav/scb-nav.js +263 -0
- package/scb-notification-card/scb-notification-card.js +479 -0
- package/scb-options-menu/scb-options-menu-item.js +218 -0
- package/scb-options-menu/scb-options-menu.js +237 -0
- package/scb-options-menu/scb-options-sub-menu.js +69 -0
- package/scb-overlay/scb-overlay.js +144 -0
- package/scb-pagination/scb-pagination.js +438 -0
- package/scb-progress-indicator/scb-progress-indicator.js +199 -0
- package/scb-progress-stepper/scb-progress-step.js +213 -0
- package/scb-progress-stepper/scb-progress-stepper.js +132 -0
- package/scb-radio-button/scb-radio-button.js +249 -0
- package/scb-radio-button/scb-radio-group.js +216 -0
- package/scb-scrollspy/scb-scrollspy.js +670 -0
- package/scb-search/scb-search.js +643 -0
- package/scb-segmented-button/scb-segmented-button.js +215 -0
- package/scb-segmented-button/scb-segmented-item.js +133 -0
- package/scb-select/scb-select-option.js +88 -0
- package/scb-select/scb-select.js +517 -0
- package/scb-skeleton/scb-skeleton.js +92 -0
- package/scb-slider/scb-slider.js +98 -0
- package/scb-snackbar/scb-snackbar.js +223 -0
- package/scb-status-pill/scb-status-pill.js +100 -0
- package/scb-stepper/scb-step.js +311 -0
- package/scb-stepper/scb-stepper.js +325 -0
- package/scb-switch/scb-switch.js +182 -0
- package/scb-table/scb-table.js +202 -0
- package/scb-table-advanced/scb-table-advanced.js +327 -0
- package/scb-tabs/scb-primary-tab.js +68 -0
- package/scb-tabs/scb-secondary-tab.js +68 -0
- package/scb-tabs/scb-tabs.js +100 -0
- package/scb-test-components/index.d.ts +90 -0
- package/scb-test-components/scb-accordion/scb-accordion-item.d.ts +39 -0
- package/scb-test-components/scb-accordion/scb-accordion.d.ts +27 -0
- package/scb-test-components/scb-app-bar/scb-app-bar.d.ts +25 -0
- package/scb-test-components/scb-avatar/scb-avatar.d.ts +37 -0
- package/scb-test-components/scb-badge/scb-badge.d.ts +28 -0
- package/scb-test-components/scb-breadcrumb/scb-breadcrumb-item.d.ts +15 -0
- package/scb-test-components/scb-breadcrumb/scb-breadcrumb.d.ts +27 -0
- package/scb-test-components/scb-button/scb-button.d.ts +40 -0
- package/scb-test-components/scb-calendar/scb-calendar-event.d.ts +15 -0
- package/scb-test-components/scb-calendar/scb-calendar.d.ts +77 -0
- package/scb-test-components/scb-calendar-card/scb-calendar-card.d.ts +45 -0
- package/scb-test-components/scb-card/scb-card.d.ts +101 -0
- package/scb-test-components/scb-checkbox/scb-checkbox-group.d.ts +23 -0
- package/scb-test-components/scb-checkbox/scb-checkbox.d.ts +52 -0
- package/scb-test-components/scb-chevron/scb-chevron.d.ts +13 -0
- package/scb-test-components/scb-chip/scb-chip.d.ts +61 -0
- package/scb-test-components/scb-collapse/scb-collapse.d.ts +29 -0
- package/scb-test-components/scb-cookies-consent/scb-cookies-consent.d.ts +23 -0
- package/scb-test-components/scb-datepicker/scb-datepicker.d.ts +39 -0
- package/scb-test-components/scb-dialog/scb-dialog.d.ts +72 -0
- package/scb-test-components/scb-divider/scb-divider.d.ts +34 -0
- package/scb-test-components/scb-drawer/scb-drawer.d.ts +72 -0
- package/scb-test-components/scb-drop-zone/scb-drop-zone.d.ts +143 -0
- package/scb-test-components/scb-dropdown/scb-dropdown.d.ts +70 -0
- package/scb-test-components/scb-fab/scb-fab.d.ts +42 -0
- package/scb-test-components/scb-fact-card/scb-fact-card-content.d.ts +15 -0
- package/scb-test-components/scb-fact-card/scb-fact-card.d.ts +49 -0
- package/scb-test-components/scb-footer/scb-footer-section.d.ts +20 -0
- package/scb-test-components/scb-footer/scb-footer.d.ts +31 -0
- package/scb-test-components/scb-gallery-grid/scb-gallery-grid.d.ts +20 -0
- package/scb-test-components/scb-grid/scb-grid-item.d.ts +32 -0
- package/scb-test-components/scb-grid/scb-grid.d.ts +36 -0
- package/scb-test-components/scb-grid/scb-stack.d.ts +32 -0
- package/scb-test-components/scb-header/scb-header-menu-group.d.ts +12 -0
- package/scb-test-components/scb-header/scb-header-menu-item.d.ts +13 -0
- package/scb-test-components/scb-header/scb-header-tab.d.ts +13 -0
- package/scb-test-components/scb-header/scb-header-utility.d.ts +14 -0
- package/scb-test-components/scb-header/scb-header.d.ts +132 -0
- package/scb-test-components/scb-horizontal-scroller/scb-horizontal-scroller.d.ts +47 -0
- package/scb-test-components/scb-icon-button/scb-icon-button.d.ts +76 -0
- package/scb-test-components/scb-keyfigure-card/scb-keyfigure-card.d.ts +46 -0
- package/scb-test-components/scb-link/scb-link.d.ts +25 -0
- package/scb-test-components/scb-list/scb-list-item.d.ts +38 -0
- package/scb-test-components/scb-list/scb-list.d.ts +26 -0
- package/scb-test-components/scb-menu/scb-menu-item.d.ts +52 -0
- package/scb-test-components/scb-menu/scb-menu-section.d.ts +11 -0
- package/scb-test-components/scb-menu/scb-menu.d.ts +25 -0
- package/scb-test-components/scb-menu/scb-sub-menu.d.ts +14 -0
- package/scb-test-components/scb-nav/scb-nav-item.d.ts +20 -0
- package/scb-test-components/scb-nav/scb-nav.d.ts +50 -0
- package/scb-test-components/scb-notification-card/scb-notification-card.d.ts +46 -0
- package/scb-test-components/scb-options-menu/scb-options-menu-item.d.ts +29 -0
- package/scb-test-components/scb-options-menu/scb-options-menu.d.ts +35 -0
- package/scb-test-components/scb-options-menu/scb-options-sub-menu.d.ts +11 -0
- package/scb-test-components/scb-overlay/scb-overlay.d.ts +24 -0
- package/scb-test-components/scb-pagination/scb-pagination.d.ts +36 -0
- package/scb-test-components/scb-progress-indicator/scb-progress-indicator.d.ts +28 -0
- package/scb-test-components/scb-progress-stepper/scb-progress-step.d.ts +21 -0
- package/scb-test-components/scb-progress-stepper/scb-progress-stepper.d.ts +22 -0
- package/scb-test-components/scb-radio-button/scb-radio-button.d.ts +26 -0
- package/scb-test-components/scb-radio-button/scb-radio-group.d.ts +49 -0
- package/scb-test-components/scb-scrollspy/scb-scrollspy.d.ts +217 -0
- package/scb-test-components/scb-search/scb-search.d.ts +96 -0
- package/scb-test-components/scb-segmented-button/scb-segmented-button.d.ts +80 -0
- package/scb-test-components/scb-segmented-button/scb-segmented-item.d.ts +21 -0
- package/scb-test-components/scb-select/scb-select-option.d.ts +16 -0
- package/scb-test-components/scb-select/scb-select.d.ts +62 -0
- package/scb-test-components/scb-skeleton/scb-skeleton.d.ts +25 -0
- package/scb-test-components/scb-slider/scb-slider.d.ts +28 -0
- package/scb-test-components/scb-snackbar/scb-snackbar.d.ts +24 -0
- package/scb-test-components/scb-status-pill/scb-status-pill.d.ts +22 -0
- package/scb-test-components/scb-stepper/scb-step.d.ts +22 -0
- package/scb-test-components/scb-stepper/scb-stepper.d.ts +47 -0
- package/scb-test-components/scb-switch/scb-switch.d.ts +52 -0
- package/scb-test-components/scb-table/scb-table.d.ts +24 -0
- package/scb-test-components/scb-table-advanced/scb-table-advanced.d.ts +39 -0
- package/scb-test-components/scb-tabs/scb-primary-tab.d.ts +15 -0
- package/scb-test-components/scb-tabs/scb-secondary-tab.d.ts +15 -0
- package/scb-test-components/scb-tabs/scb-tabs.d.ts +21 -0
- package/scb-test-components/scb-textfield/scb-textfield.d.ts +75 -0
- package/scb-test-components/scb-toc/scb-toc-item.d.ts +38 -0
- package/scb-test-components/scb-toc/scb-toc.d.ts +27 -0
- package/scb-test-components/scb-tooltip/scb-tooltip.d.ts +51 -0
- package/scb-test-components/scb-vignette/scb-vignette.d.ts +20 -0
- package/scb-test-components/scb-viz/scb-viz-actions-runtime.d.ts +26 -0
- package/scb-test-components/scb-viz/scb-viz-print-runtime.d.ts +27 -0
- package/scb-test-components/scb-viz/scb-viz-series-differentiation-registry.d.ts +21 -0
- package/scb-test-components/scb-viz/scb-viz-series-differentiation-runtime.d.ts +42 -0
- package/scb-test-components/scb-viz/scb-viz-table-runtime.d.ts +28 -0
- package/scb-test-components/scb-viz/scb-viz.d.ts +207 -0
- package/scb-textfield/scb-textfield.js +827 -0
- package/scb-toc/scb-toc-item.js +477 -0
- package/scb-toc/scb-toc.js +101 -0
- package/scb-tooltip/scb-tooltip.js +402 -0
- package/scb-typography.css +1 -1
- package/scb-vignette/scb-vignette.js +88 -0
- package/scb-viz/scb-viz-actions-runtime.js +143 -0
- package/scb-viz/scb-viz-print-runtime.js +121 -0
- package/scb-viz/scb-viz-series-differentiation-registry.js +117 -0
- package/scb-viz/scb-viz-series-differentiation-runtime.js +126 -0
- package/scb-viz/scb-viz-table-runtime.js +86 -0
- package/scb-viz/scb-viz.js +2195 -0
- package/scb-wc-selfhost.css +29 -0
- package/scb-wc.bundle.js +12893 -1099
- package/scb-wc.css +3 -2
- package/scb-wc.d.ts +180 -0
- package/index.d.ts +0 -0
- package/mvc/components/index.js +0 -1
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { __decorate as e } from "../_virtual/_@oxc-project_runtime@0.126.0/helpers/decorate.js";
|
|
2
|
+
import { LitElement as t, css as n, html as r, nothing as i } from "lit";
|
|
3
|
+
import { customElement as a, property as o } from "lit/decorators.js";
|
|
4
|
+
import "@material/web/slider/slider.js";
|
|
5
|
+
//#region src/scb-test-components/scb-slider/scb-slider.ts
|
|
6
|
+
var s = class extends t {
|
|
7
|
+
constructor(...e) {
|
|
8
|
+
super(...e), this.ticks = !1, this.step = 5, this.value = 20, this.range = !1, this.valueStart = 0, this.valueEnd = 100, this.min = 0, this.max = 100, this.labeled = !0, this.disabled = !1, this.name = "";
|
|
9
|
+
}
|
|
10
|
+
static {
|
|
11
|
+
this.styles = n`
|
|
12
|
+
:host {
|
|
13
|
+
display: block;
|
|
14
|
+
}
|
|
15
|
+
`;
|
|
16
|
+
}
|
|
17
|
+
_onInput(e) {
|
|
18
|
+
let t = e.target;
|
|
19
|
+
this.range ? (this.valueStart = t.valueStart, this.valueEnd = t.valueEnd) : this.value = t.value, this.dispatchEvent(new Event("input", {
|
|
20
|
+
bubbles: !0,
|
|
21
|
+
composed: !0
|
|
22
|
+
}));
|
|
23
|
+
}
|
|
24
|
+
_onChange(e) {
|
|
25
|
+
let t = e.target;
|
|
26
|
+
this.range ? (this.valueStart = t.valueStart, this.valueEnd = t.valueEnd) : this.value = t.value, this.dispatchEvent(new Event("change", {
|
|
27
|
+
bubbles: !0,
|
|
28
|
+
composed: !0
|
|
29
|
+
}));
|
|
30
|
+
}
|
|
31
|
+
render() {
|
|
32
|
+
let e = this.labeled ? i : this.ariaLabel || i;
|
|
33
|
+
return r`
|
|
34
|
+
<md-slider
|
|
35
|
+
?ticks=${this.ticks}
|
|
36
|
+
.value=${this.value}
|
|
37
|
+
.step=${this.step}
|
|
38
|
+
?range=${this.range}
|
|
39
|
+
.valueStart=${this.valueStart}
|
|
40
|
+
.valueEnd=${this.valueEnd}
|
|
41
|
+
.min=${this.min}
|
|
42
|
+
.max=${this.max}
|
|
43
|
+
?labeled=${this.labeled}
|
|
44
|
+
.valueLabel=${this.valueLabel}
|
|
45
|
+
.valueLabelStart=${this.valueLabelStart}
|
|
46
|
+
.valueLabelEnd=${this.valueLabelEnd}
|
|
47
|
+
?disabled=${this.disabled}
|
|
48
|
+
aria-label=${e}
|
|
49
|
+
name=${this.name}
|
|
50
|
+
name-start=${this.nameStart}
|
|
51
|
+
name-end=${this.nameEnd}
|
|
52
|
+
@input=${this._onInput}
|
|
53
|
+
@change=${this._onChange}
|
|
54
|
+
></md-slider>
|
|
55
|
+
`;
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
e([o({ type: Boolean })], s.prototype, "ticks", void 0), e([o({ type: Number })], s.prototype, "step", void 0), e([o({
|
|
59
|
+
type: Number,
|
|
60
|
+
reflect: !0
|
|
61
|
+
})], s.prototype, "value", void 0), e([o({ type: Boolean })], s.prototype, "range", void 0), e([o({
|
|
62
|
+
type: Number,
|
|
63
|
+
attribute: "value-start"
|
|
64
|
+
})], s.prototype, "valueStart", void 0), e([o({
|
|
65
|
+
type: Number,
|
|
66
|
+
attribute: "value-end"
|
|
67
|
+
})], s.prototype, "valueEnd", void 0), e([o({
|
|
68
|
+
type: Number,
|
|
69
|
+
reflect: !0
|
|
70
|
+
})], s.prototype, "min", void 0), e([o({
|
|
71
|
+
type: Number,
|
|
72
|
+
reflect: !0
|
|
73
|
+
})], s.prototype, "max", void 0), e([o({ type: Boolean })], s.prototype, "labeled", void 0), e([o({
|
|
74
|
+
type: String,
|
|
75
|
+
attribute: "value-label"
|
|
76
|
+
})], s.prototype, "valueLabel", void 0), e([o({
|
|
77
|
+
type: String,
|
|
78
|
+
attribute: "value-label-start"
|
|
79
|
+
})], s.prototype, "valueLabelStart", void 0), e([o({
|
|
80
|
+
type: String,
|
|
81
|
+
attribute: "value-label-end"
|
|
82
|
+
})], s.prototype, "valueLabelEnd", void 0), e([o({
|
|
83
|
+
type: Boolean,
|
|
84
|
+
reflect: !0
|
|
85
|
+
})], s.prototype, "disabled", void 0), e([o({
|
|
86
|
+
type: String,
|
|
87
|
+
reflect: !0
|
|
88
|
+
})], s.prototype, "name", void 0), e([o({
|
|
89
|
+
type: String,
|
|
90
|
+
attribute: "name-start",
|
|
91
|
+
reflect: !0
|
|
92
|
+
})], s.prototype, "nameStart", void 0), e([o({
|
|
93
|
+
type: String,
|
|
94
|
+
attribute: "name-end",
|
|
95
|
+
reflect: !0
|
|
96
|
+
})], s.prototype, "nameEnd", void 0), s = e([a("scb-slider")], s);
|
|
97
|
+
//#endregion
|
|
98
|
+
export { s as ScbSlider };
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
import { __decorate as e } from "../_virtual/_@oxc-project_runtime@0.126.0/helpers/decorate.js";
|
|
2
|
+
import "../scb-button/scb-button.js";
|
|
3
|
+
import "../scb-icon-button/scb-icon-button.js";
|
|
4
|
+
import { LitElement as t, css as n, html as r } from "lit";
|
|
5
|
+
import { customElement as i, property as a } from "lit/decorators.js";
|
|
6
|
+
//#region src/scb-test-components/scb-snackbar/scb-snackbar.ts
|
|
7
|
+
var o = class extends t {
|
|
8
|
+
constructor(...e) {
|
|
9
|
+
super(...e), this.message = "", this.open = !1, this.actionText = "", this.showClose = !1, this.fixed = !1, this.fadeout = !1, this.withLongerAction = !1, this.spacing = void 0, this.spacingTop = void 0, this.spacingBottom = void 0, this.spacingLeft = void 0, this.spacingRight = void 0;
|
|
10
|
+
}
|
|
11
|
+
static {
|
|
12
|
+
this.styles = n`
|
|
13
|
+
:host {
|
|
14
|
+
position: relative;
|
|
15
|
+
display: block;
|
|
16
|
+
min-width: 312px;
|
|
17
|
+
max-width: 560px;
|
|
18
|
+
font-family: var(--brand-font, 'Inter', sans-serif);
|
|
19
|
+
|
|
20
|
+
margin-block-start: var(--scb-snackbar-spacing-block-start, 0);
|
|
21
|
+
margin-block-end: var(--scb-snackbar-spacing-block-end, 0);
|
|
22
|
+
margin-inline-start: var(--scb-snackbar-spacing-inline-start, 0);
|
|
23
|
+
margin-inline-end: var(--scb-snackbar-spacing-inline-end, 0);
|
|
24
|
+
}
|
|
25
|
+
:host([fixed]) {
|
|
26
|
+
position: fixed;
|
|
27
|
+
z-index: 9999;
|
|
28
|
+
left: 50%;
|
|
29
|
+
bottom: 24px;
|
|
30
|
+
transform: translateX(-50%);
|
|
31
|
+
}
|
|
32
|
+
.snackbar {
|
|
33
|
+
background: var(--md-sys-color-inverse-surface);
|
|
34
|
+
color: var(--md-sys-color-inverse-on-surface);
|
|
35
|
+
border-radius: var(--md-sys-shape-corner-extra-small);
|
|
36
|
+
box-shadow:
|
|
37
|
+
0 4px 8px 3px rgba(0, 0, 0, 0.15),
|
|
38
|
+
0 1px 3px 0 rgba(0, 0, 0, 0.3);
|
|
39
|
+
display: flex;
|
|
40
|
+
align-items: center;
|
|
41
|
+
padding: 14px var(--spacing-5);
|
|
42
|
+
opacity: 0;
|
|
43
|
+
transition: opacity 0.3s, bottom 0.3s;
|
|
44
|
+
pointer-events: auto;
|
|
45
|
+
position: relative;
|
|
46
|
+
}
|
|
47
|
+
.snackbar.longer-action {
|
|
48
|
+
flex-direction: column;
|
|
49
|
+
align-items: flex-start;
|
|
50
|
+
}
|
|
51
|
+
.snackbar .actions {
|
|
52
|
+
display: flex;
|
|
53
|
+
margin-top: 10px;
|
|
54
|
+
width: 100%;
|
|
55
|
+
justify-content: flex-end;
|
|
56
|
+
}
|
|
57
|
+
.message.no-actions {
|
|
58
|
+
margin-right: 0;
|
|
59
|
+
}
|
|
60
|
+
:host([open]) .snackbar {
|
|
61
|
+
opacity: 1;
|
|
62
|
+
pointer-events: auto;
|
|
63
|
+
}
|
|
64
|
+
.message {
|
|
65
|
+
flex: 1 1 auto;
|
|
66
|
+
margin-right: var(--spacing-2);
|
|
67
|
+
font-size: var(--md-sys-typescale-body-medium-size);
|
|
68
|
+
line-height: var(--md-sys-typescale-body-medium-line-height);
|
|
69
|
+
letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
|
70
|
+
}
|
|
71
|
+
.snackbar scb-icon-button {
|
|
72
|
+
--md-icon-button-icon-color: var(--md-sys-color-inverse-on-surface);
|
|
73
|
+
--md-icon-button-hover-icon-color: var(--md-sys-color-inverse-on-surface);
|
|
74
|
+
--md-icon-button-hover-state-layer-color: var(
|
|
75
|
+
--md-sys-color-surface-container
|
|
76
|
+
);
|
|
77
|
+
--md-icon-button-focus-icon-color: var(
|
|
78
|
+
--md-sys-color-inverse-on-surface
|
|
79
|
+
);
|
|
80
|
+
--md-icon-button-pressed-icon-color: var(
|
|
81
|
+
--md-sys-color-inverse-on-surface
|
|
82
|
+
);
|
|
83
|
+
--md-focus-ring-color: var(--md-sys-color-inverse-on-surface);
|
|
84
|
+
}
|
|
85
|
+
.snackbar scb-button {
|
|
86
|
+
--md-text-button-label-text-color: var(--md-sys-color-inverse-primary);
|
|
87
|
+
--md-text-button-hover-label-text-color: var(
|
|
88
|
+
--md-sys-color-inverse-primary
|
|
89
|
+
);
|
|
90
|
+
--md-text-button-hover-state-layer-color: var(
|
|
91
|
+
--md-sys-color-surface-container
|
|
92
|
+
);
|
|
93
|
+
--md-text-button-focus-label-text-color: var(
|
|
94
|
+
--md-sys-color-inverse-primary
|
|
95
|
+
);
|
|
96
|
+
--md-text-button-pressed-label-text-color: var(
|
|
97
|
+
--md-sys-color-inverse-primary
|
|
98
|
+
);
|
|
99
|
+
--md-focus-ring-color: var(--md-sys-color-inverse-on-surface);
|
|
100
|
+
}
|
|
101
|
+
`;
|
|
102
|
+
}
|
|
103
|
+
mapSpacingToken(e) {
|
|
104
|
+
if (!e) return;
|
|
105
|
+
let t = String(e).trim();
|
|
106
|
+
if (t) return /^\d+$/.test(t) ? `var(--spacing-${Math.max(0, Math.min(14, parseInt(t, 10)))})` : t;
|
|
107
|
+
}
|
|
108
|
+
applySpacing() {
|
|
109
|
+
let e = this.mapSpacingToken(this.spacing), t = this.mapSpacingToken(this.spacingTop) ?? e, n = this.mapSpacingToken(this.spacingBottom) ?? e, r = this.mapSpacingToken(this.spacingLeft), i = this.mapSpacingToken(this.spacingRight);
|
|
110
|
+
t ? this.style.setProperty("--scb-snackbar-spacing-block-start", t) : this.style.removeProperty("--scb-snackbar-spacing-block-start"), n ? this.style.setProperty("--scb-snackbar-spacing-block-end", n) : this.style.removeProperty("--scb-snackbar-spacing-block-end"), r ? this.style.setProperty("--scb-snackbar-spacing-inline-start", r) : this.style.removeProperty("--scb-snackbar-spacing-inline-start"), i ? this.style.setProperty("--scb-snackbar-spacing-inline-end", i) : this.style.removeProperty("--scb-snackbar-spacing-inline-end");
|
|
111
|
+
}
|
|
112
|
+
connectedCallback() {
|
|
113
|
+
super.connectedCallback(), this.applySpacing();
|
|
114
|
+
}
|
|
115
|
+
handleAction() {
|
|
116
|
+
this.dispatchEvent(new CustomEvent("snackbar-action", {
|
|
117
|
+
bubbles: !0,
|
|
118
|
+
composed: !0
|
|
119
|
+
})), this.dispatchEvent(new CustomEvent("snackbaraction", {
|
|
120
|
+
bubbles: !0,
|
|
121
|
+
composed: !0
|
|
122
|
+
})), this.open = !1;
|
|
123
|
+
}
|
|
124
|
+
handleClose() {
|
|
125
|
+
this.open = !1;
|
|
126
|
+
}
|
|
127
|
+
updated(e) {
|
|
128
|
+
super.updated(e), e.has("open") && (this.open ? (this.dispatchEvent(new CustomEvent("snackbar-open", {
|
|
129
|
+
bubbles: !0,
|
|
130
|
+
composed: !0
|
|
131
|
+
})), this.dispatchEvent(new CustomEvent("snackbaropen", {
|
|
132
|
+
bubbles: !0,
|
|
133
|
+
composed: !0
|
|
134
|
+
}))) : (this.dispatchEvent(new CustomEvent("snackbar-close", {
|
|
135
|
+
bubbles: !0,
|
|
136
|
+
composed: !0
|
|
137
|
+
})), this.dispatchEvent(new CustomEvent("snackbarclose", {
|
|
138
|
+
bubbles: !0,
|
|
139
|
+
composed: !0
|
|
140
|
+
})))), (e.has("open") || e.has("fadeout")) && (this.open && this.fadeout ? (window.clearTimeout(this._fadeoutTimer), this._fadeoutTimer = window.setTimeout(() => {
|
|
141
|
+
this.open = !1;
|
|
142
|
+
}, 5e3)) : window.clearTimeout(this._fadeoutTimer)), (e.has("spacing") || e.has("spacingTop") || e.has("spacingBottom") || e.has("spacingLeft") || e.has("spacingRight")) && this.applySpacing();
|
|
143
|
+
}
|
|
144
|
+
render() {
|
|
145
|
+
let e = !!this.actionText, t = !!this.showClose, n = "snackbar";
|
|
146
|
+
return !e && !t && (n += " no-actions"), this.withLongerAction && (n += " longer-action"), r`
|
|
147
|
+
<div class="${n}" ?hidden=${!this.open}>
|
|
148
|
+
${this.withLongerAction ? r`
|
|
149
|
+
<div class="message">${this.message}</div>
|
|
150
|
+
<div class="actions">
|
|
151
|
+
${e ? r`
|
|
152
|
+
<scb-button
|
|
153
|
+
variant="text"
|
|
154
|
+
label=${this.actionText}
|
|
155
|
+
@click=${this.handleAction}
|
|
156
|
+
></scb-button>
|
|
157
|
+
` : ""}
|
|
158
|
+
${t ? r`
|
|
159
|
+
<scb-icon-button
|
|
160
|
+
icon="close"
|
|
161
|
+
@click=${this.handleClose}
|
|
162
|
+
aria-label="Stäng"
|
|
163
|
+
></scb-icon-button>
|
|
164
|
+
` : ""}
|
|
165
|
+
</div>
|
|
166
|
+
` : r`
|
|
167
|
+
<span class="message">${this.message}</span>
|
|
168
|
+
${e ? r`
|
|
169
|
+
<scb-button
|
|
170
|
+
variant="text"
|
|
171
|
+
label=${this.actionText}
|
|
172
|
+
@click=${this.handleAction}
|
|
173
|
+
></scb-button>
|
|
174
|
+
` : ""}
|
|
175
|
+
${t ? r`
|
|
176
|
+
<scb-icon-button
|
|
177
|
+
icon="close"
|
|
178
|
+
@click=${this.handleClose}
|
|
179
|
+
aria-label="Stäng"
|
|
180
|
+
></scb-icon-button>
|
|
181
|
+
` : ""}
|
|
182
|
+
`}
|
|
183
|
+
</div>
|
|
184
|
+
`;
|
|
185
|
+
}
|
|
186
|
+
};
|
|
187
|
+
e([a({ type: String })], o.prototype, "message", void 0), e([a({
|
|
188
|
+
type: Boolean,
|
|
189
|
+
reflect: !0
|
|
190
|
+
})], o.prototype, "open", void 0), e([a({
|
|
191
|
+
type: String,
|
|
192
|
+
attribute: "action-text"
|
|
193
|
+
})], o.prototype, "actionText", void 0), e([a({
|
|
194
|
+
type: Boolean,
|
|
195
|
+
attribute: "show-close"
|
|
196
|
+
})], o.prototype, "showClose", void 0), e([a({
|
|
197
|
+
type: Boolean,
|
|
198
|
+
reflect: !0
|
|
199
|
+
})], o.prototype, "fixed", void 0), e([a({ type: Boolean })], o.prototype, "fadeout", void 0), e([a({
|
|
200
|
+
type: Boolean,
|
|
201
|
+
attribute: "with-longer-action"
|
|
202
|
+
})], o.prototype, "withLongerAction", void 0), e([a({
|
|
203
|
+
type: String,
|
|
204
|
+
reflect: !0
|
|
205
|
+
})], o.prototype, "spacing", void 0), e([a({
|
|
206
|
+
type: String,
|
|
207
|
+
attribute: "spacing-top",
|
|
208
|
+
reflect: !0
|
|
209
|
+
})], o.prototype, "spacingTop", void 0), e([a({
|
|
210
|
+
type: String,
|
|
211
|
+
attribute: "spacing-bottom",
|
|
212
|
+
reflect: !0
|
|
213
|
+
})], o.prototype, "spacingBottom", void 0), e([a({
|
|
214
|
+
type: String,
|
|
215
|
+
attribute: "spacing-left",
|
|
216
|
+
reflect: !0
|
|
217
|
+
})], o.prototype, "spacingLeft", void 0), e([a({
|
|
218
|
+
type: String,
|
|
219
|
+
attribute: "spacing-right",
|
|
220
|
+
reflect: !0
|
|
221
|
+
})], o.prototype, "spacingRight", void 0), o = e([i("scb-snackbar")], o);
|
|
222
|
+
//#endregion
|
|
223
|
+
export { o as ScbSnackbar };
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { __decorate as e } from "../_virtual/_@oxc-project_runtime@0.126.0/helpers/decorate.js";
|
|
2
|
+
import { LitElement as t, css as n, html as r } from "lit";
|
|
3
|
+
import { customElement as i, property as a } from "lit/decorators.js";
|
|
4
|
+
import "@material/web/icon/icon.js";
|
|
5
|
+
//#region src/scb-test-components/scb-status-pill/scb-status-pill.ts
|
|
6
|
+
var o = class extends t {
|
|
7
|
+
constructor(...e) {
|
|
8
|
+
super(...e), this.status = "", this.label = "", this.showIcon = !1, this.spacing = void 0, this.spacingTop = void 0, this.spacingBottom = void 0, this.spacingLeft = void 0, this.spacingRight = void 0;
|
|
9
|
+
}
|
|
10
|
+
static {
|
|
11
|
+
this.styles = n`
|
|
12
|
+
:host {
|
|
13
|
+
display: inline-block;
|
|
14
|
+
border-radius: var(--md-sys-shape-corner-full);
|
|
15
|
+
padding: 6px var(--spacing-5);
|
|
16
|
+
border: none;
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
user-select: none;
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
gap: var(--spacing-3);
|
|
22
|
+
width: fit-content;
|
|
23
|
+
font-family: var(--brand-font);
|
|
24
|
+
|
|
25
|
+
margin-block-start: var(--scb-status-pill-spacing-block-start, 0);
|
|
26
|
+
margin-block-end: var(--scb-status-pill-spacing-block-end, 0);
|
|
27
|
+
margin-inline-start: var(--scb-status-pill-spacing-inline-start, 0);
|
|
28
|
+
margin-inline-end: var(--scb-status-pill-spacing-inline-end, 0);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.label {
|
|
32
|
+
font-size: var(--md-sys-typescale-label-medium-size);
|
|
33
|
+
line-height: var(--md-sys-typescale-label-medium-line-height);
|
|
34
|
+
font-weight: var(--md-sys-typescale-label-medium-weight);
|
|
35
|
+
letter-spacing: var(--md-sys-typescale-label-medium-tracking);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
:host([status='success']) {
|
|
39
|
+
background: var(--md-sys-color-success-container);
|
|
40
|
+
color: var(--md-sys-color-on-success-container);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
:host([status='warning']) {
|
|
44
|
+
background: var(--md-sys-color-warning-container);
|
|
45
|
+
color: var(--md-sys-color-on-warning-container);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
:host([status='error']) {
|
|
49
|
+
background: var(--md-sys-color-error-container);
|
|
50
|
+
color: var(--md-sys-color-on-error-container);
|
|
51
|
+
}
|
|
52
|
+
`;
|
|
53
|
+
}
|
|
54
|
+
mapSpacingToken(e) {
|
|
55
|
+
if (!e) return;
|
|
56
|
+
let t = String(e).trim();
|
|
57
|
+
if (t) return /^\d+$/.test(t) ? `var(--spacing-${Math.max(0, Math.min(14, parseInt(t, 10)))})` : t;
|
|
58
|
+
}
|
|
59
|
+
applySpacing() {
|
|
60
|
+
let e = this.mapSpacingToken(this.spacing), t = this.mapSpacingToken(this.spacingTop) ?? e, n = this.mapSpacingToken(this.spacingBottom) ?? e, r = this.mapSpacingToken(this.spacingLeft), i = this.mapSpacingToken(this.spacingRight);
|
|
61
|
+
t ? this.style.setProperty("--scb-status-pill-spacing-block-start", t) : this.style.removeProperty("--scb-status-pill-spacing-block-start"), n ? this.style.setProperty("--scb-status-pill-spacing-block-end", n) : this.style.removeProperty("--scb-status-pill-spacing-block-end"), r ? this.style.setProperty("--scb-status-pill-spacing-inline-start", r) : this.style.removeProperty("--scb-status-pill-spacing-inline-start"), i ? this.style.setProperty("--scb-status-pill-spacing-inline-end", i) : this.style.removeProperty("--scb-status-pill-spacing-inline-end");
|
|
62
|
+
}
|
|
63
|
+
connectedCallback() {
|
|
64
|
+
super.connectedCallback(), this.applySpacing();
|
|
65
|
+
}
|
|
66
|
+
updated(e) {
|
|
67
|
+
super.updated(e), (e.has("spacing") || e.has("spacingTop") || e.has("spacingBottom") || e.has("spacingLeft") || e.has("spacingRight")) && this.applySpacing();
|
|
68
|
+
}
|
|
69
|
+
render() {
|
|
70
|
+
return r`
|
|
71
|
+
${this.showIcon ? this.status === "success" ? r`<md-icon>check_circle</md-icon>` : this.status === "warning" ? r`<md-icon>warning</md-icon>` : this.status === "error" ? r`<md-icon>error</md-icon>` : "" : ""}
|
|
72
|
+
<span class="label">${this.label}</span>
|
|
73
|
+
`;
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
e([a({ type: String })], o.prototype, "status", void 0), e([a({ type: String })], o.prototype, "label", void 0), e([a({
|
|
77
|
+
type: Boolean,
|
|
78
|
+
attribute: "show-icon"
|
|
79
|
+
})], o.prototype, "showIcon", void 0), e([a({
|
|
80
|
+
type: String,
|
|
81
|
+
reflect: !0
|
|
82
|
+
})], o.prototype, "spacing", void 0), e([a({
|
|
83
|
+
type: String,
|
|
84
|
+
attribute: "spacing-top",
|
|
85
|
+
reflect: !0
|
|
86
|
+
})], o.prototype, "spacingTop", void 0), e([a({
|
|
87
|
+
type: String,
|
|
88
|
+
attribute: "spacing-bottom",
|
|
89
|
+
reflect: !0
|
|
90
|
+
})], o.prototype, "spacingBottom", void 0), e([a({
|
|
91
|
+
type: String,
|
|
92
|
+
attribute: "spacing-left",
|
|
93
|
+
reflect: !0
|
|
94
|
+
})], o.prototype, "spacingLeft", void 0), e([a({
|
|
95
|
+
type: String,
|
|
96
|
+
attribute: "spacing-right",
|
|
97
|
+
reflect: !0
|
|
98
|
+
})], o.prototype, "spacingRight", void 0), o = e([i("scb-status-pill")], o);
|
|
99
|
+
//#endregion
|
|
100
|
+
export { o as ScbStatusPill };
|