scb-wc 0.1.2 → 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.
Files changed (339) hide show
  1. package/README.md +194 -164
  2. package/all.js +91 -5
  3. package/blazor/CustomEvents.cs +83 -0
  4. package/blazor/ScbBlazorInteropBase.cs +4460 -1663
  5. package/blazor/scb-blazor-bridge.js +6827 -2517
  6. package/blazor/wrappers/ScbAccordion.razor +50 -0
  7. package/blazor/wrappers/ScbAppBar.razor +95 -0
  8. package/blazor/wrappers/ScbBreadcrumb.razor +59 -0
  9. package/blazor/wrappers/ScbCalendar.razor +100 -0
  10. package/blazor/wrappers/ScbCalendarCard.razor +189 -0
  11. package/blazor/wrappers/ScbCheckbox.razor +92 -0
  12. package/blazor/wrappers/ScbCollapse.razor +76 -0
  13. package/blazor/wrappers/ScbCookiesConsent.razor +106 -0
  14. package/blazor/wrappers/ScbDatepicker.razor +77 -0
  15. package/blazor/wrappers/ScbDialog.razor +72 -0
  16. package/blazor/wrappers/ScbDrawer.razor +64 -0
  17. package/blazor/wrappers/ScbDropZone.razor +168 -0
  18. package/blazor/wrappers/ScbDropdown.razor +76 -0
  19. package/blazor/wrappers/ScbHorizontalScroller.razor +137 -0
  20. package/blazor/wrappers/ScbList.razor +77 -0
  21. package/blazor/wrappers/ScbMenu.razor +71 -0
  22. package/blazor/wrappers/ScbNav.razor +92 -0
  23. package/blazor/wrappers/ScbNotificationCard.razor +122 -0
  24. package/blazor/wrappers/ScbOptionsMenu.razor +88 -0
  25. package/blazor/wrappers/ScbPagination.razor +80 -0
  26. package/blazor/wrappers/ScbRadioGroup.razor +94 -0
  27. package/blazor/wrappers/ScbSearch.razor +83 -0
  28. package/blazor/wrappers/ScbSegmentedButton.razor +85 -0
  29. package/blazor/wrappers/ScbSelect.razor +79 -0
  30. package/blazor/wrappers/ScbSlider.razor +96 -0
  31. package/blazor/wrappers/ScbSnackbar.razor +93 -0
  32. package/blazor/wrappers/ScbSwitch.razor +92 -0
  33. package/blazor/wrappers/ScbTable.razor +67 -0
  34. package/blazor/wrappers/ScbTableAdvanced.razor +78 -0
  35. package/blazor/wrappers/ScbTabs.razor +55 -0
  36. package/blazor/wrappers/ScbTextfield.razor +104 -0
  37. package/blazor/wrappers/ScbTooltip.razor +88 -0
  38. package/blazor/wrappers/ScbViz.razor +142 -0
  39. package/demo-data-preview.svg +12 -0
  40. package/dummy.png +0 -0
  41. package/fonts/inter/files/inter-latin-wght-italic.woff2 +0 -0
  42. package/fonts/inter/files/inter-latin-wght-normal.woff2 +0 -0
  43. package/fonts/material-symbols-outlined/files/material-symbols-outlined-latin-wght-normal.woff2 +0 -0
  44. package/index.js +91 -1
  45. package/mvc/components/all.js +90 -1
  46. package/mvc/components/scb-accordion/scb-accordion-item.js +211 -0
  47. package/mvc/components/scb-accordion/scb-accordion.js +44 -0
  48. package/mvc/components/scb-app-bar/scb-app-bar.js +166 -0
  49. package/mvc/components/scb-avatar/scb-avatar.js +111 -0
  50. package/mvc/components/scb-badge/scb-badge.js +80 -0
  51. package/mvc/components/scb-breadcrumb/scb-breadcrumb-item.js +14 -0
  52. package/mvc/components/scb-breadcrumb/scb-breadcrumb.js +96 -0
  53. package/mvc/components/scb-button/scb-button.js +268 -0
  54. package/mvc/components/scb-calendar/scb-calendar-event.js +6 -0
  55. package/mvc/components/scb-calendar/scb-calendar.js +168 -0
  56. package/mvc/components/scb-calendar-card/scb-calendar-card.js +346 -0
  57. package/mvc/components/scb-card/scb-card.js +761 -0
  58. package/mvc/components/scb-checkbox/scb-checkbox-group.js +33 -0
  59. package/mvc/components/scb-checkbox/scb-checkbox.js +140 -0
  60. package/mvc/components/scb-chevron/scb-chevron.js +121 -0
  61. package/mvc/components/scb-chip/scb-chip.js +66 -0
  62. package/mvc/components/scb-collapse/scb-collapse.js +89 -0
  63. package/mvc/components/scb-cookies-consent/scb-cookies-consent.js +78 -0
  64. package/mvc/components/scb-datepicker/scb-datepicker.js +296 -0
  65. package/mvc/components/scb-dialog/scb-dialog.js +265 -0
  66. package/mvc/components/scb-divider/scb-divider.js +69 -0
  67. package/mvc/components/scb-drawer/scb-drawer.js +128 -0
  68. package/mvc/components/scb-drop-zone/scb-drop-zone.js +555 -0
  69. package/mvc/components/scb-dropdown/scb-dropdown.js +306 -0
  70. package/mvc/components/scb-fab/scb-fab.js +108 -0
  71. package/mvc/components/scb-fact-card/scb-fact-card-content.js +46 -0
  72. package/mvc/components/scb-fact-card/scb-fact-card.js +226 -0
  73. package/mvc/components/scb-footer/scb-footer-section.js +3 -0
  74. package/mvc/components/scb-footer/scb-footer.js +210 -0
  75. package/mvc/components/scb-gallery-grid/scb-gallery-grid.js +131 -0
  76. package/mvc/components/scb-grid/scb-grid-item.js +11 -0
  77. package/mvc/components/scb-grid/scb-grid.js +98 -0
  78. package/mvc/components/scb-grid/scb-stack.js +33 -0
  79. package/mvc/components/scb-header/scb-header-menu-group.js +1 -0
  80. package/mvc/components/scb-header/scb-header-menu-item.js +5 -0
  81. package/mvc/components/scb-header/scb-header-tab.js +5 -0
  82. package/mvc/components/scb-header/scb-header-utility.js +1 -0
  83. package/mvc/components/scb-header/scb-header.js +681 -0
  84. package/mvc/components/scb-horizontal-scroller/scb-horizontal-scroller.js +196 -0
  85. package/mvc/components/scb-icon-button/scb-icon-button.js +171 -0
  86. package/mvc/components/scb-keyfigure-card/scb-keyfigure-card.js +212 -0
  87. package/mvc/components/scb-link/scb-link.js +61 -0
  88. package/mvc/components/scb-list/scb-list-item.js +153 -0
  89. package/mvc/components/scb-list/scb-list.js +26 -0
  90. package/mvc/components/scb-menu/scb-menu-item.js +205 -0
  91. package/mvc/components/scb-menu/scb-menu-section.js +42 -0
  92. package/mvc/components/scb-menu/scb-menu.js +81 -0
  93. package/mvc/components/scb-menu/scb-sub-menu.js +10 -0
  94. package/mvc/components/scb-nav/scb-nav-item.js +28 -0
  95. package/mvc/components/scb-nav/scb-nav.js +104 -0
  96. package/mvc/components/scb-notification-card/scb-notification-card.js +358 -0
  97. package/mvc/components/scb-options-menu/scb-options-menu-item.js +66 -0
  98. package/mvc/components/scb-options-menu/scb-options-menu.js +88 -0
  99. package/mvc/components/scb-options-menu/scb-options-sub-menu.js +34 -0
  100. package/mvc/components/scb-overlay/scb-overlay.js +49 -0
  101. package/mvc/components/scb-pagination/scb-pagination.js +312 -0
  102. package/mvc/components/scb-progress-indicator/scb-progress-indicator.js +87 -0
  103. package/mvc/components/scb-progress-stepper/scb-progress-step.js +147 -0
  104. package/mvc/components/scb-progress-stepper/scb-progress-stepper.js +62 -0
  105. package/mvc/components/scb-radio-button/scb-radio-button.js +132 -0
  106. package/mvc/components/scb-radio-button/scb-radio-group.js +43 -0
  107. package/mvc/components/scb-scrollspy/scb-scrollspy.js +79 -0
  108. package/mvc/components/scb-search/scb-search.js +292 -0
  109. package/mvc/components/scb-segmented-button/scb-segmented-button.js +32 -0
  110. package/mvc/components/scb-segmented-button/scb-segmented-item.js +74 -0
  111. package/mvc/components/scb-select/scb-select-option.js +61 -0
  112. package/mvc/components/scb-select/scb-select.js +284 -0
  113. package/mvc/components/scb-skeleton/scb-skeleton.js +38 -0
  114. package/mvc/components/scb-slider/scb-slider.js +27 -0
  115. package/mvc/components/scb-snackbar/scb-snackbar.js +128 -0
  116. package/mvc/components/scb-status-pill/scb-status-pill.js +45 -0
  117. package/mvc/components/scb-stepper/scb-step.js +239 -0
  118. package/mvc/components/scb-stepper/scb-stepper.js +139 -0
  119. package/mvc/components/scb-switch/scb-switch.js +59 -0
  120. package/mvc/components/scb-table/scb-table.js +51 -0
  121. package/mvc/components/scb-table-advanced/scb-table-advanced.js +76 -0
  122. package/mvc/components/scb-tabs/scb-primary-tab.js +6 -0
  123. package/mvc/components/scb-tabs/scb-secondary-tab.js +6 -0
  124. package/mvc/components/scb-tabs/scb-tabs.js +28 -0
  125. package/mvc/components/scb-textfield/scb-textfield.js +595 -0
  126. package/mvc/components/scb-toc/scb-toc-item.js +303 -0
  127. package/mvc/components/scb-toc/scb-toc.js +19 -0
  128. package/mvc/components/scb-tooltip/scb-tooltip.js +196 -0
  129. package/mvc/components/scb-vignette/scb-vignette.js +37 -0
  130. package/mvc/components/scb-viz/scb-viz-actions-runtime.js +2 -0
  131. package/mvc/components/scb-viz/scb-viz-print-runtime.js +98 -0
  132. package/mvc/components/scb-viz/scb-viz-series-differentiation-registry.js +1 -0
  133. package/mvc/components/scb-viz/scb-viz-series-differentiation-runtime.js +1 -0
  134. package/mvc/components/scb-viz/scb-viz-table-runtime.js +1 -0
  135. package/mvc/components/scb-viz/scb-viz.js +1140 -0
  136. package/mvc/fonts/inter/files/inter-latin-wght-italic.woff2 +0 -0
  137. package/mvc/fonts/inter/files/inter-latin-wght-normal.woff2 +0 -0
  138. package/mvc/fonts/material-symbols-outlined/files/material-symbols-outlined-latin-wght-normal.woff2 +0 -0
  139. package/mvc/scb-blazor-bridge.js +6827 -2517
  140. package/mvc/scb-logo.svg +20 -20
  141. package/mvc/scb-typography.css +1 -1
  142. package/mvc/scb-wc.css +3 -2
  143. package/mvc/scb.svg +13 -13
  144. package/mvc/vendor/assertClassBrand.js +1 -0
  145. package/mvc/vendor/classPrivateFieldGet2.js +1 -0
  146. package/mvc/vendor/decorate.js +1 -0
  147. package/mvc/vendor/preload-helper.js +1 -0
  148. package/mvc/vendor/vendor-lit.js +1 -0
  149. package/mvc/vendor/vendor-material.js +364 -0
  150. package/mvc/vendor/vendor.js +4 -0
  151. package/package.json +420 -77
  152. package/scb-accordion/scb-accordion-item.js +340 -0
  153. package/scb-accordion/scb-accordion.js +151 -0
  154. package/scb-app-bar/scb-app-bar.js +317 -0
  155. package/scb-avatar/scb-avatar.js +197 -0
  156. package/scb-badge/scb-badge.js +165 -0
  157. package/scb-breadcrumb/scb-breadcrumb-item.js +62 -0
  158. package/scb-breadcrumb/scb-breadcrumb.js +255 -0
  159. package/scb-button/scb-button.js +398 -0
  160. package/scb-calendar/scb-calendar-event.js +48 -0
  161. package/scb-calendar/scb-calendar.js +700 -0
  162. package/scb-calendar-card/scb-calendar-card.js +505 -0
  163. package/scb-card/scb-card.js +1231 -0
  164. package/scb-checkbox/scb-checkbox-group.js +104 -0
  165. package/scb-checkbox/scb-checkbox.js +316 -0
  166. package/scb-chevron/scb-chevron.js +144 -0
  167. package/scb-chip/scb-chip.js +234 -0
  168. package/scb-collapse/scb-collapse.js +231 -0
  169. package/scb-cookies-consent/scb-cookies-consent.js +164 -0
  170. package/scb-datepicker/scb-datepicker.js +470 -0
  171. package/scb-dialog/scb-dialog.js +574 -0
  172. package/scb-divider/scb-divider.js +119 -0
  173. package/scb-drawer/scb-drawer.js +297 -0
  174. package/scb-drop-zone/scb-drop-zone.js +965 -0
  175. package/scb-dropdown/scb-dropdown.js +598 -0
  176. package/scb-fab/scb-fab.js +190 -0
  177. package/scb-fact-card/scb-fact-card-content.js +82 -0
  178. package/scb-fact-card/scb-fact-card.js +376 -0
  179. package/scb-footer/scb-footer-section.js +23 -0
  180. package/scb-footer/scb-footer.js +343 -0
  181. package/scb-gallery-grid/scb-gallery-grid.js +242 -0
  182. package/scb-grid/scb-grid-item.js +81 -0
  183. package/scb-grid/scb-grid.js +200 -0
  184. package/scb-grid/scb-stack.js +120 -0
  185. package/scb-header/scb-header-menu-group.js +21 -0
  186. package/scb-header/scb-header-menu-item.js +22 -0
  187. package/scb-header/scb-header-tab.js +25 -0
  188. package/scb-header/scb-header-utility.js +27 -0
  189. package/scb-header/scb-header.js +1358 -0
  190. package/scb-horizontal-scroller/scb-horizontal-scroller.js +353 -0
  191. package/scb-icon-button/scb-icon-button.js +335 -0
  192. package/scb-keyfigure-card/scb-keyfigure-card.js +340 -0
  193. package/scb-link/scb-link.js +136 -0
  194. package/scb-list/scb-list-item.js +297 -0
  195. package/scb-list/scb-list.js +119 -0
  196. package/scb-menu/scb-menu-item.js +330 -0
  197. package/scb-menu/scb-menu-section.js +60 -0
  198. package/scb-menu/scb-menu.js +154 -0
  199. package/scb-menu/scb-sub-menu.js +36 -0
  200. package/scb-nav/scb-nav-item.js +96 -0
  201. package/scb-nav/scb-nav.js +263 -0
  202. package/scb-notification-card/scb-notification-card.js +479 -0
  203. package/scb-options-menu/scb-options-menu-item.js +218 -0
  204. package/scb-options-menu/scb-options-menu.js +237 -0
  205. package/scb-options-menu/scb-options-sub-menu.js +69 -0
  206. package/scb-overlay/scb-overlay.js +144 -0
  207. package/scb-pagination/scb-pagination.js +438 -0
  208. package/scb-progress-indicator/scb-progress-indicator.js +199 -0
  209. package/scb-progress-stepper/scb-progress-step.js +213 -0
  210. package/scb-progress-stepper/scb-progress-stepper.js +132 -0
  211. package/scb-radio-button/scb-radio-button.js +249 -0
  212. package/scb-radio-button/scb-radio-group.js +216 -0
  213. package/scb-scrollspy/scb-scrollspy.js +670 -0
  214. package/scb-search/scb-search.js +643 -0
  215. package/scb-segmented-button/scb-segmented-button.js +215 -0
  216. package/scb-segmented-button/scb-segmented-item.js +133 -0
  217. package/scb-select/scb-select-option.js +88 -0
  218. package/scb-select/scb-select.js +517 -0
  219. package/scb-skeleton/scb-skeleton.js +92 -0
  220. package/scb-slider/scb-slider.js +98 -0
  221. package/scb-snackbar/scb-snackbar.js +223 -0
  222. package/scb-status-pill/scb-status-pill.js +100 -0
  223. package/scb-stepper/scb-step.js +311 -0
  224. package/scb-stepper/scb-stepper.js +325 -0
  225. package/scb-switch/scb-switch.js +182 -0
  226. package/scb-table/scb-table.js +202 -0
  227. package/scb-table-advanced/scb-table-advanced.js +327 -0
  228. package/scb-tabs/scb-primary-tab.js +68 -0
  229. package/scb-tabs/scb-secondary-tab.js +68 -0
  230. package/scb-tabs/scb-tabs.js +100 -0
  231. package/scb-test-components/index.d.ts +90 -0
  232. package/scb-test-components/scb-accordion/scb-accordion-item.d.ts +39 -0
  233. package/scb-test-components/scb-accordion/scb-accordion.d.ts +27 -0
  234. package/scb-test-components/scb-app-bar/scb-app-bar.d.ts +25 -0
  235. package/scb-test-components/scb-avatar/scb-avatar.d.ts +37 -0
  236. package/scb-test-components/scb-badge/scb-badge.d.ts +28 -0
  237. package/scb-test-components/scb-breadcrumb/scb-breadcrumb-item.d.ts +15 -0
  238. package/scb-test-components/scb-breadcrumb/scb-breadcrumb.d.ts +27 -0
  239. package/scb-test-components/scb-button/scb-button.d.ts +40 -0
  240. package/scb-test-components/scb-calendar/scb-calendar-event.d.ts +15 -0
  241. package/scb-test-components/scb-calendar/scb-calendar.d.ts +77 -0
  242. package/scb-test-components/scb-calendar-card/scb-calendar-card.d.ts +45 -0
  243. package/scb-test-components/scb-card/scb-card.d.ts +101 -0
  244. package/scb-test-components/scb-checkbox/scb-checkbox-group.d.ts +23 -0
  245. package/scb-test-components/scb-checkbox/scb-checkbox.d.ts +52 -0
  246. package/scb-test-components/scb-chevron/scb-chevron.d.ts +13 -0
  247. package/scb-test-components/scb-chip/scb-chip.d.ts +61 -0
  248. package/scb-test-components/scb-collapse/scb-collapse.d.ts +29 -0
  249. package/scb-test-components/scb-cookies-consent/scb-cookies-consent.d.ts +23 -0
  250. package/scb-test-components/scb-datepicker/scb-datepicker.d.ts +39 -0
  251. package/scb-test-components/scb-dialog/scb-dialog.d.ts +72 -0
  252. package/scb-test-components/scb-divider/scb-divider.d.ts +34 -0
  253. package/scb-test-components/scb-drawer/scb-drawer.d.ts +72 -0
  254. package/scb-test-components/scb-drop-zone/scb-drop-zone.d.ts +143 -0
  255. package/scb-test-components/scb-dropdown/scb-dropdown.d.ts +70 -0
  256. package/scb-test-components/scb-fab/scb-fab.d.ts +42 -0
  257. package/scb-test-components/scb-fact-card/scb-fact-card-content.d.ts +15 -0
  258. package/scb-test-components/scb-fact-card/scb-fact-card.d.ts +49 -0
  259. package/scb-test-components/scb-footer/scb-footer-section.d.ts +20 -0
  260. package/scb-test-components/scb-footer/scb-footer.d.ts +31 -0
  261. package/scb-test-components/scb-gallery-grid/scb-gallery-grid.d.ts +20 -0
  262. package/scb-test-components/scb-grid/scb-grid-item.d.ts +32 -0
  263. package/scb-test-components/scb-grid/scb-grid.d.ts +36 -0
  264. package/scb-test-components/scb-grid/scb-stack.d.ts +32 -0
  265. package/scb-test-components/scb-header/scb-header-menu-group.d.ts +12 -0
  266. package/scb-test-components/scb-header/scb-header-menu-item.d.ts +13 -0
  267. package/scb-test-components/scb-header/scb-header-tab.d.ts +13 -0
  268. package/scb-test-components/scb-header/scb-header-utility.d.ts +14 -0
  269. package/scb-test-components/scb-header/scb-header.d.ts +132 -0
  270. package/scb-test-components/scb-horizontal-scroller/scb-horizontal-scroller.d.ts +47 -0
  271. package/scb-test-components/scb-icon-button/scb-icon-button.d.ts +76 -0
  272. package/scb-test-components/scb-keyfigure-card/scb-keyfigure-card.d.ts +46 -0
  273. package/scb-test-components/scb-link/scb-link.d.ts +25 -0
  274. package/scb-test-components/scb-list/scb-list-item.d.ts +38 -0
  275. package/scb-test-components/scb-list/scb-list.d.ts +26 -0
  276. package/scb-test-components/scb-menu/scb-menu-item.d.ts +52 -0
  277. package/scb-test-components/scb-menu/scb-menu-section.d.ts +11 -0
  278. package/scb-test-components/scb-menu/scb-menu.d.ts +25 -0
  279. package/scb-test-components/scb-menu/scb-sub-menu.d.ts +14 -0
  280. package/scb-test-components/scb-nav/scb-nav-item.d.ts +20 -0
  281. package/scb-test-components/scb-nav/scb-nav.d.ts +50 -0
  282. package/scb-test-components/scb-notification-card/scb-notification-card.d.ts +46 -0
  283. package/scb-test-components/scb-options-menu/scb-options-menu-item.d.ts +29 -0
  284. package/scb-test-components/scb-options-menu/scb-options-menu.d.ts +35 -0
  285. package/scb-test-components/scb-options-menu/scb-options-sub-menu.d.ts +11 -0
  286. package/scb-test-components/scb-overlay/scb-overlay.d.ts +24 -0
  287. package/scb-test-components/scb-pagination/scb-pagination.d.ts +36 -0
  288. package/scb-test-components/scb-progress-indicator/scb-progress-indicator.d.ts +28 -0
  289. package/scb-test-components/scb-progress-stepper/scb-progress-step.d.ts +21 -0
  290. package/scb-test-components/scb-progress-stepper/scb-progress-stepper.d.ts +22 -0
  291. package/scb-test-components/scb-radio-button/scb-radio-button.d.ts +26 -0
  292. package/scb-test-components/scb-radio-button/scb-radio-group.d.ts +49 -0
  293. package/scb-test-components/scb-scrollspy/scb-scrollspy.d.ts +217 -0
  294. package/scb-test-components/scb-search/scb-search.d.ts +96 -0
  295. package/scb-test-components/scb-segmented-button/scb-segmented-button.d.ts +80 -0
  296. package/scb-test-components/scb-segmented-button/scb-segmented-item.d.ts +21 -0
  297. package/scb-test-components/scb-select/scb-select-option.d.ts +16 -0
  298. package/scb-test-components/scb-select/scb-select.d.ts +62 -0
  299. package/scb-test-components/scb-skeleton/scb-skeleton.d.ts +25 -0
  300. package/scb-test-components/scb-slider/scb-slider.d.ts +28 -0
  301. package/scb-test-components/scb-snackbar/scb-snackbar.d.ts +24 -0
  302. package/scb-test-components/scb-status-pill/scb-status-pill.d.ts +22 -0
  303. package/scb-test-components/scb-stepper/scb-step.d.ts +22 -0
  304. package/scb-test-components/scb-stepper/scb-stepper.d.ts +47 -0
  305. package/scb-test-components/scb-switch/scb-switch.d.ts +52 -0
  306. package/scb-test-components/scb-table/scb-table.d.ts +24 -0
  307. package/scb-test-components/scb-table-advanced/scb-table-advanced.d.ts +39 -0
  308. package/scb-test-components/scb-tabs/scb-primary-tab.d.ts +15 -0
  309. package/scb-test-components/scb-tabs/scb-secondary-tab.d.ts +15 -0
  310. package/scb-test-components/scb-tabs/scb-tabs.d.ts +21 -0
  311. package/scb-test-components/scb-textfield/scb-textfield.d.ts +75 -0
  312. package/scb-test-components/scb-toc/scb-toc-item.d.ts +38 -0
  313. package/scb-test-components/scb-toc/scb-toc.d.ts +27 -0
  314. package/scb-test-components/scb-tooltip/scb-tooltip.d.ts +51 -0
  315. package/scb-test-components/scb-vignette/scb-vignette.d.ts +20 -0
  316. package/scb-test-components/scb-viz/scb-viz-actions-runtime.d.ts +26 -0
  317. package/scb-test-components/scb-viz/scb-viz-print-runtime.d.ts +27 -0
  318. package/scb-test-components/scb-viz/scb-viz-series-differentiation-registry.d.ts +21 -0
  319. package/scb-test-components/scb-viz/scb-viz-series-differentiation-runtime.d.ts +42 -0
  320. package/scb-test-components/scb-viz/scb-viz-table-runtime.d.ts +28 -0
  321. package/scb-test-components/scb-viz/scb-viz.d.ts +207 -0
  322. package/scb-textfield/scb-textfield.js +827 -0
  323. package/scb-toc/scb-toc-item.js +477 -0
  324. package/scb-toc/scb-toc.js +101 -0
  325. package/scb-tooltip/scb-tooltip.js +402 -0
  326. package/scb-typography.css +1 -1
  327. package/scb-vignette/scb-vignette.js +88 -0
  328. package/scb-viz/scb-viz-actions-runtime.js +143 -0
  329. package/scb-viz/scb-viz-print-runtime.js +121 -0
  330. package/scb-viz/scb-viz-series-differentiation-registry.js +117 -0
  331. package/scb-viz/scb-viz-series-differentiation-runtime.js +126 -0
  332. package/scb-viz/scb-viz-table-runtime.js +86 -0
  333. package/scb-viz/scb-viz.js +2195 -0
  334. package/scb-wc-selfhost.css +29 -0
  335. package/scb-wc.bundle.js +12893 -1099
  336. package/scb-wc.css +3 -2
  337. package/scb-wc.d.ts +180 -0
  338. package/index.d.ts +0 -0
  339. package/mvc/components/index.js +0 -1
@@ -0,0 +1,398 @@
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/icon/icon.js";
5
+ import "@material/web/button/filled-button.js";
6
+ import "@material/web/button/outlined-button.js";
7
+ import "@material/web/button/filled-tonal-button.js";
8
+ import "@material/web/button/text-button.js";
9
+ //#region src/scb-test-components/scb-button/scb-button.ts
10
+ var s = class extends t {
11
+ constructor(...e) {
12
+ super(...e), this.variant = "filled", this.size = "medium", this.type = "button", this.label = "Button", this.trailingIcon = !1, this.icon = "", this.iconFilled = !1, this.disabled = !1, this.fullWidth = !1, this.href = "", this.target = "", this.rel = "", this.spacing = void 0, this.spacingTop = void 0, this.spacingBottom = void 0, this.spacingLeft = void 0, this.spacingRight = void 0;
13
+ }
14
+ __getMdHost() {
15
+ return this.renderRoot.querySelector("md-filled-button, md-outlined-button, md-filled-tonal-button, md-text-button");
16
+ }
17
+ __getInnerNativeButton(e) {
18
+ return e?.shadowRoot?.querySelector("button") ?? null;
19
+ }
20
+ __syncAriaToInner() {
21
+ let e = this.__getMdHost(), t = this.__getInnerNativeButton(e);
22
+ if (!e || !t) return;
23
+ let n = (this.getAttribute("aria-label") || "").trim(), r = (e.getAttribute("aria-label") || "").trim(), i = this.label.trim() === "" ? (this.icon || "").trim() : "", a = n || r || i;
24
+ a ? t.setAttribute("aria-label", a) : t.removeAttribute("aria-label");
25
+ let o = this.getAttribute("aria-controls");
26
+ o === null ? t.removeAttribute("aria-controls") : t.setAttribute("aria-controls", o);
27
+ let s = this.getAttribute("aria-expanded");
28
+ s === null ? t.removeAttribute("aria-expanded") : t.setAttribute("aria-expanded", s), e.removeAttribute("aria-label"), e.removeAttribute("aria-controls"), e.removeAttribute("aria-expanded"), this.removeAttribute("aria-expanded"), this.__ariaObserver?.disconnect(), this.__ariaObserver = new MutationObserver((e) => {
29
+ let t = this.__getMdHost(), n = this.__getInnerNativeButton(t);
30
+ if (!(!t || !n)) {
31
+ for (let r of e) {
32
+ if (r.type !== "attributes" || !r.attributeName) continue;
33
+ let e = r.attributeName, i = this.getAttribute(e);
34
+ if (e === "aria-label") {
35
+ let e = (t.getAttribute("aria-label") || "").trim(), r = (i || e || (this.label.trim() === "" ? (this.icon || "").trim() : "")).trim();
36
+ r ? n.setAttribute("aria-label", r) : n.removeAttribute("aria-label"), t.removeAttribute("aria-label");
37
+ } else (e === "aria-controls" || e === "aria-expanded") && (i === null ? n.removeAttribute(e) : n.setAttribute(e, i), e === "aria-expanded" && this.removeAttribute("aria-expanded"));
38
+ }
39
+ t.removeAttribute("aria-label"), t.removeAttribute("aria-controls"), t.removeAttribute("aria-expanded");
40
+ }
41
+ }), this.__ariaObserver.observe(this, {
42
+ attributes: !0,
43
+ attributeFilter: [
44
+ "aria-label",
45
+ "aria-controls",
46
+ "aria-expanded"
47
+ ]
48
+ });
49
+ }
50
+ firstUpdated() {
51
+ (this.type === "submit" || this.type === "reset") && this.addEventListener("click", () => {
52
+ if (!this.disabled) {
53
+ let e = this.closest("form");
54
+ e && (this.type === "submit" && e.requestSubmit(), this.type === "reset" && e.reset());
55
+ }
56
+ }), this.__syncAriaToInner(), this.#e();
57
+ }
58
+ updated(e) {
59
+ e.has("variant") && this.__syncAriaToInner(), (e.has("spacing") || e.has("spacingTop") || e.has("spacingBottom") || e.has("spacingLeft") || e.has("spacingRight")) && this.#e();
60
+ }
61
+ disconnectedCallback() {
62
+ this.__ariaObserver?.disconnect(), super.disconnectedCallback();
63
+ }
64
+ mapSpacingToken(e) {
65
+ if (!e) return;
66
+ let t = String(e).trim();
67
+ if (t) return /^\d+$/.test(t) ? `var(--spacing-${Math.max(0, Math.min(14, parseInt(t, 10)))})` : t;
68
+ }
69
+ #e() {
70
+ 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);
71
+ t ? this.style.setProperty("--scb-button-spacing-block-start", t) : this.style.removeProperty("--scb-button-spacing-block-start"), n ? this.style.setProperty("--scb-button-spacing-block-end", n) : this.style.removeProperty("--scb-button-spacing-block-end"), r ? this.style.setProperty("--scb-button-spacing-inline-start", r) : this.style.removeProperty("--scb-button-spacing-inline-start"), i ? this.style.setProperty("--scb-button-spacing-inline-end", i) : this.style.removeProperty("--scb-button-spacing-inline-end");
72
+ }
73
+ static get styles() {
74
+ return n`
75
+ /* Gör hosten stretchbar i t.ex. flex/grid */
76
+ :host {
77
+ display: inline-flex;
78
+ block-size: var(--scb-button-block-size, auto);
79
+ margin-block-start: var(--scb-button-spacing-block-start, 0);
80
+ margin-block-end: var(--scb-button-spacing-block-end, 0);
81
+ margin-inline-start: var(--scb-button-spacing-inline-start, 0);
82
+ margin-inline-end: var(--scb-button-spacing-inline-end, 0);
83
+ --scb-button-font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
84
+ --scb-button-padding-block: calc(var(--spacing-4) - var(--spacing-1));
85
+ --scb-button-label-text-line-height: var(--md-sys-typescale-label-small-line-height);
86
+ --scb-button-container-height: calc(
87
+ var(--scb-button-label-text-line-height) + var(--scb-button-padding-block) + var(--scb-button-padding-block)
88
+ );
89
+
90
+
91
+ --scb-button-padding-inline: var(--spacing-5);
92
+ --scb-button-icon-edge-space: var(--spacing-5);
93
+ --scb-button-icon-gap: var(--spacing-3);
94
+ --scb-button-icon-size: var(--icon-size-small, 20px);
95
+
96
+ /* Label, mappar till md-sys-typescale-label-small */
97
+ --md-filled-button-label-text-font: var(--md-sys-typescale-label-small-font);
98
+ --md-filled-button-label-text-size: var(--md-sys-typescale-label-small-size);
99
+ --md-filled-button-label-text-line-height: var(--md-sys-typescale-label-small-line-height);
100
+ --md-filled-button-label-text-tracking: var(--md-sys-typescale-label-small-tracking);
101
+ --md-filled-button-label-text-weight: var(--md-sys-typescale-label-small-weight);
102
+
103
+ --md-outlined-button-label-text-font: var(--md-sys-typescale-label-small-font);
104
+ --md-outlined-button-label-text-size: var(--md-sys-typescale-label-small-size);
105
+ --md-outlined-button-label-text-line-height: var(--md-sys-typescale-label-small-line-height);
106
+ --md-outlined-button-label-text-tracking: var(--md-sys-typescale-label-small-tracking);
107
+ --md-outlined-button-label-text-weight: var(--md-sys-typescale-label-small-weight);
108
+
109
+ --md-filled-tonal-button-label-text-font: var(--md-sys-typescale-label-small-font);
110
+ --md-filled-tonal-button-label-text-size: var(--md-sys-typescale-label-small-size);
111
+ --md-filled-tonal-button-label-text-line-height: var(--md-sys-typescale-label-small-line-height);
112
+ --md-filled-tonal-button-label-text-tracking: var(--md-sys-typescale-label-small-tracking);
113
+ --md-filled-tonal-button-label-text-weight: var(--md-sys-typescale-label-small-weight);
114
+
115
+ --md-text-button-label-text-font: var(--md-sys-typescale-label-small-font);
116
+ --md-text-button-label-text-size: var(--md-sys-typescale-label-small-size);
117
+ --md-text-button-label-text-line-height: var(--md-sys-typescale-label-small-line-height);
118
+ --md-text-button-label-text-tracking: var(--md-sys-typescale-label-small-tracking);
119
+ --md-text-button-label-text-weight: var(--md-sys-typescale-label-small-weight);
120
+
121
+ /* Grundpadding (utan ikon) */
122
+ --md-filled-button-leading-space: var(--scb-button-padding-inline);
123
+ --md-filled-button-trailing-space: var(--scb-button-padding-inline);
124
+ --md-outlined-button-leading-space: var(--scb-button-padding-inline);
125
+ --md-outlined-button-trailing-space: var(--scb-button-padding-inline);
126
+ --md-filled-tonal-button-leading-space: var(--scb-button-padding-inline);
127
+ --md-filled-tonal-button-trailing-space: var(--scb-button-padding-inline);
128
+ --md-text-button-leading-space: var(--scb-button-padding-inline);
129
+ --md-text-button-trailing-space: var(--scb-button-padding-inline);
130
+
131
+ /* Med ikon: avstånd till ytterkanter + mellan ikon och label */
132
+ --md-filled-button-with-leading-icon-leading-space: var(--scb-button-icon-edge-space);
133
+ --md-filled-button-with-leading-icon-trailing-space: var(--scb-button-padding-inline);
134
+ --md-filled-button-with-trailing-icon-leading-space: var(--scb-button-padding-inline);
135
+ --md-filled-button-with-trailing-icon-trailing-space: var(--scb-button-icon-edge-space);
136
+
137
+ --md-outlined-button-with-leading-icon-leading-space: var(--scb-button-icon-edge-space);
138
+ --md-outlined-button-with-leading-icon-trailing-space: var(--scb-button-padding-inline);
139
+ --md-outlined-button-with-trailing-icon-leading-space: var(--scb-button-padding-inline);
140
+ --md-outlined-button-with-trailing-icon-trailing-space: var(--scb-button-icon-edge-space);
141
+
142
+ --md-filled-tonal-button-with-leading-icon-leading-space: var(--scb-button-icon-edge-space);
143
+ --md-filled-tonal-button-with-leading-icon-trailing-space: var(--scb-button-padding-inline);
144
+ --md-filled-tonal-button-with-trailing-icon-leading-space: var(--scb-button-padding-inline);
145
+ --md-filled-tonal-button-with-trailing-icon-trailing-space: var(--scb-button-icon-edge-space);
146
+
147
+ --md-text-button-with-leading-icon-leading-space: var(--scb-button-icon-edge-space);
148
+ --md-text-button-with-leading-icon-trailing-space: var(--scb-button-padding-inline);
149
+ --md-text-button-with-trailing-icon-leading-space: var(--scb-button-padding-inline);
150
+ --md-text-button-with-trailing-icon-trailing-space: var(--scb-button-icon-edge-space);
151
+
152
+ /* Ikonstorlek */
153
+ --md-filled-button-icon-size: var(--scb-button-icon-size);
154
+ --md-outlined-button-icon-size: var(--scb-button-icon-size);
155
+ --md-filled-tonal-button-icon-size: var(--scb-button-icon-size);
156
+ --md-text-button-icon-size: var(--scb-button-icon-size);
157
+ }
158
+
159
+ :host([size='small']) {
160
+ --scb-button-padding-block: calc(var(--spacing-3) - var(--spacing-1));
161
+ --scb-button-padding-inline: var(--spacing-4);
162
+ --scb-button-icon-edge-space: var(--spacing-4);
163
+ --scb-button-icon-gap: var(--spacing-2);
164
+ --scb-button-icon-size: var(--icon-size-small, 20px);
165
+ }
166
+
167
+ :host([size='large']) {
168
+ --scb-button-padding-block: var(--spacing-5);
169
+ --scb-button-label-text-line-height: var(--md-sys-typescale-label-medium-line-height);
170
+
171
+ --scb-button-padding-inline: var(--spacing-7);
172
+ --scb-button-icon-edge-space: var(--spacing-7);
173
+ --scb-button-icon-gap: var(--spacing-3);
174
+ --scb-button-icon-size: var(--icon-size-medium, 24px);
175
+
176
+ /* Label, mappar till md-sys-typescale-label-medium */
177
+ --md-filled-button-label-text-font: var(--md-sys-typescale-label-medium-font);
178
+ --md-filled-button-label-text-size: var(--md-sys-typescale-label-medium-size);
179
+ --md-filled-button-label-text-line-height: var(--md-sys-typescale-label-medium-line-height);
180
+ --md-filled-button-label-text-tracking: var(--md-sys-typescale-label-medium-tracking);
181
+ --md-filled-button-label-text-weight: var(--md-sys-typescale-label-medium-weight);
182
+
183
+ --md-outlined-button-label-text-font: var(--md-sys-typescale-label-medium-font);
184
+ --md-outlined-button-label-text-size: var(--md-sys-typescale-label-medium-size);
185
+ --md-outlined-button-label-text-line-height: var(--md-sys-typescale-label-medium-line-height);
186
+ --md-outlined-button-label-text-tracking: var(--md-sys-typescale-label-medium-tracking);
187
+ --md-outlined-button-label-text-weight: var(--md-sys-typescale-label-medium-weight);
188
+
189
+ --md-filled-tonal-button-label-text-font: var(--md-sys-typescale-label-medium-font);
190
+ --md-filled-tonal-button-label-text-size: var(--md-sys-typescale-label-medium-size);
191
+ --md-filled-tonal-button-label-text-line-height: var(--md-sys-typescale-label-medium-line-height);
192
+ --md-filled-tonal-button-label-text-tracking: var(--md-sys-typescale-label-medium-tracking);
193
+ --md-filled-tonal-button-label-text-weight: var(--md-sys-typescale-label-medium-weight);
194
+
195
+ --md-text-button-label-text-font: var(--md-sys-typescale-label-medium-font);
196
+ --md-text-button-label-text-size: var(--md-sys-typescale-label-medium-size);
197
+ --md-text-button-label-text-line-height: var(--md-sys-typescale-label-medium-line-height);
198
+ --md-text-button-label-text-tracking: var(--md-sys-typescale-label-medium-tracking);
199
+ --md-text-button-label-text-weight: var(--md-sys-typescale-label-medium-weight);
200
+ }
201
+
202
+ :host([icon-filled]) {
203
+ --scb-button-font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
204
+ }
205
+
206
+ md-icon {
207
+ --md-icon-font-variation-settings: var(--scb-button-font-variation-settings) !important;
208
+ font-variation-settings: var(--scb-button-font-variation-settings) !important;
209
+ }
210
+
211
+ :host([full-width]) {
212
+ display: flex;
213
+ inline-size: 100%;
214
+ }
215
+
216
+ /* Låt inre md-knappar fylla hostens höjd */
217
+ md-filled-button,
218
+ md-outlined-button,
219
+ md-filled-tonal-button,
220
+ md-text-button {
221
+ block-size: var(--scb-button-block-size, auto);
222
+ gap: var(--scb-button-icon-gap);
223
+ --md-filled-button-container-height: var(--scb-button-block-size, var(--scb-button-container-height));
224
+ --md-outlined-button-container-height: var(--scb-button-block-size, var(--scb-button-container-height));
225
+ --md-filled-tonal-button-container-height: var(--scb-button-block-size, var(--scb-button-container-height));
226
+ --md-text-button-container-height: var(--scb-button-block-size, var(--scb-button-container-height));
227
+ }
228
+
229
+ :host([full-width]) md-filled-button,
230
+ :host([full-width]) md-outlined-button,
231
+ :host([full-width]) md-filled-tonal-button,
232
+ :host([full-width]) md-text-button {
233
+ inline-size: 100%;
234
+ flex: 1 1 auto;
235
+ }
236
+
237
+ /* Errorvarianter */
238
+ /*
239
+ md-filled-button[variant='error'],
240
+ md-outlined-button[variant='error'],
241
+ md-filled-tonal-button[variant='error'],
242
+ md-text-button[variant='error'] {
243
+ --md-sys-color-primary: var(--md-sys-color-error);
244
+ --md-sys-color-on-primary: var(--md-sys-color-on-error);
245
+ }
246
+ */
247
+
248
+ /* Outlined – röd outline vid error + tjockare vid hover */
249
+ /*
250
+ md-outlined-button[variant='error'] {
251
+ --_outline-color: var(--md-sys-color-error);
252
+ --md-outlined-button-pressed-outline-color: var(--md-sys-color-error);
253
+ }
254
+ */
255
+ /* md-outlined-button[variant='error']:hover, */
256
+ md-outlined-button:hover {
257
+ --md-outlined-button-outline-width: var(--spacing-1, 1px);
258
+ }
259
+
260
+ /* Filled-tonal – error-färger */
261
+ /*
262
+ md-filled-tonal-button[variant='error'] {
263
+ --md-filled-tonal-button-container-color: var(--md-sys-color-error-container);
264
+ --md-filled-tonal-button-label-text-color: var(--md-sys-color-on-error-container);
265
+ --md-filled-tonal-button-hover-label-text-color: var(--md-sys-color-on-error-container);
266
+ --md-filled-tonal-button-pressed-label-text-color: var(--md-sys-color-on-error-container);
267
+ --md-filled-tonal-button-focus-label-text-color: var(--md-sys-color-on-error-container);
268
+ --md-filled-tonal-button-icon-color: var(--md-sys-color-on-error-container);
269
+ --md-filled-tonal-button-hover-icon-color: var(--md-sys-color-on-error-container);
270
+ --md-filled-tonal-button-pressed-icon-color: var(--md-sys-color-on-error-container);
271
+ --md-filled-tonal-button-focus-icon-color: var(--md-sys-color-on-error-container);
272
+ --md-filled-tonal-button-hover-state-layer-color: var(--md-sys-color-on-error-container);
273
+ --md-filled-tonal-button-pressed-state-layer-color: var(--md-sys-color-on-error-container);
274
+ }
275
+ @media (prefers-color-scheme: dark) {
276
+ md-filled-tonal-button[variant='error'] {
277
+ --md-filled-tonal-button-container-color: var(--md-sys-color-on-error);
278
+ }
279
+ }
280
+ */
281
+ `;
282
+ }
283
+ render() {
284
+ let e = !!this.icon?.trim(), t = e ? r`<md-icon slot="icon" part="icon" ?filled=${this.iconFilled} aria-hidden="true">${this.icon}</md-icon>` : i, n = i, a = this.label.trim() === "" ? this.icon : void 0;
285
+ switch (this.variant) {
286
+ case "filled": return r`
287
+ <md-filled-button
288
+ type=${this.type}
289
+ variant=${n}
290
+ ?trailing-icon=${this.trailingIcon}
291
+ ?disabled=${this.disabled}
292
+ aria-label=${a}
293
+ href=${this.href || i}
294
+ target=${this.target || i}
295
+ rel=${this.rel || i}
296
+ >
297
+ ${e && !this.trailingIcon ? t : i}
298
+ ${this.label}
299
+ ${e && this.trailingIcon ? t : i}
300
+ </md-filled-button>
301
+ `;
302
+ case "outlined": return r`
303
+ <md-outlined-button
304
+ type=${this.type}
305
+ variant=${n}
306
+ ?trailing-icon=${this.trailingIcon}
307
+ ?disabled=${this.disabled}
308
+ aria-label=${a}
309
+ href=${this.href || i}
310
+ target=${this.target || i}
311
+ rel=${this.rel || i}
312
+ >
313
+ ${e && !this.trailingIcon ? t : i}
314
+ ${this.label}
315
+ ${e && this.trailingIcon ? t : i}
316
+ </md-outlined-button>
317
+ `;
318
+ case "filled-tonal": return r`
319
+ <md-filled-tonal-button
320
+ type=${this.type}
321
+ variant=${n}
322
+ ?trailing-icon=${this.trailingIcon}
323
+ ?disabled=${this.disabled}
324
+ aria-label=${a}
325
+ href=${this.href || i}
326
+ target=${this.target || i}
327
+ rel=${this.rel || i}
328
+ >
329
+ ${e && !this.trailingIcon ? t : i}
330
+ ${this.label}
331
+ ${e && this.trailingIcon ? t : i}
332
+ </md-filled-tonal-button>
333
+ `;
334
+ case "text": return r`
335
+ <md-text-button
336
+ type=${this.type}
337
+ variant=${n}
338
+ ?trailing-icon=${this.trailingIcon}
339
+ ?disabled=${this.disabled}
340
+ aria-label=${a}
341
+ href=${this.href || i}
342
+ target=${this.target || i}
343
+ rel=${this.rel || i}
344
+ >
345
+ ${e && !this.trailingIcon ? t : i}
346
+ ${this.label}
347
+ ${e && this.trailingIcon ? t : i}
348
+ </md-text-button>
349
+ `;
350
+ default: return r``;
351
+ }
352
+ }
353
+ };
354
+ e([o({
355
+ type: String,
356
+ reflect: !0
357
+ })], s.prototype, "variant", void 0), e([o({
358
+ type: String,
359
+ reflect: !0
360
+ })], s.prototype, "size", void 0), e([o({
361
+ type: String,
362
+ reflect: !0
363
+ })], s.prototype, "type", void 0), e([o({ type: String })], s.prototype, "label", void 0), e([o({
364
+ type: Boolean,
365
+ attribute: "trailing-icon"
366
+ })], s.prototype, "trailingIcon", void 0), e([o({ type: String })], s.prototype, "icon", void 0), e([o({
367
+ type: Boolean,
368
+ attribute: "icon-filled",
369
+ reflect: !0
370
+ })], s.prototype, "iconFilled", void 0), e([o({
371
+ type: Boolean,
372
+ reflect: !0
373
+ })], s.prototype, "disabled", void 0), e([o({
374
+ type: Boolean,
375
+ attribute: "full-width",
376
+ reflect: !0
377
+ })], s.prototype, "fullWidth", void 0), e([o({ type: String })], s.prototype, "href", void 0), e([o({ type: String })], s.prototype, "target", void 0), e([o({ type: String })], s.prototype, "rel", void 0), e([o({
378
+ type: String,
379
+ reflect: !0
380
+ })], s.prototype, "spacing", void 0), e([o({
381
+ type: String,
382
+ attribute: "spacing-top",
383
+ reflect: !0
384
+ })], s.prototype, "spacingTop", void 0), e([o({
385
+ type: String,
386
+ attribute: "spacing-bottom",
387
+ reflect: !0
388
+ })], s.prototype, "spacingBottom", void 0), e([o({
389
+ type: String,
390
+ attribute: "spacing-left",
391
+ reflect: !0
392
+ })], s.prototype, "spacingLeft", void 0), e([o({
393
+ type: String,
394
+ attribute: "spacing-right",
395
+ reflect: !0
396
+ })], s.prototype, "spacingRight", void 0), s = e([a("scb-button")], s);
397
+ //#endregion
398
+ export { s as ScbButton };
@@ -0,0 +1,48 @@
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
+ //#region src/scb-test-components/scb-calendar/scb-calendar-event.ts
5
+ var o = class extends t {
6
+ constructor(...e) {
7
+ super(...e), this.title = "", this.description = "", this.startDate = "", this.endDate = "", this.href = "";
8
+ }
9
+ get date() {
10
+ return this.startDate;
11
+ }
12
+ set date(e) {
13
+ let t = (e ?? "") + "";
14
+ t !== this.startDate && (this.startDate = t);
15
+ }
16
+ static get observedAttributes() {
17
+ return [...super.observedAttributes ?? [], "date"];
18
+ }
19
+ attributeChangedCallback(e, t, n) {
20
+ super.attributeChangedCallback(e, t, n), e === "date" && (this.date = n ?? "");
21
+ }
22
+ static {
23
+ this.styles = n`
24
+ :host {
25
+ display: block;
26
+ }
27
+ `;
28
+ }
29
+ updated(e) {
30
+ super.updated?.(e), (e.has("title") || e.has("description") || e.has("startDate") || e.has("endDate") || e.has("href")) && this.dispatchEvent(new Event("change", {
31
+ bubbles: !0,
32
+ composed: !0
33
+ }));
34
+ }
35
+ render() {
36
+ return r`
37
+ `;
38
+ }
39
+ };
40
+ e([a({ type: String })], o.prototype, "title", void 0), e([a({ type: String })], o.prototype, "description", void 0), e([a({
41
+ type: String,
42
+ attribute: "start-date"
43
+ })], o.prototype, "startDate", void 0), e([a({
44
+ type: String,
45
+ attribute: "end-date"
46
+ })], o.prototype, "endDate", void 0), e([a({ type: String })], o.prototype, "href", void 0), o = e([i("scb-calendar-event")], o);
47
+ //#endregion
48
+ export { o as ScbCalendarEvent };