@onsvisual/svelte-components 0.1.104 → 1.0.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (360) hide show
  1. package/dist/css/main.css +500 -4
  2. package/dist/datavis/BarChart/BarChart.stories.svelte +84 -0
  3. package/dist/datavis/BarChart/BarChart.stories.svelte.d.ts +23 -0
  4. package/dist/datavis/BarChart/docs/component.md +19 -0
  5. package/dist/datavis/Chart/Chart.stories.svelte +128 -0
  6. package/dist/datavis/Chart/Chart.stories.svelte.d.ts +23 -0
  7. package/dist/datavis/Chart/docs/component.md +31 -0
  8. package/dist/datavis/Chart/docs/example.md +28 -0
  9. package/dist/datavis/ColumnChart/ColumnChart.stories.svelte +84 -0
  10. package/dist/datavis/ColumnChart/ColumnChart.stories.svelte.d.ts +23 -0
  11. package/dist/datavis/ColumnChart/docs/component.md +19 -0
  12. package/dist/datavis/DotPlotChart/DotPlotChart.stories.svelte +40 -0
  13. package/dist/datavis/DotPlotChart/DotPlotChart.stories.svelte.d.ts +23 -0
  14. package/dist/datavis/DotPlotChart/docs/component.md +19 -0
  15. package/dist/datavis/LineChart/LineChart.stories.svelte +64 -0
  16. package/dist/datavis/LineChart/LineChart.stories.svelte.d.ts +23 -0
  17. package/dist/datavis/LineChart/docs/component.md +31 -0
  18. package/dist/datavis/ScatterChart/ScatterChart.stories.svelte +55 -0
  19. package/dist/datavis/ScatterChart/ScatterChart.stories.svelte.d.ts +23 -0
  20. package/dist/datavis/ScatterChart/docs/component.md +53 -0
  21. package/dist/datavis/Table/Table.stories.svelte +32 -0
  22. package/dist/{@types/datavis/Table/Table.svelte.d.ts → datavis/Table/Table.stories.svelte.d.ts} +2 -16
  23. package/dist/datavis/Table/Table.svelte +141 -149
  24. package/dist/datavis/Table/Table.svelte.d.ts +35 -0
  25. package/dist/datavis/Table/docs/component.md +20 -0
  26. package/dist/datavis/intro.mdx +22 -0
  27. package/dist/decorators/Blockquote/Blockquote.stories.svelte +25 -0
  28. package/dist/decorators/Blockquote/Blockquote.stories.svelte.d.ts +23 -0
  29. package/dist/decorators/Blockquote/Blockquote.svelte +22 -22
  30. package/dist/{@types/decorators → decorators}/Blockquote/Blockquote.svelte.d.ts +2 -2
  31. package/dist/decorators/Blockquote/docs/component.md +10 -0
  32. package/dist/decorators/Divider/Divider.stories.svelte +29 -0
  33. package/dist/decorators/Divider/Divider.stories.svelte.d.ts +23 -0
  34. package/dist/decorators/Divider/Divider.svelte +40 -59
  35. package/dist/{@types/decorators → decorators}/Divider/Divider.svelte.d.ts +10 -14
  36. package/dist/decorators/Divider/docs/component.md +12 -0
  37. package/dist/decorators/Em/Em.stories.svelte +30 -0
  38. package/dist/{@types/decorators/Em/Em.svelte.d.ts → decorators/Em/Em.stories.svelte.d.ts} +4 -10
  39. package/dist/decorators/Em/Em.svelte +42 -25
  40. package/dist/decorators/Em/Em.svelte.d.ts +33 -0
  41. package/dist/decorators/Em/docs/component.md +12 -0
  42. package/dist/decorators/Indent/Indent.stories.svelte +22 -0
  43. package/dist/decorators/Indent/Indent.stories.svelte.d.ts +23 -0
  44. package/dist/decorators/Indent/Indent.svelte +3 -0
  45. package/dist/decorators/Indent/Indent.svelte.d.ts +27 -0
  46. package/dist/decorators/Indent/docs/component.md +10 -0
  47. package/dist/{@types/index.d.ts → index.d.ts} +10 -10
  48. package/dist/index.js +13 -8
  49. package/dist/inputs/Button/Button.stories.svelte +65 -0
  50. package/dist/inputs/Button/Button.stories.svelte.d.ts +23 -0
  51. package/dist/inputs/Button/Button.svelte +113 -113
  52. package/dist/inputs/Button/Button.svelte.d.ts +51 -0
  53. package/dist/inputs/Button/Icon.svelte +44 -44
  54. package/dist/{@types/inputs → inputs}/Button/Icon.svelte.d.ts +6 -6
  55. package/dist/inputs/Button/docs/component.md +17 -0
  56. package/dist/inputs/Checkbox/Checkbox.stories.svelte +34 -0
  57. package/dist/inputs/Checkbox/Checkbox.stories.svelte.d.ts +23 -0
  58. package/dist/inputs/Checkbox/Checkbox.svelte +145 -152
  59. package/dist/{@types/inputs → inputs}/Checkbox/Checkbox.svelte.d.ts +16 -16
  60. package/dist/inputs/Checkbox/docs/component.md +14 -0
  61. package/dist/inputs/Checkboxes/Checkboxes.stories.svelte +42 -0
  62. package/dist/inputs/Checkboxes/Checkboxes.stories.svelte.d.ts +23 -0
  63. package/dist/inputs/Checkboxes/Checkboxes.svelte +29 -29
  64. package/dist/{@types/inputs → inputs}/Checkboxes/Checkboxes.svelte.d.ts +8 -8
  65. package/dist/inputs/Checkboxes/docs/component.md +20 -0
  66. package/dist/inputs/Checkboxes/docs/example.md +16 -0
  67. package/dist/inputs/Dropdown/Dropdown.stories.svelte +54 -0
  68. package/dist/{@types/inputs/Dropdown/Dropdown.svelte.d.ts → inputs/Dropdown/Dropdown.stories.svelte.d.ts} +2 -16
  69. package/dist/inputs/Dropdown/Dropdown.svelte +49 -55
  70. package/dist/inputs/Dropdown/Dropdown.svelte.d.ts +37 -0
  71. package/dist/inputs/Dropdown/docs/component.md +22 -0
  72. package/dist/inputs/ErrorPanel/ErrorPanel.stories.svelte +25 -0
  73. package/dist/inputs/ErrorPanel/ErrorPanel.stories.svelte.d.ts +23 -0
  74. package/dist/inputs/ErrorPanel/ErrorPanel.svelte +14 -30
  75. package/dist/{@types/inputs → inputs}/ErrorPanel/ErrorPanel.svelte.d.ts +2 -2
  76. package/dist/inputs/ErrorPanel/docs/component.md +14 -0
  77. package/dist/inputs/ErrorSummary/ErrorSummary.stories.svelte +34 -0
  78. package/dist/inputs/ErrorSummary/ErrorSummary.stories.svelte.d.ts +23 -0
  79. package/dist/inputs/ErrorSummary/ErrorSummary.svelte +34 -32
  80. package/dist/{@types/inputs → inputs}/ErrorSummary/ErrorSummary.svelte.d.ts +4 -4
  81. package/dist/inputs/ErrorSummary/docs/component.md +17 -0
  82. package/dist/inputs/ErrorSummary/docs/example.md +12 -0
  83. package/dist/inputs/Input/Input.stories.svelte +73 -0
  84. package/dist/inputs/Input/Input.stories.svelte.d.ts +23 -0
  85. package/dist/inputs/Input/Input.svelte +125 -156
  86. package/dist/inputs/Input/Input.svelte.d.ts +51 -0
  87. package/dist/inputs/Input/docs/component.md +16 -0
  88. package/dist/inputs/Radios/Radio.svelte +68 -102
  89. package/dist/{@types/inputs → inputs}/Radios/Radio.svelte.d.ts +6 -6
  90. package/dist/inputs/Radios/Radios.stories.svelte +51 -0
  91. package/dist/inputs/Radios/Radios.stories.svelte.d.ts +23 -0
  92. package/dist/inputs/Radios/Radios.svelte +38 -38
  93. package/dist/{@types/inputs → inputs}/Radios/Radios.svelte.d.ts +10 -10
  94. package/dist/inputs/Radios/docs/component.md +24 -0
  95. package/dist/inputs/Radios/docs/example.md +21 -0
  96. package/dist/inputs/Select/Select.stories.svelte +61 -0
  97. package/dist/inputs/Select/Select.stories.svelte.d.ts +23 -0
  98. package/dist/inputs/Select/Select.svelte +271 -289
  99. package/dist/inputs/Select/Select.svelte.d.ts +58 -0
  100. package/dist/inputs/Select/docs/component.md +27 -0
  101. package/dist/inputs/Textarea/Textarea.stories.svelte +40 -0
  102. package/dist/{@types/inputs/Textarea/Textarea.svelte.d.ts → inputs/Textarea/Textarea.stories.svelte.d.ts} +2 -16
  103. package/dist/inputs/Textarea/Textarea.svelte +93 -89
  104. package/dist/inputs/Textarea/Textarea.svelte.d.ts +37 -0
  105. package/dist/inputs/Textarea/docs/component.md +16 -0
  106. package/dist/intro.mdx +60 -0
  107. package/dist/js/menuOptions.js +14 -0
  108. package/dist/{@types/js → js}/utils.d.ts +8 -2
  109. package/dist/js/utils.js +61 -44
  110. package/dist/{@types/js → js}/withParams.d.ts +3 -9
  111. package/dist/js/withParams.js +17 -20
  112. package/dist/layout/Accordion/Accordion.stories.svelte +30 -0
  113. package/dist/{@types/layout/Accordion/Accordion.svelte.d.ts → layout/Accordion/Accordion.stories.svelte.d.ts} +4 -8
  114. package/dist/layout/Accordion/Accordion.svelte +49 -29
  115. package/dist/layout/Accordion/Accordion.svelte.d.ts +31 -0
  116. package/dist/layout/Accordion/AccordionItem.svelte +46 -81
  117. package/dist/{@types/layout → layout}/Accordion/AccordionItem.svelte.d.ts +6 -6
  118. package/dist/layout/Accordion/accordion.d.ts +18 -0
  119. package/dist/layout/Accordion/accordion.js +64 -0
  120. package/dist/layout/Accordion/details.d.ts +14 -0
  121. package/dist/layout/Accordion/details.js +83 -0
  122. package/dist/layout/Accordion/docs/component.md +19 -0
  123. package/dist/layout/AnalyticsBanner/AnalyticsBanner.stories.svelte +16 -0
  124. package/dist/{@types/layout/AnalyticsBanner/AnalyticsBanner.svelte.d.ts → layout/AnalyticsBanner/AnalyticsBanner.stories.svelte.d.ts} +2 -13
  125. package/dist/layout/AnalyticsBanner/AnalyticsBanner.svelte +284 -273
  126. package/dist/layout/AnalyticsBanner/AnalyticsBanner.svelte.d.ts +36 -0
  127. package/dist/layout/AnalyticsBanner/docs/component.md +17 -0
  128. package/dist/layout/BackLink/BackLink.stories.svelte +16 -0
  129. package/dist/layout/BackLink/BackLink.stories.svelte.d.ts +23 -0
  130. package/dist/layout/BackLink/BackLink.svelte +30 -0
  131. package/dist/layout/BackLink/BackLink.svelte.d.ts +25 -0
  132. package/dist/layout/BackLink/docs/component.md +12 -0
  133. package/dist/layout/Breadcrumb/Breadcrumb.stories.svelte +31 -0
  134. package/dist/layout/Breadcrumb/Breadcrumb.stories.svelte.d.ts +23 -0
  135. package/dist/layout/Breadcrumb/Breadcrumb.svelte +44 -67
  136. package/dist/{@types/layout → layout}/Breadcrumb/Breadcrumb.svelte.d.ts +6 -12
  137. package/dist/layout/Breadcrumb/docs/component.md +15 -0
  138. package/dist/layout/Card/Card.stories.svelte +39 -0
  139. package/dist/layout/Card/Card.stories.svelte.d.ts +23 -0
  140. package/dist/layout/Card/Card.svelte +120 -0
  141. package/dist/layout/Card/Card.svelte.d.ts +49 -0
  142. package/dist/layout/Card/docs/component.md +14 -0
  143. package/dist/layout/Card/docs/eg-images.md +27 -0
  144. package/dist/layout/Card/docs/eg-links.md +12 -0
  145. package/dist/layout/Card/docs/eg-spans.md +12 -0
  146. package/dist/layout/Contents/Contents.stories.svelte +27 -0
  147. package/dist/{@types/layout/Contents/Contents.svelte.d.ts → layout/Contents/Contents.stories.svelte.d.ts} +2 -8
  148. package/dist/layout/Contents/Contents.svelte +42 -40
  149. package/dist/layout/Contents/Contents.svelte.d.ts +29 -0
  150. package/dist/layout/Contents/docs/component.md +18 -0
  151. package/dist/layout/DescriptionList/DescriptionList.stories.svelte +22 -0
  152. package/dist/layout/DescriptionList/DescriptionList.stories.svelte.d.ts +23 -0
  153. package/dist/layout/DescriptionList/DescriptionList.svelte +48 -0
  154. package/dist/layout/DescriptionList/DescriptionList.svelte.d.ts +27 -0
  155. package/dist/layout/DescriptionList/docs/component.md +18 -0
  156. package/dist/layout/Details/Details.stories.svelte +32 -0
  157. package/dist/layout/Details/Details.stories.svelte.d.ts +23 -0
  158. package/dist/layout/Details/Details.svelte +70 -0
  159. package/dist/layout/Details/Details.svelte.d.ts +35 -0
  160. package/dist/layout/Details/docs/component.md +14 -0
  161. package/dist/layout/DocumentList/Document.svelte +103 -0
  162. package/dist/layout/DocumentList/Document.svelte.d.ts +39 -0
  163. package/dist/layout/DocumentList/DocumentList.stories.svelte +73 -0
  164. package/dist/layout/DocumentList/DocumentList.stories.svelte.d.ts +23 -0
  165. package/dist/layout/DocumentList/DocumentList.svelte +17 -0
  166. package/dist/layout/DocumentList/DocumentList.svelte.d.ts +27 -0
  167. package/dist/layout/DocumentList/docs/component.md +28 -0
  168. package/dist/layout/DocumentList/docs/example.md +23 -0
  169. package/dist/layout/ErrorPage/ErrorPage.stories.svelte +18 -0
  170. package/dist/{@types/layout/ErrorPage/ErrorPage.svelte.d.ts → layout/ErrorPage/ErrorPage.stories.svelte.d.ts} +2 -6
  171. package/dist/layout/ErrorPage/ErrorPage.svelte +45 -40
  172. package/dist/layout/ErrorPage/ErrorPage.svelte.d.ts +29 -0
  173. package/dist/layout/ErrorPage/docs/component.md +13 -0
  174. package/dist/layout/Footer/Footer.stories.svelte +24 -0
  175. package/dist/{@types/layout/Footer/Footer.svelte.d.ts → layout/Footer/Footer.stories.svelte.d.ts} +4 -12
  176. package/dist/layout/Footer/Footer.svelte +372 -257
  177. package/dist/layout/Footer/Footer.svelte.d.ts +27 -0
  178. package/dist/layout/Footer/docs/component.md +10 -0
  179. package/dist/layout/Grid/Grid.stories.svelte +50 -0
  180. package/dist/layout/Grid/Grid.stories.svelte.d.ts +23 -0
  181. package/dist/layout/Grid/Grid.svelte +110 -160
  182. package/dist/layout/Grid/Grid.svelte.d.ts +49 -0
  183. package/dist/layout/Grid/GridCell.svelte +65 -0
  184. package/dist/layout/Grid/GridCell.svelte.d.ts +27 -0
  185. package/dist/layout/Grid/docs/component.md +14 -0
  186. package/dist/layout/Header/Header.stories.svelte +26 -0
  187. package/dist/{@types/layout/Header/Header.svelte.d.ts → layout/Header/Header.stories.svelte.d.ts} +4 -20
  188. package/dist/layout/Header/Header.svelte +842 -612
  189. package/dist/layout/Header/Header.svelte.d.ts +39 -0
  190. package/dist/layout/Header/docs/component.md +11 -0
  191. package/dist/layout/Hero/Hero.stories.svelte +77 -0
  192. package/dist/layout/Hero/Hero.stories.svelte.d.ts +23 -0
  193. package/dist/layout/Hero/Hero.svelte +350 -80
  194. package/dist/layout/Hero/Hero.svelte.d.ts +55 -0
  195. package/dist/layout/Hero/docs/component.md +14 -0
  196. package/dist/layout/Highlight/Highlight.stories.svelte +29 -0
  197. package/dist/layout/Highlight/Highlight.stories.svelte.d.ts +23 -0
  198. package/dist/layout/Highlight/Highlight.svelte +78 -66
  199. package/dist/layout/Highlight/Highlight.svelte.d.ts +45 -0
  200. package/dist/layout/Highlight/docs/component.md +12 -0
  201. package/dist/layout/Image/Image.stories.svelte +23 -0
  202. package/dist/layout/Image/Image.stories.svelte.d.ts +23 -0
  203. package/dist/layout/Image/Image.svelte +24 -0
  204. package/dist/layout/Image/Image.svelte.d.ts +27 -0
  205. package/dist/layout/Image/docs/component.md +15 -0
  206. package/dist/layout/List/Li.svelte +3 -0
  207. package/dist/layout/List/Li.svelte.d.ts +27 -0
  208. package/dist/layout/List/List.stories.svelte +40 -0
  209. package/dist/{@types/layout/List/List.svelte.d.ts → layout/List/List.stories.svelte.d.ts} +4 -8
  210. package/dist/layout/List/List.svelte +34 -25
  211. package/dist/layout/List/List.svelte.d.ts +29 -0
  212. package/dist/layout/List/docs/component.md +14 -0
  213. package/dist/layout/List/docs/example.md +12 -0
  214. package/dist/layout/NavSections/NavSection.svelte +66 -66
  215. package/dist/{@types/layout → layout}/NavSections/NavSection.svelte.d.ts +10 -10
  216. package/dist/layout/NavSections/NavSections.stories.svelte +48 -0
  217. package/dist/layout/NavSections/NavSections.stories.svelte.d.ts +23 -0
  218. package/dist/layout/NavSections/NavSections.svelte +135 -183
  219. package/dist/{@types/layout → layout}/NavSections/NavSections.svelte.d.ts +14 -24
  220. package/dist/layout/NavSections/docs/component.md +27 -0
  221. package/dist/layout/Notice/Notice.stories.svelte +61 -0
  222. package/dist/layout/Notice/Notice.stories.svelte.d.ts +23 -0
  223. package/dist/layout/Notice/Notice.svelte +45 -54
  224. package/dist/{@types/layout → layout}/Notice/Notice.svelte.d.ts +2 -6
  225. package/dist/layout/Notice/docs/component.md +14 -0
  226. package/dist/layout/PhaseBanner/PhaseBanner.stories.svelte +24 -0
  227. package/dist/{@types/layout/PhaseBanner/PhaseBanner.svelte.d.ts → layout/PhaseBanner/PhaseBanner.stories.svelte.d.ts} +2 -4
  228. package/dist/layout/PhaseBanner/PhaseBanner.svelte +56 -35
  229. package/dist/layout/PhaseBanner/PhaseBanner.svelte.d.ts +25 -0
  230. package/dist/layout/PhaseBanner/docs/component.md +14 -0
  231. package/dist/layout/RelatedContent/RelatedContent.stories.svelte +36 -0
  232. package/dist/{@types/layout/RelatedContent/RelatedContent.svelte.d.ts → layout/RelatedContent/RelatedContent.stories.svelte.d.ts} +2 -2
  233. package/dist/layout/RelatedContent/RelatedContent.svelte +44 -54
  234. package/dist/layout/RelatedContent/RelatedContent.svelte.d.ts +31 -0
  235. package/dist/layout/RelatedContent/docs/component.md +16 -0
  236. package/dist/layout/Scroller/Scroller.stories.svelte +61 -0
  237. package/dist/layout/Scroller/Scroller.stories.svelte.d.ts +23 -0
  238. package/dist/layout/Scroller/Scroller.svelte +341 -331
  239. package/dist/{@types/layout → layout}/Scroller/Scroller.svelte.d.ts +22 -20
  240. package/dist/layout/Scroller/ScrollerSection.svelte +54 -73
  241. package/dist/{@types/layout → layout}/Scroller/ScrollerSection.svelte.d.ts +6 -12
  242. package/dist/layout/Scroller/docs/component.md +41 -0
  243. package/dist/layout/Section/Section.stories.svelte +33 -0
  244. package/dist/layout/Section/Section.stories.svelte.d.ts +23 -0
  245. package/dist/layout/Section/Section.svelte +53 -77
  246. package/dist/layout/Section/Section.svelte.d.ts +41 -0
  247. package/dist/layout/Section/docs/component.md +12 -0
  248. package/dist/layout/ShareButtons/ShareButtons.stories.svelte +20 -0
  249. package/dist/layout/ShareButtons/ShareButtons.stories.svelte.d.ts +23 -0
  250. package/dist/layout/ShareButtons/ShareButtons.svelte +118 -175
  251. package/dist/{@types/layout → layout}/ShareButtons/ShareButtons.svelte.d.ts +6 -14
  252. package/dist/layout/ShareButtons/docs/component.md +14 -0
  253. package/dist/layout/SkipLink/SkipLink.stories.svelte +16 -0
  254. package/dist/{@types/layout/SkipLink/SkipLink.svelte.d.ts → layout/SkipLink/SkipLink.stories.svelte.d.ts} +2 -2
  255. package/dist/layout/SkipLink/SkipLink.svelte +6 -6
  256. package/dist/layout/SkipLink/SkipLink.svelte.d.ts +23 -0
  257. package/dist/layout/SkipLink/docs/component.md +11 -0
  258. package/dist/layout/Summary/Summary.stories.svelte +21 -0
  259. package/dist/{@types/layout/Summary/Summary.svelte.d.ts → layout/Summary/Summary.stories.svelte.d.ts} +2 -4
  260. package/dist/layout/Summary/Summary.svelte +50 -46
  261. package/dist/layout/Summary/Summary.svelte.d.ts +31 -0
  262. package/dist/layout/Summary/docs/component.md +17 -0
  263. package/dist/layout/Tabs/Tab.svelte +42 -42
  264. package/dist/{@types/layout → layout}/Tabs/Tab.svelte.d.ts +6 -6
  265. package/dist/layout/Tabs/Tabs.stories.svelte +29 -0
  266. package/dist/layout/Tabs/Tabs.stories.svelte.d.ts +23 -0
  267. package/dist/layout/Tabs/Tabs.svelte +71 -97
  268. package/dist/{@types/layout → layout}/Tabs/Tabs.svelte.d.ts +6 -6
  269. package/dist/layout/Tabs/docs/component.md +16 -0
  270. package/dist/layout/Tabs/tabs.d.ts +43 -0
  271. package/dist/layout/Tabs/tabs.js +302 -0
  272. package/dist/templates/EmbedArticle/EmbedArticle.stories.svelte +72 -0
  273. package/dist/templates/EmbedArticle/EmbedArticle.stories.svelte.d.ts +23 -0
  274. package/dist/templates/EmbedArticle/docs/component.md +56 -0
  275. package/dist/templates/FeatureArticle/FeatureArticle.stories.svelte +151 -0
  276. package/dist/templates/FeatureArticle/FeatureArticle.stories.svelte.d.ts +23 -0
  277. package/dist/templates/FeatureArticle/docs/component.md +125 -0
  278. package/dist/templates/StandardArticle/StandardArticle.stories.svelte +86 -0
  279. package/dist/templates/StandardArticle/StandardArticle.stories.svelte.d.ts +23 -0
  280. package/dist/templates/StandardArticle/docs/component.md +76 -0
  281. package/dist/templates/intro.mdx +19 -0
  282. package/dist/wrappers/Container/Container.stories.svelte +38 -0
  283. package/dist/wrappers/Container/Container.stories.svelte.d.ts +23 -0
  284. package/dist/wrappers/Container/Container.svelte +61 -140
  285. package/dist/wrappers/Container/Container.svelte.d.ts +39 -0
  286. package/dist/wrappers/Container/docs/component.md +10 -0
  287. package/dist/wrappers/Embed/Embed.stories.svelte +24 -0
  288. package/dist/wrappers/Embed/Embed.stories.svelte.d.ts +23 -0
  289. package/dist/wrappers/Embed/Embed.svelte +33 -32
  290. package/dist/{@types/wrappers → wrappers}/Embed/Embed.svelte.d.ts +4 -4
  291. package/dist/wrappers/Embed/docs/component.md +15 -0
  292. package/dist/wrappers/LazyLoad/LazyLoad.stories.svelte +37 -0
  293. package/dist/wrappers/LazyLoad/LazyLoad.stories.svelte.d.ts +23 -0
  294. package/dist/wrappers/LazyLoad/LazyLoad.svelte +34 -35
  295. package/dist/{@types/wrappers → wrappers}/LazyLoad/LazyLoad.svelte.d.ts +6 -6
  296. package/dist/wrappers/LazyLoad/docs/component.md +29 -0
  297. package/dist/wrappers/Main/Main.stories.svelte +24 -0
  298. package/dist/wrappers/Main/Main.stories.svelte.d.ts +23 -0
  299. package/dist/wrappers/Main/Main.svelte +10 -3
  300. package/dist/{@types/wrappers → wrappers}/Main/Main.svelte.d.ts +2 -4
  301. package/dist/wrappers/Main/docs/component.md +16 -0
  302. package/dist/wrappers/Observe/Observe.stories.svelte +29 -0
  303. package/dist/wrappers/Observe/Observe.stories.svelte.d.ts +23 -0
  304. package/dist/wrappers/Observe/Observe.svelte +24 -24
  305. package/dist/{@types/wrappers → wrappers}/Observe/Observe.svelte.d.ts +2 -2
  306. package/dist/wrappers/Observe/docs/component.md +22 -0
  307. package/dist/wrappers/Theme/Theme.stories.svelte +70 -0
  308. package/dist/{@types/wrappers/Theme/Theme.svelte.d.ts → wrappers/Theme/Theme.stories.svelte.d.ts} +4 -20
  309. package/dist/wrappers/Theme/Theme.svelte +64 -101
  310. package/dist/wrappers/Theme/Theme.svelte.d.ts +37 -0
  311. package/dist/wrappers/Theme/docs/component.md +10 -0
  312. package/dist/wrappers/Theme/themes.d.ts +143 -0
  313. package/dist/wrappers/Theme/themes.js +68 -27
  314. package/package.json +82 -195
  315. package/dist/@types/actions/cssVariables/index.d.ts +0 -4
  316. package/dist/@types/actions/resizeObserver/index.d.ts +0 -4
  317. package/dist/@types/inputs/AccessibleSelect/AccessibleSelect.svelte.d.ts +0 -58
  318. package/dist/@types/inputs/Button/Button.svelte.d.ts +0 -51
  319. package/dist/@types/inputs/Input/Input.svelte.d.ts +0 -51
  320. package/dist/@types/inputs/Select/Select.svelte.d.ts +0 -77
  321. package/dist/@types/js/docsPage.d.ts +0 -25
  322. package/dist/@types/layout/Backlink/Backlink.svelte.d.ts +0 -23
  323. package/dist/@types/layout/Cards/Card.svelte.d.ts +0 -49
  324. package/dist/@types/layout/Cards/Cards.svelte.d.ts +0 -51
  325. package/dist/@types/layout/Footer/ONSLogo.svelte.d.ts +0 -29
  326. package/dist/@types/layout/Grid/Grid.svelte.d.ts +0 -53
  327. package/dist/@types/layout/Header/ONSLogo.svelte.d.ts +0 -31
  328. package/dist/@types/layout/Hero/Hero.svelte.d.ts +0 -47
  329. package/dist/@types/layout/Highlight/Highlight.svelte.d.ts +0 -43
  330. package/dist/@types/layout/NavSections/SectionBacklink.svelte.d.ts +0 -23
  331. package/dist/@types/layout/Section/Section.svelte.d.ts +0 -47
  332. package/dist/@types/layout/Survey/Survey.svelte.d.ts +0 -23
  333. package/dist/@types/layout/Survey/init-survey.d.ts +0 -1
  334. package/dist/@types/layout/Titleblock/Meta.svelte.d.ts +0 -23
  335. package/dist/@types/layout/Titleblock/Titleblock.svelte.d.ts +0 -53
  336. package/dist/@types/layout/Twisty/Twisty.svelte.d.ts +0 -33
  337. package/dist/@types/wrappers/Container/Container.svelte.d.ts +0 -45
  338. package/dist/@types/wrappers/Theme/themes.d.ts +0 -29
  339. package/dist/actions/cssVariables/index.js +0 -20
  340. package/dist/actions/resizeObserver/index.js +0 -25
  341. package/dist/globals.d.ts +0 -23
  342. package/dist/inputs/AccessibleSelect/AccessibleSelect.svelte +0 -280
  343. package/dist/inputs/AccessibleSelect/options.js +0 -263
  344. package/dist/js/docsPage.js +0 -13
  345. package/dist/layout/Backlink/Backlink.svelte +0 -32
  346. package/dist/layout/Cards/Card.svelte +0 -99
  347. package/dist/layout/Cards/Cards.svelte +0 -95
  348. package/dist/layout/Footer/ONSLogo.svelte +0 -150
  349. package/dist/layout/Header/ONSLogo.svelte +0 -148
  350. package/dist/layout/NavSections/SectionBacklink.svelte +0 -31
  351. package/dist/layout/Survey/Survey.svelte +0 -96
  352. package/dist/layout/Survey/init-survey.js +0 -230
  353. package/dist/layout/Titleblock/Meta.svelte +0 -26
  354. package/dist/layout/Titleblock/Titleblock.svelte +0 -147
  355. package/dist/layout/Twisty/Twisty.svelte +0 -56
  356. /package/dist/{@types/datavis/shared → datavis/demo-data}/data-scatter.d.ts +0 -0
  357. /package/dist/datavis/{shared → demo-data}/data-scatter.js +0 -0
  358. /package/dist/{@types/datavis/shared → datavis/demo-data}/data.d.ts +0 -0
  359. /package/dist/datavis/{shared → demo-data}/data.js +0 -0
  360. /package/dist/{@types/inputs/AccessibleSelect/options.d.ts → js/menuOptions.d.ts} +0 -0
@@ -0,0 +1,125 @@
1
+ A full page article template with compact header and footer, suitable for scrollytelling and other feature articles.
2
+
3
+ Note: The scroller in this example will not preview correctly in the iframe on this page. You can select the example from the menu instead.
4
+
5
+ <!-- prettier-ignore -->
6
+ ```html
7
+ <!-- +page.svelte -->
8
+ <script>
9
+ import "@onsvisual/svelte-components/css/main.css"; // This is more typically imported in the global +layout.svelte
10
+ import {
11
+ Header,
12
+ Hero,
13
+ Highlight,
14
+ Section,
15
+ Grid,
16
+ Divider,
17
+ Main,
18
+ Blockquote,
19
+ Em,
20
+ Scroller,
21
+ ScrollerSection,
22
+ Footer,
23
+ } from "@onsvisual/svelte-components";
24
+
25
+ const scrollerColors = ["#ddd", "#777", "#222"];
26
+ let scrollerColor = scrollerColors[0];
27
+ </script>
28
+
29
+ <Header compact />
30
+ <Main>
31
+ <Hero
32
+ title="This is an article title"
33
+ lede="This is a short, introductory sentence"
34
+ date="2023-07-04"
35
+ >
36
+ <!-- <Checkbox label="Enable animation" variant="ghost" checked={animation} noBorder/> -->
37
+ </Hero>
38
+
39
+ <Highlight marginBottom="{false}">
40
+ <p>This is a test paragraph.</p>
41
+ <p>This is another test paragraph.</p>
42
+ </Highlight>
43
+
44
+ <Section title="Section title" marginTop="{true}">
45
+ <p>
46
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
47
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
48
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
49
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
50
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
51
+ </p>
52
+ <Blockquote attribution="A. Person">
53
+ This is a blockquote, white comprises of a large block of inset text.
54
+ </Blockquote>
55
+ <p>
56
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
57
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
58
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
59
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
60
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
61
+ </p>
62
+ </Section>
63
+
64
+ <Grid colwidth="medium" caption="This is a caption text">
65
+ <div class="grid-cell"></div>
66
+ <div class="grid-cell"></div>
67
+ <div class="grid-cell"></div>
68
+ </Grid>
69
+
70
+ <Divider />
71
+
72
+ <Section title="Another section title">
73
+ <p>
74
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
75
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
76
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
77
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
78
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
79
+ </p>
80
+ </Section>
81
+
82
+ <Scroller
83
+ id="scroller"
84
+ splitscreen
85
+ on:change="{(e) => (scrollerColor = scrollerColors[e.detail.index])}"
86
+ >
87
+ <div slot="background">
88
+ <Grid width="full" height="full">
89
+ <div class="placeholder-block" style:background-color="{scrollerColor}"></div>
90
+ </Grid>
91
+ </div>
92
+ <div slot="foreground">
93
+ <ScrollerSection>
94
+ <p>
95
+ When this first caption is visible, the background will appear
96
+ <Em color="{scrollerColors[0]}">light grey</Em>.
97
+ </p>
98
+ </ScrollerSection>
99
+ <ScrollerSection>
100
+ <p>
101
+ When this second caption is visible, the background will appear
102
+ <Em color="{scrollerColors[1]}">dark grey</Em>.
103
+ </p>
104
+ </ScrollerSection>
105
+ <ScrollerSection>
106
+ <p>
107
+ When this third caption is visible, the background will appear
108
+ <Em color="{scrollerColors[2]}">black</Em>.
109
+ </p>
110
+ </ScrollerSection>
111
+ </div>
112
+ </Scroller>
113
+
114
+ <Section title="Yet another section title">
115
+ <p>
116
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
117
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
118
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
119
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
120
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
121
+ </p>
122
+ </Section>
123
+ </Main>
124
+ <Footer compact />
125
+ ```
@@ -0,0 +1,86 @@
1
+ <script module>
2
+ import { defineMeta } from "@storybook/addon-svelte-csf";
3
+ import { withComponentDocs } from "../../js/withParams.js";
4
+ import componentDocs from "./docs/component.md?raw";
5
+ import Header from "../../layout/Header/Header.svelte";
6
+ import Breadcrumb from "../../layout/Breadcrumb/Breadcrumb.svelte";
7
+ import Hero from "../../layout/Hero/Hero.svelte";
8
+ import Section from "../../layout/Section/Section.svelte";
9
+ import Grid from "../../layout/Grid/Grid.svelte";
10
+ import Blockquote from "../../decorators/Blockquote/Blockquote.svelte";
11
+ import Footer from "../../layout/Footer/Footer.svelte";
12
+
13
+ const { Story } = defineMeta({
14
+ title: "Templates/Standard article",
15
+ component: Header,
16
+ tags: ["autodocs"],
17
+ argTypes: {},
18
+ parameters: { ...withComponentDocs(componentDocs), layout: "fullscreen" }
19
+ });
20
+ </script>
21
+
22
+ <Story name="Default" args={{}} asChild>
23
+ <Header />
24
+ <Breadcrumb
25
+ links={[
26
+ { label: "Home", href: "/" },
27
+ { label: "Parent", href: "/parent/" }
28
+ ]}
29
+ />
30
+ <Hero title="Page title" theme="grey" meta={[{ key: "Release date", value: "1 January 2025" }]}
31
+ ></Hero>
32
+
33
+ <Section title="Section title" marginTop={true}>
34
+ <p>
35
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
36
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
37
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
38
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
39
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
40
+ </p>
41
+ <Blockquote attribution="A. Person"
42
+ >This is a blockquote, white comprises of a large block of inset text.</Blockquote
43
+ >
44
+ <p>
45
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
46
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
47
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
48
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
49
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
50
+ </p>
51
+ </Section>
52
+
53
+ <Grid width="medium" colWidth="full" caption="This is a caption text">
54
+ <div class="grid-cell"></div>
55
+ </Grid>
56
+
57
+ <Section title="Another section title">
58
+ <p>
59
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
60
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
61
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
62
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
63
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
64
+ </p>
65
+ </Section>
66
+
67
+ <Section title="Yet another section title">
68
+ <p>
69
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
70
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
71
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
72
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
73
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
74
+ </p>
75
+ </Section>
76
+
77
+ <Footer theme="dark" />
78
+ </Story>
79
+
80
+ <style>
81
+ .grid-cell {
82
+ background: var(--ons-color-grey-10);
83
+ min-height: 300px;
84
+ width: 100%;
85
+ }
86
+ </style>
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} StandardArticleProps */
2
+ /** @typedef {typeof __propDef.events} StandardArticleEvents */
3
+ /** @typedef {typeof __propDef.slots} StandardArticleSlots */
4
+ export default class StandardArticle extends SvelteComponentTyped<{
5
+ [x: string]: never;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type StandardArticleProps = typeof __propDef.props;
11
+ export type StandardArticleEvents = typeof __propDef.events;
12
+ export type StandardArticleSlots = typeof __propDef.slots;
13
+ import { SvelteComponentTyped } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ [x: string]: never;
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -0,0 +1,76 @@
1
+ A full page article template with compact header and footer, suitable for standard articles.
2
+
3
+ An implementation of this template can be found in our [sveltekit-starter](https://github.com/ONSvisual/sveltekit-starter) project.
4
+
5
+ <!-- prettier-ignore -->
6
+ ```html
7
+ <!-- +page.svelte -->
8
+ <script>
9
+ import "@onsvisual/svelte-components/css/main.css"; // This is more typically imported in the global +layout.svelte
10
+ import {
11
+ Header,
12
+ Breadcrumb,
13
+ Hero,
14
+ Section,
15
+ Grid,
16
+ Blockquote,
17
+ Footer,
18
+ } from "@onsvisual/svelte-components";
19
+ </script>
20
+
21
+ <Header />
22
+ <Breadcrumb
23
+ links={[
24
+ { label: "Home", href: "/" },
25
+ { label: "Parent", href: "/parent/" }
26
+ ]}
27
+ />
28
+ <Hero title="Page title" theme="grey" meta={[{ key: "Release date", value: "1 January 2025" }]}
29
+ ></Hero>
30
+
31
+ <Section title="Section title" marginTop={true}>
32
+ <p>
33
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
34
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
35
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
36
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
37
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
38
+ </p>
39
+ <Blockquote attribution="A. Person"
40
+ >This is a blockquote, white comprises of a large block of inset text.</Blockquote
41
+ >
42
+ <p>
43
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
44
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
45
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
46
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
47
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
48
+ </p>
49
+ </Section>
50
+
51
+ <Grid width="medium" colWidth="full" caption="This is a caption text">
52
+ <div class="grid-cell"></div>
53
+ </Grid>
54
+
55
+ <Section title="Another section title">
56
+ <p>
57
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
58
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
59
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
60
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
61
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
62
+ </p>
63
+ </Section>
64
+
65
+ <Section title="Yet another section title">
66
+ <p>
67
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
68
+ labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
69
+ laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
70
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
71
+ non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
72
+ </p>
73
+ </Section>
74
+
75
+ <Footer theme="dark" />
76
+ ```
@@ -0,0 +1,19 @@
1
+ import { Meta } from "@storybook/addon-docs/blocks";
2
+
3
+ <Meta title="Templates/Using templates" />
4
+
5
+ # Using templates
6
+
7
+ This section includes a series of starter templates constructed from multiple components within this library. All of these templates are included in the [sveltekit-starter](https://github.com/ONSvisual/sveltekit-starter) project, which is typically to be the easiest way to use them.
8
+
9
+ When using these templates in an existing SvelteKit project (or one built from scratch), you will need to include the **main.css** file from this library, which is best imported to your top-level `+layout.svelte` file in Svelte Kit. By doing this, you will not need to include it on individual pages.
10
+
11
+ {/* prettier-ignore */}
12
+ ```html
13
+ <!-- /src/routes/+layout.svelte -->
14
+ <script>
15
+ import "@onsvisual/svelte-components/css/main.css";
16
+ </script>
17
+
18
+ <slot />
19
+ ```
@@ -0,0 +1,38 @@
1
+ <script module>
2
+ import { defineMeta } from "@storybook/addon-svelte-csf";
3
+ import { withComponentDocs } from "../../js/withParams.js";
4
+ import Container from "./Container.svelte";
5
+ import componentDocs from "./docs/component.md?raw";
6
+
7
+ const { Story } = defineMeta({
8
+ title: "Wrappers/Container",
9
+ component: Container,
10
+ tags: ["autodocs"],
11
+ argTypes: {
12
+ width: {
13
+ control: { type: "select" }
14
+ }
15
+ },
16
+ parameters: withComponentDocs(componentDocs)
17
+ });
18
+ </script>
19
+
20
+ {#snippet template(args)}
21
+ <Container {...args}>
22
+ <div style:padding="24px 12px" style:background="var(--ons-color-grey-10)">
23
+ <p style:margin="0">Contents of container.</p>
24
+ </div>
25
+ </Container>
26
+ {/snippet}
27
+
28
+ <Story name="Default" args={{}} {template} />
29
+
30
+ <Story name="Narrow" args={{ width: "narrow" }} {template} />
31
+
32
+ <Story name="Medium" args={{ width: "medium" }} {template} />
33
+
34
+ <Story name="Wide" args={{ width: "wide" }} {template} />
35
+
36
+ <Story name="Wider" args={{ width: "wider" }} {template} />
37
+
38
+ <Story name="Full" args={{ width: "full" }} {template} />
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} ContainerProps */
2
+ /** @typedef {typeof __propDef.events} ContainerEvents */
3
+ /** @typedef {typeof __propDef.slots} ContainerSlots */
4
+ export default class Container extends SvelteComponentTyped<{
5
+ [x: string]: never;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type ContainerProps = typeof __propDef.props;
11
+ export type ContainerEvents = typeof __propDef.events;
12
+ export type ContainerSlots = typeof __propDef.slots;
13
+ import { SvelteComponentTyped } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ [x: string]: never;
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -1,143 +1,64 @@
1
1
  <script>
2
- import Theme from "../Theme/Theme.svelte";
3
-
4
- /**
5
- * (Optional) Sets the unique ID of the container
6
- * @type {string}
7
- */
8
- export let id = null;
9
- /**
10
- * (Optional) Sets a css class for the container
11
- * @type {string}
12
- */
13
- export let cls = null;
14
- /**
15
- * Sets the width of the container
16
- * @type {"narrow"|"medium"|"wide"|"wider"|"full"}
17
- */
18
- export let width = "wide";
19
- /**
20
- * Sets the minimum height of the container relative to the height of the viewport
21
- * @type {"auto"|"tall"|"full"}
22
- */
23
- export let height = "auto";
24
- /**
25
- * Optional margin above container
26
- * @type {boolean}
27
- */
28
- export let marginTop = false;
29
- /**
30
- * Optional margin below container
31
- * @type {boolean}
32
- */
33
- export let marginBottom = false;
34
- /**
35
- * Sets a predefined theme
36
- * @type {"light"|"dark"|"lightblue"}
37
- */
38
- export let theme = null;
39
- /**
40
- * Define additional props to override the base theme
41
- * @type {object}
42
- */
43
- export let themeOverrides = null;
44
- /**
45
- * Overrides the base theme background (accepts any valid CSS background value)
46
- * @type {string}
47
- */
48
- export let background = null;
49
- /**
50
- * Allows client imported CSS for embeddable content
51
- * @type {boolean}
52
- */
53
- export let allowClientOverrides = false;
54
-
55
- $: _id = id && !(theme || background) ? id : null;
56
- $: _cls = cls && !(theme || background) ? cls : "";
2
+ /**
3
+ * Optional: Set the unique ID of the container
4
+ * @type {string}
5
+ */
6
+ export let id = "";
7
+ /**
8
+ * Optional: Set a CSS class for the container
9
+ * @type {string}
10
+ */
11
+ export let cls = "";
12
+ /**
13
+ * Sets the width of the container
14
+ * @type {"narrow"|"medium"|"wide"|"wider"|"full"}
15
+ */
16
+ export let width = "wide";
17
+ /**
18
+ * Sets the height of the container
19
+ * @type {number|string|null}
20
+ */
21
+ export let height = null;
22
+ /**
23
+ * Optional margin above container
24
+ * @type {boolean}
25
+ */
26
+ export let marginTop = false;
27
+ /**
28
+ * Optional margin below container
29
+ * @type {boolean}
30
+ */
31
+ export let marginBottom = false;
32
+ /**
33
+ * Overrides the base theme background (accepts any valid CSS background value)
34
+ * @type {string|null}
35
+ */
36
+ export let background = null;
57
37
  </script>
58
38
 
59
- {#if ["narrow", "medium"].includes(width)}
60
- <Theme
61
- id="{id}"
62
- cls="{cls}"
63
- theme="{theme}"
64
- background="{background}"
65
- overrides="{themeOverrides}"
66
- allowClientOverrides="{allowClientOverrides}"
67
- >
68
- <div
69
- id="{_id}"
70
- class="ons-page__container ons-container {_cls}"
71
- class:ons-page__container--tall-height="{height === 'tall'}"
72
- class:ons-page__container--full-height="{height === 'full'}"
73
- >
74
- {#if marginTop}<div class="ons-spacer"></div>{/if}
75
- <div
76
- class:ons-page__container--narrow="{width === 'narrow'}"
77
- class:ons-page__container--medium="{width === 'medium'}"
78
- >
79
- <slot />
80
- </div>
81
- {#if marginBottom}<div class="ons-spacer"></div>{/if}
82
- </div>
83
- </Theme>
84
- {:else}
85
- <Theme
86
- id="{id}"
87
- cls="{cls}"
88
- theme="{theme}"
89
- background="{background}"
90
- overrides="{themeOverrides}"
91
- allowClientOverrides="{allowClientOverrides}"
92
- >
93
- <div
94
- id="{_id}"
95
- class="ons-page__container ons-container {_cls}"
96
- class:ons-page__container--wider="{width === 'wider'}"
97
- class:ons-page__container--full="{width === 'full'}"
98
- class:ons-page__container--tall-height="{height === 'tall'}"
99
- class:ons-page__container--full-height="{height === 'full'}"
100
- >
101
- {#if marginTop}<div class="ons-spacer"></div>{/if}
102
- <slot />
103
- {#if marginBottom}<div class="ons-spacer"></div>{/if}
104
- </div>
105
- </Theme>
106
- {/if}
107
-
108
- <style>
109
- .ons-page__container {
110
- padding-top: 0.05px;
111
- padding-bottom: 0.05px;
112
- }
113
- .ons-page__container--narrow {
114
- max-width: 608px;
115
- margin: 0 auto 0 0;
116
- }
117
- .ons-page__container--medium {
118
- max-width: 800px;
119
- margin: 0 auto 0 0;
120
- }
121
- .ons-page__container--wider {
122
- max-width: 1240px;
123
- }
124
- .ons-page__container--full {
125
- width: 100%;
126
- max-width: 100%;
127
- margin: 0;
128
- padding: 0;
129
- }
130
- .ons-page__container--tall-height {
131
- min-height: 80vh;
132
- display: flex;
133
- align-items: center;
134
- }
135
- .ons-page__container--full-height {
136
- min-height: 100vh;
137
- display: flex;
138
- align-items: center;
139
- }
140
- .ons-page__container--vpadding {
141
- padding-top: 20px;
142
- padding-bottom: 20px;
143
- }</style>
39
+ <div
40
+ {id}
41
+ class="ons-page__container {cls || ''}"
42
+ class:ons-container={width !== "full"}
43
+ class:ons-container--wide={width === "wider"}
44
+ class:ons-u-mt-xl={marginTop}
45
+ class:ons-u-mb-xl={marginBottom}
46
+ style:background
47
+ style:height={typeof height === "number" ? `${height}px` : height === "full" ? "100vh" : height}
48
+ >
49
+ {#if width === "narrow"}
50
+ <div class="ons-grid">
51
+ <div class="ons-grid__col ons-col-10@m ons-col-8@l">
52
+ <slot />
53
+ </div>
54
+ </div>
55
+ {:else if width === "medium"}
56
+ <div class="ons-grid">
57
+ <div class="ons-grid__col ons-col-10@l">
58
+ <slot />
59
+ </div>
60
+ </div>
61
+ {:else}
62
+ <slot />
63
+ {/if}
64
+ </div>
@@ -0,0 +1,39 @@
1
+ /** @typedef {typeof __propDef.props} ContainerProps */
2
+ /** @typedef {typeof __propDef.events} ContainerEvents */
3
+ /** @typedef {typeof __propDef.slots} ContainerSlots */
4
+ export default class Container extends SvelteComponentTyped<{
5
+ id?: string | undefined;
6
+ cls?: string | undefined;
7
+ width?: "narrow" | "medium" | "wide" | "wider" | "full" | undefined;
8
+ height?: string | number | null | undefined;
9
+ marginTop?: boolean | undefined;
10
+ marginBottom?: boolean | undefined;
11
+ background?: string | null | undefined;
12
+ }, {
13
+ [evt: string]: CustomEvent<any>;
14
+ }, {
15
+ default: {};
16
+ }> {
17
+ }
18
+ export type ContainerProps = typeof __propDef.props;
19
+ export type ContainerEvents = typeof __propDef.events;
20
+ export type ContainerSlots = typeof __propDef.slots;
21
+ import { SvelteComponentTyped } from "svelte";
22
+ declare const __propDef: {
23
+ props: {
24
+ id?: string | undefined;
25
+ cls?: string | undefined;
26
+ width?: "narrow" | "medium" | "wide" | "wider" | "full" | undefined;
27
+ height?: string | number | null | undefined;
28
+ marginTop?: boolean | undefined;
29
+ marginBottom?: boolean | undefined;
30
+ background?: string | null | undefined;
31
+ };
32
+ events: {
33
+ [evt: string]: CustomEvent<any>;
34
+ };
35
+ slots: {
36
+ default: {};
37
+ };
38
+ };
39
+ export {};
@@ -0,0 +1,10 @@
1
+ A container to set the width, minimum height and theme of a block of content.
2
+
3
+ <!-- prettier-ignore -->
4
+ ```html
5
+ <script>
6
+ import { Container } from "@onsvisual/svelte-components";
7
+ </script>
8
+
9
+ <Container width="{narrow|medium|wide|full}"> {child_components} </Container>
10
+ ```