@revotech-group/revotech-ui-kit 0.0.50

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 (241) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +30 -0
  3. package/dist/revotech-ui-kit.js +12825 -0
  4. package/dist/revotech-ui-kit.umd.cjs +5400 -0
  5. package/dist/src/assets/icons/arrow-up-circle.icon.d.ts +1 -0
  6. package/dist/src/assets/icons/arrows.icon.d.ts +1 -0
  7. package/dist/src/assets/icons/chorven-down.icon.d.ts +1 -0
  8. package/dist/src/assets/icons/circle-check.icon.d.ts +1 -0
  9. package/dist/src/assets/icons/circle-x.icon.d.ts +1 -0
  10. package/dist/src/assets/icons/circle.icon.d.ts +1 -0
  11. package/dist/src/assets/icons/close.icon.d.ts +1 -0
  12. package/dist/src/assets/icons/dot.icon.d.ts +1 -0
  13. package/dist/src/assets/icons/help-circle.icon.d.ts +1 -0
  14. package/dist/src/assets/icons/index.d.ts +13 -0
  15. package/dist/src/assets/icons/radio-group.icon.d.ts +1 -0
  16. package/dist/src/assets/icons/radio.icon.d.ts +1 -0
  17. package/dist/src/assets/icons/search.icon.d.ts +1 -0
  18. package/dist/src/assets/icons/tick.icon.d.ts +1 -0
  19. package/dist/src/components/atoms/accordion/accordion-content.d.ts +14 -0
  20. package/dist/src/components/atoms/accordion/accordion-item.d.ts +21 -0
  21. package/dist/src/components/atoms/accordion/accordion-trigger.d.ts +20 -0
  22. package/dist/src/components/atoms/accordion/accordion.atoms.d.ts +23 -0
  23. package/dist/src/components/atoms/accordion/accordion.defs.d.ts +10 -0
  24. package/dist/src/components/atoms/accordion/accordion.stories.d.ts +5 -0
  25. package/dist/src/components/atoms/accordion/accordion.styles.d.ts +0 -0
  26. package/dist/src/components/atoms/alert/alert-description.d.ts +5 -0
  27. package/dist/src/components/atoms/alert/alert-title.d.ts +5 -0
  28. package/dist/src/components/atoms/alert/alert.atom.d.ts +23 -0
  29. package/dist/src/components/atoms/alert/alert.stories.d.ts +5 -0
  30. package/dist/src/components/atoms/alert/alert.styles.d.ts +4 -0
  31. package/dist/src/components/atoms/alert/alert.types.d.ts +1 -0
  32. package/dist/src/components/atoms/aspect-ratio/aspect-ratio-atom.d.ts +12 -0
  33. package/dist/src/components/atoms/aspect-ratio/aspect-ratio.stories.d.ts +4 -0
  34. package/dist/src/components/atoms/avatar/avatar-fallback.d.ts +10 -0
  35. package/dist/src/components/atoms/avatar/avatar-image.d.ts +12 -0
  36. package/dist/src/components/atoms/avatar/avatar.atom.d.ts +11 -0
  37. package/dist/src/components/atoms/avatar/avatar.stories.d.ts +4 -0
  38. package/dist/src/components/atoms/avatar/avatar.style.d.ts +3 -0
  39. package/dist/src/components/atoms/badge/badge.atom.d.ts +18 -0
  40. package/dist/src/components/atoms/badge/badge.stories.d.ts +5 -0
  41. package/dist/src/components/atoms/badge/badge.style.d.ts +3 -0
  42. package/dist/src/components/atoms/badge/badge.type.d.ts +1 -0
  43. package/dist/src/components/atoms/button/button.atom.d.ts +24 -0
  44. package/dist/src/components/atoms/button/button.stories.d.ts +5 -0
  45. package/dist/src/components/atoms/button/button.style.d.ts +4 -0
  46. package/dist/src/components/atoms/button/button.type.d.ts +3 -0
  47. package/dist/src/components/atoms/calendar/calendar.atom.d.ts +25 -0
  48. package/dist/src/components/atoms/calendar/calendar.stories.d.ts +4 -0
  49. package/dist/src/components/atoms/calendar/calendar.style.d.ts +4 -0
  50. package/dist/src/components/atoms/calendar/calendar.type.d.ts +2 -0
  51. package/dist/src/components/atoms/card/card-content.d.ts +5 -0
  52. package/dist/src/components/atoms/card/card-description.d.ts +5 -0
  53. package/dist/src/components/atoms/card/card-footer.d.ts +5 -0
  54. package/dist/src/components/atoms/card/card-header.d.ts +5 -0
  55. package/dist/src/components/atoms/card/card-title.d.ts +5 -0
  56. package/dist/src/components/atoms/card/card.atom.d.ts +21 -0
  57. package/dist/src/components/atoms/card/card.stories.d.ts +5 -0
  58. package/dist/src/components/atoms/carousel/carousel.atom.d.ts +21 -0
  59. package/dist/src/components/atoms/carousel/carousel.stories.d.ts +6 -0
  60. package/dist/src/components/atoms/checkbox/checkbox.atom.d.ts +19 -0
  61. package/dist/src/components/atoms/checkbox/checkbox.stories.d.ts +6 -0
  62. package/dist/src/components/atoms/checkbox/checkbox.style.d.ts +2 -0
  63. package/dist/src/components/atoms/checkbox/checkbox.type.d.ts +21 -0
  64. package/dist/src/components/atoms/collapsible/collapsible-content.d.ts +11 -0
  65. package/dist/src/components/atoms/collapsible/collapsible-trigger.d.ts +14 -0
  66. package/dist/src/components/atoms/collapsible/collapsible.atom.d.ts +17 -0
  67. package/dist/src/components/atoms/collapsible/collapsible.stories.d.ts +5 -0
  68. package/dist/src/components/atoms/combobox/combo-box-empty.d.ts +11 -0
  69. package/dist/src/components/atoms/combobox/combo-box-group.d.ts +25 -0
  70. package/dist/src/components/atoms/combobox/combo-box-input.d.ts +18 -0
  71. package/dist/src/components/atoms/combobox/combo-box-item.d.ts +22 -0
  72. package/dist/src/components/atoms/combobox/combo-box-trigger.d.ts +15 -0
  73. package/dist/src/components/atoms/combobox/combo-box-value.d.ts +18 -0
  74. package/dist/src/components/atoms/combobox/combo-box.atom.d.ts +25 -0
  75. package/dist/src/components/atoms/combobox/combo-box.stories.d.ts +4 -0
  76. package/dist/src/components/atoms/command/command-empty.atom.d.ts +9 -0
  77. package/dist/src/components/atoms/command/command-group.atom.d.ts +10 -0
  78. package/dist/src/components/atoms/command/command-input.atom.d.ts +10 -0
  79. package/dist/src/components/atoms/command/command-item.atom.d.ts +13 -0
  80. package/dist/src/components/atoms/command/command-list.atom.d.ts +6 -0
  81. package/dist/src/components/atoms/command/command-separator.atom.d.ts +9 -0
  82. package/dist/src/components/atoms/command/command.atom.d.ts +7 -0
  83. package/dist/src/components/atoms/command/command.stories.d.ts +5 -0
  84. package/dist/src/components/atoms/context-menu/context-menu-checkbox-Item.d.ts +15 -0
  85. package/dist/src/components/atoms/context-menu/context-menu-content.d.ts +13 -0
  86. package/dist/src/components/atoms/context-menu/context-menu-group.d.ts +10 -0
  87. package/dist/src/components/atoms/context-menu/context-menu-item.d.ts +12 -0
  88. package/dist/src/components/atoms/context-menu/context-menu-radio-item.d.ts +15 -0
  89. package/dist/src/components/atoms/context-menu/context-menu-seperator.d.ts +9 -0
  90. package/dist/src/components/atoms/context-menu/context-menu-shortcut.d.ts +5 -0
  91. package/dist/src/components/atoms/context-menu/context-menu.atom.d.ts +33 -0
  92. package/dist/src/components/atoms/context-menu/contextMenu.stories.d.ts +4 -0
  93. package/dist/src/components/atoms/context-menu/contextMenu.style.d.ts +2 -0
  94. package/dist/src/components/atoms/date-picker/date-picker.atom.d.ts +13 -0
  95. package/dist/src/components/atoms/date-picker/date-picker.stories.d.ts +4 -0
  96. package/dist/src/components/atoms/dialog/dialog-close.d.ts +12 -0
  97. package/dist/src/components/atoms/dialog/dialog-content.d.ts +8 -0
  98. package/dist/src/components/atoms/dialog/dialog-footer.d.ts +5 -0
  99. package/dist/src/components/atoms/dialog/dialog-header.d.ts +7 -0
  100. package/dist/src/components/atoms/dialog/dialog-overly.d.ts +5 -0
  101. package/dist/src/components/atoms/dialog/dialog-trigger.d.ts +8 -0
  102. package/dist/src/components/atoms/dialog/dialog.atom.d.ts +26 -0
  103. package/dist/src/components/atoms/dialog/dialog.stories.d.ts +6 -0
  104. package/dist/src/components/atoms/dropdown-menu/dropdown-menu-checkbox-Item.d.ts +15 -0
  105. package/dist/src/components/atoms/dropdown-menu/dropdown-menu-content.d.ts +13 -0
  106. package/dist/src/components/atoms/dropdown-menu/dropdown-menu-group.d.ts +10 -0
  107. package/dist/src/components/atoms/dropdown-menu/dropdown-menu-item.d.ts +12 -0
  108. package/dist/src/components/atoms/dropdown-menu/dropdown-menu-radio-item.d.ts +15 -0
  109. package/dist/src/components/atoms/dropdown-menu/dropdown-menu-seperator.d.ts +9 -0
  110. package/dist/src/components/atoms/dropdown-menu/dropdown-menu-shortcut.d.ts +5 -0
  111. package/dist/src/components/atoms/dropdown-menu/dropdown-menu.atom.d.ts +31 -0
  112. package/dist/src/components/atoms/dropdown-menu/dropdownMenu.stories.d.ts +6 -0
  113. package/dist/src/components/atoms/dropdown-menu/dropdownMenu.style.d.ts +2 -0
  114. package/dist/src/components/atoms/hoverCard/hover-card-content.d.ts +17 -0
  115. package/dist/src/components/atoms/hoverCard/hover-card.atom.d.ts +18 -0
  116. package/dist/src/components/atoms/hoverCard/hover-card.stories.d.ts +4 -0
  117. package/dist/src/components/atoms/index.d.ts +48 -0
  118. package/dist/src/components/atoms/input/input.atom.d.ts +22 -0
  119. package/dist/src/components/atoms/input/input.stories.d.ts +5 -0
  120. package/dist/src/components/atoms/input/input.styles.d.ts +1 -0
  121. package/dist/src/components/atoms/input/input.type.d.ts +21 -0
  122. package/dist/src/components/atoms/label/label.atom.d.ts +16 -0
  123. package/dist/src/components/atoms/label/label.stories.d.ts +5 -0
  124. package/dist/src/components/atoms/label/label.style.d.ts +1 -0
  125. package/dist/src/components/atoms/menubar/menubar-checkbox.item.d.ts +15 -0
  126. package/dist/src/components/atoms/menubar/menubar-content.d.ts +15 -0
  127. package/dist/src/components/atoms/menubar/menubar-group.d.ts +10 -0
  128. package/dist/src/components/atoms/menubar/menubar-item.d.ts +12 -0
  129. package/dist/src/components/atoms/menubar/menubar-menu.d.ts +23 -0
  130. package/dist/src/components/atoms/menubar/menubar-radio-item.d.ts +15 -0
  131. package/dist/src/components/atoms/menubar/menubar-seperator.d.ts +9 -0
  132. package/dist/src/components/atoms/menubar/menubar-shortcut.d.ts +5 -0
  133. package/dist/src/components/atoms/menubar/menubar.atom.d.ts +28 -0
  134. package/dist/src/components/atoms/menubar/menubar.stories.d.ts +4 -0
  135. package/dist/src/components/atoms/navigation-menu/navigation-menu-content.d.ts +16 -0
  136. package/dist/src/components/atoms/navigation-menu/navigation-menu-item.d.ts +23 -0
  137. package/dist/src/components/atoms/navigation-menu/navigation-menu-link.d.ts +7 -0
  138. package/dist/src/components/atoms/navigation-menu/navigation-menu-list.d.ts +6 -0
  139. package/dist/src/components/atoms/navigation-menu/navigation-menu.d.ts +20 -0
  140. package/dist/src/components/atoms/navigation-menu/navigation-menu.stories.d.ts +4 -0
  141. package/dist/src/components/atoms/pagination/pagination-content.d.ts +6 -0
  142. package/dist/src/components/atoms/pagination/pagination-ellipsis.d.ts +6 -0
  143. package/dist/src/components/atoms/pagination/pagination-item.d.ts +14 -0
  144. package/dist/src/components/atoms/pagination/pagination-link.d.ts +17 -0
  145. package/dist/src/components/atoms/pagination/pagination-next.d.ts +6 -0
  146. package/dist/src/components/atoms/pagination/pagination-previous.d.ts +6 -0
  147. package/dist/src/components/atoms/pagination/pagination.atom.d.ts +24 -0
  148. package/dist/src/components/atoms/pagination/pagination.stories.d.ts +4 -0
  149. package/dist/src/components/atoms/pagination/pagination.styles.d.ts +4 -0
  150. package/dist/src/components/atoms/pagination/pagination.type.d.ts +2 -0
  151. package/dist/src/components/atoms/popover/popover-content.d.ts +14 -0
  152. package/dist/src/components/atoms/popover/popover-trigger.d.ts +9 -0
  153. package/dist/src/components/atoms/popover/popover.atom.d.ts +18 -0
  154. package/dist/src/components/atoms/popover/popover.stories.d.ts +4 -0
  155. package/dist/src/components/atoms/popover/popover.style.d.ts +10 -0
  156. package/dist/src/components/atoms/popover/popover.types.d.ts +2 -0
  157. package/dist/src/components/atoms/radio-group/radio-group-item.d.ts +16 -0
  158. package/dist/src/components/atoms/radio-group/radio-group.atom.d.ts +16 -0
  159. package/dist/src/components/atoms/radio-group/radio-group.stories.d.ts +4 -0
  160. package/dist/src/components/atoms/radio-group/radio-group.types.d.ts +2 -0
  161. package/dist/src/components/atoms/sample-demo/sample-demo.d.ts +20 -0
  162. package/dist/src/components/atoms/sample-demo/sample.style.d.ts +4 -0
  163. package/dist/src/components/atoms/sample-demo/sample.type.d.ts +3 -0
  164. package/dist/src/components/atoms/select/select-group.d.ts +23 -0
  165. package/dist/src/components/atoms/select/select-item.d.ts +22 -0
  166. package/dist/src/components/atoms/select/select-label.d.ts +10 -0
  167. package/dist/src/components/atoms/select/select-list.d.ts +7 -0
  168. package/dist/src/components/atoms/select/select-seperator.d.ts +10 -0
  169. package/dist/src/components/atoms/select/select-trigger.d.ts +15 -0
  170. package/dist/src/components/atoms/select/select-value.d.ts +18 -0
  171. package/dist/src/components/atoms/select/select.atom.d.ts +24 -0
  172. package/dist/src/components/atoms/select/select.stories.d.ts +4 -0
  173. package/dist/src/components/atoms/seperator/separator.atom.d.ts +14 -0
  174. package/dist/src/components/atoms/seperator/separator.defs.d.ts +10 -0
  175. package/dist/src/components/atoms/seperator/separator.stories.d.ts +7 -0
  176. package/dist/src/components/atoms/switch/switch.atom.d.ts +14 -0
  177. package/dist/src/components/atoms/switch/switch.stories.d.ts +4 -0
  178. package/dist/src/components/atoms/switch/switch.type.d.ts +4 -0
  179. package/dist/src/components/atoms/textarea/textarea.atom.d.ts +22 -0
  180. package/dist/src/components/atoms/textarea/textarea.stories.d.ts +4 -0
  181. package/dist/src/components/atoms/textarea/textarea.styles.d.ts +1 -0
  182. package/dist/src/components/atoms/textarea/textarea.type.d.ts +11 -0
  183. package/dist/src/components/atoms/toast/toast-action.d.ts +19 -0
  184. package/dist/src/components/atoms/toast/toast-description.d.ts +10 -0
  185. package/dist/src/components/atoms/toast/toast-title.d.ts +10 -0
  186. package/dist/src/components/atoms/toast/toast-view-port.d.ts +17 -0
  187. package/dist/src/components/atoms/toast/toast.atom.d.ts +16 -0
  188. package/dist/src/components/atoms/toast/toast.stories.d.ts +5 -0
  189. package/dist/src/components/atoms/toast/toast.style.d.ts +9 -0
  190. package/dist/src/components/atoms/toast/toast.type.d.ts +1 -0
  191. package/dist/src/components/atoms/toggle/toggle.atom.d.ts +20 -0
  192. package/dist/src/components/atoms/toggle/toggle.defs.d.ts +27 -0
  193. package/dist/src/components/atoms/toggle/toggle.stories.d.ts +5 -0
  194. package/dist/src/components/atoms/toggle/toggle.style.d.ts +4 -0
  195. package/dist/src/components/index.d.ts +2 -0
  196. package/dist/src/components/molecules/breadcrumb/breadcrumb-ellipsis.d.ts +6 -0
  197. package/dist/src/components/molecules/breadcrumb/breadcrumb-item.d.ts +6 -0
  198. package/dist/src/components/molecules/breadcrumb/breadcrumb-link.d.ts +7 -0
  199. package/dist/src/components/molecules/breadcrumb/breadcrumb-list.d.ts +6 -0
  200. package/dist/src/components/molecules/breadcrumb/breadcrumb-separator.d.ts +6 -0
  201. package/dist/src/components/molecules/breadcrumb/breadcrumb-text.d.ts +6 -0
  202. package/dist/src/components/molecules/breadcrumb/breadcrumb.molecules.d.ts +6 -0
  203. package/dist/src/components/molecules/breadcrumb/breadcrumb.stories.d.ts +5 -0
  204. package/dist/src/components/molecules/breadcrumb/breadcrumb.styles.d.ts +6 -0
  205. package/dist/src/components/molecules/index.d.ts +11 -0
  206. package/dist/src/components/molecules/input-otp/input-otp-group.d.ts +14 -0
  207. package/dist/src/components/molecules/input-otp/input-otp-separator.d.ts +11 -0
  208. package/dist/src/components/molecules/input-otp/input-otp-slot.d.ts +25 -0
  209. package/dist/src/components/molecules/input-otp/input-otp.molecule.d.ts +23 -0
  210. package/dist/src/components/molecules/input-otp/input-otp.stories.d.ts +4 -0
  211. package/dist/src/components/molecules/tabs/tab-contents.d.ts +12 -0
  212. package/dist/src/components/molecules/tabs/tab-list.d.ts +14 -0
  213. package/dist/src/components/molecules/tabs/tab-trigger.d.ts +17 -0
  214. package/dist/src/components/molecules/tabs/tab.molecules.d.ts +15 -0
  215. package/dist/src/components/molecules/tabs/tab.stories.d.ts +14 -0
  216. package/dist/src/components/molecules/toggle-group/toggle-group-item.d.ts +17 -0
  217. package/dist/src/components/molecules/toggle-group/toggle-group.defs.d.ts +37 -0
  218. package/dist/src/components/molecules/toggle-group/toggle-group.molecules.d.ts +19 -0
  219. package/dist/src/components/molecules/toggle-group/toggle-group.stories.d.ts +4 -0
  220. package/dist/src/components/molecules/toggle-group/toggle-group.style.d.ts +4 -0
  221. package/dist/src/helpers/base-element.d.ts +10 -0
  222. package/dist/src/helpers/genrate-uuid.helper.d.ts +1 -0
  223. package/dist/src/helpers/index.d.ts +4 -0
  224. package/dist/src/helpers/mouse-conroller.helper.d.ts +14 -0
  225. package/dist/src/helpers/style.helpers.d.ts +2 -0
  226. package/dist/src/index.d.ts +2 -0
  227. package/dist/src/interfaces/actionable.interface.d.ts +5 -0
  228. package/dist/src/interfaces/atomic.interface.d.ts +6 -0
  229. package/dist/src/interfaces/changeable.interface.d.ts +7 -0
  230. package/dist/src/interfaces/child-support-atomic.interface.d.ts +4 -0
  231. package/dist/src/interfaces/index.d.ts +6 -0
  232. package/dist/src/interfaces/intractable.interface.d.ts +6 -0
  233. package/dist/src/interfaces/variant.interface.d.ts +3 -0
  234. package/dist/src/lib/index.d.ts +0 -0
  235. package/dist/src/lib/next/next.lib.d.ts +0 -0
  236. package/dist/src/lib/react/react.lib.d.ts +4 -0
  237. package/dist/src/lib/tw-styles.d.ts +1 -0
  238. package/dist/src/styles/index.d.ts +1 -0
  239. package/dist/src/styles/tw.styles.d.ts +1 -0
  240. package/dist/src/wc-ui-app.d.ts +6 -0
  241. package/package.json +135 -0
@@ -0,0 +1 @@
1
+ export declare function arrowUpCircleIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function arrowsIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function chorvenDownIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function circleCheckIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function circleXIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function circleIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function closeIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function dotIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function helpCircleIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1,13 @@
1
+ export * from './arrows.icon';
2
+ export * from './tick.icon';
3
+ export * from './search.icon';
4
+ export * from './help-circle.icon';
5
+ export * from './circle.icon';
6
+ export * from './arrow-up-circle.icon';
7
+ export * from './circle-check.icon';
8
+ export * from './circle-x.icon';
9
+ export * from './radio.icon';
10
+ export * from './chorven-down.icon';
11
+ export * from './radio-group.icon';
12
+ export * from './close.icon';
13
+ export * from './dot.icon';
@@ -0,0 +1 @@
1
+ export declare function radioGroupIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function radioIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function searchIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1 @@
1
+ export declare function tickIcon(): import("lit-html").TemplateResult<2>;
@@ -0,0 +1,14 @@
1
+ import { LitElement, PropertyValues } from 'lit-element';
2
+ import { Accordion, AccordionItem } from './accordion.atoms';
3
+ declare class AccordionContent extends LitElement {
4
+ value: string;
5
+ selectedValue: string;
6
+ static styles: import("lit-element").CSSResult[];
7
+ protected updated(_changedProperties: PropertyValues): void;
8
+ protected firstUpdated(_changedProperties: PropertyValues): void;
9
+ get _accordion(): Accordion | null;
10
+ get _item(): AccordionItem | null;
11
+ hasActiveState(): Boolean;
12
+ render(): import("lit-html").TemplateResult<1>;
13
+ }
14
+ export { AccordionContent };
@@ -0,0 +1,21 @@
1
+ import { PropertyValues } from 'lit-element';
2
+ import { BaseElement } from '../../../helpers';
3
+ import { Accordion } from './accordion.atoms';
4
+ declare class AccordionItem extends BaseElement {
5
+ value: string;
6
+ tabindex: number;
7
+ static styles: import("lit-element").CSSResult[];
8
+ protected getAttributesToExclude(): string[];
9
+ connectedCallback(): void;
10
+ protected firstUpdated(_changedProperties: PropertyValues): void;
11
+ disconnectedCallback(): void;
12
+ get _accordion(): Accordion | null;
13
+ handleClick: (event: MouseEvent) => void;
14
+ render(): import("lit-html").TemplateResult<1>;
15
+ }
16
+ export { AccordionItem };
17
+ declare global {
18
+ interface HTMLElementTagNameMap {
19
+ 'rtg-accordion-item': AccordionItem;
20
+ }
21
+ }
@@ -0,0 +1,20 @@
1
+ import { PropertyValues } from 'lit-element';
2
+ import { BaseElement } from '../../../helpers';
3
+ import { Accordion, AccordionItem } from './accordion.atoms';
4
+ declare class AccordionTrigger extends BaseElement {
5
+ onClickCallback?: (tabValue: string) => void;
6
+ static styles: import("lit-element").CSSResult[];
7
+ connectedCallback(): void;
8
+ protected firstUpdated(_changedProperties: PropertyValues): void;
9
+ protected getAttributesToExclude(): string[];
10
+ get _accordion(): Accordion | null;
11
+ get _item(): AccordionItem | null;
12
+ hasActiveState(): Boolean;
13
+ render(): import("lit-html").TemplateResult<1>;
14
+ }
15
+ export { AccordionTrigger };
16
+ declare global {
17
+ interface HTMLElementTagNameMap {
18
+ 'rtg-accordion-trigger': AccordionTrigger;
19
+ }
20
+ }
@@ -0,0 +1,23 @@
1
+ import { BaseElement } from '../../../helpers';
2
+ import { AccordionItem } from './accordion-item';
3
+ import { AccordionTrigger } from './accordion-trigger';
4
+ import { AccordionContent } from './accordion-content';
5
+ import { ACCORDION_GROUP_TYPE } from './accordion.defs';
6
+ declare class Accordion extends BaseElement {
7
+ static styles: import("lit").CSSResult[];
8
+ twCLass: string;
9
+ type: ACCORDION_GROUP_TYPE;
10
+ selectedItems: string[];
11
+ protected getAttributesToExclude(): string[];
12
+ connectedCallback(): void;
13
+ disconnectedCallback(): void;
14
+ setSelectedItems(item: string): void;
15
+ raiseEvent(value: string): void;
16
+ render(): import("lit-html").TemplateResult<1>;
17
+ }
18
+ export { Accordion, AccordionItem, AccordionTrigger, AccordionContent };
19
+ declare global {
20
+ interface HTMLElementTagNameMap {
21
+ 'rtg-accordion': Accordion;
22
+ }
23
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum ACCORDION_GROUP_TYPE {
2
+ /**
3
+ * @multiple Type
4
+ */
5
+ MULTIPLE = "multiple",
6
+ /**
7
+ * @single Type
8
+ */
9
+ SINGLE = "single"
10
+ }
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/web-components';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const DefaultAccordion: Story;
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AlertDescription extends LitElement {
3
+ static styles: import("lit").CSSResult;
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AlertTitle extends LitElement {
3
+ static styles: import("lit").CSSResult;
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,23 @@
1
+ import { LitElement } from 'lit';
2
+ import { AlertTitle } from './alert-title';
3
+ import { AlertDescription } from './alert-description';
4
+ declare class Alert extends LitElement {
5
+ twCLass: string;
6
+ static styles: import("lit").CSSResult[];
7
+ static alertVairants: (props?: ({
8
+ variant?: "error" | "success" | "warning" | "info" | null | undefined;
9
+ size?: "small" | "default" | "large" | null | undefined;
10
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
11
+ variant: 'success' | 'error' | 'warning' | 'info';
12
+ size: 'default' | 'large' | 'small';
13
+ private get alertClasses();
14
+ render(): import("lit-html").TemplateResult<1>;
15
+ }
16
+ export { Alert, AlertDescription, AlertTitle };
17
+ declare global {
18
+ interface HTMLElementTagNameMap {
19
+ 'rtg-alert': Alert;
20
+ 'rtg-alert-description': AlertDescription;
21
+ 'rtg-alert-title': AlertTitle;
22
+ }
23
+ }
@@ -0,0 +1,5 @@
1
+ import { Meta, StoryObj } from '@storybook/web-components';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ type Story = StoryObj;
5
+ export declare const AlertStory: Story;
@@ -0,0 +1,4 @@
1
+ export declare const alertStyle: (props?: ({
2
+ variant?: "error" | "success" | "warning" | "info" | null | undefined;
3
+ size?: "small" | "default" | "large" | null | undefined;
4
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,12 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AspectRatio extends LitElement {
3
+ twCLass: string;
4
+ static styles: import("lit").CSSResult[];
5
+ ratio: number;
6
+ render(): import("lit-html").TemplateResult<1>;
7
+ }
8
+ declare global {
9
+ interface HTMLElementTagNameMap {
10
+ 'rtg-aspect-ratio': AspectRatio;
11
+ }
12
+ }
@@ -0,0 +1,4 @@
1
+ import { Meta, StoryFn } from '@storybook/web-components';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ export declare const AspectRatio: StoryFn;
@@ -0,0 +1,10 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AvatarFallback extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
6
+ declare global {
7
+ interface HTMLElementTagNameMap {
8
+ 'rtg-avatar-fallback': AvatarFallback;
9
+ }
10
+ }
@@ -0,0 +1,12 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class AvatarImage extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ alt: string;
5
+ src: string;
6
+ render(): import("lit-html").TemplateResult<1>;
7
+ }
8
+ declare global {
9
+ interface HTMLElementTagNameMap {
10
+ 'rtg-avatar-image': AvatarImage;
11
+ }
12
+ }
@@ -0,0 +1,11 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class Avatar extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ twCLass: string;
5
+ render(): import("lit-html").TemplateResult<1>;
6
+ }
7
+ declare global {
8
+ interface HTMLElementTagNameMap {
9
+ 'rtg-avatar': Avatar;
10
+ }
11
+ }
@@ -0,0 +1,4 @@
1
+ import { Meta, StoryFn } from '@storybook/web-components';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ export declare const Avatar: StoryFn;
@@ -0,0 +1,3 @@
1
+ export declare const avatarStyles = "relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full";
2
+ export declare const avatarImageStyles = "aspect-square h-full w-full";
3
+ export declare const avatarFallbackStyles = "flex h-full w-full items-center justify-center rounded-full bg-muted";
@@ -0,0 +1,18 @@
1
+ import { BaseElement } from '../../../helpers';
2
+ import * as badgeType from './badge.type';
3
+ export declare class Badge extends BaseElement {
4
+ static badgeVariants: (props?: ({
5
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
6
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
7
+ twCLass: string;
8
+ variant: badgeType.BadgeVariant;
9
+ id: string;
10
+ static styles: import("lit").CSSResult[];
11
+ protected getAttributesToExclude(): string[];
12
+ render(): import("lit-html").TemplateResult<1>;
13
+ }
14
+ declare global {
15
+ interface HTMLElementTagNameMap {
16
+ 'rtg-badge': Badge;
17
+ }
18
+ }
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/web-components';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const Badge: Story;
@@ -0,0 +1,3 @@
1
+ export declare const badgeStyle: (props?: ({
2
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
3
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
@@ -0,0 +1 @@
1
+ export type BadgeVariant = 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
@@ -0,0 +1,24 @@
1
+ import { BaseElement } from '../../../helpers';
2
+ import * as buttonType from './button.type';
3
+ export declare class Button extends BaseElement {
4
+ static buttonVariants: (props?: ({
5
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
6
+ size?: "default" | "sm" | "lg" | "icon" | null | undefined;
7
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
8
+ click: () => void;
9
+ disabled: boolean;
10
+ type: buttonType.ButtonType;
11
+ variant: buttonType.ButtonVariant;
12
+ size: buttonType.ButtonSize;
13
+ externalClass: string;
14
+ isCustomClass: boolean;
15
+ static styles: import("lit").CSSResult[];
16
+ private handleClick;
17
+ protected getAttributesToExclude(): string[];
18
+ render(): import("lit-html").TemplateResult<1>;
19
+ }
20
+ declare global {
21
+ interface HTMLElementTagNameMap {
22
+ 'rtg-button': Button;
23
+ }
24
+ }
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/web-components';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const Buttons: Story;
@@ -0,0 +1,4 @@
1
+ export declare const buttonStyle: (props?: ({
2
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
3
+ size?: "default" | "sm" | "lg" | "icon" | null | undefined;
4
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
@@ -0,0 +1,3 @@
1
+ export type ButtonVariant = 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
2
+ export type ButtonSize = 'default' | 'sm' | 'lg' | 'icon';
3
+ export type ButtonType = 'button' | 'submit' | 'reset' | 'menu';
@@ -0,0 +1,25 @@
1
+ import { LitElement } from 'lit';
2
+ import * as buttonType from './calendar.type';
3
+ export declare class Calendar extends LitElement {
4
+ static styles: import("lit").CSSResult;
5
+ static buttonVariants: (props?: ({
6
+ variant?: "outline" | null | undefined;
7
+ size?: "default" | null | undefined;
8
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
9
+ currentDate: Date;
10
+ selectedDate: Date;
11
+ variant: buttonType.ButtonVariant;
12
+ size: buttonType.ButtonSize;
13
+ styleCalendar: boolean;
14
+ twCLass: string;
15
+ getDaysInMonth(year: number, month: number): number;
16
+ previousMonth(): void;
17
+ nextMonth(): void;
18
+ selectDate(day: number, isInactive: boolean): void;
19
+ render(): import("lit-html").TemplateResult<1>;
20
+ }
21
+ declare global {
22
+ interface HTMLElementTagNameMap {
23
+ 'rtg-calendar': Calendar;
24
+ }
25
+ }
@@ -0,0 +1,4 @@
1
+ import { Meta, StoryFn } from '@storybook/web-components';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ export declare const Calendar: StoryFn;
@@ -0,0 +1,4 @@
1
+ export declare const buttonStyle: (props?: ({
2
+ variant?: "outline" | null | undefined;
3
+ size?: "default" | null | undefined;
4
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
@@ -0,0 +1,2 @@
1
+ export type ButtonVariant = 'outline';
2
+ export type ButtonSize = 'default';
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class CardContent extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class CardDescription extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class CardFooter extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class CardHeader extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class CardTitle extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
@@ -0,0 +1,21 @@
1
+ import { LitElement } from 'lit';
2
+ import { CardTitle } from './card-title';
3
+ import { CardHeader } from './card-header';
4
+ import { CardFooter } from './card-footer';
5
+ import { CardDescription } from './card-description';
6
+ import { CardContent } from './card-content';
7
+ declare class Card extends LitElement {
8
+ static styles: import("lit").CSSResult[];
9
+ render(): import("lit-html").TemplateResult<1>;
10
+ }
11
+ export { Card, CardTitle, CardHeader, CardFooter, CardDescription, CardContent, };
12
+ declare global {
13
+ interface HTMLElementTagNameMap {
14
+ 'rtg-card': Card;
15
+ 'rtg-card-title': CardTitle;
16
+ 'rtg-card-header': CardHeader;
17
+ 'rtg-card-footer': CardFooter;
18
+ 'rtg-card-description': CardDescription;
19
+ 'rtg-card-content': CardContent;
20
+ }
21
+ }
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/web-components';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ type Story = StoryObj;
5
+ export declare const Cards: Story;
@@ -0,0 +1,21 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class Carousel extends LitElement {
3
+ static styles: import("lit").CSSResult;
4
+ currentIndex: number;
5
+ items: never[];
6
+ twCLass: string;
7
+ orientation: string;
8
+ size: boolean;
9
+ slides: HTMLElement;
10
+ nextSlide(): void;
11
+ prevSlide(): void;
12
+ updateSlides(): void;
13
+ connectedCallback(): void;
14
+ disconnectedCallback(): void;
15
+ render(): import("lit-html").TemplateResult<1>;
16
+ }
17
+ declare global {
18
+ interface HTMLElementTagNameMap {
19
+ 'rtg-carousel': Carousel;
20
+ }
21
+ }
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryFn } from '@storybook/web-components';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ export declare const Carousel: StoryFn;
5
+ export declare const CarouselSize: StoryFn;
6
+ export declare const CarouselOrientation: StoryFn;
@@ -0,0 +1,19 @@
1
+ import { LitElement } from 'lit';
2
+ import { CheckboxProperties } from './checkbox.type';
3
+ export declare class Checkbox extends LitElement implements CheckboxProperties {
4
+ disabled: boolean;
5
+ checked: boolean;
6
+ type: string;
7
+ value: string;
8
+ required: boolean;
9
+ twCLass: string;
10
+ static styles: import("lit").CSSResult[];
11
+ private _onClick;
12
+ click(): void;
13
+ render(): import("lit-html").TemplateResult<1>;
14
+ }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ 'rtg-checkbox': Checkbox;
18
+ }
19
+ }
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryFn } from '@storybook/web-components';
2
+ declare const _default: Meta;
3
+ export default _default;
4
+ export declare const CheckboxWithRequired: StoryFn;
5
+ export declare const Checkbox: StoryFn;
6
+ export declare const CheckboxWithValue: StoryFn;
@@ -0,0 +1,2 @@
1
+ export declare const checkboxStyles = "peer h-4 w-4 align-middle shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground";
2
+ export declare const iconStyles = "flex items-center justify-center text-current pointer-events-none";
@@ -0,0 +1,21 @@
1
+ export type CheckboxProperties = {
2
+ disabled: boolean;
3
+ checked: boolean;
4
+ };
5
+ export type CheckboxArgs = {
6
+ disabled: boolean;
7
+ checked: boolean;
8
+ label: string;
9
+ };
10
+ export type CheckboxWithRequiredArgs = {
11
+ disabled: boolean;
12
+ checked: boolean;
13
+ required: boolean;
14
+ label: string;
15
+ value?: string;
16
+ };
17
+ export type CheckboxWithValueArgs = {
18
+ disabled: boolean;
19
+ value: string;
20
+ label: string;
21
+ };
@@ -0,0 +1,11 @@
1
+ import { BaseElement } from '../../../helpers';
2
+ export declare class CollapsibleContent extends BaseElement {
3
+ static styles: import("lit").CSSResult[];
4
+ protected getAttributesToExclude(): string[];
5
+ render(): import("lit-html").TemplateResult<1>;
6
+ }
7
+ declare global {
8
+ interface HTMLElementTagNameMap {
9
+ 'rtg-collapsible-content': CollapsibleContent;
10
+ }
11
+ }
@@ -0,0 +1,14 @@
1
+ import { BaseElement } from '../../../helpers';
2
+ import { Collapsible } from './collapsible.atom';
3
+ export declare class CollapsibleTrigger extends BaseElement {
4
+ static styles: import("lit").CSSResult[];
5
+ protected getAttributesToExclude(): string[];
6
+ get _collapsible(): Collapsible | null;
7
+ onTrigger(): void;
8
+ render(): import("lit-html").TemplateResult<1>;
9
+ }
10
+ declare global {
11
+ interface HTMLElementTagNameMap {
12
+ 'rtg-collapsible-trigger': CollapsibleTrigger;
13
+ }
14
+ }
@@ -0,0 +1,17 @@
1
+ import { BaseElement } from '../../../helpers';
2
+ import { CollapsibleTrigger } from './collapsible-trigger';
3
+ import { CollapsibleContent } from './collapsible-content';
4
+ declare class Collapsible extends BaseElement {
5
+ static styles: import("lit").CSSResult[];
6
+ open: boolean;
7
+ onOpenChange: () => void;
8
+ twCLass: string;
9
+ protected getAttributesToExclude(): string[];
10
+ render(): import("lit-html").TemplateResult<1>;
11
+ }
12
+ export { Collapsible, CollapsibleTrigger, CollapsibleContent };
13
+ declare global {
14
+ interface HTMLElementTagNameMap {
15
+ 'rtg-collapsible': Collapsible;
16
+ }
17
+ }
@@ -0,0 +1,5 @@
1
+ import type { Meta, StoryObj } from '@storybook/web-components';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const DefaultCollapsible: Story;
@@ -0,0 +1,11 @@
1
+ import { LitElement } from 'lit';
2
+ declare class ComboBoxEmpty extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
6
+ export { ComboBoxEmpty };
7
+ declare global {
8
+ interface HTMLElementTagNameMap {
9
+ 'rtg-combo-box-empty': ComboBoxEmpty;
10
+ }
11
+ }