@rttui/skin-anocca 1.0.35 → 1.0.37

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 (78) hide show
  1. package/README.md +62 -1
  2. package/dist/cjs/cell.cjs +102 -0
  3. package/dist/cjs/cell.cjs.map +10 -0
  4. package/dist/cjs/cell_avatar.cjs +62 -0
  5. package/dist/cjs/cell_avatar.cjs.map +10 -0
  6. package/dist/cjs/cell_avatar_with_text.cjs +80 -0
  7. package/dist/cjs/cell_avatar_with_text.cjs.map +10 -0
  8. package/dist/cjs/cell_badge.cjs +66 -0
  9. package/dist/cjs/cell_badge.cjs.map +10 -0
  10. package/dist/cjs/cell_currency.cjs +57 -0
  11. package/dist/cjs/cell_currency.cjs.map +10 -0
  12. package/dist/cjs/cell_link.cjs +78 -0
  13. package/dist/cjs/cell_link.cjs.map +10 -0
  14. package/dist/cjs/cell_number.cjs +48 -0
  15. package/dist/cjs/cell_number.cjs.map +10 -0
  16. package/dist/cjs/cell_percent.cjs +56 -0
  17. package/dist/cjs/cell_percent.cjs.map +10 -0
  18. package/dist/cjs/cell_tag.cjs +53 -0
  19. package/dist/cjs/cell_tag.cjs.map +10 -0
  20. package/dist/cjs/cell_text.cjs +47 -0
  21. package/dist/cjs/cell_text.cjs.map +10 -0
  22. package/dist/cjs/cell_text_bold.cjs +51 -0
  23. package/dist/cjs/cell_text_bold.cjs.map +10 -0
  24. package/dist/cjs/checkbox.cjs +80 -0
  25. package/dist/cjs/checkbox.cjs.map +10 -0
  26. package/dist/cjs/expand_button.cjs +84 -0
  27. package/dist/cjs/expand_button.cjs.map +10 -0
  28. package/dist/cjs/index.cjs +27 -1
  29. package/dist/cjs/index.cjs.map +3 -3
  30. package/dist/cjs/package.json +1 -1
  31. package/dist/cjs/resizer.cjs +8 -1
  32. package/dist/cjs/resizer.cjs.map +3 -3
  33. package/dist/mjs/cell.mjs +72 -0
  34. package/dist/mjs/cell.mjs.map +10 -0
  35. package/dist/mjs/cell_avatar.mjs +32 -0
  36. package/dist/mjs/cell_avatar.mjs.map +10 -0
  37. package/dist/mjs/cell_avatar_with_text.mjs +50 -0
  38. package/dist/mjs/cell_avatar_with_text.mjs.map +10 -0
  39. package/dist/mjs/cell_badge.mjs +36 -0
  40. package/dist/mjs/cell_badge.mjs.map +10 -0
  41. package/dist/mjs/cell_currency.mjs +27 -0
  42. package/dist/mjs/cell_currency.mjs.map +10 -0
  43. package/dist/mjs/cell_link.mjs +48 -0
  44. package/dist/mjs/cell_link.mjs.map +10 -0
  45. package/dist/mjs/cell_number.mjs +18 -0
  46. package/dist/mjs/cell_number.mjs.map +10 -0
  47. package/dist/mjs/cell_percent.mjs +26 -0
  48. package/dist/mjs/cell_percent.mjs.map +10 -0
  49. package/dist/mjs/cell_tag.mjs +23 -0
  50. package/dist/mjs/cell_tag.mjs.map +10 -0
  51. package/dist/mjs/cell_text.mjs +17 -0
  52. package/dist/mjs/cell_text.mjs.map +10 -0
  53. package/dist/mjs/cell_text_bold.mjs +21 -0
  54. package/dist/mjs/cell_text_bold.mjs.map +10 -0
  55. package/dist/mjs/checkbox.mjs +50 -0
  56. package/dist/mjs/checkbox.mjs.map +10 -0
  57. package/dist/mjs/expand_button.mjs +54 -0
  58. package/dist/mjs/expand_button.mjs.map +10 -0
  59. package/dist/mjs/index.mjs +27 -1
  60. package/dist/mjs/index.mjs.map +3 -3
  61. package/dist/mjs/package.json +1 -1
  62. package/dist/mjs/resizer.mjs +8 -1
  63. package/dist/mjs/resizer.mjs.map +3 -3
  64. package/dist/types/cell.d.ts +3 -0
  65. package/dist/types/cell_avatar.d.ts +3 -0
  66. package/dist/types/cell_avatar_with_text.d.ts +3 -0
  67. package/dist/types/cell_badge.d.ts +3 -0
  68. package/dist/types/cell_currency.d.ts +3 -0
  69. package/dist/types/cell_link.d.ts +8 -0
  70. package/dist/types/cell_number.d.ts +6 -0
  71. package/dist/types/cell_percent.d.ts +7 -0
  72. package/dist/types/cell_tag.d.ts +6 -0
  73. package/dist/types/cell_text.d.ts +6 -0
  74. package/dist/types/cell_text_bold.d.ts +7 -0
  75. package/dist/types/checkbox.d.ts +3 -0
  76. package/dist/types/expand_button.d.ts +2 -0
  77. package/dist/types/index.d.ts +13 -0
  78. package/package.json +2 -2
@@ -2,9 +2,9 @@
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
4
  "sourcesContent": [
5
- "export { AnoccaSkin } from \"./anocca_skin.mjs\";\nexport { TableHeaderRow } from \"./table_header_row.mjs\";\nexport { HeaderPinButtons } from \"./header_pin_buttons.mjs\";\nexport { RowPinButtons } from \"./row_pin_buttons.mjs\";\nexport { Resizer } from \"./resizer.mjs\";"
5
+ "export { AnoccaSkin } from \"./anocca_skin.mjs\";\nexport { TableHeaderRow } from \"./table_header_row.mjs\";\nexport { HeaderPinButtons } from \"./header_pin_buttons.mjs\";\nexport { RowPinButtons } from \"./row_pin_buttons.mjs\";\nexport { Resizer } from \"./resizer.mjs\";\nexport { CellAvatar } from \"./cell_avatar.mjs\";\nexport { CellAvatarWithText } from \"./cell_avatar_with_text.mjs\";\nexport { CellNumber } from \"./cell_number.mjs\";\nexport { CellTag } from \"./cell_tag.mjs\";\nexport { CellText } from \"./cell_text.mjs\";\nexport { ExpandButton } from \"./expand_button.mjs\";\nexport { Checkbox } from \"./checkbox.mjs\";\nexport { CellTextBold } from \"./cell_text_bold.mjs\";\nexport { CellCurrency } from \"./cell_currency.mjs\";\nexport { CellBadge } from \"./cell_badge.mjs\";\nexport { Cell } from \"./cell.mjs\";\nexport { CellLink } from \"./cell_link.mjs\";\nexport { CellPercent } from \"./cell_percent.mjs\";\n"
6
6
  ],
7
- "mappings": ";AAAA;AACA;AACA;AACA;AACA;",
8
- "debugId": "A2F2CCD887D32E2E64756E2164756E21",
7
+ "mappings": ";AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;",
8
+ "debugId": "9A5B3FA97F18B91964756E2164756E21",
9
9
  "names": []
10
10
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@rttui/skin-anocca",
3
- "version": "1.0.35",
3
+ "version": "1.0.37",
4
4
  "type": "module"
5
5
  }
@@ -44,6 +44,13 @@ function Resizer() {
44
44
  ev.stopPropagation();
45
45
  ev.preventDefault();
46
46
  },
47
+ onClick: (ev) => {
48
+ if (ev.metaKey) {
49
+ ev.stopPropagation();
50
+ ev.preventDefault();
51
+ crushHeader(colRef().header);
52
+ }
53
+ },
47
54
  onMouseDown: (ev) => colRef().header.getResizeHandler()(ev),
48
55
  onTouchStart: (ev) => colRef().header.getResizeHandler()(ev),
49
56
  className: `resizer ${isResizing ? "isResizing" : ""}`,
@@ -72,4 +79,4 @@ export {
72
79
  Resizer
73
80
  };
74
81
 
75
- //# debugId=8C805E33E6EA178264756E2164756E21
82
+ //# debugId=2170379A35DDEFF664756E2164756E21
@@ -2,9 +2,9 @@
2
2
  "version": 3,
3
3
  "sources": ["../../src/resizer.tsx"],
4
4
  "sourcesContent": [
5
- "import { Box } from \"@mui/material\";\nimport { useColRef, useCrushHeader } from \"@rttui/core\";\nimport { useColProps } from \"@rttui/core\";\nimport React from \"react\";\nimport { shallowEqual } from \"@rttui/core\";\nexport function Resizer() {\n const crushHeader = useCrushHeader();\n\n const { canResize, isResizing } = useColProps({\n callback: ({ column }) => {\n return {\n canResize: column.getCanResize(),\n isResizing: column.getIsResizing(),\n };\n },\n areCallbackOutputEqual: shallowEqual,\n dependencies: [{ type: \"tanstack_table\" }],\n });\n\n const colRef = useColRef();\n\n React.useEffect(() => {\n if (!isResizing) {\n return;\n }\n const preventDefault = (e: Event) => {\n e.preventDefault();\n };\n document.body.addEventListener(\"select\", preventDefault);\n document.body.addEventListener(\"selectstart\", preventDefault);\n document.body.style.userSelect = \"none\";\n return () => {\n document.body.removeEventListener(\"select\", preventDefault);\n document.body.removeEventListener(\"selectstart\", preventDefault);\n document.body.style.userSelect = \"auto\";\n };\n }, [isResizing]);\n\n if (!canResize) {\n return null;\n }\n\n return (\n <>\n {canResize && (\n <Box\n onDoubleClick={(ev) => {\n crushHeader(colRef().header);\n ev.stopPropagation();\n ev.preventDefault();\n }}\n onMouseDown={(ev: any) => colRef().header.getResizeHandler()(ev)}\n onTouchStart={(ev: any) => colRef().header.getResizeHandler()(ev)}\n className={`resizer ${isResizing ? \"isResizing\" : \"\"}`}\n sx={{\n position: \"absolute\",\n right: 0,\n top: 0,\n bottom: 0,\n width: \"3px\",\n cursor: \"col-resize\",\n userSelect: \"none\",\n touchAction: \"none\",\n opacity: 0,\n backgroundColor: (theme) => theme.palette.text.secondary,\n transition: \"opacity 0.2s\",\n \"&.isResizing\": {\n backgroundColor: (theme) => theme.palette.primary.main,\n opacity: 1,\n width: \"1px\",\n },\n }}\n />\n )}\n </>\n );\n}\n"
5
+ "import { Box } from \"@mui/material\";\nimport { useColRef, useCrushHeader } from \"@rttui/core\";\nimport { useColProps } from \"@rttui/core\";\nimport React from \"react\";\nimport { shallowEqual } from \"@rttui/core\";\nexport function Resizer() {\n const crushHeader = useCrushHeader();\n\n const { canResize, isResizing } = useColProps({\n callback: ({ column }) => {\n return {\n canResize: column.getCanResize(),\n isResizing: column.getIsResizing(),\n };\n },\n areCallbackOutputEqual: shallowEqual,\n dependencies: [{ type: \"tanstack_table\" }],\n });\n\n const colRef = useColRef();\n\n React.useEffect(() => {\n if (!isResizing) {\n return;\n }\n const preventDefault = (e: Event) => {\n e.preventDefault();\n };\n document.body.addEventListener(\"select\", preventDefault);\n document.body.addEventListener(\"selectstart\", preventDefault);\n document.body.style.userSelect = \"none\";\n return () => {\n document.body.removeEventListener(\"select\", preventDefault);\n document.body.removeEventListener(\"selectstart\", preventDefault);\n document.body.style.userSelect = \"auto\";\n };\n }, [isResizing]);\n\n if (!canResize) {\n return null;\n }\n\n return (\n <>\n {canResize && (\n <Box\n onDoubleClick={(ev) => {\n crushHeader(colRef().header);\n ev.stopPropagation();\n ev.preventDefault();\n }}\n onClick={(ev) => {\n if (ev.metaKey) {\n ev.stopPropagation();\n ev.preventDefault();\n crushHeader(colRef().header);\n }\n }}\n onMouseDown={(ev: any) => colRef().header.getResizeHandler()(ev)}\n onTouchStart={(ev: any) => colRef().header.getResizeHandler()(ev)}\n className={`resizer ${isResizing ? \"isResizing\" : \"\"}`}\n sx={{\n position: \"absolute\",\n right: 0,\n top: 0,\n bottom: 0,\n width: \"3px\",\n cursor: \"col-resize\",\n userSelect: \"none\",\n touchAction: \"none\",\n opacity: 0,\n backgroundColor: (theme) => theme.palette.text.secondary,\n transition: \"opacity 0.2s\",\n \"&.isResizing\": {\n backgroundColor: (theme) => theme.palette.primary.main,\n opacity: 1,\n width: \"1px\",\n },\n }}\n />\n )}\n </>\n );\n}\n"
6
6
  ],
7
- "mappings": ";AAAA;AACA;AACA;AACA;AACA;AAAA;AACO,SAAS,OAAO,GAAG;AAAA,EACxB,MAAM,cAAc,eAAe;AAAA,EAEnC,QAAQ,WAAW,eAAe,YAAY;AAAA,IAC5C,UAAU,GAAG,aAAa;AAAA,MACxB,OAAO;AAAA,QACL,WAAW,OAAO,aAAa;AAAA,QAC/B,YAAY,OAAO,cAAc;AAAA,MACnC;AAAA;AAAA,IAEF,wBAAwB;AAAA,IACxB,cAAc,CAAC,EAAE,MAAM,iBAAiB,CAAC;AAAA,EAC3C,CAAC;AAAA,EAED,MAAM,SAAS,UAAU;AAAA,EAEzB,MAAM,UAAU,MAAM;AAAA,IACpB,KAAK,YAAY;AAAA,MACf;AAAA,IACF;AAAA,IACA,MAAM,iBAAiB,CAAC,MAAa;AAAA,MACnC,EAAE,eAAe;AAAA;AAAA,IAEnB,SAAS,KAAK,iBAAiB,UAAU,cAAc;AAAA,IACvD,SAAS,KAAK,iBAAiB,eAAe,cAAc;AAAA,IAC5D,SAAS,KAAK,MAAM,aAAa;AAAA,IACjC,OAAO,MAAM;AAAA,MACX,SAAS,KAAK,oBAAoB,UAAU,cAAc;AAAA,MAC1D,SAAS,KAAK,oBAAoB,eAAe,cAAc;AAAA,MAC/D,SAAS,KAAK,MAAM,aAAa;AAAA;AAAA,KAElC,CAAC,UAAU,CAAC;AAAA,EAEf,KAAK,WAAW;AAAA,IACd,OAAO;AAAA,EACT;AAAA,EAEA,uBACE;AAAA,cACG,6BACC,IAAC,KAAD;AAAA,MACE,eAAe,CAAC,OAAO;AAAA,QACrB,YAAY,OAAO,EAAE,MAAM;AAAA,QAC3B,GAAG,gBAAgB;AAAA,QACnB,GAAG,eAAe;AAAA;AAAA,MAEpB,aAAa,CAAC,OAAY,OAAO,EAAE,OAAO,iBAAiB,EAAE,EAAE;AAAA,MAC/D,cAAc,CAAC,OAAY,OAAO,EAAE,OAAO,iBAAiB,EAAE,EAAE;AAAA,MAChE,WAAW,WAAW,aAAa,eAAe;AAAA,MAClD,IAAI;AAAA,QACF,UAAU;AAAA,QACV,OAAO;AAAA,QACP,KAAK;AAAA,QACL,QAAQ;AAAA,QACR,OAAO;AAAA,QACP,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,aAAa;AAAA,QACb,SAAS;AAAA,QACT,iBAAiB,CAAC,UAAU,MAAM,QAAQ,KAAK;AAAA,QAC/C,YAAY;AAAA,QACZ,gBAAgB;AAAA,UACd,iBAAiB,CAAC,UAAU,MAAM,QAAQ,QAAQ;AAAA,UAClD,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAAA,KACF;AAAA,GAEF;AAAA;",
8
- "debugId": "8C805E33E6EA178264756E2164756E21",
7
+ "mappings": ";AAAA;AACA;AACA;AACA;AACA;AAAA;AACO,SAAS,OAAO,GAAG;AAAA,EACxB,MAAM,cAAc,eAAe;AAAA,EAEnC,QAAQ,WAAW,eAAe,YAAY;AAAA,IAC5C,UAAU,GAAG,aAAa;AAAA,MACxB,OAAO;AAAA,QACL,WAAW,OAAO,aAAa;AAAA,QAC/B,YAAY,OAAO,cAAc;AAAA,MACnC;AAAA;AAAA,IAEF,wBAAwB;AAAA,IACxB,cAAc,CAAC,EAAE,MAAM,iBAAiB,CAAC;AAAA,EAC3C,CAAC;AAAA,EAED,MAAM,SAAS,UAAU;AAAA,EAEzB,MAAM,UAAU,MAAM;AAAA,IACpB,KAAK,YAAY;AAAA,MACf;AAAA,IACF;AAAA,IACA,MAAM,iBAAiB,CAAC,MAAa;AAAA,MACnC,EAAE,eAAe;AAAA;AAAA,IAEnB,SAAS,KAAK,iBAAiB,UAAU,cAAc;AAAA,IACvD,SAAS,KAAK,iBAAiB,eAAe,cAAc;AAAA,IAC5D,SAAS,KAAK,MAAM,aAAa;AAAA,IACjC,OAAO,MAAM;AAAA,MACX,SAAS,KAAK,oBAAoB,UAAU,cAAc;AAAA,MAC1D,SAAS,KAAK,oBAAoB,eAAe,cAAc;AAAA,MAC/D,SAAS,KAAK,MAAM,aAAa;AAAA;AAAA,KAElC,CAAC,UAAU,CAAC;AAAA,EAEf,KAAK,WAAW;AAAA,IACd,OAAO;AAAA,EACT;AAAA,EAEA,uBACE;AAAA,cACG,6BACC,IAAC,KAAD;AAAA,MACE,eAAe,CAAC,OAAO;AAAA,QACrB,YAAY,OAAO,EAAE,MAAM;AAAA,QAC3B,GAAG,gBAAgB;AAAA,QACnB,GAAG,eAAe;AAAA;AAAA,MAEpB,SAAS,CAAC,OAAO;AAAA,QACf,IAAI,GAAG,SAAS;AAAA,UACd,GAAG,gBAAgB;AAAA,UACnB,GAAG,eAAe;AAAA,UAClB,YAAY,OAAO,EAAE,MAAM;AAAA,QAC7B;AAAA;AAAA,MAEF,aAAa,CAAC,OAAY,OAAO,EAAE,OAAO,iBAAiB,EAAE,EAAE;AAAA,MAC/D,cAAc,CAAC,OAAY,OAAO,EAAE,OAAO,iBAAiB,EAAE,EAAE;AAAA,MAChE,WAAW,WAAW,aAAa,eAAe;AAAA,MAClD,IAAI;AAAA,QACF,UAAU;AAAA,QACV,OAAO;AAAA,QACP,KAAK;AAAA,QACL,QAAQ;AAAA,QACR,OAAO;AAAA,QACP,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,aAAa;AAAA,QACb,SAAS;AAAA,QACT,iBAAiB,CAAC,UAAU,MAAM,QAAQ,KAAK;AAAA,QAC/C,YAAY;AAAA,QACZ,gBAAgB;AAAA,UACd,iBAAiB,CAAC,UAAU,MAAM,QAAQ,QAAQ;AAAA,UAClD,SAAS;AAAA,UACT,OAAO;AAAA,QACT;AAAA,MACF;AAAA,KACF;AAAA,GAEF;AAAA;",
8
+ "debugId": "2170379A35DDEFF664756E2164756E21",
9
9
  "names": []
10
10
  }
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { CellProps } from "@rttui/core";
3
+ export declare const Cell: React.FC<CellProps>;
@@ -0,0 +1,3 @@
1
+ import { CellAvatarProps } from "@rttui/core";
2
+ import React from "react";
3
+ export declare const CellAvatar: React.FC<CellAvatarProps>;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { CellAvatarWithTextProps } from "@rttui/core";
3
+ export declare const CellAvatarWithText: React.FC<CellAvatarWithTextProps>;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { CellBadgeProps } from "@rttui/core";
3
+ export declare const CellBadge: React.FC<CellBadgeProps>;
@@ -0,0 +1,3 @@
1
+ import { CellCurrencyProps } from "@rttui/core";
2
+ import React from "react";
3
+ export declare const CellCurrency: React.FC<CellCurrencyProps>;
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ interface CellLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
3
+ href: string;
4
+ children: React.ReactNode;
5
+ srText?: string;
6
+ }
7
+ export declare const CellLink: React.FC<CellLinkProps>;
8
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type CellNumberProps = {
3
+ children: React.ReactNode;
4
+ };
5
+ export declare const CellNumber: React.FC<CellNumberProps>;
6
+ export {};
@@ -0,0 +1,7 @@
1
+ import { CellPercentProps } from "@rttui/core";
2
+ import React from "react";
3
+ /**
4
+ * CellPercent component for the Anocca skin.
5
+ * Formats a number as a percentage.
6
+ */
7
+ export declare const CellPercent: React.FC<CellPercentProps>;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type CellTagProps = {
3
+ children: React.ReactNode;
4
+ };
5
+ export declare const CellTag: React.FC<CellTagProps>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type CellTextProps = {
3
+ children: React.ReactNode;
4
+ };
5
+ export declare const CellText: React.FC<CellTextProps>;
6
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ type CellTextBoldProps = {
3
+ children: React.ReactNode;
4
+ className?: string;
5
+ };
6
+ export declare const CellTextBold: React.FC<CellTextBoldProps>;
7
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { CheckboxProps } from "@rttui/core";
3
+ export declare const Checkbox: React.FC<CheckboxProps>;
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const ExpandButton: React.FC;
@@ -3,3 +3,16 @@ export { TableHeaderRow } from "./table_header_row";
3
3
  export { HeaderPinButtons } from "./header_pin_buttons";
4
4
  export { RowPinButtons } from "./row_pin_buttons";
5
5
  export { Resizer } from "./resizer";
6
+ export { CellAvatar } from "./cell_avatar";
7
+ export { CellAvatarWithText } from "./cell_avatar_with_text";
8
+ export { CellNumber } from "./cell_number";
9
+ export { CellTag } from "./cell_tag";
10
+ export { CellText } from "./cell_text";
11
+ export { ExpandButton } from "./expand_button";
12
+ export { Checkbox } from "./checkbox";
13
+ export { CellTextBold } from "./cell_text_bold";
14
+ export { CellCurrency } from "./cell_currency";
15
+ export { CellBadge } from "./cell_badge";
16
+ export { Cell } from "./cell";
17
+ export { CellLink } from "./cell_link";
18
+ export { CellPercent } from "./cell_percent";
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@rttui/skin-anocca",
3
- "version": "1.0.35",
3
+ "version": "1.0.37",
4
4
  "main": "./dist/cjs/index.cjs",
5
5
  "dependencies": {
6
- "@rttui/core": "^1.0.33"
6
+ "@rttui/core": "^1.0.35"
7
7
  },
8
8
  "module": "./dist/mjs/index.mjs",
9
9
  "types": "./dist/types/index.d.ts",