1mpacto-react-ui 2.0.24 → 2.0.26

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 (94) hide show
  1. package/dist/assets/_colors.scss +42 -0
  2. package/dist/assets/_mixins.scss +72 -72
  3. package/dist/assets/_typography.scss +32 -2
  4. package/dist/assets/core.css +1 -1
  5. package/dist/assets/fontfamily.css +1 -1
  6. package/dist/assets/icons/arrow-narrow-down.svg +3 -3
  7. package/dist/assets/style.css +1 -1
  8. package/dist/components/Button/Button.cjs +12 -12
  9. package/dist/components/Button/Button.config.cjs +1 -1
  10. package/dist/components/Button/Button.config.mjs +58 -55
  11. package/dist/components/Button/Button.mjs +24 -24
  12. package/dist/components/Button/style.module.scss.cjs +1 -1
  13. package/dist/components/Button/style.module.scss.mjs +60 -57
  14. package/dist/components/ButtonIcon/ButtonIcon.cjs +12 -12
  15. package/dist/components/ButtonIcon/ButtonIcon.mjs +20 -20
  16. package/dist/components/Calendar/Calendar.cjs +1 -1
  17. package/dist/components/Calendar/Calendar.config.cjs +1 -0
  18. package/dist/components/Calendar/Calendar.config.mjs +22 -0
  19. package/dist/components/Calendar/Calendar.mjs +221 -133
  20. package/dist/components/Calendar/CalendarCell.cjs +1 -1
  21. package/dist/components/Calendar/CalendarCell.mjs +9 -9
  22. package/dist/components/Calendar/CalendarMonth.cjs +1 -1
  23. package/dist/components/Calendar/CalendarMonth.mjs +23 -21
  24. package/dist/components/Calendar/CalendarRange.cjs +1 -1
  25. package/dist/components/Calendar/CalendarRange.mjs +100 -98
  26. package/dist/components/Calendar/CalendarYear.cjs +3 -3
  27. package/dist/components/Calendar/CalendarYear.mjs +27 -25
  28. package/dist/components/Calendar/style.module.scss.cjs +1 -1
  29. package/dist/components/Calendar/style.module.scss.mjs +35 -33
  30. package/dist/components/Chart/LineChart.cjs +1 -1
  31. package/dist/components/Chart/LineChart.mjs +1 -1
  32. package/dist/components/DatePicker/DatePicker.cjs +1 -1
  33. package/dist/components/DatePicker/DatePicker.mjs +78 -69
  34. package/dist/components/DatePicker/DateRangePicker.cjs +1 -1
  35. package/dist/components/DatePicker/DateRangePicker.mjs +91 -79
  36. package/dist/components/DatePicker/FilterDate.cjs +1 -1
  37. package/dist/components/DatePicker/FilterDate.mjs +181 -127
  38. package/dist/components/DatePicker/MonthYearPicker.cjs +1 -1
  39. package/dist/components/DatePicker/MonthYearPicker.mjs +58 -49
  40. package/dist/components/Input/InputInnerLabel.cjs +6 -6
  41. package/dist/components/Input/InputInnerLabel.config.cjs +1 -1
  42. package/dist/components/Input/InputInnerLabel.config.mjs +9 -5
  43. package/dist/components/Input/InputInnerLabel.mjs +36 -35
  44. package/dist/components/Input/InputInnerLabel.module.scss.cjs +1 -1
  45. package/dist/components/Input/InputInnerLabel.module.scss.mjs +19 -17
  46. package/dist/components/Sidebar/ItemSidebar.config.cjs +1 -1
  47. package/dist/components/Sidebar/ItemSidebar.config.mjs +6 -2
  48. package/dist/components/Sidebar/Sidebar.cjs +1 -1
  49. package/dist/components/Sidebar/Sidebar.config.cjs +1 -1
  50. package/dist/components/Sidebar/Sidebar.config.mjs +14 -12
  51. package/dist/components/Sidebar/Sidebar.mjs +78 -77
  52. package/dist/components/Sidebar/Sidebar.module.scss.cjs +1 -1
  53. package/dist/components/Sidebar/Sidebar.module.scss.mjs +22 -20
  54. package/dist/components/Sidebar/itemSidebar.module.scss.cjs +1 -1
  55. package/dist/components/Sidebar/itemSidebar.module.scss.mjs +25 -24
  56. package/dist/components/Upload/UploadImage.cjs +12 -12
  57. package/dist/components/Upload/UploadImage.mjs +28 -28
  58. package/dist/config/resources/index.cjs +1 -1
  59. package/dist/config/resources/index.mjs +1 -1
  60. package/dist/config/tailwind/colors.cjs +1 -1
  61. package/dist/config/tailwind/colors.mjs +22 -1
  62. package/dist/config/tailwind/typography.cjs +1 -1
  63. package/dist/config/tailwind/typography.mjs +70 -3
  64. package/dist/package.json.cjs +1 -1
  65. package/dist/package.json.d.ts +127 -128
  66. package/dist/package.json.mjs +1 -1
  67. package/dist/src/components/Button/Button.config.d.ts +3 -0
  68. package/dist/src/components/Calendar/Calendar.config.d.ts +19 -0
  69. package/dist/src/components/Calendar/Calendar.d.ts +5 -3
  70. package/dist/src/components/Calendar/Calendar.stories.d.ts +21 -5
  71. package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -1
  72. package/dist/src/components/Calendar/CalendarRange.d.ts +1 -1
  73. package/dist/src/components/Calendar/CalendarYear.d.ts +1 -1
  74. package/dist/src/components/DatePicker/DatePicker.stories.d.ts +28 -0
  75. package/dist/src/components/DatePicker/FilterDate.d.ts +1 -1
  76. package/dist/src/components/DatePicker/FilterDate.stories.d.ts +29 -1
  77. package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -1
  78. package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +29 -1
  79. package/dist/src/components/Input/InputInnerLabel.config.d.ts +5 -1
  80. package/dist/src/components/Input/InputInnerLabel.stories.d.ts +16 -0
  81. package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +4 -0
  82. package/dist/src/components/Sidebar/Sidebar.config.d.ts +2 -0
  83. package/dist/src/config/resources/index.d.ts +2 -2
  84. package/dist/src/config/tailwind/typography.d.ts +1 -0
  85. package/dist/src/interfaces/components/Button/index.d.ts +1 -1
  86. package/dist/src/interfaces/components/Calendar/index.d.ts +41 -0
  87. package/dist/src/interfaces/components/DatePicker/index.d.ts +41 -1
  88. package/dist/src/interfaces/components/Input/index.d.ts +10 -0
  89. package/dist/src/interfaces/components/Sidebar/index.d.ts +6 -1
  90. package/dist/src/interfaces/components/Tabs/index.d.ts +1 -1
  91. package/dist/types-external/table.d.ts +15 -15
  92. package/dist/utils/common.cjs +1 -1
  93. package/dist/utils/common.mjs +7 -7
  94. package/package.json +127 -128
@@ -1,12 +1,12 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t=require("react/jsx-runtime"),g=require("react"),$=require("../Button/Button.cjs"),n=require("./UploadImage.module.scss.cjs"),R=({className:r})=>t.jsx("svg",{viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg",className:`iru-h-5 iru-w-5 iru-text-red-600 ${r??""}`,fill:"currentColor",children:t.jsx("g",{id:"x",children:t.jsx("path",{id:"Vector",fillRule:"evenodd",clipRule:"evenodd",d:`M6.19544 6.19126C6.32045 6.06628 6.48999 5.99607 6.66677 5.99607C6.84354 5.99607 7.01308 6.06628 7.1381 \r
2
- 6.19126L10.0001 9.05326L12.8621 6.19126C12.9236 6.12758 12.9972 6.0768 13.0785 6.04186C13.1598 6.00692 13.2473 \r
3
- 5.98853 13.3358 5.98776C13.4244 5.98699 13.5121 6.00386 13.5941 6.03738C13.676 6.0709 13.7504 6.1204 13.813 \r
4
- 6.18299C13.8756 6.24559 13.9251 6.32002 13.9587 6.40195C13.9922 6.48389 14.009 6.57167 14.0083 6.66019C14.0075 \r
5
- 6.74871 13.9891 6.83619 13.9542 6.91753C13.9192 6.99886 13.8684 7.07243 13.8048 7.13392L10.9428 9.99592L13.8048 \r
6
- 12.8579C13.9262 12.9837 13.9934 13.1521 13.9919 13.3269C13.9904 13.5017 13.9203 13.6689 13.7966 13.7925C13.673 \r
7
- 13.9161 13.5058 13.9862 13.331 13.9877C13.1562 13.9892 12.9878 13.922 12.8621 13.8006L10.0001 10.9386L7.1381 \r
8
- 13.8006C7.01237 13.922 6.84397 13.9892 6.66917 13.9877C6.49437 13.9862 6.32716 13.9161 6.20356 13.7925C6.07995 \r
9
- 13.6689 6.00984 13.5017 6.00832 13.3269C6.0068 13.1521 6.074 12.9837 6.19544 12.8579L9.05744 9.99592L6.19544 \r
10
- 7.13392C6.07045 7.00891 6.00024 6.83937 6.00024 6.66259C6.00024 6.48581 6.07045 6.31628 6.19544 6.19126Z`})})}),N=({className:r})=>t.jsx("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:`iru-h-5 iru-w-5 ${r??""}`,children:t.jsx("g",{id:"upload",children:t.jsx("path",{id:"Vector",d:`M3.83337 13.3333V14.1666C3.83337 14.8297 4.09677 15.4656 4.56561 15.9344C5.03445 16.4033 5.67033 \r
11
- 16.6666 6.33337 16.6666H14.6667C15.3297 16.6666 15.9656 16.4033 16.4345 15.9344C16.9033 15.4656 17.1667 \r
12
- 14.8297 17.1667 14.1666V13.3333M13.8334 6.66665L10.5 3.33331M10.5 3.33331L7.16671 6.66665M10.5 3.33331V13.3333`,stroke:"#1976D2",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),y=({onChange:r,valueUrl:i,validateFile:p,validateFileDesc:k="Max 2MB (.jpg, .jpeg, .png, .svg)",maxSize:h=2,icon:D,desc:o,classNameContainer:L,classNameImage:c,classNameAction:w,id:l})=>{const s=g.useRef(null),m=p||["image/png","image/jpeg","image/jpg"],[a,x]=g.useState(""),[j,u]=g.useState(""),v=e=>{if(e?.length){const d=e[0],b=d.size/1024/1024;if(!m.some(f=>e[0].type?.includes(f)))u("Berkas tidak didukung, silahkan pilih file kembali.");else if(b>h){const f=`${e.length>1?"Jumlah u":"U"}kuran berkas tidak boleh melebihi ${h}MB.`;u(f)}else{if(!s?.current)return;u(""),r(d),x(URL.createObjectURL(d)),s.current.value=""}}},C=e=>{e.preventDefault(),v(e.dataTransfer.files)},M=e=>{e.preventDefault(),s?.current&&(typeof r=="function"&&r(null),x(""),s.current.value="")};return t.jsxs("div",{className:`${n.default.container} ${L}`,children:[t.jsx("input",{accept:m?.join(", "),ref:s,hidden:!0,type:"file",multiple:!1,onChange:e=>{e.target.files&&v(e.target.files)}}),a||i?t.jsx("div",{id:`${l}-exist`,className:`${n.default["image-content"]} ${c}`,onDrop:C,onDragOver:e=>e.preventDefault(),onDragLeave:e=>e.preventDefault(),children:t.jsx("img",{src:a||i,alt:"upload-image",className:`${n.default.image} ${c}`})}):t.jsxs("div",{id:l,className:`${n.default["image-content"]} ${c}`,onDrop:C,onDragOver:e=>e.preventDefault(),onDragLeave:e=>e.preventDefault(),children:[D,t.jsx("div",{className:n.default["text-desc"],children:typeof o=="function"?o():o})]}),t.jsxs("div",{className:n.default["action-content"],children:[t.jsxs("div",{className:`${n.default["button-content"]} ${w}`,children:[(a||i)&&t.jsx($.default,{id:`${l}-delete-img`,variants:"tertiary-red-600",size:"xs",startIcon:t.jsx(R,{}),onClick:e=>M(e),children:"Hapus"}),t.jsxs($.default,{id:`${l}-change-img`,variants:"tertiary-blue-700",size:"xs",onClick:()=>s.current?.click(),startIcon:t.jsx(N,{}),children:[a||i?"Ganti":"Pilih"," Gambar"]})]}),t.jsx("p",{className:n.default["text-desc"],children:k}),j&&t.jsx("p",{className:n.default["text-error"],children:j})]})]})};exports.default=y;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t=require("react/jsx-runtime"),g=require("react"),$=require("../Button/Button.cjs"),n=require("./UploadImage.module.scss.cjs"),R=({className:s})=>t.jsx("svg",{viewBox:"0 0 20 20",xmlns:"http://www.w3.org/2000/svg",className:`iru-h-5 iru-w-5 iru-text-red-600 ${s??""}`,fill:"currentColor",children:t.jsx("g",{id:"x",children:t.jsx("path",{id:"Vector",fillRule:"evenodd",clipRule:"evenodd",d:`M6.19544 6.19126C6.32045 6.06628 6.48999 5.99607 6.66677 5.99607C6.84354 5.99607 7.01308 6.06628 7.1381
2
+ 6.19126L10.0001 9.05326L12.8621 6.19126C12.9236 6.12758 12.9972 6.0768 13.0785 6.04186C13.1598 6.00692 13.2473
3
+ 5.98853 13.3358 5.98776C13.4244 5.98699 13.5121 6.00386 13.5941 6.03738C13.676 6.0709 13.7504 6.1204 13.813
4
+ 6.18299C13.8756 6.24559 13.9251 6.32002 13.9587 6.40195C13.9922 6.48389 14.009 6.57167 14.0083 6.66019C14.0075
5
+ 6.74871 13.9891 6.83619 13.9542 6.91753C13.9192 6.99886 13.8684 7.07243 13.8048 7.13392L10.9428 9.99592L13.8048
6
+ 12.8579C13.9262 12.9837 13.9934 13.1521 13.9919 13.3269C13.9904 13.5017 13.9203 13.6689 13.7966 13.7925C13.673
7
+ 13.9161 13.5058 13.9862 13.331 13.9877C13.1562 13.9892 12.9878 13.922 12.8621 13.8006L10.0001 10.9386L7.1381
8
+ 13.8006C7.01237 13.922 6.84397 13.9892 6.66917 13.9877C6.49437 13.9862 6.32716 13.9161 6.20356 13.7925C6.07995
9
+ 13.6689 6.00984 13.5017 6.00832 13.3269C6.0068 13.1521 6.074 12.9837 6.19544 12.8579L9.05744 9.99592L6.19544
10
+ 7.13392C6.07045 7.00891 6.00024 6.83937 6.00024 6.66259C6.00024 6.48581 6.07045 6.31628 6.19544 6.19126Z`})})}),N=({className:s})=>t.jsx("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:`iru-h-5 iru-w-5 ${s??""}`,children:t.jsx("g",{id:"upload",children:t.jsx("path",{id:"Vector",d:`M3.83337 13.3333V14.1666C3.83337 14.8297 4.09677 15.4656 4.56561 15.9344C5.03445 16.4033 5.67033
11
+ 16.6666 6.33337 16.6666H14.6667C15.3297 16.6666 15.9656 16.4033 16.4345 15.9344C16.9033 15.4656 17.1667
12
+ 14.8297 17.1667 14.1666V13.3333M13.8334 6.66665L10.5 3.33331M10.5 3.33331L7.16671 6.66665M10.5 3.33331V13.3333`,stroke:"#1976D2",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),y=({onChange:s,valueUrl:i,validateFile:p,validateFileDesc:k="Max 2MB (.jpg, .jpeg, .png, .svg)",maxSize:h=2,icon:D,desc:o,classNameContainer:L,classNameImage:c,classNameAction:w,id:l})=>{const r=g.useRef(null),m=p||["image/png","image/jpeg","image/jpg"],[a,x]=g.useState(""),[j,u]=g.useState(""),v=e=>{if(e?.length){const d=e[0],b=d.size/1024/1024;if(!m.some(f=>e[0].type?.includes(f)))u("Berkas tidak didukung, silahkan pilih file kembali.");else if(b>h){const f=`${e.length>1?"Jumlah u":"U"}kuran berkas tidak boleh melebihi ${h}MB.`;u(f)}else{if(!r?.current)return;u(""),s(d),x(URL.createObjectURL(d)),r.current.value=""}}},C=e=>{e.preventDefault(),v(e.dataTransfer.files)},M=e=>{e.preventDefault(),r?.current&&(typeof s=="function"&&s(null),x(""),r.current.value="")};return t.jsxs("div",{className:`${n.default.container} ${L}`,children:[t.jsx("input",{accept:m?.join(", "),ref:r,hidden:!0,type:"file",multiple:!1,onChange:e=>{e.target.files&&v(e.target.files)}}),a||i?t.jsx("div",{id:`${l}-exist`,className:`${n.default["image-content"]} ${c}`,onDrop:C,onDragOver:e=>e.preventDefault(),onDragLeave:e=>e.preventDefault(),children:t.jsx("img",{src:a||i,alt:"upload-image",className:`${n.default.image} ${c}`})}):t.jsxs("div",{id:l,className:`${n.default["image-content"]} ${c}`,onDrop:C,onDragOver:e=>e.preventDefault(),onDragLeave:e=>e.preventDefault(),children:[D,t.jsx("div",{className:n.default["text-desc"],children:typeof o=="function"?o():o})]}),t.jsxs("div",{className:n.default["action-content"],children:[t.jsxs("div",{className:`${n.default["button-content"]} ${w}`,children:[(a||i)&&t.jsx($.default,{id:`${l}-delete-img`,variants:"tertiary-red-600",size:"xs",startIcon:t.jsx(R,{}),onClick:e=>M(e),children:"Hapus"}),t.jsxs($.default,{id:`${l}-change-img`,variants:"tertiary-blue-700",size:"xs",onClick:()=>r.current?.click(),startIcon:t.jsx(N,{}),children:[a||i?"Ganti":"Pilih"," Gambar"]})]}),t.jsx("p",{className:n.default["text-desc"],children:k}),j&&t.jsx("p",{className:n.default["text-error"],children:j})]})]})};exports.default=y;
@@ -1,13 +1,13 @@
1
1
  import { jsxs as l, jsx as t } from "react/jsx-runtime";
2
2
  import g from "react";
3
3
  import L from "../Button/Button.mjs";
4
- import r from "./UploadImage.module.scss.mjs";
5
- const b = ({ className: n }) => /* @__PURE__ */ t(
4
+ import n from "./UploadImage.module.scss.mjs";
5
+ const b = ({ className: r }) => /* @__PURE__ */ t(
6
6
  "svg",
7
7
  {
8
8
  viewBox: "0 0 20 20",
9
9
  xmlns: "http://www.w3.org/2000/svg",
10
- className: `iru-h-5 iru-w-5 iru-text-red-600 ${n ?? ""}`,
10
+ className: `iru-h-5 iru-w-5 iru-text-red-600 ${r ?? ""}`,
11
11
  fill: "currentColor",
12
12
  children: /* @__PURE__ */ t("g", { id: "x", children: /* @__PURE__ */ t(
13
13
  "path",
@@ -15,32 +15,32 @@ const b = ({ className: n }) => /* @__PURE__ */ t(
15
15
  id: "Vector",
16
16
  fillRule: "evenodd",
17
17
  clipRule: "evenodd",
18
- d: `M6.19544 6.19126C6.32045 6.06628 6.48999 5.99607 6.66677 5.99607C6.84354 5.99607 7.01308 6.06628 7.1381 \r
19
- 6.19126L10.0001 9.05326L12.8621 6.19126C12.9236 6.12758 12.9972 6.0768 13.0785 6.04186C13.1598 6.00692 13.2473 \r
20
- 5.98853 13.3358 5.98776C13.4244 5.98699 13.5121 6.00386 13.5941 6.03738C13.676 6.0709 13.7504 6.1204 13.813 \r
21
- 6.18299C13.8756 6.24559 13.9251 6.32002 13.9587 6.40195C13.9922 6.48389 14.009 6.57167 14.0083 6.66019C14.0075 \r
22
- 6.74871 13.9891 6.83619 13.9542 6.91753C13.9192 6.99886 13.8684 7.07243 13.8048 7.13392L10.9428 9.99592L13.8048 \r
23
- 12.8579C13.9262 12.9837 13.9934 13.1521 13.9919 13.3269C13.9904 13.5017 13.9203 13.6689 13.7966 13.7925C13.673 \r
24
- 13.9161 13.5058 13.9862 13.331 13.9877C13.1562 13.9892 12.9878 13.922 12.8621 13.8006L10.0001 10.9386L7.1381 \r
25
- 13.8006C7.01237 13.922 6.84397 13.9892 6.66917 13.9877C6.49437 13.9862 6.32716 13.9161 6.20356 13.7925C6.07995 \r
26
- 13.6689 6.00984 13.5017 6.00832 13.3269C6.0068 13.1521 6.074 12.9837 6.19544 12.8579L9.05744 9.99592L6.19544 \r
18
+ d: `M6.19544 6.19126C6.32045 6.06628 6.48999 5.99607 6.66677 5.99607C6.84354 5.99607 7.01308 6.06628 7.1381
19
+ 6.19126L10.0001 9.05326L12.8621 6.19126C12.9236 6.12758 12.9972 6.0768 13.0785 6.04186C13.1598 6.00692 13.2473
20
+ 5.98853 13.3358 5.98776C13.4244 5.98699 13.5121 6.00386 13.5941 6.03738C13.676 6.0709 13.7504 6.1204 13.813
21
+ 6.18299C13.8756 6.24559 13.9251 6.32002 13.9587 6.40195C13.9922 6.48389 14.009 6.57167 14.0083 6.66019C14.0075
22
+ 6.74871 13.9891 6.83619 13.9542 6.91753C13.9192 6.99886 13.8684 7.07243 13.8048 7.13392L10.9428 9.99592L13.8048
23
+ 12.8579C13.9262 12.9837 13.9934 13.1521 13.9919 13.3269C13.9904 13.5017 13.9203 13.6689 13.7966 13.7925C13.673
24
+ 13.9161 13.5058 13.9862 13.331 13.9877C13.1562 13.9892 12.9878 13.922 12.8621 13.8006L10.0001 10.9386L7.1381
25
+ 13.8006C7.01237 13.922 6.84397 13.9892 6.66917 13.9877C6.49437 13.9862 6.32716 13.9161 6.20356 13.7925C6.07995
26
+ 13.6689 6.00984 13.5017 6.00832 13.3269C6.0068 13.1521 6.074 12.9837 6.19544 12.8579L9.05744 9.99592L6.19544
27
27
  7.13392C6.07045 7.00891 6.00024 6.83937 6.00024 6.66259C6.00024 6.48581 6.07045 6.31628 6.19544 6.19126Z`
28
28
  }
29
29
  ) })
30
30
  }
31
- ), y = ({ className: n }) => /* @__PURE__ */ t(
31
+ ), y = ({ className: r }) => /* @__PURE__ */ t(
32
32
  "svg",
33
33
  {
34
34
  viewBox: "0 0 20 20",
35
35
  fill: "none",
36
36
  xmlns: "http://www.w3.org/2000/svg",
37
- className: `iru-h-5 iru-w-5 ${n ?? ""}`,
37
+ className: `iru-h-5 iru-w-5 ${r ?? ""}`,
38
38
  children: /* @__PURE__ */ t("g", { id: "upload", children: /* @__PURE__ */ t(
39
39
  "path",
40
40
  {
41
41
  id: "Vector",
42
- d: `M3.83337 13.3333V14.1666C3.83337 14.8297 4.09677 15.4656 4.56561 15.9344C5.03445 16.4033 5.67033 \r
43
- 16.6666 6.33337 16.6666H14.6667C15.3297 16.6666 15.9656 16.4033 16.4345 15.9344C16.9033 15.4656 17.1667 \r
42
+ d: `M3.83337 13.3333V14.1666C3.83337 14.8297 4.09677 15.4656 4.56561 15.9344C5.03445 16.4033 5.67033
43
+ 16.6666 6.33337 16.6666H14.6667C15.3297 16.6666 15.9656 16.4033 16.4345 15.9344C16.9033 15.4656 17.1667
44
44
  14.8297 17.1667 14.1666V13.3333M13.8334 6.66665L10.5 3.33331M10.5 3.33331L7.16671 6.66665M10.5 3.33331V13.3333`,
45
45
  stroke: "#1976D2",
46
46
  strokeWidth: "1.5",
@@ -50,7 +50,7 @@ const b = ({ className: n }) => /* @__PURE__ */ t(
50
50
  ) })
51
51
  }
52
52
  ), z = ({
53
- onChange: n,
53
+ onChange: r,
54
54
  valueUrl: a,
55
55
  validateFile: m,
56
56
  validateFileDesc: x = "Max 2MB (.jpg, .jpeg, .png, .svg)",
@@ -72,15 +72,15 @@ const b = ({ className: n }) => /* @__PURE__ */ t(
72
72
  u(f);
73
73
  } else {
74
74
  if (!i?.current) return;
75
- u(""), n(p), v(URL.createObjectURL(p)), i.current.value = "";
75
+ u(""), r(p), v(URL.createObjectURL(p)), i.current.value = "";
76
76
  }
77
77
  }
78
78
  }, D = (e) => {
79
79
  e.preventDefault(), k(e.dataTransfer.files);
80
80
  }, N = (e) => {
81
- e.preventDefault(), i?.current && (typeof n == "function" && n(null), v(""), i.current.value = "");
81
+ e.preventDefault(), i?.current && (typeof r == "function" && r(null), v(""), i.current.value = "");
82
82
  };
83
- return /* @__PURE__ */ l("div", { className: `${r.container} ${M}`, children: [
83
+ return /* @__PURE__ */ l("div", { className: `${n.container} ${M}`, children: [
84
84
  /* @__PURE__ */ t(
85
85
  "input",
86
86
  {
@@ -98,28 +98,28 @@ const b = ({ className: n }) => /* @__PURE__ */ t(
98
98
  "div",
99
99
  {
100
100
  id: `${s}-exist`,
101
- className: `${r["image-content"]} ${d}`,
101
+ className: `${n["image-content"]} ${d}`,
102
102
  onDrop: D,
103
103
  onDragOver: (e) => e.preventDefault(),
104
104
  onDragLeave: (e) => e.preventDefault(),
105
- children: /* @__PURE__ */ t("img", { src: o || a, alt: "upload-image", className: `${r.image} ${d}` })
105
+ children: /* @__PURE__ */ t("img", { src: o || a, alt: "upload-image", className: `${n.image} ${d}` })
106
106
  }
107
107
  ) : /* @__PURE__ */ l(
108
108
  "div",
109
109
  {
110
110
  id: s,
111
- className: `${r["image-content"]} ${d}`,
111
+ className: `${n["image-content"]} ${d}`,
112
112
  onDrop: D,
113
113
  onDragOver: (e) => e.preventDefault(),
114
114
  onDragLeave: (e) => e.preventDefault(),
115
115
  children: [
116
116
  w,
117
- /* @__PURE__ */ t("div", { className: r["text-desc"], children: typeof c == "function" ? c() : c })
117
+ /* @__PURE__ */ t("div", { className: n["text-desc"], children: typeof c == "function" ? c() : c })
118
118
  ]
119
119
  }
120
120
  ),
121
- /* @__PURE__ */ l("div", { className: r["action-content"], children: [
122
- /* @__PURE__ */ l("div", { className: `${r["button-content"]} ${j}`, children: [
121
+ /* @__PURE__ */ l("div", { className: n["action-content"], children: [
122
+ /* @__PURE__ */ l("div", { className: `${n["button-content"]} ${j}`, children: [
123
123
  (o || a) && /* @__PURE__ */ t(
124
124
  L,
125
125
  {
@@ -146,8 +146,8 @@ const b = ({ className: n }) => /* @__PURE__ */ t(
146
146
  }
147
147
  )
148
148
  ] }),
149
- /* @__PURE__ */ t("p", { className: r["text-desc"], children: x }),
150
- $ && /* @__PURE__ */ t("p", { className: r["text-error"], children: $ })
149
+ /* @__PURE__ */ t("p", { className: n["text-desc"], children: x }),
150
+ $ && /* @__PURE__ */ t("p", { className: n["text-error"], children: $ })
151
151
  ] })
152
152
  ] });
153
153
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});var e="https://unpkg.com/1mpacto-web-resources@1.0.0/tinymce_8.2.1";exports.tinymceResource=e;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});var e="https://unpkg.com/1mpacto-web-resources@1.0.2/tinymce_8.2.1";exports.tinymceResource=e;
@@ -1,4 +1,4 @@
1
- var e = "https://unpkg.com/1mpacto-web-resources@1.0.0/tinymce_8.2.1";
1
+ var e = "https://unpkg.com/1mpacto-web-resources@1.0.2/tinymce_8.2.1";
2
2
  export {
3
3
  e as tinymceResource
4
4
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={transparent:"transparent",black:"#212121",white:"#FFFFFF","primary-50":"#E3F2FD","primary-100":"#BBDEFB","primary-200":"#90CAF9","primary-300":"#64B5F6","primary-400":"#42A5F5","primary-500":"#2196F3","primary-600":"#1E88E5","primary-700":"#1976D2","primary-800":"#1565C0","primary-900":"#0D47A1","blue-gray-50":"#ECEFF1","blue-gray-100":"#CFD8DC","blue-gray-200":"#B0BEC5","blue-gray-300":"#90A4AE","blue-gray-400":"#78909C","blue-gray-500":"#607D8B","blue-gray-600":"#546E7A","blue-gray-700":"#455A64","blue-gray-800":"#37474F","blue-gray-900":"#263238","gray-50":"#FAFAFA","gray-100":"#F5F5F5","gray-200":"#EEEEEE","gray-300":"#E0E0E0","gray-400":"#BDBDBD","gray-500":"#9E9E9E","gray-600":"#757575","gray-700":"#616161","gray-800":"#424242","gray-900":"#212121","brown-50":"#EFEBE9","brown-100":"#D7CCC8","brown-200":"#BCAAA4","brown-300":"#A1887F","brown-400":"#8D6E63","brown-500":"#795548","brown-600":"#6D4C41","brown-700":"#5D4037","brown-800":"#4E342E","brown-900":"#3E2723","deep-orange-50":"#FBE9E7","deep-orange-100":"#FFCCBC","deep-orange-200":"#FFAB91","deep-orange-300":"#FF8A65","deep-orange-400":"#FF7043","deep-orange-500":"#FF5722","deep-orange-600":"#F4511E","deep-orange-700":"#E64A19","deep-orange-800":"#D84315","deep-orange-900":"#BF360C","orange-50":"#FFF3E0","orange-100":"#FFE0B2","orange-200":"#FFCC80","orange-300":"#FFB74D","orange-400":"#FFA726","orange-500":"#FF9800","orange-600":"#FB8C00","orange-700":"#F57C00","orange-800":"#EF6C00","orange-900":"#E65100","amber-50":"#FFF8E1","amber-100":"#FFECB3","amber-200":"#FFE082","amber-300":"#FFD54F","amber-400":"#FFCA28","amber-500":"#FFC107","amber-600":"#FFB300","amber-700":"#FFA000","amber-800":"#FF8F00","amber-900":"#FF6F00","yellow-50":"#FFFDE7","yellow-100":"#FFF9C4","yellow-200":"#FFF59D","yellow-300":"#FFF176","yellow-400":"#FFEE58","yellow-500":"#FFEB3B","yellow-600":"#FDD835","yellow-700":"#FBC02D","yellow-800":"#F9A825","yellow-900":"#F57F17","lime-50":"#F9FBE7","lime-100":"#F0F4C3","lime-200":"#E6EE9C","lime-300":"#DCE775","lime-400":"#D4E157","lime-500":"#CDDC39","lime-600":"#C0CA33","lime-700":"#AFB42B","lime-800":"#9E9D24","lime-900":"#827717","light-green-50":"#F1F8E9","light-green-100":"#DCEDC8","light-green-200":"#C5E1A5","light-green-300":"#AED581","light-green-400":"#9CCC65","light-green-500":"#8BC34A","light-green-600":"#7CB342","light-green-700":"#689F38","light-green-800":"#558B2F","light-green-900":"#33691E","green-50":"#E8F5E9","green-100":"#C8E6C9","green-200":"#A5D6A7","green-300":"#81C784","green-400":"#66BB6A","green-500":"#4CAF50","green-600":"#43A047","green-700":"#388E3C","green-800":"#2E7D32","green-900":"#1B5E20","teal-50":"#E0F2F1","teal-100":"#B2DFDB","teal-200":"#80CBC4","teal-300":"#4DB6AC","teal-400":"#26A69A","teal-500":"#009688","teal-600":"#00897B","teal-700":"#00796B","teal-800":"#00695C","teal-900":"#004D40","cyan-50":"#E0F7FA","cyan-100":"#B2EBF2","cyan-200":"#80DEEA","cyan-300":"#4DD0E1","cyan-400":"#26C6DA","cyan-500":"#00BCD4","cyan-600":"#00ACC1","cyan-700":"#0097A7","cyan-800":"#00838F","cyan-900":"#006064","light-blue-50":"#E1F5FE","light-blue-100":"#B3E5FC","light-blue-200":"#81D4FA","light-blue-300":"#4FC3F7","light-blue-400":"#29B6F6","light-blue-500":"#03A9F4","light-blue-600":"#039BE5","light-blue-700":"#0288D1","light-blue-800":"#0277BD","light-blue-900":"#01579B","blue-50":"#E3F2FD","blue-100":"#BBDEFB","blue-200":"#90CAF9","blue-300":"#64B5F6","blue-400":"#42A5F5","blue-500":"#2196F3","blue-600":"#1E88E5","blue-700":"#1976D2","blue-800":"#1565C0","blue-900":"#0D47A1","indigo-50":"#E8EAF6","indigo-100":"#C5CAE9","indigo-200":"#9FA8DA","indigo-300":"#7986CB","indigo-400":"#5C6BC0","indigo-500":"#3F51B5","indigo-600":"#3949AB","indigo-700":"#303F9F","indigo-800":"#283593","indigo-900":"#1A237E","deep-purple-50":"#EDE7F6","deep-purple-100":"#D1C4E9","deep-purple-200":"#B39DDB","deep-purple-300":"#9575CD","deep-purple-400":"#7E57C2","deep-purple-500":"#673AB7","deep-purple-600":"#5E35B1","deep-purple-700":"#512DA8","deep-purple-800":"#4527A0","deep-purple-900":"#311B92","purple-50":"#F3E5F5","purple-100":"#E1BEE7","purple-200":"#CE93D8","purple-300":"#BA68C8","purple-400":"#AB47BC","purple-500":"#9C27B0","purple-600":"#8E24AA","purple-700":"#7B1FA2","purple-800":"#6A1B9A","purple-900":"#4A148C","pink-50":"#FCE4EC","pink-100":"#F8BBD0","pink-200":"#F48FB1","pink-300":"#F06292","pink-400":"#EC407A","pink-500":"#E91E63","pink-600":"#D81B60","pink-700":"#C2185B","pink-800":"#AD1457","pink-900":"#880E4F","red-50":"#FFEBEE","red-100":"#FFCDD2","red-200":"#EF9A9A","red-300":"#E57373","red-400":"#EF5350","red-500":"#F44336","red-600":"#E53935","red-700":"#D32F2F","red-800":"#C62828","red-900":"#B71C1C","payhere-brand-base":"#102A4D","payhere-brand-10":"#CFD4DB","payhere-brand-20":"#AFB8C4","payhere-brand-30":"#8794A6","payhere-brand-40":"#607188","payhere-brand-50":"#384E6B","payhere-brand-60":"#0D2340","laba-black":"#212529","laba-white":"#FFFFFF","laba-blue-10":"#0163C8","laba-blue-08":"#006DFF","laba-blue-06":"#2899FF","laba-blue-05":"#73A4D6","laba-blue-02":"#DBECFF","laba-blue-01":"#F0F7FF","laba-green-10":"#038C67","laba-green-08":"#04BA27","laba-green-06":"#78D798","laba-green-05":"#ABF3CC","laba-green-02":"#CAEEE5","laba-green-01":"#DFF6F6","laba-grey-10":"#898989","laba-grey-08":"#AEAEAE","laba-grey-06":"#D6D6D6","laba-grey-05":"#EEEEEE","laba-grey-02":"#F2F2F2","laba-grey-01":"#FDFDFD","laba-orange-10":"#C05000","laba-orange-08":"#FF7200","laba-orange-06":"#FF9300","laba-orange-05":"#FFBD78","laba-orange-02":"#FFDDBB","laba-orange-01":"#FFF5EB","laba-red-10":"#9E101F","laba-red-08":"#ED0019","laba-red-06":"#FB004E","laba-red-05":"#FF5378","laba-red-02":"#FFAEBF","laba-red-01":"#FFEBEF","lpd-primary-50":"#CEDBFE","lpd-primary-100":"#B6CAFE","lpd-primary-200":"#9DB8FE","lpd-primary-300":"#6C94FD","lpd-primary-400":"#3B71FD","lpd-primary-500":"#0A4DFC","lpd-primary-600":"#083ECA","lpd-primary-700":"#062E97","lpd-primary-800":"#041F65","lpd-primary-900":"#03174C","lpd-secondary-50":"#FEF5CE","lpd-secondary-100":"#FEEFB5","lpd-secondary-200":"#FDEA9D","lpd-secondary-300":"#FDE06B","lpd-secondary-400":"#FCD53A","lpd-secondary-500":"#FBCB09","lpd-secondary-600":"#C9A207","lpd-secondary-700":"#977A05","lpd-secondary-800":"#645104","lpd-secondary-900":"#4B3D03","bill-primary-50":"#EAF0FE","bill-primary-100":"#D5E1FD","bill-primary-200":"#ABC3FB","bill-primary-300":"#81A4F9","bill-primary-400":"#5786F7","bill-primary-500":"#2D68F5","bill-primary-600":"#2453C4","bill-primary-700":"#1B3E93","bill-primary-800":"#122A62","bill-primary-900":"#091531","bill-secondary-50":"#F0FEFD","bill-secondary-100":"#E2FCFA","bill-secondary-200":"#C5F9F5","bill-secondary-300":"#A8F7F1","bill-secondary-400":"#8BF4EC","bill-secondary-500":"#6EF1E7","bill-secondary-600":"#59CBC2","bill-secondary-700":"#44A59D","bill-secondary-800":"#2F7E79","bill-secondary-900":"#1A5854"};exports.default=e;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={transparent:"transparent",black:"#212121",white:"#FFFFFF","white-50":"#F6F8FA","primary-50":"#E3F2FD","primary-100":"#BBDEFB","primary-200":"#90CAF9","primary-300":"#64B5F6","primary-400":"#42A5F5","primary-500":"#2196F3","primary-600":"#1E88E5","primary-700":"#1976D2","primary-800":"#1565C0","primary-900":"#0D47A1","blue-gray-50":"#ECEFF1","blue-gray-100":"#CFD8DC","blue-gray-200":"#B0BEC5","blue-gray-300":"#90A4AE","blue-gray-400":"#78909C","blue-gray-500":"#607D8B","blue-gray-600":"#546E7A","blue-gray-700":"#455A64","blue-gray-800":"#37474F","blue-gray-900":"#263238","gray-50":"#FAFAFA","gray-100":"#F5F5F5","gray-200":"#EEEEEE","gray-300":"#E0E0E0","gray-400":"#BDBDBD","gray-500":"#9E9E9E","gray-600":"#757575","gray-700":"#616161","gray-800":"#424242","gray-900":"#212121","brown-50":"#EFEBE9","brown-100":"#D7CCC8","brown-200":"#BCAAA4","brown-300":"#A1887F","brown-400":"#8D6E63","brown-500":"#795548","brown-600":"#6D4C41","brown-700":"#5D4037","brown-800":"#4E342E","brown-900":"#3E2723","deep-orange-50":"#FBE9E7","deep-orange-100":"#FFCCBC","deep-orange-200":"#FFAB91","deep-orange-300":"#FF8A65","deep-orange-400":"#FF7043","deep-orange-500":"#FF5722","deep-orange-600":"#F4511E","deep-orange-700":"#E64A19","deep-orange-800":"#D84315","deep-orange-900":"#BF360C","orange-50":"#FFF3E0","orange-100":"#FFE0B2","orange-200":"#FFCC80","orange-300":"#FFB74D","orange-400":"#FFA726","orange-500":"#FF9800","orange-600":"#FB8C00","orange-700":"#F57C00","orange-800":"#EF6C00","orange-900":"#E65100","amber-50":"#FFF8E1","amber-100":"#FFECB3","amber-200":"#FFE082","amber-300":"#FFD54F","amber-400":"#FFCA28","amber-500":"#FFC107","amber-600":"#FFB300","amber-700":"#FFA000","amber-800":"#FF8F00","amber-900":"#FF6F00","yellow-50":"#FFFDE7","yellow-100":"#FFF9C4","yellow-200":"#FFF59D","yellow-300":"#FFF176","yellow-400":"#FFEE58","yellow-500":"#FFEB3B","yellow-600":"#FDD835","yellow-700":"#FBC02D","yellow-800":"#F9A825","yellow-900":"#F57F17","lime-50":"#F9FBE7","lime-100":"#F0F4C3","lime-200":"#E6EE9C","lime-300":"#DCE775","lime-400":"#D4E157","lime-500":"#CDDC39","lime-600":"#C0CA33","lime-700":"#AFB42B","lime-800":"#9E9D24","lime-900":"#827717","light-green-50":"#F1F8E9","light-green-100":"#DCEDC8","light-green-200":"#C5E1A5","light-green-300":"#AED581","light-green-400":"#9CCC65","light-green-500":"#8BC34A","light-green-600":"#7CB342","light-green-700":"#689F38","light-green-800":"#558B2F","light-green-900":"#33691E","green-50":"#E8F5E9","green-100":"#C8E6C9","green-200":"#A5D6A7","green-300":"#81C784","green-400":"#66BB6A","green-500":"#4CAF50","green-600":"#43A047","green-700":"#388E3C","green-800":"#2E7D32","green-900":"#1B5E20","teal-50":"#E0F2F1","teal-100":"#B2DFDB","teal-200":"#80CBC4","teal-300":"#4DB6AC","teal-400":"#26A69A","teal-500":"#009688","teal-600":"#00897B","teal-700":"#00796B","teal-800":"#00695C","teal-900":"#004D40","cyan-50":"#E0F7FA","cyan-100":"#B2EBF2","cyan-200":"#80DEEA","cyan-300":"#4DD0E1","cyan-400":"#26C6DA","cyan-500":"#00BCD4","cyan-600":"#00ACC1","cyan-700":"#0097A7","cyan-800":"#00838F","cyan-900":"#006064","light-blue-50":"#E1F5FE","light-blue-100":"#B3E5FC","light-blue-200":"#81D4FA","light-blue-300":"#4FC3F7","light-blue-400":"#29B6F6","light-blue-500":"#03A9F4","light-blue-600":"#039BE5","light-blue-700":"#0288D1","light-blue-800":"#0277BD","light-blue-900":"#01579B","blue-50":"#E3F2FD","blue-100":"#BBDEFB","blue-200":"#90CAF9","blue-300":"#64B5F6","blue-400":"#42A5F5","blue-500":"#2196F3","blue-600":"#1E88E5","blue-700":"#1976D2","blue-800":"#1565C0","blue-900":"#0D47A1","indigo-50":"#E8EAF6","indigo-100":"#C5CAE9","indigo-200":"#9FA8DA","indigo-300":"#7986CB","indigo-400":"#5C6BC0","indigo-500":"#3F51B5","indigo-600":"#3949AB","indigo-700":"#303F9F","indigo-800":"#283593","indigo-900":"#1A237E","deep-purple-50":"#EDE7F6","deep-purple-100":"#D1C4E9","deep-purple-200":"#B39DDB","deep-purple-300":"#9575CD","deep-purple-400":"#7E57C2","deep-purple-500":"#673AB7","deep-purple-600":"#5E35B1","deep-purple-700":"#512DA8","deep-purple-800":"#4527A0","deep-purple-900":"#311B92","purple-50":"#F3E5F5","purple-100":"#E1BEE7","purple-200":"#CE93D8","purple-300":"#BA68C8","purple-400":"#AB47BC","purple-500":"#9C27B0","purple-600":"#8E24AA","purple-700":"#7B1FA2","purple-800":"#6A1B9A","purple-900":"#4A148C","pink-50":"#FCE4EC","pink-100":"#F8BBD0","pink-200":"#F48FB1","pink-300":"#F06292","pink-400":"#EC407A","pink-500":"#E91E63","pink-600":"#D81B60","pink-700":"#C2185B","pink-800":"#AD1457","pink-900":"#880E4F","red-50":"#FFEBEE","red-100":"#FFCDD2","red-200":"#EF9A9A","red-300":"#E57373","red-400":"#EF5350","red-500":"#F44336","red-600":"#E53935","red-700":"#D32F2F","red-800":"#C62828","red-900":"#B71C1C","payhere-brand-base":"#102A4D","payhere-brand-10":"#CFD4DB","payhere-brand-20":"#AFB8C4","payhere-brand-30":"#8794A6","payhere-brand-40":"#607188","payhere-brand-50":"#384E6B","payhere-brand-60":"#0D2340","laba-black":"#212529","laba-white":"#FFFFFF","laba-blue-10":"#0163C8","laba-blue-08":"#006DFF","laba-blue-06":"#2899FF","laba-blue-05":"#73A4D6","laba-blue-02":"#DBECFF","laba-blue-01":"#F0F7FF","laba-green-10":"#038C67","laba-green-08":"#04BA27","laba-green-06":"#78D798","laba-green-05":"#ABF3CC","laba-green-02":"#CAEEE5","laba-green-01":"#DFF6F6","laba-grey-10":"#898989","laba-grey-08":"#AEAEAE","laba-grey-06":"#D6D6D6","laba-grey-05":"#EEEEEE","laba-grey-02":"#F2F2F2","laba-grey-01":"#FDFDFD","laba-orange-10":"#C05000","laba-orange-08":"#FF7200","laba-orange-06":"#FF9300","laba-orange-05":"#FFBD78","laba-orange-02":"#FFDDBB","laba-orange-01":"#FFF5EB","laba-red-10":"#9E101F","laba-red-08":"#ED0019","laba-red-06":"#FB004E","laba-red-05":"#FF5378","laba-red-02":"#FFAEBF","laba-red-01":"#FFEBEF","lpd-primary-50":"#CEDBFE","lpd-primary-100":"#B6CAFE","lpd-primary-200":"#9DB8FE","lpd-primary-300":"#6C94FD","lpd-primary-400":"#3B71FD","lpd-primary-500":"#0A4DFC","lpd-primary-600":"#083ECA","lpd-primary-700":"#062E97","lpd-primary-800":"#041F65","lpd-primary-900":"#03174C","lpd-secondary-50":"#FEF5CE","lpd-secondary-100":"#FEEFB5","lpd-secondary-200":"#FDEA9D","lpd-secondary-300":"#FDE06B","lpd-secondary-400":"#FCD53A","lpd-secondary-500":"#FBCB09","lpd-secondary-600":"#C9A207","lpd-secondary-700":"#977A05","lpd-secondary-800":"#645104","lpd-secondary-900":"#4B3D03","bill-primary-50":"#EAF0FE","bill-primary-100":"#D5E1FD","bill-primary-200":"#ABC3FB","bill-primary-300":"#81A4F9","bill-primary-400":"#5786F7","bill-primary-500":"#2D68F5","bill-primary-600":"#2453C4","bill-primary-700":"#1B3E93","bill-primary-800":"#122A62","bill-primary-900":"#091531","bill-secondary-50":"#F0FEFD","bill-secondary-100":"#E2FCFA","bill-secondary-200":"#C5F9F5","bill-secondary-300":"#A8F7F1","bill-secondary-400":"#8BF4EC","bill-secondary-500":"#6EF1E7","bill-secondary-600":"#59CBC2","bill-secondary-700":"#44A59D","bill-secondary-800":"#2F7E79","bill-secondary-900":"#1A5854","fin-primary-50":"#BED1E7","fin-primary-100":"#9FB3CB","fin-primary-200":"#8095AF","fin-primary-300":"#607893","fin-primary-400":"#415A77","fin-primary-500":"#223C5B","fin-primary-600":"#1B3049","fin-primary-700":"#142437","fin-primary-800":"#0E1824","fin-primary-900":"#0A121B","fin-secondary-50":"#FFEADA","fin-secondary-100":"#FFD5B5","fin-secondary-200":"#FFBF90","fin-secondary-300":"#FFAA6B","fin-secondary-400":"#FF9546","fin-secondary-500":"#D27A38","fin-secondary-600":"#A55E2A","fin-secondary-700":"#77431C","fin-secondary-800":"#613515","fin-secondary-900":"#4A270E"};exports.default=e;
@@ -2,6 +2,7 @@ const e = {
2
2
  transparent: "transparent",
3
3
  black: "#212121",
4
4
  white: "#FFFFFF",
5
+ "white-50": "#F6F8FA",
5
6
  "primary-50": "#E3F2FD",
6
7
  "primary-100": "#BBDEFB",
7
8
  "primary-200": "#90CAF9",
@@ -284,7 +285,27 @@ const e = {
284
285
  "bill-secondary-600": "#59CBC2",
285
286
  "bill-secondary-700": "#44A59D",
286
287
  "bill-secondary-800": "#2F7E79",
287
- "bill-secondary-900": "#1A5854"
288
+ "bill-secondary-900": "#1A5854",
289
+ "fin-primary-50": "#BED1E7",
290
+ "fin-primary-100": "#9FB3CB",
291
+ "fin-primary-200": "#8095AF",
292
+ "fin-primary-300": "#607893",
293
+ "fin-primary-400": "#415A77",
294
+ "fin-primary-500": "#223C5B",
295
+ "fin-primary-600": "#1B3049",
296
+ "fin-primary-700": "#142437",
297
+ "fin-primary-800": "#0E1824",
298
+ "fin-primary-900": "#0A121B",
299
+ "fin-secondary-50": "#FFEADA",
300
+ "fin-secondary-100": "#FFD5B5",
301
+ "fin-secondary-200": "#FFBF90",
302
+ "fin-secondary-300": "#FFAA6B",
303
+ "fin-secondary-400": "#FF9546",
304
+ "fin-secondary-500": "#D27A38",
305
+ "fin-secondary-600": "#A55E2A",
306
+ "fin-secondary-700": "#77431C",
307
+ "fin-secondary-800": "#613515",
308
+ "fin-secondary-900": "#4A270E"
288
309
  };
289
310
  export {
290
311
  e as default
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={"payhere-h1":["60px",{lineHeight:"72px",fontWeight:700}],"payhere-h2":["48px",{lineHeight:"58px",fontWeight:700}],"payhere-h3":["40px",{lineHeight:"48px",fontWeight:700}],"payhere-h4":["30px",{lineHeight:"38px",fontWeight:700}],"payhere-h5":["28px",{lineHeight:"40px",fontWeight:600}],"payhere-h6":["24px",{lineHeight:"30px",fontWeight:600}],"payhere-body-lr":["18px",{lineHeight:"26px",fontWeight:400}],"payhere-body-lm":["18px",{lineHeight:"26px",fontWeight:500}],"payhere-body-ls":["18px",{lineHeight:"26px",fontWeight:600}],"payhere-body-lb":["18px",{lineHeight:"26px",fontWeight:700}],"payhere-body-mr":["16px",{lineHeight:"24px",fontWeight:400}],"payhere-body-mm":["16px",{lineHeight:"24px",fontWeight:500}],"payhere-body-ms":["16px",{lineHeight:"24px",fontWeight:600}],"payhere-body-mb":["16px",{lineHeight:"24px",fontWeight:700}],"payhere-label-r":["15px",{lineHeight:"26px",fontWeight:400}],"payhere-label-m":["15px",{lineHeight:"26px",fontWeight:500}],"payhere-label-sb":["15px",{lineHeight:"26px",fontWeight:600}],"payhere-label-b":["15px",{lineHeight:"26px",fontWeight:700}],"payhere-body-sr":["14px",{lineHeight:"22px",fontWeight:400}],"payhere-body-sm":["14px",{lineHeight:"22px",fontWeight:500}],"payhere-body-smb":["14px",{lineHeight:"22px",fontWeight:600}],"payhere-body-sb":["14px",{lineHeight:"22px",fontWeight:700}],"payhere-body-esr":["12px",{lineHeight:"20px",fontWeight:400}],"payhere-body-esm":["12px",{lineHeight:"20px",fontWeight:500}],"payhere-body-esmb":["12px",{lineHeight:"20px",fontWeight:600}],"payhere-body-esb":["12px",{lineHeight:"20px",fontWeight:700}]},i={"laba-title-lb":["36px",{lineHeight:"44px",fontWeight:700}],"laba-title-ls":["36px",{lineHeight:"44px",fontWeight:600}],"laba-title-lr":["36px",{lineHeight:"44px",fontWeight:400}],"laba-title-mb":["32px",{lineHeight:"40px",fontWeight:700}],"laba-title-ms":["32px",{lineHeight:"40px",fontWeight:600}],"laba-title-mr":["32px",{lineHeight:"40px",fontWeight:400}],"laba-h1":["24px",{lineHeight:"30px",fontWeight:700}],"laba-h1-b":["24px",{lineHeight:"30px",fontWeight:700}],"laba-h1-sb":["24px",{lineHeight:"30px",fontWeight:600}],"laba-h1-r":["24px",{lineHeight:"30px",fontWeight:400}],"laba-h2":["18px",{lineHeight:"26px",fontWeight:700}],"laba-h2-b":["18px",{lineHeight:"26px",fontWeight:700}],"laba-h2-sb":["18px",{lineHeight:"26px",fontWeight:600}],"laba-h2-r":["18px",{lineHeight:"26px",fontWeight:400}],"laba-base-rb":["16px",{lineHeight:"24px",fontWeight:700}],"laba-base-rs":["16px",{lineHeight:"24px",fontWeight:600}],"laba-base-rr":["16px",{lineHeight:"24px",fontWeight:400}],"laba-base-sb":["14px",{lineHeight:"20px",fontWeight:700}],"laba-base-ss":["14px",{lineHeight:"20px",fontWeight:600}],"laba-base-sr":["14px",{lineHeight:"20px",fontWeight:400}],"laba-subtitle-rb":["12px",{lineHeight:"16px",fontWeight:700}],"laba-subtitle-rs":["12px",{lineHeight:"16px",fontWeight:600}],"laba-subtitle-rr":["12px",{lineHeight:"16px",fontWeight:400}],"laba-subtitle-sb":["10px",{lineHeight:"12px",fontWeight:700}],"laba-subtitle-ss":["10px",{lineHeight:"12px",fontWeight:600}],"laba-subtitle-sr":["10px",{lineHeight:"12px",fontWeight:400}]},t={"bill-h1":["60px",{lineHeight:"72px",fontWeight:700}],"bill-h2":["48px",{lineHeight:"58px",fontWeight:700}],"bill-h3":["40px",{lineHeight:"58px",fontWeight:700}],"bill-h4":["30px",{lineHeight:"38px",fontWeight:700}],"bill-h5":["28px",{lineHeight:"40px",fontWeight:600}],"bill-h6":["24px",{lineHeight:"30px",fontWeight:600}],"bill-body-lr":["18px",{lineHeight:"26px",fontWeight:400}],"bill-body-lm":["18px",{lineHeight:"26px",fontWeight:500}],"bill-body-lsm":["18px",{lineHeight:"26px",fontWeight:600}],"bill-body-blb":["18px",{lineHeight:"26px",fontWeight:700}],"bill-body-mr":["16px",{lineHeight:"24px",fontWeight:400}],"bill-body-mm":["16px",{lineHeight:"24px",fontWeight:500}],"bill-body-msm":["16px",{lineHeight:"24px",fontWeight:600}],"bill-body-mb":["16px",{lineHeight:"24px",fontWeight:700}],"bill-label-r":["15px",{lineHeight:"26px",fontWeight:400}],"bill-label-m":["15px",{lineHeight:"26px",fontWeight:500}],"bill-label-sm":["15px",{lineHeight:"26px",fontWeight:600}],"bill-label-b":["15px",{lineHeight:"26px",fontWeight:700}],"bill-body-sr":["14px",{lineHeight:"22px",fontWeight:400}],"bill-body-sm":["14px",{lineHeight:"22px",fontWeight:500}],"bill-body-ssm":["14px",{lineHeight:"22px",fontWeight:600}],"bill-body-sb":["14px",{lineHeight:"22px",fontWeight:700}],"bill-body-esr":["12px",{lineHeight:"20px",fontWeight:400}],"bill-body-ems":["12px",{lineHeight:"20px",fontWeight:500}],"bill-body-essm":["12px",{lineHeight:"20px",fontWeight:600}],"bill-body-esb":["12px",{lineHeight:"20px",fontWeight:700}]},h={...e,...i,...t};exports.configTypographyBillId=t;exports.configTypographyLabaBisnis=i;exports.configTypographyPayhere=e;exports.default=h;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={"payhere-h1":["60px",{lineHeight:"72px",fontWeight:700}],"payhere-h2":["48px",{lineHeight:"58px",fontWeight:700}],"payhere-h3":["40px",{lineHeight:"48px",fontWeight:700}],"payhere-h4":["30px",{lineHeight:"38px",fontWeight:700}],"payhere-h5":["28px",{lineHeight:"40px",fontWeight:600}],"payhere-h6":["24px",{lineHeight:"30px",fontWeight:600}],"payhere-body-lr":["18px",{lineHeight:"26px",fontWeight:400}],"payhere-body-lm":["18px",{lineHeight:"26px",fontWeight:500}],"payhere-body-ls":["18px",{lineHeight:"26px",fontWeight:600}],"payhere-body-lb":["18px",{lineHeight:"26px",fontWeight:700}],"payhere-body-mr":["16px",{lineHeight:"24px",fontWeight:400}],"payhere-body-mm":["16px",{lineHeight:"24px",fontWeight:500}],"payhere-body-ms":["16px",{lineHeight:"24px",fontWeight:600}],"payhere-body-mb":["16px",{lineHeight:"24px",fontWeight:700}],"payhere-label-r":["15px",{lineHeight:"26px",fontWeight:400}],"payhere-label-m":["15px",{lineHeight:"26px",fontWeight:500}],"payhere-label-sb":["15px",{lineHeight:"26px",fontWeight:600}],"payhere-label-b":["15px",{lineHeight:"26px",fontWeight:700}],"payhere-body-sr":["14px",{lineHeight:"22px",fontWeight:400}],"payhere-body-sm":["14px",{lineHeight:"22px",fontWeight:500}],"payhere-body-smb":["14px",{lineHeight:"22px",fontWeight:600}],"payhere-body-sb":["14px",{lineHeight:"22px",fontWeight:700}],"payhere-body-esr":["12px",{lineHeight:"20px",fontWeight:400}],"payhere-body-esm":["12px",{lineHeight:"20px",fontWeight:500}],"payhere-body-esmb":["12px",{lineHeight:"20px",fontWeight:600}],"payhere-body-esb":["12px",{lineHeight:"20px",fontWeight:700}]},i={"laba-title-lb":["36px",{lineHeight:"44px",fontWeight:700}],"laba-title-ls":["36px",{lineHeight:"44px",fontWeight:600}],"laba-title-lr":["36px",{lineHeight:"44px",fontWeight:400}],"laba-title-mb":["32px",{lineHeight:"40px",fontWeight:700}],"laba-title-ms":["32px",{lineHeight:"40px",fontWeight:600}],"laba-title-mr":["32px",{lineHeight:"40px",fontWeight:400}],"laba-h1":["24px",{lineHeight:"30px",fontWeight:700}],"laba-h1-b":["24px",{lineHeight:"30px",fontWeight:700}],"laba-h1-sb":["24px",{lineHeight:"30px",fontWeight:600}],"laba-h1-r":["24px",{lineHeight:"30px",fontWeight:400}],"laba-h2":["18px",{lineHeight:"26px",fontWeight:700}],"laba-h2-b":["18px",{lineHeight:"26px",fontWeight:700}],"laba-h2-sb":["18px",{lineHeight:"26px",fontWeight:600}],"laba-h2-r":["18px",{lineHeight:"26px",fontWeight:400}],"laba-base-rb":["16px",{lineHeight:"24px",fontWeight:700}],"laba-base-rs":["16px",{lineHeight:"24px",fontWeight:600}],"laba-base-rr":["16px",{lineHeight:"24px",fontWeight:400}],"laba-base-sb":["14px",{lineHeight:"20px",fontWeight:700}],"laba-base-ss":["14px",{lineHeight:"20px",fontWeight:600}],"laba-base-sr":["14px",{lineHeight:"20px",fontWeight:400}],"laba-subtitle-rb":["12px",{lineHeight:"16px",fontWeight:700}],"laba-subtitle-rs":["12px",{lineHeight:"16px",fontWeight:600}],"laba-subtitle-rr":["12px",{lineHeight:"16px",fontWeight:400}],"laba-subtitle-sb":["10px",{lineHeight:"12px",fontWeight:700}],"laba-subtitle-ss":["10px",{lineHeight:"12px",fontWeight:600}],"laba-subtitle-sr":["10px",{lineHeight:"12px",fontWeight:400}]},t={"bill-h1":["60px",{lineHeight:"72px",fontWeight:700}],"bill-h2":["48px",{lineHeight:"58px",fontWeight:700}],"bill-h3":["40px",{lineHeight:"48px",fontWeight:700}],"bill-h4":["30px",{lineHeight:"38px",fontWeight:700}],"bill-h5":["28px",{lineHeight:"40px",fontWeight:600}],"bill-h6":["24px",{lineHeight:"30px",fontWeight:600}],"bill-body-lr":["18px",{lineHeight:"26px",fontWeight:400}],"bill-body-lm":["18px",{lineHeight:"26px",fontWeight:500}],"bill-body-lsm":["18px",{lineHeight:"26px",fontWeight:600}],"bill-body-blb":["18px",{lineHeight:"26px",fontWeight:700}],"bill-body-mr":["16px",{lineHeight:"24px",fontWeight:400}],"bill-body-mm":["16px",{lineHeight:"24px",fontWeight:500}],"bill-body-msm":["16px",{lineHeight:"24px",fontWeight:600}],"bill-body-mb":["16px",{lineHeight:"24px",fontWeight:700}],"bill-label-r":["15px",{lineHeight:"26px",fontWeight:400}],"bill-label-m":["15px",{lineHeight:"26px",fontWeight:500}],"bill-label-sm":["15px",{lineHeight:"26px",fontWeight:600}],"bill-label-b":["15px",{lineHeight:"26px",fontWeight:700}],"bill-body-sr":["14px",{lineHeight:"22px",fontWeight:400}],"bill-body-sm":["14px",{lineHeight:"22px",fontWeight:500}],"bill-body-ssm":["14px",{lineHeight:"22px",fontWeight:600}],"bill-body-sb":["14px",{lineHeight:"22px",fontWeight:700}],"bill-body-esr":["12px",{lineHeight:"20px",fontWeight:400}],"bill-body-ems":["12px",{lineHeight:"20px",fontWeight:500}],"bill-body-essm":["12px",{lineHeight:"20px",fontWeight:600}],"bill-body-esb":["12px",{lineHeight:"20px",fontWeight:700}]},h={"fin-h1":["60px",{lineHeight:"72px",fontWeight:700}],"fin-h2":["48px",{lineHeight:"58px",fontWeight:700}],"fin-h3":["40px",{lineHeight:"48px",fontWeight:700}],"fin-h4":["30px",{lineHeight:"38px",fontWeight:700}],"fin-h5":["28px",{lineHeight:"40px",fontWeight:600}],"fin-h6":["24px",{lineHeight:"30px",fontWeight:600}],"fin-body-lr":["18px",{lineHeight:"26px",fontWeight:400}],"fin-body-lm":["18px",{lineHeight:"26px",fontWeight:500}],"fin-body-lsm":["18px",{lineHeight:"26px",fontWeight:600}],"fin-body-blb":["18px",{lineHeight:"26px",fontWeight:700}],"fin-body-mr":["16px",{lineHeight:"24px",fontWeight:400}],"fin-body-mm":["16px",{lineHeight:"24px",fontWeight:500}],"fin-body-msm":["16px",{lineHeight:"24px",fontWeight:600}],"fin-body-mb":["16px",{lineHeight:"24px",fontWeight:700}],"fin-label-r":["15px",{lineHeight:"26px",fontWeight:400}],"fin-label-m":["15px",{lineHeight:"26px",fontWeight:500}],"fin-label-sm":["15px",{lineHeight:"26px",fontWeight:600}],"fin-label-b":["15px",{lineHeight:"26px",fontWeight:700}],"fin-body-sr":["14px",{lineHeight:"22px",fontWeight:400}],"fin-body-sr-lh_24":["14px",{lineHeight:"24px",fontWeight:400}],"fin-body-sm":["14px",{lineHeight:"22px",fontWeight:500}],"fin-body-sm-lh_24":["14px",{lineHeight:"24px",fontWeight:500}],"fin-body-ssm":["14px",{lineHeight:"22px",fontWeight:600}],"fin-body-ssm-lh_24":["14px",{lineHeight:"22px",fontWeight:600}],"fin-body-sb":["14px",{lineHeight:"22px",fontWeight:700}],"fin-body-sb-lh_24":["14px",{lineHeight:"24px",fontWeight:700}],"fin-body-esr":["12px",{lineHeight:"20px",fontWeight:400}],"fin-body-ems":["12px",{lineHeight:"20px",fontWeight:500}],"fin-body-essm":["12px",{lineHeight:"20px",fontWeight:600}],"fin-body-esb":["12px",{lineHeight:"20px",fontWeight:700}]},n={...e,...i,...t,...h};exports.configTypographyBillId=t;exports.configTypographyFinAgent=h;exports.configTypographyLabaBisnis=i;exports.configTypographyPayhere=e;exports.default=n;
@@ -101,7 +101,7 @@ const e = {
101
101
  // Heading H1
102
102
  "bill-h2": ["48px", { lineHeight: "58px", fontWeight: 700 }],
103
103
  // Heading H2
104
- "bill-h3": ["40px", { lineHeight: "58px", fontWeight: 700 }],
104
+ "bill-h3": ["40px", { lineHeight: "48px", fontWeight: 700 }],
105
105
  // Heading H3
106
106
  "bill-h4": ["30px", { lineHeight: "38px", fontWeight: 700 }],
107
107
  // Heading H4
@@ -149,10 +149,77 @@ const e = {
149
149
  // Body Extra Small SemiBold
150
150
  "bill-body-esb": ["12px", { lineHeight: "20px", fontWeight: 700 }]
151
151
  // Body Extra Small Bold
152
- }, h = { ...e, ...i, ...t };
152
+ }, h = {
153
+ "fin-h1": ["60px", { lineHeight: "72px", fontWeight: 700 }],
154
+ // Heading H1
155
+ "fin-h2": ["48px", { lineHeight: "58px", fontWeight: 700 }],
156
+ // Heading H2
157
+ "fin-h3": ["40px", { lineHeight: "48px", fontWeight: 700 }],
158
+ // Heading H3
159
+ "fin-h4": ["30px", { lineHeight: "38px", fontWeight: 700 }],
160
+ // Heading H4
161
+ "fin-h5": ["28px", { lineHeight: "40px", fontWeight: 600 }],
162
+ // Heading H5
163
+ "fin-h6": ["24px", { lineHeight: "30px", fontWeight: 600 }],
164
+ // Heading H6
165
+ "fin-body-lr": ["18px", { lineHeight: "26px", fontWeight: 400 }],
166
+ // Body Large Regular
167
+ "fin-body-lm": ["18px", { lineHeight: "26px", fontWeight: 500 }],
168
+ // Body Large Medium
169
+ "fin-body-lsm": ["18px", { lineHeight: "26px", fontWeight: 600 }],
170
+ // Body Large SemiBold
171
+ "fin-body-blb": ["18px", { lineHeight: "26px", fontWeight: 700 }],
172
+ // Body Large Bold
173
+ "fin-body-mr": ["16px", { lineHeight: "24px", fontWeight: 400 }],
174
+ // Body Medium Regular
175
+ "fin-body-mm": ["16px", { lineHeight: "24px", fontWeight: 500 }],
176
+ // Body Medium Medium
177
+ "fin-body-msm": ["16px", { lineHeight: "24px", fontWeight: 600 }],
178
+ // Body Medium SemiBold
179
+ "fin-body-mb": ["16px", { lineHeight: "24px", fontWeight: 700 }],
180
+ // Body Medium Bold
181
+ "fin-label-r": ["15px", { lineHeight: "26px", fontWeight: 400 }],
182
+ // Label Regular
183
+ "fin-label-m": ["15px", { lineHeight: "26px", fontWeight: 500 }],
184
+ // Label Medium
185
+ "fin-label-sm": ["15px", { lineHeight: "26px", fontWeight: 600 }],
186
+ // Label SemiBold
187
+ "fin-label-b": ["15px", { lineHeight: "26px", fontWeight: 700 }],
188
+ // Label Bold
189
+ "fin-body-sr": ["14px", { lineHeight: "22px", fontWeight: 400 }],
190
+ // Body Small Regular
191
+ "fin-body-sr-lh_24": ["14px", { lineHeight: "24px", fontWeight: 400 }],
192
+ // Body Small Regular Line Height 24
193
+ "fin-body-sm": ["14px", { lineHeight: "22px", fontWeight: 500 }],
194
+ // Body Small Medium
195
+ "fin-body-sm-lh_24": ["14px", { lineHeight: "24px", fontWeight: 500 }],
196
+ // Body Small Medium Line Height 24
197
+ "fin-body-ssm": ["14px", { lineHeight: "22px", fontWeight: 600 }],
198
+ // Body Small SemiBold
199
+ "fin-body-ssm-lh_24": ["14px", { lineHeight: "22px", fontWeight: 600 }],
200
+ // Body Small SemiBold Line Height 24
201
+ "fin-body-sb": ["14px", { lineHeight: "22px", fontWeight: 700 }],
202
+ // Body Small Bold
203
+ "fin-body-sb-lh_24": ["14px", { lineHeight: "24px", fontWeight: 700 }],
204
+ // Body Small Bold Line Height 24
205
+ "fin-body-esr": ["12px", { lineHeight: "20px", fontWeight: 400 }],
206
+ // Body Extra Small Regular
207
+ "fin-body-ems": ["12px", { lineHeight: "20px", fontWeight: 500 }],
208
+ // Body Extra Small Medium
209
+ "fin-body-essm": ["12px", { lineHeight: "20px", fontWeight: 600 }],
210
+ // Body Extra Small SemiBold
211
+ "fin-body-esb": ["12px", { lineHeight: "20px", fontWeight: 700 }]
212
+ // Body Extra Small Bold
213
+ }, n = {
214
+ ...e,
215
+ ...i,
216
+ ...t,
217
+ ...h
218
+ };
153
219
  export {
154
220
  t as configTypographyBillId,
221
+ h as configTypographyFinAgent,
155
222
  i as configTypographyLabaBisnis,
156
223
  e as configTypographyPayhere,
157
- h as default
224
+ n as default
158
225
  };
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="2.0.24",o={version:e};exports.default=o;exports.version=e;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="2.0.26",o={version:e};exports.default=o;exports.version=e;