@jasmine-ui/vue 0.6.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 (177) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +77 -0
  3. package/dist/components/accordion/accordion.composable.d.ts +85 -0
  4. package/dist/components/accordion/accordion.d.ts +112 -0
  5. package/dist/components/accordion/accordion.props.d.ts +44 -0
  6. package/dist/components/accordion/accordion.style.d.ts +202 -0
  7. package/dist/components/accordion/index.d.ts +1 -0
  8. package/dist/components/alert/alert.composable.d.ts +87 -0
  9. package/dist/components/alert/alert.d.ts +89 -0
  10. package/dist/components/alert/alert.props.d.ts +30 -0
  11. package/dist/components/alert/alert.style.d.ts +154 -0
  12. package/dist/components/alert/index.d.ts +1 -0
  13. package/dist/components/avatar/avatar.composable.d.ts +79 -0
  14. package/dist/components/avatar/avatar.d.ts +111 -0
  15. package/dist/components/avatar/avatar.props.d.ts +50 -0
  16. package/dist/components/avatar/avatar.style.d.ts +158 -0
  17. package/dist/components/avatar/index.d.ts +1 -0
  18. package/dist/components/badge/badge.composable.d.ts +58 -0
  19. package/dist/components/badge/badge.d.ts +85 -0
  20. package/dist/components/badge/badge.props.d.ts +35 -0
  21. package/dist/components/badge/badge.style.d.ts +146 -0
  22. package/dist/components/badge/index.d.ts +1 -0
  23. package/dist/components/button/button.composable.d.ts +14 -0
  24. package/dist/components/button/button.d.ts +96 -0
  25. package/dist/components/button/button.props.d.ts +36 -0
  26. package/dist/components/button/button.style.d.ts +88 -0
  27. package/dist/components/button/index.d.ts +1 -0
  28. package/dist/components/checkbox/checkbox.composable.d.ts +56 -0
  29. package/dist/components/checkbox/checkbox.d.ts +54 -0
  30. package/dist/components/checkbox/checkbox.props.d.ts +22 -0
  31. package/dist/components/checkbox/checkbox.style.d.ts +106 -0
  32. package/dist/components/checkbox/index.d.ts +1 -0
  33. package/dist/components/chip/chip.composable.d.ts +51 -0
  34. package/dist/components/chip/chip.d.ts +96 -0
  35. package/dist/components/chip/chip.props.d.ts +35 -0
  36. package/dist/components/chip/chip.style.d.ts +184 -0
  37. package/dist/components/chip/index.d.ts +1 -0
  38. package/dist/components/code-block/code-block.composable.d.ts +16 -0
  39. package/dist/components/code-block/code-block.d.ts +105 -0
  40. package/dist/components/code-block/code-block.props.d.ts +51 -0
  41. package/dist/components/code-block/code-block.style.d.ts +113 -0
  42. package/dist/components/code-block/index.d.ts +1 -0
  43. package/dist/components/combobox/combobox.composable.d.ts +136 -0
  44. package/dist/components/combobox/combobox.d.ts +127 -0
  45. package/dist/components/combobox/combobox.props.d.ts +52 -0
  46. package/dist/components/combobox/combobox.style.d.ts +202 -0
  47. package/dist/components/combobox/index.d.ts +1 -0
  48. package/dist/components/divider/divider.composable.d.ts +13 -0
  49. package/dist/components/divider/divider.d.ts +47 -0
  50. package/dist/components/divider/divider.props.d.ts +15 -0
  51. package/dist/components/divider/divider.style.d.ts +43 -0
  52. package/dist/components/divider/index.d.ts +1 -0
  53. package/dist/components/drawer/drawer.composable.d.ts +82 -0
  54. package/dist/components/drawer/drawer.d.ts +256 -0
  55. package/dist/components/drawer/drawer.props.d.ts +34 -0
  56. package/dist/components/drawer/drawer.style.d.ts +97 -0
  57. package/dist/components/drawer/index.d.ts +1 -0
  58. package/dist/components/dropdown/dropdown.d.ts +102 -0
  59. package/dist/components/dropdown/dropdown.props.d.ts +36 -0
  60. package/dist/components/dropdown/index.d.ts +1 -0
  61. package/dist/components/input/index.d.ts +1 -0
  62. package/dist/components/input/input.composable.d.ts +164 -0
  63. package/dist/components/input/input.d.ts +213 -0
  64. package/dist/components/input/input.props.d.ts +83 -0
  65. package/dist/components/input/input.style.d.ts +187 -0
  66. package/dist/components/kbd/index.d.ts +1 -0
  67. package/dist/components/kbd/kbd.composable.d.ts +40 -0
  68. package/dist/components/kbd/kbd.d.ts +46 -0
  69. package/dist/components/kbd/kbd.props.d.ts +20 -0
  70. package/dist/components/kbd/kbd.style.d.ts +59 -0
  71. package/dist/components/list/index.d.ts +3 -0
  72. package/dist/components/list/list.composable.d.ts +40 -0
  73. package/dist/components/list/list.d.ts +148 -0
  74. package/dist/components/list/list.props.d.ts +40 -0
  75. package/dist/components/list/list.style.d.ts +52 -0
  76. package/dist/components/list-item/index.d.ts +1 -0
  77. package/dist/components/list-item/list-item.composable.d.ts +91 -0
  78. package/dist/components/list-item/list-item.d.ts +115 -0
  79. package/dist/components/list-item/list-item.props.d.ts +43 -0
  80. package/dist/components/list-item/list-item.style.d.ts +139 -0
  81. package/dist/components/modal/index.d.ts +1 -0
  82. package/dist/components/modal/modal.composable.d.ts +114 -0
  83. package/dist/components/modal/modal.d.ts +274 -0
  84. package/dist/components/modal/modal.props.d.ts +44 -0
  85. package/dist/components/modal/modal.style.d.ts +190 -0
  86. package/dist/components/pagination/index.d.ts +1 -0
  87. package/dist/components/pagination/pagination.composable.d.ts +87 -0
  88. package/dist/components/pagination/pagination.d.ts +150 -0
  89. package/dist/components/pagination/pagination.props.d.ts +42 -0
  90. package/dist/components/pagination/pagination.style.d.ts +196 -0
  91. package/dist/components/popover/index.d.ts +1 -0
  92. package/dist/components/popover/popover.composable.d.ts +42 -0
  93. package/dist/components/popover/popover.d.ts +142 -0
  94. package/dist/components/popover/popover.props.d.ts +51 -0
  95. package/dist/components/popover/popover.style.d.ts +28 -0
  96. package/dist/components/popover-list/index.d.ts +1 -0
  97. package/dist/components/popover-list/popover-list.d.ts +158 -0
  98. package/dist/components/popover-list/popover-list.props.d.ts +73 -0
  99. package/dist/components/radio-group/index.d.ts +2 -0
  100. package/dist/components/radio-group/radio-group.composable.d.ts +13 -0
  101. package/dist/components/radio-group/radio-group.d.ts +80 -0
  102. package/dist/components/radio-group/radio-group.props.d.ts +28 -0
  103. package/dist/components/radio-group/radio-group.style.d.ts +16 -0
  104. package/dist/components/radio-group/radio.composable.d.ts +45 -0
  105. package/dist/components/radio-group/radio.d.ts +64 -0
  106. package/dist/components/radio-group/radio.props.d.ts +23 -0
  107. package/dist/components/radio-group/radio.style.d.ts +103 -0
  108. package/dist/components/select/index.d.ts +1 -0
  109. package/dist/components/select/select.composable.d.ts +115 -0
  110. package/dist/components/select/select.d.ts +123 -0
  111. package/dist/components/select/select.props.d.ts +52 -0
  112. package/dist/components/select/select.style.d.ts +199 -0
  113. package/dist/components/spinner/index.d.ts +1 -0
  114. package/dist/components/spinner/spinner.composable.d.ts +29 -0
  115. package/dist/components/spinner/spinner.d.ts +23 -0
  116. package/dist/components/spinner/spinner.props.d.ts +12 -0
  117. package/dist/components/spinner/spinner.style.d.ts +97 -0
  118. package/dist/components/switch/index.d.ts +1 -0
  119. package/dist/components/switch/switch.composable.d.ts +76 -0
  120. package/dist/components/switch/switch.d.ts +100 -0
  121. package/dist/components/switch/switch.props.d.ts +37 -0
  122. package/dist/components/switch/switch.style.d.ts +196 -0
  123. package/dist/components/table/index.d.ts +1 -0
  124. package/dist/components/table/table.composable.d.ts +162 -0
  125. package/dist/components/table/table.d.ts +162 -0
  126. package/dist/components/table/table.props.d.ts +56 -0
  127. package/dist/components/table/table.style.d.ts +193 -0
  128. package/dist/components/tabs/index.d.ts +1 -0
  129. package/dist/components/tabs/tabs.composable.d.ts +93 -0
  130. package/dist/components/tabs/tabs.d.ts +121 -0
  131. package/dist/components/tabs/tabs.props.d.ts +48 -0
  132. package/dist/components/tabs/tabs.style.d.ts +253 -0
  133. package/dist/components/text/index.d.ts +1 -0
  134. package/dist/components/text/text.composable.d.ts +12 -0
  135. package/dist/components/text/text.d.ts +56 -0
  136. package/dist/components/text/text.props.d.ts +19 -0
  137. package/dist/components/text/text.style.d.ts +83 -0
  138. package/dist/components/textarea/index.d.ts +1 -0
  139. package/dist/components/textarea/textarea.composable.d.ts +149 -0
  140. package/dist/components/textarea/textarea.d.ts +250 -0
  141. package/dist/components/textarea/textarea.props.d.ts +99 -0
  142. package/dist/components/textarea/textarea.style.d.ts +184 -0
  143. package/dist/components/toast/index.d.ts +2 -0
  144. package/dist/components/toast/toast-provider.d.ts +47 -0
  145. package/dist/components/toast/toast.composable.d.ts +16 -0
  146. package/dist/components/toast/toast.props.d.ts +14 -0
  147. package/dist/components/toast/toast.provider.d.ts +48 -0
  148. package/dist/components/toast/toast.style.d.ts +76 -0
  149. package/dist/components/tooltip/index.d.ts +1 -0
  150. package/dist/components/tooltip/tooltip.composable.d.ts +85 -0
  151. package/dist/components/tooltip/tooltip.d.ts +119 -0
  152. package/dist/components/tooltip/tooltip.props.d.ts +53 -0
  153. package/dist/components/tooltip/tooltip.style.d.ts +32 -0
  154. package/dist/composables/dismiss-shake.composable.d.ts +13 -0
  155. package/dist/css-BRq03xhW.js +3 -0
  156. package/dist/css-BT3ulMUY.js +2 -0
  157. package/dist/html-CJhGHSsv.js +2 -0
  158. package/dist/html-DM_Fd1As.js +10 -0
  159. package/dist/index.d.ts +29 -0
  160. package/dist/jasmine-ui.css +3 -0
  161. package/dist/jasmine-ui.js +11858 -0
  162. package/dist/javascript-CkfBz3il.js +3 -0
  163. package/dist/javascript-CwUFKmKO.js +2 -0
  164. package/dist/json-BPXqV38U.js +3 -0
  165. package/dist/json-DHmMgjNi.js +2 -0
  166. package/dist/jsonc-DVpPCz25.js +3 -0
  167. package/dist/jsx-CHO6wZNT.js +3 -0
  168. package/dist/main.d.ts +1 -0
  169. package/dist/rust-qf9jV5qU.js +3 -0
  170. package/dist/styles/shiki-theme.d.ts +11 -0
  171. package/dist/types/common.d.ts +89 -0
  172. package/dist/types/shared-props.d.ts +142 -0
  173. package/dist/typescript-Cil9iWXl.js +3 -0
  174. package/dist/typescript-CoNvJdtl.js +2 -0
  175. package/dist/utils/shiki.d.ts +12 -0
  176. package/dist/vue-Bgv7yiBd.js +21 -0
  177. package/package.json +133 -0
@@ -0,0 +1,3 @@
1
+ var e = [Object.freeze(JSON.parse("{\"displayName\":\"Rust\",\"name\":\"rust\",\"patterns\":[{\"begin\":\"(<)(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.brackets.angle.rust\"},\"2\":{\"name\":\"punctuation.brackets.square.rust\"}},\"end\":\">\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.brackets.angle.rust\"}},\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#gtypes\"},{\"include\":\"#lvariables\"},{\"include\":\"#lifetimes\"},{\"include\":\"#punctuation\"},{\"include\":\"#types\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.operator.macro.dollar.rust\"},\"3\":{\"name\":\"keyword.other.crate.rust\"},\"4\":{\"name\":\"entity.name.type.metavariable.rust\"},\"6\":{\"name\":\"keyword.operator.key-value.rust\"},\"7\":{\"name\":\"variable.other.metavariable.specifier.rust\"}},\"match\":\"(\\\\$)((crate)|([A-Z]\\\\w*))(\\\\s*(:)\\\\s*(block|expr(?:_2021)?|ident|item|lifetime|literal|meta|pat(?:_param)?|path|stmt|tt|ty|vis)\\\\b)?\",\"name\":\"meta.macro.metavariable.type.rust\",\"patterns\":[{\"include\":\"#keywords\"}]},{\"captures\":{\"1\":{\"name\":\"keyword.operator.macro.dollar.rust\"},\"2\":{\"name\":\"variable.other.metavariable.name.rust\"},\"4\":{\"name\":\"keyword.operator.key-value.rust\"},\"5\":{\"name\":\"variable.other.metavariable.specifier.rust\"}},\"match\":\"(\\\\$)([a-z]\\\\w*)(\\\\s*(:)\\\\s*(block|expr(?:_2021)?|ident|item|lifetime|literal|meta|pat(?:_param)?|path|stmt|tt|ty|vis)\\\\b)?\",\"name\":\"meta.macro.metavariable.rust\",\"patterns\":[{\"include\":\"#keywords\"}]},{\"captures\":{\"1\":{\"name\":\"entity.name.function.macro.rules.rust\"},\"3\":{\"name\":\"entity.name.function.macro.rust\"},\"4\":{\"name\":\"entity.name.type.macro.rust\"},\"5\":{\"name\":\"punctuation.brackets.curly.rust\"}},\"match\":\"\\\\b(macro_rules!)\\\\s+(([0-9_a-z]+)|([A-Z][0-9_a-z]*))\\\\s+(\\\\{)\",\"name\":\"meta.macro.rules.rust\"},{\"captures\":{\"1\":{\"name\":\"storage.type.rust\"},\"2\":{\"name\":\"entity.name.module.rust\"}},\"match\":\"(mod)\\\\s+((?:r#(?!crate|[Ss]elf|super))?[a-z][0-9A-Z_a-z]*)\"},{\"begin\":\"\\\\b(extern)\\\\s+(crate)\",\"beginCaptures\":{\"1\":{\"name\":\"storage.type.rust\"},\"2\":{\"name\":\"keyword.other.crate.rust\"}},\"end\":\";\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.semi.rust\"}},\"name\":\"meta.import.rust\",\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#keywords\"},{\"include\":\"#punctuation\"}]},{\"begin\":\"\\\\b(use)\\\\s\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.rust\"}},\"end\":\";\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.semi.rust\"}},\"name\":\"meta.use.rust\",\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#keywords\"},{\"include\":\"#namespaces\"},{\"include\":\"#punctuation\"},{\"include\":\"#types\"},{\"include\":\"#lvariables\"}]},{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#attributes\"},{\"include\":\"#lvariables\"},{\"include\":\"#constants\"},{\"include\":\"#gtypes\"},{\"include\":\"#functions\"},{\"include\":\"#types\"},{\"include\":\"#keywords\"},{\"include\":\"#lifetimes\"},{\"include\":\"#macros\"},{\"include\":\"#namespaces\"},{\"include\":\"#punctuation\"},{\"include\":\"#strings\"},{\"include\":\"#variables\"}],\"repository\":{\"attributes\":{\"begin\":\"(#)(!?)(\\\\[)\",\"beginCaptures\":{\"1\":{\"name\":\"punctuation.definition.attribute.rust\"},\"3\":{\"name\":\"punctuation.brackets.attribute.rust\"}},\"end\":\"]\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.brackets.attribute.rust\"}},\"name\":\"meta.attribute.rust\",\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#keywords\"},{\"include\":\"#lifetimes\"},{\"include\":\"#punctuation\"},{\"include\":\"#strings\"},{\"include\":\"#gtypes\"},{\"include\":\"#types\"}]},\"block-comments\":{\"patterns\":[{\"match\":\"/\\\\*\\\\*/\",\"name\":\"comment.block.rust\"},{\"begin\":\"/\\\\*\\\\*\",\"end\":\"\\\\*/\",\"name\":\"comment.block.documentation.rust\",\"patterns\":[{\"include\":\"#block-comments\"}]},{\"begin\":\"/\\\\*(?!\\\\*)\",\"end\":\"\\\\*/\",\"name\":\"comment.block.rust\",\"patterns\":[{\"include\":\"#block-comments\"}]}]},\"comments\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.comment.rust\"}},\"match\":\"(///).*$\",\"name\":\"comment.line.documentation.rust\"},{\"captures\":{\"1\":{\"name\":\"punctuation.definition.comment.rust\"}},\"match\":\"(//).*$\",\"name\":\"comment.line.double-slash.rust\"}]},\"constants\":{\"patterns\":[{\"match\":\"\\\\b[A-Z]{2}[0-9A-Z_]*\\\\b\",\"name\":\"constant.other.caps.rust\"},{\"captures\":{\"1\":{\"name\":\"storage.type.rust\"},\"2\":{\"name\":\"constant.other.caps.rust\"}},\"match\":\"\\\\b(const)\\\\s+([A-Z][0-9A-Z_a-z]*)\\\\b\"},{\"captures\":{\"1\":{\"name\":\"punctuation.separator.dot.decimal.rust\"},\"2\":{\"name\":\"keyword.operator.exponent.rust\"},\"3\":{\"name\":\"keyword.operator.exponent.sign.rust\"},\"4\":{\"name\":\"constant.numeric.decimal.exponent.mantissa.rust\"},\"5\":{\"name\":\"entity.name.type.numeric.rust\"}},\"match\":\"\\\\b\\\\d[_\\\\d]*(\\\\.?)[_\\\\d]*(?:([Ee])([-+]?)([_\\\\d]+))?(f32|f64|i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b\",\"name\":\"constant.numeric.decimal.rust\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.numeric.rust\"}},\"match\":\"\\\\b0x[A-F_a-f\\\\d]+(i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b\",\"name\":\"constant.numeric.hex.rust\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.numeric.rust\"}},\"match\":\"\\\\b0o[0-7_]+(i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b\",\"name\":\"constant.numeric.oct.rust\"},{\"captures\":{\"1\":{\"name\":\"entity.name.type.numeric.rust\"}},\"match\":\"\\\\b0b[01_]+(i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b\",\"name\":\"constant.numeric.bin.rust\"},{\"match\":\"\\\\b(true|false)\\\\b\",\"name\":\"constant.language.bool.rust\"}]},\"escapes\":{\"captures\":{\"1\":{\"name\":\"constant.character.escape.backslash.rust\"},\"2\":{\"name\":\"constant.character.escape.bit.rust\"},\"3\":{\"name\":\"constant.character.escape.unicode.rust\"},\"4\":{\"name\":\"constant.character.escape.unicode.punctuation.rust\"},\"5\":{\"name\":\"constant.character.escape.unicode.punctuation.rust\"}},\"match\":\"(\\\\\\\\)(?:(x[0-7][A-Fa-f\\\\d])|(u(\\\\{)[A-Fa-f\\\\d]{4,6}(}))|.)\",\"name\":\"constant.character.escape.rust\"},\"functions\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"keyword.other.rust\"},\"2\":{\"name\":\"punctuation.brackets.round.rust\"}},\"match\":\"\\\\b(pub)(\\\\()\"},{\"begin\":\"\\\\b(fn)\\\\s+((?:r#(?!crate|[Ss]elf|super))?[0-9A-Z_a-z]+)((\\\\()|(<))\",\"beginCaptures\":{\"1\":{\"name\":\"keyword.other.fn.rust\"},\"2\":{\"name\":\"entity.name.function.rust\"},\"4\":{\"name\":\"punctuation.brackets.round.rust\"},\"5\":{\"name\":\"punctuation.brackets.angle.rust\"}},\"end\":\"(\\\\{)|(;)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.brackets.curly.rust\"},\"2\":{\"name\":\"punctuation.semi.rust\"}},\"name\":\"meta.function.definition.rust\",\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#keywords\"},{\"include\":\"#lvariables\"},{\"include\":\"#constants\"},{\"include\":\"#gtypes\"},{\"include\":\"#functions\"},{\"include\":\"#lifetimes\"},{\"include\":\"#macros\"},{\"include\":\"#namespaces\"},{\"include\":\"#punctuation\"},{\"include\":\"#strings\"},{\"include\":\"#types\"},{\"include\":\"#variables\"}]},{\"begin\":\"((?:r#(?!crate|[Ss]elf|super))?[0-9A-Z_a-z]+)(\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.rust\"},\"2\":{\"name\":\"punctuation.brackets.round.rust\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.brackets.round.rust\"}},\"name\":\"meta.function.call.rust\",\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#attributes\"},{\"include\":\"#keywords\"},{\"include\":\"#lvariables\"},{\"include\":\"#constants\"},{\"include\":\"#gtypes\"},{\"include\":\"#functions\"},{\"include\":\"#lifetimes\"},{\"include\":\"#macros\"},{\"include\":\"#namespaces\"},{\"include\":\"#punctuation\"},{\"include\":\"#strings\"},{\"include\":\"#types\"},{\"include\":\"#variables\"}]},{\"begin\":\"((?:r#(?!crate|[Ss]elf|super))?[0-9A-Z_a-z]+)(?=::<.*>\\\\()\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.function.rust\"}},\"end\":\"\\\\)\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.brackets.round.rust\"}},\"name\":\"meta.function.call.rust\",\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#attributes\"},{\"include\":\"#keywords\"},{\"include\":\"#lvariables\"},{\"include\":\"#constants\"},{\"include\":\"#gtypes\"},{\"include\":\"#functions\"},{\"include\":\"#lifetimes\"},{\"include\":\"#macros\"},{\"include\":\"#namespaces\"},{\"include\":\"#punctuation\"},{\"include\":\"#strings\"},{\"include\":\"#types\"},{\"include\":\"#variables\"}]}]},\"gtypes\":{\"patterns\":[{\"match\":\"\\\\b(Some|None)\\\\b\",\"name\":\"entity.name.type.option.rust\"},{\"match\":\"\\\\b(Ok|Err)\\\\b\",\"name\":\"entity.name.type.result.rust\"}]},\"interpolations\":{\"captures\":{\"1\":{\"name\":\"punctuation.definition.interpolation.rust\"},\"2\":{\"name\":\"punctuation.definition.interpolation.rust\"}},\"match\":\"(\\\\{)[^\\\"{}]*(})\",\"name\":\"meta.interpolation.rust\"},\"keywords\":{\"patterns\":[{\"match\":\"\\\\b(await|break|continue|do|else|for|if|loop|match|return|try|while|yield)\\\\b\",\"name\":\"keyword.control.rust\"},{\"match\":\"\\\\b(extern|let|macro|mod)\\\\b\",\"name\":\"keyword.other.rust storage.type.rust\"},{\"match\":\"\\\\b(const)\\\\b\",\"name\":\"storage.modifier.rust\"},{\"match\":\"\\\\b(type)\\\\b\",\"name\":\"keyword.declaration.type.rust storage.type.rust\"},{\"match\":\"\\\\b(enum)\\\\b\",\"name\":\"keyword.declaration.enum.rust storage.type.rust\"},{\"match\":\"\\\\b(trait)\\\\b\",\"name\":\"keyword.declaration.trait.rust storage.type.rust\"},{\"match\":\"\\\\b(struct)\\\\b\",\"name\":\"keyword.declaration.struct.rust storage.type.rust\"},{\"match\":\"\\\\b(abstract|static)\\\\b\",\"name\":\"storage.modifier.rust\"},{\"match\":\"\\\\b(as|async|become|box|dyn|move|final|gen|impl|in|override|priv|pub|ref|typeof|union|unsafe|unsized|use|virtual|where)\\\\b\",\"name\":\"keyword.other.rust\"},{\"match\":\"\\\\bfn\\\\b\",\"name\":\"keyword.other.fn.rust\"},{\"match\":\"\\\\bcrate\\\\b\",\"name\":\"keyword.other.crate.rust\"},{\"match\":\"\\\\bmut\\\\b\",\"name\":\"storage.modifier.mut.rust\"},{\"match\":\"([\\\\^|]|\\\\|\\\\||&&|<<|>>|!)(?!=)\",\"name\":\"keyword.operator.logical.rust\"},{\"match\":\"&(?![\\\\&=])\",\"name\":\"keyword.operator.borrow.and.rust\"},{\"match\":\"((?:[-%\\\\&*+/^|]|<<|>>)=)\",\"name\":\"keyword.operator.assignment.rust\"},{\"match\":\"(?<![<>])=(?![=>])\",\"name\":\"keyword.operator.assignment.equal.rust\"},{\"match\":\"(=(=)?(?!>)|!=|<=|(?<!=)>=)\",\"name\":\"keyword.operator.comparison.rust\"},{\"match\":\"(([%+]|(\\\\*(?!\\\\w)))(?!=))|(-(?!>))|(/(?!/))\",\"name\":\"keyword.operator.math.rust\"},{\"captures\":{\"1\":{\"name\":\"punctuation.brackets.round.rust\"},\"2\":{\"name\":\"punctuation.brackets.square.rust\"},\"3\":{\"name\":\"punctuation.brackets.curly.rust\"},\"4\":{\"name\":\"keyword.operator.comparison.rust\"},\"5\":{\"name\":\"punctuation.brackets.round.rust\"},\"6\":{\"name\":\"punctuation.brackets.square.rust\"},\"7\":{\"name\":\"punctuation.brackets.curly.rust\"}},\"match\":\"(?:\\\\b|(?:(\\\\))|(])|(})))[\\\\t ]+([<>])[\\\\t ]+(?:\\\\b|(?:(\\\\()|(\\\\[)|(\\\\{)))\"},{\"match\":\"::\",\"name\":\"keyword.operator.namespace.rust\"},{\"captures\":{\"1\":{\"name\":\"keyword.operator.dereference.rust\"}},\"match\":\"(\\\\*)(?=\\\\w+)\"},{\"match\":\"@\",\"name\":\"keyword.operator.subpattern.rust\"},{\"match\":\"\\\\.(?!\\\\.)\",\"name\":\"keyword.operator.access.dot.rust\"},{\"match\":\"\\\\.{2}([.=])?\",\"name\":\"keyword.operator.range.rust\"},{\"match\":\":(?!:)\",\"name\":\"keyword.operator.key-value.rust\"},{\"match\":\"->|<-\",\"name\":\"keyword.operator.arrow.skinny.rust\"},{\"match\":\"=>\",\"name\":\"keyword.operator.arrow.fat.rust\"},{\"match\":\"\\\\$\",\"name\":\"keyword.operator.macro.dollar.rust\"},{\"match\":\"\\\\?\",\"name\":\"keyword.operator.question.rust\"}]},\"lifetimes\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"punctuation.definition.lifetime.rust\"},\"2\":{\"name\":\"entity.name.type.lifetime.rust\"}},\"match\":\"(')([A-Z_a-z][0-9A-Z_a-z]*)(?!')\\\\b\"},{\"captures\":{\"1\":{\"name\":\"keyword.operator.borrow.rust\"},\"2\":{\"name\":\"punctuation.definition.lifetime.rust\"},\"3\":{\"name\":\"entity.name.type.lifetime.rust\"}},\"match\":\"(&)(')([A-Z_a-z][0-9A-Z_a-z]*)(?!')\\\\b\"}]},\"lvariables\":{\"patterns\":[{\"match\":\"\\\\b[Ss]elf\\\\b\",\"name\":\"variable.language.self.rust\"},{\"match\":\"\\\\bsuper\\\\b\",\"name\":\"variable.language.super.rust\"}]},\"macros\":{\"patterns\":[{\"captures\":{\"2\":{\"name\":\"entity.name.function.macro.rust\"},\"3\":{\"name\":\"entity.name.type.macro.rust\"}},\"match\":\"(([_a-z][0-9A-Z_a-z]*!)|([A-Z_][0-9A-Z_a-z]*!))\",\"name\":\"meta.macro.rust\"}]},\"namespaces\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"entity.name.namespace.rust\"},\"2\":{\"name\":\"keyword.operator.namespace.rust\"}},\"match\":\"(?<![0-9A-Z_a-z])([0-9A-Z_a-z]+)((?<!s(?:uper|elf))::)\"}]},\"punctuation\":{\"patterns\":[{\"match\":\",\",\"name\":\"punctuation.comma.rust\"},{\"match\":\"[{}]\",\"name\":\"punctuation.brackets.curly.rust\"},{\"match\":\"[()]\",\"name\":\"punctuation.brackets.round.rust\"},{\"match\":\";\",\"name\":\"punctuation.semi.rust\"},{\"match\":\"[]\\\\[]\",\"name\":\"punctuation.brackets.square.rust\"},{\"match\":\"(?<!=)[<>]\",\"name\":\"punctuation.brackets.angle.rust\"}]},\"strings\":{\"patterns\":[{\"begin\":\"(b?)(\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"string.quoted.byte.raw.rust\"},\"2\":{\"name\":\"punctuation.definition.string.rust\"}},\"end\":\"\\\"\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.string.rust\"}},\"name\":\"string.quoted.double.rust\",\"patterns\":[{\"include\":\"#escapes\"},{\"include\":\"#interpolations\"}]},{\"begin\":\"(b?r)(#*)(\\\")\",\"beginCaptures\":{\"1\":{\"name\":\"string.quoted.byte.raw.rust\"},\"2\":{\"name\":\"punctuation.definition.string.raw.rust\"},\"3\":{\"name\":\"punctuation.definition.string.rust\"}},\"end\":\"(\\\")(\\\\2)\",\"endCaptures\":{\"1\":{\"name\":\"punctuation.definition.string.rust\"},\"2\":{\"name\":\"punctuation.definition.string.raw.rust\"}},\"name\":\"string.quoted.double.rust\"},{\"begin\":\"(b)?(')\",\"beginCaptures\":{\"1\":{\"name\":\"string.quoted.byte.raw.rust\"},\"2\":{\"name\":\"punctuation.definition.char.rust\"}},\"end\":\"'\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.definition.char.rust\"}},\"name\":\"string.quoted.single.char.rust\",\"patterns\":[{\"include\":\"#escapes\"}]}]},\"types\":{\"patterns\":[{\"captures\":{\"1\":{\"name\":\"entity.name.type.numeric.rust\"}},\"match\":\"(?<![A-Za-z])(f32|f64|i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)\\\\b\"},{\"begin\":\"\\\\b(_?[A-Z][0-9A-Z_a-z]*)(<)\",\"beginCaptures\":{\"1\":{\"name\":\"entity.name.type.rust\"},\"2\":{\"name\":\"punctuation.brackets.angle.rust\"}},\"end\":\">\",\"endCaptures\":{\"0\":{\"name\":\"punctuation.brackets.angle.rust\"}},\"patterns\":[{\"include\":\"#block-comments\"},{\"include\":\"#comments\"},{\"include\":\"#keywords\"},{\"include\":\"#lvariables\"},{\"include\":\"#lifetimes\"},{\"include\":\"#punctuation\"},{\"include\":\"#types\"},{\"include\":\"#variables\"}]},{\"match\":\"\\\\b(bool|char|str)\\\\b\",\"name\":\"entity.name.type.primitive.rust\"},{\"captures\":{\"1\":{\"name\":\"keyword.declaration.trait.rust storage.type.rust\"},\"2\":{\"name\":\"entity.name.type.trait.rust\"}},\"match\":\"\\\\b(trait)\\\\s+(_?[A-Z][0-9A-Z_a-z]*)\\\\b\"},{\"captures\":{\"1\":{\"name\":\"keyword.declaration.struct.rust storage.type.rust\"},\"2\":{\"name\":\"entity.name.type.struct.rust\"}},\"match\":\"\\\\b(struct)\\\\s+(_?[A-Z][0-9A-Z_a-z]*)\\\\b\"},{\"captures\":{\"1\":{\"name\":\"keyword.declaration.enum.rust storage.type.rust\"},\"2\":{\"name\":\"entity.name.type.enum.rust\"}},\"match\":\"\\\\b(enum)\\\\s+(_?[A-Z][0-9A-Z_a-z]*)\\\\b\"},{\"captures\":{\"1\":{\"name\":\"keyword.declaration.type.rust storage.type.rust\"},\"2\":{\"name\":\"entity.name.type.declaration.rust\"}},\"match\":\"\\\\b(type)\\\\s+(_?[A-Z][0-9A-Z_a-z]*)\\\\b\"},{\"match\":\"\\\\b_?[A-Z][0-9A-Z_a-z]*\\\\b(?!!)\",\"name\":\"entity.name.type.rust\"}]},\"variables\":{\"patterns\":[{\"match\":\"\\\\b(?<!(?<!\\\\.)\\\\.)(?:r#(?!(crate|[Ss]elf|super)))?[0-9_a-z]+\\\\b\",\"name\":\"variable.other.rust\"}]}},\"scopeName\":\"source.rust\",\"aliases\":[\"rs\"]}"))];
2
+ //#endregion
3
+ export { e as default };
@@ -0,0 +1,11 @@
1
+ import { ThemeRegistration } from 'shiki';
2
+ /**
3
+ * Jasmine UI light theme for Shiki syntax highlighting.
4
+ * Colors complement the --j-* design token palette.
5
+ */
6
+ export declare const jasmineLight: ThemeRegistration;
7
+ /**
8
+ * Jasmine UI dark theme for Shiki syntax highlighting.
9
+ * Lighter token colors for dark backgrounds.
10
+ */
11
+ export declare const jasmineDark: ThemeRegistration;
@@ -0,0 +1,89 @@
1
+ export type Color = 'default' | 'primary' | 'danger' | 'success' | 'warning';
2
+ export type Size = 'sm' | 'md' | 'lg';
3
+ export type Variant = 'solid' | 'outline' | 'text';
4
+ export type Radius = 'none' | 'sm' | 'md' | 'lg' | 'full';
5
+ export type InputVariant = 'outline' | 'filled';
6
+ export type ChipVariant = 'solid' | 'outline';
7
+ export type ModalSize = 'sm' | 'md' | 'lg' | 'fullscreen';
8
+ export type ModalPlacement = 'center' | 'bottom' | 'auto';
9
+ export type ModalBackdrop = 'transparent' | 'dimmed' | 'blur';
10
+ export type DrawerSize = 'sm' | 'md' | 'lg' | 'full';
11
+ export type DrawerPlacement = 'left' | 'right';
12
+ export type TextVariant = 'hero-1' | 'hero-2' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'paragraph' | 'small' | 'caption';
13
+ export type TextElement = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'div' | 'label' | 'strong' | 'em';
14
+ export type TextColor = 'default' | 'secondary' | 'muted' | 'primary' | 'danger' | 'success' | 'warning';
15
+ export type TextAlign = 'left' | 'center' | 'right';
16
+ export type Orientation = 'vertical' | 'horizontal';
17
+ export type ContentPosition = 'start' | 'center' | 'end';
18
+ export type ListVariant = 'flat' | 'bordered';
19
+ export type SelectionMode = 'none' | 'single' | 'multiple';
20
+ export type TabVariant = 'solid' | 'bordered' | 'light' | 'underlined';
21
+ export type AccordionVariant = 'default' | 'bordered' | 'splitted';
22
+ export type TableVariant = 'flat' | 'bordered' | 'striped';
23
+ export type AlertVariant = 'solid' | 'outline';
24
+ export type ToastPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top-center' | 'bottom-center';
25
+ export type BadgePlacement = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
26
+ export interface DropdownItemData {
27
+ type?: 'item';
28
+ label: string;
29
+ value?: string;
30
+ shortcut?: KbdKey[];
31
+ isDisabled?: boolean;
32
+ }
33
+ export interface DropdownLabelData {
34
+ type: 'header';
35
+ label: string;
36
+ }
37
+ export interface DropdownSeparatorData {
38
+ type: 'divider';
39
+ }
40
+ export type DropdownEntry = DropdownItemData | DropdownLabelData | DropdownSeparatorData;
41
+ export type DropdownInput = DropdownEntry[];
42
+ export interface ListItemData {
43
+ type?: 'item';
44
+ label: string;
45
+ value?: string | number;
46
+ description?: string;
47
+ href?: string;
48
+ to?: string | object;
49
+ isDisabled?: boolean;
50
+ isActive?: boolean;
51
+ }
52
+ export interface ListHeaderData {
53
+ type: 'header';
54
+ label: string;
55
+ }
56
+ export interface ListDividerData {
57
+ type: 'divider';
58
+ }
59
+ export type ListEntry = ListItemData | ListHeaderData | ListDividerData;
60
+ export type ListInput = ListEntry[];
61
+ export type RadioItem = {
62
+ label: string;
63
+ value: string | number;
64
+ isDisabled?: boolean;
65
+ };
66
+ export interface TabItem {
67
+ label: string;
68
+ value: string | number;
69
+ isDisabled?: boolean;
70
+ }
71
+ export interface AccordionItem {
72
+ label: string;
73
+ value: string;
74
+ isDisabled?: boolean;
75
+ }
76
+ export interface TableColumn {
77
+ key: string;
78
+ label: string;
79
+ sortable?: boolean;
80
+ align?: 'left' | 'center' | 'right';
81
+ width?: string;
82
+ }
83
+ export interface TableSortDescriptor {
84
+ column: string;
85
+ direction: 'ascending' | 'descending';
86
+ }
87
+ export type CodeBlockLanguage = 'javascript' | 'typescript' | 'vue' | 'jsx' | 'rust' | 'html' | 'css' | 'json' | 'jsonc' | 'text';
88
+ export type KbdKey = 'meta' | 'cmd' | 'command' | 'ctrl' | 'control' | 'alt' | 'option' | 'shift' | 'enter' | 'return' | 'tab' | 'escape' | 'esc' | 'space' | 'up' | 'down' | 'left' | 'right' | 'backspace' | 'delete' | 'capslock' | 'home' | 'end' | 'pageup' | 'pagedown' | (string & {});
89
+ export type KbdSize = 'auto' | 'sm' | 'md' | 'lg';
@@ -0,0 +1,142 @@
1
+ import { PropType } from 'vue';
2
+ import { AccordionVariant, AlertVariant, BadgePlacement, ChipVariant, Color, ContentPosition, DrawerPlacement, DrawerSize, InputVariant, ListVariant, ModalBackdrop, ModalPlacement, ModalSize, Orientation, Radius, SelectionMode, Size, TableVariant, TabVariant, TextAlign, TextColor, TextElement, TextVariant, ToastPosition, Variant } from './common';
3
+ /** Color prop — reuse across all colored components */
4
+ export declare const colorProp: {
5
+ type: PropType<Color>;
6
+ default: "primary";
7
+ };
8
+ /** Size prop — reuse across all sized components */
9
+ export declare const sizeProp: {
10
+ type: PropType<Size>;
11
+ default: "md";
12
+ };
13
+ /** Variant prop — reuse across all variant components */
14
+ export declare const variantProp: {
15
+ type: PropType<Variant>;
16
+ default: "solid";
17
+ };
18
+ /** Disabled prop */
19
+ export declare const isDisabledProp: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ /** Loading prop */
24
+ export declare const isLoadingProp: {
25
+ type: BooleanConstructor;
26
+ default: boolean;
27
+ };
28
+ /** Input variant prop — reuse across all form input components */
29
+ export declare const inputVariantProp: {
30
+ type: PropType<InputVariant>;
31
+ default: "outline";
32
+ };
33
+ /** Chip variant prop — reuse across chip components */
34
+ export declare const chipVariantProp: {
35
+ type: PropType<ChipVariant>;
36
+ default: "solid";
37
+ };
38
+ /** Radius prop — reuse across all components with border radius */
39
+ export declare const radiusProp: {
40
+ type: PropType<Radius>;
41
+ default: "md";
42
+ };
43
+ /** Readonly prop */
44
+ export declare const isReadonlyProp: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ /** Modal size prop */
49
+ export declare const modalSizeProp: {
50
+ type: PropType<ModalSize>;
51
+ default: "md";
52
+ };
53
+ /** Modal placement prop */
54
+ export declare const modalPlacementProp: {
55
+ type: PropType<ModalPlacement>;
56
+ default: "auto";
57
+ };
58
+ /** Orientation prop — reuse across all layout components */
59
+ export declare const orientationProp: {
60
+ type: PropType<Orientation>;
61
+ default: "vertical";
62
+ };
63
+ /** Content position prop — reuse across components with positioned content */
64
+ export declare const contentPositionProp: {
65
+ type: PropType<ContentPosition>;
66
+ default: "center";
67
+ };
68
+ /** Modal backdrop prop */
69
+ export declare const modalBackdropProp: {
70
+ type: PropType<ModalBackdrop>;
71
+ default: "blur";
72
+ };
73
+ /** Drawer size prop */
74
+ export declare const drawerSizeProp: {
75
+ type: PropType<DrawerSize>;
76
+ default: "md";
77
+ };
78
+ /** Drawer placement prop */
79
+ export declare const drawerPlacementProp: {
80
+ type: PropType<DrawerPlacement>;
81
+ default: "right";
82
+ };
83
+ /** Text variant prop */
84
+ export declare const textVariantProp: {
85
+ type: PropType<TextVariant>;
86
+ default: "paragraph";
87
+ };
88
+ /** Text element override prop */
89
+ export declare const textElementProp: {
90
+ type: PropType<TextElement>;
91
+ default: undefined;
92
+ };
93
+ /** Text color prop — NOT the shared colorProp (which defaults to 'primary') */
94
+ export declare const textColorProp: {
95
+ type: PropType<TextColor>;
96
+ default: undefined;
97
+ };
98
+ /** Text alignment prop */
99
+ export declare const textAlignProp: {
100
+ type: PropType<TextAlign>;
101
+ default: undefined;
102
+ };
103
+ /** List variant prop */
104
+ export declare const listVariantProp: {
105
+ type: PropType<ListVariant>;
106
+ default: "flat";
107
+ };
108
+ /** Selection mode prop */
109
+ export declare const selectionModeProp: {
110
+ type: PropType<SelectionMode>;
111
+ default: "none";
112
+ };
113
+ /** Tab variant prop */
114
+ export declare const tabVariantProp: {
115
+ type: PropType<TabVariant>;
116
+ default: "solid";
117
+ };
118
+ /** Accordion variant prop */
119
+ export declare const accordionVariantProp: {
120
+ type: PropType<AccordionVariant>;
121
+ default: "default";
122
+ };
123
+ /** Table variant prop */
124
+ export declare const tableVariantProp: {
125
+ type: PropType<TableVariant>;
126
+ default: "flat";
127
+ };
128
+ /** Alert variant prop */
129
+ export declare const alertVariantProp: {
130
+ type: PropType<AlertVariant>;
131
+ default: "solid";
132
+ };
133
+ /** Toast position prop */
134
+ export declare const toastPositionProp: {
135
+ type: PropType<ToastPosition>;
136
+ default: "bottom-right";
137
+ };
138
+ /** Badge placement prop */
139
+ export declare const badgePlacementProp: {
140
+ type: PropType<BadgePlacement>;
141
+ default: "top-right";
142
+ };