@birdapi/velinstyle 0.7.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. package/README.de.md +135 -224
  2. package/README.md +134 -223
  3. package/cli/blueprint.js +8 -0
  4. package/cli/blueprints/bottom-nav-mobile.html +17 -0
  5. package/cli/blueprints/cookie-consent.html +9 -0
  6. package/cli/blueprints/empty-state.html +5 -0
  7. package/cli/blueprints/filter-bar.html +15 -0
  8. package/cli/blueprints/notification-center.html +13 -0
  9. package/cli/blueprints/onboarding.html +23 -0
  10. package/cli/blueprints/pricing-table.html +20 -0
  11. package/cli/blueprints/settings-panel.html +20 -0
  12. package/cli/cli-manifest.json +97 -0
  13. package/cli/docgen/extract-a11y.js +89 -0
  14. package/cli/docgen/extract-attributes.js +95 -0
  15. package/cli/docgen/extract-cli.js +50 -0
  16. package/cli/docgen/extract-components.js +175 -0
  17. package/cli/docgen/extract-meta.js +32 -0
  18. package/cli/docgen/extract-rules.js +76 -0
  19. package/cli/docgen/extract-tokens.js +79 -0
  20. package/cli/docgen/extract-utilities.js +75 -0
  21. package/cli/docgen/markdown.js +43 -0
  22. package/cli/docs-generate.js +196 -0
  23. package/cli/index.js +236 -5
  24. package/cli/layout-audit.js +325 -0
  25. package/cli/meta.js +97 -0
  26. package/cli/perf-audit.js +174 -0
  27. package/cli/pii-scanner.js +134 -0
  28. package/cli/scaffold-recipes.json +70 -0
  29. package/cli/scaffold.js +155 -0
  30. package/cli/scanner-rules-data.js +62 -0
  31. package/cli/scanner.js +136 -1
  32. package/cli/search-index.js +163 -0
  33. package/cli/tokens-build.js +21 -1
  34. package/cli/tokens-validate.js +69 -0
  35. package/components/a11y-entry.js +42 -0
  36. package/components/a11y-utils.js +71 -0
  37. package/components/focus-manager.js +45 -8
  38. package/components/index.js +40 -11
  39. package/components/runtime/component-loaders.js +43 -0
  40. package/components/runtime/index.js +77 -0
  41. package/components/runtime-entry.js +10 -0
  42. package/components/sanitize.js +135 -28
  43. package/components/shadow-a11y-styles.js +18 -0
  44. package/components/velin-accordion.js +12 -0
  45. package/components/velin-announcer.js +35 -0
  46. package/components/velin-bottom-nav.js +108 -0
  47. package/components/velin-carousel.js +2 -2
  48. package/components/velin-code-block.js +142 -0
  49. package/components/velin-combobox.js +149 -0
  50. package/components/velin-command.js +142 -0
  51. package/components/velin-copy.js +18 -5
  52. package/components/velin-counter.js +155 -0
  53. package/components/velin-dialog.js +9 -1
  54. package/components/velin-email.js +94 -0
  55. package/components/velin-flip.js +220 -0
  56. package/components/velin-icon.js +99 -22
  57. package/components/velin-lightbox.js +8 -3
  58. package/components/velin-live-dot.js +90 -0
  59. package/components/velin-menubar.js +83 -0
  60. package/components/velin-modal.js +6 -3
  61. package/components/velin-popover.js +34 -2
  62. package/components/velin-rating.js +91 -0
  63. package/components/velin-reveal.js +22 -0
  64. package/components/velin-scroll-top.js +1 -1
  65. package/components/velin-search.js +267 -0
  66. package/components/velin-secure-field.js +99 -0
  67. package/components/velin-segmented-control.js +108 -0
  68. package/components/velin-sheet.js +107 -0
  69. package/components/velin-sparkline.js +227 -0
  70. package/components/{velin-stepper-wc.js → velin-stepper.js} +37 -8
  71. package/components/velin-theme-toggle.js +284 -60
  72. package/components/velin-toast.js +4 -0
  73. package/components/{velin-tooltip-wc.js → velin-tooltip.js} +22 -3
  74. package/core/a11y/component-contracts.json +221 -0
  75. package/core/attributes/index.js +6 -0
  76. package/core/attributes/registry.js +268 -0
  77. package/core/highlight/highlight.js +114 -0
  78. package/core/highlight/index.js +29 -0
  79. package/core/highlight/languages/_utils.js +52 -0
  80. package/core/highlight/languages/blade.js +16 -0
  81. package/core/highlight/languages/css.js +26 -0
  82. package/core/highlight/languages/html.js +17 -0
  83. package/core/highlight/languages/js.js +58 -0
  84. package/core/highlight/languages/json.js +14 -0
  85. package/core/highlight/languages/markdown.js +16 -0
  86. package/core/highlight/languages/php.js +39 -0
  87. package/core/highlight/languages/plain.js +7 -0
  88. package/core/highlight/languages/shell.js +33 -0
  89. package/core/highlight/languages/sql.js +20 -0
  90. package/core/highlight/languages/typescript.js +28 -0
  91. package/core/highlight/observe.js +53 -0
  92. package/core/highlight/registry.js +107 -0
  93. package/core/highlight/render.js +35 -0
  94. package/core/highlight/types.js +28 -0
  95. package/core/meta/build.js +293 -0
  96. package/core/meta/index.js +17 -0
  97. package/core/meta/schema.js +49 -0
  98. package/core/motion/effects.js +54 -0
  99. package/core/motion/index.js +76 -0
  100. package/core/motion/scheduler.js +72 -0
  101. package/core/motion/scroll.js +32 -0
  102. package/core/motion/stagger.js +24 -0
  103. package/core/search/docs-url.js +96 -0
  104. package/core/search/engine.js +139 -0
  105. package/core/search/highlight.js +48 -0
  106. package/core/search/index.js +126 -0
  107. package/core/search/providers.js +36 -0
  108. package/core/search/types.js +61 -0
  109. package/core/search/worker-client.js +56 -0
  110. package/core/search/worker.js +20 -0
  111. package/dist/chunks/a11y-utils-IRC7LOPF.js +16 -0
  112. package/dist/chunks/attributes-3BZLI7XF.js +364 -0
  113. package/dist/chunks/attributes-4N5JP4CG.js +364 -0
  114. package/dist/chunks/attributes-5Q2WXGRC.js +374 -0
  115. package/dist/chunks/attributes-AIR7SVLK.js +364 -0
  116. package/dist/chunks/attributes-BGRN5XZO.js +364 -0
  117. package/dist/chunks/attributes-BVSQAYLR.js +364 -0
  118. package/dist/chunks/attributes-CDYFUY7Y.js +364 -0
  119. package/dist/chunks/attributes-JMYJZBPE.js +364 -0
  120. package/dist/chunks/attributes-R5JY3X4O.js +374 -0
  121. package/dist/chunks/attributes-STYCS3O5.js +391 -0
  122. package/dist/chunks/attributes-TNSPQTHX.js +374 -0
  123. package/dist/chunks/attributes-TPANLMLF.js +391 -0
  124. package/dist/chunks/blade-LIQLVKZQ.js +19 -0
  125. package/dist/chunks/browser-MRKYZPEH.js +1149 -0
  126. package/dist/chunks/chunk-2354NEBP.js +109 -0
  127. package/dist/chunks/chunk-2VNA7G7S.js +109 -0
  128. package/dist/chunks/chunk-42VVPW6N.js +132 -0
  129. package/dist/chunks/chunk-7FFAMRFV.js +44 -0
  130. package/dist/chunks/chunk-7MCGPHVC.js +69 -0
  131. package/dist/chunks/chunk-AQLRJSGG.js +109 -0
  132. package/dist/chunks/chunk-EWPSDMQT.js +109 -0
  133. package/dist/chunks/chunk-F7OLHTGX.js +22 -0
  134. package/dist/chunks/chunk-J472ERN2.js +242 -0
  135. package/dist/chunks/chunk-LA7264K4.js +85 -0
  136. package/dist/chunks/chunk-M5CHQVP6.js +61 -0
  137. package/dist/chunks/chunk-MKZP2TBH.js +89 -0
  138. package/dist/chunks/chunk-QTJJ3DPO.js +109 -0
  139. package/dist/chunks/chunk-RDE3QE7Z.js +89 -0
  140. package/dist/chunks/chunk-RSMRR27R.js +109 -0
  141. package/dist/chunks/chunk-RZQVWFHW.js +109 -0
  142. package/dist/chunks/chunk-SRL6EWHP.js +109 -0
  143. package/dist/chunks/chunk-U4XHMZ7D.js +109 -0
  144. package/dist/chunks/chunk-V5YIUA6G.js +109 -0
  145. package/dist/chunks/chunk-XIET2VSZ.js +109 -0
  146. package/dist/chunks/chunk-XYLJ2GCB.js +205 -0
  147. package/dist/chunks/chunk-Z4JYQ2XX.js +51 -0
  148. package/dist/chunks/chunk-ZPSPKUYD.js +109 -0
  149. package/dist/chunks/css-MQ5YU77P.js +28 -0
  150. package/dist/chunks/highlight-GJHHV4KM.js +37 -0
  151. package/dist/chunks/highlight-XTHRKBA3.js +37 -0
  152. package/dist/chunks/html-ZODC4DLQ.js +20 -0
  153. package/dist/chunks/js-MNSNYTJU.js +7 -0
  154. package/dist/chunks/json-VEM2HFH3.js +17 -0
  155. package/dist/chunks/markdown-E7OPGS3S.js +19 -0
  156. package/dist/chunks/php-MLL7T3LT.js +41 -0
  157. package/dist/chunks/plain-LJJDC5TN.js +8 -0
  158. package/dist/chunks/runtime-entry.js +14 -0
  159. package/dist/chunks/shell-QTRK4U4E.js +35 -0
  160. package/dist/chunks/sql-PPWLHGJ2.js +23 -0
  161. package/dist/chunks/typescript-JT3CCYWL.js +30 -0
  162. package/dist/chunks/velin-accordion-FBIPAEXG.js +105 -0
  163. package/dist/chunks/velin-accordion-QAQO7BI7.js +117 -0
  164. package/dist/chunks/velin-announcer-PVTXXCWR.js +33 -0
  165. package/dist/chunks/velin-bottom-nav-2N2TYWOF.js +86 -0
  166. package/dist/chunks/velin-bottom-nav-7GEMPIM6.js +86 -0
  167. package/dist/chunks/velin-bottom-nav-CTU6FFZV.js +101 -0
  168. package/dist/chunks/velin-bottom-nav-N3DFQR66.js +86 -0
  169. package/dist/chunks/velin-carousel-Y5VCOABZ.js +213 -0
  170. package/dist/chunks/velin-carousel-ZTBANFQQ.js +213 -0
  171. package/dist/chunks/velin-code-block-ASUBTAQV.js +119 -0
  172. package/dist/chunks/velin-code-block-CIAURDRJ.js +132 -0
  173. package/dist/chunks/velin-code-block-TSUKPY4C.js +123 -0
  174. package/dist/chunks/velin-code-block-Y6CM726Q.js +119 -0
  175. package/dist/chunks/velin-collapse-5XYBUIID.js +80 -0
  176. package/dist/chunks/velin-combobox-2KDTCQ7N.js +155 -0
  177. package/dist/chunks/velin-combobox-NXS4QB4R.js +155 -0
  178. package/dist/chunks/velin-combobox-UGA56HP3.js +155 -0
  179. package/dist/chunks/velin-command-CKDNO4BW.js +148 -0
  180. package/dist/chunks/velin-command-M7RNHUPR.js +136 -0
  181. package/dist/chunks/velin-command-ONKO2A3J.js +136 -0
  182. package/dist/chunks/velin-command-TMLSRGIU.js +136 -0
  183. package/dist/chunks/velin-copy-G2TZ5YBB.js +81 -0
  184. package/dist/chunks/velin-copy-NYDBOKXT.js +81 -0
  185. package/dist/chunks/velin-copy-T5KDTDXP.js +81 -0
  186. package/dist/chunks/velin-countdown-4ZVDGK4R.js +101 -0
  187. package/dist/chunks/velin-countdown-5XSTN3BH.js +101 -0
  188. package/dist/chunks/velin-countdown-7AIY66CU.js +101 -0
  189. package/dist/chunks/velin-counter-ISCTEAHI.js +118 -0
  190. package/dist/chunks/velin-counter-L5FYJF7A.js +121 -0
  191. package/dist/chunks/velin-dialog-D2GUHSCD.js +144 -0
  192. package/dist/chunks/velin-dialog-ELFOZIXZ.js +152 -0
  193. package/dist/chunks/velin-dialog-GTTZI564.js +147 -0
  194. package/dist/chunks/velin-dialog-IJLFDXAJ.js +144 -0
  195. package/dist/chunks/velin-dialog-TNS3WXMB.js +144 -0
  196. package/dist/chunks/velin-drawer-BE6TYN3H.js +130 -0
  197. package/dist/chunks/velin-drawer-DLL2GLT6.js +130 -0
  198. package/dist/chunks/velin-drawer-MJS6WCF7.js +130 -0
  199. package/dist/chunks/velin-dropdown-PLUIFA5M.js +172 -0
  200. package/dist/chunks/velin-email-N5B5ZYTE.js +90 -0
  201. package/dist/chunks/velin-email-NTM6DG3V.js +90 -0
  202. package/dist/chunks/velin-email-RBX6ZR4S.js +90 -0
  203. package/dist/chunks/velin-haptic-4QQTM3RK.js +50 -0
  204. package/dist/chunks/velin-icon-7M76DOPB.js +164 -0
  205. package/dist/chunks/velin-icon-KZO3IEHG.js +164 -0
  206. package/dist/chunks/velin-icon-WTFPG2DD.js +191 -0
  207. package/dist/chunks/velin-icon-ZTSKUOVN.js +193 -0
  208. package/dist/chunks/velin-lightbox-6E7CAATP.js +149 -0
  209. package/dist/chunks/velin-lightbox-I75U6JF4.js +140 -0
  210. package/dist/chunks/velin-lightbox-QOTB4PRL.js +140 -0
  211. package/dist/chunks/velin-lightbox-UCD6N7HF.js +140 -0
  212. package/dist/chunks/velin-live-dot-RJHX2DGY.js +74 -0
  213. package/dist/chunks/velin-live-dot-XHUZCIDZ.js +67 -0
  214. package/dist/chunks/velin-menubar-I426AED2.js +86 -0
  215. package/dist/chunks/velin-menubar-J66JXRWW.js +86 -0
  216. package/dist/chunks/velin-menubar-SFEXJE56.js +86 -0
  217. package/dist/chunks/velin-modal-2HOBXE6F.js +176 -0
  218. package/dist/chunks/velin-modal-5HYNNNUI.js +176 -0
  219. package/dist/chunks/velin-modal-AEOTZ67O.js +177 -0
  220. package/dist/chunks/velin-modal-GLI2XZZB.js +176 -0
  221. package/dist/chunks/velin-persist-DFPL3QP4.js +110 -0
  222. package/dist/chunks/velin-popover-EXINRIGJ.js +145 -0
  223. package/dist/chunks/velin-popover-HQW6Q2Y6.js +172 -0
  224. package/dist/chunks/velin-popover-OXX7MRZ6.js +145 -0
  225. package/dist/chunks/velin-popover-T72HK3DF.js +151 -0
  226. package/dist/chunks/velin-popover-YKCCROJG.js +145 -0
  227. package/dist/chunks/velin-progress-ring-E4YRLZHH.js +66 -0
  228. package/dist/chunks/velin-rating-6CDBI6DG.js +91 -0
  229. package/dist/chunks/velin-rating-N4DI2XNL.js +91 -0
  230. package/dist/chunks/velin-rating-XRQJV4LO.js +91 -0
  231. package/dist/chunks/velin-scroll-top-F2FCZNYD.js +58 -0
  232. package/dist/chunks/velin-scroll-top-OHYVVHHY.js +58 -0
  233. package/dist/chunks/velin-scrollspy-OKCT4FDV.js +50 -0
  234. package/dist/chunks/velin-search-2XRQFBCS.js +556 -0
  235. package/dist/chunks/velin-search-4YHJWYSS.js +556 -0
  236. package/dist/chunks/velin-search-7B4KJ6TX.js +557 -0
  237. package/dist/chunks/velin-search-LWHY23Q5.js +474 -0
  238. package/dist/chunks/velin-secure-field-6PV7RZDJ.js +95 -0
  239. package/dist/chunks/velin-secure-field-H7FSBUJW.js +95 -0
  240. package/dist/chunks/velin-secure-field-OFNAXCDP.js +95 -0
  241. package/dist/chunks/velin-segmented-control-EKL4E3BL.js +109 -0
  242. package/dist/chunks/velin-segmented-control-GYD5BIXQ.js +109 -0
  243. package/dist/chunks/velin-segmented-control-PQX6LKOJ.js +109 -0
  244. package/dist/chunks/velin-sheet-3OGI4HD7.js +119 -0
  245. package/dist/chunks/velin-sheet-OUK6572T.js +119 -0
  246. package/dist/chunks/velin-sheet-R2Y67X6H.js +119 -0
  247. package/dist/chunks/velin-sparkline-GVEANJVW.js +184 -0
  248. package/dist/chunks/velin-sparkline-KDA3GQAN.js +162 -0
  249. package/dist/chunks/velin-sparkline-XVTFC6GE.js +181 -0
  250. package/dist/chunks/velin-stepper-2ZIHLKGM.js +141 -0
  251. package/dist/chunks/velin-stepper-7ECRUYHD.js +148 -0
  252. package/dist/chunks/velin-stepper-FYEUEWE6.js +141 -0
  253. package/dist/chunks/velin-stepper-X54WGHDG.js +141 -0
  254. package/dist/chunks/velin-stepper-wc-QU3KRVQR.js +133 -0
  255. package/dist/chunks/velin-tabs-5UQ5ZVMV.js +138 -0
  256. package/dist/chunks/velin-theme-toggle-32J2CBNC.js +291 -0
  257. package/dist/chunks/velin-theme-toggle-BNNS7WLV.js +285 -0
  258. package/dist/chunks/velin-theme-toggle-NO7V4TWI.js +285 -0
  259. package/dist/chunks/velin-theme-toggle-QELCJM2Q.js +291 -0
  260. package/dist/chunks/velin-toast-OMMOA2DK.js +109 -0
  261. package/dist/chunks/velin-toast-RCZ4CSUC.js +109 -0
  262. package/dist/chunks/velin-toast-RSF2IHT3.js +113 -0
  263. package/dist/chunks/velin-toast-WEUBTJG6.js +109 -0
  264. package/dist/chunks/velin-tooltip-664IOHZA.js +112 -0
  265. package/dist/chunks/velin-tooltip-BDHGRTQB.js +112 -0
  266. package/dist/chunks/velin-tooltip-HVUOKNVX.js +112 -0
  267. package/dist/chunks/velin-tooltip-wc-LXDVT6DE.js +103 -0
  268. package/dist/chunks/worker-client-R6DBYPFT.js +46 -0
  269. package/dist/llms.test.txt +40 -0
  270. package/dist/llms.txt +40 -0
  271. package/dist/search-index.json +1773 -0
  272. package/dist/search-index.test.json +1773 -0
  273. package/dist/themes/brutalist.min.css +1 -1
  274. package/dist/themes/midnight.min.css +1 -1
  275. package/dist/themes/pastel.min.css +1 -1
  276. package/dist/themes/retro.min.css +1 -1
  277. package/dist/themes/sunset.min.css +1 -1
  278. package/dist/velin-agent.json +684 -0
  279. package/dist/velin-agent.test.json +684 -0
  280. package/dist/velinstyle-components.iife.js +7959 -2199
  281. package/dist/velinstyle-components.js +7982 -2174
  282. package/dist/velinstyle-components.min.js +521 -90
  283. package/dist/velinstyle.css +1290 -282
  284. package/dist/velinstyle.d.ts +54 -0
  285. package/dist/velinstyle.min.css +1 -1
  286. package/examples/search-index.schema.json +33 -0
  287. package/package.json +57 -10
  288. package/src/a11y/authentication.css +37 -0
  289. package/src/a11y/consistent-help.css +22 -0
  290. package/src/a11y/dragging-alternatives.css +30 -0
  291. package/src/a11y/focus-appearance.css +20 -0
  292. package/src/a11y/high-contrast-aaa.css +16 -26
  293. package/src/a11y/security.css +18 -0
  294. package/src/a11y/skip-link.css +3 -1
  295. package/src/a11y/sr-only.css +1 -1
  296. package/src/base/reset.css +0 -25
  297. package/src/base/wc-placeholder.css +102 -0
  298. package/src/components/attributes.css +42 -0
  299. package/src/components/highlight.css +182 -0
  300. package/src/components/input-group.css +1 -2
  301. package/src/components/nav.css +151 -151
  302. package/src/components/search.css +95 -0
  303. package/src/components/stepper.css +2 -4
  304. package/src/components/timeline.css +1 -2
  305. package/src/components/tooltip.css +2 -4
  306. package/src/layout/container.css +5 -5
  307. package/src/layout/grid.css +8 -8
  308. package/src/layout/patterns.css +5 -5
  309. package/src/themes/brutalist.css +2 -11
  310. package/src/themes/corporate.css +0 -9
  311. package/src/themes/earth.css +0 -9
  312. package/src/themes/forest.css +0 -9
  313. package/src/themes/midnight.css +1 -10
  314. package/src/themes/neon.css +0 -9
  315. package/src/themes/nordic.css +0 -9
  316. package/src/themes/ocean.css +0 -9
  317. package/src/themes/pastel.css +1 -10
  318. package/src/themes/retro.css +2 -11
  319. package/src/themes/sharp.css +0 -7
  320. package/src/themes/soft.css +0 -7
  321. package/src/themes/sunset.css +1 -10
  322. package/src/tokens/color.css +45 -46
  323. package/src/tokens/fonts.css +10 -0
  324. package/src/tokens/motion.css +7 -0
  325. package/src/tokens/typography.css +4 -5
  326. package/src/utilities/animation.css +99 -3
  327. package/src/utilities/chart-animation.css +101 -0
  328. package/src/utilities/display.css +3 -3
  329. package/src/utilities/divide.css +2 -6
  330. package/src/utilities/filter-effects.css +103 -0
  331. package/src/utilities/responsive.css +4 -4
  332. package/src/utilities/safe-area.css +39 -0
  333. package/src/utilities/scroll-animation.css +34 -0
  334. package/src/utilities/spacing.css +17 -8
  335. package/src/utilities/text.css +4 -1
  336. package/src/velinstyle.css +12 -0
@@ -0,0 +1,1773 @@
1
+ {
2
+ "version": 1,
3
+ "generatedAt": "2026-05-21T06:38:42.299Z",
4
+ "entries": [
5
+ {
6
+ "id": "examples:samples/a11y-patterns.html",
7
+ "title": "A11y patterns",
8
+ "excerpt": "samples/a11y-patterns.html",
9
+ "url": "samples/a11y-patterns.html",
10
+ "category": "examples",
11
+ "keywords": [
12
+ "a11y-patterns.html",
13
+ "sample",
14
+ "example"
15
+ ],
16
+ "weight": 0.85
17
+ },
18
+ {
19
+ "id": "examples:samples/a11y-components.html",
20
+ "title": "Accessibility component fixtures",
21
+ "excerpt": "samples/a11y-components.html",
22
+ "url": "samples/a11y-components.html",
23
+ "category": "examples",
24
+ "keywords": [
25
+ "a11y-components.html",
26
+ "sample",
27
+ "example"
28
+ ],
29
+ "weight": 0.85
30
+ },
31
+ {
32
+ "id": "docs:modules",
33
+ "title": "Accessibility CSS modules",
34
+ "excerpt": "Imported in @layer a11y from src/velinstyle.css.",
35
+ "url": "docs/generated/a11y/modules.html",
36
+ "category": "docs",
37
+ "keywords": [
38
+ "modules",
39
+ "docs",
40
+ "Accessibility CSS modules"
41
+ ],
42
+ "weight": 1
43
+ },
44
+ {
45
+ "id": "examples:samples/settings.html",
46
+ "title": "Account Settings",
47
+ "excerpt": "samples/settings.html",
48
+ "url": "samples/settings.html",
49
+ "category": "examples",
50
+ "keywords": [
51
+ "settings.html",
52
+ "sample",
53
+ "example"
54
+ ],
55
+ "weight": 0.85
56
+ },
57
+ {
58
+ "id": "api:commands",
59
+ "title": "CLI commands",
60
+ "excerpt": "VelinStyle CLI v0.9.0. Run velinstyle --help for full usage.",
61
+ "url": "docs/generated/cli/commands.html",
62
+ "category": "api",
63
+ "keywords": [
64
+ "commands",
65
+ "api",
66
+ "CLI commands"
67
+ ],
68
+ "weight": 1.15
69
+ },
70
+ {
71
+ "id": "api:add",
72
+ "title": "CLI: add",
73
+ "excerpt": "Add a single component CSS file to your project",
74
+ "url": "docs/generated/cli/commands.html#add",
75
+ "category": "api",
76
+ "keywords": [
77
+ "cli",
78
+ "add"
79
+ ],
80
+ "weight": 1.1
81
+ },
82
+ {
83
+ "id": "api:blueprint",
84
+ "title": "CLI: blueprint",
85
+ "excerpt": "Print HTML blueprint snippets",
86
+ "url": "docs/generated/cli/commands.html#blueprint",
87
+ "category": "api",
88
+ "keywords": [
89
+ "cli",
90
+ "blueprint"
91
+ ],
92
+ "weight": 1.1
93
+ },
94
+ {
95
+ "id": "api:build",
96
+ "title": "CLI: build",
97
+ "excerpt": "Build custom CSS with selected layers from config",
98
+ "url": "docs/generated/cli/commands.html#build",
99
+ "category": "api",
100
+ "keywords": [
101
+ "cli",
102
+ "build"
103
+ ],
104
+ "weight": 1.1
105
+ },
106
+ {
107
+ "id": "api:docs",
108
+ "title": "CLI: docs",
109
+ "excerpt": "Generate developer reference Markdown",
110
+ "url": "docs/generated/cli/commands.html#docs",
111
+ "category": "api",
112
+ "keywords": [
113
+ "cli",
114
+ "docs"
115
+ ],
116
+ "weight": 1.1
117
+ },
118
+ {
119
+ "id": "api:icons",
120
+ "title": "CLI: icons",
121
+ "excerpt": "Manage icon providers (list, add, remove, build)",
122
+ "url": "docs/generated/cli/commands.html#icons",
123
+ "category": "api",
124
+ "keywords": [
125
+ "cli",
126
+ "icons"
127
+ ],
128
+ "weight": 1.1
129
+ },
130
+ {
131
+ "id": "api:init",
132
+ "title": "CLI: init",
133
+ "excerpt": "Create velinstyle.config.js",
134
+ "url": "docs/generated/cli/commands.html#init",
135
+ "category": "api",
136
+ "keywords": [
137
+ "cli",
138
+ "init"
139
+ ],
140
+ "weight": 1.1
141
+ },
142
+ {
143
+ "id": "api:layout",
144
+ "title": "CLI: layout",
145
+ "excerpt": "Responsive layout audit (flex, grid, viewport)",
146
+ "url": "docs/generated/cli/commands.html#layout",
147
+ "category": "api",
148
+ "keywords": [
149
+ "cli",
150
+ "layout"
151
+ ],
152
+ "weight": 1.1
153
+ },
154
+ {
155
+ "id": "api:meta",
156
+ "title": "CLI: meta",
157
+ "excerpt": "Build Velin-Meta agent bundle (velin-agent.json, llms.txt)",
158
+ "url": "docs/generated/cli/commands.html#meta",
159
+ "category": "api",
160
+ "keywords": [
161
+ "cli",
162
+ "meta"
163
+ ],
164
+ "weight": 1.1
165
+ },
166
+ {
167
+ "id": "api:perf",
168
+ "title": "CLI: perf",
169
+ "excerpt": "Performance audit for images and scripts",
170
+ "url": "docs/generated/cli/commands.html#perf",
171
+ "category": "api",
172
+ "keywords": [
173
+ "cli",
174
+ "perf"
175
+ ],
176
+ "weight": 1.1
177
+ },
178
+ {
179
+ "id": "api:prefix",
180
+ "title": "CLI: prefix",
181
+ "excerpt": "Add missing velin- prefix to classes (dry-run; use --write)",
182
+ "url": "docs/generated/cli/commands.html#prefix",
183
+ "category": "api",
184
+ "keywords": [
185
+ "cli",
186
+ "prefix"
187
+ ],
188
+ "weight": 1.1
189
+ },
190
+ {
191
+ "id": "api:scaffold",
192
+ "title": "CLI: scaffold",
193
+ "excerpt": "Generate layout HTML from natural language prompt",
194
+ "url": "docs/generated/cli/commands.html#scaffold",
195
+ "category": "api",
196
+ "keywords": [
197
+ "cli",
198
+ "scaffold"
199
+ ],
200
+ "weight": 1.1
201
+ },
202
+ {
203
+ "id": "api:scan",
204
+ "title": "CLI: scan",
205
+ "excerpt": "Security, accessibility, CSS, and PII scanner",
206
+ "url": "docs/generated/cli/commands.html#scan",
207
+ "category": "api",
208
+ "keywords": [
209
+ "cli",
210
+ "scan"
211
+ ],
212
+ "weight": 1.1
213
+ },
214
+ {
215
+ "id": "api:themes",
216
+ "title": "CLI: themes",
217
+ "excerpt": "List available built-in themes",
218
+ "url": "docs/generated/cli/commands.html#themes",
219
+ "category": "api",
220
+ "keywords": [
221
+ "cli",
222
+ "themes"
223
+ ],
224
+ "weight": 1.1
225
+ },
226
+ {
227
+ "id": "api:tokens",
228
+ "title": "CLI: tokens",
229
+ "excerpt": "Build or validate design tokens JSON",
230
+ "url": "docs/generated/cli/commands.html#tokens",
231
+ "category": "api",
232
+ "keywords": [
233
+ "cli",
234
+ "tokens"
235
+ ],
236
+ "weight": 1.1
237
+ },
238
+ {
239
+ "id": "examples:samples/signup.html",
240
+ "title": "Create your account",
241
+ "excerpt": "samples/signup.html",
242
+ "url": "samples/signup.html",
243
+ "category": "examples",
244
+ "keywords": [
245
+ "signup.html",
246
+ "sample",
247
+ "example"
248
+ ],
249
+ "weight": 0.85
250
+ },
251
+ {
252
+ "id": "examples:samples/dashboard.html",
253
+ "title": "Dashboard",
254
+ "excerpt": "samples/dashboard.html",
255
+ "url": "samples/dashboard.html",
256
+ "category": "examples",
257
+ "keywords": [
258
+ "dashboard.html",
259
+ "sample",
260
+ "example"
261
+ ],
262
+ "weight": 0.85
263
+ },
264
+ {
265
+ "id": "examples:samples/login.html",
266
+ "title": "Login - VelinStyle Sample",
267
+ "excerpt": "samples/login.html",
268
+ "url": "samples/login.html",
269
+ "category": "examples",
270
+ "keywords": [
271
+ "login.html",
272
+ "sample",
273
+ "example"
274
+ ],
275
+ "weight": 0.85
276
+ },
277
+ {
278
+ "id": "examples:samples/chat.html",
279
+ "title": "Messages - VelinStyle Sample",
280
+ "excerpt": "samples/chat.html",
281
+ "url": "samples/chat.html",
282
+ "category": "examples",
283
+ "keywords": [
284
+ "chat.html",
285
+ "sample",
286
+ "example"
287
+ ],
288
+ "weight": 0.85
289
+ },
290
+ {
291
+ "id": "examples:samples/email.html",
292
+ "title": "Q3 Strategy Review — Action Items",
293
+ "excerpt": "samples/email.html",
294
+ "url": "samples/email.html",
295
+ "category": "examples",
296
+ "keywords": [
297
+ "email.html",
298
+ "sample",
299
+ "example"
300
+ ],
301
+ "weight": 0.85
302
+ },
303
+ {
304
+ "id": "examples:samples/wcag22-dragging.html",
305
+ "title": "Reorder list (2.5.7)",
306
+ "excerpt": "samples/wcag22-dragging.html",
307
+ "url": "samples/wcag22-dragging.html",
308
+ "category": "examples",
309
+ "keywords": [
310
+ "wcag22-dragging.html",
311
+ "sample",
312
+ "example"
313
+ ],
314
+ "weight": 0.85
315
+ },
316
+ {
317
+ "id": "docs:scanner",
318
+ "title": "Scanner rules",
319
+ "excerpt": "Run velinstyle scan [path] for security, a11y, CSS, and PII checks. velinstyle perf audit for performance.",
320
+ "url": "docs/generated/rules/scanner.html",
321
+ "category": "docs",
322
+ "keywords": [
323
+ "scanner",
324
+ "docs",
325
+ "Scanner rules"
326
+ ],
327
+ "weight": 0.95
328
+ },
329
+ {
330
+ "id": "examples:samples/ecommerce.html",
331
+ "title": "ShopVelin E-Commerce - VelinStyle Sample",
332
+ "excerpt": "samples/ecommerce.html",
333
+ "url": "samples/ecommerce.html",
334
+ "category": "examples",
335
+ "keywords": [
336
+ "ecommerce.html",
337
+ "sample",
338
+ "example"
339
+ ],
340
+ "weight": 0.85
341
+ },
342
+ {
343
+ "id": "examples:samples/wcag22-auth.html",
344
+ "title": "Sign in",
345
+ "excerpt": "samples/wcag22-auth.html",
346
+ "url": "samples/wcag22-auth.html",
347
+ "category": "examples",
348
+ "keywords": [
349
+ "wcag22-auth.html",
350
+ "sample",
351
+ "example"
352
+ ],
353
+ "weight": 0.85
354
+ },
355
+ {
356
+ "id": "examples:samples/pricing.html",
357
+ "title": "Simple, transparent pricing",
358
+ "excerpt": "samples/pricing.html",
359
+ "url": "samples/pricing.html",
360
+ "category": "examples",
361
+ "keywords": [
362
+ "pricing.html",
363
+ "sample",
364
+ "example"
365
+ ],
366
+ "weight": 0.85
367
+ },
368
+ {
369
+ "id": "examples:samples/portfolio.html",
370
+ "title": "Studio Kante - VelinStyle Brutalist Theme Sample",
371
+ "excerpt": "samples/portfolio.html",
372
+ "url": "samples/portfolio.html",
373
+ "category": "examples",
374
+ "keywords": [
375
+ "portfolio.html",
376
+ "sample",
377
+ "example"
378
+ ],
379
+ "weight": 0.85
380
+ },
381
+ {
382
+ "id": "examples:samples/velin-code-block.html",
383
+ "title": "Syntax highlighting",
384
+ "excerpt": "samples/velin-code-block.html",
385
+ "url": "samples/velin-code-block.html",
386
+ "category": "examples",
387
+ "keywords": [
388
+ "velin-code-block.html",
389
+ "sample",
390
+ "example"
391
+ ],
392
+ "weight": 0.85
393
+ },
394
+ {
395
+ "id": "examples:samples/blog.html",
396
+ "title": "The Future of Accessible Web Design: Why Standards Matter More Than Ever",
397
+ "excerpt": "samples/blog.html",
398
+ "url": "samples/blog.html",
399
+ "category": "examples",
400
+ "keywords": [
401
+ "blog.html",
402
+ "sample",
403
+ "example"
404
+ ],
405
+ "weight": 0.85
406
+ },
407
+ {
408
+ "id": "docs:json-schema",
409
+ "title": "Tokens JSON schema",
410
+ "excerpt": "Schema file: examples/tokens.schema.json",
411
+ "url": "docs/generated/tokens/json-schema.html",
412
+ "category": "docs",
413
+ "keywords": [
414
+ "json-schema",
415
+ "docs",
416
+ "Tokens JSON schema"
417
+ ],
418
+ "weight": 1
419
+ },
420
+ {
421
+ "id": "docs:aspect-ratio",
422
+ "title": "Tokens: aspect-ratio",
423
+ "excerpt": "Source: src/tokens/aspect-ratio.css",
424
+ "url": "docs/generated/tokens/aspect-ratio.html",
425
+ "category": "docs",
426
+ "keywords": [
427
+ "aspect-ratio",
428
+ "docs",
429
+ "Tokens: aspect-ratio"
430
+ ],
431
+ "weight": 1
432
+ },
433
+ {
434
+ "id": "docs:color",
435
+ "title": "Tokens: color",
436
+ "excerpt": "Source: src/tokens/color.css",
437
+ "url": "docs/generated/tokens/color.html",
438
+ "category": "docs",
439
+ "keywords": [
440
+ "color",
441
+ "docs",
442
+ "Tokens: color"
443
+ ],
444
+ "weight": 1
445
+ },
446
+ {
447
+ "id": "docs:fonts",
448
+ "title": "Tokens: fonts",
449
+ "excerpt": "Source: src/tokens/fonts.css",
450
+ "url": "docs/generated/tokens/fonts.html",
451
+ "category": "docs",
452
+ "keywords": [
453
+ "fonts",
454
+ "docs",
455
+ "Tokens: fonts"
456
+ ],
457
+ "weight": 1
458
+ },
459
+ {
460
+ "id": "docs:motion",
461
+ "title": "Tokens: motion",
462
+ "excerpt": "Source: src/tokens/motion.css",
463
+ "url": "docs/generated/tokens/motion.html",
464
+ "category": "docs",
465
+ "keywords": [
466
+ "motion",
467
+ "docs",
468
+ "Tokens: motion"
469
+ ],
470
+ "weight": 1
471
+ },
472
+ {
473
+ "id": "docs:radius",
474
+ "title": "Tokens: radius",
475
+ "excerpt": "Source: src/tokens/radius.css",
476
+ "url": "docs/generated/tokens/radius.html",
477
+ "category": "docs",
478
+ "keywords": [
479
+ "radius",
480
+ "docs",
481
+ "Tokens: radius"
482
+ ],
483
+ "weight": 1
484
+ },
485
+ {
486
+ "id": "docs:shadow",
487
+ "title": "Tokens: shadow",
488
+ "excerpt": "Source: src/tokens/shadow.css",
489
+ "url": "docs/generated/tokens/shadow.html",
490
+ "category": "docs",
491
+ "keywords": [
492
+ "shadow",
493
+ "docs",
494
+ "Tokens: shadow"
495
+ ],
496
+ "weight": 1
497
+ },
498
+ {
499
+ "id": "docs:spacing",
500
+ "title": "Tokens: spacing",
501
+ "excerpt": "Source: src/tokens/spacing.css",
502
+ "url": "docs/generated/tokens/spacing.html",
503
+ "category": "docs",
504
+ "keywords": [
505
+ "spacing",
506
+ "docs",
507
+ "Tokens: spacing"
508
+ ],
509
+ "weight": 1
510
+ },
511
+ {
512
+ "id": "docs:typography",
513
+ "title": "Tokens: typography",
514
+ "excerpt": "Source: src/tokens/typography.css",
515
+ "url": "docs/generated/tokens/typography.html",
516
+ "category": "docs",
517
+ "keywords": [
518
+ "typography",
519
+ "docs",
520
+ "Tokens: typography"
521
+ ],
522
+ "weight": 1
523
+ },
524
+ {
525
+ "id": "docs:z-index",
526
+ "title": "Tokens: z-index",
527
+ "excerpt": "Source: src/tokens/z-index.css",
528
+ "url": "docs/generated/tokens/z-index.html",
529
+ "category": "docs",
530
+ "keywords": [
531
+ "z-index",
532
+ "docs",
533
+ "Tokens: z-index"
534
+ ],
535
+ "weight": 1
536
+ },
537
+ {
538
+ "id": "docs:anchor",
539
+ "title": "Utilities: anchor",
540
+ "excerpt": "Source: src/utilities/anchor.css",
541
+ "url": "docs/generated/utilities/anchor.html",
542
+ "category": "docs",
543
+ "keywords": [
544
+ "anchor",
545
+ "docs",
546
+ "Utilities: anchor"
547
+ ],
548
+ "weight": 1
549
+ },
550
+ {
551
+ "id": "docs:animation",
552
+ "title": "Utilities: animation",
553
+ "excerpt": "Source: src/utilities/animation.css",
554
+ "url": "docs/generated/utilities/animation.html",
555
+ "category": "docs",
556
+ "keywords": [
557
+ "animation",
558
+ "docs",
559
+ "Utilities: animation"
560
+ ],
561
+ "weight": 1
562
+ },
563
+ {
564
+ "id": "docs:border",
565
+ "title": "Utilities: border",
566
+ "excerpt": "Source: src/utilities/border.css",
567
+ "url": "docs/generated/utilities/border.html",
568
+ "category": "docs",
569
+ "keywords": [
570
+ "border",
571
+ "docs",
572
+ "Utilities: border"
573
+ ],
574
+ "weight": 1
575
+ },
576
+ {
577
+ "id": "docs:chart-animation",
578
+ "title": "Utilities: chart-animation",
579
+ "excerpt": "Source: src/utilities/chart-animation.css",
580
+ "url": "docs/generated/utilities/chart-animation.html",
581
+ "category": "docs",
582
+ "keywords": [
583
+ "chart-animation",
584
+ "docs",
585
+ "Utilities: chart-animation"
586
+ ],
587
+ "weight": 1
588
+ },
589
+ {
590
+ "id": "docs:color-mix",
591
+ "title": "Utilities: color-mix",
592
+ "excerpt": "Source: src/utilities/color-mix.css",
593
+ "url": "docs/generated/utilities/color-mix.html",
594
+ "category": "docs",
595
+ "keywords": [
596
+ "color-mix",
597
+ "docs",
598
+ "Utilities: color-mix"
599
+ ],
600
+ "weight": 1
601
+ },
602
+ {
603
+ "id": "docs:container-style",
604
+ "title": "Utilities: container-style",
605
+ "excerpt": "Source: src/utilities/container-style.css",
606
+ "url": "docs/generated/utilities/container-style.html",
607
+ "category": "docs",
608
+ "keywords": [
609
+ "container-style",
610
+ "docs",
611
+ "Utilities: container-style"
612
+ ],
613
+ "weight": 1
614
+ },
615
+ {
616
+ "id": "docs:display",
617
+ "title": "Utilities: display",
618
+ "excerpt": "Source: src/utilities/display.css",
619
+ "url": "docs/generated/utilities/display.html",
620
+ "category": "docs",
621
+ "keywords": [
622
+ "display",
623
+ "docs",
624
+ "Utilities: display"
625
+ ],
626
+ "weight": 1
627
+ },
628
+ {
629
+ "id": "docs:divide",
630
+ "title": "Utilities: divide",
631
+ "excerpt": "Source: src/utilities/divide.css",
632
+ "url": "docs/generated/utilities/divide.html",
633
+ "category": "docs",
634
+ "keywords": [
635
+ "divide",
636
+ "docs",
637
+ "Utilities: divide"
638
+ ],
639
+ "weight": 1
640
+ },
641
+ {
642
+ "id": "docs:filter",
643
+ "title": "Utilities: filter",
644
+ "excerpt": "Source: src/utilities/filter.css",
645
+ "url": "docs/generated/utilities/filter.html",
646
+ "category": "docs",
647
+ "keywords": [
648
+ "filter",
649
+ "docs",
650
+ "Utilities: filter"
651
+ ],
652
+ "weight": 1
653
+ },
654
+ {
655
+ "id": "docs:filter-effects",
656
+ "title": "Utilities: filter-effects",
657
+ "excerpt": "Source: src/utilities/filter-effects.css",
658
+ "url": "docs/generated/utilities/filter-effects.html",
659
+ "category": "docs",
660
+ "keywords": [
661
+ "filter-effects",
662
+ "docs",
663
+ "Utilities: filter-effects"
664
+ ],
665
+ "weight": 1
666
+ },
667
+ {
668
+ "id": "docs:gradient",
669
+ "title": "Utilities: gradient",
670
+ "excerpt": "Source: src/utilities/gradient.css",
671
+ "url": "docs/generated/utilities/gradient.html",
672
+ "category": "docs",
673
+ "keywords": [
674
+ "gradient",
675
+ "docs",
676
+ "Utilities: gradient"
677
+ ],
678
+ "weight": 1
679
+ },
680
+ {
681
+ "id": "docs:position",
682
+ "title": "Utilities: position",
683
+ "excerpt": "Source: src/utilities/position.css",
684
+ "url": "docs/generated/utilities/position.html",
685
+ "category": "docs",
686
+ "keywords": [
687
+ "position",
688
+ "docs",
689
+ "Utilities: position"
690
+ ],
691
+ "weight": 1
692
+ },
693
+ {
694
+ "id": "docs:print",
695
+ "title": "Utilities: print",
696
+ "excerpt": "Source: src/utilities/print.css",
697
+ "url": "docs/generated/utilities/print.html",
698
+ "category": "docs",
699
+ "keywords": [
700
+ "print",
701
+ "docs",
702
+ "Utilities: print"
703
+ ],
704
+ "weight": 1
705
+ },
706
+ {
707
+ "id": "docs:responsive",
708
+ "title": "Utilities: responsive",
709
+ "excerpt": "Source: src/utilities/responsive.css",
710
+ "url": "docs/generated/utilities/responsive.html",
711
+ "category": "docs",
712
+ "keywords": [
713
+ "responsive",
714
+ "docs",
715
+ "Utilities: responsive"
716
+ ],
717
+ "weight": 1
718
+ },
719
+ {
720
+ "id": "docs:safe-area",
721
+ "title": "Utilities: safe-area",
722
+ "excerpt": "Source: src/utilities/safe-area.css",
723
+ "url": "docs/generated/utilities/safe-area.html",
724
+ "category": "docs",
725
+ "keywords": [
726
+ "safe-area",
727
+ "docs",
728
+ "Utilities: safe-area"
729
+ ],
730
+ "weight": 1
731
+ },
732
+ {
733
+ "id": "docs:scope",
734
+ "title": "Utilities: scope",
735
+ "excerpt": "Source: src/utilities/scope.css",
736
+ "url": "docs/generated/utilities/scope.html",
737
+ "category": "docs",
738
+ "keywords": [
739
+ "scope",
740
+ "docs",
741
+ "Utilities: scope"
742
+ ],
743
+ "weight": 1
744
+ },
745
+ {
746
+ "id": "docs:scroll",
747
+ "title": "Utilities: scroll",
748
+ "excerpt": "Source: src/utilities/scroll.css",
749
+ "url": "docs/generated/utilities/scroll.html",
750
+ "category": "docs",
751
+ "keywords": [
752
+ "scroll",
753
+ "docs",
754
+ "Utilities: scroll"
755
+ ],
756
+ "weight": 1
757
+ },
758
+ {
759
+ "id": "docs:scroll-animation",
760
+ "title": "Utilities: scroll-animation",
761
+ "excerpt": "Source: src/utilities/scroll-animation.css",
762
+ "url": "docs/generated/utilities/scroll-animation.html",
763
+ "category": "docs",
764
+ "keywords": [
765
+ "scroll-animation",
766
+ "docs",
767
+ "Utilities: scroll-animation"
768
+ ],
769
+ "weight": 1
770
+ },
771
+ {
772
+ "id": "docs:sizing",
773
+ "title": "Utilities: sizing",
774
+ "excerpt": "Source: src/utilities/sizing.css",
775
+ "url": "docs/generated/utilities/sizing.html",
776
+ "category": "docs",
777
+ "keywords": [
778
+ "sizing",
779
+ "docs",
780
+ "Utilities: sizing"
781
+ ],
782
+ "weight": 1
783
+ },
784
+ {
785
+ "id": "docs:state",
786
+ "title": "Utilities: state",
787
+ "excerpt": "Source: src/utilities/state.css",
788
+ "url": "docs/generated/utilities/state.html",
789
+ "category": "docs",
790
+ "keywords": [
791
+ "state",
792
+ "docs",
793
+ "Utilities: state"
794
+ ],
795
+ "weight": 1
796
+ },
797
+ {
798
+ "id": "docs:text",
799
+ "title": "Utilities: text",
800
+ "excerpt": "Source: src/utilities/text.css",
801
+ "url": "docs/generated/utilities/text.html",
802
+ "category": "docs",
803
+ "keywords": [
804
+ "text",
805
+ "docs",
806
+ "Utilities: text"
807
+ ],
808
+ "weight": 1
809
+ },
810
+ {
811
+ "id": "docs:view-transition",
812
+ "title": "Utilities: view-transition",
813
+ "excerpt": "Source: src/utilities/view-transition.css",
814
+ "url": "docs/generated/utilities/view-transition.html",
815
+ "category": "docs",
816
+ "keywords": [
817
+ "view-transition",
818
+ "docs",
819
+ "Utilities: view-transition"
820
+ ],
821
+ "weight": 1
822
+ },
823
+ {
824
+ "id": "examples:samples/velin-attributes.html",
825
+ "title": "Velin HTML attributes",
826
+ "excerpt": "samples/velin-attributes.html",
827
+ "url": "samples/velin-attributes.html",
828
+ "category": "examples",
829
+ "keywords": [
830
+ "velin-attributes.html",
831
+ "sample",
832
+ "example"
833
+ ],
834
+ "weight": 0.85
835
+ },
836
+ {
837
+ "id": "components:velin-accordion",
838
+ "title": "velin-accordion",
839
+ "excerpt": "Source: components/velin-accordion.js",
840
+ "url": "docs/generated/components/velin-accordion.html",
841
+ "category": "components",
842
+ "keywords": [
843
+ "velin-accordion",
844
+ "components",
845
+ "velin-accordion"
846
+ ],
847
+ "weight": 1.3
848
+ },
849
+ {
850
+ "id": "docs:velin-accordion",
851
+ "title": "velin-accordion",
852
+ "excerpt": "Accordion sections (bridges to <velin-accordion>).",
853
+ "url": "docs/generated/attributes/velin-accordion.html",
854
+ "category": "docs",
855
+ "keywords": [
856
+ "velin-accordion",
857
+ "docs",
858
+ "velin-accordion"
859
+ ],
860
+ "weight": 1.2
861
+ },
862
+ {
863
+ "id": "docs:velin-anchor",
864
+ "title": "velin-anchor",
865
+ "excerpt": "Scroll-margin for anchor targets.",
866
+ "url": "docs/generated/attributes/velin-anchor.html",
867
+ "category": "docs",
868
+ "keywords": [
869
+ "velin-anchor",
870
+ "docs",
871
+ "velin-anchor"
872
+ ],
873
+ "weight": 1.2
874
+ },
875
+ {
876
+ "id": "components:velin-announcer",
877
+ "title": "velin-announcer",
878
+ "excerpt": "Source: components/velin-announcer.js",
879
+ "url": "docs/generated/components/velin-announcer.html",
880
+ "category": "components",
881
+ "keywords": [
882
+ "velin-announcer",
883
+ "components",
884
+ "velin-announcer"
885
+ ],
886
+ "weight": 1.3
887
+ },
888
+ {
889
+ "id": "components:velin-bottom-nav",
890
+ "title": "velin-bottom-nav",
891
+ "excerpt": "Source: components/velin-bottom-nav.js",
892
+ "url": "docs/generated/components/velin-bottom-nav.html",
893
+ "category": "components",
894
+ "keywords": [
895
+ "velin-bottom-nav",
896
+ "components",
897
+ "velin-bottom-nav"
898
+ ],
899
+ "weight": 1.3
900
+ },
901
+ {
902
+ "id": "components:velin-carousel",
903
+ "title": "velin-carousel",
904
+ "excerpt": "Source: components/velin-carousel.js",
905
+ "url": "docs/generated/components/velin-carousel.html",
906
+ "category": "components",
907
+ "keywords": [
908
+ "velin-carousel",
909
+ "components",
910
+ "velin-carousel"
911
+ ],
912
+ "weight": 1.3
913
+ },
914
+ {
915
+ "id": "docs:velin-code",
916
+ "title": "velin-code",
917
+ "excerpt": "Code block with copy button and VelinHighlight syntax colors (use language or velin-code=\"js\").",
918
+ "url": "docs/generated/attributes/velin-code.html",
919
+ "category": "docs",
920
+ "keywords": [
921
+ "velin-code",
922
+ "docs",
923
+ "velin-code"
924
+ ],
925
+ "weight": 1.2
926
+ },
927
+ {
928
+ "id": "components:velin-code-block",
929
+ "title": "velin-code-block",
930
+ "excerpt": "Source: components/velin-code-block.js",
931
+ "url": "docs/generated/components/velin-code-block.html",
932
+ "category": "components",
933
+ "keywords": [
934
+ "velin-code-block",
935
+ "components",
936
+ "velin-code-block"
937
+ ],
938
+ "weight": 1.3
939
+ },
940
+ {
941
+ "id": "components:velin-collapse",
942
+ "title": "velin-collapse",
943
+ "excerpt": "Source: components/velin-collapse.js",
944
+ "url": "docs/generated/components/velin-collapse.html",
945
+ "category": "components",
946
+ "keywords": [
947
+ "velin-collapse",
948
+ "components",
949
+ "velin-collapse"
950
+ ],
951
+ "weight": 1.3
952
+ },
953
+ {
954
+ "id": "components:velin-combobox",
955
+ "title": "velin-combobox",
956
+ "excerpt": "Source: components/velin-combobox.js",
957
+ "url": "docs/generated/components/velin-combobox.html",
958
+ "category": "components",
959
+ "keywords": [
960
+ "velin-combobox",
961
+ "components",
962
+ "velin-combobox"
963
+ ],
964
+ "weight": 1.3
965
+ },
966
+ {
967
+ "id": "components:velin-command",
968
+ "title": "velin-command",
969
+ "excerpt": "Source: components/velin-command.js",
970
+ "url": "docs/generated/components/velin-command.html",
971
+ "category": "components",
972
+ "keywords": [
973
+ "velin-command",
974
+ "components",
975
+ "velin-command"
976
+ ],
977
+ "weight": 1.3
978
+ },
979
+ {
980
+ "id": "components:velin-copy",
981
+ "title": "velin-copy",
982
+ "excerpt": "Source: components/velin-copy.js",
983
+ "url": "docs/generated/components/velin-copy.html",
984
+ "category": "components",
985
+ "keywords": [
986
+ "velin-copy",
987
+ "components",
988
+ "velin-copy"
989
+ ],
990
+ "weight": 1.3
991
+ },
992
+ {
993
+ "id": "docs:velin-copy",
994
+ "title": "velin-copy",
995
+ "excerpt": "Copy text to clipboard (bridges to <velin-copy>).",
996
+ "url": "docs/generated/attributes/velin-copy.html",
997
+ "category": "docs",
998
+ "keywords": [
999
+ "velin-copy",
1000
+ "docs",
1001
+ "velin-copy"
1002
+ ],
1003
+ "weight": 1.2
1004
+ },
1005
+ {
1006
+ "id": "components:velin-countdown",
1007
+ "title": "velin-countdown",
1008
+ "excerpt": "Source: components/velin-countdown.js",
1009
+ "url": "docs/generated/components/velin-countdown.html",
1010
+ "category": "components",
1011
+ "keywords": [
1012
+ "velin-countdown",
1013
+ "components",
1014
+ "velin-countdown"
1015
+ ],
1016
+ "weight": 1.3
1017
+ },
1018
+ {
1019
+ "id": "components:velin-counter",
1020
+ "title": "velin-counter",
1021
+ "excerpt": "Source: components/velin-counter.js",
1022
+ "url": "docs/generated/components/velin-counter.html",
1023
+ "category": "components",
1024
+ "keywords": [
1025
+ "velin-counter",
1026
+ "components",
1027
+ "velin-counter"
1028
+ ],
1029
+ "weight": 1.3
1030
+ },
1031
+ {
1032
+ "id": "docs:velin-counter",
1033
+ "title": "velin-counter",
1034
+ "excerpt": "Animated number counter (bridges to <velin-counter>).",
1035
+ "url": "docs/generated/attributes/velin-counter.html",
1036
+ "category": "docs",
1037
+ "keywords": [
1038
+ "velin-counter",
1039
+ "docs",
1040
+ "velin-counter"
1041
+ ],
1042
+ "weight": 1.2
1043
+ },
1044
+ {
1045
+ "id": "components:velin-dialog",
1046
+ "title": "velin-dialog",
1047
+ "excerpt": "Source: components/velin-dialog.js",
1048
+ "url": "docs/generated/components/velin-dialog.html",
1049
+ "category": "components",
1050
+ "keywords": [
1051
+ "velin-dialog",
1052
+ "components",
1053
+ "velin-dialog"
1054
+ ],
1055
+ "weight": 1.3
1056
+ },
1057
+ {
1058
+ "id": "components:velin-drawer",
1059
+ "title": "velin-drawer",
1060
+ "excerpt": "Source: components/velin-drawer.js",
1061
+ "url": "docs/generated/components/velin-drawer.html",
1062
+ "category": "components",
1063
+ "keywords": [
1064
+ "velin-drawer",
1065
+ "components",
1066
+ "velin-drawer"
1067
+ ],
1068
+ "weight": 1.3
1069
+ },
1070
+ {
1071
+ "id": "components:velin-dropdown",
1072
+ "title": "velin-dropdown",
1073
+ "excerpt": "Source: components/velin-dropdown.js",
1074
+ "url": "docs/generated/components/velin-dropdown.html",
1075
+ "category": "components",
1076
+ "keywords": [
1077
+ "velin-dropdown",
1078
+ "components",
1079
+ "velin-dropdown"
1080
+ ],
1081
+ "weight": 1.3
1082
+ },
1083
+ {
1084
+ "id": "components:velin-email",
1085
+ "title": "velin-email",
1086
+ "excerpt": "Source: components/velin-email.js",
1087
+ "url": "docs/generated/components/velin-email.html",
1088
+ "category": "components",
1089
+ "keywords": [
1090
+ "velin-email",
1091
+ "components",
1092
+ "velin-email"
1093
+ ],
1094
+ "weight": 1.3
1095
+ },
1096
+ {
1097
+ "id": "docs:velin-fade",
1098
+ "title": "velin-fade",
1099
+ "excerpt": "Fade-in on scroll.",
1100
+ "url": "docs/generated/attributes/velin-fade.html",
1101
+ "category": "docs",
1102
+ "keywords": [
1103
+ "velin-fade",
1104
+ "docs",
1105
+ "velin-fade"
1106
+ ],
1107
+ "weight": 1.2
1108
+ },
1109
+ {
1110
+ "id": "components:velin-flip",
1111
+ "title": "velin-flip",
1112
+ "excerpt": "Source: components/velin-flip.js",
1113
+ "url": "docs/generated/components/velin-flip.html",
1114
+ "category": "components",
1115
+ "keywords": [
1116
+ "velin-flip",
1117
+ "components",
1118
+ "velin-flip"
1119
+ ],
1120
+ "weight": 1.3
1121
+ },
1122
+ {
1123
+ "id": "docs:velin-grid",
1124
+ "title": "velin-grid",
1125
+ "excerpt": "Auto grid layout (column count).",
1126
+ "url": "docs/generated/attributes/velin-grid.html",
1127
+ "category": "docs",
1128
+ "keywords": [
1129
+ "velin-grid",
1130
+ "docs",
1131
+ "velin-grid"
1132
+ ],
1133
+ "weight": 1.2
1134
+ },
1135
+ {
1136
+ "id": "components:velin-haptic",
1137
+ "title": "velin-haptic",
1138
+ "excerpt": "Source: components/velin-haptic.js",
1139
+ "url": "docs/generated/components/velin-haptic.html",
1140
+ "category": "components",
1141
+ "keywords": [
1142
+ "velin-haptic",
1143
+ "components",
1144
+ "velin-haptic"
1145
+ ],
1146
+ "weight": 1.3
1147
+ },
1148
+ {
1149
+ "id": "docs:velin-highlight",
1150
+ "title": "velin-highlight",
1151
+ "excerpt": "Inline text mark (not syntax highlighting — use velin-code or velinSyntax).",
1152
+ "url": "docs/generated/attributes/velin-highlight.html",
1153
+ "category": "docs",
1154
+ "keywords": [
1155
+ "velin-highlight",
1156
+ "docs",
1157
+ "velin-highlight"
1158
+ ],
1159
+ "weight": 1.2
1160
+ },
1161
+ {
1162
+ "id": "docs:velin-hover",
1163
+ "title": "velin-hover",
1164
+ "excerpt": "Hover lift/glow animation.",
1165
+ "url": "docs/generated/attributes/velin-hover.html",
1166
+ "category": "docs",
1167
+ "keywords": [
1168
+ "velin-hover",
1169
+ "docs",
1170
+ "velin-hover"
1171
+ ],
1172
+ "weight": 1.2
1173
+ },
1174
+ {
1175
+ "id": "components:velin-icon",
1176
+ "title": "velin-icon",
1177
+ "excerpt": "Source: components/velin-icon.js",
1178
+ "url": "docs/generated/components/velin-icon.html",
1179
+ "category": "components",
1180
+ "keywords": [
1181
+ "velin-icon",
1182
+ "components",
1183
+ "velin-icon"
1184
+ ],
1185
+ "weight": 1.3
1186
+ },
1187
+ {
1188
+ "id": "docs:velin-lazy",
1189
+ "title": "velin-lazy",
1190
+ "excerpt": "Lazy-load images with optional skeleton.",
1191
+ "url": "docs/generated/attributes/velin-lazy.html",
1192
+ "category": "docs",
1193
+ "keywords": [
1194
+ "velin-lazy",
1195
+ "docs",
1196
+ "velin-lazy"
1197
+ ],
1198
+ "weight": 1.2
1199
+ },
1200
+ {
1201
+ "id": "components:velin-lightbox",
1202
+ "title": "velin-lightbox",
1203
+ "excerpt": "Source: components/velin-lightbox.js",
1204
+ "url": "docs/generated/components/velin-lightbox.html",
1205
+ "category": "components",
1206
+ "keywords": [
1207
+ "velin-lightbox",
1208
+ "components",
1209
+ "velin-lightbox"
1210
+ ],
1211
+ "weight": 1.3
1212
+ },
1213
+ {
1214
+ "id": "components:velin-live-dot",
1215
+ "title": "velin-live-dot",
1216
+ "excerpt": "Source: components/velin-live-dot.js",
1217
+ "url": "docs/generated/components/velin-live-dot.html",
1218
+ "category": "components",
1219
+ "keywords": [
1220
+ "velin-live-dot",
1221
+ "components",
1222
+ "velin-live-dot"
1223
+ ],
1224
+ "weight": 1.3
1225
+ },
1226
+ {
1227
+ "id": "docs:velin-loading",
1228
+ "title": "velin-loading",
1229
+ "excerpt": "Loading spinner state.",
1230
+ "url": "docs/generated/attributes/velin-loading.html",
1231
+ "category": "docs",
1232
+ "keywords": [
1233
+ "velin-loading",
1234
+ "docs",
1235
+ "velin-loading"
1236
+ ],
1237
+ "weight": 1.2
1238
+ },
1239
+ {
1240
+ "id": "components:velin-menubar",
1241
+ "title": "velin-menubar",
1242
+ "excerpt": "Source: components/velin-menubar.js",
1243
+ "url": "docs/generated/components/velin-menubar.html",
1244
+ "category": "components",
1245
+ "keywords": [
1246
+ "velin-menubar",
1247
+ "components",
1248
+ "velin-menubar"
1249
+ ],
1250
+ "weight": 1.3
1251
+ },
1252
+ {
1253
+ "id": "components:velin-modal",
1254
+ "title": "velin-modal",
1255
+ "excerpt": "Source: components/velin-modal.js",
1256
+ "url": "docs/generated/components/velin-modal.html",
1257
+ "category": "components",
1258
+ "keywords": [
1259
+ "velin-modal",
1260
+ "components",
1261
+ "velin-modal"
1262
+ ],
1263
+ "weight": 1.3
1264
+ },
1265
+ {
1266
+ "id": "docs:velin-modal",
1267
+ "title": "velin-modal",
1268
+ "excerpt": "Opens a modal dialog (bridges to <velin-modal>).",
1269
+ "url": "docs/generated/attributes/velin-modal.html",
1270
+ "category": "docs",
1271
+ "keywords": [
1272
+ "velin-modal",
1273
+ "docs",
1274
+ "velin-modal"
1275
+ ],
1276
+ "weight": 1.2
1277
+ },
1278
+ {
1279
+ "id": "docs:velin-notify",
1280
+ "title": "velin-notify",
1281
+ "excerpt": "Show a toast notification (bridges to <velin-toast>).",
1282
+ "url": "docs/generated/attributes/velin-notify.html",
1283
+ "category": "docs",
1284
+ "keywords": [
1285
+ "velin-notify",
1286
+ "docs",
1287
+ "velin-notify"
1288
+ ],
1289
+ "weight": 1.2
1290
+ },
1291
+ {
1292
+ "id": "docs:velin-parallax",
1293
+ "title": "velin-parallax",
1294
+ "excerpt": "Parallax background (slow optional).",
1295
+ "url": "docs/generated/attributes/velin-parallax.html",
1296
+ "category": "docs",
1297
+ "keywords": [
1298
+ "velin-parallax",
1299
+ "docs",
1300
+ "velin-parallax"
1301
+ ],
1302
+ "weight": 1.2
1303
+ },
1304
+ {
1305
+ "id": "components:velin-persist",
1306
+ "title": "velin-persist",
1307
+ "excerpt": "Source: components/velin-persist.js",
1308
+ "url": "docs/generated/components/velin-persist.html",
1309
+ "category": "components",
1310
+ "keywords": [
1311
+ "velin-persist",
1312
+ "components",
1313
+ "velin-persist"
1314
+ ],
1315
+ "weight": 1.3
1316
+ },
1317
+ {
1318
+ "id": "components:velin-popover",
1319
+ "title": "velin-popover",
1320
+ "excerpt": "Source: components/velin-popover.js",
1321
+ "url": "docs/generated/components/velin-popover.html",
1322
+ "category": "components",
1323
+ "keywords": [
1324
+ "velin-popover",
1325
+ "components",
1326
+ "velin-popover"
1327
+ ],
1328
+ "weight": 1.3
1329
+ },
1330
+ {
1331
+ "id": "docs:velin-progress",
1332
+ "title": "velin-progress",
1333
+ "excerpt": "Progress bar or ring (ring for <velin-progress-ring>).",
1334
+ "url": "docs/generated/attributes/velin-progress.html",
1335
+ "category": "docs",
1336
+ "keywords": [
1337
+ "velin-progress",
1338
+ "docs",
1339
+ "velin-progress"
1340
+ ],
1341
+ "weight": 1.2
1342
+ },
1343
+ {
1344
+ "id": "components:velin-progress-ring",
1345
+ "title": "velin-progress-ring",
1346
+ "excerpt": "Source: components/velin-progress-ring.js",
1347
+ "url": "docs/generated/components/velin-progress-ring.html",
1348
+ "category": "components",
1349
+ "keywords": [
1350
+ "velin-progress-ring",
1351
+ "components",
1352
+ "velin-progress-ring"
1353
+ ],
1354
+ "weight": 1.3
1355
+ },
1356
+ {
1357
+ "id": "docs:velin-quote",
1358
+ "title": "velin-quote",
1359
+ "excerpt": "Styled blockquote.",
1360
+ "url": "docs/generated/attributes/velin-quote.html",
1361
+ "category": "docs",
1362
+ "keywords": [
1363
+ "velin-quote",
1364
+ "docs",
1365
+ "velin-quote"
1366
+ ],
1367
+ "weight": 1.2
1368
+ },
1369
+ {
1370
+ "id": "components:velin-rating",
1371
+ "title": "velin-rating",
1372
+ "excerpt": "Source: components/velin-rating.js",
1373
+ "url": "docs/generated/components/velin-rating.html",
1374
+ "category": "components",
1375
+ "keywords": [
1376
+ "velin-rating",
1377
+ "components",
1378
+ "velin-rating"
1379
+ ],
1380
+ "weight": 1.3
1381
+ },
1382
+ {
1383
+ "id": "components:velin-reveal",
1384
+ "title": "velin-reveal",
1385
+ "excerpt": "Source: components/velin-reveal.js",
1386
+ "url": "docs/generated/components/velin-reveal.html",
1387
+ "category": "components",
1388
+ "keywords": [
1389
+ "velin-reveal",
1390
+ "components",
1391
+ "velin-reveal"
1392
+ ],
1393
+ "weight": 1.3
1394
+ },
1395
+ {
1396
+ "id": "docs:velin-reveal",
1397
+ "title": "velin-reveal",
1398
+ "excerpt": "Reveal element when scrolled into view.",
1399
+ "url": "docs/generated/attributes/velin-reveal.html",
1400
+ "category": "docs",
1401
+ "keywords": [
1402
+ "velin-reveal",
1403
+ "docs",
1404
+ "velin-reveal"
1405
+ ],
1406
+ "weight": 1.2
1407
+ },
1408
+ {
1409
+ "id": "docs:velin-scale",
1410
+ "title": "velin-scale",
1411
+ "excerpt": "Scale-in on scroll.",
1412
+ "url": "docs/generated/attributes/velin-scale.html",
1413
+ "category": "docs",
1414
+ "keywords": [
1415
+ "velin-scale",
1416
+ "docs",
1417
+ "velin-scale"
1418
+ ],
1419
+ "weight": 1.2
1420
+ },
1421
+ {
1422
+ "id": "docs:velin-scroll",
1423
+ "title": "velin-scroll",
1424
+ "excerpt": "Smooth scroll to anchor (href=\"#id\").",
1425
+ "url": "docs/generated/attributes/velin-scroll.html",
1426
+ "category": "docs",
1427
+ "keywords": [
1428
+ "velin-scroll",
1429
+ "docs",
1430
+ "velin-scroll"
1431
+ ],
1432
+ "weight": 1.2
1433
+ },
1434
+ {
1435
+ "id": "components:velin-scroll-top",
1436
+ "title": "velin-scroll-top",
1437
+ "excerpt": "Source: components/velin-scroll-top.js",
1438
+ "url": "docs/generated/components/velin-scroll-top.html",
1439
+ "category": "components",
1440
+ "keywords": [
1441
+ "velin-scroll-top",
1442
+ "components",
1443
+ "velin-scroll-top"
1444
+ ],
1445
+ "weight": 1.3
1446
+ },
1447
+ {
1448
+ "id": "docs:velin-scroll-top",
1449
+ "title": "velin-scroll-top",
1450
+ "excerpt": "Velin HTML attribute extension.",
1451
+ "url": "docs/generated/attributes/velin-scroll-top.html",
1452
+ "category": "docs",
1453
+ "keywords": [
1454
+ "velin-scroll-top",
1455
+ "docs",
1456
+ "velin-scroll-top"
1457
+ ],
1458
+ "weight": 1.2
1459
+ },
1460
+ {
1461
+ "id": "components:velin-scrollspy",
1462
+ "title": "velin-scrollspy",
1463
+ "excerpt": "Source: components/velin-scrollspy.js",
1464
+ "url": "docs/generated/components/velin-scrollspy.html",
1465
+ "category": "components",
1466
+ "keywords": [
1467
+ "velin-scrollspy",
1468
+ "components",
1469
+ "velin-scrollspy"
1470
+ ],
1471
+ "weight": 1.3
1472
+ },
1473
+ {
1474
+ "id": "components:velin-search",
1475
+ "title": "velin-search",
1476
+ "excerpt": "Source: components/velin-search.js",
1477
+ "url": "docs/generated/components/velin-search.html",
1478
+ "category": "components",
1479
+ "keywords": [
1480
+ "velin-search",
1481
+ "components",
1482
+ "velin-search"
1483
+ ],
1484
+ "weight": 1.3
1485
+ },
1486
+ {
1487
+ "id": "docs:velin-search",
1488
+ "title": "velin-search",
1489
+ "excerpt": "Attach VelinSearch to an element.",
1490
+ "url": "docs/generated/attributes/velin-search.html",
1491
+ "category": "docs",
1492
+ "keywords": [
1493
+ "velin-search",
1494
+ "docs",
1495
+ "velin-search"
1496
+ ],
1497
+ "weight": 1.2
1498
+ },
1499
+ {
1500
+ "id": "components:velin-secure-field",
1501
+ "title": "velin-secure-field",
1502
+ "excerpt": "Source: components/velin-secure-field.js",
1503
+ "url": "docs/generated/components/velin-secure-field.html",
1504
+ "category": "components",
1505
+ "keywords": [
1506
+ "velin-secure-field",
1507
+ "components",
1508
+ "velin-secure-field"
1509
+ ],
1510
+ "weight": 1.3
1511
+ },
1512
+ {
1513
+ "id": "components:velin-segmented-control",
1514
+ "title": "velin-segmented-control",
1515
+ "excerpt": "Source: components/velin-segmented-control.js",
1516
+ "url": "docs/generated/components/velin-segmented-control.html",
1517
+ "category": "components",
1518
+ "keywords": [
1519
+ "velin-segmented-control",
1520
+ "components",
1521
+ "velin-segmented-control"
1522
+ ],
1523
+ "weight": 1.3
1524
+ },
1525
+ {
1526
+ "id": "components:velin-sheet",
1527
+ "title": "velin-sheet",
1528
+ "excerpt": "Source: components/velin-sheet.js",
1529
+ "url": "docs/generated/components/velin-sheet.html",
1530
+ "category": "components",
1531
+ "keywords": [
1532
+ "velin-sheet",
1533
+ "components",
1534
+ "velin-sheet"
1535
+ ],
1536
+ "weight": 1.3
1537
+ },
1538
+ {
1539
+ "id": "docs:velin-skeleton",
1540
+ "title": "velin-skeleton",
1541
+ "excerpt": "Skeleton placeholder (text, avatar, image, …).",
1542
+ "url": "docs/generated/attributes/velin-skeleton.html",
1543
+ "category": "docs",
1544
+ "keywords": [
1545
+ "velin-skeleton",
1546
+ "docs",
1547
+ "velin-skeleton"
1548
+ ],
1549
+ "weight": 1.2
1550
+ },
1551
+ {
1552
+ "id": "docs:velin-slide",
1553
+ "title": "velin-slide",
1554
+ "excerpt": "Slide-in on scroll (up, down, …).",
1555
+ "url": "docs/generated/attributes/velin-slide.html",
1556
+ "category": "docs",
1557
+ "keywords": [
1558
+ "velin-slide",
1559
+ "docs",
1560
+ "velin-slide"
1561
+ ],
1562
+ "weight": 1.2
1563
+ },
1564
+ {
1565
+ "id": "components:velin-sparkline",
1566
+ "title": "velin-sparkline",
1567
+ "excerpt": "Source: components/velin-sparkline.js",
1568
+ "url": "docs/generated/components/velin-sparkline.html",
1569
+ "category": "components",
1570
+ "keywords": [
1571
+ "velin-sparkline",
1572
+ "components",
1573
+ "velin-sparkline"
1574
+ ],
1575
+ "weight": 1.3
1576
+ },
1577
+ {
1578
+ "id": "docs:velin-stagger",
1579
+ "title": "velin-stagger",
1580
+ "excerpt": "Stagger child animations (delay in ms).",
1581
+ "url": "docs/generated/attributes/velin-stagger.html",
1582
+ "category": "docs",
1583
+ "keywords": [
1584
+ "velin-stagger",
1585
+ "docs",
1586
+ "velin-stagger"
1587
+ ],
1588
+ "weight": 1.2
1589
+ },
1590
+ {
1591
+ "id": "components:velin-stepper",
1592
+ "title": "velin-stepper",
1593
+ "excerpt": "Source: components/velin-stepper.js",
1594
+ "url": "docs/generated/components/velin-stepper.html",
1595
+ "category": "components",
1596
+ "keywords": [
1597
+ "velin-stepper",
1598
+ "components",
1599
+ "velin-stepper"
1600
+ ],
1601
+ "weight": 1.3
1602
+ },
1603
+ {
1604
+ "id": "components:velin-tabs",
1605
+ "title": "velin-tabs",
1606
+ "excerpt": "Source: components/velin-tabs.js",
1607
+ "url": "docs/generated/components/velin-tabs.html",
1608
+ "category": "components",
1609
+ "keywords": [
1610
+ "velin-tabs",
1611
+ "components",
1612
+ "velin-tabs"
1613
+ ],
1614
+ "weight": 1.3
1615
+ },
1616
+ {
1617
+ "id": "docs:velin-tabs",
1618
+ "title": "velin-tabs",
1619
+ "excerpt": "Tab navigation (bridges to <velin-tabs>).",
1620
+ "url": "docs/generated/attributes/velin-tabs.html",
1621
+ "category": "docs",
1622
+ "keywords": [
1623
+ "velin-tabs",
1624
+ "docs",
1625
+ "velin-tabs"
1626
+ ],
1627
+ "weight": 1.2
1628
+ },
1629
+ {
1630
+ "id": "docs:velin-theme",
1631
+ "title": "velin-theme",
1632
+ "excerpt": "Theme toggle or set data-velin-theme.",
1633
+ "url": "docs/generated/attributes/velin-theme.html",
1634
+ "category": "docs",
1635
+ "keywords": [
1636
+ "velin-theme",
1637
+ "docs",
1638
+ "velin-theme"
1639
+ ],
1640
+ "weight": 1.2
1641
+ },
1642
+ {
1643
+ "id": "components:velin-theme-toggle",
1644
+ "title": "velin-theme-toggle",
1645
+ "excerpt": "Source: components/velin-theme-toggle.js",
1646
+ "url": "docs/generated/components/velin-theme-toggle.html",
1647
+ "category": "components",
1648
+ "keywords": [
1649
+ "velin-theme-toggle",
1650
+ "components",
1651
+ "velin-theme-toggle"
1652
+ ],
1653
+ "weight": 1.3
1654
+ },
1655
+ {
1656
+ "id": "components:velin-toast",
1657
+ "title": "velin-toast",
1658
+ "excerpt": "Source: components/velin-toast.js",
1659
+ "url": "docs/generated/components/velin-toast.html",
1660
+ "category": "components",
1661
+ "keywords": [
1662
+ "velin-toast",
1663
+ "components",
1664
+ "velin-toast"
1665
+ ],
1666
+ "weight": 1.3
1667
+ },
1668
+ {
1669
+ "id": "components:velin-tooltip",
1670
+ "title": "velin-tooltip",
1671
+ "excerpt": "Source: components/velin-tooltip.js",
1672
+ "url": "docs/generated/components/velin-tooltip.html",
1673
+ "category": "components",
1674
+ "keywords": [
1675
+ "velin-tooltip",
1676
+ "components",
1677
+ "velin-tooltip"
1678
+ ],
1679
+ "weight": 1.3
1680
+ },
1681
+ {
1682
+ "id": "docs:velin-tooltip",
1683
+ "title": "velin-tooltip",
1684
+ "excerpt": "Tooltip on hover/focus (bridges to <velin-tooltip>).",
1685
+ "url": "docs/generated/attributes/velin-tooltip.html",
1686
+ "category": "docs",
1687
+ "keywords": [
1688
+ "velin-tooltip",
1689
+ "docs",
1690
+ "velin-tooltip"
1691
+ ],
1692
+ "weight": 1.2
1693
+ },
1694
+ {
1695
+ "id": "examples:samples/velin-search.html",
1696
+ "title": "VelinSearch",
1697
+ "excerpt": "samples/velin-search.html",
1698
+ "url": "samples/velin-search.html",
1699
+ "category": "examples",
1700
+ "keywords": [
1701
+ "velin-search.html",
1702
+ "sample",
1703
+ "example"
1704
+ ],
1705
+ "weight": 0.85
1706
+ },
1707
+ {
1708
+ "id": "examples:samples/landing.html",
1709
+ "title": "VelinStyle Landing Page - Sample",
1710
+ "excerpt": "samples/landing.html",
1711
+ "url": "samples/landing.html",
1712
+ "category": "examples",
1713
+ "keywords": [
1714
+ "landing.html",
1715
+ "sample",
1716
+ "example"
1717
+ ],
1718
+ "weight": 0.85
1719
+ },
1720
+ {
1721
+ "id": "examples:samples/kanban.html",
1722
+ "title": "VelinStyle Roadmap",
1723
+ "excerpt": "samples/kanban.html",
1724
+ "url": "samples/kanban.html",
1725
+ "category": "examples",
1726
+ "keywords": [
1727
+ "kanban.html",
1728
+ "sample",
1729
+ "example"
1730
+ ],
1731
+ "weight": 0.85
1732
+ },
1733
+ {
1734
+ "id": "docs:wcag22-aaa-matrix",
1735
+ "title": "WCAG 2.2 AAA framework matrix",
1736
+ "excerpt": "> **Using VelinStyle does not certify your application.** This matrix tracks what the **framework** provides by default.",
1737
+ "url": "docs/generated/a11y/wcag22-aaa-matrix.html",
1738
+ "category": "docs",
1739
+ "keywords": [
1740
+ "wcag22-aaa-matrix",
1741
+ "docs",
1742
+ "WCAG 2.2 AAA framework matrix"
1743
+ ],
1744
+ "weight": 1
1745
+ },
1746
+ {
1747
+ "id": "docs:wcag22-matrix",
1748
+ "title": "WCAG 2.2 conformance matrix (VelinStyle framework)",
1749
+ "excerpt": "Framework helpers mapped to WCAG 2.2 success criteria. **Using VelinStyle does not certify your application.**",
1750
+ "url": "docs/generated/a11y/wcag22-matrix.html",
1751
+ "category": "docs",
1752
+ "keywords": [
1753
+ "wcag22-matrix",
1754
+ "docs",
1755
+ "WCAG 2.2 conformance matrix (VelinStyle framework)"
1756
+ ],
1757
+ "weight": 1
1758
+ },
1759
+ {
1760
+ "id": "examples:samples/rtl.html",
1761
+ "title": "عرض اتجاه من اليمين إلى اليسار (RTL)",
1762
+ "excerpt": "samples/rtl.html",
1763
+ "url": "samples/rtl.html",
1764
+ "category": "examples",
1765
+ "keywords": [
1766
+ "rtl.html",
1767
+ "sample",
1768
+ "example"
1769
+ ],
1770
+ "weight": 0.85
1771
+ }
1772
+ ]
1773
+ }