@manuscripts/style-guide 3.7.1 → 3.7.3

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 (61) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/components/icons/arrow-down.js +1 -1
  3. package/dist/cjs/components/icons/arrow-up.js +1 -1
  4. package/dist/cjs/components/icons/attention-blue.js +1 -1
  5. package/dist/cjs/components/icons/convert-to-weblink.js +5 -0
  6. package/dist/cjs/components/icons/delete-solid.js +1 -1
  7. package/dist/cjs/components/icons/deleted.js +1 -1
  8. package/dist/cjs/components/icons/external-link.js +5 -0
  9. package/dist/cjs/components/icons/index.js +5 -1
  10. package/dist/cjs/components/icons/plus.js +1 -1
  11. package/dist/cjs/components/icons/vertical-ellipsis.js +1 -1
  12. package/dist/cjs/mui/components/Button/Button.js +18 -0
  13. package/dist/cjs/mui/components/Button/index.js +32 -0
  14. package/dist/cjs/mui/components/IconButton/IconButton.js +22 -0
  15. package/dist/cjs/mui/components/IconButton/index.js +32 -0
  16. package/dist/cjs/mui/components/InspectorToggleButton/InspectorToggleButton.js +17 -0
  17. package/dist/cjs/mui/components/InspectorToggleButton/index.js +32 -0
  18. package/dist/cjs/mui/components/ToggleButton/ToggleButton.js +10 -0
  19. package/dist/cjs/mui/components/ToggleButton/index.js +32 -0
  20. package/dist/cjs/mui/index.js +36 -0
  21. package/dist/cjs/mui/theme/index.js +25 -0
  22. package/dist/cjs/mui/theme/palette.js +70 -0
  23. package/dist/cjs/mui/theme/theme.js +88 -0
  24. package/dist/es/components/icons/arrow-down.js +1 -1
  25. package/dist/es/components/icons/arrow-up.js +1 -1
  26. package/dist/es/components/icons/attention-blue.js +1 -1
  27. package/dist/es/components/icons/convert-to-weblink.js +3 -0
  28. package/dist/es/components/icons/delete-solid.js +1 -1
  29. package/dist/es/components/icons/deleted.js +1 -1
  30. package/dist/es/components/icons/external-link.js +3 -0
  31. package/dist/es/components/icons/index.js +2 -0
  32. package/dist/es/components/icons/plus.js +1 -1
  33. package/dist/es/components/icons/vertical-ellipsis.js +1 -1
  34. package/dist/es/mui/components/Button/Button.js +11 -0
  35. package/dist/es/mui/components/Button/index.js +16 -0
  36. package/dist/es/mui/components/IconButton/IconButton.js +15 -0
  37. package/dist/es/mui/components/IconButton/index.js +16 -0
  38. package/dist/es/mui/components/InspectorToggleButton/InspectorToggleButton.js +13 -0
  39. package/dist/es/mui/components/InspectorToggleButton/index.js +16 -0
  40. package/dist/es/mui/components/ToggleButton/ToggleButton.js +3 -0
  41. package/dist/es/mui/components/ToggleButton/index.js +16 -0
  42. package/dist/es/mui/index.js +20 -0
  43. package/dist/es/mui/theme/index.js +18 -0
  44. package/dist/es/mui/theme/palette.js +67 -0
  45. package/dist/es/mui/theme/theme.js +85 -0
  46. package/dist/types/components/icons/convert-to-weblink.d.ts +4 -0
  47. package/dist/types/components/icons/external-link.d.ts +4 -0
  48. package/dist/types/components/icons/index.d.ts +2 -0
  49. package/dist/types/mui/components/Button/Button.d.ts +27 -0
  50. package/dist/types/mui/components/Button/index.d.ts +16 -0
  51. package/dist/types/mui/components/IconButton/IconButton.d.ts +23 -0
  52. package/dist/types/mui/components/IconButton/index.d.ts +16 -0
  53. package/dist/types/mui/components/InspectorToggleButton/InspectorToggleButton.d.ts +18 -0
  54. package/dist/types/mui/components/InspectorToggleButton/index.d.ts +16 -0
  55. package/dist/types/mui/components/ToggleButton/ToggleButton.d.ts +23 -0
  56. package/dist/types/mui/components/ToggleButton/index.d.ts +16 -0
  57. package/dist/types/mui/index.d.ts +20 -0
  58. package/dist/types/mui/theme/index.d.ts +18 -0
  59. package/dist/types/mui/theme/palette.d.ts +67 -0
  60. package/dist/types/mui/theme/theme.d.ts +16 -0
  61. package/package.json +23 -1
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  React components for Manuscripts applications.
5
5
 
6
- ## Example usage
6
+ ## Example usage
7
7
 
8
8
  ```tsx
9
9
  import { PrimaryButton } from '@manuscripts/style-guide'
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const jsx_runtime_1 = require("react/jsx-runtime");
4
- const ArrowDownIcon = (props) => ((0, jsx_runtime_1.jsx)("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.0625 6L12 6.9375L8 10.9375L4 6.9375L4.9375 6L8 9.0625L11.0625 6Z", fill: "#6E6E6E" }) }));
4
+ const ArrowDownIcon = ({ fill = '#6E6E6E', ...props }) => ((0, jsx_runtime_1.jsx)("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.0625 6L12 6.9375L8 10.9375L4 6.9375L4.9375 6L8 9.0625L11.0625 6Z" }) }));
5
5
  exports.default = ArrowDownIcon;
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const jsx_runtime_1 = require("react/jsx-runtime");
4
- const ArrowUpIcon = (props) => ((0, jsx_runtime_1.jsx)("svg", { width: "9", height: "5", viewBox: "0 0 9 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.65627 4.769C1.23955 5.11006 0.607922 5.06866 0.24548 4.67652C-0.116961 4.28438 -0.0729634 3.69 0.343752 3.34894L4.43549 7.75526e-07L8.64031 3.29867C9.06452 3.63145 9.12172 4.22484 8.76807 4.62403C8.41443 5.02321 7.78385 5.07704 7.35965 4.74425L4.46297 2.47182L1.65627 4.769Z", fill: "#6E6E6E" }) }));
4
+ const ArrowUpIcon = ({ fill = '#6E6E6E', ...props }) => ((0, jsx_runtime_1.jsx)("svg", { width: "9", height: "5", viewBox: "0 0 9 5", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.65627 4.769C1.23955 5.11006 0.607922 5.06866 0.24548 4.67652C-0.116961 4.28438 -0.0729634 3.69 0.343752 3.34894L4.43549 7.75526e-07L8.64031 3.29867C9.06452 3.63145 9.12172 4.22484 8.76807 4.62403C8.41443 5.02321 7.78385 5.07704 7.35965 4.74425L4.46297 2.47182L1.65627 4.769Z" }) }));
5
5
  exports.default = ArrowUpIcon;
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const jsx_runtime_1 = require("react/jsx-runtime");
4
- const AttentionBlueIcon = (props) => ((0, jsx_runtime_1.jsx)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M9 15H11V9H9V15ZM10 0C4.475 0 0 4.475 0 10C0 15.525 4.475 20 10 20C15.525 20 20 15.525 20 10C20 4.475 15.525 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM9 7H11V5H9V7Z", fill: "#1A9BC7" }) }));
4
+ const AttentionBlueIcon = ({ fill = '#1A9BC7', ...props }) => ((0, jsx_runtime_1.jsx)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M9 15H11V9H9V15ZM10 0C4.475 0 0 4.475 0 10C0 15.525 4.475 20 10 20C15.525 20 20 15.525 20 10C20 4.475 15.525 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM9 7H11V5H9V7Z" }) }));
5
5
  exports.default = AttentionBlueIcon;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const jsx_runtime_1 = require("react/jsx-runtime");
4
+ const ConvertToWebLinkIcon = (props) => ((0, jsx_runtime_1.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", ...props, children: [(0, jsx_runtime_1.jsxs)("g", { clipPath: "url(#clip0_24947_17192)", children: [(0, jsx_runtime_1.jsx)("path", { d: "M6.80381 11.6705L5.15413 13.3202C4.47021 14.0041 3.36265 14.0041 2.6793 13.3203C1.99582 12.6368 1.99582 11.5292 2.67917 10.8458L5.97909 7.54589C6.66244 6.86252 7.77011 6.86252 8.45345 7.54589C8.68126 7.77369 9.05062 7.77369 9.27842 7.54589C9.50622 7.31809 9.50622 6.94873 9.27842 6.72093C8.13944 5.58196 6.29311 5.58196 5.15413 6.72093L1.85423 10.0208C0.715256 11.1598 0.715256 13.0061 1.85423 14.1451C2.99307 15.2847 4.83954 15.2847 5.97912 14.1451L7.62879 12.4954C7.8566 12.2676 7.8566 11.8983 7.62879 11.6705C7.40099 11.4427 7.03161 11.4427 6.80381 11.6705Z", fill: "#6E6E6E" }), (0, jsx_runtime_1.jsx)("path", { d: "M14.1453 1.85423C13.0064 0.715256 11.1594 0.715256 10.0205 1.85423L8.0412 3.83348C7.8134 4.06128 7.8134 4.43064 8.0412 4.65844C8.269 4.88624 8.63836 4.88624 8.86616 4.65844L10.8454 2.67919C11.5288 1.99582 12.637 1.99582 13.3204 2.67919C14.0037 3.36254 14.0037 4.47021 13.3204 5.15356L9.69088 8.78308C9.0075 9.46646 7.89986 9.46646 7.21651 8.78308C6.98871 8.55528 6.61935 8.55528 6.39155 8.78308C6.16375 9.01088 6.16375 9.38024 6.39155 9.60804C7.53053 10.747 9.37686 10.747 10.5158 9.60804L14.1453 5.97855C15.2843 4.83957 15.2843 2.99321 14.1453 1.85423Z", fill: "#6E6E6E" })] }), (0, jsx_runtime_1.jsx)("path", { d: "M6.03135 0.0257959C6.3353 -0.05247 6.65943 0.0510401 6.84802 0.286352C7.03658 0.521689 7.05102 0.840387 6.88387 1.08935L5.92777 2.5136C5.71875 2.82482 5.28946 2.93734 4.93682 2.77323L4.14405 2.40418C3.66469 2.7133 3.2454 3.0558 2.88917 3.40468C2.02685 4.24923 1.59582 5.06266 1.51378 5.43164C1.42833 5.81669 1.02404 6.06457 0.610469 5.9852C0.196888 5.90565 -0.0693643 5.52924 0.0158945 5.14419C0.176091 4.42231 0.805747 3.37852 1.78069 2.42365C2.77623 1.44866 4.19941 0.497558 6.03135 0.0257959Z", fill: "#6E6E6E" }), (0, jsx_runtime_1.jsx)("path", { d: "M14.4863 10.5684C14.5718 10.1833 14.976 9.93537 15.3896 10.0148C15.8031 10.0944 16.0693 10.4708 15.9841 10.8558C15.8239 11.5777 15.1943 12.6215 14.2194 13.5763C13.2239 14.5513 11.8008 15.5024 9.96896 15.9742C9.66499 16.0525 9.33991 15.949 9.15134 15.7136C8.96301 15.4783 8.94937 15.1595 9.11648 14.9106L10.0725 13.4864L10.1612 13.3788C10.3881 13.1513 10.755 13.0832 11.0634 13.2268L11.8552 13.5949C12.3344 13.2858 12.7538 12.9441 13.11 12.5953C13.9724 11.7507 14.4043 10.9374 14.4863 10.5684Z", fill: "#6E6E6E" }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: "clip0_24947_17192", children: (0, jsx_runtime_1.jsx)("rect", { width: "14", height: "14", fill: "white", transform: "translate(1 1)" }) }) })] }));
5
+ exports.default = ConvertToWebLinkIcon;
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const jsx_runtime_1 = require("react/jsx-runtime");
4
- const DeleteSolidIcon = ({ color = '#6E6E6E', ...props }) => ((0, jsx_runtime_1.jsx)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M15.494 3.375H11.955C11.93 3.165 11.714 3 11.451 3H8.548C8.286 3 8.07 3.165 8.045 3.375H4.506C4.226 3.375 4 3.561 4 3.792V4.583C4 4.813 4.227 5 4.506 5H15.494C15.774 5 16 4.814 16 4.583V3.792C16 3.562 15.773 3.375 15.494 3.375ZM5 6V16.491C5 16.772 5.23 17 5.513 17H14.487C14.5541 17.0004 14.6207 16.9875 14.6829 16.9621C14.745 16.9367 14.8015 16.8993 14.8492 16.852C14.8969 16.8048 14.9347 16.7485 14.9606 16.6866C14.9865 16.6246 14.9999 16.5581 15 16.491V6H5ZM8.753 13.874C8.753 14.184 8.5 14.435 8.188 14.435C8.03886 14.4355 7.89559 14.3769 7.78966 14.2719C7.68373 14.1669 7.62379 14.0241 7.623 13.875V8.311C7.623 8.001 7.876 7.75 8.188 7.75C8.5 7.75 8.753 8 8.753 8.31V13.873V13.874ZM12.377 13.874C12.377 14.184 12.124 14.435 11.812 14.435C11.6629 14.4355 11.5196 14.3769 11.4137 14.2719C11.3077 14.1669 11.2478 14.0241 11.247 13.875V8.311C11.247 8.001 11.5 7.75 11.812 7.75C12.124 7.75 12.377 8 12.377 8.31V13.873V13.874Z", fill: color }) }));
4
+ const DeleteSolidIcon = ({ fill = '#6E6E6E', ...props }) => ((0, jsx_runtime_1.jsx)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: (0, jsx_runtime_1.jsx)("path", { d: "M15.494 3.375H11.955C11.93 3.165 11.714 3 11.451 3H8.548C8.286 3 8.07 3.165 8.045 3.375H4.506C4.226 3.375 4 3.561 4 3.792V4.583C4 4.813 4.227 5 4.506 5H15.494C15.774 5 16 4.814 16 4.583V3.792C16 3.562 15.773 3.375 15.494 3.375ZM5 6V16.491C5 16.772 5.23 17 5.513 17H14.487C14.5541 17.0004 14.6207 16.9875 14.6829 16.9621C14.745 16.9367 14.8015 16.8993 14.8492 16.852C14.8969 16.8048 14.9347 16.7485 14.9606 16.6866C14.9865 16.6246 14.9999 16.5581 15 16.491V6H5ZM8.753 13.874C8.753 14.184 8.5 14.435 8.188 14.435C8.03886 14.4355 7.89559 14.3769 7.78966 14.2719C7.68373 14.1669 7.62379 14.0241 7.623 13.875V8.311C7.623 8.001 7.876 7.75 8.188 7.75C8.5 7.75 8.753 8 8.753 8.31V13.873V13.874ZM12.377 13.874C12.377 14.184 12.124 14.435 11.812 14.435C11.6629 14.4355 11.5196 14.3769 11.4137 14.2719C11.3077 14.1669 11.2478 14.0241 11.247 13.875V8.311C11.247 8.001 11.5 7.75 11.812 7.75C12.124 7.75 12.377 8 12.377 8.31V13.873V13.874Z" }) }));
5
5
  exports.default = DeleteSolidIcon;
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const jsx_runtime_1 = require("react/jsx-runtime");
4
- const DeleteIcon = (props) => ((0, jsx_runtime_1.jsxs)("svg", { width: "13", height: "16", viewBox: "0 0 13 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [(0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M2.00001 2.99995C2 3.0013 2 3.00265 2 3.00399V13.004C2 13.5563 2.44772 14.004 3 14.004H10C10.5523 14.004 11 13.5563 11 13.004V3.00399C11 3.00265 11 3.0013 11 2.99995C11.5978 3.34576 12 3.99211 12 4.73239V13.004C12 14.1086 11.1046 15.004 10 15.004H3C1.89543 15.004 1 14.1086 1 13.004V4.73239C1 3.99211 1.4022 3.34576 2.00001 2.99995Z", fill: "#F35143" }), (0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M4.5 0C3.67157 0 3 0.671573 3 1.5V3.5C3 4.32843 3.67157 5 4.5 5H8.5C9.32843 5 10 4.32843 10 3.5V1.5C10 0.671573 9.32843 0 8.5 0H4.5ZM9 1.5C9 1.22386 8.77614 1 8.5 1H4.5C4.22386 1 4 1.22386 4 1.5C4 1.77614 4.22386 2 4.5 2H8.5C8.77614 2 9 1.77614 9 1.5Z", fill: "#F35143" }), (0, jsx_runtime_1.jsx)("rect", { className: "icon_element", y: "2", width: "13", height: "3", rx: "1.5", fill: "#F35143" }), (0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M8 7.5C8 7.22386 8.22386 7 8.5 7C8.77614 7 9 7.22386 9 7.5V11.5C9 11.7761 8.77614 12 8.5 12C8.22386 12 8 11.7761 8 11.5V7.5Z", fill: "#F35143" }), (0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M4 7.5C4 7.22386 4.22386 7 4.5 7C4.77614 7 5 7.22386 5 7.5V11.5C5 11.7761 4.77614 12 4.5 12C4.22386 12 4 11.7761 4 11.5V7.5Z", fill: "#F35143" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.5 3C11.7761 3 12 3.22386 12 3.5C12 3.77614 11.7761 4 11.5 4L1.5 4C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3L11.5 3Z", fill: "white" })] }));
4
+ const DeleteIcon = ({ fill = '#F35143', ...props }) => ((0, jsx_runtime_1.jsxs)("svg", { width: "13", height: "16", viewBox: "0 0 13 16", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: [(0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M2.00001 2.99995C2 3.0013 2 3.00265 2 3.00399V13.004C2 13.5563 2.44772 14.004 3 14.004H10C10.5523 14.004 11 13.5563 11 13.004V3.00399C11 3.00265 11 3.0013 11 2.99995C11.5978 3.34576 12 3.99211 12 4.73239V13.004C12 14.1086 11.1046 15.004 10 15.004H3C1.89543 15.004 1 14.1086 1 13.004V4.73239C1 3.99211 1.4022 3.34576 2.00001 2.99995Z" }), (0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M4.5 0C3.67157 0 3 0.671573 3 1.5V3.5C3 4.32843 3.67157 5 4.5 5H8.5C9.32843 5 10 4.32843 10 3.5V1.5C10 0.671573 9.32843 0 8.5 0H4.5ZM9 1.5C9 1.22386 8.77614 1 8.5 1H4.5C4.22386 1 4 1.22386 4 1.5C4 1.77614 4.22386 2 4.5 2H8.5C8.77614 2 9 1.77614 9 1.5Z" }), (0, jsx_runtime_1.jsx)("rect", { className: "icon_element", y: "2", width: "13", height: "3", rx: "1.5" }), (0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M8 7.5C8 7.22386 8.22386 7 8.5 7C8.77614 7 9 7.22386 9 7.5V11.5C9 11.7761 8.77614 12 8.5 12C8.22386 12 8 11.7761 8 11.5V7.5Z" }), (0, jsx_runtime_1.jsx)("path", { className: "icon_element", fillRule: "evenodd", clipRule: "evenodd", d: "M4 7.5C4 7.22386 4.22386 7 4.5 7C4.77614 7 5 7.22386 5 7.5V11.5C5 11.7761 4.77614 12 4.5 12C4.22386 12 4 11.7761 4 11.5V7.5Z" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.5 3C11.7761 3 12 3.22386 12 3.5C12 3.77614 11.7761 4 11.5 4L1.5 4C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3L11.5 3Z", fill: "white" })] }));
5
5
  exports.default = DeleteIcon;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const jsx_runtime_1 = require("react/jsx-runtime");
4
+ const ExternalLinkIcon = ({ color = '#6E6E6E', ...props }) => ((0, jsx_runtime_1.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", ...props, children: [(0, jsx_runtime_1.jsx)("path", { d: "M14.5 11.375V13.0625C14.5 13.994 13.744 14.75 12.8125 14.75H4.9375C4.006 14.75 3.25 13.994 3.25 13.0625V5.1875C3.25 4.256 4.006 3.5 4.9375 3.5H6.625", stroke: color, strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), (0, jsx_runtime_1.jsx)("path", { d: "M14.499 7.75V3.5H10.249C9.83479 3.5 9.49901 3.16421 9.49901 2.75C9.49901 2.33579 9.83479 2 10.249 2H15.249C15.6632 2 15.999 2.33579 15.999 2.75V7.75C15.999 8.16421 15.6632 8.5 15.249 8.5C14.8348 8.5 14.499 8.16421 14.499 7.75Z", fill: color }), (0, jsx_runtime_1.jsx)("path", { d: "M14.7914 4.2785C15.083 3.98443 15.0812 3.5095 14.7873 3.21784C14.4932 2.92625 14.0183 2.92801 13.7266 3.22199L7.74728 9.25242C7.45571 9.54649 7.4575 10.0214 7.75143 10.3131C8.04546 10.6046 8.52042 10.6028 8.81209 10.3089L14.7914 4.2785Z", fill: color })] }));
5
+ exports.default = ExternalLinkIcon;
@@ -20,7 +20,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
21
  exports.FilePdfIcon = exports.FileMainDocumentIcon = exports.FileLatexIcon = exports.FileImageIcon = exports.FileHeadshotGridIcon = exports.FileGraphicalAbstractIcon = exports.FileFigureIcon = exports.FileDocumentIcon = exports.FileCorruptedIcon = exports.FileCompressedIcon = exports.FileCodeIcon = exports.FileAudioIcon = exports.EditAttrsTrackingIcon = exports.EditIcon = exports.DraggableIcon = exports.DotsIcon = exports.DeleteIcon = exports.DeleteSolidIcon = exports.CorrespondingAuthorIcon = exports.CommentIcon = exports.CommentResolveIcon = exports.CommentReplyIcon = exports.CitationCountIcon = exports.SystemUserAvatarIcon = exports.ChatIcon = exports.CameraIcon = exports.CalendarIcon = exports.BookIcon = exports.AffiliationPlaceholderIcon = exports.AuthorPlaceholderIcon = exports.AffiliationIcon = exports.AlertIcon = exports.AvatarIcon = exports.AttentionRedIcon = exports.AttentionOrangeIcon = exports.AttentionGreenIcon = exports.AttentionBlueIcon = exports.AttachIcon = exports.ArrowUpIcon = exports.ArrowLeftIcon = exports.ArrowDownCircleIcon = exports.ArrowDownIcon = exports.AddRoleIcon = exports.AddIcon = exports.AddOutlineIcon = exports.AddNewIcon = exports.AddedIcon = exports.AddFigureIcon = exports.AddCommentIcon = exports.AddAuthorIcon = void 0;
22
22
  exports.ToolbarBoldIcon = exports.TickIcon = exports.TaskStepDoneIcon = exports.SupplementsIcon = exports.SliderOnIcon = exports.SliderOffIcon = exports.SectionCategoryIcon = exports.SearchIcon = exports.ScrollIcon = exports.SaveStatusErrorIcon = exports.SaveStatusSavingIcon = exports.SaveStatusSavedIcon = exports.SaveStatusOfflineIcon = exports.RoleReadingIcon = exports.RoleAnnotatingIcon = exports.PlusIcon = exports.ORCIDIcon = exports.OutlineUnorderedListIcon = exports.OutlineTableIcon = exports.OutlineSectionIcon = exports.OutlinePullQuoteIcon = exports.OutlineParagraphIcon = exports.OutlineOrderedListIcon = exports.OutlineManuscriptIcon = exports.OutlineFigureIcon = exports.OutlineEmbedIcon = exports.OutlineEquationIcon = exports.OutlineCodeIcon = exports.OutlineBlockQuoteIcon = exports.ManuscriptIcon = exports.LeadingHalfLeftIcon = exports.LeadingWallpaperIcon = exports.LeadingLargeFloatIcon = exports.LeadingSmallFloatIcon = exports.LeadingHeroImageIcon = exports.LogoutIcon = exports.LockIcon = exports.LinkIcon = exports.InspectorPluginIcon = exports.InfoCircleIcon = exports.ImageRightIcon = exports.ImageDefaultIcon = exports.ImageLeftIcon = exports.HelpIcon = exports.GlobeIcon = exports.HandleOutlineIcon = exports.HandleInspectorIcon = exports.FileVideoIcon = exports.FileUnknownIcon = exports.FileTableIcon = void 0;
23
- exports.WebLinkIcon = exports.PencilIcon = exports.NotificationsIcon = exports.EyeIcon = exports.XIcon = exports.DangerIcon = exports.AddInstitutionIcon = exports.AddUserIcon = exports.ProfileIcon = exports.CrclTickAnimation = exports.VerticalEllipsisIcon = exports.UploadIcon = exports.TriangleExpandedIcon = exports.TriangleCollapsedIcon = exports.TranslateIcon = exports.ToolbarUnindentIcon = exports.ToolbarIndentIcon = exports.ToolbarUnorderedListIcon = exports.ToolbarUnderlineIcon = exports.ToolbarTableIcon = exports.ToolbarSymbolIcon = exports.ToolbarSuperscriptIcon = exports.ToolbarSubscriptIcon = exports.ToolbarSpecialCharactersIcon = exports.ToolbarOrderedListIcon = exports.ToolbarItalicIcon = exports.ToolbarFigureIcon = exports.ToolbarEquationIcon = exports.ToolbarCodeIcon = exports.ToolbarCrossReferenceIcon = exports.ToolbarCitationIcon = exports.ToolbarBoxedTextIcon = void 0;
23
+ exports.ExternalLinkIcon = exports.ConvertToWebLinkIcon = exports.WebLinkIcon = exports.PencilIcon = exports.NotificationsIcon = exports.EyeIcon = exports.XIcon = exports.DangerIcon = exports.AddInstitutionIcon = exports.AddUserIcon = exports.ProfileIcon = exports.CrclTickAnimation = exports.VerticalEllipsisIcon = exports.UploadIcon = exports.TriangleExpandedIcon = exports.TriangleCollapsedIcon = exports.TranslateIcon = exports.ToolbarUnindentIcon = exports.ToolbarIndentIcon = exports.ToolbarUnorderedListIcon = exports.ToolbarUnderlineIcon = exports.ToolbarTableIcon = exports.ToolbarSymbolIcon = exports.ToolbarSuperscriptIcon = exports.ToolbarSubscriptIcon = exports.ToolbarSpecialCharactersIcon = exports.ToolbarOrderedListIcon = exports.ToolbarItalicIcon = exports.ToolbarFigureIcon = exports.ToolbarEquationIcon = exports.ToolbarCodeIcon = exports.ToolbarCrossReferenceIcon = exports.ToolbarCitationIcon = exports.ToolbarBoxedTextIcon = void 0;
24
24
  var add_author_1 = require("./add-author");
25
25
  Object.defineProperty(exports, "AddAuthorIcon", { enumerable: true, get: function () { return __importDefault(add_author_1).default; } });
26
26
  var add_comment_1 = require("./add-comment");
@@ -285,3 +285,7 @@ var pencil_icon_1 = require("./pencil-icon");
285
285
  Object.defineProperty(exports, "PencilIcon", { enumerable: true, get: function () { return __importDefault(pencil_icon_1).default; } });
286
286
  var weblink_1 = require("./weblink");
287
287
  Object.defineProperty(exports, "WebLinkIcon", { enumerable: true, get: function () { return __importDefault(weblink_1).default; } });
288
+ var convert_to_weblink_1 = require("./convert-to-weblink");
289
+ Object.defineProperty(exports, "ConvertToWebLinkIcon", { enumerable: true, get: function () { return __importDefault(convert_to_weblink_1).default; } });
290
+ var external_link_1 = require("./external-link");
291
+ Object.defineProperty(exports, "ExternalLinkIcon", { enumerable: true, get: function () { return __importDefault(external_link_1).default; } });
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PlusIcon = void 0;
4
4
  const jsx_runtime_1 = require("react/jsx-runtime");
5
- const PlusIcon = (props) => ((0, jsx_runtime_1.jsxs)("svg", { width: "11", height: "10", viewBox: "0 0 11 10", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.5 0.5C5.25147 0.5 5.05 0.701472 5.05 0.95V4.55H1.45C1.20147 4.55 1 4.75147 1 5C1 5.24853 1.20147 5.45 1.45 5.45H5.05V9.05C5.05 9.29853 5.25147 9.5 5.5 9.5C5.74853 9.5 5.95 9.29853 5.95 9.05V5.45H9.55C9.79853 5.45 10 5.24853 10 5C10 4.75147 9.79853 4.55 9.55 4.55H5.95V0.95C5.95 0.701472 5.74853 0.5 5.5 0.5Z", fill: "#6E6E6E" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.05 4.55V5.05H5.55V4.55H5.05ZM5.05 5.45H5.55V4.95H5.05V5.45ZM5.95 5.45V4.95H5.45V5.45H5.95ZM5.95 4.55H5.45V5.05H5.95V4.55ZM5.55 0.95C5.55 0.977614 5.52761 1 5.5 1V0C4.97533 0 4.55 0.425329 4.55 0.95H5.55ZM5.55 4.55V0.95H4.55V4.55H5.55ZM1.45 5.05H5.05V4.05H1.45V5.05ZM1.5 5C1.5 5.02761 1.47761 5.05 1.45 5.05V4.05C0.925329 4.05 0.5 4.47533 0.5 5H1.5ZM1.45 4.95C1.47761 4.95 1.5 4.97239 1.5 5H0.5C0.5 5.52467 0.925328 5.95 1.45 5.95V4.95ZM5.05 4.95H1.45V5.95H5.05V4.95ZM5.55 9.05V5.45H4.55V9.05H5.55ZM5.5 9C5.52761 9 5.55 9.02239 5.55 9.05H4.55C4.55 9.57467 4.97533 10 5.5 10V9ZM5.45 9.05C5.45 9.02239 5.47239 9 5.5 9V10C6.02467 10 6.45 9.57467 6.45 9.05H5.45ZM5.45 5.45V9.05H6.45V5.45H5.45ZM9.55 4.95H5.95V5.95H9.55V4.95ZM9.5 5C9.5 4.97239 9.52238 4.95 9.55 4.95V5.95C10.0747 5.95 10.5 5.52467 10.5 5H9.5ZM9.55 5.05C9.52239 5.05 9.5 5.02761 9.5 5H10.5C10.5 4.47533 10.0747 4.05 9.55 4.05V5.05ZM5.95 5.05H9.55V4.05H5.95V5.05ZM5.45 0.95V4.55H6.45V0.95H5.45ZM5.5 1C5.47239 1 5.45 0.977615 5.45 0.95H6.45C6.45 0.425329 6.02467 0 5.5 0V1Z", fill: "#6E6E6E" })] }));
5
+ const PlusIcon = ({ fill = '#6E6E6E', ...props }) => ((0, jsx_runtime_1.jsxs)("svg", { width: "11", height: "10", viewBox: "0 0 11 10", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: [(0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.5 0.5C5.25147 0.5 5.05 0.701472 5.05 0.95V4.55H1.45C1.20147 4.55 1 4.75147 1 5C1 5.24853 1.20147 5.45 1.45 5.45H5.05V9.05C5.05 9.29853 5.25147 9.5 5.5 9.5C5.74853 9.5 5.95 9.29853 5.95 9.05V5.45H9.55C9.79853 5.45 10 5.24853 10 5C10 4.75147 9.79853 4.55 9.55 4.55H5.95V0.95C5.95 0.701472 5.74853 0.5 5.5 0.5Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M5.05 4.55V5.05H5.55V4.55H5.05ZM5.05 5.45H5.55V4.95H5.05V5.45ZM5.95 5.45V4.95H5.45V5.45H5.95ZM5.95 4.55H5.45V5.05H5.95V4.55ZM5.55 0.95C5.55 0.977614 5.52761 1 5.5 1V0C4.97533 0 4.55 0.425329 4.55 0.95H5.55ZM5.55 4.55V0.95H4.55V4.55H5.55ZM1.45 5.05H5.05V4.05H1.45V5.05ZM1.5 5C1.5 5.02761 1.47761 5.05 1.45 5.05V4.05C0.925329 4.05 0.5 4.47533 0.5 5H1.5ZM1.45 4.95C1.47761 4.95 1.5 4.97239 1.5 5H0.5C0.5 5.52467 0.925328 5.95 1.45 5.95V4.95ZM5.05 4.95H1.45V5.95H5.05V4.95ZM5.55 9.05V5.45H4.55V9.05H5.55ZM5.5 9C5.52761 9 5.55 9.02239 5.55 9.05H4.55C4.55 9.57467 4.97533 10 5.5 10V9ZM5.45 9.05C5.45 9.02239 5.47239 9 5.5 9V10C6.02467 10 6.45 9.57467 6.45 9.05H5.45ZM5.45 5.45V9.05H6.45V5.45H5.45ZM9.55 4.95H5.95V5.95H9.55V4.95ZM9.5 5C9.5 4.97239 9.52238 4.95 9.55 4.95V5.95C10.0747 5.95 10.5 5.52467 10.5 5H9.5ZM9.55 5.05C9.52239 5.05 9.5 5.02761 9.5 5H10.5C10.5 4.47533 10.0747 4.05 9.55 4.05V5.05ZM5.95 5.05H9.55V4.05H5.95V5.05ZM5.45 0.95V4.55H6.45V0.95H5.45ZM5.5 1C5.47239 1 5.45 0.977615 5.45 0.95H6.45C6.45 0.425329 6.02467 0 5.5 0V1Z" })] }));
6
6
  exports.PlusIcon = PlusIcon;
7
7
  exports.default = exports.PlusIcon;
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const jsx_runtime_1 = require("react/jsx-runtime");
4
- const VerticalEllipsisIcon = (props) => ((0, jsx_runtime_1.jsxs)("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [(0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "2", r: "2", fill: "#1A9BC7" }), (0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "8", r: "2", fill: "#1A9BC7" }), (0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "14", r: "2", fill: "#1A9BC7" })] }));
4
+ const VerticalEllipsisIcon = ({ fill = '#1A9BC7', ...props }) => ((0, jsx_runtime_1.jsxs)("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: [(0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "2", r: "2" }), (0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "8", r: "2" }), (0, jsx_runtime_1.jsx)("circle", { cx: "8", cy: "14", r: "2" })] }));
5
5
  exports.default = VerticalEllipsisIcon;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Button = void 0;
7
+ const jsx_runtime_1 = require("react/jsx-runtime");
8
+ const Button_1 = __importDefault(require("@mui/material/Button"));
9
+ const variantMap = {
10
+ primary: { variant: 'contained', color: 'primary' },
11
+ secondary: { variant: 'outlined', color: 'secondary' },
12
+ tertiary: { variant: 'text', color: 'secondary' },
13
+ };
14
+ const Button = ({ variant = 'primary', danger, size = 'medium', ...rest }) => {
15
+ const mapped = variantMap[variant];
16
+ return ((0, jsx_runtime_1.jsx)(Button_1.default, { variant: mapped.variant, color: danger ? 'error' : mapped.color, size: size, ...rest }));
17
+ };
18
+ exports.Button = Button;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
29
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
30
+ };
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ __exportStar(require("./Button"), exports);
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.IconButton = void 0;
7
+ const jsx_runtime_1 = require("react/jsx-runtime");
8
+ const IconButton_1 = __importDefault(require("@mui/material/IconButton"));
9
+ const styles_1 = require("@mui/material/styles");
10
+ const IconButtonRoot = (0, styles_1.styled)(IconButton_1.default, {
11
+ shouldForwardProp: (prop) => prop !== 'bordered',
12
+ })(({ theme, bordered }) => ({
13
+ svg: {
14
+ pointerEvents: 'none',
15
+ },
16
+ ...(bordered && {
17
+ border: '1px solid',
18
+ borderColor: theme.palette.grey[300],
19
+ }),
20
+ }));
21
+ const IconButton = ({ bordered, danger, color, size = 'medium', ...props }) => ((0, jsx_runtime_1.jsx)(IconButtonRoot, { color: danger ? 'error' : color, bordered: bordered, size: size, ...props }));
22
+ exports.IconButton = IconButton;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
29
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
30
+ };
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ __exportStar(require("./IconButton"), exports);
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InspectorToggleButton = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const styles_1 = require("@mui/material/styles");
6
+ const IconButton_1 = require("../IconButton");
7
+ const InspectorToggleButtonRoot = (0, styles_1.styled)(IconButton_1.IconButton)(({ theme }) => ({
8
+ width: 40,
9
+ height: 40,
10
+ padding: 0,
11
+ backgroundColor: theme.palette.common.white,
12
+ color: theme.palette.grey[700],
13
+ borderRadius: '50%',
14
+ boxShadow: '0 0 8px 0 rgba(0, 0, 0, 0.12)',
15
+ }));
16
+ const InspectorToggleButton = ({ size = 'medium', type = 'button', ...props }) => ((0, jsx_runtime_1.jsx)(InspectorToggleButtonRoot, { size: size, type: type, ...props }));
17
+ exports.InspectorToggleButton = InspectorToggleButton;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
29
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
30
+ };
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ __exportStar(require("./InspectorToggleButton"), exports);
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ToggleButton = void 0;
7
+ const jsx_runtime_1 = require("react/jsx-runtime");
8
+ const ToggleButton_1 = __importDefault(require("@mui/material/ToggleButton"));
9
+ const ToggleButton = ({ danger, size = 'medium', color, value = 'toggle', ...rest }) => ((0, jsx_runtime_1.jsx)(ToggleButton_1.default, { value: value, color: danger ? 'error' : color, size: size, ...rest }));
10
+ exports.ToggleButton = ToggleButton;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
29
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
30
+ };
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ __exportStar(require("./ToggleButton"), exports);
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
29
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
30
+ };
31
+ Object.defineProperty(exports, "__esModule", { value: true });
32
+ __exportStar(require("./theme"), exports);
33
+ __exportStar(require("./components/Button"), exports);
34
+ __exportStar(require("./components/IconButton"), exports);
35
+ __exportStar(require("./components/InspectorToggleButton"), exports);
36
+ __exportStar(require("./components/ToggleButton"), exports);
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.MuiThemeProvider = exports.styled = exports.palette = exports.muiTheme = void 0;
19
+ var theme_1 = require("./theme");
20
+ Object.defineProperty(exports, "muiTheme", { enumerable: true, get: function () { return theme_1.muiTheme; } });
21
+ var palette_1 = require("./palette");
22
+ Object.defineProperty(exports, "palette", { enumerable: true, get: function () { return palette_1.palette; } });
23
+ var styles_1 = require("@mui/material/styles");
24
+ Object.defineProperty(exports, "styled", { enumerable: true, get: function () { return styles_1.styled; } });
25
+ Object.defineProperty(exports, "MuiThemeProvider", { enumerable: true, get: function () { return styles_1.ThemeProvider; } });
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.palette = void 0;
19
+ exports.palette = {
20
+ primary: {
21
+ dark: '#0b6bb8',
22
+ main: '#0d79d0',
23
+ light: '#bce7f6',
24
+ contrastText: '#fff',
25
+ },
26
+ secondary: {
27
+ main: '#353535',
28
+ },
29
+ error: {
30
+ dark: '#c74237',
31
+ main: '#e1200e',
32
+ light: '#f5c1b7',
33
+ contrastText: '#fff',
34
+ },
35
+ success: {
36
+ dark: '#31a056',
37
+ main: '#36b260',
38
+ light: '#eefbe9',
39
+ contrastText: '#fff',
40
+ },
41
+ warning: {
42
+ dark: '#fa5700',
43
+ main: '#fe8f1f',
44
+ light: '#fffcdb',
45
+ contrastText: '#353535',
46
+ },
47
+ info: {
48
+ main: '#1a9bc7',
49
+ light: '#f5fbfc',
50
+ contrastText: '#fff',
51
+ },
52
+ grey: {
53
+ 50: '#fafafa',
54
+ 100: '#f2f2f2',
55
+ 200: '#f5f5f5',
56
+ 300: '#e2e2e2',
57
+ 400: '#c9c9c9',
58
+ 700: '#6e6e6e',
59
+ 900: '#353535',
60
+ },
61
+ common: {
62
+ black: '#000',
63
+ white: '#fff',
64
+ },
65
+ focus: '#3DADFF',
66
+ brand: {
67
+ medium: '#1a9bc7',
68
+ xlight: '#ddf3fa',
69
+ },
70
+ };
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ /*!
3
+ * © 2026 Atypon Systems LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.muiTheme = void 0;
19
+ const styles_1 = require("@mui/material/styles");
20
+ const palette_1 = require("./palette");
21
+ exports.muiTheme = (0, styles_1.createTheme)({
22
+ palette: {
23
+ primary: palette_1.palette.primary,
24
+ secondary: palette_1.palette.secondary,
25
+ error: palette_1.palette.error,
26
+ success: palette_1.palette.success,
27
+ warning: palette_1.palette.warning,
28
+ info: palette_1.palette.info,
29
+ grey: palette_1.palette.grey,
30
+ common: palette_1.palette.common,
31
+ },
32
+ typography: {
33
+ fontFamily: '"Lato", sans-serif',
34
+ fontSize: 14,
35
+ button: {
36
+ textTransform: 'none',
37
+ fontWeight: 400,
38
+ },
39
+ },
40
+ shape: {
41
+ borderRadius: 8,
42
+ },
43
+ breakpoints: {
44
+ values: {
45
+ xs: 0,
46
+ sm: 360,
47
+ md: 768,
48
+ lg: 1024,
49
+ xl: 1280,
50
+ },
51
+ },
52
+ components: {
53
+ MuiButton: {
54
+ styleOverrides: {
55
+ root: {
56
+ borderRadius: 4,
57
+ },
58
+ outlined: {
59
+ borderColor: palette_1.palette.grey[300],
60
+ },
61
+ outlinedError: {
62
+ color: palette_1.palette.error.main,
63
+ borderColor: palette_1.palette.error.main,
64
+ },
65
+ },
66
+ },
67
+ MuiIconButton: {
68
+ styleOverrides: {
69
+ root: {
70
+ borderRadius: 4,
71
+ },
72
+ },
73
+ },
74
+ MuiButtonBase: {
75
+ defaultProps: {
76
+ disableRipple: false,
77
+ },
78
+ styleOverrides: {
79
+ root: {
80
+ '&.Mui-focusVisible': {
81
+ outline: `3px solid ${palette_1.palette.focus}`,
82
+ outlineOffset: '4px',
83
+ },
84
+ },
85
+ },
86
+ },
87
+ },
88
+ });
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const ArrowDownIcon = (props) => (_jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.0625 6L12 6.9375L8 10.9375L4 6.9375L4.9375 6L8 9.0625L11.0625 6Z", fill: "#6E6E6E" }) }));
2
+ const ArrowDownIcon = ({ fill = '#6E6E6E', ...props }) => (_jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.0625 6L12 6.9375L8 10.9375L4 6.9375L4.9375 6L8 9.0625L11.0625 6Z" }) }));
3
3
  export default ArrowDownIcon;
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const ArrowUpIcon = (props) => (_jsx("svg", { width: "9", height: "5", viewBox: "0 0 9 5", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.65627 4.769C1.23955 5.11006 0.607922 5.06866 0.24548 4.67652C-0.116961 4.28438 -0.0729634 3.69 0.343752 3.34894L4.43549 7.75526e-07L8.64031 3.29867C9.06452 3.63145 9.12172 4.22484 8.76807 4.62403C8.41443 5.02321 7.78385 5.07704 7.35965 4.74425L4.46297 2.47182L1.65627 4.769Z", fill: "#6E6E6E" }) }));
2
+ const ArrowUpIcon = ({ fill = '#6E6E6E', ...props }) => (_jsx("svg", { width: "9", height: "5", viewBox: "0 0 9 5", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.65627 4.769C1.23955 5.11006 0.607922 5.06866 0.24548 4.67652C-0.116961 4.28438 -0.0729634 3.69 0.343752 3.34894L4.43549 7.75526e-07L8.64031 3.29867C9.06452 3.63145 9.12172 4.22484 8.76807 4.62403C8.41443 5.02321 7.78385 5.07704 7.35965 4.74425L4.46297 2.47182L1.65627 4.769Z" }) }));
3
3
  export default ArrowUpIcon;
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const AttentionBlueIcon = (props) => (_jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M9 15H11V9H9V15ZM10 0C4.475 0 0 4.475 0 10C0 15.525 4.475 20 10 20C15.525 20 20 15.525 20 10C20 4.475 15.525 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM9 7H11V5H9V7Z", fill: "#1A9BC7" }) }));
2
+ const AttentionBlueIcon = ({ fill = '#1A9BC7', ...props }) => (_jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M9 15H11V9H9V15ZM10 0C4.475 0 0 4.475 0 10C0 15.525 4.475 20 10 20C15.525 20 20 15.525 20 10C20 4.475 15.525 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM9 7H11V5H9V7Z" }) }));
3
3
  export default AttentionBlueIcon;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const ConvertToWebLinkIcon = (props) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", ...props, children: [_jsxs("g", { clipPath: "url(#clip0_24947_17192)", children: [_jsx("path", { d: "M6.80381 11.6705L5.15413 13.3202C4.47021 14.0041 3.36265 14.0041 2.6793 13.3203C1.99582 12.6368 1.99582 11.5292 2.67917 10.8458L5.97909 7.54589C6.66244 6.86252 7.77011 6.86252 8.45345 7.54589C8.68126 7.77369 9.05062 7.77369 9.27842 7.54589C9.50622 7.31809 9.50622 6.94873 9.27842 6.72093C8.13944 5.58196 6.29311 5.58196 5.15413 6.72093L1.85423 10.0208C0.715256 11.1598 0.715256 13.0061 1.85423 14.1451C2.99307 15.2847 4.83954 15.2847 5.97912 14.1451L7.62879 12.4954C7.8566 12.2676 7.8566 11.8983 7.62879 11.6705C7.40099 11.4427 7.03161 11.4427 6.80381 11.6705Z", fill: "#6E6E6E" }), _jsx("path", { d: "M14.1453 1.85423C13.0064 0.715256 11.1594 0.715256 10.0205 1.85423L8.0412 3.83348C7.8134 4.06128 7.8134 4.43064 8.0412 4.65844C8.269 4.88624 8.63836 4.88624 8.86616 4.65844L10.8454 2.67919C11.5288 1.99582 12.637 1.99582 13.3204 2.67919C14.0037 3.36254 14.0037 4.47021 13.3204 5.15356L9.69088 8.78308C9.0075 9.46646 7.89986 9.46646 7.21651 8.78308C6.98871 8.55528 6.61935 8.55528 6.39155 8.78308C6.16375 9.01088 6.16375 9.38024 6.39155 9.60804C7.53053 10.747 9.37686 10.747 10.5158 9.60804L14.1453 5.97855C15.2843 4.83957 15.2843 2.99321 14.1453 1.85423Z", fill: "#6E6E6E" })] }), _jsx("path", { d: "M6.03135 0.0257959C6.3353 -0.05247 6.65943 0.0510401 6.84802 0.286352C7.03658 0.521689 7.05102 0.840387 6.88387 1.08935L5.92777 2.5136C5.71875 2.82482 5.28946 2.93734 4.93682 2.77323L4.14405 2.40418C3.66469 2.7133 3.2454 3.0558 2.88917 3.40468C2.02685 4.24923 1.59582 5.06266 1.51378 5.43164C1.42833 5.81669 1.02404 6.06457 0.610469 5.9852C0.196888 5.90565 -0.0693643 5.52924 0.0158945 5.14419C0.176091 4.42231 0.805747 3.37852 1.78069 2.42365C2.77623 1.44866 4.19941 0.497558 6.03135 0.0257959Z", fill: "#6E6E6E" }), _jsx("path", { d: "M14.4863 10.5684C14.5718 10.1833 14.976 9.93537 15.3896 10.0148C15.8031 10.0944 16.0693 10.4708 15.9841 10.8558C15.8239 11.5777 15.1943 12.6215 14.2194 13.5763C13.2239 14.5513 11.8008 15.5024 9.96896 15.9742C9.66499 16.0525 9.33991 15.949 9.15134 15.7136C8.96301 15.4783 8.94937 15.1595 9.11648 14.9106L10.0725 13.4864L10.1612 13.3788C10.3881 13.1513 10.755 13.0832 11.0634 13.2268L11.8552 13.5949C12.3344 13.2858 12.7538 12.9441 13.11 12.5953C13.9724 11.7507 14.4043 10.9374 14.4863 10.5684Z", fill: "#6E6E6E" }), _jsx("defs", { children: _jsx("clipPath", { id: "clip0_24947_17192", children: _jsx("rect", { width: "14", height: "14", fill: "white", transform: "translate(1 1)" }) }) })] }));
3
+ export default ConvertToWebLinkIcon;
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const DeleteSolidIcon = ({ color = '#6E6E6E', ...props }) => (_jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M15.494 3.375H11.955C11.93 3.165 11.714 3 11.451 3H8.548C8.286 3 8.07 3.165 8.045 3.375H4.506C4.226 3.375 4 3.561 4 3.792V4.583C4 4.813 4.227 5 4.506 5H15.494C15.774 5 16 4.814 16 4.583V3.792C16 3.562 15.773 3.375 15.494 3.375ZM5 6V16.491C5 16.772 5.23 17 5.513 17H14.487C14.5541 17.0004 14.6207 16.9875 14.6829 16.9621C14.745 16.9367 14.8015 16.8993 14.8492 16.852C14.8969 16.8048 14.9347 16.7485 14.9606 16.6866C14.9865 16.6246 14.9999 16.5581 15 16.491V6H5ZM8.753 13.874C8.753 14.184 8.5 14.435 8.188 14.435C8.03886 14.4355 7.89559 14.3769 7.78966 14.2719C7.68373 14.1669 7.62379 14.0241 7.623 13.875V8.311C7.623 8.001 7.876 7.75 8.188 7.75C8.5 7.75 8.753 8 8.753 8.31V13.873V13.874ZM12.377 13.874C12.377 14.184 12.124 14.435 11.812 14.435C11.6629 14.4355 11.5196 14.3769 11.4137 14.2719C11.3077 14.1669 11.2478 14.0241 11.247 13.875V8.311C11.247 8.001 11.5 7.75 11.812 7.75C12.124 7.75 12.377 8 12.377 8.31V13.873V13.874Z", fill: color }) }));
2
+ const DeleteSolidIcon = ({ fill = '#6E6E6E', ...props }) => (_jsx("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: fill, xmlns: "http://www.w3.org/2000/svg", ...props, children: _jsx("path", { d: "M15.494 3.375H11.955C11.93 3.165 11.714 3 11.451 3H8.548C8.286 3 8.07 3.165 8.045 3.375H4.506C4.226 3.375 4 3.561 4 3.792V4.583C4 4.813 4.227 5 4.506 5H15.494C15.774 5 16 4.814 16 4.583V3.792C16 3.562 15.773 3.375 15.494 3.375ZM5 6V16.491C5 16.772 5.23 17 5.513 17H14.487C14.5541 17.0004 14.6207 16.9875 14.6829 16.9621C14.745 16.9367 14.8015 16.8993 14.8492 16.852C14.8969 16.8048 14.9347 16.7485 14.9606 16.6866C14.9865 16.6246 14.9999 16.5581 15 16.491V6H5ZM8.753 13.874C8.753 14.184 8.5 14.435 8.188 14.435C8.03886 14.4355 7.89559 14.3769 7.78966 14.2719C7.68373 14.1669 7.62379 14.0241 7.623 13.875V8.311C7.623 8.001 7.876 7.75 8.188 7.75C8.5 7.75 8.753 8 8.753 8.31V13.873V13.874ZM12.377 13.874C12.377 14.184 12.124 14.435 11.812 14.435C11.6629 14.4355 11.5196 14.3769 11.4137 14.2719C11.3077 14.1669 11.2478 14.0241 11.247 13.875V8.311C11.247 8.001 11.5 7.75 11.812 7.75C12.124 7.75 12.377 8 12.377 8.31V13.873V13.874Z" }) }));
3
3
  export default DeleteSolidIcon;