1mpacto-react-ui 2.0.25 → 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 (84) hide show
  1. package/dist/assets/_colors.scss +42 -0
  2. package/dist/assets/_typography.scss +32 -2
  3. package/dist/assets/core.css +1 -1
  4. package/dist/assets/fontfamily.css +1 -1
  5. package/dist/assets/style.css +1 -1
  6. package/dist/components/Button/Button.config.cjs +1 -1
  7. package/dist/components/Button/Button.config.mjs +58 -55
  8. package/dist/components/Button/style.module.scss.cjs +1 -1
  9. package/dist/components/Button/style.module.scss.mjs +60 -57
  10. package/dist/components/Calendar/Calendar.cjs +1 -1
  11. package/dist/components/Calendar/Calendar.config.cjs +1 -0
  12. package/dist/components/Calendar/Calendar.config.mjs +22 -0
  13. package/dist/components/Calendar/Calendar.mjs +221 -133
  14. package/dist/components/Calendar/CalendarCell.cjs +1 -1
  15. package/dist/components/Calendar/CalendarCell.mjs +9 -9
  16. package/dist/components/Calendar/CalendarMonth.cjs +1 -1
  17. package/dist/components/Calendar/CalendarMonth.mjs +23 -21
  18. package/dist/components/Calendar/CalendarRange.cjs +1 -1
  19. package/dist/components/Calendar/CalendarRange.mjs +100 -98
  20. package/dist/components/Calendar/CalendarYear.cjs +2 -2
  21. package/dist/components/Calendar/CalendarYear.mjs +25 -23
  22. package/dist/components/Calendar/style.module.scss.cjs +1 -1
  23. package/dist/components/Calendar/style.module.scss.mjs +35 -33
  24. package/dist/components/Chart/LineChart.cjs +1 -1
  25. package/dist/components/Chart/LineChart.mjs +1 -1
  26. package/dist/components/DatePicker/DatePicker.cjs +1 -1
  27. package/dist/components/DatePicker/DatePicker.mjs +78 -69
  28. package/dist/components/DatePicker/DateRangePicker.cjs +1 -1
  29. package/dist/components/DatePicker/DateRangePicker.mjs +91 -79
  30. package/dist/components/DatePicker/FilterDate.cjs +1 -1
  31. package/dist/components/DatePicker/FilterDate.mjs +181 -127
  32. package/dist/components/DatePicker/MonthYearPicker.cjs +1 -1
  33. package/dist/components/DatePicker/MonthYearPicker.mjs +58 -49
  34. package/dist/components/Input/InputInnerLabel.cjs +6 -6
  35. package/dist/components/Input/InputInnerLabel.config.cjs +1 -1
  36. package/dist/components/Input/InputInnerLabel.config.mjs +9 -5
  37. package/dist/components/Input/InputInnerLabel.mjs +36 -35
  38. package/dist/components/Input/InputInnerLabel.module.scss.cjs +1 -1
  39. package/dist/components/Input/InputInnerLabel.module.scss.mjs +19 -17
  40. package/dist/components/Sidebar/ItemSidebar.config.cjs +1 -1
  41. package/dist/components/Sidebar/ItemSidebar.config.mjs +6 -2
  42. package/dist/components/Sidebar/Sidebar.cjs +1 -1
  43. package/dist/components/Sidebar/Sidebar.config.cjs +1 -1
  44. package/dist/components/Sidebar/Sidebar.config.mjs +14 -12
  45. package/dist/components/Sidebar/Sidebar.mjs +78 -77
  46. package/dist/components/Sidebar/Sidebar.module.scss.cjs +1 -1
  47. package/dist/components/Sidebar/Sidebar.module.scss.mjs +22 -20
  48. package/dist/components/Sidebar/itemSidebar.module.scss.cjs +1 -1
  49. package/dist/components/Sidebar/itemSidebar.module.scss.mjs +25 -24
  50. package/dist/config/resources/index.cjs +1 -1
  51. package/dist/config/resources/index.mjs +1 -1
  52. package/dist/config/tailwind/colors.cjs +1 -1
  53. package/dist/config/tailwind/colors.mjs +22 -1
  54. package/dist/config/tailwind/typography.cjs +1 -1
  55. package/dist/config/tailwind/typography.mjs +70 -3
  56. package/dist/package.json.cjs +1 -1
  57. package/dist/package.json.d.ts +1 -1
  58. package/dist/package.json.mjs +1 -1
  59. package/dist/src/components/Button/Button.config.d.ts +3 -0
  60. package/dist/src/components/Calendar/Calendar.config.d.ts +19 -0
  61. package/dist/src/components/Calendar/Calendar.d.ts +5 -3
  62. package/dist/src/components/Calendar/Calendar.stories.d.ts +21 -5
  63. package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -1
  64. package/dist/src/components/Calendar/CalendarRange.d.ts +1 -1
  65. package/dist/src/components/Calendar/CalendarYear.d.ts +1 -1
  66. package/dist/src/components/DatePicker/DatePicker.stories.d.ts +28 -0
  67. package/dist/src/components/DatePicker/FilterDate.d.ts +1 -1
  68. package/dist/src/components/DatePicker/FilterDate.stories.d.ts +29 -1
  69. package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -1
  70. package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +29 -1
  71. package/dist/src/components/Input/InputInnerLabel.config.d.ts +5 -1
  72. package/dist/src/components/Input/InputInnerLabel.stories.d.ts +16 -0
  73. package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +4 -0
  74. package/dist/src/components/Sidebar/Sidebar.config.d.ts +2 -0
  75. package/dist/src/config/resources/index.d.ts +2 -2
  76. package/dist/src/config/tailwind/typography.d.ts +1 -0
  77. package/dist/src/interfaces/components/Button/index.d.ts +1 -1
  78. package/dist/src/interfaces/components/Calendar/index.d.ts +41 -0
  79. package/dist/src/interfaces/components/DatePicker/index.d.ts +41 -1
  80. package/dist/src/interfaces/components/Input/index.d.ts +10 -0
  81. package/dist/src/interfaces/components/Sidebar/index.d.ts +6 -1
  82. package/dist/utils/common.cjs +1 -1
  83. package/dist/utils/common.mjs +7 -7
  84. package/package.json +1 -1
@@ -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.25",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;
@@ -1,7 +1,7 @@
1
1
  declare const _default: {
2
2
  "name": "1mpacto-react-ui",
3
3
  "private": false,
4
- "version": "2.0.25",
4
+ "version": "2.0.26",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "node": ">=22.22.3",
@@ -1,4 +1,4 @@
1
- const o = "2.0.25", s = {
1
+ const o = "2.0.26", s = {
2
2
  version: o
3
3
  };
4
4
  export {
@@ -69,6 +69,9 @@ export declare const configButton: {
69
69
  'filled-bill-secondary-800_bg-white': string;
70
70
  'primary-blue-gray-900-dsb_laba-grey-06': string;
71
71
  'filled-blue-gray-900': string;
72
+ 'primary-fin-primary-500': string;
73
+ 'secondary-fin-primary-500': string;
74
+ 'tertiary-fin-primary-500': string;
72
75
  };
73
76
  };
74
77
  export declare const keysConfigButtonVariant: string[];
@@ -0,0 +1,19 @@
1
+ export declare const configCalendar: {
2
+ variants: {
3
+ 'laba-blue-10': string;
4
+ 'fin-primary-500': string;
5
+ };
6
+ selectedVariants: {
7
+ 'laba-blue-10': string;
8
+ 'fin-primary-500': string;
9
+ };
10
+ resetButtonVariant: {
11
+ 'laba-blue-10': string;
12
+ 'fin-primary-500': string;
13
+ };
14
+ submitButtonVariant: {
15
+ 'laba-blue-10': string;
16
+ 'fin-primary-500': string;
17
+ };
18
+ };
19
+ export declare const keysConfigCalendarVariant: string[];
@@ -1,4 +1,6 @@
1
- import { ICalendar, ICustomTimeCalendar } from '../../interfaces/components/Calendar';
2
- export declare const CustomTimeCalendar: ({ minDate, maxDate, value: date, time, hiddenHeader, handlerChangeTime, timeLabel, type, }: ICustomTimeCalendar) => import("react/jsx-runtime").JSX.Element;
3
- declare const Calendar: (props: ICalendar) => import("react/jsx-runtime").JSX.Element;
1
+ import { ICalendar, ICustomTimeCalendar, TKeyLocale } from '../../interfaces/components/Calendar';
2
+ export declare const translateCalendar: Record<TKeyLocale, Record<string, string>>;
3
+ export declare const getDaysCalendar: (value: number, locale: TKeyLocale) => string;
4
+ export declare const CustomTimeCalendar: ({ minDate, maxDate, value: date, time, hiddenHeader, handlerChangeTime, timeLabel, type, locale, }: ICustomTimeCalendar) => import("react/jsx-runtime").JSX.Element;
5
+ declare const Calendar: ({ variants, ...props }: ICalendar) => import("react/jsx-runtime").JSX.Element;
4
6
  export default Calendar;
@@ -1,7 +1,7 @@
1
1
  import { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
- component: (props: import('../../interfaces/components/Calendar').ICalendar) => import("react/jsx-runtime").JSX.Element;
4
+ component: ({ variants, ...props }: import('../../interfaces/components/Calendar').ICalendar) => import("react/jsx-runtime").JSX.Element;
5
5
  parameters: {
6
6
  layout: string;
7
7
  };
@@ -27,8 +27,9 @@ declare const meta: {
27
27
  };
28
28
  };
29
29
  };
30
- hiddenHeader: {
31
- control: "boolean";
30
+ locale: {
31
+ control: "select";
32
+ options: string[];
32
33
  description: string;
33
34
  table: {
34
35
  category: string;
@@ -40,8 +41,10 @@ declare const meta: {
40
41
  };
41
42
  };
42
43
  };
43
- locale: {
44
- control: "select";
44
+ variants: {
45
+ control: {
46
+ type: "select";
47
+ };
45
48
  options: string[];
46
49
  description: string;
47
50
  table: {
@@ -54,6 +57,19 @@ declare const meta: {
54
57
  };
55
58
  };
56
59
  };
60
+ hiddenHeader: {
61
+ control: "boolean";
62
+ description: string;
63
+ table: {
64
+ category: string;
65
+ type: {
66
+ summary: string;
67
+ };
68
+ defaultValue: {
69
+ summary: string;
70
+ };
71
+ };
72
+ };
57
73
  prevIcon: {
58
74
  control: "object";
59
75
  description: string;
@@ -1,3 +1,3 @@
1
1
  import { ICalendarMonth } from '../../interfaces/components/Calendar';
2
- declare const CalendarMonth: ({ prevIcon, nextIcon, state, setActiveTypeCalendar, onChangeMonth, type, hiddenHeader, }: ICalendarMonth) => import("react/jsx-runtime").JSX.Element;
2
+ declare const CalendarMonth: ({ prevIcon, nextIcon, state, setActiveTypeCalendar, onChangeMonth, type, hiddenHeader, variants, }: ICalendarMonth) => import("react/jsx-runtime").JSX.Element;
3
3
  export default CalendarMonth;
@@ -1,3 +1,3 @@
1
1
  import { ICalendarRange } from '../../interfaces/components/Calendar';
2
- declare const CalendarRange: (props: ICalendarRange) => import("react/jsx-runtime").JSX.Element;
2
+ declare const CalendarRange: ({ variants, ...props }: ICalendarRange) => import("react/jsx-runtime").JSX.Element;
3
3
  export default CalendarRange;
@@ -2,5 +2,5 @@ import { ICalendarYear } from '../../interfaces/components/Calendar';
2
2
  export declare const ChevronDownIcon: ({ className }: {
3
3
  className?: string;
4
4
  }) => import("react/jsx-runtime").JSX.Element;
5
- declare const CalendarYear: ({ title, state, type, setUpYear, hiddenHeader, setActiveTypeCalendar, onChangeYear, }: ICalendarYear) => import("react/jsx-runtime").JSX.Element;
5
+ declare const CalendarYear: ({ title, state, type, setUpYear, hiddenHeader, setActiveTypeCalendar, onChangeYear, variants, }: ICalendarYear) => import("react/jsx-runtime").JSX.Element;
6
6
  export default CalendarYear;
@@ -47,6 +47,34 @@ declare const meta: {
47
47
  };
48
48
  };
49
49
  };
50
+ locale: {
51
+ control: "select";
52
+ options: string[];
53
+ description: string;
54
+ table: {
55
+ category: string;
56
+ type: {
57
+ summary: string;
58
+ };
59
+ defaultValue: {
60
+ summary: string;
61
+ };
62
+ };
63
+ };
64
+ variants: {
65
+ control: "select";
66
+ options: string[];
67
+ description: string;
68
+ table: {
69
+ category: string;
70
+ type: {
71
+ summary: string;
72
+ };
73
+ defaultValue: {
74
+ summary: string;
75
+ };
76
+ };
77
+ };
50
78
  className: {
51
79
  control: "text";
52
80
  description: string;
@@ -1,3 +1,3 @@
1
1
  import { IFilterDate } from '../../interfaces/components/DatePicker';
2
- declare const FilterDate: ({ value, prevIcon, nextIcon, buttonReset, buttonSubmit, className, classNameButton, buttonClick, buttonList, typePicker, onChange, idPopover, id, floatingOptions, offsetPopover, zIndexPopper, defaultValueLabel, isCustomTime, mountedExecuteChange, formatingDate, }: IFilterDate) => import("react/jsx-runtime").JSX.Element;
2
+ declare const FilterDate: ({ value, prevIcon, nextIcon, buttonReset, buttonSubmit, className, classNameButton, buttonClick, buttonList, typePicker, onChange, idPopover, id, floatingOptions, offsetPopover, zIndexPopper, defaultValueLabel, isCustomTime, mountedExecuteChange, formatingDate, variants, locale, }: IFilterDate) => import("react/jsx-runtime").JSX.Element;
3
3
  export default FilterDate;
@@ -1,7 +1,7 @@
1
1
  import { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
- component: ({ value, prevIcon, nextIcon, buttonReset, buttonSubmit, className, classNameButton, buttonClick, buttonList, typePicker, onChange, idPopover, id, floatingOptions, offsetPopover, zIndexPopper, defaultValueLabel, isCustomTime, mountedExecuteChange, formatingDate, }: import('../../interfaces/components/DatePicker').IFilterDate) => import("react/jsx-runtime").JSX.Element;
4
+ component: ({ value, prevIcon, nextIcon, buttonReset, buttonSubmit, className, classNameButton, buttonClick, buttonList, typePicker, onChange, idPopover, id, floatingOptions, offsetPopover, zIndexPopper, defaultValueLabel, isCustomTime, mountedExecuteChange, formatingDate, variants, locale, }: import('../../interfaces/components/DatePicker').IFilterDate) => import("react/jsx-runtime").JSX.Element;
5
5
  parameters: {
6
6
  layout: string;
7
7
  };
@@ -103,6 +103,34 @@ declare const meta: {
103
103
  };
104
104
  };
105
105
  };
106
+ locale: {
107
+ control: "select";
108
+ options: string[];
109
+ description: string;
110
+ table: {
111
+ category: string;
112
+ type: {
113
+ summary: string;
114
+ };
115
+ defaultValue: {
116
+ summary: string;
117
+ };
118
+ };
119
+ };
120
+ variants: {
121
+ control: "select";
122
+ options: string[];
123
+ description: string;
124
+ table: {
125
+ category: string;
126
+ type: {
127
+ summary: string;
128
+ };
129
+ defaultValue: {
130
+ summary: string;
131
+ };
132
+ };
133
+ };
106
134
  className: {
107
135
  control: "text";
108
136
  description: string;
@@ -1,3 +1,3 @@
1
1
  import { IMonthYearPicker } from '../../interfaces/components/DatePicker';
2
- declare const MonthYearPicker: ({ month, year, type, activeType, minDate, maxDate, className, classNameButton, onChange, buttonClick, id, idPopover, floatingOptions, offsetPopover, zIndexPopper, hiddenHeader, }: IMonthYearPicker) => import("react/jsx-runtime").JSX.Element;
2
+ declare const MonthYearPicker: ({ month, year, type, activeType, minDate, maxDate, className, classNameButton, onChange, buttonClick, id, idPopover, floatingOptions, offsetPopover, zIndexPopper, hiddenHeader, variants, locale, }: IMonthYearPicker) => import("react/jsx-runtime").JSX.Element;
3
3
  export default MonthYearPicker;
@@ -1,7 +1,7 @@
1
1
  import { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
- component: ({ month, year, type, activeType, minDate, maxDate, className, classNameButton, onChange, buttonClick, id, idPopover, floatingOptions, offsetPopover, zIndexPopper, hiddenHeader, }: import('../../interfaces/components/DatePicker').IMonthYearPicker) => import("react/jsx-runtime").JSX.Element;
4
+ component: ({ month, year, type, activeType, minDate, maxDate, className, classNameButton, onChange, buttonClick, id, idPopover, floatingOptions, offsetPopover, zIndexPopper, hiddenHeader, variants, locale, }: import('../../interfaces/components/DatePicker').IMonthYearPicker) => import("react/jsx-runtime").JSX.Element;
5
5
  parameters: {
6
6
  layout: string;
7
7
  };
@@ -53,6 +53,20 @@ declare const meta: {
53
53
  };
54
54
  };
55
55
  };
56
+ locale: {
57
+ control: "select";
58
+ options: string[];
59
+ description: string;
60
+ table: {
61
+ category: string;
62
+ type: {
63
+ summary: string;
64
+ };
65
+ defaultValue: {
66
+ summary: string;
67
+ };
68
+ };
69
+ };
56
70
  buttonClick: {
57
71
  control: "object";
58
72
  description: string;
@@ -63,6 +77,20 @@ declare const meta: {
63
77
  };
64
78
  };
65
79
  };
80
+ variants: {
81
+ control: "select";
82
+ options: string[];
83
+ description: string;
84
+ table: {
85
+ category: string;
86
+ type: {
87
+ summary: string;
88
+ };
89
+ defaultValue: {
90
+ summary: string;
91
+ };
92
+ };
93
+ };
66
94
  className: {
67
95
  control: "text";
68
96
  description: string;
@@ -3,6 +3,10 @@ export declare const configInputInnerLabel: {
3
3
  large: string;
4
4
  small: string;
5
5
  };
6
- variant: {};
6
+ variant: {
7
+ 'bill-blue-800': string;
8
+ 'fin-black': string;
9
+ };
7
10
  };
8
11
  export declare const keysConfigInputInnerLabelSize: string[];
12
+ export declare const keysConfigInputInnerLabelVariant: string[];
@@ -53,6 +53,22 @@ declare const meta: {
53
53
  };
54
54
  };
55
55
  };
56
+ variant: {
57
+ control: {
58
+ type: "select";
59
+ };
60
+ options: string[];
61
+ description: string;
62
+ table: {
63
+ category: string;
64
+ type: {
65
+ summary: string;
66
+ };
67
+ defaultValue: {
68
+ summary: string;
69
+ };
70
+ };
71
+ };
56
72
  className: {
57
73
  control: "text";
58
74
  description: string;
@@ -11,6 +11,8 @@ export declare const configItemSidebar: {
11
11
  'lpd-brand-base-transparent-responsive': string;
12
12
  'bill-brand-base': string;
13
13
  'bill-brand-base-responsive': string;
14
+ 'fin-base': string;
15
+ 'fin-base-responsive': string;
14
16
  };
15
17
  parent: {
16
18
  '1': string;
@@ -34,5 +36,7 @@ export declare const configItemSidebar: {
34
36
  'lpd-brand-base-transparent-responsive': string;
35
37
  'bill-brand-base': string;
36
38
  'bill-brand-base-responsive': string;
39
+ 'fin-base': string;
40
+ 'fin-base-responsive': string;
37
41
  };
38
42
  };
@@ -12,6 +12,8 @@ export declare const configSidebar: {
12
12
  'lpd-brand-base-transparent-responsive': string;
13
13
  'bill-brand-base': string;
14
14
  'bill-brand-base-responsive': string;
15
+ 'fin-base': string;
16
+ 'fin-base-responsive': string;
15
17
  };
16
18
  mobileSupport: string[];
17
19
  };
@@ -1,2 +1,2 @@
1
- export declare const fontResource = "https://unpkg.com/1mpacto-web-resources@1.0.0/fonts";
2
- export declare const tinymceResource = "https://unpkg.com/1mpacto-web-resources@1.0.0/tinymce_8.2.1";
1
+ export declare const fontResource = "https://unpkg.com/1mpacto-web-resources@1.0.2/fonts";
2
+ export declare const tinymceResource = "https://unpkg.com/1mpacto-web-resources@1.0.2/tinymce_8.2.1";
@@ -2,6 +2,7 @@ export type ITypography = Record<string, [string, Record<string, string | number
2
2
  export declare const configTypographyPayhere: ITypography;
3
3
  export declare const configTypographyLabaBisnis: ITypography;
4
4
  export declare const configTypographyBillId: ITypography;
5
+ export declare const configTypographyFinAgent: ITypography;
5
6
  declare const _default: {
6
7
  [x: string]: [string, Record<string, string | number>];
7
8
  };
@@ -3,7 +3,7 @@ import { ReactNode } from 'react';
3
3
  * [ID] : Tipe varian tombol yang tersedia.
4
4
  * [EN] : Available button variant types.
5
5
  */
6
- export type TButtonVariants = 'primary-laba-blue-10' | 'primary-red-700-dsb_laba-grey-06' | 'primary-green-700-dsb_laba-grey-06' | 'ghost-laba-blue-10' | 'ghost-red-700' | 'ghost-green-700' | 'ghost-blue-gray-100-bg_white' | 'ghost-laba-green-10' | 'ghost-blue-gray-100-bg_white-text_blue-gray-400' | 'ghost-laba-blue-05' | 'nude-laba-blue-10' | 'nude-red-700' | 'nude-green-700' | 'nude-gray-500' | 'nude-laba-red-10' | 'nude-laba-red-08' | 'nude-laba-red-05' | 'primary-blue-700' | 'primary-red-700' | 'secondary-blue-700' | 'secondary-red-600' | 'secondary-green-600' | 'tertiary-blue-700' | 'tertiary-red-300' | 'tertiary-red-600' | 'tertiary-gray-500' | 'ghost-laba-blue-01' | 'filled-laba-white_laba-blue-10' | 'filled-laba-white_laba-red-05' | 'secondary-red-700' | 'tertiary-black' | 'primary-bill-primary-600' | 'secondary-bill-secondary-800' | 'tertiary-bill-secondary-800' | 'primary-bill-red-700' | 'filled-bill-blue-gray-500_bg-blue-gray-50' | 'filled-bill-secondary-800_bg-white' | 'primary-blue-gray-900-dsb_laba-grey-06' | 'filled-blue-gray-900';
6
+ export type TButtonVariants = 'primary-laba-blue-10' | 'primary-red-700-dsb_laba-grey-06' | 'primary-green-700-dsb_laba-grey-06' | 'ghost-laba-blue-10' | 'ghost-red-700' | 'ghost-green-700' | 'ghost-blue-gray-100-bg_white' | 'ghost-laba-green-10' | 'ghost-blue-gray-100-bg_white-text_blue-gray-400' | 'ghost-laba-blue-05' | 'nude-laba-blue-10' | 'nude-red-700' | 'nude-green-700' | 'nude-gray-500' | 'nude-laba-red-10' | 'nude-laba-red-08' | 'nude-laba-red-05' | 'primary-blue-700' | 'primary-red-700' | 'secondary-blue-700' | 'secondary-red-600' | 'secondary-green-600' | 'tertiary-blue-700' | 'tertiary-red-300' | 'tertiary-red-600' | 'tertiary-gray-500' | 'ghost-laba-blue-01' | 'filled-laba-white_laba-blue-10' | 'filled-laba-white_laba-red-05' | 'secondary-red-700' | 'tertiary-black' | 'primary-bill-primary-600' | 'secondary-bill-secondary-800' | 'tertiary-bill-secondary-800' | 'primary-bill-red-700' | 'filled-bill-blue-gray-500_bg-blue-gray-50' | 'filled-bill-secondary-800_bg-white' | 'primary-blue-gray-900-dsb_laba-grey-06' | 'filled-blue-gray-900' | 'primary-fin-primary-500' | 'secondary-fin-primary-500' | 'tertiary-fin-primary-500';
7
7
  /**
8
8
  * [ID] : Tipe ukuran tombol.
9
9
  * [EN] : Button size type.