@enjoys/context-engine 1.2.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (270) hide show
  1. package/data/codeActions/angular.json +126 -0
  2. package/data/codeActions/css.json +111 -0
  3. package/data/codeActions/nestjs.json +124 -0
  4. package/data/codeActions/nextjs.json +198 -0
  5. package/data/codeActions/react.json +154 -0
  6. package/data/codeActions/shadcn.json +112 -0
  7. package/data/codeActions/shell.json +169 -26
  8. package/data/codeActions/tailwindcss.json +76 -0
  9. package/data/codeLens/angular.json +22 -0
  10. package/data/codeLens/css.json +68 -0
  11. package/data/codeLens/nestjs.json +21 -0
  12. package/data/codeLens/nextjs.json +117 -0
  13. package/data/codeLens/react.json +89 -0
  14. package/data/codeLens/shadcn.json +89 -0
  15. package/data/codeLens/shell.json +59 -17
  16. package/data/codeLens/tailwindcss.json +103 -0
  17. package/data/color/angular.json +21 -0
  18. package/data/color/css.json +124 -0
  19. package/data/color/nestjs.json +18 -0
  20. package/data/color/nextjs.json +22 -0
  21. package/data/color/react.json +93 -0
  22. package/data/color/shadcn.json +66 -0
  23. package/data/color/shell.json +106 -80
  24. package/data/color/tailwindcss.json +53 -0
  25. package/data/commands/angular.json +312 -0
  26. package/data/commands/css.json +41 -0
  27. package/data/commands/manifest.json +734 -727
  28. package/data/commands/nestjs.json +273 -0
  29. package/data/commands/nextjs.json +123 -0
  30. package/data/commands/react.json +210 -0
  31. package/data/commands/shadcn.json +410 -0
  32. package/data/commands/shell.json +571 -41
  33. package/data/commands/tailwindcss.json +53 -0
  34. package/data/completion/angular.json +1490 -0
  35. package/data/completion/css.json +1176 -0
  36. package/data/completion/javascript.json +27 -0
  37. package/data/completion/nestjs.json +1454 -0
  38. package/data/completion/nextjs.json +1373 -0
  39. package/data/completion/react.json +1319 -0
  40. package/data/completion/redis-cli.json +1 -1
  41. package/data/completion/shadcn.json +1202 -0
  42. package/data/completion/shell.json +2446 -510
  43. package/data/completion/tailwindcss.json +284 -0
  44. package/data/completion/typescript.json +27 -0
  45. package/data/declaration/angular.json +46 -0
  46. package/data/declaration/css.json +59 -0
  47. package/data/declaration/nestjs.json +47 -0
  48. package/data/declaration/nextjs.json +274 -0
  49. package/data/declaration/react.json +199 -0
  50. package/data/declaration/shadcn.json +211 -0
  51. package/data/declaration/shell.json +343 -24
  52. package/data/declaration/tailwindcss.json +137 -0
  53. package/data/definition/angular.json +670 -0
  54. package/data/definition/css.json +115 -0
  55. package/data/definition/nestjs.json +684 -0
  56. package/data/definition/nextjs.json +439 -0
  57. package/data/definition/react.json +397 -0
  58. package/data/definition/redis-cli.json +1 -1
  59. package/data/definition/shadcn.json +99 -0
  60. package/data/definition/shell.json +820 -0
  61. package/data/definition/tailwindcss.json +115 -0
  62. package/data/documentHighlight/angular.json +414 -0
  63. package/data/documentHighlight/css.json +125 -0
  64. package/data/documentHighlight/nestjs.json +115 -0
  65. package/data/documentHighlight/nextjs.json +212 -0
  66. package/data/documentHighlight/react.json +119 -0
  67. package/data/documentHighlight/shadcn.json +168 -0
  68. package/data/documentHighlight/shell.json +664 -334
  69. package/data/documentHighlight/tailwindcss.json +160 -0
  70. package/data/documentRangeFormatting/angular.json +45 -0
  71. package/data/documentRangeFormatting/css.json +101 -0
  72. package/data/documentRangeFormatting/nestjs.json +17 -0
  73. package/data/documentRangeFormatting/nextjs.json +17 -0
  74. package/data/documentRangeFormatting/react.json +78 -0
  75. package/data/documentRangeFormatting/shadcn.json +45 -0
  76. package/data/documentRangeFormatting/shell.json +120 -53
  77. package/data/documentRangeFormatting/tailwindcss.json +55 -0
  78. package/data/documentSymbol/angular.json +180 -0
  79. package/data/documentSymbol/css.json +96 -0
  80. package/data/documentSymbol/nestjs.json +152 -0
  81. package/data/documentSymbol/nextjs.json +159 -0
  82. package/data/documentSymbol/react.json +145 -0
  83. package/data/documentSymbol/shadcn.json +131 -0
  84. package/data/documentSymbol/shell.json +166 -26
  85. package/data/documentSymbol/tailwindcss.json +110 -0
  86. package/data/foldingRange/angular.json +99 -0
  87. package/data/foldingRange/css.json +66 -0
  88. package/data/foldingRange/nestjs.json +26 -0
  89. package/data/foldingRange/nextjs.json +26 -0
  90. package/data/foldingRange/react.json +120 -0
  91. package/data/foldingRange/shadcn.json +93 -0
  92. package/data/foldingRange/shell.json +106 -46
  93. package/data/foldingRange/tailwindcss.json +60 -0
  94. package/data/formatting/angular.json +21 -0
  95. package/data/formatting/css.json +73 -0
  96. package/data/formatting/nestjs.json +23 -0
  97. package/data/formatting/nextjs.json +23 -0
  98. package/data/formatting/react.json +71 -0
  99. package/data/formatting/shadcn.json +61 -0
  100. package/data/formatting/shell.json +103 -19
  101. package/data/formatting/tailwindcss.json +48 -0
  102. package/data/hover/angular.json +455 -0
  103. package/data/hover/css.json +300 -0
  104. package/data/hover/nestjs.json +296 -0
  105. package/data/hover/nextjs.json +305 -0
  106. package/data/hover/react.json +173 -0
  107. package/data/hover/redis-cli.json +1 -1
  108. package/data/hover/shadcn.json +450 -0
  109. package/data/hover/shell.json +684 -75
  110. package/data/hover/tailwindcss.json +968 -0
  111. package/data/implementation/angular.json +22 -0
  112. package/data/implementation/css.json +65 -0
  113. package/data/implementation/nestjs.json +24 -0
  114. package/data/implementation/nextjs.json +137 -0
  115. package/data/implementation/react.json +125 -0
  116. package/data/implementation/shadcn.json +89 -0
  117. package/data/implementation/shell.json +59 -3
  118. package/data/implementation/tailwindcss.json +59 -0
  119. package/data/inlayHints/angular.json +24 -0
  120. package/data/inlayHints/css.json +87 -0
  121. package/data/inlayHints/nestjs.json +24 -0
  122. package/data/inlayHints/nextjs.json +143 -0
  123. package/data/inlayHints/react.json +177 -0
  124. package/data/inlayHints/shadcn.json +109 -0
  125. package/data/inlayHints/shell.json +223 -35
  126. package/data/inlayHints/tailwindcss.json +111 -0
  127. package/data/inlineCompletions/angular.json +135 -0
  128. package/data/inlineCompletions/css.json +125 -0
  129. package/data/inlineCompletions/javascript.json +12 -0
  130. package/data/inlineCompletions/nestjs.json +25 -0
  131. package/data/inlineCompletions/nextjs.json +179 -0
  132. package/data/inlineCompletions/react.json +203 -0
  133. package/data/inlineCompletions/shadcn.json +115 -0
  134. package/data/inlineCompletions/shell.json +185 -35
  135. package/data/inlineCompletions/tailwindcss.json +411 -0
  136. package/data/inlineCompletions/typescript.json +12 -0
  137. package/data/linkedEditingRange/angular.json +23 -0
  138. package/data/linkedEditingRange/css.json +40 -0
  139. package/data/linkedEditingRange/nestjs.json +10 -0
  140. package/data/linkedEditingRange/nextjs.json +11 -0
  141. package/data/linkedEditingRange/react.json +75 -0
  142. package/data/linkedEditingRange/shadcn.json +23 -0
  143. package/data/linkedEditingRange/shell.json +25 -25
  144. package/data/linkedEditingRange/tailwindcss.json +30 -0
  145. package/data/links/angular.json +95 -0
  146. package/data/links/css.json +55 -0
  147. package/data/links/nestjs.json +130 -0
  148. package/data/links/nextjs.json +91 -0
  149. package/data/links/react.json +75 -0
  150. package/data/links/shadcn.json +98 -0
  151. package/data/links/shell.json +56 -0
  152. package/data/links/tailwindcss.json +65 -0
  153. package/data/manifest.json +399 -150
  154. package/data/onTypeFormatting/angular.json +14 -0
  155. package/data/onTypeFormatting/css.json +82 -0
  156. package/data/onTypeFormatting/nestjs.json +16 -0
  157. package/data/onTypeFormatting/nextjs.json +17 -0
  158. package/data/onTypeFormatting/react.json +127 -0
  159. package/data/onTypeFormatting/shadcn.json +54 -0
  160. package/data/onTypeFormatting/shell.json +72 -68
  161. package/data/onTypeFormatting/tailwindcss.json +63 -0
  162. package/data/rangeSemanticTokens/angular.json +140 -0
  163. package/data/rangeSemanticTokens/css.json +125 -0
  164. package/data/rangeSemanticTokens/nestjs.json +27 -0
  165. package/data/rangeSemanticTokens/nextjs.json +28 -0
  166. package/data/rangeSemanticTokens/react.json +216 -0
  167. package/data/rangeSemanticTokens/shadcn.json +140 -0
  168. package/data/rangeSemanticTokens/shell.json +247 -69
  169. package/data/rangeSemanticTokens/tailwindcss.json +186 -0
  170. package/data/references/angular.json +26 -0
  171. package/data/references/css.json +65 -0
  172. package/data/references/nestjs.json +24 -0
  173. package/data/references/nextjs.json +178 -0
  174. package/data/references/react.json +192 -0
  175. package/data/references/shadcn.json +101 -0
  176. package/data/references/shell.json +323 -92
  177. package/data/references/tailwindcss.json +125 -0
  178. package/data/rename/angular.json +131 -0
  179. package/data/rename/css.json +91 -0
  180. package/data/rename/nestjs.json +32 -0
  181. package/data/rename/nextjs.json +31 -0
  182. package/data/rename/react.json +88 -0
  183. package/data/rename/shadcn.json +79 -0
  184. package/data/rename/shell.json +101 -31
  185. package/data/rename/tailwindcss.json +58 -0
  186. package/data/selectionRange/angular.json +95 -0
  187. package/data/selectionRange/css.json +55 -0
  188. package/data/selectionRange/nestjs.json +21 -0
  189. package/data/selectionRange/nextjs.json +22 -0
  190. package/data/selectionRange/react.json +87 -0
  191. package/data/selectionRange/shadcn.json +89 -0
  192. package/data/selectionRange/shell.json +65 -35
  193. package/data/selectionRange/tailwindcss.json +35 -0
  194. package/data/semanticTokens/angular.json +198 -0
  195. package/data/semanticTokens/css.json +107 -0
  196. package/data/semanticTokens/nestjs.json +35 -0
  197. package/data/semanticTokens/nextjs.json +38 -0
  198. package/data/semanticTokens/react.json +215 -0
  199. package/data/semanticTokens/shadcn.json +180 -0
  200. package/data/semanticTokens/shell.json +238 -65
  201. package/data/semanticTokens/tailwindcss.json +161 -0
  202. package/data/signatureHelp/angular.json +182 -0
  203. package/data/signatureHelp/css.json +137 -0
  204. package/data/signatureHelp/nestjs.json +128 -0
  205. package/data/signatureHelp/nextjs.json +127 -0
  206. package/data/signatureHelp/react.json +281 -0
  207. package/data/signatureHelp/shadcn.json +237 -0
  208. package/data/signatureHelp/shell.json +797 -104
  209. package/data/signatureHelp/tailwindcss.json +64 -0
  210. package/data/typeDefinition/angular.json +362 -0
  211. package/data/typeDefinition/css.json +53 -0
  212. package/data/typeDefinition/nestjs.json +334 -0
  213. package/data/typeDefinition/nextjs.json +285 -0
  214. package/data/typeDefinition/react.json +236 -0
  215. package/data/typeDefinition/shadcn.json +292 -0
  216. package/data/typeDefinition/shell.json +104 -40
  217. package/data/typeDefinition/tailwindcss.json +47 -0
  218. package/package.json +1 -1
  219. package/data/codeActions/bash.json +0 -169
  220. package/data/codeActions/zsh.json +0 -49
  221. package/data/codeLens/bash.json +0 -75
  222. package/data/codeLens/zsh.json +0 -19
  223. package/data/color/bash.json +0 -100
  224. package/data/color/zsh.json +0 -80
  225. package/data/commands/bash.json +0 -102
  226. package/data/commands/zsh.json +0 -166
  227. package/data/completion/bash.json +0 -1184
  228. package/data/completion/zsh.json +0 -973
  229. package/data/declaration/bash.json +0 -301
  230. package/data/declaration/zsh.json +0 -205
  231. package/data/definition/bash.json +0 -565
  232. package/data/definition/zsh.json +0 -350
  233. package/data/documentHighlight/bash.json +0 -393
  234. package/data/documentHighlight/zsh.json +0 -266
  235. package/data/documentRangeFormatting/bash.json +0 -41
  236. package/data/documentRangeFormatting/zsh.json +0 -59
  237. package/data/documentSymbol/bash.json +0 -124
  238. package/data/documentSymbol/zsh.json +0 -26
  239. package/data/foldingRange/bash.json +0 -76
  240. package/data/foldingRange/zsh.json +0 -46
  241. package/data/formatting/bash.json +0 -88
  242. package/data/formatting/zsh.json +0 -28
  243. package/data/hover/bash.json +0 -579
  244. package/data/hover/zsh.json +0 -96
  245. package/data/implementation/bash.json +0 -44
  246. package/data/implementation/zsh.json +0 -41
  247. package/data/inlayHints/bash.json +0 -207
  248. package/data/inlayHints/zsh.json +0 -43
  249. package/data/inlineCompletions/bash.json +0 -155
  250. package/data/inlineCompletions/zsh.json +0 -17
  251. package/data/linkedEditingRange/bash.json +0 -25
  252. package/data/linkedEditingRange/zsh.json +0 -25
  253. package/data/links/bash.json +0 -56
  254. package/data/links/zsh.json +0 -15
  255. package/data/onTypeFormatting/bash.json +0 -68
  256. package/data/onTypeFormatting/zsh.json +0 -68
  257. package/data/rangeSemanticTokens/bash.json +0 -90
  258. package/data/rangeSemanticTokens/zsh.json +0 -76
  259. package/data/references/bash.json +0 -221
  260. package/data/references/zsh.json +0 -166
  261. package/data/rename/bash.json +0 -37
  262. package/data/rename/zsh.json +0 -31
  263. package/data/selectionRange/bash.json +0 -35
  264. package/data/selectionRange/zsh.json +0 -35
  265. package/data/semanticTokens/bash.json +0 -71
  266. package/data/semanticTokens/zsh.json +0 -71
  267. package/data/signatureHelp/bash.json +0 -111
  268. package/data/signatureHelp/zsh.json +0 -118
  269. package/data/typeDefinition/bash.json +0 -95
  270. package/data/typeDefinition/zsh.json +0 -40
@@ -0,0 +1,115 @@
1
+ {
2
+ "language": "nestjs",
3
+ "highlights": {
4
+ "@Controller": { "kind": 1, "description": "NestJS controller decorator - defines HTTP request handler class" },
5
+ "@Get": { "kind": 1, "description": "HTTP GET route decorator" },
6
+ "@Post": { "kind": 1, "description": "HTTP POST route decorator" },
7
+ "@Put": { "kind": 1, "description": "HTTP PUT route decorator" },
8
+ "@Patch": { "kind": 1, "description": "HTTP PATCH route decorator" },
9
+ "@Delete": { "kind": 1, "description": "HTTP DELETE route decorator" },
10
+ "@Module": { "kind": 1, "description": "NestJS module decorator - organizes application structure" },
11
+ "@Injectable": { "kind": 1, "description": "NestJS injectable decorator - marks class for DI" },
12
+ "@Inject": { "kind": 1, "description": "NestJS inject decorator - custom token injection" },
13
+ "@Body": { "kind": 1, "description": "Request body parameter decorator" },
14
+ "@Param": { "kind": 1, "description": "Route parameter decorator" },
15
+ "@Query": { "kind": 1, "description": "Query parameter decorator" },
16
+ "@Headers": { "kind": 1, "description": "Request headers decorator" },
17
+ "@Req": { "kind": 1, "description": "Request object decorator" },
18
+ "@Res": { "kind": 1, "description": "Response object decorator" },
19
+ "@UseGuards": { "kind": 1, "description": "Binds guards to controller or method" },
20
+ "@UseInterceptors": { "kind": 1, "description": "Binds interceptors to controller or method" },
21
+ "@UsePipes": { "kind": 1, "description": "Binds pipes to controller or method" },
22
+ "@UseFilters": { "kind": 1, "description": "Binds exception filters to controller or method" },
23
+ "@SetMetadata": { "kind": 1, "description": "Attaches custom metadata to route handler" },
24
+ "@Catch": { "kind": 1, "description": "Marks class as exception filter" },
25
+ "@HttpCode": { "kind": 1, "description": "Sets HTTP response status code" },
26
+ "@Header": { "kind": 1, "description": "Sets response header" },
27
+ "@Redirect": { "kind": 1, "description": "Redirects response" },
28
+ "@Render": { "kind": 1, "description": "Renders view template" },
29
+ "@WebSocketGateway": { "kind": 1, "description": "WebSocket gateway decorator" },
30
+ "@SubscribeMessage": { "kind": 1, "description": "WebSocket message subscription decorator" },
31
+ "@EventPattern": { "kind": 1, "description": "Microservice event pattern decorator" },
32
+ "@MessagePattern": { "kind": 1, "description": "Microservice message pattern decorator" },
33
+ "@Cron": { "kind": 1, "description": "Cron job schedule decorator" },
34
+ "@Interval": { "kind": 1, "description": "Interval schedule decorator" },
35
+ "@Timeout": { "kind": 1, "description": "Timeout schedule decorator" },
36
+ "@ApiTags": { "kind": 1, "description": "Swagger API tags decorator" },
37
+ "@ApiOperation": { "kind": 1, "description": "Swagger API operation decorator" },
38
+ "@ApiResponse": { "kind": 1, "description": "Swagger API response decorator" },
39
+ "@ApiProperty": { "kind": 1, "description": "Swagger DTO property decorator" },
40
+ "NestFactory": { "kind": 1, "description": "NestJS application factory" },
41
+ "INestApplication": { "kind": 1, "description": "NestJS application interface" },
42
+ "ModuleRef": { "kind": 1, "description": "Module reference for dynamic resolution" },
43
+ "Reflector": { "kind": 1, "description": "Metadata reflector utility" },
44
+ "imports": { "kind": 2, "description": "Module metadata - imported modules" },
45
+ "controllers": { "kind": 2, "description": "Module metadata - registered controllers" },
46
+ "providers": { "kind": 2, "description": "Module metadata - registered providers" },
47
+ "exports": { "kind": 2, "description": "Module metadata - exported providers" },
48
+ "onModuleInit": { "kind": 1, "description": "Lifecycle hook - module initialized" },
49
+ "onModuleDestroy": { "kind": 1, "description": "Lifecycle hook - module destroyed" },
50
+ "onApplicationBootstrap": { "kind": 1, "description": "Lifecycle hook - application bootstrapped" },
51
+ "onApplicationShutdown": { "kind": 1, "description": "Lifecycle hook - application shutting down" },
52
+ "beforeApplicationShutdown": { "kind": 1, "description": "Lifecycle hook - before shutdown" },
53
+ "constructor": { "kind": 2, "description": "Class constructor - dependency injection point" },
54
+ "import": { "kind": 0, "description": "ES module import statement" },
55
+ "export": { "kind": 0, "description": "ES module export statement" },
56
+ "from": { "kind": 0, "description": "Module specifier keyword" },
57
+ "class": { "kind": 0, "description": "Class declaration" },
58
+ "implements": { "kind": 0, "description": "Interface implementation" },
59
+ "extends": { "kind": 0, "description": "Class inheritance" },
60
+ "async": { "kind": 0, "description": "Async function modifier" },
61
+ "await": { "kind": 0, "description": "Await expression" },
62
+ "return": { "kind": 0, "description": "Return statement" },
63
+ "const": { "kind": 2, "description": "Constant declaration" },
64
+ "private": { "kind": 0, "description": "Private access modifier" },
65
+ "readonly": { "kind": 0, "description": "Readonly modifier" }
66
+ },
67
+ "bracketPairs": [
68
+ { "open": "(", "close": ")" },
69
+ { "open": "[", "close": "]" },
70
+ { "open": "{", "close": "}" },
71
+ { "open": "<", "close": ">" }
72
+ ],
73
+ "keywordGroups": [
74
+ {
75
+ "name": "Decorators",
76
+ "keywords": ["@Controller", "@Get", "@Post", "@Put", "@Patch", "@Delete", "@Module", "@Injectable", "@Inject", "@Optional", "@Body", "@Param", "@Query", "@Headers", "@Req", "@Res", "@HttpCode", "@Header", "@Redirect", "@Render", "@UseGuards", "@UseInterceptors", "@UsePipes", "@UseFilters", "@SetMetadata", "@Catch", "@Global", "@Version", "@Sse"],
77
+ "highlightKind": 0
78
+ },
79
+ {
80
+ "name": "HTTP Methods",
81
+ "keywords": ["@Get", "@Post", "@Put", "@Patch", "@Delete", "@Head", "@Options", "@All"],
82
+ "highlightKind": 0
83
+ },
84
+ {
85
+ "name": "Module Keywords",
86
+ "keywords": ["imports", "controllers", "providers", "exports", "module", "global"],
87
+ "highlightKind": 0
88
+ },
89
+ {
90
+ "name": "Lifecycle Hooks",
91
+ "keywords": ["onModuleInit", "onModuleDestroy", "onApplicationBootstrap", "onApplicationShutdown", "beforeApplicationShutdown"],
92
+ "highlightKind": 0
93
+ },
94
+ {
95
+ "name": "Testing Keywords",
96
+ "keywords": ["describe", "it", "expect", "beforeEach", "afterEach", "beforeAll", "afterAll", "jest", "Test", "TestingModule"],
97
+ "highlightKind": 0
98
+ },
99
+ {
100
+ "name": "WebSocket Keywords",
101
+ "keywords": ["@WebSocketGateway", "@SubscribeMessage", "@ConnectedSocket", "@WebSocketServer", "@MessageBody"],
102
+ "highlightKind": 0
103
+ },
104
+ {
105
+ "name": "Microservice Keywords",
106
+ "keywords": ["@EventPattern", "@MessagePattern", "@Payload", "@Ctx", "Transport", "ClientProxy"],
107
+ "highlightKind": 0
108
+ },
109
+ {
110
+ "name": "Swagger Keywords",
111
+ "keywords": ["@ApiTags", "@ApiOperation", "@ApiResponse", "@ApiProperty", "@ApiBody", "@ApiBearerAuth", "@ApiQuery", "@ApiParam"],
112
+ "highlightKind": 0
113
+ }
114
+ ]
115
+ }
@@ -0,0 +1,212 @@
1
+ {
2
+ "language": "nextjs",
3
+ "highlights": {
4
+ "'use client'": {
5
+ "kind": "text",
6
+ "pattern": "^['\"]use client['\"];?",
7
+ "scope": "directive",
8
+ "description": "Client Component directive"
9
+ },
10
+ "'use server'": {
11
+ "kind": "text",
12
+ "pattern": "['\"]use server['\"];?",
13
+ "scope": "directive",
14
+ "description": "Server Action directive"
15
+ },
16
+ "export default function": {
17
+ "kind": "write",
18
+ "pattern": "export\\s+default\\s+(async\\s+)?function\\s+\\w+",
19
+ "scope": "declaration",
20
+ "description": "Page/Layout/Component default export"
21
+ },
22
+ "export async function GET": {
23
+ "kind": "write",
24
+ "pattern": "export\\s+async\\s+function\\s+(GET|POST|PUT|DELETE|PATCH|HEAD|OPTIONS)",
25
+ "scope": "declaration",
26
+ "description": "Route Handler method export"
27
+ },
28
+ "generateMetadata": {
29
+ "kind": "write",
30
+ "pattern": "export\\s+(async\\s+)?function\\s+generateMetadata",
31
+ "scope": "declaration",
32
+ "description": "Metadata generation function"
33
+ },
34
+ "generateStaticParams": {
35
+ "kind": "write",
36
+ "pattern": "export\\s+(async\\s+)?function\\s+generateStaticParams",
37
+ "scope": "declaration",
38
+ "description": "Static params generation function"
39
+ },
40
+ "generateViewport": {
41
+ "kind": "write",
42
+ "pattern": "export\\s+(async\\s+)?function\\s+generateViewport",
43
+ "scope": "declaration",
44
+ "description": "Viewport generation function"
45
+ },
46
+ "export const metadata": {
47
+ "kind": "write",
48
+ "pattern": "export\\s+const\\s+metadata\\s*:\\s*Metadata",
49
+ "scope": "declaration",
50
+ "description": "Static metadata export"
51
+ },
52
+ "export const dynamic": {
53
+ "kind": "write",
54
+ "pattern": "export\\s+const\\s+dynamic\\s*=",
55
+ "scope": "config",
56
+ "description": "Route segment dynamic config"
57
+ },
58
+ "export const revalidate": {
59
+ "kind": "write",
60
+ "pattern": "export\\s+const\\s+revalidate\\s*=",
61
+ "scope": "config",
62
+ "description": "Route segment revalidate config"
63
+ },
64
+ "export const runtime": {
65
+ "kind": "write",
66
+ "pattern": "export\\s+const\\s+runtime\\s*=",
67
+ "scope": "config",
68
+ "description": "Route segment runtime config"
69
+ },
70
+ "export const preferredRegion": {
71
+ "kind": "write",
72
+ "pattern": "export\\s+const\\s+preferredRegion\\s*=",
73
+ "scope": "config",
74
+ "description": "Route segment preferred region config"
75
+ },
76
+ "export const maxDuration": {
77
+ "kind": "write",
78
+ "pattern": "export\\s+const\\s+maxDuration\\s*=",
79
+ "scope": "config",
80
+ "description": "Route segment max duration config"
81
+ },
82
+ "export const fetchCache": {
83
+ "kind": "write",
84
+ "pattern": "export\\s+const\\s+fetchCache\\s*=",
85
+ "scope": "config",
86
+ "description": "Route segment fetch cache config"
87
+ },
88
+ "export const dynamicParams": {
89
+ "kind": "write",
90
+ "pattern": "export\\s+const\\s+dynamicParams\\s*=",
91
+ "scope": "config",
92
+ "description": "Route segment dynamic params config"
93
+ },
94
+ "next/navigation import": {
95
+ "kind": "read",
96
+ "pattern": "import\\s+\\{[^}]+\\}\\s+from\\s+['\"]next/navigation['\"]",
97
+ "scope": "import",
98
+ "description": "Next.js navigation imports"
99
+ },
100
+ "next/server import": {
101
+ "kind": "read",
102
+ "pattern": "import\\s+\\{[^}]+\\}\\s+from\\s+['\"]next/server['\"]",
103
+ "scope": "import",
104
+ "description": "Next.js server imports"
105
+ },
106
+ "next/image import": {
107
+ "kind": "read",
108
+ "pattern": "import\\s+Image\\s+from\\s+['\"]next/image['\"]",
109
+ "scope": "import",
110
+ "description": "Next.js Image component import"
111
+ },
112
+ "next/link import": {
113
+ "kind": "read",
114
+ "pattern": "import\\s+Link\\s+from\\s+['\"]next/link['\"]",
115
+ "scope": "import",
116
+ "description": "Next.js Link component import"
117
+ },
118
+ "next/headers import": {
119
+ "kind": "read",
120
+ "pattern": "import\\s+\\{[^}]+\\}\\s+from\\s+['\"]next/headers['\"]",
121
+ "scope": "import",
122
+ "description": "Next.js headers imports"
123
+ },
124
+ "next/cache import": {
125
+ "kind": "read",
126
+ "pattern": "import\\s+\\{[^}]+\\}\\s+from\\s+['\"]next/cache['\"]",
127
+ "scope": "import",
128
+ "description": "Next.js cache imports"
129
+ },
130
+ "getServerSideProps": {
131
+ "kind": "write",
132
+ "pattern": "export\\s+(const\\s+)?getServerSideProps",
133
+ "scope": "data-fetching",
134
+ "description": "Pages Router server-side data fetching"
135
+ },
136
+ "getStaticProps": {
137
+ "kind": "write",
138
+ "pattern": "export\\s+(const\\s+)?getStaticProps",
139
+ "scope": "data-fetching",
140
+ "description": "Pages Router static data fetching"
141
+ },
142
+ "getStaticPaths": {
143
+ "kind": "write",
144
+ "pattern": "export\\s+(const\\s+)?getStaticPaths",
145
+ "scope": "data-fetching",
146
+ "description": "Pages Router static paths"
147
+ },
148
+ "middleware": {
149
+ "kind": "write",
150
+ "pattern": "export\\s+function\\s+middleware",
151
+ "scope": "middleware",
152
+ "description": "Middleware function export"
153
+ },
154
+ "fetch-cache": {
155
+ "kind": "read",
156
+ "pattern": "fetch\\([^)]+,\\s*\\{[^}]*(cache|revalidate|tags)[^}]*\\}",
157
+ "scope": "data-fetching",
158
+ "description": "Fetch with Next.js cache options"
159
+ },
160
+ "revalidatePath-call": {
161
+ "kind": "read",
162
+ "pattern": "revalidatePath\\([^)]+\\)",
163
+ "scope": "revalidation",
164
+ "description": "Cache revalidation by path"
165
+ },
166
+ "revalidateTag-call": {
167
+ "kind": "read",
168
+ "pattern": "revalidateTag\\([^)]+\\)",
169
+ "scope": "revalidation",
170
+ "description": "Cache revalidation by tag"
171
+ }
172
+ },
173
+ "bracketPairs": [
174
+ { "open": "{", "close": "}" },
175
+ { "open": "[", "close": "]" },
176
+ { "open": "(", "close": ")" },
177
+ { "open": "<", "close": ">" },
178
+ { "open": "<%", "close": "%>" }
179
+ ],
180
+ "keywordGroups": [
181
+ {
182
+ "name": "directives",
183
+ "keywords": ["'use client'", "'use server'"],
184
+ "style": "directive"
185
+ },
186
+ {
187
+ "name": "routeSegmentConfig",
188
+ "keywords": ["dynamic", "revalidate", "runtime", "preferredRegion", "maxDuration", "fetchCache", "dynamicParams"],
189
+ "style": "config"
190
+ },
191
+ {
192
+ "name": "fileConventions",
193
+ "keywords": ["page", "layout", "loading", "error", "not-found", "template", "default", "route", "middleware", "global-error"],
194
+ "style": "convention"
195
+ },
196
+ {
197
+ "name": "httpMethods",
198
+ "keywords": ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"],
199
+ "style": "method"
200
+ },
201
+ {
202
+ "name": "dataFetching",
203
+ "keywords": ["generateMetadata", "generateStaticParams", "generateViewport", "getServerSideProps", "getStaticProps", "getStaticPaths"],
204
+ "style": "function"
205
+ },
206
+ {
207
+ "name": "caching",
208
+ "keywords": ["revalidatePath", "revalidateTag", "unstable_cache", "force-cache", "no-store"],
209
+ "style": "cache"
210
+ }
211
+ ]
212
+ }
@@ -0,0 +1,119 @@
1
+ {
2
+ "language": "react",
3
+ "highlights": {
4
+ "useState": { "kind": 1, "description": "React state hook - declares component-level state" },
5
+ "useEffect": { "kind": 1, "description": "React effect hook - runs side effects after render" },
6
+ "useContext": { "kind": 1, "description": "React context hook - consumes context values" },
7
+ "useReducer": { "kind": 1, "description": "React reducer hook - complex state management" },
8
+ "useMemo": { "kind": 1, "description": "React memoization hook - caches computed values" },
9
+ "useCallback": { "kind": 1, "description": "React callback hook - memoizes callback functions" },
10
+ "useRef": { "kind": 1, "description": "React ref hook - mutable ref container" },
11
+ "useLayoutEffect": { "kind": 1, "description": "React layout effect hook - synchronous after DOM mutations" },
12
+ "useId": { "kind": 1, "description": "React ID hook - generates unique IDs" },
13
+ "useTransition": { "kind": 1, "description": "React transition hook - marks non-urgent updates" },
14
+ "useDeferredValue": { "kind": 1, "description": "React deferred value hook - defers expensive re-renders" },
15
+ "useSyncExternalStore": { "kind": 1, "description": "React external store hook - subscribes to external state" },
16
+ "useImperativeHandle": { "kind": 1, "description": "React imperative handle hook - customizes ref exposure" },
17
+ "useDebugValue": { "kind": 1, "description": "React debug hook - labels custom hooks in DevTools" },
18
+ "useInsertionEffect": { "kind": 1, "description": "React insertion effect hook - fires before DOM mutations" },
19
+ "useOptimistic": { "kind": 1, "description": "React optimistic hook - optimistic UI updates" },
20
+ "useFormStatus": { "kind": 1, "description": "React form status hook - form submission status" },
21
+ "useActionState": { "kind": 1, "description": "React action state hook - form action state updates" },
22
+ "use": { "kind": 1, "description": "React use hook - reads promises and contexts" },
23
+ "React": { "kind": 1, "description": "React library namespace" },
24
+ "ReactDOM": { "kind": 1, "description": "ReactDOM library namespace for DOM operations" },
25
+ "Component": { "kind": 1, "description": "React base class component" },
26
+ "PureComponent": { "kind": 1, "description": "React pure class component with shallow comparison" },
27
+ "Fragment": { "kind": 1, "description": "React Fragment - groups elements without wrapper node" },
28
+ "StrictMode": { "kind": 1, "description": "React StrictMode - enables development checks" },
29
+ "Suspense": { "kind": 1, "description": "React Suspense - shows fallback while loading" },
30
+ "Profiler": { "kind": 1, "description": "React Profiler - measures render performance" },
31
+ "createElement": { "kind": 1, "description": "Creates a React element" },
32
+ "cloneElement": { "kind": 1, "description": "Clones a React element with new props" },
33
+ "createContext": { "kind": 1, "description": "Creates a React context" },
34
+ "createPortal": { "kind": 1, "description": "Creates a DOM portal" },
35
+ "createRoot": { "kind": 1, "description": "Creates a React 18+ root" },
36
+ "hydrateRoot": { "kind": 1, "description": "Hydrates server-rendered content" },
37
+ "forwardRef": { "kind": 1, "description": "Forwards ref to child component" },
38
+ "lazy": { "kind": 1, "description": "Lazy-loads a component" },
39
+ "memo": { "kind": 1, "description": "Memoizes a component" },
40
+ "startTransition": { "kind": 1, "description": "Marks updates as transitions" },
41
+ "flushSync": { "kind": 1, "description": "Forces synchronous DOM updates" },
42
+ "Children": { "kind": 1, "description": "React.Children utility methods" },
43
+ "isValidElement": { "kind": 1, "description": "Checks if object is a React element" },
44
+ "import": { "kind": 0, "description": "ES module import statement" },
45
+ "export": { "kind": 0, "description": "ES module export statement" },
46
+ "default": { "kind": 0, "description": "Default export keyword" },
47
+ "from": { "kind": 0, "description": "Module specifier keyword" },
48
+ "return": { "kind": 0, "description": "Return statement" },
49
+ "const": { "kind": 2, "description": "Constant declaration" },
50
+ "let": { "kind": 2, "description": "Let variable declaration" },
51
+ "function": { "kind": 0, "description": "Function declaration" },
52
+ "class": { "kind": 0, "description": "Class declaration" },
53
+ "extends": { "kind": 0, "description": "Class inheritance keyword" },
54
+ "render": { "kind": 0, "description": "Component render method" },
55
+ "componentDidMount": { "kind": 0, "description": "Class component lifecycle - after mount" },
56
+ "componentDidUpdate": { "kind": 0, "description": "Class component lifecycle - after update" },
57
+ "componentWillUnmount": { "kind": 0, "description": "Class component lifecycle - before unmount" },
58
+ "getDerivedStateFromProps": { "kind": 0, "description": "Static lifecycle - derive state from props" },
59
+ "shouldComponentUpdate": { "kind": 0, "description": "Class component lifecycle - optimize re-renders" },
60
+ "getSnapshotBeforeUpdate": { "kind": 0, "description": "Class component lifecycle - pre-commit phase" },
61
+ "componentDidCatch": { "kind": 0, "description": "Error boundary lifecycle - catch errors" },
62
+ "getDerivedStateFromError": { "kind": 0, "description": "Error boundary lifecycle - update state on error" },
63
+ "setState": { "kind": 2, "description": "Class component state setter" },
64
+ "this.state": { "kind": 1, "description": "Class component state access" },
65
+ "this.props": { "kind": 1, "description": "Class component props access" },
66
+ "props": { "kind": 1, "description": "Component properties" },
67
+ "state": { "kind": 1, "description": "Component state" },
68
+ "ref": { "kind": 1, "description": "React ref attribute" },
69
+ "key": { "kind": 0, "description": "React list key attribute" },
70
+ "className": { "kind": 0, "description": "JSX class name attribute" },
71
+ "style": { "kind": 0, "description": "JSX inline style attribute" },
72
+ "onClick": { "kind": 0, "description": "Click event handler" },
73
+ "onChange": { "kind": 0, "description": "Change event handler" },
74
+ "onSubmit": { "kind": 0, "description": "Form submit event handler" },
75
+ "dangerouslySetInnerHTML": { "kind": 0, "description": "Unsafe HTML injection attribute" }
76
+ },
77
+ "bracketPairs": [
78
+ { "open": "(", "close": ")", "description": "Parentheses" },
79
+ { "open": "{", "close": "}", "description": "Curly braces / JSX expressions" },
80
+ { "open": "[", "close": "]", "description": "Square brackets" },
81
+ { "open": "<", "close": ">", "description": "Angle brackets / JSX tags" },
82
+ { "open": "<%", "close": "%>", "description": "JSX expression template" },
83
+ { "open": "{/*", "close": "*/}", "description": "JSX comment block" }
84
+ ],
85
+ "keywordGroups": [
86
+ {
87
+ "name": "hooks",
88
+ "keywords": ["useState", "useEffect", "useContext", "useReducer", "useMemo", "useCallback", "useRef", "useLayoutEffect", "useId", "useTransition", "useDeferredValue", "useSyncExternalStore", "useImperativeHandle", "useDebugValue", "useInsertionEffect", "useOptimistic", "useFormStatus", "useActionState", "use"]
89
+ },
90
+ {
91
+ "name": "lifecycle",
92
+ "keywords": ["componentDidMount", "componentDidUpdate", "componentWillUnmount", "getDerivedStateFromProps", "shouldComponentUpdate", "getSnapshotBeforeUpdate", "componentDidCatch", "getDerivedStateFromError", "render"]
93
+ },
94
+ {
95
+ "name": "jsx_elements",
96
+ "keywords": ["Fragment", "StrictMode", "Suspense", "Profiler", "className", "style", "key", "ref", "dangerouslySetInnerHTML", "children"]
97
+ },
98
+ {
99
+ "name": "state_management",
100
+ "keywords": ["useState", "useReducer", "setState", "dispatch", "state", "useOptimistic", "useActionState"]
101
+ },
102
+ {
103
+ "name": "effects",
104
+ "keywords": ["useEffect", "useLayoutEffect", "useInsertionEffect", "componentDidMount", "componentDidUpdate", "componentWillUnmount"]
105
+ },
106
+ {
107
+ "name": "context",
108
+ "keywords": ["createContext", "useContext", "Provider", "Consumer", "use"]
109
+ },
110
+ {
111
+ "name": "refs",
112
+ "keywords": ["useRef", "createRef", "forwardRef", "useImperativeHandle", "ref", "current"]
113
+ },
114
+ {
115
+ "name": "performance",
116
+ "keywords": ["useMemo", "useCallback", "memo", "lazy", "Suspense", "startTransition", "useTransition", "useDeferredValue", "PureComponent", "shouldComponentUpdate", "Profiler"]
117
+ }
118
+ ]
119
+ }
@@ -0,0 +1,168 @@
1
+ {
2
+ "language": "shadcn",
3
+ "highlights": {
4
+ "Accordion": { "kind": 0, "description": "Highlights shadcn/ui Accordion component" },
5
+ "AccordionItem": { "kind": 0, "description": "Highlights AccordionItem subcomponent" },
6
+ "AccordionTrigger": { "kind": 0, "description": "Highlights AccordionTrigger subcomponent" },
7
+ "AccordionContent": { "kind": 0, "description": "Highlights AccordionContent subcomponent" },
8
+ "Alert": { "kind": 0, "description": "Highlights Alert component" },
9
+ "AlertDialog": { "kind": 0, "description": "Highlights AlertDialog component" },
10
+ "AlertDialogTrigger": { "kind": 0, "description": "Highlights AlertDialogTrigger" },
11
+ "AlertDialogContent": { "kind": 0, "description": "Highlights AlertDialogContent" },
12
+ "AlertDialogAction": { "kind": 0, "description": "Highlights AlertDialogAction" },
13
+ "AlertDialogCancel": { "kind": 0, "description": "Highlights AlertDialogCancel" },
14
+ "AspectRatio": { "kind": 0, "description": "Highlights AspectRatio component" },
15
+ "Avatar": { "kind": 0, "description": "Highlights Avatar component" },
16
+ "AvatarImage": { "kind": 0, "description": "Highlights AvatarImage subcomponent" },
17
+ "AvatarFallback": { "kind": 0, "description": "Highlights AvatarFallback subcomponent" },
18
+ "Badge": { "kind": 0, "description": "Highlights Badge component" },
19
+ "Button": { "kind": 0, "description": "Highlights Button component" },
20
+ "Calendar": { "kind": 0, "description": "Highlights Calendar component" },
21
+ "Card": { "kind": 0, "description": "Highlights Card component" },
22
+ "CardHeader": { "kind": 0, "description": "Highlights CardHeader subcomponent" },
23
+ "CardTitle": { "kind": 0, "description": "Highlights CardTitle subcomponent" },
24
+ "CardContent": { "kind": 0, "description": "Highlights CardContent subcomponent" },
25
+ "CardFooter": { "kind": 0, "description": "Highlights CardFooter subcomponent" },
26
+ "Carousel": { "kind": 0, "description": "Highlights Carousel component" },
27
+ "Checkbox": { "kind": 0, "description": "Highlights Checkbox component" },
28
+ "Collapsible": { "kind": 0, "description": "Highlights Collapsible component" },
29
+ "Command": { "kind": 0, "description": "Highlights Command component" },
30
+ "CommandDialog": { "kind": 0, "description": "Highlights CommandDialog component" },
31
+ "CommandInput": { "kind": 0, "description": "Highlights CommandInput subcomponent" },
32
+ "CommandItem": { "kind": 0, "description": "Highlights CommandItem subcomponent" },
33
+ "ContextMenu": { "kind": 0, "description": "Highlights ContextMenu component" },
34
+ "Dialog": { "kind": 0, "description": "Highlights Dialog component" },
35
+ "DialogContent": { "kind": 0, "description": "Highlights DialogContent subcomponent" },
36
+ "DialogTrigger": { "kind": 0, "description": "Highlights DialogTrigger subcomponent" },
37
+ "DialogTitle": { "kind": 0, "description": "Highlights DialogTitle subcomponent" },
38
+ "Drawer": { "kind": 0, "description": "Highlights Drawer component" },
39
+ "DropdownMenu": { "kind": 0, "description": "Highlights DropdownMenu component" },
40
+ "DropdownMenuContent": { "kind": 0, "description": "Highlights DropdownMenuContent subcomponent" },
41
+ "DropdownMenuItem": { "kind": 0, "description": "Highlights DropdownMenuItem subcomponent" },
42
+ "DropdownMenuTrigger": { "kind": 0, "description": "Highlights DropdownMenuTrigger subcomponent" },
43
+ "Form": { "kind": 0, "description": "Highlights Form component" },
44
+ "FormField": { "kind": 0, "description": "Highlights FormField component" },
45
+ "FormItem": { "kind": 0, "description": "Highlights FormItem component" },
46
+ "FormLabel": { "kind": 0, "description": "Highlights FormLabel component" },
47
+ "FormControl": { "kind": 0, "description": "Highlights FormControl component" },
48
+ "FormMessage": { "kind": 0, "description": "Highlights FormMessage component" },
49
+ "HoverCard": { "kind": 0, "description": "Highlights HoverCard component" },
50
+ "Input": { "kind": 0, "description": "Highlights Input component" },
51
+ "Label": { "kind": 0, "description": "Highlights Label component" },
52
+ "Menubar": { "kind": 0, "description": "Highlights Menubar component" },
53
+ "NavigationMenu": { "kind": 0, "description": "Highlights NavigationMenu component" },
54
+ "Pagination": { "kind": 0, "description": "Highlights Pagination component" },
55
+ "Popover": { "kind": 0, "description": "Highlights Popover component" },
56
+ "PopoverContent": { "kind": 0, "description": "Highlights PopoverContent subcomponent" },
57
+ "PopoverTrigger": { "kind": 0, "description": "Highlights PopoverTrigger subcomponent" },
58
+ "Progress": { "kind": 0, "description": "Highlights Progress component" },
59
+ "RadioGroup": { "kind": 0, "description": "Highlights RadioGroup component" },
60
+ "ScrollArea": { "kind": 0, "description": "Highlights ScrollArea component" },
61
+ "Select": { "kind": 0, "description": "Highlights Select component" },
62
+ "SelectContent": { "kind": 0, "description": "Highlights SelectContent subcomponent" },
63
+ "SelectItem": { "kind": 0, "description": "Highlights SelectItem subcomponent" },
64
+ "SelectTrigger": { "kind": 0, "description": "Highlights SelectTrigger subcomponent" },
65
+ "SelectValue": { "kind": 0, "description": "Highlights SelectValue subcomponent" },
66
+ "Separator": { "kind": 0, "description": "Highlights Separator component" },
67
+ "Sheet": { "kind": 0, "description": "Highlights Sheet component" },
68
+ "SheetContent": { "kind": 0, "description": "Highlights SheetContent subcomponent" },
69
+ "SheetTrigger": { "kind": 0, "description": "Highlights SheetTrigger subcomponent" },
70
+ "Skeleton": { "kind": 0, "description": "Highlights Skeleton component" },
71
+ "Slider": { "kind": 0, "description": "Highlights Slider component" },
72
+ "Switch": { "kind": 0, "description": "Highlights Switch component" },
73
+ "Table": { "kind": 0, "description": "Highlights Table component" },
74
+ "TableHeader": { "kind": 0, "description": "Highlights TableHeader subcomponent" },
75
+ "TableBody": { "kind": 0, "description": "Highlights TableBody subcomponent" },
76
+ "TableRow": { "kind": 0, "description": "Highlights TableRow subcomponent" },
77
+ "TableCell": { "kind": 0, "description": "Highlights TableCell subcomponent" },
78
+ "TableHead": { "kind": 0, "description": "Highlights TableHead subcomponent" },
79
+ "Tabs": { "kind": 0, "description": "Highlights Tabs component" },
80
+ "TabsList": { "kind": 0, "description": "Highlights TabsList subcomponent" },
81
+ "TabsTrigger": { "kind": 0, "description": "Highlights TabsTrigger subcomponent" },
82
+ "TabsContent": { "kind": 0, "description": "Highlights TabsContent subcomponent" },
83
+ "Textarea": { "kind": 0, "description": "Highlights Textarea component" },
84
+ "Toast": { "kind": 0, "description": "Highlights Toast component" },
85
+ "Toaster": { "kind": 0, "description": "Highlights Toaster component" },
86
+ "Toggle": { "kind": 0, "description": "Highlights Toggle component" },
87
+ "ToggleGroup": { "kind": 0, "description": "Highlights ToggleGroup component" },
88
+ "Tooltip": { "kind": 0, "description": "Highlights Tooltip component" },
89
+ "TooltipProvider": { "kind": 0, "description": "Highlights TooltipProvider component" },
90
+ "TooltipTrigger": { "kind": 0, "description": "Highlights TooltipTrigger subcomponent" },
91
+ "TooltipContent": { "kind": 0, "description": "Highlights TooltipContent subcomponent" },
92
+ "cn": { "kind": 1, "description": "Highlights cn() utility function calls for Tailwind class merging" },
93
+ "cva": { "kind": 1, "description": "Highlights cva() class-variance-authority function calls" },
94
+ "buttonVariants": { "kind": 1, "description": "Highlights buttonVariants function reference" },
95
+ "badgeVariants": { "kind": 1, "description": "Highlights badgeVariants function reference" },
96
+ "useToast": { "kind": 1, "description": "Highlights useToast hook call" },
97
+ "useFormField": { "kind": 1, "description": "Highlights useFormField hook call" },
98
+ "variant": { "kind": 2, "description": "Highlights variant prop assignments" },
99
+ "size": { "kind": 2, "description": "Highlights size prop assignments" },
100
+ "asChild": { "kind": 2, "description": "Highlights asChild Radix UI prop" },
101
+ "--background": { "kind": 2, "description": "Highlights --background CSS variable reference" },
102
+ "--foreground": { "kind": 2, "description": "Highlights --foreground CSS variable reference" },
103
+ "--primary": { "kind": 2, "description": "Highlights --primary CSS variable reference" },
104
+ "--secondary": { "kind": 2, "description": "Highlights --secondary CSS variable reference" },
105
+ "--muted": { "kind": 2, "description": "Highlights --muted CSS variable reference" },
106
+ "--accent": { "kind": 2, "description": "Highlights --accent CSS variable reference" },
107
+ "--destructive": { "kind": 2, "description": "Highlights --destructive CSS variable reference" },
108
+ "--border": { "kind": 2, "description": "Highlights --border CSS variable reference" },
109
+ "--input": { "kind": 2, "description": "Highlights --input CSS variable reference" },
110
+ "--ring": { "kind": 2, "description": "Highlights --ring CSS variable reference" },
111
+ "--radius": { "kind": 2, "description": "Highlights --radius CSS variable reference" },
112
+ "--card": { "kind": 2, "description": "Highlights --card CSS variable reference" },
113
+ "--popover": { "kind": 2, "description": "Highlights --popover CSS variable reference" }
114
+ },
115
+ "bracketPairs": [
116
+ { "open": "(", "close": ")" },
117
+ { "open": "[", "close": "]" },
118
+ { "open": "{", "close": "}" },
119
+ { "open": "<", "close": ">" }
120
+ ],
121
+ "keywordGroups": [
122
+ {
123
+ "name": "ui_components",
124
+ "keywords": [
125
+ "Accordion", "Alert", "AlertDialog", "AspectRatio", "Avatar",
126
+ "Badge", "Button", "Calendar", "Card", "Carousel",
127
+ "Checkbox", "Collapsible", "Command", "ContextMenu",
128
+ "DataTable", "DatePicker", "Dialog", "Drawer", "DropdownMenu",
129
+ "HoverCard", "Menubar", "NavigationMenu", "Pagination",
130
+ "Popover", "Progress", "RadioGroup", "ScrollArea",
131
+ "Select", "Separator", "Sheet", "Skeleton", "Slider",
132
+ "Switch", "Table", "Tabs", "Textarea", "Toast", "Toaster",
133
+ "Toggle", "ToggleGroup", "Tooltip"
134
+ ],
135
+ "highlightKind": 0
136
+ },
137
+ {
138
+ "name": "form_components",
139
+ "keywords": [
140
+ "Form", "FormField", "FormItem", "FormLabel",
141
+ "FormControl", "FormDescription", "FormMessage",
142
+ "Input", "Textarea", "Select", "Checkbox",
143
+ "RadioGroup", "Switch", "Slider", "Calendar"
144
+ ],
145
+ "highlightKind": 0
146
+ },
147
+ {
148
+ "name": "layout_components",
149
+ "keywords": [
150
+ "Card", "CardHeader", "CardTitle", "CardDescription",
151
+ "CardContent", "CardFooter", "Separator", "ScrollArea",
152
+ "AspectRatio", "Collapsible", "CollapsibleContent",
153
+ "CollapsibleTrigger", "Tabs", "TabsList", "TabsTrigger",
154
+ "TabsContent"
155
+ ],
156
+ "highlightKind": 0
157
+ },
158
+ {
159
+ "name": "utility_functions",
160
+ "keywords": [
161
+ "cn", "cva", "buttonVariants", "badgeVariants",
162
+ "useToast", "toast", "useFormField",
163
+ "clsx", "twMerge"
164
+ ],
165
+ "highlightKind": 1
166
+ }
167
+ ]
168
+ }