@profiq/ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (237) hide show
  1. package/README.md +36 -0
  2. package/dist/components/custom/basic/accordion.d.ts +31 -0
  3. package/dist/components/custom/basic/accordion.d.ts.map +1 -0
  4. package/dist/components/custom/basic/accordion.js +68 -0
  5. package/dist/components/custom/basic/button.d.ts +16 -0
  6. package/dist/components/custom/basic/button.d.ts.map +1 -0
  7. package/dist/components/custom/basic/button.js +46 -0
  8. package/dist/components/custom/basic/input.d.ts +22 -0
  9. package/dist/components/custom/basic/input.d.ts.map +1 -0
  10. package/dist/components/custom/basic/input.js +106 -0
  11. package/dist/components/custom/basic/select.d.ts +18 -0
  12. package/dist/components/custom/basic/select.d.ts.map +1 -0
  13. package/dist/components/custom/basic/select.js +67 -0
  14. package/dist/components/custom/basic/slider.d.ts +24 -0
  15. package/dist/components/custom/basic/slider.d.ts.map +1 -0
  16. package/dist/components/custom/basic/slider.js +54 -0
  17. package/dist/components/custom/basic/switch.d.ts +17 -0
  18. package/dist/components/custom/basic/switch.d.ts.map +1 -0
  19. package/dist/components/custom/basic/switch.js +105 -0
  20. package/dist/components/custom/basic/table.d.ts +9 -0
  21. package/dist/components/custom/basic/table.d.ts.map +1 -0
  22. package/dist/components/custom/basic/table.js +74 -0
  23. package/dist/components/custom/basic/text.d.ts +10 -0
  24. package/dist/components/custom/basic/text.d.ts.map +1 -0
  25. package/dist/components/custom/basic/text.js +26 -0
  26. package/dist/components/custom/basic/textarea.d.ts +7 -0
  27. package/dist/components/custom/basic/textarea.d.ts.map +1 -0
  28. package/dist/components/custom/basic/textarea.js +24 -0
  29. package/dist/components/custom/icons/Backpack.d.ts +3 -0
  30. package/dist/components/custom/icons/Backpack.d.ts.map +1 -0
  31. package/dist/components/custom/icons/Backpack.js +28 -0
  32. package/dist/components/custom/icons/CaretDown.d.ts +3 -0
  33. package/dist/components/custom/icons/CaretDown.d.ts.map +1 -0
  34. package/dist/components/custom/icons/CaretDown.js +20 -0
  35. package/dist/components/custom/icons/CaretUp.d.ts +3 -0
  36. package/dist/components/custom/icons/CaretUp.d.ts.map +1 -0
  37. package/dist/components/custom/icons/CaretUp.js +20 -0
  38. package/dist/components/custom/icons/DotsVertical.d.ts +3 -0
  39. package/dist/components/custom/icons/DotsVertical.d.ts.map +1 -0
  40. package/dist/components/custom/icons/DotsVertical.js +28 -0
  41. package/dist/components/custom/icons/HamburgerMenu.d.ts +3 -0
  42. package/dist/components/custom/icons/HamburgerMenu.d.ts.map +1 -0
  43. package/dist/components/custom/icons/HamburgerMenu.js +28 -0
  44. package/dist/components/custom/icons/Home.d.ts +3 -0
  45. package/dist/components/custom/icons/Home.d.ts.map +1 -0
  46. package/dist/components/custom/icons/Home.js +28 -0
  47. package/dist/components/custom/icons/Icons.d.ts +27 -0
  48. package/dist/components/custom/icons/Icons.d.ts.map +1 -0
  49. package/dist/components/custom/icons/Icons.js +23 -0
  50. package/dist/components/custom/icons/MagnifyingGlass.d.ts +3 -0
  51. package/dist/components/custom/icons/MagnifyingGlass.d.ts.map +1 -0
  52. package/dist/components/custom/icons/MagnifyingGlass.js +24 -0
  53. package/dist/components/custom/icons/Moon.d.ts +3 -0
  54. package/dist/components/custom/icons/Moon.d.ts.map +1 -0
  55. package/dist/components/custom/icons/Moon.js +28 -0
  56. package/dist/components/custom/icons/Sun.d.ts +3 -0
  57. package/dist/components/custom/icons/Sun.d.ts.map +1 -0
  58. package/dist/components/custom/icons/Sun.js +28 -0
  59. package/dist/components/custom/icons/logo/Profiq.d.ts +6 -0
  60. package/dist/components/custom/icons/logo/Profiq.d.ts.map +1 -0
  61. package/dist/components/custom/icons/logo/Profiq.js +92 -0
  62. package/dist/components/custom/icons/logo/logoVariations.d.ts +10 -0
  63. package/dist/components/custom/icons/logo/logoVariations.d.ts.map +1 -0
  64. package/dist/components/custom/icons/logo/logoVariations.js +65 -0
  65. package/dist/components/ui/accordion.d.ts +8 -0
  66. package/dist/components/ui/accordion.d.ts.map +1 -0
  67. package/dist/components/ui/accordion.js +65 -0
  68. package/dist/components/ui/button.d.ts +8 -0
  69. package/dist/components/ui/button.d.ts.map +1 -0
  70. package/dist/components/ui/button.js +29 -0
  71. package/dist/components/ui/buttonVariants.d.ts +5 -0
  72. package/dist/components/ui/buttonVariants.d.ts.map +1 -0
  73. package/dist/components/ui/buttonVariants.js +33 -0
  74. package/dist/components/ui/field.d.ts +25 -0
  75. package/dist/components/ui/field.d.ts.map +1 -0
  76. package/dist/components/ui/field.js +221 -0
  77. package/dist/components/ui/input.d.ts +4 -0
  78. package/dist/components/ui/input.d.ts.map +1 -0
  79. package/dist/components/ui/input.js +22 -0
  80. package/dist/components/ui/label.d.ts +5 -0
  81. package/dist/components/ui/label.d.ts.map +1 -0
  82. package/dist/components/ui/label.js +23 -0
  83. package/dist/components/ui/select.d.ts +16 -0
  84. package/dist/components/ui/select.d.ts.map +1 -0
  85. package/dist/components/ui/select.js +181 -0
  86. package/dist/components/ui/separator.d.ts +5 -0
  87. package/dist/components/ui/separator.d.ts.map +1 -0
  88. package/dist/components/ui/separator.js +27 -0
  89. package/dist/components/ui/slider.d.ts +13 -0
  90. package/dist/components/ui/slider.d.ts.map +1 -0
  91. package/dist/components/ui/slider.js +101 -0
  92. package/dist/components/ui/switch.d.ts +8 -0
  93. package/dist/components/ui/switch.d.ts.map +1 -0
  94. package/dist/components/ui/switch.js +36 -0
  95. package/dist/components/ui/table.d.ts +11 -0
  96. package/dist/components/ui/table.d.ts.map +1 -0
  97. package/dist/components/ui/table.js +115 -0
  98. package/dist/components/ui/textarea.d.ts +4 -0
  99. package/dist/components/ui/textarea.d.ts.map +1 -0
  100. package/dist/components/ui/textarea.js +19 -0
  101. package/dist/components/ui/tooltip.d.ts +10 -0
  102. package/dist/components/ui/tooltip.d.ts.map +1 -0
  103. package/dist/components/ui/tooltip.js +66 -0
  104. package/dist/fonts/Franklin_Gothic/FRANKGO.ttf +0 -0
  105. package/dist/fonts/Franklin_Gothic/Franklin Gothic Condensed.ttf +0 -0
  106. package/dist/fonts/Franklin_Gothic/FranklinGothic.ttf +0 -0
  107. package/dist/fonts/Franklin_Gothic/FranklinGothicITALIC.ttf +0 -0
  108. package/dist/fonts/Franklin_Gothic/fgwo____.ttf +0 -0
  109. package/dist/fonts/Roboto_Slab/LICENSE.txt +202 -0
  110. package/dist/fonts/Roboto_Slab/README.txt +71 -0
  111. package/dist/fonts/Roboto_Slab/RobotoSlab-VariableFont_wght.ttf +0 -0
  112. package/dist/fonts/Roboto_Slab/static/RobotoSlab-Black.ttf +0 -0
  113. package/dist/fonts/Roboto_Slab/static/RobotoSlab-Bold.ttf +0 -0
  114. package/dist/fonts/Roboto_Slab/static/RobotoSlab-ExtraBold.ttf +0 -0
  115. package/dist/fonts/Roboto_Slab/static/RobotoSlab-ExtraLight.ttf +0 -0
  116. package/dist/fonts/Roboto_Slab/static/RobotoSlab-Light.ttf +0 -0
  117. package/dist/fonts/Roboto_Slab/static/RobotoSlab-Medium.ttf +0 -0
  118. package/dist/fonts/Roboto_Slab/static/RobotoSlab-Regular.ttf +0 -0
  119. package/dist/fonts/Roboto_Slab/static/RobotoSlab-SemiBold.ttf +0 -0
  120. package/dist/fonts/Roboto_Slab/static/RobotoSlab-Thin.ttf +0 -0
  121. package/dist/index.css +571 -0
  122. package/dist/index.js +11 -0
  123. package/dist/lib/baseProps.d.ts +9 -0
  124. package/dist/lib/baseProps.d.ts.map +1 -0
  125. package/dist/lib/baseProps.js +13 -0
  126. package/dist/lib/buttonVariants.d.ts +3 -0
  127. package/dist/lib/buttonVariants.d.ts.map +1 -0
  128. package/dist/lib/hooks/useMakeTestId.d.ts +34 -0
  129. package/dist/lib/hooks/useMakeTestId.d.ts.map +1 -0
  130. package/dist/lib/hooks/useMakeTestId.js +26 -0
  131. package/dist/lib/index.d.ts +6 -0
  132. package/dist/lib/index.d.ts.map +1 -0
  133. package/dist/lib/text.types.d.ts +6 -0
  134. package/dist/lib/text.types.d.ts.map +1 -0
  135. package/dist/lib/text.types.js +17 -0
  136. package/dist/lib/utils.d.ts +3 -0
  137. package/dist/lib/utils.d.ts.map +1 -0
  138. package/dist/lib/utils.js +8 -0
  139. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +532 -0
  140. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +402 -0
  141. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +208 -0
  142. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +136 -0
  143. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +130 -0
  144. package/dist/node_modules/@radix-ui/number/dist/index.js +6 -0
  145. package/dist/node_modules/@radix-ui/primitive/dist/index.js +9 -0
  146. package/dist/node_modules/@radix-ui/react-accordion/dist/index.js +235 -0
  147. package/dist/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  148. package/dist/node_modules/@radix-ui/react-accordion/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  149. package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +24 -0
  150. package/dist/node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  151. package/dist/node_modules/@radix-ui/react-arrow/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  152. package/dist/node_modules/@radix-ui/react-collapsible/dist/index.js +120 -0
  153. package/dist/node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  154. package/dist/node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  155. package/dist/node_modules/@radix-ui/react-collection/dist/index.js +50 -0
  156. package/dist/node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  157. package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +29 -0
  158. package/dist/node_modules/@radix-ui/react-context/dist/index.js +53 -0
  159. package/dist/node_modules/@radix-ui/react-direction/dist/index.js +10 -0
  160. package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +127 -0
  161. package/dist/node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-primitive/dist/index.js +36 -0
  162. package/dist/node_modules/@radix-ui/react-dismissable-layer/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  163. package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +17 -0
  164. package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +136 -0
  165. package/dist/node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  166. package/dist/node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  167. package/dist/node_modules/@radix-ui/react-id/dist/index.js +13 -0
  168. package/dist/node_modules/@radix-ui/react-label/dist/index.js +19 -0
  169. package/dist/node_modules/@radix-ui/react-popper/dist/index.js +219 -0
  170. package/dist/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  171. package/dist/node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  172. package/dist/node_modules/@radix-ui/react-portal/dist/index.js +15 -0
  173. package/dist/node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  174. package/dist/node_modules/@radix-ui/react-portal/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  175. package/dist/node_modules/@radix-ui/react-presence/dist/index.js +70 -0
  176. package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  177. package/dist/node_modules/@radix-ui/react-select/dist/index.js +848 -0
  178. package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  179. package/dist/node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  180. package/dist/node_modules/@radix-ui/react-separator/dist/index.js +24 -0
  181. package/dist/node_modules/@radix-ui/react-slider/dist/index.js +436 -0
  182. package/dist/node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  183. package/dist/node_modules/@radix-ui/react-slider/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  184. package/dist/node_modules/@radix-ui/react-slot/dist/index.js +61 -0
  185. package/dist/node_modules/@radix-ui/react-switch/dist/index.js +132 -0
  186. package/dist/node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  187. package/dist/node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  188. package/dist/node_modules/@radix-ui/react-tooltip/dist/index.js +338 -0
  189. package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  190. package/dist/node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-slot/dist/index.js +55 -0
  191. package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +10 -0
  192. package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +52 -0
  193. package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +14 -0
  194. package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +6 -0
  195. package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +8 -0
  196. package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +27 -0
  197. package/dist/node_modules/@radix-ui/react-visually-hidden/dist/index.js +32 -0
  198. package/dist/node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
  199. package/dist/node_modules/@radix-ui/react-visually-hidden/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
  200. package/dist/node_modules/@tanstack/react-table/build/lib/index.js +88 -0
  201. package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1667 -0
  202. package/dist/node_modules/aria-hidden/dist/es2015/index.js +52 -0
  203. package/dist/node_modules/class-variance-authority/dist/index.js +35 -0
  204. package/dist/node_modules/clsx/dist/clsx.js +16 -0
  205. package/dist/node_modules/get-nonce/dist/es2015/index.js +7 -0
  206. package/dist/node_modules/lucide-react/dist/esm/Icon.js +36 -0
  207. package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +23 -0
  208. package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +14 -0
  209. package/dist/node_modules/lucide-react/dist/esm/icons/check.js +6 -0
  210. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +6 -0
  211. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.js +6 -0
  212. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils/hasA11yProp.js +9 -0
  213. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils/mergeClasses.js +4 -0
  214. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils/toCamelCase.js +7 -0
  215. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils/toKebabCase.js +4 -0
  216. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils/toPascalCase.js +8 -0
  217. package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +11 -0
  218. package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +115 -0
  219. package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +31 -0
  220. package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +16 -0
  221. package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +68 -0
  222. package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +5 -0
  223. package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +7 -0
  224. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +71 -0
  225. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +7 -0
  226. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +25 -0
  227. package/dist/node_modules/react-style-singleton/dist/es2015/component.js +11 -0
  228. package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +15 -0
  229. package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +30 -0
  230. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +2924 -0
  231. package/dist/node_modules/tslib/tslib.es6.js +27 -0
  232. package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +6 -0
  233. package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +26 -0
  234. package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +25 -0
  235. package/dist/node_modules/use-sidecar/dist/es2015/exports.js +18 -0
  236. package/dist/node_modules/use-sidecar/dist/es2015/medium.js +67 -0
  237. package/package.json +124 -0
@@ -0,0 +1,74 @@
1
+ import { jsxs as T, jsx as d } from "react/jsx-runtime";
2
+ import { useReactTable as g, flexRender as s } from "../../../node_modules/@tanstack/react-table/build/lib/index.js";
3
+ import { Table as R, TableHeader as f, TableRow as i, TableHead as h, TableBody as u, TableCell as r } from "../../ui/table.js";
4
+ import { useMakeTestId as C } from "../../../lib/hooks/useMakeTestId.js";
5
+ import { getCoreRowModel as w } from "../../../node_modules/@tanstack/table-core/build/lib/index.js";
6
+ function I({
7
+ theme: n,
8
+ ariaLabel: m,
9
+ className: c,
10
+ dataTestId: b,
11
+ columns: o,
12
+ data: p
13
+ }) {
14
+ const t = C("Table", b), l = g({
15
+ data: p,
16
+ columns: o,
17
+ getCoreRowModel: w()
18
+ });
19
+ return /* @__PURE__ */ T(
20
+ R,
21
+ {
22
+ "data-testid": t(),
23
+ className: `${n} ${c}`,
24
+ "aria-label": m,
25
+ children: [
26
+ /* @__PURE__ */ d(f, { "data-testid": t("Header"), children: l.getHeaderGroups().map((a) => /* @__PURE__ */ d(
27
+ i,
28
+ {
29
+ "data-testid": t(`Row${a.id}`),
30
+ children: a.headers.map((e) => /* @__PURE__ */ d(
31
+ h,
32
+ {
33
+ "data-testid": t(`Head${e.id}`),
34
+ children: e.isPlaceholder ? null : s(
35
+ e.column.columnDef.header,
36
+ e.getContext()
37
+ )
38
+ },
39
+ e.id
40
+ ))
41
+ },
42
+ a.id
43
+ )) }),
44
+ /* @__PURE__ */ d(u, { "data-testid": t("Body"), children: l.getRowModel().rows?.length ? l.getRowModel().rows.map((a) => /* @__PURE__ */ d(
45
+ i,
46
+ {
47
+ "data-state": a.getIsSelected() && "selected",
48
+ "data-testid": t(`Row${a.id}`),
49
+ children: a.getVisibleCells().map((e) => /* @__PURE__ */ d(
50
+ r,
51
+ {
52
+ "data-testid": t(`Cell${e.id}`),
53
+ children: s(e.column.columnDef.cell, e.getContext())
54
+ },
55
+ e.id
56
+ ))
57
+ },
58
+ a.id
59
+ )) : /* @__PURE__ */ d(i, { "data-testid": t("RowEmpty"), children: /* @__PURE__ */ d(
60
+ r,
61
+ {
62
+ colSpan: o.length,
63
+ "data-testid": t("CellEmpty"),
64
+ className: "h-24 text-center",
65
+ children: "No results."
66
+ }
67
+ ) }) })
68
+ ]
69
+ }
70
+ );
71
+ }
72
+ export {
73
+ I as Table
74
+ };
@@ -0,0 +1,10 @@
1
+ import { BaseProps } from '../../lib/baseProps';
2
+ import { TextAs, TextSize, TextWeight } from '../../lib/text.types';
3
+ export type TextProps = BaseProps & {
4
+ as: TextAs;
5
+ size?: TextSize;
6
+ weight?: TextWeight;
7
+ children?: React.ReactNode;
8
+ };
9
+ export declare function Text({ dataTestId, theme, ariaLabel, className, children, as, size, weight, }: TextProps): import("react/jsx-runtime").JSX.Element;
10
+ //# sourceMappingURL=text.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../../src/stories/basic/text.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EACL,KAAK,MAAM,EACX,KAAK,QAAQ,EACb,KAAK,UAAU,EAGhB,MAAM,kBAAkB,CAAC;AAE1B,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,MAAM,CAAC,EAAE,UAAU,CAAC;IACpB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEF,wBAAgB,IAAI,CAAC,EACnB,UAAU,EACV,KAAK,EACL,SAAS,EACT,SAAS,EAET,QAAQ,EAER,EAAE,EACF,IAAI,EACJ,MAAM,GACP,EAAE,SAAS,2CAaX"}
@@ -0,0 +1,26 @@
1
+ import { jsx as m } from "react/jsx-runtime";
2
+ import { sizeClasses as d, weightClasses as n } from "../../../lib/text.types.js";
3
+ function p({
4
+ dataTestId: t,
5
+ theme: o,
6
+ ariaLabel: e,
7
+ className: r,
8
+ children: i,
9
+ as: l,
10
+ size: a,
11
+ weight: s
12
+ }) {
13
+ return /* @__PURE__ */ m(
14
+ l,
15
+ {
16
+ "data-testid": t,
17
+ className: `${o} ${r} ${a !== void 0 ? d[a] : ""}
18
+ ${s !== void 0 ? n[s] : ""}`,
19
+ "aria-label": e,
20
+ children: i
21
+ }
22
+ );
23
+ }
24
+ export {
25
+ p as Text
26
+ };
@@ -0,0 +1,7 @@
1
+ import { BaseProps } from '../../lib/baseProps';
2
+ type TextareaProps = BaseProps & {
3
+ placeholder: string;
4
+ };
5
+ export declare function Textarea({ placeholder, theme, ariaLabel, className, dataTestId, }: TextareaProps): import("react/jsx-runtime").JSX.Element;
6
+ export {};
7
+ //# sourceMappingURL=textarea.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"textarea.d.ts","sourceRoot":"","sources":["../../../src/stories/basic/textarea.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAIjD,KAAK,aAAa,GAAG,SAAS,GAAG;IAC/B,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,wBAAgB,QAAQ,CAAC,EACvB,WAAgB,EAChB,KAAK,EACL,SAAS,EACT,SAAS,EACT,UAAU,GACX,EAAE,aAAa,2CAUf"}
@@ -0,0 +1,24 @@
1
+ import { jsx as m } from "react/jsx-runtime";
2
+ import { Textarea as i } from "../../ui/textarea.js";
3
+ import { useMakeTestId as d } from "../../../lib/hooks/useMakeTestId.js";
4
+ function n({
5
+ placeholder: e = "",
6
+ theme: a,
7
+ ariaLabel: t,
8
+ className: r,
9
+ dataTestId: o
10
+ }) {
11
+ const s = d("Textarea", o);
12
+ return /* @__PURE__ */ m(
13
+ i,
14
+ {
15
+ className: `${r} ${a} overflow-hidden`,
16
+ placeholder: e,
17
+ "data-testid": s(),
18
+ "aria-label": t
19
+ }
20
+ );
21
+ }
22
+ export {
23
+ n as Textarea
24
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function Backpack({ height, width, className, dataTestId, }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=Backpack.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Backpack.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/Backpack.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAGzC,wBAAgB,QAAQ,CAAC,EACvB,MAAW,EACX,KAAU,EACV,SAAc,EACd,UAAU,GACX,EAAE,SAAS,2CAiBX"}
@@ -0,0 +1,28 @@
1
+ import { jsx as c } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useMakeTestId as s } from "../../../lib/hooks/useMakeTestId.js";
4
+ function l({
5
+ height: a = 24,
6
+ width: t = 24,
7
+ className: o = "",
8
+ dataTestId: r
9
+ }) {
10
+ const e = s("Icon", r);
11
+ return /* @__PURE__ */ c(
12
+ "svg",
13
+ {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ viewBox: "0 0 15 15",
16
+ width: t,
17
+ height: a,
18
+ fill: "currentColor",
19
+ style: { opacity: 1, width: t, height: a },
20
+ className: o,
21
+ "data-testid": e("Backpack"),
22
+ children: /* @__PURE__ */ c("path", { d: "M9 0a1 1 0 0 1 1 1v1h4a1 1 0 0 1 1 1v3a3 3 0 0 1-1 2.234V11.5a1.5 1.5 0 0 1-1.5 1.5h-10A1.5 1.5 0 0 1 1 11.5V8.233A3 3 0 0 1 0 6V3a1 1 0 0 1 1-1h4V1a1 1 0 0 1 1-1zm4 8.827c-.313.11-.65.173-1 .173H8v.5a.5.5 0 0 1-1 0V9H3c-.35 0-.687-.062-1-.173V11.5a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5zM1 6c0 .654.313 1.235.8 1.6l.13.09c.31.196.676.31 1.07.31h4v-.5a.5.5 0 0 1 1 0V8h4c.45 0 .866-.148 1.2-.4l.174-.147C13.76 7.088 14 6.573 14 6V3H1zm5-4h3V1H6z" })
23
+ }
24
+ );
25
+ }
26
+ export {
27
+ l as Backpack
28
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function CaretDown({ width, height, className }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=CaretDown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CaretDown.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/CaretDown.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,wBAAgB,SAAS,CAAC,EAAE,KAAU,EAAE,MAAW,EAAE,SAAS,EAAE,EAAE,SAAS,2CAc1E"}
@@ -0,0 +1,20 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ import "react";
3
+ function e({ width: r = 24, height: o = 24, className: t }) {
4
+ return /* @__PURE__ */ l(
5
+ "svg",
6
+ {
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 15 15",
9
+ width: r,
10
+ height: o,
11
+ fill: "currentColor",
12
+ style: { opacity: 1, width: r, height: o },
13
+ className: t,
14
+ children: /* @__PURE__ */ l("path", { d: "M7.5 9.95a.45.45 0 0 0 .319-.132l3-3a.45.45 0 0 0-.637-.637L7.5 8.863L4.82 6.181l-.07-.057a.451.451 0 0 0-.625.624l.058.07l3 3a.45.45 0 0 0 .318.132" })
15
+ }
16
+ );
17
+ }
18
+ export {
19
+ e as CaretDown
20
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function CaretUp({ width, height, className }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=CaretUp.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CaretUp.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/CaretUp.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,wBAAgB,OAAO,CAAC,EAAE,KAAU,EAAE,MAAW,EAAE,SAAS,EAAE,EAAE,SAAS,2CAcxE"}
@@ -0,0 +1,20 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import "react";
3
+ function e({ width: r = 24, height: l = 24, className: t }) {
4
+ return /* @__PURE__ */ o(
5
+ "svg",
6
+ {
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 15 15",
9
+ width: r,
10
+ height: l,
11
+ fill: "currentColor",
12
+ style: { opacity: 1, width: r, height: l },
13
+ className: t,
14
+ children: /* @__PURE__ */ o("path", { d: "M7.5 5.05a.45.45 0 0 1 .319.132l3 3a.45.45 0 0 1-.637.637L7.5 6.137L4.82 8.819l-.07.057a.451.451 0 0 1-.625-.624l.058-.07l3-3A.45.45 0 0 1 7.5 5.05" })
15
+ }
16
+ );
17
+ }
18
+ export {
19
+ e as CaretUp
20
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function DotsVertical({ width, height, className, dataTestId, }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=DotsVertical.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DotsVertical.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/DotsVertical.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAGzC,wBAAgB,YAAY,CAAC,EAC3B,KAAU,EACV,MAAW,EACX,SAAS,EACT,UAAU,GACX,EAAE,SAAS,2CAiBX"}
@@ -0,0 +1,28 @@
1
+ import { jsx as r } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useMakeTestId as i } from "../../../lib/hooks/useMakeTestId.js";
4
+ function n({
5
+ width: t = 24,
6
+ height: o = 24,
7
+ className: a,
8
+ dataTestId: e
9
+ }) {
10
+ const s = i("Icon", e);
11
+ return /* @__PURE__ */ r(
12
+ "svg",
13
+ {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ viewBox: "0 0 15 15",
16
+ width: t,
17
+ height: o,
18
+ fill: "currentColor",
19
+ style: { opacity: 1, width: t, height: o },
20
+ className: a,
21
+ "data-testid": s("DotsVertical"),
22
+ children: /* @__PURE__ */ r("path", { d: "M7.5 11.375a1.125 1.125 0 1 1 0 2.25a1.125 1.125 0 0 1 0-2.25m0-5a1.125 1.125 0 1 1 0 2.25a1.125 1.125 0 0 1 0-2.25m0-5a1.125 1.125 0 1 1 0 2.25a1.125 1.125 0 0 1 0-2.25" })
23
+ }
24
+ );
25
+ }
26
+ export {
27
+ n as DotsVertical
28
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function HamburgerMenu({ width, height, className, dataTestId, }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=HamburgerMenu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HamburgerMenu.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/HamburgerMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAGzC,wBAAgB,aAAa,CAAC,EAC5B,KAAU,EACV,MAAW,EACX,SAAS,EACT,UAAU,GACX,EAAE,SAAS,2CAgBX"}
@@ -0,0 +1,28 @@
1
+ import { jsx as e } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useMakeTestId as n } from "../../../lib/hooks/useMakeTestId.js";
4
+ function i({
5
+ width: r = 24,
6
+ height: t = 24,
7
+ className: a,
8
+ dataTestId: o
9
+ }) {
10
+ const m = n("Icon", o);
11
+ return /* @__PURE__ */ e(
12
+ "svg",
13
+ {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ viewBox: "0 0 15 15",
16
+ width: r,
17
+ height: t,
18
+ fill: "currentColor",
19
+ style: { opacity: 1, width: r, height: t },
20
+ className: a,
21
+ "data-testid": m("HamburgerMenu"),
22
+ children: /* @__PURE__ */ e("path", { d: "M13.6 11.01a.5.5 0 0 1 0 .98l-.1.01h-12a.5.5 0 0 1 0-1h12zm0-4a.5.5 0 0 1 0 .98l-.1.01h-12a.5.5 0 0 1 0-1h12zm0-4a.5.5 0 0 1 0 .98l-.1.01h-12a.5.5 0 0 1 0-1h12z" })
23
+ }
24
+ );
25
+ }
26
+ export {
27
+ i as HamburgerMenu
28
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function Home({ width, height, className, dataTestId, }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=Home.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Home.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/Home.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAGzC,wBAAgB,IAAI,CAAC,EACnB,KAAU,EACV,MAAW,EACX,SAAS,EACT,UAAU,GACX,EAAE,SAAS,2CAgBX"}
@@ -0,0 +1,28 @@
1
+ import { jsx as l } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useMakeTestId as s } from "../../../lib/hooks/useMakeTestId.js";
4
+ function p({
5
+ width: o = 24,
6
+ height: t = 24,
7
+ className: e,
8
+ dataTestId: r
9
+ }) {
10
+ const a = s("Icon", r);
11
+ return /* @__PURE__ */ l(
12
+ "svg",
13
+ {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ viewBox: "0 0 15 15",
16
+ width: o,
17
+ height: t,
18
+ fill: "currentColor",
19
+ style: { opacity: 1, width: o, height: t },
20
+ className: e,
21
+ "data-testid": a("Home"),
22
+ children: /* @__PURE__ */ l("path", { d: "M7.173.147a.6.6 0 0 1 .748.075l6.75 6.64l.077.093a.6.6 0 0 1-.824.838l-.095-.076l-.83-.816v5.6a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5V6.9l-.828.816a.6.6 0 0 1-.842-.855l6.75-6.64zM3 5.917V12h3V8.5l.01-.1A.5.5 0 0 1 6.5 8h3l.1.01a.5.5 0 0 1 .4.49V12h2V5.917L7.5 1.491zM7 12h2V9H7z" })
23
+ }
24
+ );
25
+ }
26
+ export {
27
+ p as Home
28
+ };
@@ -0,0 +1,27 @@
1
+ import { Backpack } from './Backpack';
2
+ import { DotsVertical } from './DotsVertical';
3
+ import { Home } from './Home';
4
+ import { Moon } from './Moon';
5
+ import { Sun } from './Sun';
6
+ import { CaretDown } from './CaretDown';
7
+ import { CaretUp } from './CaretUp';
8
+ import { MagnifyingGlass } from './MagnifyingGlass';
9
+ export declare const iconMap: {
10
+ readonly none: any;
11
+ readonly backpack: typeof Backpack;
12
+ readonly dotsVertical: typeof DotsVertical;
13
+ readonly home: typeof Home;
14
+ readonly moon: typeof Moon;
15
+ readonly sun: typeof Sun;
16
+ readonly caretDown: typeof CaretDown;
17
+ readonly caretUp: typeof CaretUp;
18
+ readonly magnifyingGlass: typeof MagnifyingGlass;
19
+ };
20
+ export type IconKey = keyof typeof iconMap;
21
+ export type IconProps = {
22
+ width?: number;
23
+ height?: number;
24
+ className?: string;
25
+ dataTestId?: string;
26
+ };
27
+ //# sourceMappingURL=Icons.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/Icons.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpD,eAAO,MAAM,OAAO;;;;;;;;;;CAUgD,CAAC;AAErE,MAAM,MAAM,OAAO,GAAG,MAAM,OAAO,OAAO,CAAC;AAE3C,MAAM,MAAM,SAAS,GAAG;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC"}
@@ -0,0 +1,23 @@
1
+ import "react";
2
+ import { Backpack as o } from "./Backpack.js";
3
+ import { DotsVertical as r } from "./DotsVertical.js";
4
+ import { Home as m } from "./Home.js";
5
+ import { Moon as t } from "./Moon.js";
6
+ import { Sun as i } from "./Sun.js";
7
+ import { CaretDown as a } from "./CaretDown.js";
8
+ import { CaretUp as n } from "./CaretUp.js";
9
+ import { MagnifyingGlass as p } from "./MagnifyingGlass.js";
10
+ const M = {
11
+ none: null,
12
+ backpack: o,
13
+ dotsVertical: r,
14
+ home: m,
15
+ moon: t,
16
+ sun: i,
17
+ caretDown: a,
18
+ caretUp: n,
19
+ magnifyingGlass: p
20
+ };
21
+ export {
22
+ M as iconMap
23
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function MagnifyingGlass({ width, height, className, }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=MagnifyingGlass.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MagnifyingGlass.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/MagnifyingGlass.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,wBAAgB,eAAe,CAAC,EAC9B,KAAU,EACV,MAAW,EACX,SAAS,GACV,EAAE,SAAS,2CAcX"}
@@ -0,0 +1,24 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import "react";
3
+ function i({
4
+ width: l = 24,
5
+ height: r = 24,
6
+ className: t
7
+ }) {
8
+ return /* @__PURE__ */ o(
9
+ "svg",
10
+ {
11
+ xmlns: "http://www.w3.org/2000/svg",
12
+ viewBox: "0 0 15 15",
13
+ width: l,
14
+ height: r,
15
+ fill: "currentColor",
16
+ className: t,
17
+ style: { opacity: 1, width: l, height: r },
18
+ children: /* @__PURE__ */ o("path", { d: "M6.5 2a4.5 4.5 0 0 1 3.515 7.308l2.839 2.839l.064.078a.5.5 0 0 1-.693.693l-.079-.064l-2.838-2.84A4.5 4.5 0 1 1 6.5 2m0 1a3.5 3.5 0 1 0 0 7a3.5 3.5 0 0 0 0-7" })
19
+ }
20
+ );
21
+ }
22
+ export {
23
+ i as MagnifyingGlass
24
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function Moon({ width, height, className, dataTestId, }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=Moon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Moon.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/Moon.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAGzC,wBAAgB,IAAI,CAAC,EACnB,KAAU,EACV,MAAW,EACX,SAAS,EACT,UAAU,GACX,EAAE,SAAS,2CAgBX"}
@@ -0,0 +1,28 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useMakeTestId as c } from "../../../lib/hooks/useMakeTestId.js";
4
+ function n({
5
+ width: l = 24,
6
+ height: a = 24,
7
+ className: t,
8
+ dataTestId: v
9
+ }) {
10
+ const r = c("Icon", v);
11
+ return /* @__PURE__ */ o(
12
+ "svg",
13
+ {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ viewBox: "0 0 15 15",
16
+ width: l,
17
+ height: a,
18
+ fill: "currentColor",
19
+ style: { opacity: 1, width: l, height: a },
20
+ className: t,
21
+ "data-testid": r("Moon"),
22
+ children: /* @__PURE__ */ o("path", { d: "m8.544.982l.292.053l.265.06l.324.09l.253.082l.276.104l.24.101l.113.052l.327.165l.322.185l.292.19l.245.178l.32.26l.223.2l.16.158l.12.124l.163.18l.2.24l.152.2q.307.419.545.883l.075.148l.077.166l.113.268a6.5 6.5 0 0 1 .385 1.415l.036.277q.04.365.04.74a6.6 6.6 0 0 1-6.982 6.588l-.268-.02l-.316-.04a6.6 6.6 0 0 1-1.104-.26l-.243-.086l-.304-.122l-.26-.12l-.263-.135a7 7 0 0 1-.371-.217l-.176-.115l-.187-.13l-.12-.09l-.19-.15l-.259-.225l-.072-.066a7 7 0 0 1-.21-.206c-.15-.154-.03-.405.183-.416q.376-.021.739-.081a6.603 6.603 0 0 0 4.33-10.268c-.122-.176.004-.424.217-.4zm1.288 1.424A7.6 7.6 0 0 1 10.35 6.2l.128.006a1.25 1.25 0 1 1-.786 2.305q-.085.181-.179.358a.75.75 0 1 1-.77 1.17a7.6 7.6 0 0 1-3.66 2.513A5.6 5.6 0 1 0 9.832 2.405M1.5 6.1a.4.4 0 0 1 .4.4v.6h.6l.081.009a.4.4 0 0 1 0 .783l-.08.009h-.6v.6a.401.401 0 0 1-.801 0v-.6H.5a.401.401 0 0 1 0-.801h.6v-.6c0-.22.18-.4.4-.4m4-3a.4.4 0 0 1 .4.4v.6h.6l.081.009a.4.4 0 0 1 0 .783l-.08.009h-.6v.6a.401.401 0 0 1-.801 0v-.6h-.6a.401.401 0 0 1 0-.801h.6v-.6c0-.22.18-.4.4-.4m-3-3a.4.4 0 0 1 .4.4v.6h.6l.081.009a.4.4 0 0 1 0 .783l-.08.009h-.6v.6a.401.401 0 0 1-.801 0v-.6h-.6a.401.401 0 0 1 0-.801h.6V.5c0-.22.18-.4.4-.4" })
23
+ }
24
+ );
25
+ }
26
+ export {
27
+ n as Moon
28
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from './Icons';
2
+ export declare function Sun({ width, height, className, dataTestId, }: IconProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=Sun.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sun.d.ts","sourceRoot":"","sources":["../../../../src/components/custom/icons/Sun.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,SAAS,CAAC;AAGzC,wBAAgB,GAAG,CAAC,EAClB,KAAU,EACV,MAAW,EACX,SAAS,EACT,UAAU,GACX,EAAE,SAAS,2CAgBX"}
@@ -0,0 +1,28 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useMakeTestId as l } from "../../../lib/hooks/useMakeTestId.js";
4
+ function p({
5
+ width: a = 24,
6
+ height: t = 24,
7
+ className: r,
8
+ dataTestId: m
9
+ }) {
10
+ const e = l("Icon", m);
11
+ return /* @__PURE__ */ o(
12
+ "svg",
13
+ {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ viewBox: "0 0 15 15",
16
+ width: a,
17
+ height: t,
18
+ fill: "currentColor",
19
+ style: { opacity: 1, width: a, height: t },
20
+ className: r,
21
+ "data-testid": e("Sun"),
22
+ children: /* @__PURE__ */ o("path", { d: "M7.5 12a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 .5-.5m-3.889-1.318a.5.5 0 0 1 .707.707l-1.415 1.415a.5.5 0 0 1-.707-.707zm7.07 0a.5.5 0 0 1 .708 0l1.415 1.415a.5.5 0 0 1-.707.707l-1.415-1.415a.5.5 0 0 1 0-.707M7.5 4.5a3 3 0 1 1 0 6a3 3 0 0 1 0-6m0 1a2 2 0 1 0 0 4a2 2 0 0 0 0-4M2.5 7a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm12 0a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zM2.196 2.196a.5.5 0 0 1 .707 0l1.415 1.415a.5.5 0 0 1-.707.707L2.196 2.903a.5.5 0 0 1 0-.707m9.9 0a.5.5 0 0 1 .708.707l-1.415 1.415a.5.5 0 0 1-.707-.707zM7.5 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2a.5.5 0 0 1 .5-.5" })
23
+ }
24
+ );
25
+ }
26
+ export {
27
+ p as Sun
28
+ };
@@ -0,0 +1,6 @@
1
+ import { IconProps } from '../Icons';
2
+ import { logoVarUnion } from './logoVariations';
3
+ export declare function Profiq({ width, height, className, dataTestId, variation, }: IconProps & {
4
+ variation: logoVarUnion;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ //# sourceMappingURL=Profiq.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Profiq.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/icons/logo/Profiq.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,UAAU,CAAC;AAG1C,OAAO,EAAkB,KAAK,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAErE,wBAAgB,MAAM,CAAC,EACrB,KAAW,EACX,MAAW,EACX,SAAS,EACT,UAAU,EACV,SAAS,GACV,EAAE,SAAS,GAAG;IAAE,SAAS,EAAE,YAAY,CAAA;CAAE,2CA4DzC"}
@@ -0,0 +1,92 @@
1
+ import { jsxs as t, jsx as o } from "react/jsx-runtime";
2
+ import "react";
3
+ import { useMakeTestId as p } from "../../../../lib/hooks/useMakeTestId.js";
4
+ import { LOGO_COLOR_MAP as C } from "./logoVariations.js";
5
+ function f({
6
+ width: l = 122,
7
+ height: a = 40,
8
+ className: V,
9
+ dataTestId: H,
10
+ variation: r
11
+ }) {
12
+ const i = p("Icon", H), c = C[r].colorPrimary, e = C[r].colorSecondary, n = C[r].colorBackground;
13
+ return /* @__PURE__ */ t(
14
+ "svg",
15
+ {
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ width: l,
18
+ height: a,
19
+ viewBox: "0 0 122 40",
20
+ fill: "none",
21
+ className: V,
22
+ style: {
23
+ opacity: 1,
24
+ width: l,
25
+ height: a,
26
+ "--logo-primary": c,
27
+ "--logo-secondary": e,
28
+ "--logo-bg": n
29
+ },
30
+ "data-testid": i("profiq"),
31
+ children: [
32
+ /* @__PURE__ */ o(
33
+ "rect",
34
+ {
35
+ x: "0",
36
+ y: "0",
37
+ width: "100%",
38
+ height: "100%",
39
+ fill: "var(--logo-bg, transparent)"
40
+ }
41
+ ),
42
+ /* @__PURE__ */ t("g", { transform: "translate(12 5) scale(0.75)", children: [
43
+ /* @__PURE__ */ o(
44
+ "path",
45
+ {
46
+ d: "M51.7044 15.9933C50.9976 15.9959 50.3207 16.2781 49.8214 16.7783C49.3222 17.2785 49.0412 17.956 49.0399 18.6627V23.9949C49.042 24.701 49.3234 25.3777 49.8226 25.8772C50.3217 26.3766 50.9982 26.6584 51.7044 26.661H62.3672C63.0754 26.6606 63.7546 26.379 64.2554 25.8782C64.7562 25.3774 65.0377 24.6983 65.0382 23.99V18.6627C65.0373 17.9547 64.7556 17.276 64.2548 16.7755C63.754 16.2751 63.0751 15.9937 62.3672 15.9933H51.7044ZM62.3672 31.9883H51.7044C49.5852 31.9857 47.5535 31.1427 46.055 29.6442C44.5565 28.1457 43.7135 26.1141 43.7109 23.9949V18.6627C43.714 16.5438 44.5572 14.5125 46.0556 13.0144C47.554 11.5163 49.5854 10.6735 51.7044 10.6709H62.3672C64.4862 10.6731 66.5178 11.5157 68.0164 13.0139C69.5149 14.5122 70.358 16.5436 70.3606 18.6627V23.9949C70.3584 26.1142 69.5156 28.1461 68.017 29.6447C66.5184 31.1433 64.4865 31.9862 62.3672 31.9883Z",
47
+ fill: "var(--logo-primary)"
48
+ }
49
+ ),
50
+ /* @__PURE__ */ o(
51
+ "path",
52
+ {
53
+ d: "M93.2255 10.563H87.8933V31.8902H93.2255V10.563Z",
54
+ fill: "var(--logo-primary)"
55
+ }
56
+ ),
57
+ /* @__PURE__ */ o(
58
+ "path",
59
+ {
60
+ d: "M18.6562 10.6693H7.99342C5.87423 10.6719 3.84258 11.5149 2.34409 13.0134C0.845592 14.5119 0.00259705 16.5435 0 18.6627V39.99H5.33058V21.3288V18.6627C5.33188 17.9549 5.61376 17.2764 6.11444 16.776C6.61512 16.2757 7.29375 15.9942 8.0016 15.9934H18.6644C19.3722 15.9942 20.0509 16.2757 20.5516 16.776C21.0522 17.2764 21.3341 17.9549 21.3354 18.6627V23.9949C21.3332 24.7036 21.0499 25.3825 20.5475 25.8824C20.0452 26.3823 19.3649 26.6624 18.6562 26.6611H7.99669V31.9835H18.6562C20.7755 31.9813 22.8074 31.1384 24.306 29.6399C25.8046 28.1413 26.6475 26.1094 26.6496 23.99V18.6627C26.647 16.5435 25.804 14.5119 24.3056 13.0134C22.8071 11.5149 20.7754 10.6719 18.6562 10.6693Z",
61
+ fill: "var(--logo-primary)"
62
+ }
63
+ ),
64
+ /* @__PURE__ */ o(
65
+ "path",
66
+ {
67
+ d: "M103.273 10.6693H113.936C116.055 10.6719 118.087 11.5149 119.585 13.0134C121.084 14.5119 121.927 16.5435 121.929 18.6627V39.99H116.592V21.3288H116.602V18.6627C116.601 17.9549 116.319 17.2764 115.818 16.776C115.318 16.2757 114.639 15.9942 113.931 15.9934H103.273C102.565 15.9942 101.887 16.2757 101.386 16.776C100.885 17.2764 100.603 17.9549 100.602 18.6627V23.9949C100.604 24.7022 100.887 25.3799 101.387 25.8795C101.888 26.3792 102.566 26.6602 103.273 26.6611H113.931V31.9835H103.273C101.155 31.9813 99.1236 31.1391 97.6251 29.6416C96.1267 28.1441 95.2832 26.1134 95.2798 23.9949V18.6627C95.2824 16.5435 96.1254 14.5119 97.6239 13.0134C99.1224 11.5149 101.154 10.6719 103.273 10.6693Z",
68
+ fill: "var(--logo-secondary)"
69
+ }
70
+ ),
71
+ /* @__PURE__ */ o(
72
+ "path",
73
+ {
74
+ d: "M42.1 10.6693H36.7727C34.6535 10.6719 32.6219 11.5149 31.1234 13.0134C29.6249 14.5119 28.7819 16.5435 28.7793 18.6627V31.9933H34.1115V21.3288H34.1033V18.6627C34.1042 17.955 34.3857 17.2766 34.8861 16.7761C35.3866 16.2757 36.065 15.9942 36.7727 15.9934H42.0968V10.6693",
75
+ fill: "var(--logo-primary)"
76
+ }
77
+ ),
78
+ /* @__PURE__ */ o(
79
+ "path",
80
+ {
81
+ d: "M85.8323 10.6693H77.8275V7.99015C77.8288 7.2823 78.1106 6.60384 78.6113 6.10347C79.112 5.60309 79.7906 5.32163 80.4985 5.32077H85.7685V0H80.4968C78.3778 0.00216423 76.3461 0.844796 74.8476 2.34303C73.3491 3.84126 72.506 5.87275 72.5034 7.99178V31.9328H77.8356V16.0016H85.8323V10.6693Z",
82
+ fill: "var(--logo-primary)"
83
+ }
84
+ )
85
+ ] })
86
+ ]
87
+ }
88
+ );
89
+ }
90
+ export {
91
+ f as Profiq
92
+ };