@tipp/ui 1.4.10 → 1.4.11

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 (51) hide show
  1. package/dist/atoms/button.type.js +1 -0
  2. package/dist/atoms/field-error-wrapper.js +2 -2
  3. package/dist/atoms/index.cjs.map +1 -1
  4. package/dist/atoms/index.d.cts +3 -1
  5. package/dist/atoms/index.d.ts +3 -1
  6. package/dist/atoms/index.js +62 -61
  7. package/dist/atoms/pagination.js +2 -2
  8. package/dist/chunk-2E772Q7M.js +340 -0
  9. package/dist/chunk-2E772Q7M.js.map +1 -0
  10. package/dist/chunk-3D63H4NN.js +192 -0
  11. package/dist/chunk-3D63H4NN.js.map +1 -0
  12. package/dist/chunk-5JNG5M3K.js +192 -0
  13. package/dist/chunk-5JNG5M3K.js.map +1 -0
  14. package/dist/chunk-6SVCBP7D.js +340 -0
  15. package/dist/chunk-6SVCBP7D.js.map +1 -0
  16. package/dist/chunk-AA4HC2IG.js +164 -0
  17. package/dist/chunk-AA4HC2IG.js.map +1 -0
  18. package/dist/chunk-CAI3LDYJ.js +340 -0
  19. package/dist/chunk-CAI3LDYJ.js.map +1 -0
  20. package/dist/chunk-CLBSZCMO.js +164 -0
  21. package/dist/chunk-CLBSZCMO.js.map +1 -0
  22. package/dist/chunk-DKOJFPCY.js +63 -0
  23. package/dist/chunk-DKOJFPCY.js.map +1 -0
  24. package/dist/chunk-DUQ7QVCY.js +340 -0
  25. package/dist/chunk-DUQ7QVCY.js.map +1 -0
  26. package/dist/chunk-F44BXTHN.js +63 -0
  27. package/dist/chunk-F44BXTHN.js.map +1 -0
  28. package/dist/chunk-KTVZ4KLX.js +1 -0
  29. package/dist/chunk-KTVZ4KLX.js.map +1 -0
  30. package/dist/chunk-ZD7MNMED.js +1 -0
  31. package/dist/chunk-ZD7MNMED.js.map +1 -0
  32. package/dist/index.cjs +1 -1
  33. package/dist/index.cjs.map +1 -1
  34. package/dist/index.d.cts +3 -1
  35. package/dist/index.d.ts +3 -1
  36. package/dist/index.js +78 -77
  37. package/dist/molecules/date-picker/index.js +2 -2
  38. package/dist/molecules/expand-table/index.js +28 -27
  39. package/dist/molecules/expand-table/row.js +27 -26
  40. package/dist/molecules/index.cjs +1 -1
  41. package/dist/molecules/index.cjs.map +1 -1
  42. package/dist/molecules/index.js +36 -35
  43. package/dist/molecules/learning-post.js +4 -4
  44. package/dist/molecules/navigation.js +28 -27
  45. package/dist/molecules/stepper.js +3 -3
  46. package/dist/molecules/tag-selector.cjs +1 -1
  47. package/dist/molecules/tag-selector.cjs.map +1 -1
  48. package/dist/molecules/tag-selector.js +28 -27
  49. package/package.json +3 -3
  50. package/src/atoms/index.ts +1 -0
  51. package/src/molecules/tag-selector.tsx +1 -1
@@ -0,0 +1,63 @@
1
+ import {
2
+ Flex
3
+ } from "./chunk-25HMMI7R.js";
4
+ import {
5
+ Typo
6
+ } from "./chunk-52MVZ6AN.js";
7
+ import {
8
+ Button
9
+ } from "./chunk-U7JPP7WJ.js";
10
+
11
+ // src/molecules/navigation.tsx
12
+ import { jsx, jsxs } from "react/jsx-runtime";
13
+ function Navigation({
14
+ items,
15
+ fontColor,
16
+ backgroundColor,
17
+ activeKey
18
+ }) {
19
+ return /* @__PURE__ */ jsx(
20
+ Flex,
21
+ {
22
+ direction: "column",
23
+ gap: "4",
24
+ pr: "3",
25
+ style: {
26
+ color: fontColor || "var(--white-a12)",
27
+ backgroundColor: backgroundColor || "var(--black-a12)"
28
+ },
29
+ children: items == null ? void 0 : items.map((item) => {
30
+ const { key, title, icon, itemRender, onClick, children } = item;
31
+ return /* @__PURE__ */ jsxs(Flex, { direction: "column", onClick, children: [
32
+ itemRender ? itemRender(item) : /* @__PURE__ */ jsxs(Flex, { align: "center", gap: "3", height: "36px", pl: "4", pr: "4", children: [
33
+ icon,
34
+ /* @__PURE__ */ jsx(Typo, { variant: "subtitle", children: title })
35
+ ] }),
36
+ children == null ? void 0 : children.map((menu) => {
37
+ return menu.itemRender ? menu.itemRender(menu) : /* @__PURE__ */ jsx(
38
+ Button,
39
+ {
40
+ className: `tipp-navigation-button ${activeKey === menu.key ? "active" : ""}`,
41
+ ml: "37px",
42
+ onClick: menu.onClick,
43
+ size: "large",
44
+ style: {
45
+ color: "var(--white-a12)",
46
+ height: "32px",
47
+ paddingLeft: "var(--space-2)"
48
+ },
49
+ children: menu.title
50
+ },
51
+ menu.key
52
+ );
53
+ })
54
+ ] }, key);
55
+ })
56
+ }
57
+ );
58
+ }
59
+
60
+ export {
61
+ Navigation
62
+ };
63
+ //# sourceMappingURL=chunk-F44BXTHN.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/molecules/navigation.tsx"],"sourcesContent":["import React from 'react';\nimport { Button, Flex, Typo } from '../atoms';\n\ninterface Item {\n itemRender?: (item: Item) => React.ReactNode;\n key: string;\n onClick?: () => void;\n title: string;\n icon?: React.ReactNode;\n children?: Item[];\n}\n\nexport interface NavigationProps {\n items?: Item[];\n fontColor?: string;\n backgroundColor?: string;\n activeKey?: string;\n}\n\nexport function Navigation({\n items,\n fontColor,\n backgroundColor,\n activeKey,\n}: NavigationProps): React.ReactNode {\n return (\n <Flex\n direction=\"column\"\n gap=\"4\"\n pr=\"3\"\n style={{\n color: fontColor || 'var(--white-a12)',\n backgroundColor: backgroundColor || 'var(--black-a12)',\n }}\n >\n {items?.map((item) => {\n const { key, title, icon, itemRender, onClick, children } = item;\n return (\n <Flex direction=\"column\" key={key} onClick={onClick}>\n {itemRender ? (\n itemRender(item)\n ) : (\n <Flex align=\"center\" gap=\"3\" height=\"36px\" pl=\"4\" pr=\"4\">\n {icon}\n <Typo variant=\"subtitle\">{title}</Typo>\n </Flex>\n )}\n {children?.map((menu) => {\n return menu.itemRender ? (\n menu.itemRender(menu)\n ) : (\n <Button\n className={`tipp-navigation-button ${activeKey === menu.key ? 'active' : ''}`}\n key={menu.key}\n ml=\"37px\"\n onClick={menu.onClick}\n size=\"large\"\n style={{\n color: 'var(--white-a12)',\n height: '32px',\n paddingLeft: 'var(--space-2)',\n }}\n >\n {menu.title}\n </Button>\n );\n })}\n </Flex>\n );\n })}\n </Flex>\n );\n}\n"],"mappings":";;;;;;;;;;;AA0Cc,SAEE,KAFF;AAvBP,SAAS,WAAW;AAAA,EACzB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,GAAqC;AACnC,SACE;AAAA,IAAC;AAAA;AAAA,MACC,WAAU;AAAA,MACV,KAAI;AAAA,MACJ,IAAG;AAAA,MACH,OAAO;AAAA,QACL,OAAO,aAAa;AAAA,QACpB,iBAAiB,mBAAmB;AAAA,MACtC;AAAA,MAEC,yCAAO,IAAI,CAAC,SAAS;AACpB,cAAM,EAAE,KAAK,OAAO,MAAM,YAAY,SAAS,SAAS,IAAI;AAC5D,eACE,qBAAC,QAAK,WAAU,UAAmB,SAChC;AAAA,uBACC,WAAW,IAAI,IAEf,qBAAC,QAAK,OAAM,UAAS,KAAI,KAAI,QAAO,QAAO,IAAG,KAAI,IAAG,KAClD;AAAA;AAAA,YACD,oBAAC,QAAK,SAAQ,YAAY,iBAAM;AAAA,aAClC;AAAA,UAED,qCAAU,IAAI,CAAC,SAAS;AACvB,mBAAO,KAAK,aACV,KAAK,WAAW,IAAI,IAEpB;AAAA,cAAC;AAAA;AAAA,gBACC,WAAW,0BAA0B,cAAc,KAAK,MAAM,WAAW,EAAE;AAAA,gBAE3E,IAAG;AAAA,gBACH,SAAS,KAAK;AAAA,gBACd,MAAK;AAAA,gBACL,OAAO;AAAA,kBACL,OAAO;AAAA,kBACP,QAAQ;AAAA,kBACR,aAAa;AAAA,gBACf;AAAA,gBAEC,eAAK;AAAA;AAAA,cAVD,KAAK;AAAA,YAWZ;AAAA,UAEJ;AAAA,aA5B4B,GA6B9B;AAAA,MAEJ;AAAA;AAAA,EACF;AAEJ;","names":[]}
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=chunk-KTVZ4KLX.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=chunk-ZD7MNMED.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/dist/index.cjs CHANGED
@@ -1675,7 +1675,7 @@ function TagSelector(props) {
1675
1675
  const [focus, setFocus] = (0, import_react24.useState)(false);
1676
1676
  const fieldRef = (0, import_react24.useRef)(null);
1677
1677
  const scrollRef = (0, import_react24.useRef)(null);
1678
- const closeRef = (0, import_react24.useRef)(0);
1678
+ const closeRef = (0, import_react24.useRef)();
1679
1679
  const onFocus = (0, import_react24.useCallback)(() => {
1680
1680
  clearTimeout(closeRef.current);
1681
1681
  setFocus(true);