revotech-ui-kit 0.0.2 → 0.0.3-beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (307) hide show
  1. package/.github/workflows/deploy-storybook.yml +107 -0
  2. package/.storybook/main.ts +3 -3
  3. package/assume_role.sh +18 -0
  4. package/dist/183c6c38.js +1 -0
  5. package/dist/f28fd4b1.js +1 -0
  6. package/dist/index.ts +1 -0
  7. package/dist/public/globals.css +2215 -0
  8. package/dist/public/tailwind-lib.css +115 -0
  9. package/dist/src/assets/icons/arrows.icon.js +20 -0
  10. package/dist/src/assets/icons/arrows.icon.js.map +1 -0
  11. package/dist/src/assets/icons/index.js +4 -0
  12. package/dist/src/assets/icons/index.js.map +1 -0
  13. package/dist/src/assets/icons/search.icon.js +19 -0
  14. package/dist/src/assets/icons/search.icon.js.map +1 -0
  15. package/dist/src/assets/icons/tick.icon.js +20 -0
  16. package/dist/src/assets/icons/tick.icon.js.map +1 -0
  17. package/dist/src/components/atoms/alert/alert-description.js +18 -0
  18. package/dist/src/components/atoms/alert/alert-description.js.map +1 -0
  19. package/dist/src/components/atoms/alert/alert-title.js +20 -0
  20. package/dist/src/components/atoms/alert/alert-title.js.map +1 -0
  21. package/dist/src/components/atoms/alert/alert.atom.js +55 -0
  22. package/dist/src/components/atoms/alert/alert.atom.js.map +1 -0
  23. package/dist/src/components/atoms/alert/alert.stories.js +62 -0
  24. package/dist/src/components/atoms/alert/alert.stories.js.map +1 -0
  25. package/dist/src/components/atoms/alert/alert.styles.js +21 -0
  26. package/dist/src/components/atoms/alert/alert.styles.js.map +1 -0
  27. package/dist/src/components/atoms/alert/alert.types.js +2 -0
  28. package/dist/src/components/atoms/alert/alert.types.js.map +1 -0
  29. package/dist/src/components/atoms/badge/badge.atom.js +43 -0
  30. package/dist/src/components/atoms/badge/badge.atom.js.map +1 -0
  31. package/dist/src/components/atoms/badge/badge.stories.js +110 -0
  32. package/dist/src/components/atoms/badge/badge.stories.js.map +1 -0
  33. package/dist/src/components/atoms/badge/badge.style.js +17 -0
  34. package/dist/src/components/atoms/badge/badge.style.js.map +1 -0
  35. package/dist/src/components/atoms/badge/badge.type.js +2 -0
  36. package/dist/src/components/atoms/badge/badge.type.js.map +1 -0
  37. package/dist/src/components/atoms/button/button.atom.js +67 -0
  38. package/dist/src/components/atoms/button/button.atom.js.map +1 -0
  39. package/dist/src/components/atoms/button/button.stories.js +204 -0
  40. package/dist/src/components/atoms/button/button.stories.js.map +1 -0
  41. package/dist/src/components/atoms/button/button.style.js +24 -0
  42. package/dist/src/components/atoms/button/button.style.js.map +1 -0
  43. package/dist/src/components/atoms/button/button.type.js +2 -0
  44. package/dist/src/components/atoms/button/button.type.js.map +1 -0
  45. package/dist/src/components/atoms/card/card-content.js +17 -0
  46. package/dist/src/components/atoms/card/card-content.js.map +1 -0
  47. package/dist/src/components/atoms/card/card-description.js +17 -0
  48. package/dist/src/components/atoms/card/card-description.js.map +1 -0
  49. package/dist/src/components/atoms/card/card-footer.js +17 -0
  50. package/dist/src/components/atoms/card/card-footer.js.map +1 -0
  51. package/dist/src/components/atoms/card/card-header.js +17 -0
  52. package/dist/src/components/atoms/card/card-header.js.map +1 -0
  53. package/dist/src/components/atoms/card/card-title.js +17 -0
  54. package/dist/src/components/atoms/card/card-title.js.map +1 -0
  55. package/dist/src/components/atoms/card/card.atom.js +25 -0
  56. package/dist/src/components/atoms/card/card.atom.js.map +1 -0
  57. package/dist/src/components/atoms/card/card.stories.js +136 -0
  58. package/dist/src/components/atoms/card/card.stories.js.map +1 -0
  59. package/dist/src/components/atoms/checkbox/checkbox.atom.js +87 -0
  60. package/dist/src/components/atoms/checkbox/checkbox.atom.js.map +1 -0
  61. package/dist/src/components/atoms/checkbox/checkbox.stories.js +244 -0
  62. package/dist/src/components/atoms/checkbox/checkbox.stories.js.map +1 -0
  63. package/dist/src/components/atoms/checkbox/checkbox.style.js +3 -0
  64. package/dist/src/components/atoms/checkbox/checkbox.style.js.map +1 -0
  65. package/dist/src/components/atoms/checkbox/checkbox.type.js +2 -0
  66. package/dist/src/components/atoms/checkbox/checkbox.type.js.map +1 -0
  67. package/dist/src/components/atoms/combo-box/combo-box-input.js +47 -0
  68. package/dist/src/components/atoms/combo-box/combo-box-input.js.map +1 -0
  69. package/dist/src/components/atoms/combo-box/combo-box-item.js +85 -0
  70. package/dist/src/components/atoms/combo-box/combo-box-item.js.map +1 -0
  71. package/dist/src/components/atoms/combo-box/combo-box-list.js +67 -0
  72. package/dist/src/components/atoms/combo-box/combo-box-list.js.map +1 -0
  73. package/dist/src/components/atoms/combo-box/combo-box.atom.js +199 -0
  74. package/dist/src/components/atoms/combo-box/combo-box.atom.js.map +1 -0
  75. package/dist/src/components/atoms/combo-box/combo-box.stories.js +86 -0
  76. package/dist/src/components/atoms/combo-box/combo-box.stories.js.map +1 -0
  77. package/dist/src/components/atoms/command-empty/command-empty.atom.js +54 -0
  78. package/dist/src/components/atoms/command-empty/command-empty.atom.js.map +1 -0
  79. package/dist/src/components/atoms/command-group/command-group.atom.js +71 -0
  80. package/dist/src/components/atoms/command-group/command-group.atom.js.map +1 -0
  81. package/dist/src/components/atoms/command-item/command-item.atom.js +80 -0
  82. package/dist/src/components/atoms/command-item/command-item.atom.js.map +1 -0
  83. package/dist/src/components/atoms/command-list/command-list.atom.js +36 -0
  84. package/dist/src/components/atoms/command-list/command-list.atom.js.map +1 -0
  85. package/dist/src/components/atoms/command-separator/command-separator.atom.js +52 -0
  86. package/dist/src/components/atoms/command-separator/command-separator.atom.js.map +1 -0
  87. package/dist/src/components/atoms/dialog/dialog-close.js +47 -0
  88. package/dist/src/components/atoms/dialog/dialog-close.js.map +1 -0
  89. package/dist/src/components/atoms/dialog/dialog-content.js +72 -0
  90. package/dist/src/components/atoms/dialog/dialog-content.js.map +1 -0
  91. package/dist/src/components/atoms/dialog/dialog-footer.js +22 -0
  92. package/dist/src/components/atoms/dialog/dialog-footer.js.map +1 -0
  93. package/dist/src/components/atoms/dialog/dialog-header.js +40 -0
  94. package/dist/src/components/atoms/dialog/dialog-header.js.map +1 -0
  95. package/dist/src/components/atoms/dialog/dialog-overly.js +20 -0
  96. package/dist/src/components/atoms/dialog/dialog-overly.js.map +1 -0
  97. package/dist/src/components/atoms/dialog/dialog-trigger.js +54 -0
  98. package/dist/src/components/atoms/dialog/dialog-trigger.js.map +1 -0
  99. package/dist/src/components/atoms/dialog/dialog.atom.js +79 -0
  100. package/dist/src/components/atoms/dialog/dialog.atom.js.map +1 -0
  101. package/dist/src/components/atoms/dialog/dialog.stories.js +88 -0
  102. package/dist/src/components/atoms/dialog/dialog.stories.js.map +1 -0
  103. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-checkbox-Item.js +117 -0
  104. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-checkbox-Item.js.map +1 -0
  105. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-content.js +81 -0
  106. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-content.js.map +1 -0
  107. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-group.js +71 -0
  108. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-group.js.map +1 -0
  109. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-item.js +80 -0
  110. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-item.js.map +1 -0
  111. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-radio-item.js +118 -0
  112. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-radio-item.js.map +1 -0
  113. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-seperator.js +52 -0
  114. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-seperator.js.map +1 -0
  115. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-shortcut.js +20 -0
  116. package/dist/src/components/atoms/dropdownMenu/dropdown-menu-shortcut.js.map +1 -0
  117. package/dist/src/components/atoms/dropdownMenu/dropdown-menu.atom.js +79 -0
  118. package/dist/src/components/atoms/dropdownMenu/dropdown-menu.atom.js.map +1 -0
  119. package/dist/src/components/atoms/dropdownMenu/dropdownMenu.stories.js +211 -0
  120. package/dist/src/components/atoms/dropdownMenu/dropdownMenu.stories.js.map +1 -0
  121. package/dist/src/components/atoms/dropdownMenu/dropdownMenu.style.js +4 -0
  122. package/dist/src/components/atoms/dropdownMenu/dropdownMenu.style.js.map +1 -0
  123. package/dist/src/components/atoms/index.js +14 -0
  124. package/dist/src/components/atoms/index.js.map +1 -0
  125. package/dist/src/components/atoms/input/input.atom.js +93 -0
  126. package/dist/src/components/atoms/input/input.atom.js.map +1 -0
  127. package/dist/src/components/atoms/input/input.stories.js +382 -0
  128. package/dist/src/components/atoms/input/input.stories.js.map +1 -0
  129. package/dist/src/components/atoms/input/input.styles.js +2 -0
  130. package/dist/src/components/atoms/input/input.styles.js.map +1 -0
  131. package/dist/src/components/atoms/input/input.type.js +2 -0
  132. package/dist/src/components/atoms/input/input.type.js.map +1 -0
  133. package/dist/src/components/atoms/label/label.atom.js +68 -0
  134. package/dist/src/components/atoms/label/label.atom.js.map +1 -0
  135. package/dist/src/components/atoms/label/label.stories.js +85 -0
  136. package/dist/src/components/atoms/label/label.stories.js.map +1 -0
  137. package/dist/src/components/atoms/label/label.style.js +3 -0
  138. package/dist/src/components/atoms/label/label.style.js.map +1 -0
  139. package/dist/src/components/atoms/popover/popover-content.js +64 -0
  140. package/dist/src/components/atoms/popover/popover-content.js.map +1 -0
  141. package/dist/src/components/atoms/popover/popover-trigger.js +51 -0
  142. package/dist/src/components/atoms/popover/popover-trigger.js.map +1 -0
  143. package/dist/src/components/atoms/popover/popover.atom.js +40 -0
  144. package/dist/src/components/atoms/popover/popover.atom.js.map +1 -0
  145. package/dist/src/components/atoms/popover/popover.stories.js +69 -0
  146. package/dist/src/components/atoms/popover/popover.stories.js.map +1 -0
  147. package/dist/src/components/atoms/popover/popover.style.js +21 -0
  148. package/dist/src/components/atoms/popover/popover.style.js.map +1 -0
  149. package/dist/src/components/atoms/popover/popover.types.js +4 -0
  150. package/dist/src/components/atoms/popover/popover.types.js.map +1 -0
  151. package/dist/src/components/atoms/toggle/defs.js +30 -0
  152. package/dist/src/components/atoms/toggle/defs.js.map +1 -0
  153. package/dist/src/components/atoms/toggle/toggle.atom.js +72 -0
  154. package/dist/src/components/atoms/toggle/toggle.atom.js.map +1 -0
  155. package/dist/src/components/atoms/toggle/toggle.stories.js +189 -0
  156. package/dist/src/components/atoms/toggle/toggle.stories.js.map +1 -0
  157. package/dist/src/components/atoms/toggle/toggle.style.js +19 -0
  158. package/dist/src/components/atoms/toggle/toggle.style.js.map +1 -0
  159. package/dist/src/components/command/command.js +410 -0
  160. package/dist/src/components/command/command.js.map +1 -0
  161. package/dist/src/components/command/command.stories.js +153 -0
  162. package/dist/src/components/command/command.stories.js.map +1 -0
  163. package/dist/src/components/index.js +3 -0
  164. package/dist/src/components/index.js.map +1 -0
  165. package/dist/src/components/molecules/command/command.molecules.js +27 -0
  166. package/dist/src/components/molecules/command/command.molecules.js.map +1 -0
  167. package/dist/src/components/molecules/command-input/command-input.atom.js +127 -0
  168. package/dist/src/components/molecules/command-input/command-input.atom.js.map +1 -0
  169. package/dist/src/components/molecules/dropdownMenu/dropdownMenu.molecules.js +2 -0
  170. package/dist/src/components/molecules/dropdownMenu/dropdownMenu.molecules.js.map +1 -0
  171. package/dist/src/components/molecules/index.js +2 -0
  172. package/dist/src/components/molecules/index.js.map +1 -0
  173. package/dist/src/helpers/base-element.js +64 -0
  174. package/dist/src/helpers/base-element.js.map +1 -0
  175. package/dist/src/helpers/index.js +4 -0
  176. package/dist/src/helpers/index.js.map +1 -0
  177. package/dist/src/helpers/mouse-conroller.helper.js +33 -0
  178. package/dist/src/helpers/mouse-conroller.helper.js.map +1 -0
  179. package/dist/src/helpers/style.helpers.js +6 -0
  180. package/dist/src/helpers/style.helpers.js.map +1 -0
  181. package/dist/src/index.js +2 -0
  182. package/dist/src/index.js.map +1 -0
  183. package/dist/src/interfaces/actionable.interface.js +2 -0
  184. package/dist/src/interfaces/actionable.interface.js.map +1 -0
  185. package/dist/src/interfaces/atomic.interface.js +2 -0
  186. package/dist/src/interfaces/atomic.interface.js.map +1 -0
  187. package/dist/src/interfaces/changeable.interface.js +2 -0
  188. package/dist/src/interfaces/changeable.interface.js.map +1 -0
  189. package/dist/src/interfaces/child-support-atomic.interface.js +2 -0
  190. package/dist/src/interfaces/child-support-atomic.interface.js.map +1 -0
  191. package/dist/src/interfaces/index.js +7 -0
  192. package/dist/src/interfaces/index.js.map +1 -0
  193. package/dist/src/interfaces/intractable.interface.js +2 -0
  194. package/dist/src/interfaces/intractable.interface.js.map +1 -0
  195. package/dist/src/interfaces/variant.interface.js +2 -0
  196. package/dist/src/interfaces/variant.interface.js.map +1 -0
  197. package/dist/src/lib/index.js +2 -0
  198. package/dist/src/lib/index.js.map +1 -0
  199. package/dist/src/lib/next/next.lib.js +2 -0
  200. package/dist/src/lib/next/next.lib.js.map +1 -0
  201. package/dist/src/lib/react/react.lib.js +16 -0
  202. package/dist/src/lib/react/react.lib.js.map +1 -0
  203. package/dist/src/lib/tw-styles.js +1956 -0
  204. package/dist/src/lib/tw-styles.js.map +1 -0
  205. package/dist/src/styles/index.js +2 -0
  206. package/dist/src/styles/index.js.map +1 -0
  207. package/dist/src/styles/tw.styles.js +2218 -0
  208. package/dist/src/styles/tw.styles.js.map +1 -0
  209. package/dist/src/wc-ui-app.js +88 -0
  210. package/dist/src/wc-ui-app.js.map +1 -0
  211. package/dist/sw.js +2 -0
  212. package/dist/sw.js.map +1 -0
  213. package/dist/test/wc-ui-app.test.js +18 -0
  214. package/dist/test/wc-ui-app.test.js.map +1 -0
  215. package/dist/tsconfig.tsbuildinfo +1 -0
  216. package/dist/workbox-a523fd56.js +2 -0
  217. package/dist/workbox-a523fd56.js.map +1 -0
  218. package/index.html +18 -66
  219. package/package.json +41 -18
  220. package/rollup.config.js +25 -13
  221. package/src/assets/icons/arrows.icon.ts +20 -0
  222. package/src/assets/icons/index.ts +3 -0
  223. package/src/assets/icons/search.icon.ts +19 -0
  224. package/src/assets/icons/tick.icon.ts +20 -0
  225. package/src/chai-custom.d.ts +0 -0
  226. package/src/components/atoms/alert/alert-description.ts +15 -0
  227. package/src/components/atoms/alert/alert-title.ts +17 -0
  228. package/src/components/atoms/alert/alert.atom.ts +51 -0
  229. package/src/components/atoms/alert/alert.stories.ts +71 -0
  230. package/src/components/atoms/alert/alert.styles.ts +21 -0
  231. package/src/components/atoms/alert/alert.types.ts +1 -0
  232. package/src/components/atoms/badge/badge.atom.ts +40 -0
  233. package/src/components/atoms/badge/badge.stories.ts +118 -0
  234. package/src/components/atoms/badge/badge.style.ts +24 -0
  235. package/src/components/atoms/badge/badge.type.ts +7 -0
  236. package/src/components/atoms/button/button.atom.ts +22 -8
  237. package/src/components/atoms/button/button.stories.ts +177 -139
  238. package/src/components/atoms/card/card-content.ts +15 -0
  239. package/src/components/atoms/card/card-description.ts +15 -0
  240. package/src/components/atoms/card/card-footer.ts +15 -0
  241. package/src/components/atoms/card/card-header.ts +15 -0
  242. package/src/components/atoms/card/card-title.ts +15 -0
  243. package/src/components/atoms/card/card.atom.ts +31 -0
  244. package/src/components/atoms/card/card.stories.ts +149 -0
  245. package/src/components/atoms/checkbox/checkbox.atom.ts +30 -16
  246. package/src/components/atoms/checkbox/checkbox.stories.ts +292 -25
  247. package/src/components/atoms/checkbox/checkbox.style.ts +5 -0
  248. package/src/components/atoms/checkbox/checkbox.type.ts +24 -0
  249. package/src/components/atoms/combo-box/combo-box-input.ts +33 -0
  250. package/src/components/atoms/combo-box/combo-box-item.ts +59 -0
  251. package/src/components/atoms/combo-box/combo-box-list.ts +57 -0
  252. package/src/components/atoms/combo-box/combo-box.atom.ts +187 -0
  253. package/src/components/atoms/combo-box/combo-box.stories.ts +95 -0
  254. package/src/components/atoms/command-empty/command-empty.atom.ts +2 -2
  255. package/src/components/atoms/command-group/command-group.atom.ts +1 -1
  256. package/src/components/atoms/command-item/command-item.atom.ts +2 -2
  257. package/src/components/atoms/command-list/command-list.atom.ts +2 -2
  258. package/src/components/atoms/command-separator/command-separator.atom.ts +2 -2
  259. package/src/components/atoms/dialog/dialog-close.ts +50 -0
  260. package/src/components/atoms/dialog/dialog-content.ts +71 -0
  261. package/src/components/atoms/dialog/dialog-footer.ts +22 -0
  262. package/src/components/atoms/dialog/dialog-header.ts +36 -0
  263. package/src/components/atoms/dialog/dialog-overly.ts +20 -0
  264. package/src/components/atoms/dialog/dialog-trigger.ts +54 -0
  265. package/src/components/atoms/dialog/dialog.atom.ts +3 -226
  266. package/src/components/atoms/dialog/dialog.stories.ts +11 -4
  267. package/src/components/atoms/dropdownMenu/dropdown-menu-checkbox-Item.ts +106 -0
  268. package/src/components/atoms/dropdownMenu/dropdown-menu-content.ts +79 -0
  269. package/src/components/atoms/dropdownMenu/dropdown-menu-group.ts +60 -0
  270. package/src/components/atoms/dropdownMenu/dropdown-menu-item.ts +74 -0
  271. package/src/components/atoms/dropdownMenu/dropdown-menu-radio-item.ts +107 -0
  272. package/src/components/atoms/dropdownMenu/dropdown-menu-seperator.ts +44 -0
  273. package/src/components/atoms/dropdownMenu/dropdown-menu-shortcut.ts +17 -0
  274. package/src/components/atoms/dropdownMenu/dropdown-menu.atom.ts +84 -0
  275. package/src/components/atoms/dropdownMenu/dropdownMenu.stories.ts +220 -0
  276. package/src/components/atoms/dropdownMenu/dropdownMenu.style.ts +7 -0
  277. package/src/components/atoms/index.ts +3 -0
  278. package/src/components/atoms/input/input.atom.ts +64 -10
  279. package/src/components/atoms/input/input.stories.ts +426 -64
  280. package/src/components/atoms/input/input.styles.ts +2 -0
  281. package/src/components/atoms/input/input.type.ts +42 -8
  282. package/src/components/atoms/label/label.atom.ts +31 -7
  283. package/src/components/atoms/label/label.stories.ts +87 -3
  284. package/src/components/atoms/popover/popover-content.ts +58 -0
  285. package/src/components/atoms/popover/popover-trigger.ts +50 -0
  286. package/src/components/atoms/popover/popover.atom.ts +34 -0
  287. package/src/components/atoms/popover/popover.stories.ts +79 -0
  288. package/src/components/atoms/popover/popover.style.ts +25 -0
  289. package/src/components/atoms/popover/popover.types.ts +3 -0
  290. package/src/components/atoms/toggle/defs.ts +29 -0
  291. package/src/components/atoms/toggle/toggle.atom.ts +58 -0
  292. package/src/components/atoms/toggle/toggle.stories.ts +204 -0
  293. package/src/components/atoms/toggle/toggle.style.ts +22 -0
  294. package/src/components/molecules/command/command.molecules.ts +2 -2
  295. package/src/components/molecules/command-input/command-input.atom.ts +3 -3
  296. package/src/components/molecules/dropdownMenu/dropdownMenu.molecules.ts +0 -0
  297. package/src/globals.css +475 -66
  298. package/src/helpers/base-element.ts +79 -0
  299. package/src/helpers/index.ts +1 -0
  300. package/src/index.ts +1 -0
  301. package/src/lib/react/react.lib.ts +18 -0
  302. package/src/lib/tw-styles.ts +1957 -0
  303. package/src/styles/tw.styles.ts +2051 -1699
  304. package/src/tailwind-lib.css +26 -6
  305. package/tailwind.config.js +174 -38
  306. package/tsconfig.json +6 -1
  307. package/src/components/popover.ts +0 -247
@@ -0,0 +1,107 @@
1
+ import { LitElement, html, css, nothing } from 'lit';
2
+ import { property, customElement } from 'lit/decorators.js';
3
+ import { cn } from '../../../helpers';
4
+ import { TWStyles } from '../../../styles';
5
+
6
+ @customElement('rtg-dropdown-menu-radio-item')
7
+ export class DropdownMenuRadioItem extends LitElement {
8
+ @property({ type: String }) _id = '';
9
+
10
+ @property({ attribute: 'aria-hidden', type: String }) _hidden = '';
11
+
12
+ private static _counter = 0;
13
+
14
+ static styles = [
15
+ css`
16
+ .icon-space {
17
+ width: 16px; /* Fixed width to reserve space for the check icon */
18
+ height: 16px;
19
+ display: inline-block;
20
+ }
21
+ `,
22
+ TWStyles,
23
+ ];
24
+
25
+ private get identifier() {
26
+ if (this._id !== '') {
27
+ return this._id;
28
+ }
29
+ const parent =
30
+ this.parentElement?.shadowRoot?.querySelector('div[rtgcmd-group]');
31
+ if (parent) {
32
+ this._id = `${parent.getAttribute(
33
+ 'id'
34
+ )}li${DropdownMenuRadioItem._counter++}`;
35
+ } else {
36
+ this._id = `rtgcmdrxgxli${DropdownMenuRadioItem._counter++}`;
37
+ }
38
+ return this._id;
39
+ }
40
+
41
+ @property({ attribute: 'data-value', type: String })
42
+ public get value() {
43
+ return this.textContent?.trim() || '';
44
+ }
45
+
46
+ @property({ type: Boolean }) selected = false;
47
+
48
+ private handleMouseEvent(e: Event) {
49
+ if (e.type === 'mouseover' || e.type === 'focus') {
50
+ this.selected = true;
51
+ }
52
+ if (e.type === 'mouseleave') {
53
+ this.selected = false;
54
+ }
55
+ }
56
+
57
+ @property({ type: Boolean }) checked = false; // Added `checked` state
58
+ @property({ type: Boolean }) disabled = false;
59
+
60
+ toggleChecked() {
61
+ this.checked = !this.checked; // Toggle the checked state
62
+ }
63
+
64
+ render() {
65
+ return html`
66
+ <div
67
+ class="${cn(
68
+ 'relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none aria-selected:bg-accent aria-selected:text-accent-foreground',
69
+ this.disabled ? 'pointer-events-none opacity-50' : '',
70
+ this.className
71
+ )}"
72
+ @click=${this.toggleChecked}
73
+ @mouseover="${this.handleMouseEvent}"
74
+ @mouseleave="${this.handleMouseEvent}"
75
+ @focus="${this.handleMouseEvent}"
76
+ rtgcmd-item
77
+ role="option"
78
+ aria-selected="${this.selected}"
79
+ data-selected="${this.selected}"
80
+ data-value="${this.value}"
81
+ id="${this.identifier}"
82
+ aria-hidden="${this.hidden}"
83
+ >
84
+ <span
85
+ class="icon-space absolute left-2 flex items-center justify-center"
86
+ >
87
+ ${this.checked
88
+ ? html`
89
+ <svg
90
+ xmlns="http://www.w3.org/2000/svg"
91
+ width="24"
92
+ height="24"
93
+ viewBox="0 0 15 15"
94
+ >
95
+ <path
96
+ fill="currentColor"
97
+ d="M9.875 7.5a2.375 2.375 0 1 1-4.75 0a2.375 2.375 0 0 1 4.75 0"
98
+ />
99
+ </svg>
100
+ `
101
+ : nothing}
102
+ </span>
103
+ <slot></slot>
104
+ </div>
105
+ `;
106
+ }
107
+ }
@@ -0,0 +1,44 @@
1
+ import { LitElement, html, css, nothing } from 'lit';
2
+ import { property, customElement } from 'lit/decorators.js';
3
+ import { cn } from '../../../helpers';
4
+ import { TWStyles } from '../../../styles';
5
+
6
+ @customElement('rtg-dropdown-menu-separator')
7
+ export class DropdownMenuSeparator extends LitElement {
8
+ @property({ type: String }) _id = '';
9
+
10
+ @property({ attribute: 'aria-hidden', type: String }) _hidden = '';
11
+
12
+ private static _counter = 0;
13
+
14
+ static styles = [css``, TWStyles];
15
+
16
+ private get identifier() {
17
+ if (this._id !== '') {
18
+ return this._id;
19
+ }
20
+ const parent =
21
+ this.parentElement?.shadowRoot?.querySelector('div[rtgcmd-list]');
22
+ if (parent) {
23
+ this._id = `${parent.getAttribute(
24
+ 'id'
25
+ )}s${DropdownMenuSeparator._counter++}`;
26
+ } else {
27
+ this._id = `rtgcmdrxlxs${DropdownMenuSeparator._counter++}`;
28
+ }
29
+ return this._id;
30
+ }
31
+
32
+ render() {
33
+ return html`${this._hidden === 'true'
34
+ ? nothing
35
+ : html`
36
+ <div
37
+ class="${cn('-mx-1 h-px bg-border', this.className)}"
38
+ rtgcmd-separator
39
+ role="separator"
40
+ id="${this.identifier}"
41
+ ></div>
42
+ `}`;
43
+ }
44
+ }
@@ -0,0 +1,17 @@
1
+ import { LitElement, html, css, nothing } from 'lit';
2
+ import { property, customElement } from 'lit/decorators.js';
3
+ import { cn } from '../../../helpers';
4
+ import { TWStyles } from '../../../styles';
5
+
6
+ @customElement('rtg-dropdown-menu-shortcut')
7
+ export class DropdownMenuShortcut extends LitElement {
8
+ static styles = [css``, TWStyles];
9
+
10
+ render() {
11
+ return html`
12
+ <span class="${cn('ml-auto text-xs font-semibold', this.className)}">
13
+ <slot></slot>
14
+ </span>
15
+ `;
16
+ }
17
+ }
@@ -0,0 +1,84 @@
1
+ import { LitElement, html, css, nothing, PropertyValues } from 'lit';
2
+ import {
3
+ property,
4
+ customElement,
5
+ state,
6
+ queryAssignedElements,
7
+ } from 'lit/decorators.js';
8
+ import { cn } from '../../../helpers';
9
+ import { TWStyles } from '../../../styles';
10
+ import './dropdown-menu-content';
11
+ import { DropdownMenuContent } from './dropdown-menu-content';
12
+ import './dropdown-menu-item';
13
+
14
+ @customElement('rtg-dropdown-menu')
15
+ export class DropdownMenu extends LitElement {
16
+ static styles = [css``, TWStyles];
17
+
18
+ @state() isOpen = false;
19
+
20
+ connectedCallback() {
21
+ super.connectedCallback();
22
+ document.addEventListener('click', this.handleClickOutside);
23
+ }
24
+
25
+ disconnectedCallback() {
26
+ document.removeEventListener('click', this.handleClickOutside);
27
+ super.disconnectedCallback();
28
+ }
29
+
30
+ toggleDropdown(e: MouseEvent) {
31
+ e.stopPropagation(); // Prevent closing immediately on button click
32
+ this.isOpen = !this.isOpen;
33
+ }
34
+
35
+ handleClickOutside = (e: MouseEvent) => {
36
+ const target = e.target as HTMLElement;
37
+ // Check if the clicked element is outside the dropdown
38
+ if (!this.shadowRoot?.contains(target)) {
39
+ this.isOpen = false; // Close the dropdown
40
+ }
41
+ };
42
+
43
+ private get _content(): DropdownMenuContent | null {
44
+ const slot = this.shadowRoot?.querySelector('slot');
45
+ const children = slot?.assignedElements();
46
+ if (children) {
47
+ for (let index = 0; index < children.length; index++) {
48
+ if (children[index] instanceof DropdownMenuContent) {
49
+ return children[index] as DropdownMenuContent;
50
+ }
51
+ }
52
+ }
53
+
54
+ return null;
55
+ }
56
+
57
+ protected updated(_changedProperties: PropertyValues): void {
58
+ super.updated(_changedProperties);
59
+ const content = this._content;
60
+ if (content) {
61
+ content.dataset.state = this.isOpen ? 'open' : 'close';
62
+ }
63
+ }
64
+
65
+ render() {
66
+ return html`
67
+ <div >
68
+ <div>
69
+ <button data-ignore-outside-click class="inline-flex items-center justify-center whitespace-nowrap rounded-sm text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 bg-secondary text-secondary-foreground hover:bg-secondary/80 h-8 px-4 py-2" @click="${
70
+ this.toggleDropdown
71
+ }">
72
+ open
73
+ <buttom>
74
+ </div>
75
+ <div
76
+ class="flex h-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground border shadow-md"
77
+ style="display: ${this.isOpen ? 'block' : 'none'};width:260px"
78
+ >
79
+ <slot></slot>
80
+ </div>
81
+ </div>
82
+ `;
83
+ }
84
+ }
@@ -0,0 +1,220 @@
1
+ import { html } from 'lit';
2
+ // eslint-disable-next-line import/extensions
3
+ import './dropdown-menu-content';
4
+ import './dropdown-menu-group';
5
+ import './dropdown-menu-item';
6
+ import './dropdown-menu-seperator';
7
+ import './dropdown-menu.atom';
8
+ import '../button/button.atom';
9
+ import './dropdown-menu-checkbox-Item';
10
+ import './dropdown-menu-radio-item';
11
+ import './dropdown-menu-shortcut';
12
+ import { Meta, StoryObj, StoryFn } from '@storybook/web-components';
13
+
14
+ export default {
15
+ component: 'components/atoms/dropdownMenu',
16
+ tags: ['autodocs'],
17
+ } as Meta;
18
+
19
+ //type Story = StoryObj;
20
+
21
+ const TemplateDropdownMenu: StoryFn = () =>
22
+ html`
23
+ <rtg-dropdown-menu class="w-full max-w-md">
24
+ <rtg-dropdown-menu-content>
25
+ <rtg-dropdown-menu-shortcut style="margin-left:8px"
26
+ >My Account</rtg-dropdown-menu-shortcut
27
+ >
28
+ <rtg-dropdown-menu-separator></rtg-dropdown-menu-separator>
29
+ <rtg-dropdown-menu-group>
30
+ <rtg-dropdown-menu-item>
31
+ <svg
32
+ xmlns="http://www.w3.org/2000/svg"
33
+ width="24"
34
+ height="24"
35
+ viewBox="0 0 24 24"
36
+ fill="none"
37
+ stroke="currentColor"
38
+ stroke-width="2"
39
+ stroke-linecap="round"
40
+ stroke-linejoin="round"
41
+ class="mr-2 h-4 w-4"
42
+ >
43
+ <rect width="18" height="18" x="3" y="4" rx="2" ry="2"></rect>
44
+ <line x1="16" x2="16" y1="2" y2="6"></line>
45
+ <line x1="8" x2="8" y1="2" y2="6"></line>
46
+ <line x1="3" x2="21" y1="10" y2="10"></line>
47
+ </svg>
48
+ <span>Calendar</span>
49
+ </rtg-dropdown-menu-item>
50
+ <rtg-dropdown-menu-item>
51
+ <svg
52
+ xmlns="http://www.w3.org/2000/svg"
53
+ width="24"
54
+ height="24"
55
+ viewBox="0 0 24 24"
56
+ fill="none"
57
+ stroke="currentColor"
58
+ stroke-width="2"
59
+ stroke-linecap="round"
60
+ stroke-linejoin="round"
61
+ class="mr-2 h-4 w-4"
62
+ >
63
+ <circle cx="12" cy="12" r="10"></circle>
64
+ <path d="M8 14s1.5 2 4 2 4-2 4-2"></path>
65
+ <line x1="9" x2="9.01" y1="9" y2="9"></line>
66
+ <line x1="15" x2="15.01" y1="9" y2="9"></line>
67
+ </svg>
68
+ <span>Search Emoji</span>
69
+ </rtg-dropdown-menu-item>
70
+ <rtg-dropdown-menu-item>
71
+ <svg
72
+ xmlns="http://www.w3.org/2000/svg"
73
+ width="24"
74
+ height="24"
75
+ viewBox="0 0 24 24"
76
+ fill="none"
77
+ stroke="currentColor"
78
+ stroke-width="2"
79
+ stroke-linecap="round"
80
+ stroke-linejoin="round"
81
+ class="mr-2 h-4 w-4"
82
+ >
83
+ <rect width="16" height="20" x="4" y="2" rx="2"></rect>
84
+ <line x1="8" x2="16" y1="6" y2="6"></line>
85
+ <line x1="16" x2="16" y1="14" y2="18"></line>
86
+ <path d="M16 10h.01"></path>
87
+ <path d="M12 10h.01"></path>
88
+ <path d="M8 10h.01"></path>
89
+ <path d="M12 14h.01"></path>
90
+ <path d="M8 14h.01"></path>
91
+ <path d="M12 18h.01"></path>
92
+ <path d="M8 18h.01"></path>
93
+ </svg>
94
+ <span>Calculator</span>
95
+ </rtg-dropdown-menu-item>
96
+ </rtg-dropdown-menu-group>
97
+
98
+ <rtg-dropdown-menu-separator></rtg-dropdown-menu-separator>
99
+ <rtg-dropdown-menu-group>
100
+ <rtg-dropdown-menu-item
101
+ onclick="javascript:alert('Profile Clicked!')"
102
+ >
103
+ <svg
104
+ xmlns="http://www.w3.org/2000/svg"
105
+ width="24"
106
+ height="24"
107
+ viewBox="0 0 24 24"
108
+ fill="none"
109
+ stroke="currentColor"
110
+ stroke-width="2"
111
+ stroke-linecap="round"
112
+ stroke-linejoin="round"
113
+ class="mr-2 h-4 w-4"
114
+ >
115
+ <path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"></path>
116
+ <circle cx="12" cy="7" r="4"></circle>
117
+ </svg>
118
+ <span>Profile</span>
119
+ <span class="ml-auto text-xs tracking-widest text-muted-foreground"
120
+ >⌘P</span
121
+ >
122
+ </rtg-dropdown-menu-item>
123
+ <rtg-dropdown-menu-item>
124
+ <svg
125
+ xmlns="http://www.w3.org/2000/svg"
126
+ width="24"
127
+ height="24"
128
+ viewBox="0 0 24 24"
129
+ fill="none"
130
+ stroke="currentColor"
131
+ stroke-width="2"
132
+ stroke-linecap="round"
133
+ stroke-linejoin="round"
134
+ class="mr-2 h-4 w-4"
135
+ >
136
+ <rect width="20" height="14" x="2" y="5" rx="2"></rect>
137
+ <line x1="2" x2="22" y1="10" y2="10"></line>
138
+ </svg>
139
+ <span>Billing</span
140
+ ><span class="ml-auto text-xs tracking-widest text-muted-foreground"
141
+ >⌘B</span
142
+ >
143
+ </rtg-dropdown-menu-item>
144
+ <rtg-dropdown-menu-item>
145
+ <svg
146
+ xmlns="http://www.w3.org/2000/svg"
147
+ width="24"
148
+ height="24"
149
+ viewBox="0 0 24 24"
150
+ fill="none"
151
+ stroke="currentColor"
152
+ stroke-width="2"
153
+ stroke-linecap="round"
154
+ stroke-linejoin="round"
155
+ class="mr-2 h-4 w-4"
156
+ >
157
+ <path
158
+ d="M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"
159
+ ></path>
160
+ <circle cx="12" cy="12" r="3"></circle>
161
+ </svg>
162
+ <span>Settings</span>
163
+ <span class="ml-auto text-xs tracking-widest text-muted-foreground">
164
+ ⌘S</span
165
+ >
166
+ </rtg-dropdown-menu-item>
167
+ </rtg-dropdown-menu-group></rtg-dropdown-menu-content
168
+ >
169
+ </rtg-dropdown-menu>
170
+ `;
171
+ export const DropdownMenu = TemplateDropdownMenu.bind({});
172
+
173
+ const TemplateDropdownMenuCheckbox: StoryFn = () =>
174
+ html`
175
+ <rtg-dropdown-menu class="w-full max-w-md">
176
+ <rtg-dropdown-menu-content>
177
+ <rtg-dropdown-menu-shortcut style="margin-left:8px"
178
+ >My Account</rtg-dropdown-menu-shortcut
179
+ >
180
+ <rtg-dropdown-menu-separator></rtg-dropdown-menu-separator>
181
+ <rtg-dropdown-menu-group>
182
+ <rtg-dropdown-menu-checkbox-item>
183
+ <span style="margin-left:24px">Profile</span>
184
+ </rtg-dropdown-menu-checkbox-item>
185
+ <rtg-dropdown-menu-checkbox-item>
186
+ <span style="margin-left:24px">Billing</span>
187
+ </rtg-dropdown-menu-checkbox-item>
188
+ <rtg-dropdown-menu-checkbox-item>
189
+ <span style="margin-left:24px">Settings</span>
190
+ </rtg-dropdown-menu-checkbox-item>
191
+ </rtg-dropdown-menu-group>
192
+ </rtg-dropdown-menu-content>
193
+ </rtg-dropdown-menu>
194
+ `;
195
+
196
+ export const DropdownMenuCheckbox = TemplateDropdownMenuCheckbox.bind({});
197
+
198
+ const TemplateDropdownMenuRadio: StoryFn = () =>
199
+ html`
200
+ <rtg-dropdown-menu class="w-full max-w-md">
201
+ <rtg-dropdown-menu-content>
202
+ <rtg-dropdown-menu-shortcut style="margin-left:8px"
203
+ >My Account</rtg-dropdown-menu-shortcut
204
+ >
205
+ <rtg-dropdown-menu-separator></rtg-dropdown-menu-separator>
206
+ <rtg-dropdown-menu-group>
207
+ <rtg-dropdown-menu-radio-item>
208
+ <span style="margin-left:24px">Profile</span>
209
+ </rtg-dropdown-menu-radio-item>
210
+ <rtg-dropdown-menu-radio-item>
211
+ <span style="margin-left:24px">Billing</span>
212
+ </rtg-dropdown-menu-radio-item>
213
+ <rtg-dropdown-menu-radio-item>
214
+ <span style="margin-left:24px">Settings</span>
215
+ </rtg-dropdown-menu-radio-item>
216
+ </rtg-dropdown-menu-group>
217
+ </rtg-dropdown-menu-content>
218
+ </rtg-dropdown-menu>
219
+ `;
220
+ export const DropdownMenuRadio = TemplateDropdownMenuRadio.bind({});
@@ -0,0 +1,7 @@
1
+ import { cva } from 'class-variance-authority';
2
+
3
+ export const dropdownMenuRootStyle = cva('rtgcmd-root');
4
+
5
+ export const dropdownMenuContentStyle = cva(
6
+ 'max-h-[300px] overflow-y-auto overflow-x-hidden'
7
+ );
@@ -8,3 +8,6 @@ export * from './command-group/command-group.atom';
8
8
  export * from './command-item/command-item.atom';
9
9
  export * from './command-list/command-list.atom';
10
10
  export * from './command-separator/command-separator.atom';
11
+ export * from './card/card.atom';
12
+ export * from './popover/popover.atom';
13
+ export * from './alert/alert.atom';
@@ -1,12 +1,23 @@
1
1
  /* eslint-disable lit/no-value-attribute */
2
- import { LitElement, html, css } from 'lit';
2
+ import { LitElement, html, css, PropertyValues } from 'lit';
3
3
  import { property, customElement } from 'lit/decorators.js';
4
- import { cn } from '@/helpers';
5
- import { TWStyles } from '@/styles';
4
+ import { cn } from '../../../helpers';
5
+ import { TWStyles } from '../../../styles';
6
6
  import { InputType } from './input.type';
7
+ import { inputStyles } from './input.styles';
8
+ import { BaseElement } from '../../../helpers';
9
+ import { spread } from '@open-wc/lit-helpers';
7
10
 
8
11
  @customElement('rtg-input')
9
- export class Input extends LitElement {
12
+ export class Input extends BaseElement {
13
+ constructor() {
14
+ super();
15
+ this.attachShadow({ mode: 'open' });
16
+
17
+ // Initialize value with defaultValue if provided
18
+ this.value = this.value || this.defaultValue;
19
+ }
20
+
10
21
  @property({ type: Boolean }) disabled = false;
11
22
 
12
23
  @property({ type: String }) type: InputType = 'text';
@@ -15,19 +26,62 @@ export class Input extends LitElement {
15
26
 
16
27
  @property({ type: String }) defaultValue = '';
17
28
 
18
- static styles = [css``, TWStyles];
29
+ // Make value a reactive property
30
+ @property({ type: String }) value = '';
31
+
32
+ static styles = [
33
+ css`
34
+ :root {
35
+ --input-border-radius: inherit;
36
+ --input-padding: inherit;
37
+ }
38
+ .input-base {
39
+ border-radius: var(--input-border-radius) !important;
40
+ padding-top: var(--input-padding) !important;
41
+ padding-bottom: var(--input-padding) !important;
42
+ }
43
+ `,
44
+ TWStyles,
45
+ ];
46
+
47
+ protected firstUpdated(_changedProperties: PropertyValues): void {
48
+ const variables = ['--input-border-radius', '--input-padding'];
49
+
50
+ this.applyCustomClass(variables, 'input', 'input-base');
51
+
52
+ // Reflect the initial value (if defaultValue was provided)
53
+ if (this.type !== 'file' && this.defaultValue) {
54
+ this.value = this.defaultValue;
55
+ }
56
+ }
57
+
58
+ handleInputChange(event: Event) {
59
+ const inputElement = event.target as HTMLInputElement;
60
+
61
+ if (inputElement.type === 'file') {
62
+ // Handle file input separately
63
+ this.value = inputElement.files ? inputElement.files[0].name : '';
64
+ } else {
65
+ this.value = inputElement.value;
66
+ }
67
+ }
68
+
69
+ protected getAttributesToExclude(): string[] {
70
+ return ['disabled', 'type', 'placeholder', 'value', 'data-testid'];
71
+ }
19
72
 
20
73
  render() {
74
+ const attributes = this.getFilteredAttributes();
75
+ console.log('attributes', this.className);
21
76
  return html`
22
77
  <input
23
78
  type="${this.type}"
24
79
  placeholder="${this.placeholder}"
25
80
  ?disabled=${this.disabled}
26
- class="${cn(
27
- 'flex h-8 w-full rounded-sm border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50',
28
- this.className
29
- )}"
30
- value="${this.defaultValue}"
81
+ class="${cn(inputStyles, this.className)}"
82
+ .value=${this.type !== 'file' ? this.value : ''}
83
+ @change="${this.handleInputChange}"
84
+ ${spread(attributes)}
31
85
  />
32
86
  `;
33
87
  }