1mpacto-react-ui 0.2.0-beta.8 → 1.0.0

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 (294) hide show
  1. package/dist/assets/_colors.scss +80 -0
  2. package/dist/assets/_mixins.scss +44 -17
  3. package/dist/assets/_typography.scss +582 -0
  4. package/dist/assets/colors.css +40 -0
  5. package/dist/assets/core.css +1 -1
  6. package/dist/assets/fontfamily.css +1 -1
  7. package/dist/assets/fonts/PlusJakartaSans-Italic.ttf +0 -0
  8. package/dist/assets/fonts/PlusJakartaSans.ttf +0 -0
  9. package/dist/assets/icons/arrow-narrow-down.svg +3 -3
  10. package/dist/assets/style.css +1 -1
  11. package/dist/assets/toast.css +98 -194
  12. package/dist/assets/typography.css +96 -0
  13. package/dist/index.cjs +147 -144
  14. package/dist/index.d.ts +1 -0
  15. package/dist/index.mjs +27706 -27060
  16. package/dist/package.json.d.ts +131 -132
  17. package/dist/src/components/Alert/index.d.ts +1 -0
  18. package/dist/src/components/Badges/Badges.config.d.ts +57 -0
  19. package/dist/src/components/Badges/Badges.d.ts +1 -0
  20. package/dist/src/components/Badges/Badges.stories.d.ts +117 -2
  21. package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
  22. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +2 -1
  23. package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +221 -6
  24. package/dist/src/components/Button/Button.config.d.ts +70 -0
  25. package/dist/src/components/Button/Button.d.ts +1 -0
  26. package/dist/src/components/Button/Button.stories.d.ts +129 -4
  27. package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
  28. package/dist/src/components/ButtonIcon/ButtonIcon.d.ts +1 -0
  29. package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +123 -4
  30. package/dist/src/components/ButtonPopover/ButtonPopover.d.ts +1 -0
  31. package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +258 -2
  32. package/dist/src/components/Calendar/Calendar.d.ts +3 -1
  33. package/dist/src/components/Calendar/Calendar.stories.d.ts +283 -2
  34. package/dist/src/components/Calendar/CalendarButton.d.ts +1 -0
  35. package/dist/src/components/Calendar/CalendarCell.d.ts +1 -0
  36. package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -0
  37. package/dist/src/components/Calendar/CalendarRange.d.ts +1 -0
  38. package/dist/src/components/Calendar/CalendarYear.d.ts +1 -0
  39. package/dist/src/components/Chart/DoughnutChart.d.ts +1 -0
  40. package/dist/src/components/Chart/GradientBarChart.d.ts +1 -0
  41. package/dist/src/components/Chart/GradientBarChart.stories.d.ts +71 -4
  42. package/dist/src/components/Chart/GradientLineChart.d.ts +1 -0
  43. package/dist/src/components/Chart/GradientLineChart.stories.d.ts +82 -4
  44. package/dist/src/components/Chart/LineChart.d.ts +1 -0
  45. package/dist/src/components/Chart/LineChart.stories.d.ts +35 -2
  46. package/dist/src/components/Chips/Chips.config.d.ts +35 -0
  47. package/dist/src/components/Chips/Chips.d.ts +1 -0
  48. package/dist/src/components/Chips/Chips.stories.d.ts +137 -2
  49. package/dist/src/components/Collapse/Collapse.d.ts +1 -0
  50. package/dist/src/components/Collapse/Collapse.stories.d.ts +89 -2
  51. package/dist/src/components/Collapse/CollapseV2.d.ts +1 -0
  52. package/dist/src/components/Collapse/CollapseV2.stories.d.ts +59 -2
  53. package/dist/src/components/Colors/Colors.stories.d.ts +2 -1
  54. package/dist/src/components/DatePicker/DatePicker.d.ts +1 -0
  55. package/dist/src/components/DatePicker/DatePicker.stories.d.ts +221 -2
  56. package/dist/src/components/DatePicker/DateRangePicker.d.ts +1 -0
  57. package/dist/src/components/DatePicker/FilterDate.d.ts +2 -1
  58. package/dist/src/components/DatePicker/FilterDate.stories.d.ts +232 -3
  59. package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -0
  60. package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +198 -2
  61. package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
  62. package/dist/src/components/ErrorMessage/ErrorMessage.d.ts +1 -0
  63. package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +39 -2
  64. package/dist/src/components/FilterContainer/FilterContainer.d.ts +1 -0
  65. package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +165 -0
  66. package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
  67. package/dist/src/components/Input/InputFloatingInner.d.ts +1 -0
  68. package/dist/src/components/Input/InputFloatingInner.stories.d.ts +177 -6
  69. package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
  70. package/dist/src/components/Input/InputInnerLabel.d.ts +5 -0
  71. package/dist/src/components/Input/InputInnerLabel.stories.d.ts +205 -0
  72. package/dist/src/components/Input/InputNative.config.d.ts +9 -0
  73. package/dist/src/components/Input/InputNative.d.ts +1 -0
  74. package/dist/src/components/Input/InputNative.stories.d.ts +149 -5
  75. package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
  76. package/dist/src/components/Input/InputReguler.d.ts +1 -0
  77. package/dist/src/components/Input/InputReguler.stories.d.ts +177 -6
  78. package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
  79. package/dist/src/components/Modal/ModalDialog.d.ts +1 -0
  80. package/dist/src/components/Modal/ModalDialog.stories.d.ts +121 -2
  81. package/dist/src/components/NumberFormat/NumberFormat.d.ts +1 -0
  82. package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +373 -18
  83. package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
  84. package/dist/src/components/Pagination/Pagination.d.ts +2 -1
  85. package/dist/src/components/Pagination/Pagination.stories.d.ts +200 -3
  86. package/dist/src/components/Popover/Popover.d.ts +1 -0
  87. package/dist/src/components/Popover/Popover.stories.d.ts +216 -7
  88. package/dist/src/components/PortalComponent/PortalComponent.d.ts +1 -0
  89. package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +61 -0
  90. package/dist/src/components/RadioCheckbox/CheckboxTable.d.ts +1 -0
  91. package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
  92. package/dist/src/components/RadioCheckbox/RadioCheckbox.d.ts +1 -0
  93. package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +230 -8
  94. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
  95. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -0
  96. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +196 -4
  97. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
  98. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.d.ts +2 -1
  99. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +5 -4
  100. package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +5 -1
  101. package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
  102. package/dist/src/components/Sidebar/ItemSidebar.d.ts +1 -0
  103. package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
  104. package/dist/src/components/Sidebar/Sidebar.d.ts +2 -1
  105. package/dist/src/components/Sidebar/Sidebar.stories.d.ts +6 -5
  106. package/dist/src/components/Step/Step.d.ts +1 -0
  107. package/dist/src/components/Step/Step.stories.d.ts +135 -2
  108. package/dist/src/components/Step/StepIndicator.d.ts +1 -0
  109. package/dist/src/components/Step/StepIndicator.stories.d.ts +148 -2
  110. package/dist/src/components/Switch/Switch.config.d.ts +26 -0
  111. package/dist/src/components/Switch/Switch.d.ts +1 -0
  112. package/dist/src/components/Switch/Switch.stories.d.ts +128 -2
  113. package/dist/src/components/Table/Table.config.d.ts +5 -0
  114. package/dist/src/components/Table/Table.d.ts +3 -3
  115. package/dist/src/components/Table/Table.stories.d.ts +71 -52
  116. package/dist/src/components/Table/TableSubMobile.d.ts +4 -0
  117. package/dist/src/components/Tabs/TabPanel.d.ts +1 -0
  118. package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
  119. package/dist/src/components/Tabs/Tabs.d.ts +2 -1
  120. package/dist/src/components/Tabs/Tabs.stories.d.ts +220 -3
  121. package/dist/src/components/TextEditor/TextEditor.d.ts +1 -0
  122. package/dist/src/components/TextEditor/TextEditor.stories.d.ts +59 -10
  123. package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
  124. package/dist/src/components/Textarea/Textarea.d.ts +1 -0
  125. package/dist/src/components/Textarea/Textarea.stories.d.ts +250 -3
  126. package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
  127. package/dist/src/components/Textarea/TextareaFloatingInner.d.ts +1 -0
  128. package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +260 -3
  129. package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
  130. package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +5 -0
  131. package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +259 -0
  132. package/dist/src/components/TimeRange/TimeRange.d.ts +4 -0
  133. package/dist/src/components/TimeRange/TimeRange.stories.d.ts +186 -0
  134. package/dist/src/components/Timeline/Timeline.d.ts +1 -0
  135. package/dist/src/components/Timeline/Timeline.stories.d.ts +40 -2
  136. package/dist/src/components/Tooltip/Tooltip.d.ts +1 -0
  137. package/dist/src/components/Tooltip/Tooltip.stories.d.ts +159 -2
  138. package/dist/src/components/TruncateComponent/TruncateComponent.d.ts +1 -0
  139. package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +106 -2
  140. package/dist/src/components/Typography/Typography.stories.d.ts +2 -1
  141. package/dist/src/components/Upload/UploadFile.d.ts +1 -0
  142. package/dist/src/components/Upload/UploadFile.stories.d.ts +127 -2
  143. package/dist/src/components/Upload/UploadImage.d.ts +2 -1
  144. package/dist/src/components/Upload/UploadImage.stories.d.ts +145 -3
  145. package/dist/src/components/Upload/UploadMultipleFile.d.ts +2 -1
  146. package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +190 -3
  147. package/dist/src/components/Virtualization/ListVirtualization.d.ts +1 -0
  148. package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +279 -2
  149. package/dist/src/components/Virtualization/TableVirtualization.d.ts +1 -0
  150. package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +296 -2
  151. package/dist/src/components/index.d.ts +16 -9
  152. package/dist/src/components/screens/Screens.stories.d.ts +14 -0
  153. package/dist/src/config/bigNumber/index.d.ts +1 -0
  154. package/dist/src/config/components/borderRadius.d.ts +1 -0
  155. package/dist/src/config/components/font.d.ts +7 -0
  156. package/dist/src/config/components/gap.d.ts +1 -0
  157. package/dist/src/config/components/tinymce.d.ts +1 -0
  158. package/dist/src/config/components/typography.d.ts +3 -49
  159. package/dist/src/config/tailwind/index.d.ts +3 -1
  160. package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
  161. package/dist/src/config/tailwind/typography.d.ts +1 -0
  162. package/dist/src/hooks/index.d.ts +6 -3
  163. package/dist/src/hooks/useCombinedResizeObserver.d.ts +1 -0
  164. package/dist/src/hooks/useCountdown.d.ts +6 -3
  165. package/dist/src/hooks/useDeepCompareEffect.d.ts +1 -0
  166. package/dist/src/hooks/useEventListener.d.ts +1 -0
  167. package/dist/src/hooks/useMasonry.d.ts +1 -0
  168. package/dist/src/hooks/useMergeRefs.d.ts +1 -0
  169. package/dist/src/hooks/useOtpInput.d.ts +43 -0
  170. package/dist/src/hooks/useStateRef.d.ts +1 -0
  171. package/dist/src/interfaces/components/Alert/index.d.ts +1 -0
  172. package/dist/src/interfaces/components/Badges/index.d.ts +3 -1
  173. package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +7 -2
  174. package/dist/src/interfaces/components/Button/index.d.ts +3 -2
  175. package/dist/src/interfaces/components/ButtonIcon/index.d.ts +1 -0
  176. package/dist/src/interfaces/components/ButtonPopover/index.d.ts +1 -0
  177. package/dist/src/interfaces/components/Calendar/index.d.ts +21 -3
  178. package/dist/src/interfaces/components/Chart/index.d.ts +1 -0
  179. package/dist/src/interfaces/components/Checkbox/index.d.ts +1 -0
  180. package/dist/src/interfaces/components/Chips/index.d.ts +3 -1
  181. package/dist/src/interfaces/components/Collapse/index.d.ts +1 -0
  182. package/dist/src/interfaces/components/DatePicker/index.d.ts +4 -1
  183. package/dist/src/interfaces/components/ErrorMessage/index.d.ts +1 -1
  184. package/dist/src/interfaces/components/FilterContainer/index.d.ts +1 -0
  185. package/dist/src/interfaces/components/Input/index.d.ts +14 -0
  186. package/dist/src/interfaces/components/Modal/index.d.ts +1 -0
  187. package/dist/src/interfaces/components/NumberFormat/index.d.ts +1 -0
  188. package/dist/src/interfaces/components/Pagination/index.d.ts +3 -0
  189. package/dist/src/interfaces/components/Popover/index.d.ts +4 -1
  190. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +4 -2
  191. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +3 -1
  192. package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +2 -1
  193. package/dist/src/interfaces/components/Sidebar/index.d.ts +4 -1
  194. package/dist/src/interfaces/components/Step/index.d.ts +1 -0
  195. package/dist/src/interfaces/components/Switch/index.d.ts +1 -1
  196. package/dist/src/interfaces/components/Table/index.d.ts +39 -6
  197. package/dist/src/interfaces/components/Tabs/index.d.ts +7 -2
  198. package/dist/src/interfaces/components/TextEditor/index.d.ts +1 -0
  199. package/dist/src/interfaces/components/Textarea/index.d.ts +14 -0
  200. package/dist/src/interfaces/components/TimeRange/index.d.ts +29 -0
  201. package/dist/src/interfaces/components/Timeline/index.d.ts +1 -0
  202. package/dist/src/interfaces/components/Tooltip/index.d.ts +1 -0
  203. package/dist/src/interfaces/components/UploadFile/index.d.ts +4 -0
  204. package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +1 -0
  205. package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +1 -0
  206. package/dist/src/main.d.ts +1 -0
  207. package/dist/src/utils/common.d.ts +5 -4
  208. package/dist/src/utils/constant.d.ts +1 -0
  209. package/dist/tinymce/CHANGELOG.md +3785 -3785
  210. package/dist/tinymce/js/tinymce/langs/README.md +3 -3
  211. package/dist/tinymce/js/tinymce/license.md +6 -6
  212. package/dist/tinymce/js/tinymce/notices.txt +21 -21
  213. package/dist/tinymce/js/tinymce/plugins/codesample/plugin.min.js +8 -8
  214. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ar.js +92 -92
  215. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +92 -92
  216. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ca.js +92 -92
  217. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/cs.js +92 -92
  218. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/da.js +92 -92
  219. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/de.js +92 -92
  220. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/el.js +92 -92
  221. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/en.js +92 -92
  222. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/es.js +92 -92
  223. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/eu.js +92 -92
  224. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fa.js +92 -92
  225. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fi.js +92 -92
  226. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +92 -92
  227. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/he_IL.js +92 -92
  228. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hi.js +92 -92
  229. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hr.js +92 -92
  230. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +92 -92
  231. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/id.js +92 -92
  232. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/it.js +92 -92
  233. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ja.js +92 -92
  234. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/kk.js +92 -92
  235. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +92 -92
  236. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ms.js +92 -92
  237. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +92 -92
  238. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nl.js +92 -92
  239. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pl.js +92 -92
  240. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +92 -92
  241. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +92 -92
  242. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ro.js +92 -92
  243. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ru.js +92 -92
  244. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sk.js +92 -92
  245. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +92 -92
  246. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +92 -92
  247. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/th_TH.js +92 -92
  248. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/tr.js +92 -92
  249. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/uk.js +92 -92
  250. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/vi.js +92 -92
  251. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +86 -86
  252. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +92 -92
  253. package/dist/tinymce/js/tinymce/skins/content/dark/content.js +9 -9
  254. package/dist/tinymce/js/tinymce/skins/content/dark/content.min.css +10 -10
  255. package/dist/tinymce/js/tinymce/skins/content/default/content.js +9 -9
  256. package/dist/tinymce/js/tinymce/skins/content/default/content.min.css +10 -10
  257. package/dist/tinymce/js/tinymce/skins/content/document/content.js +9 -9
  258. package/dist/tinymce/js/tinymce/skins/content/document/content.min.css +10 -10
  259. package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.js +9 -9
  260. package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.min.css +10 -10
  261. package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.js +9 -9
  262. package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.min.css +10 -10
  263. package/dist/tinymce/js/tinymce/skins/content/writer/content.js +9 -9
  264. package/dist/tinymce/js/tinymce/skins/content/writer/content.min.css +10 -10
  265. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.js +9 -9
  266. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css +10 -10
  267. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.js +9 -9
  268. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.min.css +10 -10
  269. package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.min.css +1 -1
  270. package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -1
  271. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.js +9 -9
  272. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css +10 -10
  273. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.js +9 -9
  274. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css +10 -10
  275. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css +1 -1
  276. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -1
  277. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.js +9 -9
  278. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.min.css +10 -10
  279. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.js +9 -9
  280. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.min.css +10 -10
  281. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.min.css +1 -1
  282. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -1
  283. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.js +9 -9
  284. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +10 -10
  285. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.js +9 -9
  286. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.min.css +10 -10
  287. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -1
  288. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -1
  289. package/dist/tinymce/js/tinymce/tinymce.d.ts +3350 -3350
  290. package/dist/tinymce/js/tinymce/tinymce.min.js +10 -10
  291. package/dist/types-external/table.d.ts +15 -12
  292. package/package.json +131 -132
  293. package/dist/index.cjs.map +0 -1
  294. package/dist/index.mjs.map +0 -1
@@ -3,273 +3,855 @@
3
3
  line-height: 72px;
4
4
  font-weight: 700;
5
5
  }
6
+ @mixin text-payhere-h1() {
7
+ font-size: 60px;
8
+ line-height: 72px;
9
+ font-weight: 700;
10
+ }
6
11
 
7
12
  .text-payhere-h2 {
8
13
  font-size: 48px;
9
14
  line-height: 58px;
10
15
  font-weight: 700;
11
16
  }
17
+ @mixin text-payhere-h2() {
18
+ font-size: 48px;
19
+ line-height: 58px;
20
+ font-weight: 700;
21
+ }
12
22
 
13
23
  .text-payhere-h3 {
14
24
  font-size: 40px;
15
25
  line-height: 48px;
16
26
  font-weight: 700;
17
27
  }
28
+ @mixin text-payhere-h3() {
29
+ font-size: 40px;
30
+ line-height: 48px;
31
+ font-weight: 700;
32
+ }
18
33
 
19
34
  .text-payhere-h4 {
20
35
  font-size: 30px;
21
36
  line-height: 38px;
22
37
  font-weight: 700;
23
38
  }
39
+ @mixin text-payhere-h4() {
40
+ font-size: 30px;
41
+ line-height: 38px;
42
+ font-weight: 700;
43
+ }
24
44
 
25
45
  .text-payhere-h5 {
26
46
  font-size: 28px;
27
47
  line-height: 40px;
28
48
  font-weight: 600;
29
49
  }
50
+ @mixin text-payhere-h5() {
51
+ font-size: 28px;
52
+ line-height: 40px;
53
+ font-weight: 600;
54
+ }
30
55
 
31
56
  .text-payhere-h6 {
32
57
  font-size: 24px;
33
58
  line-height: 30px;
34
59
  font-weight: 600;
35
60
  }
61
+ @mixin text-payhere-h6() {
62
+ font-size: 24px;
63
+ line-height: 30px;
64
+ font-weight: 600;
65
+ }
36
66
 
37
67
  .text-payhere-body-lr {
38
68
  font-size: 18px;
39
69
  line-height: 26px;
40
70
  font-weight: 400;
41
71
  }
72
+ @mixin text-payhere-body-lr() {
73
+ font-size: 18px;
74
+ line-height: 26px;
75
+ font-weight: 400;
76
+ }
42
77
 
43
78
  .text-payhere-body-lm {
44
79
  font-size: 18px;
45
80
  line-height: 26px;
46
81
  font-weight: 500;
47
82
  }
83
+ @mixin text-payhere-body-lm() {
84
+ font-size: 18px;
85
+ line-height: 26px;
86
+ font-weight: 500;
87
+ }
48
88
 
49
89
  .text-payhere-body-ls {
50
90
  font-size: 18px;
51
91
  line-height: 26px;
52
92
  font-weight: 600;
53
93
  }
94
+ @mixin text-payhere-body-ls() {
95
+ font-size: 18px;
96
+ line-height: 26px;
97
+ font-weight: 600;
98
+ }
54
99
 
55
100
  .text-payhere-body-lb {
56
101
  font-size: 18px;
57
102
  line-height: 26px;
58
103
  font-weight: 700;
59
104
  }
105
+ @mixin text-payhere-body-lb() {
106
+ font-size: 18px;
107
+ line-height: 26px;
108
+ font-weight: 700;
109
+ }
60
110
 
61
111
  .text-payhere-body-mr {
62
112
  font-size: 16px;
63
113
  line-height: 24px;
64
114
  font-weight: 400;
65
115
  }
116
+ @mixin text-payhere-body-mr() {
117
+ font-size: 16px;
118
+ line-height: 24px;
119
+ font-weight: 400;
120
+ }
66
121
 
67
122
  .text-payhere-body-mm {
68
123
  font-size: 16px;
69
124
  line-height: 24px;
70
125
  font-weight: 500;
71
126
  }
127
+ @mixin text-payhere-body-mm() {
128
+ font-size: 16px;
129
+ line-height: 24px;
130
+ font-weight: 500;
131
+ }
72
132
 
73
133
  .text-payhere-body-ms {
74
134
  font-size: 16px;
75
135
  line-height: 24px;
76
136
  font-weight: 600;
77
137
  }
138
+ @mixin text-payhere-body-ms() {
139
+ font-size: 16px;
140
+ line-height: 24px;
141
+ font-weight: 600;
142
+ }
78
143
 
79
144
  .text-payhere-body-mb {
80
145
  font-size: 16px;
81
146
  line-height: 24px;
82
147
  font-weight: 700;
83
148
  }
149
+ @mixin text-payhere-body-mb() {
150
+ font-size: 16px;
151
+ line-height: 24px;
152
+ font-weight: 700;
153
+ }
84
154
 
85
155
  .text-payhere-label-r {
86
156
  font-size: 15px;
87
157
  line-height: 26px;
88
158
  font-weight: 400;
89
159
  }
160
+ @mixin text-payhere-label-r() {
161
+ font-size: 15px;
162
+ line-height: 26px;
163
+ font-weight: 400;
164
+ }
90
165
 
91
166
  .text-payhere-label-m {
92
167
  font-size: 15px;
93
168
  line-height: 26px;
94
169
  font-weight: 500;
95
170
  }
171
+ @mixin text-payhere-label-m() {
172
+ font-size: 15px;
173
+ line-height: 26px;
174
+ font-weight: 500;
175
+ }
176
+
177
+ .text-payhere-label-sb {
178
+ font-size: 15px;
179
+ line-height: 26px;
180
+ font-weight: 600;
181
+ }
182
+ @mixin text-payhere-label-sb() {
183
+ font-size: 15px;
184
+ line-height: 26px;
185
+ font-weight: 600;
186
+ }
187
+
188
+ .text-payhere-label-b {
189
+ font-size: 15px;
190
+ line-height: 26px;
191
+ font-weight: 700;
192
+ }
193
+ @mixin text-payhere-label-b() {
194
+ font-size: 15px;
195
+ line-height: 26px;
196
+ font-weight: 700;
197
+ }
96
198
 
97
199
  .text-payhere-body-sr {
98
200
  font-size: 14px;
99
201
  line-height: 22px;
100
202
  font-weight: 400;
101
203
  }
204
+ @mixin text-payhere-body-sr() {
205
+ font-size: 14px;
206
+ line-height: 22px;
207
+ font-weight: 400;
208
+ }
102
209
 
103
210
  .text-payhere-body-sm {
104
211
  font-size: 14px;
105
212
  line-height: 22px;
106
213
  font-weight: 500;
107
214
  }
215
+ @mixin text-payhere-body-sm() {
216
+ font-size: 14px;
217
+ line-height: 22px;
218
+ font-weight: 500;
219
+ }
220
+
221
+ .text-payhere-body-smb {
222
+ font-size: 14px;
223
+ line-height: 22px;
224
+ font-weight: 600;
225
+ }
226
+ @mixin text-payhere-body-smb() {
227
+ font-size: 14px;
228
+ line-height: 22px;
229
+ font-weight: 600;
230
+ }
231
+
232
+ .text-payhere-body-sb {
233
+ font-size: 14px;
234
+ line-height: 22px;
235
+ font-weight: 700;
236
+ }
237
+ @mixin text-payhere-body-sb() {
238
+ font-size: 14px;
239
+ line-height: 22px;
240
+ font-weight: 700;
241
+ }
108
242
 
109
243
  .text-payhere-body-esr {
110
244
  font-size: 12px;
111
245
  line-height: 20px;
112
246
  font-weight: 400;
113
247
  }
248
+ @mixin text-payhere-body-esr() {
249
+ font-size: 12px;
250
+ line-height: 20px;
251
+ font-weight: 400;
252
+ }
114
253
 
115
254
  .text-payhere-body-esm {
116
255
  font-size: 12px;
117
256
  line-height: 20px;
118
257
  font-weight: 500;
119
258
  }
259
+ @mixin text-payhere-body-esm() {
260
+ font-size: 12px;
261
+ line-height: 20px;
262
+ font-weight: 500;
263
+ }
264
+
265
+ .text-payhere-body-esmb {
266
+ font-size: 12px;
267
+ line-height: 20px;
268
+ font-weight: 600;
269
+ }
270
+ @mixin text-payhere-body-esmb() {
271
+ font-size: 12px;
272
+ line-height: 20px;
273
+ font-weight: 600;
274
+ }
275
+
276
+ .text-payhere-body-esb {
277
+ font-size: 12px;
278
+ line-height: 20px;
279
+ font-weight: 700;
280
+ }
281
+ @mixin text-payhere-body-esb() {
282
+ font-size: 12px;
283
+ line-height: 20px;
284
+ font-weight: 700;
285
+ }
120
286
 
121
287
  .text-laba-title-lb {
122
288
  font-size: 36px;
123
289
  line-height: 44px;
124
290
  font-weight: 700;
125
291
  }
292
+ @mixin text-laba-title-lb() {
293
+ font-size: 36px;
294
+ line-height: 44px;
295
+ font-weight: 700;
296
+ }
126
297
 
127
298
  .text-laba-title-ls {
128
299
  font-size: 36px;
129
300
  line-height: 44px;
130
301
  font-weight: 600;
131
302
  }
303
+ @mixin text-laba-title-ls() {
304
+ font-size: 36px;
305
+ line-height: 44px;
306
+ font-weight: 600;
307
+ }
132
308
 
133
309
  .text-laba-title-lr {
134
310
  font-size: 36px;
135
311
  line-height: 44px;
136
312
  font-weight: 400;
137
313
  }
314
+ @mixin text-laba-title-lr() {
315
+ font-size: 36px;
316
+ line-height: 44px;
317
+ font-weight: 400;
318
+ }
138
319
 
139
320
  .text-laba-title-mb {
140
321
  font-size: 32px;
141
322
  line-height: 40px;
142
323
  font-weight: 700;
143
324
  }
325
+ @mixin text-laba-title-mb() {
326
+ font-size: 32px;
327
+ line-height: 40px;
328
+ font-weight: 700;
329
+ }
144
330
 
145
331
  .text-laba-title-ms {
146
332
  font-size: 32px;
147
333
  line-height: 40px;
148
334
  font-weight: 600;
149
335
  }
336
+ @mixin text-laba-title-ms() {
337
+ font-size: 32px;
338
+ line-height: 40px;
339
+ font-weight: 600;
340
+ }
150
341
 
151
342
  .text-laba-title-mr {
152
343
  font-size: 32px;
153
344
  line-height: 40px;
154
345
  font-weight: 400;
155
346
  }
347
+ @mixin text-laba-title-mr() {
348
+ font-size: 32px;
349
+ line-height: 40px;
350
+ font-weight: 400;
351
+ }
156
352
 
157
353
  .text-laba-h1 {
158
354
  font-size: 24px;
159
355
  line-height: 30px;
160
356
  font-weight: 700;
161
357
  }
358
+ @mixin text-laba-h1() {
359
+ font-size: 24px;
360
+ line-height: 30px;
361
+ font-weight: 700;
362
+ }
162
363
 
163
364
  .text-laba-h1-b {
164
365
  font-size: 24px;
165
366
  line-height: 30px;
166
367
  font-weight: 700;
167
368
  }
369
+ @mixin text-laba-h1-b() {
370
+ font-size: 24px;
371
+ line-height: 30px;
372
+ font-weight: 700;
373
+ }
168
374
 
169
375
  .text-laba-h1-sb {
170
376
  font-size: 24px;
171
377
  line-height: 30px;
172
378
  font-weight: 600;
173
379
  }
380
+ @mixin text-laba-h1-sb() {
381
+ font-size: 24px;
382
+ line-height: 30px;
383
+ font-weight: 600;
384
+ }
174
385
 
175
386
  .text-laba-h1-r {
176
387
  font-size: 24px;
177
388
  line-height: 30px;
178
389
  font-weight: 400;
179
390
  }
391
+ @mixin text-laba-h1-r() {
392
+ font-size: 24px;
393
+ line-height: 30px;
394
+ font-weight: 400;
395
+ }
180
396
 
181
397
  .text-laba-h2 {
182
398
  font-size: 18px;
183
399
  line-height: 26px;
184
400
  font-weight: 700;
185
401
  }
402
+ @mixin text-laba-h2() {
403
+ font-size: 18px;
404
+ line-height: 26px;
405
+ font-weight: 700;
406
+ }
186
407
 
187
408
  .text-laba-h2-b {
188
409
  font-size: 18px;
189
410
  line-height: 26px;
190
411
  font-weight: 700;
191
412
  }
413
+ @mixin text-laba-h2-b() {
414
+ font-size: 18px;
415
+ line-height: 26px;
416
+ font-weight: 700;
417
+ }
192
418
 
193
419
  .text-laba-h2-sb {
194
420
  font-size: 18px;
195
421
  line-height: 26px;
196
422
  font-weight: 600;
197
423
  }
424
+ @mixin text-laba-h2-sb() {
425
+ font-size: 18px;
426
+ line-height: 26px;
427
+ font-weight: 600;
428
+ }
198
429
 
199
430
  .text-laba-h2-r {
200
431
  font-size: 18px;
201
432
  line-height: 26px;
202
433
  font-weight: 400;
203
434
  }
435
+ @mixin text-laba-h2-r() {
436
+ font-size: 18px;
437
+ line-height: 26px;
438
+ font-weight: 400;
439
+ }
204
440
 
205
441
  .text-laba-base-rb {
206
442
  font-size: 16px;
207
443
  line-height: 24px;
208
444
  font-weight: 700;
209
445
  }
446
+ @mixin text-laba-base-rb() {
447
+ font-size: 16px;
448
+ line-height: 24px;
449
+ font-weight: 700;
450
+ }
210
451
 
211
452
  .text-laba-base-rs {
212
453
  font-size: 16px;
213
454
  line-height: 24px;
214
455
  font-weight: 600;
215
456
  }
457
+ @mixin text-laba-base-rs() {
458
+ font-size: 16px;
459
+ line-height: 24px;
460
+ font-weight: 600;
461
+ }
216
462
 
217
463
  .text-laba-base-rr {
218
464
  font-size: 16px;
219
465
  line-height: 24px;
220
466
  font-weight: 400;
221
467
  }
468
+ @mixin text-laba-base-rr() {
469
+ font-size: 16px;
470
+ line-height: 24px;
471
+ font-weight: 400;
472
+ }
222
473
 
223
474
  .text-laba-base-sb {
224
475
  font-size: 14px;
225
476
  line-height: 20px;
226
477
  font-weight: 700;
227
478
  }
479
+ @mixin text-laba-base-sb() {
480
+ font-size: 14px;
481
+ line-height: 20px;
482
+ font-weight: 700;
483
+ }
228
484
 
229
485
  .text-laba-base-ss {
230
486
  font-size: 14px;
231
487
  line-height: 20px;
232
488
  font-weight: 600;
233
489
  }
490
+ @mixin text-laba-base-ss() {
491
+ font-size: 14px;
492
+ line-height: 20px;
493
+ font-weight: 600;
494
+ }
234
495
 
235
496
  .text-laba-base-sr {
236
497
  font-size: 14px;
237
498
  line-height: 20px;
238
499
  font-weight: 400;
239
500
  }
501
+ @mixin text-laba-base-sr() {
502
+ font-size: 14px;
503
+ line-height: 20px;
504
+ font-weight: 400;
505
+ }
240
506
 
241
507
  .text-laba-subtitle-rb {
242
508
  font-size: 12px;
243
509
  line-height: 16px;
244
510
  font-weight: 700;
245
511
  }
512
+ @mixin text-laba-subtitle-rb() {
513
+ font-size: 12px;
514
+ line-height: 16px;
515
+ font-weight: 700;
516
+ }
246
517
 
247
518
  .text-laba-subtitle-rs {
248
519
  font-size: 12px;
249
520
  line-height: 16px;
250
521
  font-weight: 600;
251
522
  }
523
+ @mixin text-laba-subtitle-rs() {
524
+ font-size: 12px;
525
+ line-height: 16px;
526
+ font-weight: 600;
527
+ }
252
528
 
253
529
  .text-laba-subtitle-rr {
254
530
  font-size: 12px;
255
531
  line-height: 16px;
256
532
  font-weight: 400;
257
533
  }
534
+ @mixin text-laba-subtitle-rr() {
535
+ font-size: 12px;
536
+ line-height: 16px;
537
+ font-weight: 400;
538
+ }
258
539
 
259
540
  .text-laba-subtitle-sb {
260
541
  font-size: 10px;
261
542
  line-height: 12px;
262
543
  font-weight: 700;
263
544
  }
545
+ @mixin text-laba-subtitle-sb() {
546
+ font-size: 10px;
547
+ line-height: 12px;
548
+ font-weight: 700;
549
+ }
264
550
 
265
551
  .text-laba-subtitle-ss {
266
552
  font-size: 10px;
267
553
  line-height: 12px;
268
554
  font-weight: 600;
269
555
  }
556
+ @mixin text-laba-subtitle-ss() {
557
+ font-size: 10px;
558
+ line-height: 12px;
559
+ font-weight: 600;
560
+ }
270
561
 
271
562
  .text-laba-subtitle-sr {
272
563
  font-size: 10px;
273
564
  line-height: 12px;
274
565
  font-weight: 400;
566
+ }
567
+ @mixin text-laba-subtitle-sr() {
568
+ font-size: 10px;
569
+ line-height: 12px;
570
+ font-weight: 400;
571
+ }
572
+
573
+ .text-bill-h1 {
574
+ font-size: 60px;
575
+ line-height: 72px;
576
+ font-weight: 700;
577
+ }
578
+ @mixin text-bill-h1() {
579
+ font-size: 60px;
580
+ line-height: 72px;
581
+ font-weight: 700;
582
+ }
583
+
584
+ .text-bill-h2 {
585
+ font-size: 48px;
586
+ line-height: 58px;
587
+ font-weight: 700;
588
+ }
589
+ @mixin text-bill-h2() {
590
+ font-size: 48px;
591
+ line-height: 58px;
592
+ font-weight: 700;
593
+ }
594
+
595
+ .text-bill-h3 {
596
+ font-size: 40px;
597
+ line-height: 58px;
598
+ font-weight: 700;
599
+ }
600
+ @mixin text-bill-h3() {
601
+ font-size: 40px;
602
+ line-height: 58px;
603
+ font-weight: 700;
604
+ }
605
+
606
+ .text-bill-h4 {
607
+ font-size: 30px;
608
+ line-height: 38px;
609
+ font-weight: 700;
610
+ }
611
+ @mixin text-bill-h4() {
612
+ font-size: 30px;
613
+ line-height: 38px;
614
+ font-weight: 700;
615
+ }
616
+
617
+ .text-bill-h5 {
618
+ font-size: 28px;
619
+ line-height: 40px;
620
+ font-weight: 600;
621
+ }
622
+ @mixin text-bill-h5() {
623
+ font-size: 28px;
624
+ line-height: 40px;
625
+ font-weight: 600;
626
+ }
627
+
628
+ .text-bill-h6 {
629
+ font-size: 24px;
630
+ line-height: 30px;
631
+ font-weight: 600;
632
+ }
633
+ @mixin text-bill-h6() {
634
+ font-size: 24px;
635
+ line-height: 30px;
636
+ font-weight: 600;
637
+ }
638
+
639
+ .text-bill-body-lr {
640
+ font-size: 18px;
641
+ line-height: 26px;
642
+ font-weight: 400;
643
+ }
644
+ @mixin text-bill-body-lr() {
645
+ font-size: 18px;
646
+ line-height: 26px;
647
+ font-weight: 400;
648
+ }
649
+
650
+ .text-bill-body-lm {
651
+ font-size: 18px;
652
+ line-height: 26px;
653
+ font-weight: 500;
654
+ }
655
+ @mixin text-bill-body-lm() {
656
+ font-size: 18px;
657
+ line-height: 26px;
658
+ font-weight: 500;
659
+ }
660
+
661
+ .text-bill-body-lsm {
662
+ font-size: 18px;
663
+ line-height: 26px;
664
+ font-weight: 600;
665
+ }
666
+ @mixin text-bill-body-lsm() {
667
+ font-size: 18px;
668
+ line-height: 26px;
669
+ font-weight: 600;
670
+ }
671
+
672
+ .text-bill-body-blb {
673
+ font-size: 18px;
674
+ line-height: 26px;
675
+ font-weight: 700;
676
+ }
677
+ @mixin text-bill-body-blb() {
678
+ font-size: 18px;
679
+ line-height: 26px;
680
+ font-weight: 700;
681
+ }
682
+
683
+ .text-bill-body-mr {
684
+ font-size: 16px;
685
+ line-height: 24px;
686
+ font-weight: 400;
687
+ }
688
+ @mixin text-bill-body-mr() {
689
+ font-size: 16px;
690
+ line-height: 24px;
691
+ font-weight: 400;
692
+ }
693
+
694
+ .text-bill-body-mm {
695
+ font-size: 16px;
696
+ line-height: 24px;
697
+ font-weight: 500;
698
+ }
699
+ @mixin text-bill-body-mm() {
700
+ font-size: 16px;
701
+ line-height: 24px;
702
+ font-weight: 500;
703
+ }
704
+
705
+ .text-bill-body-msm {
706
+ font-size: 16px;
707
+ line-height: 24px;
708
+ font-weight: 600;
709
+ }
710
+ @mixin text-bill-body-msm() {
711
+ font-size: 16px;
712
+ line-height: 24px;
713
+ font-weight: 600;
714
+ }
715
+
716
+ .text-bill-body-mb {
717
+ font-size: 16px;
718
+ line-height: 24px;
719
+ font-weight: 700;
720
+ }
721
+ @mixin text-bill-body-mb() {
722
+ font-size: 16px;
723
+ line-height: 24px;
724
+ font-weight: 700;
725
+ }
726
+
727
+ .text-bill-label-r {
728
+ font-size: 15px;
729
+ line-height: 26px;
730
+ font-weight: 400;
731
+ }
732
+ @mixin text-bill-label-r() {
733
+ font-size: 15px;
734
+ line-height: 26px;
735
+ font-weight: 400;
736
+ }
737
+
738
+ .text-bill-label-m {
739
+ font-size: 15px;
740
+ line-height: 26px;
741
+ font-weight: 500;
742
+ }
743
+ @mixin text-bill-label-m() {
744
+ font-size: 15px;
745
+ line-height: 26px;
746
+ font-weight: 500;
747
+ }
748
+
749
+ .text-bill-label-sm {
750
+ font-size: 15px;
751
+ line-height: 26px;
752
+ font-weight: 600;
753
+ }
754
+ @mixin text-bill-label-sm() {
755
+ font-size: 15px;
756
+ line-height: 26px;
757
+ font-weight: 600;
758
+ }
759
+
760
+ .text-bill-label-b {
761
+ font-size: 15px;
762
+ line-height: 26px;
763
+ font-weight: 700;
764
+ }
765
+ @mixin text-bill-label-b() {
766
+ font-size: 15px;
767
+ line-height: 26px;
768
+ font-weight: 700;
769
+ }
770
+
771
+ .text-bill-body-sr {
772
+ font-size: 14px;
773
+ line-height: 22px;
774
+ font-weight: 400;
775
+ }
776
+ @mixin text-bill-body-sr() {
777
+ font-size: 14px;
778
+ line-height: 22px;
779
+ font-weight: 400;
780
+ }
781
+
782
+ .text-bill-body-sm {
783
+ font-size: 14px;
784
+ line-height: 22px;
785
+ font-weight: 500;
786
+ }
787
+ @mixin text-bill-body-sm() {
788
+ font-size: 14px;
789
+ line-height: 22px;
790
+ font-weight: 500;
791
+ }
792
+
793
+ .text-bill-body-ssm {
794
+ font-size: 14px;
795
+ line-height: 22px;
796
+ font-weight: 600;
797
+ }
798
+ @mixin text-bill-body-ssm() {
799
+ font-size: 14px;
800
+ line-height: 22px;
801
+ font-weight: 600;
802
+ }
803
+
804
+ .text-bill-body-sb {
805
+ font-size: 14px;
806
+ line-height: 22px;
807
+ font-weight: 700;
808
+ }
809
+ @mixin text-bill-body-sb() {
810
+ font-size: 14px;
811
+ line-height: 22px;
812
+ font-weight: 700;
813
+ }
814
+
815
+ .text-bill-body-esr {
816
+ font-size: 12px;
817
+ line-height: 20px;
818
+ font-weight: 400;
819
+ }
820
+ @mixin text-bill-body-esr() {
821
+ font-size: 12px;
822
+ line-height: 20px;
823
+ font-weight: 400;
824
+ }
825
+
826
+ .text-bill-body-ems {
827
+ font-size: 12px;
828
+ line-height: 20px;
829
+ font-weight: 500;
830
+ }
831
+ @mixin text-bill-body-ems() {
832
+ font-size: 12px;
833
+ line-height: 20px;
834
+ font-weight: 500;
835
+ }
836
+
837
+ .text-bill-body-essm {
838
+ font-size: 12px;
839
+ line-height: 20px;
840
+ font-weight: 600;
841
+ }
842
+ @mixin text-bill-body-essm() {
843
+ font-size: 12px;
844
+ line-height: 20px;
845
+ font-weight: 600;
846
+ }
847
+
848
+ .text-bill-body-esb {
849
+ font-size: 12px;
850
+ line-height: 20px;
851
+ font-weight: 700;
852
+ }
853
+ @mixin text-bill-body-esb() {
854
+ font-size: 12px;
855
+ line-height: 20px;
856
+ font-weight: 700;
275
857
  }