1mpacto-react-ui 2.0.16 → 2.0.17
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.
- package/dist/assets/style.css +1 -1
- package/dist/components/Alert/index.cjs +1 -0
- package/dist/components/Alert/index.mjs +220 -0
- package/dist/components/Alert/style.module.scss.cjs +1 -0
- package/dist/components/Alert/style.module.scss.mjs +14 -0
- package/dist/components/Badges/Badges.cjs +2 -0
- package/dist/components/Badges/Badges.config.cjs +1 -0
- package/dist/components/Badges/Badges.config.mjs +47 -0
- package/dist/components/Badges/Badges.mjs +29 -0
- package/dist/components/Badges/style.module.scss.cjs +1 -0
- package/dist/components/Badges/style.module.scss.mjs +40 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.cjs +3 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.config.cjs +1 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.config.mjs +16 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.mjs +67 -0
- package/dist/components/Breadcrumbs/style.module.scss.cjs +1 -0
- package/dist/components/Breadcrumbs/style.module.scss.mjs +16 -0
- package/dist/components/Button/Button.cjs +12 -0
- package/dist/components/Button/Button.config.cjs +1 -0
- package/dist/components/Button/Button.config.mjs +75 -0
- package/dist/components/Button/Button.mjs +75 -0
- package/dist/components/Button/style.module.scss.cjs +1 -0
- package/dist/components/Button/style.module.scss.mjs +58 -0
- package/dist/components/ButtonIcon/ButtonIcon.cjs +12 -0
- package/dist/components/ButtonIcon/ButtonIcon.config.cjs +1 -0
- package/dist/components/ButtonIcon/ButtonIcon.config.mjs +68 -0
- package/dist/components/ButtonIcon/ButtonIcon.mjs +65 -0
- package/dist/components/ButtonIcon/style.module.scss.cjs +1 -0
- package/dist/components/ButtonIcon/style.module.scss.mjs +51 -0
- package/dist/components/ButtonPopover/ButtonPopover.cjs +1 -0
- package/dist/components/ButtonPopover/ButtonPopover.mjs +84 -0
- package/dist/components/ButtonPopover/style.module.scss.cjs +1 -0
- package/dist/components/ButtonPopover/style.module.scss.mjs +10 -0
- package/dist/components/Calendar/Calendar.cjs +1 -0
- package/dist/components/Calendar/Calendar.mjs +199 -0
- package/dist/components/Calendar/CalendarButton.cjs +1 -0
- package/dist/components/Calendar/CalendarButton.mjs +18 -0
- package/dist/components/Calendar/CalendarCell.cjs +1 -0
- package/dist/components/Calendar/CalendarCell.mjs +26 -0
- package/dist/components/Calendar/CalendarMonth.cjs +1 -0
- package/dist/components/Calendar/CalendarMonth.mjs +74 -0
- package/dist/components/Calendar/CalendarRange.cjs +1 -0
- package/dist/components/Calendar/CalendarRange.mjs +140 -0
- package/dist/components/Calendar/CalendarYear.cjs +3 -0
- package/dist/components/Calendar/CalendarYear.mjs +74 -0
- package/dist/components/Calendar/style.module.scss.cjs +1 -0
- package/dist/components/Calendar/style.module.scss.mjs +36 -0
- package/dist/components/Chart/DoughnutChart.cjs +1 -0
- package/dist/components/Chart/DoughnutChart.mjs +173 -0
- package/dist/components/Chart/GradientBarChart.cjs +1 -0
- package/dist/components/Chart/GradientBarChart.mjs +157 -0
- package/dist/components/Chart/GradientLineChart.cjs +1 -0
- package/dist/components/Chart/GradientLineChart.mjs +143 -0
- package/dist/components/Chart/LineChart.cjs +1 -0
- package/dist/components/Chart/LineChart.mjs +158 -0
- package/dist/components/Chips/Chips.cjs +3 -0
- package/dist/components/Chips/Chips.config.cjs +1 -0
- package/dist/components/Chips/Chips.config.mjs +35 -0
- package/dist/components/Chips/Chips.mjs +37 -0
- package/dist/components/Chips/style.module.scss.cjs +1 -0
- package/dist/components/Chips/style.module.scss.mjs +14 -0
- package/dist/components/Collapse/Collapse.cjs +1 -0
- package/dist/components/Collapse/Collapse.mjs +35 -0
- package/dist/components/Collapse/CollapseV2.cjs +1 -0
- package/dist/components/Collapse/CollapseV2.mjs +30 -0
- package/dist/components/Collapse/style.module.scss.cjs +1 -0
- package/dist/components/Collapse/style.module.scss.mjs +7 -0
- package/dist/components/DatePicker/DatePicker.cjs +1 -0
- package/dist/components/DatePicker/DatePicker.mjs +125 -0
- package/dist/components/DatePicker/DateRangePicker.cjs +1 -0
- package/dist/components/DatePicker/DateRangePicker.mjs +112 -0
- package/dist/components/DatePicker/FilterDate.cjs +1 -0
- package/dist/components/DatePicker/FilterDate.mjs +248 -0
- package/dist/components/DatePicker/MonthYearPicker.cjs +1 -0
- package/dist/components/DatePicker/MonthYearPicker.mjs +83 -0
- package/dist/components/ErrorMessage/ErrorMessage.cjs +1 -0
- package/dist/components/ErrorMessage/ErrorMessage.config.cjs +1 -0
- package/dist/components/ErrorMessage/ErrorMessage.config.mjs +11 -0
- package/dist/components/ErrorMessage/ErrorMessage.mjs +6 -0
- package/dist/components/ErrorMessage/style.module.scss.cjs +1 -0
- package/dist/components/ErrorMessage/style.module.scss.mjs +8 -0
- package/dist/components/FilterContainer/FilterContainer.cjs +1 -0
- package/dist/components/FilterContainer/FilterContainer.mjs +63 -0
- package/dist/components/Input/InputFloatingInner.cjs +5 -0
- package/dist/components/Input/InputFloatingInner.config.cjs +1 -0
- package/dist/components/Input/InputFloatingInner.config.mjs +11 -0
- package/dist/components/Input/InputFloatingInner.mjs +65 -0
- package/dist/components/Input/InputFloatingInner.module.scss.cjs +1 -0
- package/dist/components/Input/InputFloatingInner.module.scss.mjs +20 -0
- package/dist/components/Input/InputInnerLabel.cjs +6 -0
- package/dist/components/Input/InputInnerLabel.config.cjs +1 -0
- package/dist/components/Input/InputInnerLabel.config.mjs +10 -0
- package/dist/components/Input/InputInnerLabel.mjs +78 -0
- package/dist/components/Input/InputInnerLabel.module.scss.cjs +1 -0
- package/dist/components/Input/InputInnerLabel.module.scss.mjs +20 -0
- package/dist/components/Input/InputNative.cjs +5 -0
- package/dist/components/Input/InputNative.config.cjs +1 -0
- package/dist/components/Input/InputNative.config.mjs +11 -0
- package/dist/components/Input/InputNative.mjs +58 -0
- package/dist/components/Input/InputNative.module.scss.cjs +1 -0
- package/dist/components/Input/InputNative.module.scss.mjs +18 -0
- package/dist/components/Input/InputReguler.cjs +5 -0
- package/dist/components/Input/InputReguler.config.cjs +1 -0
- package/dist/components/Input/InputReguler.config.mjs +11 -0
- package/dist/components/Input/InputReguler.mjs +79 -0
- package/dist/components/Input/InputReguler.module.scss.cjs +1 -0
- package/dist/components/Input/InputReguler.module.scss.mjs +24 -0
- package/dist/components/Modal/ModalDialog.cjs +1 -0
- package/dist/components/Modal/ModalDialog.config.cjs +1 -0
- package/dist/components/Modal/ModalDialog.config.mjs +12 -0
- package/dist/components/Modal/ModalDialog.mjs +44 -0
- package/dist/components/Modal/style.module.scss.cjs +1 -0
- package/dist/components/Modal/style.module.scss.mjs +14 -0
- package/dist/components/NumberFormat/NumberFormat.cjs +1 -0
- package/dist/components/NumberFormat/NumberFormat.mjs +33 -0
- package/dist/components/Pagination/Pagination.cjs +2 -0
- package/dist/components/Pagination/Pagination.config.cjs +1 -0
- package/dist/components/Pagination/Pagination.config.mjs +25 -0
- package/dist/components/Pagination/Pagination.mjs +231 -0
- package/dist/components/Pagination/style.module.scss.cjs +1 -0
- package/dist/components/Pagination/style.module.scss.mjs +20 -0
- package/dist/components/Popover/Popover.cjs +1 -0
- package/dist/components/Popover/Popover.mjs +78 -0
- package/dist/components/Popover/style.module.scss.cjs +1 -0
- package/dist/components/Popover/style.module.scss.mjs +7 -0
- package/dist/components/PortalComponent/PortalComponent.cjs +1 -0
- package/dist/components/PortalComponent/PortalComponent.mjs +18 -0
- package/dist/components/RadioCheckbox/CheckboxTable.cjs +1 -0
- package/dist/components/RadioCheckbox/CheckboxTable.mjs +27 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.cjs +3 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.config.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.config.mjs +31 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.mjs +84 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.module.scss.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckbox.module.scss.mjs +26 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.cjs +4 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.config.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.config.mjs +20 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.mjs +55 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.module.scss.cjs +1 -0
- package/dist/components/RadioCheckbox/RadioCheckboxLabel.module.scss.mjs +19 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.cjs +1 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.config.cjs +1 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.config.mjs +27 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.mjs +150 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.module.scss.cjs +1 -0
- package/dist/components/SelectDropdownContainer/SelectDropdownContainer.module.scss.mjs +10 -0
- package/dist/components/SelectDropdownContainer/styleConfig.cjs +1 -0
- package/dist/components/SelectDropdownContainer/styleConfig.mjs +277 -0
- package/dist/components/Sidebar/ItemSidebar.cjs +8 -0
- package/dist/components/Sidebar/ItemSidebar.config.cjs +1 -0
- package/dist/components/Sidebar/ItemSidebar.config.mjs +42 -0
- package/dist/components/Sidebar/ItemSidebar.mjs +122 -0
- package/dist/components/Sidebar/Sidebar.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.config.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.config.mjs +25 -0
- package/dist/components/Sidebar/Sidebar.mjs +136 -0
- package/dist/components/Sidebar/Sidebar.module.scss.cjs +1 -0
- package/dist/components/Sidebar/Sidebar.module.scss.mjs +26 -0
- package/dist/components/Sidebar/itemSidebar.module.scss.cjs +1 -0
- package/dist/components/Sidebar/itemSidebar.module.scss.mjs +31 -0
- package/dist/components/Step/Step.cjs +5 -0
- package/dist/components/Step/Step.mjs +85 -0
- package/dist/components/Step/Step.module.scss.cjs +1 -0
- package/dist/components/Step/Step.module.scss.mjs +17 -0
- package/dist/components/Step/StepIndicator.cjs +4 -0
- package/dist/components/Step/StepIndicator.mjs +65 -0
- package/dist/components/Step/StepIndicator.module.scss.cjs +1 -0
- package/dist/components/Step/StepIndicator.module.scss.mjs +16 -0
- package/dist/components/Switch/Switch.cjs +1 -0
- package/dist/components/Switch/Switch.config.cjs +1 -0
- package/dist/components/Switch/Switch.config.mjs +28 -0
- package/dist/components/Switch/Switch.mjs +53 -0
- package/dist/components/Switch/style.module.scss.cjs +1 -0
- package/dist/components/Switch/style.module.scss.mjs +23 -0
- package/dist/components/TPublish/TPublish.cjs +1 -0
- package/dist/components/TPublish/TPublish.mjs +5 -0
- package/dist/components/Table/Table.cjs +3 -0
- package/dist/components/Table/Table.config.cjs +1 -0
- package/dist/components/Table/Table.config.mjs +69 -0
- package/dist/components/Table/Table.mjs +402 -0
- package/dist/components/Table/Table.module.scss.cjs +1 -0
- package/dist/components/Table/Table.module.scss.mjs +19 -0
- package/dist/components/Table/TableSubMobile.cjs +1 -0
- package/dist/components/Table/TableSubMobile.mjs +37 -0
- package/dist/components/Table/TableSubMobile.module.scss.cjs +1 -0
- package/dist/components/Table/TableSubMobile.module.scss.mjs +6 -0
- package/dist/components/Tabs/TabPanel.cjs +1 -0
- package/dist/components/Tabs/TabPanel.mjs +14 -0
- package/dist/components/Tabs/Tabs.cjs +8 -0
- package/dist/components/Tabs/Tabs.config.cjs +1 -0
- package/dist/components/Tabs/Tabs.config.mjs +33 -0
- package/dist/components/Tabs/Tabs.mjs +112 -0
- package/dist/components/Tabs/style.module.scss.cjs +1 -0
- package/dist/components/Tabs/style.module.scss.mjs +30 -0
- package/dist/components/Text/Text.cjs +5 -0
- package/dist/components/Text/Text.mjs +39 -0
- package/dist/components/TextEditor/TextEditor.cjs +1 -0
- package/dist/components/TextEditor/TextEditor.mjs +9 -0
- package/dist/components/TextEditor/style.module.scss.cjs +1 -0
- package/dist/components/TextEditor/style.module.scss.mjs +7 -0
- package/dist/components/Textarea/Textarea.cjs +7 -0
- package/dist/components/Textarea/Textarea.config.cjs +1 -0
- package/dist/components/Textarea/Textarea.config.mjs +33 -0
- package/dist/components/Textarea/Textarea.mjs +87 -0
- package/dist/components/Textarea/TextareaFloatingInner.cjs +6 -0
- package/dist/components/Textarea/TextareaFloatingInner.config.cjs +1 -0
- package/dist/components/Textarea/TextareaFloatingInner.config.mjs +9 -0
- package/dist/components/Textarea/TextareaFloatingInner.mjs +101 -0
- package/dist/components/Textarea/TextareaFloatingInner.module.scss.cjs +1 -0
- package/dist/components/Textarea/TextareaFloatingInner.module.scss.mjs +17 -0
- package/dist/components/Textarea/TextareaInnerLabel.cjs +6 -0
- package/dist/components/Textarea/TextareaInnerLabel.config.cjs +1 -0
- package/dist/components/Textarea/TextareaInnerLabel.config.mjs +10 -0
- package/dist/components/Textarea/TextareaInnerLabel.mjs +87 -0
- package/dist/components/Textarea/TextareaInnerLabel.module.scss.cjs +1 -0
- package/dist/components/Textarea/TextareaInnerLabel.module.scss.mjs +17 -0
- package/dist/components/Textarea/style.module.scss.cjs +1 -0
- package/dist/components/Textarea/style.module.scss.mjs +25 -0
- package/dist/components/TimeRange/TimeRange.cjs +1 -0
- package/dist/components/TimeRange/TimeRange.mjs +187 -0
- package/dist/components/TimeRange/TimeRange.module.scss.cjs +1 -0
- package/dist/components/TimeRange/TimeRange.module.scss.mjs +23 -0
- package/dist/components/Timeline/Timeline.cjs +1 -0
- package/dist/components/Timeline/Timeline.mjs +12 -0
- package/dist/components/Timeline/style.module.scss.cjs +1 -0
- package/dist/components/Timeline/style.module.scss.mjs +14 -0
- package/dist/components/Tooltip/Tooltip.cjs +1 -0
- package/dist/components/Tooltip/Tooltip.mjs +77 -0
- package/dist/components/Tooltip/Tooltip.module.scss.cjs +1 -0
- package/dist/components/Tooltip/Tooltip.module.scss.mjs +8 -0
- package/dist/components/TruncateComponent/TruncateComponent.cjs +1 -0
- package/dist/components/TruncateComponent/TruncateComponent.mjs +83 -0
- package/dist/components/Upload/UploadFile.cjs +1 -0
- package/dist/components/Upload/UploadFile.mjs +94 -0
- package/dist/components/Upload/UploadFile.module.scss.cjs +1 -0
- package/dist/components/Upload/UploadFile.module.scss.mjs +6 -0
- package/dist/components/Upload/UploadImage.cjs +12 -0
- package/dist/components/Upload/UploadImage.mjs +162 -0
- package/dist/components/Upload/UploadImage.module.scss.cjs +1 -0
- package/dist/components/Upload/UploadImage.module.scss.mjs +14 -0
- package/dist/components/Upload/UploadMultipleFile.cjs +1 -0
- package/dist/components/Upload/UploadMultipleFile.mjs +85 -0
- package/dist/components/Upload/UploadMultipleFile.module.scss.cjs +1 -0
- package/dist/components/Upload/UploadMultipleFile.module.scss.mjs +14 -0
- package/dist/components/Virtualization/ListVirtualization.cjs +1 -0
- package/dist/components/Virtualization/ListVirtualization.mjs +82 -0
- package/dist/components/Virtualization/TableVirtualization.cjs +1 -0
- package/dist/components/Virtualization/TableVirtualization.mjs +84 -0
- package/dist/config/bigNumber/index.cjs +1 -0
- package/dist/config/bigNumber/index.mjs +15 -0
- package/dist/config/components/borderRadius.cjs +1 -0
- package/dist/config/components/borderRadius.mjs +14 -0
- package/dist/config/components/font.cjs +1 -0
- package/dist/config/components/font.mjs +8 -0
- package/dist/config/components/gap.cjs +1 -0
- package/dist/config/components/gap.mjs +110 -0
- package/dist/config/components/tinymce.cjs +28 -0
- package/dist/config/components/tinymce.mjs +81 -0
- package/dist/config/components/typography.cjs +1 -0
- package/dist/config/components/typography.mjs +83 -0
- package/dist/config/resources/index.cjs +1 -0
- package/dist/config/resources/index.mjs +4 -0
- package/dist/config/tailwind/colors.cjs +1 -0
- package/dist/config/tailwind/colors.mjs +291 -0
- package/dist/config/tailwind/nativeScreen.cjs +1 -0
- package/dist/config/tailwind/nativeScreen.mjs +11 -0
- package/dist/config/tailwind/screen.cjs +1 -0
- package/dist/config/tailwind/screen.mjs +11 -0
- package/dist/config/tailwind/typography.cjs +1 -0
- package/dist/config/tailwind/typography.mjs +158 -0
- package/dist/hooks/useAsyncDebounce.cjs +1 -0
- package/dist/hooks/useAsyncDebounce.mjs +21 -0
- package/dist/hooks/useCombinedResizeObserver.cjs +1 -0
- package/dist/hooks/useCombinedResizeObserver.mjs +48 -0
- package/dist/hooks/useCountdown.cjs +1 -0
- package/dist/hooks/useCountdown.mjs +38 -0
- package/dist/hooks/useDeepCompareEffect.cjs +1 -0
- package/dist/hooks/useDeepCompareEffect.mjs +14 -0
- package/dist/hooks/useElementOrWindowMediaQuery.cjs +1 -0
- package/dist/hooks/useElementOrWindowMediaQuery.mjs +23 -0
- package/dist/hooks/useEventListener.cjs +1 -0
- package/dist/hooks/useEventListener.mjs +19 -0
- package/dist/hooks/useMasonry.cjs +1 -0
- package/dist/hooks/useMasonry.mjs +53 -0
- package/dist/hooks/useMergeRefs.cjs +1 -0
- package/dist/hooks/useMergeRefs.mjs +29 -0
- package/dist/hooks/useOtpInput.cjs +1 -0
- package/dist/hooks/useOtpInput.mjs +115 -0
- package/dist/hooks/useStateRef.cjs +1 -0
- package/dist/hooks/useStateRef.mjs +10 -0
- package/dist/index.cjs +1 -247
- package/dist/index.mjs +207 -51684
- package/dist/package.json.cjs +1 -0
- package/dist/package.json.d.ts +3 -2
- package/dist/package.json.mjs +7 -0
- package/dist/public/assets/icons/arrow-narrow-down.svg.cjs +1 -0
- package/dist/public/assets/icons/arrow-narrow-down.svg.mjs +4 -0
- package/dist/utils/axiosBigNumber.cjs +1 -0
- package/dist/utils/axiosBigNumber.mjs +32 -0
- package/dist/utils/common.cjs +1 -0
- package/dist/utils/common.mjs +264 -0
- package/dist/utils/cookies.cjs +1 -0
- package/dist/utils/cookies.mjs +48 -0
- package/dist/utils/formatBigNumber.cjs +1 -0
- package/dist/utils/formatBigNumber.mjs +39 -0
- package/dist/utils/yup.cjs +1 -0
- package/dist/utils/yup.mjs +78 -0
- package/package.json +3 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const p={"gap-0":"iru-gap-0","gap-x-0":"iru-gap-x-0","gap-y-0":"iru-gap-y-0","gap-px":"iru-gap-px","gap-x-px":"iru-gap-x-px","gap-y-px":"iru-gap-y-px","gap-0.5":"iru-gap-0.5","gap-x-0.5":"iru-gap-x-0.5","gap-y-0.5":"iru-gap-y-0.5","gap-1":"iru-gap-1","gap-x-1":"iru-gap-x-1","gap-y-1":"iru-gap-y-1","gap-1.5":"iru-gap-1.5","gap-x-1.5":"iru-gap-x-1.5","gap-y-1.5":"iru-gap-y-1.5","gap-2":"iru-gap-2","gap-x-2":"iru-gap-x-2","gap-y-2":"iru-gap-y-2","gap-2.5":"iru-gap-2.5","gap-x-2.5":"iru-gap-x-2.5","gap-y-2.5":"iru-gap-y-2.5","gap-3":"iru-gap-3","gap-x-3":"iru-gap-x-3","gap-y-3":"iru-gap-y-3","gap-3.5":"iru-gap-3.5","gap-x-3.5":"iru-gap-x-3.5","gap-y-3.5":"iru-gap-y-3.5","gap-4":"iru-gap-4","gap-x-4":"iru-gap-x-4","gap-y-4":"iru-gap-y-4","gap-5":"iru-gap-5","gap-x-5":"iru-gap-x-5","gap-y-5":"iru-gap-y-5","gap-6":"iru-gap-6","gap-x-6":"iru-gap-x-6","gap-y-6":"iru-gap-y-6","gap-7":"iru-gap-7","gap-x-7":"iru-gap-x-7","gap-y-7":"iru-gap-y-7","gap-8":"iru-gap-8","gap-x-8":"iru-gap-x-8","gap-y-8":"iru-gap-y-8","gap-9":"iru-gap-9","gap-x-9":"iru-gap-x-9","gap-y-9":"iru-gap-y-9","gap-10":"iru-gap-10","gap-x-10":"iru-gap-x-10","gap-y-10":"iru-gap-y-10"};exports.configGap=p;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
const p = {
|
|
2
|
+
"gap-0": "iru-gap-0",
|
|
3
|
+
"gap-x-0": "iru-gap-x-0",
|
|
4
|
+
"gap-y-0": "iru-gap-y-0",
|
|
5
|
+
"gap-px": "iru-gap-px",
|
|
6
|
+
"gap-x-px": "iru-gap-x-px",
|
|
7
|
+
"gap-y-px": "iru-gap-y-px",
|
|
8
|
+
"gap-0.5": "iru-gap-0.5",
|
|
9
|
+
"gap-x-0.5": "iru-gap-x-0.5",
|
|
10
|
+
"gap-y-0.5": "iru-gap-y-0.5",
|
|
11
|
+
"gap-1": "iru-gap-1",
|
|
12
|
+
"gap-x-1": "iru-gap-x-1",
|
|
13
|
+
"gap-y-1": "iru-gap-y-1",
|
|
14
|
+
"gap-1.5": "iru-gap-1.5",
|
|
15
|
+
"gap-x-1.5": "iru-gap-x-1.5",
|
|
16
|
+
"gap-y-1.5": "iru-gap-y-1.5",
|
|
17
|
+
"gap-2": "iru-gap-2",
|
|
18
|
+
"gap-x-2": "iru-gap-x-2",
|
|
19
|
+
"gap-y-2": "iru-gap-y-2",
|
|
20
|
+
"gap-2.5": "iru-gap-2.5",
|
|
21
|
+
"gap-x-2.5": "iru-gap-x-2.5",
|
|
22
|
+
"gap-y-2.5": "iru-gap-y-2.5",
|
|
23
|
+
"gap-3": "iru-gap-3",
|
|
24
|
+
"gap-x-3": "iru-gap-x-3",
|
|
25
|
+
"gap-y-3": "iru-gap-y-3",
|
|
26
|
+
"gap-3.5": "iru-gap-3.5",
|
|
27
|
+
"gap-x-3.5": "iru-gap-x-3.5",
|
|
28
|
+
"gap-y-3.5": "iru-gap-y-3.5",
|
|
29
|
+
"gap-4": "iru-gap-4",
|
|
30
|
+
"gap-x-4": "iru-gap-x-4",
|
|
31
|
+
"gap-y-4": "iru-gap-y-4",
|
|
32
|
+
"gap-5": "iru-gap-5",
|
|
33
|
+
"gap-x-5": "iru-gap-x-5",
|
|
34
|
+
"gap-y-5": "iru-gap-y-5",
|
|
35
|
+
"gap-6": "iru-gap-6",
|
|
36
|
+
"gap-x-6": "iru-gap-x-6",
|
|
37
|
+
"gap-y-6": "iru-gap-y-6",
|
|
38
|
+
"gap-7": "iru-gap-7",
|
|
39
|
+
"gap-x-7": "iru-gap-x-7",
|
|
40
|
+
"gap-y-7": "iru-gap-y-7",
|
|
41
|
+
"gap-8": "iru-gap-8",
|
|
42
|
+
"gap-x-8": "iru-gap-x-8",
|
|
43
|
+
"gap-y-8": "iru-gap-y-8",
|
|
44
|
+
"gap-9": "iru-gap-9",
|
|
45
|
+
"gap-x-9": "iru-gap-x-9",
|
|
46
|
+
"gap-y-9": "iru-gap-y-9",
|
|
47
|
+
"gap-10": "iru-gap-10",
|
|
48
|
+
"gap-x-10": "iru-gap-x-10",
|
|
49
|
+
"gap-y-10": "iru-gap-y-10"
|
|
50
|
+
// 'gap-11': 'iru-gap-11',
|
|
51
|
+
// 'gap-x-11': 'iru-gap-x-11',
|
|
52
|
+
// 'gap-y-11': 'iru-gap-y-11',
|
|
53
|
+
// 'gap-12': 'iru-gap-12',
|
|
54
|
+
// 'gap-x-12': 'iru-gap-x-12',
|
|
55
|
+
// 'gap-y-12': 'iru-gap-y-12',
|
|
56
|
+
// 'gap-14': 'iru-gap-14',
|
|
57
|
+
// 'gap-x-14': 'iru-gap-x-14',
|
|
58
|
+
// 'gap-y-14': 'iru-gap-y-14',
|
|
59
|
+
// 'gap-16': 'iru-gap-16',
|
|
60
|
+
// 'gap-x-16': 'iru-gap-x-16',
|
|
61
|
+
// 'gap-y-16': 'iru-gap-y-16',
|
|
62
|
+
// 'gap-20': 'iru-gap-20',
|
|
63
|
+
// 'gap-x-20': 'iru-gap-x-20',
|
|
64
|
+
// 'gap-y-20': 'iru-gap-y-20',
|
|
65
|
+
// 'gap-24': 'iru-gap-24',
|
|
66
|
+
// 'gap-x-24': 'iru-gap-x-24',
|
|
67
|
+
// 'gap-y-24': 'iru-gap-y-24',
|
|
68
|
+
// 'gap-28': 'iru-gap-28',
|
|
69
|
+
// 'gap-x-28': 'iru-gap-x-28',
|
|
70
|
+
// 'gap-y-28': 'iru-gap-y-28',
|
|
71
|
+
// 'gap-32': 'iru-gap-32',
|
|
72
|
+
// 'gap-x-32': 'iru-gap-x-32',
|
|
73
|
+
// 'gap-y-32': 'iru-gap-y-32',
|
|
74
|
+
// 'gap-36': 'iru-gap-36',
|
|
75
|
+
// 'gap-x-36': 'iru-gap-x-36',
|
|
76
|
+
// 'gap-y-36': 'iru-gap-y-36',
|
|
77
|
+
// 'gap-40': 'iru-gap-40',
|
|
78
|
+
// 'gap-x-40': 'iru-gap-x-40',
|
|
79
|
+
// 'gap-y-40': 'iru-gap-y-40',
|
|
80
|
+
// 'gap-44': 'iru-gap-44',
|
|
81
|
+
// 'gap-x-44': 'iru-gap-x-44',
|
|
82
|
+
// 'gap-y-44': 'iru-gap-y-44',
|
|
83
|
+
// 'gap-48': 'iru-gap-48',
|
|
84
|
+
// 'gap-x-48': 'iru-gap-x-48',
|
|
85
|
+
// 'gap-y-48': 'iru-gap-y-48',
|
|
86
|
+
// 'gap-52': 'iru-gap-52',
|
|
87
|
+
// 'gap-x-52': 'iru-gap-x-52',
|
|
88
|
+
// 'gap-y-52': 'iru-gap-y-52',
|
|
89
|
+
// 'gap-56': 'iru-gap-56',
|
|
90
|
+
// 'gap-x-56': 'iru-gap-x-56',
|
|
91
|
+
// 'gap-y-56': 'iru-gap-y-56',
|
|
92
|
+
// 'gap-60': 'iru-gap-60',
|
|
93
|
+
// 'gap-x-60': 'iru-gap-x-60',
|
|
94
|
+
// 'gap-y-60': 'iru-gap-y-60',
|
|
95
|
+
// 'gap-64': 'iru-gap-64',
|
|
96
|
+
// 'gap-x-64': 'iru-gap-x-64',
|
|
97
|
+
// 'gap-y-64': 'iru-gap-y-64',
|
|
98
|
+
// 'gap-72': 'iru-gap-72',
|
|
99
|
+
// 'gap-x-72': 'iru-gap-x-72',
|
|
100
|
+
// 'gap-y-72': 'iru-gap-y-72',
|
|
101
|
+
// 'gap-80': 'iru-gap-80',
|
|
102
|
+
// 'gap-x-80': 'iru-gap-x-80',
|
|
103
|
+
// 'gap-y-80': 'iru-gap-y-80',
|
|
104
|
+
// 'gap-96': 'iru-gap-96',
|
|
105
|
+
// 'gap-x-96': 'iru-gap-x-96',
|
|
106
|
+
// 'gap-y-96': 'iru-gap-y-96',
|
|
107
|
+
};
|
|
108
|
+
export {
|
|
109
|
+
p as configGap
|
|
110
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const s=require("../../package.json.cjs"),r=require("../resources/index.cjs"),l=({label:n})=>({tinymceScriptSrc:`${r.tinymceResource}/js/tinymce/tinymce.min.js`,licenseKey:"gpl",init:{plugins:"lists",menubar:!1,statusbar:!1,content_css:`https://unpkg.com/1mpacto-react-ui@${s.default.version}/dist/assets/fontfamily.css`,toolbar:"fontfamily fontsize italic bold underline bullist numlist",font_size_formats:"8px 10px 12px 14px 16px 18px 24px 36px 48px",image_advtab:!0,importcss_append:!0,min_height:220,image_caption:!0,noneditable_class:"mceNonEditable",toolbar_mode:"sliding",table_tab_navigation:!1,line_height_formats:"100px",font_family_formats:`
|
|
2
|
+
Lato=Lato;
|
|
3
|
+
Inter=Inter;
|
|
4
|
+
Andale Mono=Andale Mono,times;
|
|
5
|
+
Arial=Arial,Helvetica,sans-serif;
|
|
6
|
+
Arial Black=Arial-Black,avant garde;
|
|
7
|
+
Book Antiqua=Book-Antiqua,palatino;
|
|
8
|
+
Comic Sans MS=Comic-Sans-MS,sans-serif;
|
|
9
|
+
Courier New=Courier-New,courier;
|
|
10
|
+
Georgia=Georgia,palatino;
|
|
11
|
+
Helvetica=Helvetica;
|
|
12
|
+
Impact=Impact,chicago;
|
|
13
|
+
Tahoma=Tahoma,Arial,Helvetica,sans-serif;
|
|
14
|
+
Terminal=Terminal,monaco;
|
|
15
|
+
Times New Roman=Times-New-Roman,times;
|
|
16
|
+
Trebuchet MS=Trebuchet-MS,geneva;
|
|
17
|
+
Verdana=Verdana,geneva;
|
|
18
|
+
Webdings=Webdings;
|
|
19
|
+
Wingdings=Wingdings,zapf dingbats
|
|
20
|
+
`,forced_root_block:"p",forced_root_block_attrs:{style:"font-family: Lato; margin: 0px"},autosave_interval:"5s",autosave_prefix:"{path}{query}-{id}-",autosave_restore_when_empty:!1,autosave_retention:"2m",paste_block_drop:!0,branding:!1,paste_data_images:!1,resize:!1,width:"100%",init_instance_callback:t=>{if(n){const e=document.getElementById(`${t.id}_ifr`),a=e==null?void 0:e.parentNode,i=document.createElement("p");i.className=`
|
|
21
|
+
!iru-text-laba-grey-10
|
|
22
|
+
!iru-absolute
|
|
23
|
+
!iru-font-Lato
|
|
24
|
+
!iru-text-laba-subtitle-rr
|
|
25
|
+
!iru-pl-2
|
|
26
|
+
!iru-pt-2
|
|
27
|
+
!iru-pointer-events-none
|
|
28
|
+
`,e!=null&&e.className&&(e.className="!iru-mt-6 !iru-w-full"),i.appendChild(document.createTextNode(n||"")),a==null||a.appendChild(i)}},setup:t=>{t.on("PostProcess",function(e){/<p style="font-family: Lato; margin: 0px;"> <\/p>/i.test(e.content)&&(e.content=e.content.replace(/ /gi,"<br />"))}),t.on("PastePostProcess",e=>{e.node.querySelectorAll("*").forEach(o=>{t.dom.setStyle(o,"font-family","Lato"),t.dom.setStyle(o,"margin","0px")})})}}});exports.default=l;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import s from "../../package.json.mjs";
|
|
2
|
+
import { tinymceResource as r } from "../resources/index.mjs";
|
|
3
|
+
const m = ({ label: n }) => ({
|
|
4
|
+
tinymceScriptSrc: `${r}/js/tinymce/tinymce.min.js`,
|
|
5
|
+
licenseKey: "gpl",
|
|
6
|
+
init: {
|
|
7
|
+
plugins: "lists",
|
|
8
|
+
menubar: !1,
|
|
9
|
+
statusbar: !1,
|
|
10
|
+
content_css: `https://unpkg.com/1mpacto-react-ui@${s.version}/dist/assets/fontfamily.css`,
|
|
11
|
+
toolbar: "fontfamily fontsize italic bold underline bullist numlist",
|
|
12
|
+
font_size_formats: "8px 10px 12px 14px 16px 18px 24px 36px 48px",
|
|
13
|
+
image_advtab: !0,
|
|
14
|
+
importcss_append: !0,
|
|
15
|
+
min_height: 220,
|
|
16
|
+
image_caption: !0,
|
|
17
|
+
noneditable_class: "mceNonEditable",
|
|
18
|
+
toolbar_mode: "sliding",
|
|
19
|
+
table_tab_navigation: !1,
|
|
20
|
+
line_height_formats: "100px",
|
|
21
|
+
font_family_formats: `
|
|
22
|
+
Lato=Lato;
|
|
23
|
+
Inter=Inter;
|
|
24
|
+
Andale Mono=Andale Mono,times;
|
|
25
|
+
Arial=Arial,Helvetica,sans-serif;
|
|
26
|
+
Arial Black=Arial-Black,avant garde;
|
|
27
|
+
Book Antiqua=Book-Antiqua,palatino;
|
|
28
|
+
Comic Sans MS=Comic-Sans-MS,sans-serif;
|
|
29
|
+
Courier New=Courier-New,courier;
|
|
30
|
+
Georgia=Georgia,palatino;
|
|
31
|
+
Helvetica=Helvetica;
|
|
32
|
+
Impact=Impact,chicago;
|
|
33
|
+
Tahoma=Tahoma,Arial,Helvetica,sans-serif;
|
|
34
|
+
Terminal=Terminal,monaco;
|
|
35
|
+
Times New Roman=Times-New-Roman,times;
|
|
36
|
+
Trebuchet MS=Trebuchet-MS,geneva;
|
|
37
|
+
Verdana=Verdana,geneva;
|
|
38
|
+
Webdings=Webdings;
|
|
39
|
+
Wingdings=Wingdings,zapf dingbats
|
|
40
|
+
`,
|
|
41
|
+
forced_root_block: "p",
|
|
42
|
+
forced_root_block_attrs: {
|
|
43
|
+
style: "font-family: Lato; margin: 0px"
|
|
44
|
+
},
|
|
45
|
+
autosave_interval: "5s",
|
|
46
|
+
autosave_prefix: "{path}{query}-{id}-",
|
|
47
|
+
autosave_restore_when_empty: !1,
|
|
48
|
+
autosave_retention: "2m",
|
|
49
|
+
paste_block_drop: !0,
|
|
50
|
+
branding: !1,
|
|
51
|
+
paste_data_images: !1,
|
|
52
|
+
resize: !1,
|
|
53
|
+
width: "100%",
|
|
54
|
+
init_instance_callback: (t) => {
|
|
55
|
+
if (n) {
|
|
56
|
+
const e = document.getElementById(`${t.id}_ifr`), a = e == null ? void 0 : e.parentNode, i = document.createElement("p");
|
|
57
|
+
i.className = `
|
|
58
|
+
!iru-text-laba-grey-10
|
|
59
|
+
!iru-absolute
|
|
60
|
+
!iru-font-Lato
|
|
61
|
+
!iru-text-laba-subtitle-rr
|
|
62
|
+
!iru-pl-2
|
|
63
|
+
!iru-pt-2
|
|
64
|
+
!iru-pointer-events-none
|
|
65
|
+
`, e != null && e.className && (e.className = "!iru-mt-6 !iru-w-full"), i.appendChild(document.createTextNode(n || "")), a == null || a.appendChild(i);
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
setup: (t) => {
|
|
69
|
+
t.on("PostProcess", function(e) {
|
|
70
|
+
/<p style="font-family: Lato; margin: 0px;"> <\/p>/i.test(e.content) && (e.content = e.content.replace(/ /gi, "<br />"));
|
|
71
|
+
}), t.on("PastePostProcess", (e) => {
|
|
72
|
+
e.node.querySelectorAll("*").forEach((o) => {
|
|
73
|
+
t.dom.setStyle(o, "font-family", "Lato"), t.dom.setStyle(o, "margin", "0px");
|
|
74
|
+
});
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
export {
|
|
80
|
+
m as default
|
|
81
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const b={"payhere-h1":"iru-text-payhere-h1","payhere-h2":"iru-text-payhere-h2","payhere-h3":"iru-text-payhere-h3","payhere-h4":"iru-text-payhere-h4","payhere-h5":"iru-text-payhere-h5","payhere-h6":"iru-text-payhere-h6","payhere-body-lr":"iru-text-payhere-body-lr","payhere-body-lm":"iru-text-payhere-body-lm","payhere-body-ls":"iru-text-payhere-body-ls","payhere-body-lb":"iru-text-payhere-body-lb","payhere-body-mr":"iru-text-payhere-body-mr","payhere-body-mm":"iru-text-payhere-body-mm","payhere-body-ms":"iru-text-payhere-body-ms","payhere-body-mb":"iru-text-payhere-body-mb","payhere-label-r":"iru-text-payhere-label-r","payhere-label-m":"iru-text-payhere-label-m","payhere-label-sb":"iru-text-payhere-label-sb","payhere-label-b":"iru-text-payhere-label-b","payhere-body-sr":"iru-text-payhere-body-sr","payhere-body-sm":"iru-text-payhere-body-sm","payhere-body-smb":"iru-text-payhere-body-smb","payhere-body-sb":"iru-text-payhere-body-sb","payhere-body-esr":"iru-text-payhere-body-esr","payhere-body-esm":"iru-text-payhere-body-esm","payhere-body-esmb":"iru-text-payhere-body-esmb","payhere-body-esb":"iru-text-payhere-body-esb","laba-title-lb":"iru-text-laba-title-lb","laba-title-ls":"iru-text-laba-title-ls","laba-title-lr":"iru-text-laba-title-lr","laba-title-mb":"iru-text-laba-title-mb","laba-title-ms":"iru-text-laba-title-ms","laba-title-mr":"iru-text-laba-title-mr","laba-h1":"iru-text-laba-h1","laba-h1-b":"iru-text-laba-h1-b","laba-h1-sb":"iru-text-laba-h1-sb","laba-h1-r":"iru-text-laba-h1-r","laba-h2":"iru-text-laba-h2","laba-h2-b":"iru-text-laba-h2-b","laba-h2-sb":"iru-text-laba-h2-sb","laba-h2-r":"iru-text-laba-h2-r","laba-base-rb":"iru-text-laba-base-rb","laba-base-rs":"iru-text-laba-base-rs","laba-base-rr":"iru-text-laba-base-rr","laba-base-sb":"iru-text-laba-base-sb","laba-base-ss":"iru-text-laba-base-ss","laba-base-sr":"iru-text-laba-base-sr","laba-subtitle-rb":"iru-text-laba-subtitle-rb","laba-subtitle-rs":"iru-text-laba-subtitle-rs","laba-subtitle-rr":"iru-text-laba-subtitle-rr","laba-subtitle-sb":"iru-text-laba-subtitle-sb","laba-subtitle-ss":"iru-text-laba-subtitle-ss","laba-subtitle-sr":"iru-text-laba-subtitle-sr","bill-h1":"iru-text-bill-h1","bill-h2":"iru-text-bill-h2","bill-h3":"iru-text-bill-h3","bill-h4":"iru-text-bill-h4","bill-h5":"iru-text-bill-h5","bill-h6":"iru-text-bill-h6","bill-body-lr":"iru-text-bill-body-lr","bill-body-lm":"iru-text-bill-body-lm","bill-body-lsm":"iru-text-bill-body-lsm","bill-body-blb":"iru-text-bill-body-blb","bill-body-mr":"iru-text-bill-body-mr","bill-body-mm":"iru-text-bill-body-mm","bill-body-msm":"iru-text-bill-body-msm","bill-body-mb":"iru-text-bill-body-mb","bill-label-r":"iru-text-bill-label-r","bill-label-m":"iru-text-bill-label-m","bill-label-sm":"iru-text-bill-label-sm","bill-label-b":"iru-text-bill-label-b","bill-body-sr":"iru-text-bill-body-sr","bill-body-sm":"iru-text-bill-body-sm","bill-body-ssm":"iru-text-bill-body-ssm","bill-body-sb":"iru-text-bill-body-sb","bill-body-esr":"iru-text-bill-body-esr","bill-body-ems":"iru-text-bill-body-ems","bill-body-essm":"iru-text-bill-body-essm","bill-body-esb":"iru-text-bill-body-esb"};exports.configtypography=b;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
const b = {
|
|
2
|
+
"payhere-h1": "iru-text-payhere-h1",
|
|
3
|
+
"payhere-h2": "iru-text-payhere-h2",
|
|
4
|
+
"payhere-h3": "iru-text-payhere-h3",
|
|
5
|
+
"payhere-h4": "iru-text-payhere-h4",
|
|
6
|
+
"payhere-h5": "iru-text-payhere-h5",
|
|
7
|
+
"payhere-h6": "iru-text-payhere-h6",
|
|
8
|
+
"payhere-body-lr": "iru-text-payhere-body-lr",
|
|
9
|
+
"payhere-body-lm": "iru-text-payhere-body-lm",
|
|
10
|
+
"payhere-body-ls": "iru-text-payhere-body-ls",
|
|
11
|
+
"payhere-body-lb": "iru-text-payhere-body-lb",
|
|
12
|
+
"payhere-body-mr": "iru-text-payhere-body-mr",
|
|
13
|
+
"payhere-body-mm": "iru-text-payhere-body-mm",
|
|
14
|
+
"payhere-body-ms": "iru-text-payhere-body-ms",
|
|
15
|
+
"payhere-body-mb": "iru-text-payhere-body-mb",
|
|
16
|
+
"payhere-label-r": "iru-text-payhere-label-r",
|
|
17
|
+
"payhere-label-m": "iru-text-payhere-label-m",
|
|
18
|
+
"payhere-label-sb": "iru-text-payhere-label-sb",
|
|
19
|
+
"payhere-label-b": "iru-text-payhere-label-b",
|
|
20
|
+
"payhere-body-sr": "iru-text-payhere-body-sr",
|
|
21
|
+
"payhere-body-sm": "iru-text-payhere-body-sm",
|
|
22
|
+
"payhere-body-smb": "iru-text-payhere-body-smb",
|
|
23
|
+
"payhere-body-sb": "iru-text-payhere-body-sb",
|
|
24
|
+
"payhere-body-esr": "iru-text-payhere-body-esr",
|
|
25
|
+
"payhere-body-esm": "iru-text-payhere-body-esm",
|
|
26
|
+
"payhere-body-esmb": "iru-text-payhere-body-esmb",
|
|
27
|
+
"payhere-body-esb": "iru-text-payhere-body-esb",
|
|
28
|
+
"laba-title-lb": "iru-text-laba-title-lb",
|
|
29
|
+
"laba-title-ls": "iru-text-laba-title-ls",
|
|
30
|
+
"laba-title-lr": "iru-text-laba-title-lr",
|
|
31
|
+
"laba-title-mb": "iru-text-laba-title-mb",
|
|
32
|
+
"laba-title-ms": "iru-text-laba-title-ms",
|
|
33
|
+
"laba-title-mr": "iru-text-laba-title-mr",
|
|
34
|
+
"laba-h1": "iru-text-laba-h1",
|
|
35
|
+
"laba-h1-b": "iru-text-laba-h1-b",
|
|
36
|
+
"laba-h1-sb": "iru-text-laba-h1-sb",
|
|
37
|
+
"laba-h1-r": "iru-text-laba-h1-r",
|
|
38
|
+
"laba-h2": "iru-text-laba-h2",
|
|
39
|
+
"laba-h2-b": "iru-text-laba-h2-b",
|
|
40
|
+
"laba-h2-sb": "iru-text-laba-h2-sb",
|
|
41
|
+
"laba-h2-r": "iru-text-laba-h2-r",
|
|
42
|
+
"laba-base-rb": "iru-text-laba-base-rb",
|
|
43
|
+
"laba-base-rs": "iru-text-laba-base-rs",
|
|
44
|
+
"laba-base-rr": "iru-text-laba-base-rr",
|
|
45
|
+
"laba-base-sb": "iru-text-laba-base-sb",
|
|
46
|
+
"laba-base-ss": "iru-text-laba-base-ss",
|
|
47
|
+
"laba-base-sr": "iru-text-laba-base-sr",
|
|
48
|
+
"laba-subtitle-rb": "iru-text-laba-subtitle-rb",
|
|
49
|
+
"laba-subtitle-rs": "iru-text-laba-subtitle-rs",
|
|
50
|
+
"laba-subtitle-rr": "iru-text-laba-subtitle-rr",
|
|
51
|
+
"laba-subtitle-sb": "iru-text-laba-subtitle-sb",
|
|
52
|
+
"laba-subtitle-ss": "iru-text-laba-subtitle-ss",
|
|
53
|
+
"laba-subtitle-sr": "iru-text-laba-subtitle-sr",
|
|
54
|
+
"bill-h1": "iru-text-bill-h1",
|
|
55
|
+
"bill-h2": "iru-text-bill-h2",
|
|
56
|
+
"bill-h3": "iru-text-bill-h3",
|
|
57
|
+
"bill-h4": "iru-text-bill-h4",
|
|
58
|
+
"bill-h5": "iru-text-bill-h5",
|
|
59
|
+
"bill-h6": "iru-text-bill-h6",
|
|
60
|
+
"bill-body-lr": "iru-text-bill-body-lr",
|
|
61
|
+
"bill-body-lm": "iru-text-bill-body-lm",
|
|
62
|
+
"bill-body-lsm": "iru-text-bill-body-lsm",
|
|
63
|
+
"bill-body-blb": "iru-text-bill-body-blb",
|
|
64
|
+
"bill-body-mr": "iru-text-bill-body-mr",
|
|
65
|
+
"bill-body-mm": "iru-text-bill-body-mm",
|
|
66
|
+
"bill-body-msm": "iru-text-bill-body-msm",
|
|
67
|
+
"bill-body-mb": "iru-text-bill-body-mb",
|
|
68
|
+
"bill-label-r": "iru-text-bill-label-r",
|
|
69
|
+
"bill-label-m": "iru-text-bill-label-m",
|
|
70
|
+
"bill-label-sm": "iru-text-bill-label-sm",
|
|
71
|
+
"bill-label-b": "iru-text-bill-label-b",
|
|
72
|
+
"bill-body-sr": "iru-text-bill-body-sr",
|
|
73
|
+
"bill-body-sm": "iru-text-bill-body-sm",
|
|
74
|
+
"bill-body-ssm": "iru-text-bill-body-ssm",
|
|
75
|
+
"bill-body-sb": "iru-text-bill-body-sb",
|
|
76
|
+
"bill-body-esr": "iru-text-bill-body-esr",
|
|
77
|
+
"bill-body-ems": "iru-text-bill-body-ems",
|
|
78
|
+
"bill-body-essm": "iru-text-bill-body-essm",
|
|
79
|
+
"bill-body-esb": "iru-text-bill-body-esb"
|
|
80
|
+
};
|
|
81
|
+
export {
|
|
82
|
+
b as configtypography
|
|
83
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});var e="https://unpkg.com/1mpacto-web-resources@1.0.0/tinymce_8.2.1";exports.tinymceResource=e;
|
|
@@ -0,0 +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;
|
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
transparent: "transparent",
|
|
3
|
+
black: "#212121",
|
|
4
|
+
white: "#FFFFFF",
|
|
5
|
+
"primary-50": "#E3F2FD",
|
|
6
|
+
"primary-100": "#BBDEFB",
|
|
7
|
+
"primary-200": "#90CAF9",
|
|
8
|
+
"primary-300": "#64B5F6",
|
|
9
|
+
"primary-400": "#42A5F5",
|
|
10
|
+
"primary-500": "#2196F3",
|
|
11
|
+
"primary-600": "#1E88E5",
|
|
12
|
+
"primary-700": "#1976D2",
|
|
13
|
+
"primary-800": "#1565C0",
|
|
14
|
+
"primary-900": "#0D47A1",
|
|
15
|
+
"blue-gray-50": "#ECEFF1",
|
|
16
|
+
"blue-gray-100": "#CFD8DC",
|
|
17
|
+
"blue-gray-200": "#B0BEC5",
|
|
18
|
+
"blue-gray-300": "#90A4AE",
|
|
19
|
+
"blue-gray-400": "#78909C",
|
|
20
|
+
"blue-gray-500": "#607D8B",
|
|
21
|
+
"blue-gray-600": "#546E7A",
|
|
22
|
+
"blue-gray-700": "#455A64",
|
|
23
|
+
"blue-gray-800": "#37474F",
|
|
24
|
+
"blue-gray-900": "#263238",
|
|
25
|
+
"gray-50": "#FAFAFA",
|
|
26
|
+
"gray-100": "#F5F5F5",
|
|
27
|
+
"gray-200": "#EEEEEE",
|
|
28
|
+
"gray-300": "#E0E0E0",
|
|
29
|
+
"gray-400": "#BDBDBD",
|
|
30
|
+
"gray-500": "#9E9E9E",
|
|
31
|
+
"gray-600": "#757575",
|
|
32
|
+
"gray-700": "#616161",
|
|
33
|
+
"gray-800": "#424242",
|
|
34
|
+
"gray-900": "#212121",
|
|
35
|
+
"brown-50": "#EFEBE9",
|
|
36
|
+
"brown-100": "#D7CCC8",
|
|
37
|
+
"brown-200": "#BCAAA4",
|
|
38
|
+
"brown-300": "#A1887F",
|
|
39
|
+
"brown-400": "#8D6E63",
|
|
40
|
+
"brown-500": "#795548",
|
|
41
|
+
"brown-600": "#6D4C41",
|
|
42
|
+
"brown-700": "#5D4037",
|
|
43
|
+
"brown-800": "#4E342E",
|
|
44
|
+
"brown-900": "#3E2723",
|
|
45
|
+
"deep-orange-50": "#FBE9E7",
|
|
46
|
+
"deep-orange-100": "#FFCCBC",
|
|
47
|
+
"deep-orange-200": "#FFAB91",
|
|
48
|
+
"deep-orange-300": "#FF8A65",
|
|
49
|
+
"deep-orange-400": "#FF7043",
|
|
50
|
+
"deep-orange-500": "#FF5722",
|
|
51
|
+
"deep-orange-600": "#F4511E",
|
|
52
|
+
"deep-orange-700": "#E64A19",
|
|
53
|
+
"deep-orange-800": "#D84315",
|
|
54
|
+
"deep-orange-900": "#BF360C",
|
|
55
|
+
"orange-50": "#FFF3E0",
|
|
56
|
+
"orange-100": "#FFE0B2",
|
|
57
|
+
"orange-200": "#FFCC80",
|
|
58
|
+
"orange-300": "#FFB74D",
|
|
59
|
+
"orange-400": "#FFA726",
|
|
60
|
+
"orange-500": "#FF9800",
|
|
61
|
+
"orange-600": "#FB8C00",
|
|
62
|
+
"orange-700": "#F57C00",
|
|
63
|
+
"orange-800": "#EF6C00",
|
|
64
|
+
"orange-900": "#E65100",
|
|
65
|
+
"amber-50": "#FFF8E1",
|
|
66
|
+
"amber-100": "#FFECB3",
|
|
67
|
+
"amber-200": "#FFE082",
|
|
68
|
+
"amber-300": "#FFD54F",
|
|
69
|
+
"amber-400": "#FFCA28",
|
|
70
|
+
"amber-500": "#FFC107",
|
|
71
|
+
"amber-600": "#FFB300",
|
|
72
|
+
"amber-700": "#FFA000",
|
|
73
|
+
"amber-800": "#FF8F00",
|
|
74
|
+
"amber-900": "#FF6F00",
|
|
75
|
+
"yellow-50": "#FFFDE7",
|
|
76
|
+
"yellow-100": "#FFF9C4",
|
|
77
|
+
"yellow-200": "#FFF59D",
|
|
78
|
+
"yellow-300": "#FFF176",
|
|
79
|
+
"yellow-400": "#FFEE58",
|
|
80
|
+
"yellow-500": "#FFEB3B",
|
|
81
|
+
"yellow-600": "#FDD835",
|
|
82
|
+
"yellow-700": "#FBC02D",
|
|
83
|
+
"yellow-800": "#F9A825",
|
|
84
|
+
"yellow-900": "#F57F17",
|
|
85
|
+
"lime-50": "#F9FBE7",
|
|
86
|
+
"lime-100": "#F0F4C3",
|
|
87
|
+
"lime-200": "#E6EE9C",
|
|
88
|
+
"lime-300": "#DCE775",
|
|
89
|
+
"lime-400": "#D4E157",
|
|
90
|
+
"lime-500": "#CDDC39",
|
|
91
|
+
"lime-600": "#C0CA33",
|
|
92
|
+
"lime-700": "#AFB42B",
|
|
93
|
+
"lime-800": "#9E9D24",
|
|
94
|
+
"lime-900": "#827717",
|
|
95
|
+
"light-green-50": "#F1F8E9",
|
|
96
|
+
"light-green-100": "#DCEDC8",
|
|
97
|
+
"light-green-200": "#C5E1A5",
|
|
98
|
+
"light-green-300": "#AED581",
|
|
99
|
+
"light-green-400": "#9CCC65",
|
|
100
|
+
"light-green-500": "#8BC34A",
|
|
101
|
+
"light-green-600": "#7CB342",
|
|
102
|
+
"light-green-700": "#689F38",
|
|
103
|
+
"light-green-800": "#558B2F",
|
|
104
|
+
"light-green-900": "#33691E",
|
|
105
|
+
"green-50": "#E8F5E9",
|
|
106
|
+
"green-100": "#C8E6C9",
|
|
107
|
+
"green-200": "#A5D6A7",
|
|
108
|
+
"green-300": "#81C784",
|
|
109
|
+
"green-400": "#66BB6A",
|
|
110
|
+
"green-500": "#4CAF50",
|
|
111
|
+
"green-600": "#43A047",
|
|
112
|
+
"green-700": "#388E3C",
|
|
113
|
+
"green-800": "#2E7D32",
|
|
114
|
+
"green-900": "#1B5E20",
|
|
115
|
+
"teal-50": "#E0F2F1",
|
|
116
|
+
"teal-100": "#B2DFDB",
|
|
117
|
+
"teal-200": "#80CBC4",
|
|
118
|
+
"teal-300": "#4DB6AC",
|
|
119
|
+
"teal-400": "#26A69A",
|
|
120
|
+
"teal-500": "#009688",
|
|
121
|
+
"teal-600": "#00897B",
|
|
122
|
+
"teal-700": "#00796B",
|
|
123
|
+
"teal-800": "#00695C",
|
|
124
|
+
"teal-900": "#004D40",
|
|
125
|
+
"cyan-50": "#E0F7FA",
|
|
126
|
+
"cyan-100": "#B2EBF2",
|
|
127
|
+
"cyan-200": "#80DEEA",
|
|
128
|
+
"cyan-300": "#4DD0E1",
|
|
129
|
+
"cyan-400": "#26C6DA",
|
|
130
|
+
"cyan-500": "#00BCD4",
|
|
131
|
+
"cyan-600": "#00ACC1",
|
|
132
|
+
"cyan-700": "#0097A7",
|
|
133
|
+
"cyan-800": "#00838F",
|
|
134
|
+
"cyan-900": "#006064",
|
|
135
|
+
"light-blue-50": "#E1F5FE",
|
|
136
|
+
"light-blue-100": "#B3E5FC",
|
|
137
|
+
"light-blue-200": "#81D4FA",
|
|
138
|
+
"light-blue-300": "#4FC3F7",
|
|
139
|
+
"light-blue-400": "#29B6F6",
|
|
140
|
+
"light-blue-500": "#03A9F4",
|
|
141
|
+
"light-blue-600": "#039BE5",
|
|
142
|
+
"light-blue-700": "#0288D1",
|
|
143
|
+
"light-blue-800": "#0277BD",
|
|
144
|
+
"light-blue-900": "#01579B",
|
|
145
|
+
"blue-50": "#E3F2FD",
|
|
146
|
+
"blue-100": "#BBDEFB",
|
|
147
|
+
"blue-200": "#90CAF9",
|
|
148
|
+
"blue-300": "#64B5F6",
|
|
149
|
+
"blue-400": "#42A5F5",
|
|
150
|
+
"blue-500": "#2196F3",
|
|
151
|
+
"blue-600": "#1E88E5",
|
|
152
|
+
"blue-700": "#1976D2",
|
|
153
|
+
"blue-800": "#1565C0",
|
|
154
|
+
"blue-900": "#0D47A1",
|
|
155
|
+
"indigo-50": "#E8EAF6",
|
|
156
|
+
"indigo-100": "#C5CAE9",
|
|
157
|
+
"indigo-200": "#9FA8DA",
|
|
158
|
+
"indigo-300": "#7986CB",
|
|
159
|
+
"indigo-400": "#5C6BC0",
|
|
160
|
+
"indigo-500": "#3F51B5",
|
|
161
|
+
"indigo-600": "#3949AB",
|
|
162
|
+
"indigo-700": "#303F9F",
|
|
163
|
+
"indigo-800": "#283593",
|
|
164
|
+
"indigo-900": "#1A237E",
|
|
165
|
+
"deep-purple-50": "#EDE7F6",
|
|
166
|
+
"deep-purple-100": "#D1C4E9",
|
|
167
|
+
"deep-purple-200": "#B39DDB",
|
|
168
|
+
"deep-purple-300": "#9575CD",
|
|
169
|
+
"deep-purple-400": "#7E57C2",
|
|
170
|
+
"deep-purple-500": "#673AB7",
|
|
171
|
+
"deep-purple-600": "#5E35B1",
|
|
172
|
+
"deep-purple-700": "#512DA8",
|
|
173
|
+
"deep-purple-800": "#4527A0",
|
|
174
|
+
"deep-purple-900": "#311B92",
|
|
175
|
+
"purple-50": "#F3E5F5",
|
|
176
|
+
"purple-100": "#E1BEE7",
|
|
177
|
+
"purple-200": "#CE93D8",
|
|
178
|
+
"purple-300": "#BA68C8",
|
|
179
|
+
"purple-400": "#AB47BC",
|
|
180
|
+
"purple-500": "#9C27B0",
|
|
181
|
+
"purple-600": "#8E24AA",
|
|
182
|
+
"purple-700": "#7B1FA2",
|
|
183
|
+
"purple-800": "#6A1B9A",
|
|
184
|
+
"purple-900": "#4A148C",
|
|
185
|
+
"pink-50": "#FCE4EC",
|
|
186
|
+
"pink-100": "#F8BBD0",
|
|
187
|
+
"pink-200": "#F48FB1",
|
|
188
|
+
"pink-300": "#F06292",
|
|
189
|
+
"pink-400": "#EC407A",
|
|
190
|
+
"pink-500": "#E91E63",
|
|
191
|
+
"pink-600": "#D81B60",
|
|
192
|
+
"pink-700": "#C2185B",
|
|
193
|
+
"pink-800": "#AD1457",
|
|
194
|
+
"pink-900": "#880E4F",
|
|
195
|
+
"red-50": "#FFEBEE",
|
|
196
|
+
"red-100": "#FFCDD2",
|
|
197
|
+
"red-200": "#EF9A9A",
|
|
198
|
+
"red-300": "#E57373",
|
|
199
|
+
"red-400": "#EF5350",
|
|
200
|
+
"red-500": "#F44336",
|
|
201
|
+
"red-600": "#E53935",
|
|
202
|
+
"red-700": "#D32F2F",
|
|
203
|
+
"red-800": "#C62828",
|
|
204
|
+
"red-900": "#B71C1C",
|
|
205
|
+
"payhere-brand-base": "#102A4D",
|
|
206
|
+
"payhere-brand-10": "#CFD4DB",
|
|
207
|
+
"payhere-brand-20": "#AFB8C4",
|
|
208
|
+
"payhere-brand-30": "#8794A6",
|
|
209
|
+
"payhere-brand-40": "#607188",
|
|
210
|
+
"payhere-brand-50": "#384E6B",
|
|
211
|
+
"payhere-brand-60": "#0D2340",
|
|
212
|
+
// 'payhere-brand-70': '#0B1C33',
|
|
213
|
+
// 'payhere-brand-80': '#081527',
|
|
214
|
+
// 'payhere-brand-90': '#050E1A',
|
|
215
|
+
// 'payhere-brand-100': '#03080F',
|
|
216
|
+
"laba-black": "#212529",
|
|
217
|
+
"laba-white": "#FFFFFF",
|
|
218
|
+
"laba-blue-10": "#0163C8",
|
|
219
|
+
"laba-blue-08": "#006DFF",
|
|
220
|
+
"laba-blue-06": "#2899FF",
|
|
221
|
+
"laba-blue-05": "#73A4D6",
|
|
222
|
+
"laba-blue-02": "#DBECFF",
|
|
223
|
+
"laba-blue-01": "#F0F7FF",
|
|
224
|
+
"laba-green-10": "#038C67",
|
|
225
|
+
"laba-green-08": "#04BA27",
|
|
226
|
+
"laba-green-06": "#78D798",
|
|
227
|
+
"laba-green-05": "#ABF3CC",
|
|
228
|
+
"laba-green-02": "#CAEEE5",
|
|
229
|
+
"laba-green-01": "#DFF6F6",
|
|
230
|
+
"laba-grey-10": "#898989",
|
|
231
|
+
"laba-grey-08": "#AEAEAE",
|
|
232
|
+
"laba-grey-06": "#D6D6D6",
|
|
233
|
+
"laba-grey-05": "#EEEEEE",
|
|
234
|
+
"laba-grey-02": "#F2F2F2",
|
|
235
|
+
"laba-grey-01": "#FDFDFD",
|
|
236
|
+
"laba-orange-10": "#C05000",
|
|
237
|
+
"laba-orange-08": "#FF7200",
|
|
238
|
+
"laba-orange-06": "#FF9300",
|
|
239
|
+
"laba-orange-05": "#FFBD78",
|
|
240
|
+
"laba-orange-02": "#FFDDBB",
|
|
241
|
+
"laba-orange-01": "#FFF5EB",
|
|
242
|
+
"laba-red-10": "#9E101F",
|
|
243
|
+
"laba-red-08": "#ED0019",
|
|
244
|
+
"laba-red-06": "#FB004E",
|
|
245
|
+
"laba-red-05": "#FF5378",
|
|
246
|
+
"laba-red-02": "#FFAEBF",
|
|
247
|
+
"laba-red-01": "#FFEBEF",
|
|
248
|
+
"lpd-primary-50": "#CEDBFE",
|
|
249
|
+
"lpd-primary-100": "#B6CAFE",
|
|
250
|
+
"lpd-primary-200": "#9DB8FE",
|
|
251
|
+
"lpd-primary-300": "#6C94FD",
|
|
252
|
+
"lpd-primary-400": "#3B71FD",
|
|
253
|
+
"lpd-primary-500": "#0A4DFC",
|
|
254
|
+
"lpd-primary-600": "#083ECA",
|
|
255
|
+
"lpd-primary-700": "#062E97",
|
|
256
|
+
"lpd-primary-800": "#041F65",
|
|
257
|
+
"lpd-primary-900": "#03174C",
|
|
258
|
+
"lpd-secondary-50": "#FEF5CE",
|
|
259
|
+
"lpd-secondary-100": "#FEEFB5",
|
|
260
|
+
"lpd-secondary-200": "#FDEA9D",
|
|
261
|
+
"lpd-secondary-300": "#FDE06B",
|
|
262
|
+
"lpd-secondary-400": "#FCD53A",
|
|
263
|
+
"lpd-secondary-500": "#FBCB09",
|
|
264
|
+
"lpd-secondary-600": "#C9A207",
|
|
265
|
+
"lpd-secondary-700": "#977A05",
|
|
266
|
+
"lpd-secondary-800": "#645104",
|
|
267
|
+
"lpd-secondary-900": "#4B3D03",
|
|
268
|
+
"bill-primary-50": "#EAF0FE",
|
|
269
|
+
"bill-primary-100": "#D5E1FD",
|
|
270
|
+
"bill-primary-200": "#ABC3FB",
|
|
271
|
+
"bill-primary-300": "#81A4F9",
|
|
272
|
+
"bill-primary-400": "#5786F7",
|
|
273
|
+
"bill-primary-500": "#2D68F5",
|
|
274
|
+
"bill-primary-600": "#2453C4",
|
|
275
|
+
"bill-primary-700": "#1B3E93",
|
|
276
|
+
"bill-primary-800": "#122A62",
|
|
277
|
+
"bill-primary-900": "#091531",
|
|
278
|
+
"bill-secondary-50": "#F0FEFD",
|
|
279
|
+
"bill-secondary-100": "#E2FCFA",
|
|
280
|
+
"bill-secondary-200": "#C5F9F5",
|
|
281
|
+
"bill-secondary-300": "#A8F7F1",
|
|
282
|
+
"bill-secondary-400": "#8BF4EC",
|
|
283
|
+
"bill-secondary-500": "#6EF1E7",
|
|
284
|
+
"bill-secondary-600": "#59CBC2",
|
|
285
|
+
"bill-secondary-700": "#44A59D",
|
|
286
|
+
"bill-secondary-800": "#2F7E79",
|
|
287
|
+
"bill-secondary-900": "#1A5854"
|
|
288
|
+
};
|
|
289
|
+
export {
|
|
290
|
+
e as default
|
|
291
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e={"sm-default":640,sm:576,md:768,lg:1024,xl:1280,"2xl":1536};exports.default=e;
|