@inceptionbg/iui 2.0.11 → 2.0.13
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/icons/index.d.ts +5 -1
- package/dist/icons/index.js +1 -1
- package/dist/index.d.ts +174 -79
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/iui.css +1 -1
- package/package.json +1 -1
- package/rollup.config.js +1 -5
- package/src/assets/icons/duotone/faCircleUser.ts +6 -6
- package/src/assets/icons/index.ts +2 -0
- package/src/assets/icons/light/faArrowDownShortWide.ts +1 -1
- package/src/assets/icons/light/faArrowDownWideShort.ts +1 -1
- package/src/assets/icons/light/faArrowUpArrowDown.ts +5 -5
- package/src/assets/icons/light/faArrowUpRightFromSquare.ts +1 -1
- package/src/assets/icons/light/faArrowsToLine.ts +1 -1
- package/src/assets/icons/light/faArrowsUpDown.ts +1 -1
- package/src/assets/icons/light/faBookmark.ts +15 -0
- package/src/assets/icons/light/faBookmarkSlash.ts +15 -0
- package/src/assets/icons/light/faCalendarPlus.ts +5 -5
- package/src/assets/icons/light/faCheck.ts +1 -1
- package/src/assets/icons/light/faChevronDown.ts +5 -5
- package/src/assets/icons/light/faChevronRight.ts +5 -5
- package/src/assets/icons/light/faCircleInfo.ts +5 -5
- package/src/assets/icons/light/faCircleXmark.ts +5 -5
- package/src/assets/icons/light/faClipboardCheck.ts +5 -5
- package/src/assets/icons/light/faClockRotateLeft.ts +1 -1
- package/src/assets/icons/light/faEllipsisVertical.ts +1 -1
- package/src/assets/icons/light/faEye.ts +5 -5
- package/src/assets/icons/light/faEyeSlash.ts +5 -5
- package/src/assets/icons/light/faFilter.ts +5 -5
- package/src/assets/icons/light/faGear.ts +1 -1
- package/src/assets/icons/light/faHouse.ts +5 -5
- package/src/assets/icons/light/faIdBadge.ts +5 -5
- package/src/assets/icons/light/faLineColumns.ts +5 -5
- package/src/assets/icons/light/faLink.ts +1 -1
- package/src/assets/icons/light/faMagnifyingGlass.ts +5 -5
- package/src/assets/icons/light/faPen.ts +5 -5
- package/src/assets/icons/light/faPrint.ts +5 -5
- package/src/assets/icons/light/faQuestion.ts +5 -5
- package/src/assets/icons/light/faRotateRight.ts +5 -5
- package/src/assets/icons/light/faTrashCan.ts +5 -5
- package/src/assets/icons/light/faTriangleExclamation.ts +5 -5
- package/src/assets/icons/light/faXmark.ts +1 -1
- package/src/assets/icons/regular/faArrowLeft.ts +6 -6
- package/src/assets/icons/regular/faArrowRightArrowLeft.ts +1 -1
- package/src/assets/icons/regular/faCircleCheck.ts +1 -1
- package/src/assets/icons/regular/faCircleExclamation.ts +1 -1
- package/src/assets/icons/regular/faCircleInfo.ts +1 -1
- package/src/assets/icons/regular/faFileArrowDown.ts +1 -1
- package/src/assets/icons/regular/faFilterCircleXmark.ts +1 -1
- package/src/assets/icons/regular/faTriangleExclamation.ts +1 -1
- package/src/assets/icons/solid/faAngleLeft.ts +1 -1
- package/src/assets/icons/solid/faAngleRight.ts +1 -1
- package/src/assets/icons/solid/faArrowDownWideShort.ts +1 -1
- package/src/assets/icons/solid/faCaretDown.ts +1 -1
- package/src/assets/icons/solid/faCheck.ts +5 -5
- package/src/assets/icons/solid/faEllipsisVertical.ts +1 -1
- package/src/assets/icons/solid/faFilter.ts +1 -1
- package/src/assets/icons/solid/faFloppyDisk.ts +1 -1
- package/src/assets/icons/solid/faGripDotsVertical.ts +1 -1
- package/src/assets/icons/solid/faListUl.ts +1 -1
- package/src/assets/icons/solid/faMinus.ts +6 -6
- package/src/assets/icons/solid/faPlus.ts +6 -6
- package/src/assets/icons/solid/faPrint.ts +1 -1
- package/src/assets/icons/solid/faRotateRight.ts +1 -1
- package/src/assets/icons/solid/faXmark.ts +1 -1
- package/src/components/Button/Button.tsx +2 -2
- package/src/components/Button/IconButton.tsx +1 -1
- package/src/components/Button/SplitButton.tsx +91 -0
- package/src/components/Dashboard/FastLinksWidget/FastLinksWidget.tsx +1 -1
- package/src/components/Dialog/components/DialogFooter.tsx +6 -2
- package/src/components/Header/Components/ModuleSelect.tsx +14 -6
- package/src/components/Inputs/InputWrapper.tsx +1 -1
- package/src/components/Inputs/TextInput.tsx +1 -1
- package/src/components/List/List.tsx +18 -0
- package/src/components/List/ListItem.tsx +24 -0
- package/src/components/Loader/ProgressBar.tsx +41 -0
- package/src/components/Menu/Menu.tsx +0 -3
- package/src/components/Menu/MenuItem.tsx +21 -23
- package/src/components/Menu/NewMenu.tsx +0 -3
- package/src/components/Pullover/Pullover.tsx +15 -6
- package/src/components/Sidebar/types/ISidebar.ts +1 -1
- package/src/components/Table/Table.tsx +18 -11
- package/src/components/Table/components/filters/TableFilters.tsx +3 -6
- package/src/components/Table/components/footer/TableFooter.tsx +6 -10
- package/src/components/Table/components/header/TableHeader.tsx +22 -24
- package/src/components/Table/components/header/TableHeaderRow.tsx +16 -7
- package/{idea/Table/Components/Print → src/components/Table/components/print}/TablePrint.tsx +89 -96
- package/src/components/Table/components/sort/TableSort.tsx +21 -1
- package/src/components/Table/components/templates/TableTemplates.tsx +98 -0
- package/src/components/Table/components/templates/components/CreateTemplateDialog.tsx +41 -0
- package/src/components/Table/hooks/useTablePrint.ts +75 -0
- package/src/index.ts +10 -0
- package/src/styles/App.scss +3 -0
- package/src/styles/common/_animations.scss +8 -14
- package/src/styles/common/helpers/_base.scss +0 -4
- package/src/styles/common/maps/_buttonMaps.scss +42 -0
- package/src/styles/components/_button.scss +11 -50
- package/src/styles/components/_buttonSplit.scss +90 -0
- package/src/styles/components/_header.scss +21 -9
- package/src/styles/components/_list.scss +41 -0
- package/src/styles/components/_loader.scss +3 -1
- package/src/styles/components/_menu.scss +19 -18
- package/src/styles/components/_print.scss +36 -46
- package/src/styles/components/_progressBar.scss +83 -0
- package/src/styles/components/_table.scss +17 -23
- package/src/styles/variables/_variables.scss +1 -0
- package/src/types/ITable.ts +42 -32
- package/src/utils/i18n/i18nIUICyrilic.ts +3 -2
- package/src/utils/i18n/i18nIUILatin.ts +18 -12
- package/src/utils/i18n/i18nIUIMe.ts +3 -2
- package/src/utils/icons.ts +1 -1
- package/tsconfig.json +2 -0
package/dist/icons/index.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
|
2
2
|
|
|
3
3
|
declare const faArrowsUpDown: IconDefinition;
|
|
4
4
|
|
|
5
|
+
declare const faBookmark: IconDefinition;
|
|
6
|
+
|
|
7
|
+
declare const faBookmarkSlash: IconDefinition;
|
|
8
|
+
|
|
5
9
|
declare const faCheck: IconDefinition;
|
|
6
10
|
|
|
7
11
|
declare const faChevronDown: IconDefinition;
|
|
@@ -40,4 +44,4 @@ declare const faTriangleExclamation: IconDefinition;
|
|
|
40
44
|
|
|
41
45
|
declare const faXmark: IconDefinition;
|
|
42
46
|
|
|
43
|
-
export { faArrowsUpDown, faCheck, faChevronDown, faChevronRight, faCircleInfo, faCircleXmark, faClockRotateLeft, faEllipsisVertical, faGear, faHouse, faIdBadge, faLink, faMagnifyingGlass, faPen, faPrint, faQuestion, faRotateRight, faTrashCan, faTriangleExclamation, faXmark };
|
|
47
|
+
export { faArrowsUpDown, faBookmark, faBookmarkSlash, faCheck, faChevronDown, faChevronRight, faCircleInfo, faCircleXmark, faClockRotateLeft, faEllipsisVertical, faGear, faHouse, faIdBadge, faLink, faMagnifyingGlass, faPen, faPrint, faQuestion, faRotateRight, faTrashCan, faTriangleExclamation, faXmark };
|
package/dist/icons/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const c={prefix:"fal",iconName:"arrows-up-down",icon:[256,512,[],"f07d","M139.3 4.688l112 112C254.4 119.8 256 123.9 256 128s-1.562 8.188-4.688 11.31c-6.25 6.25-16.38 6.25-22.62 0L144 54.63v402.8l84.69-84.69c6.25-6.25 16.38-6.25 22.62 0C254.4 375.8 256 379.9 256 384s-1.562 8.188-4.688 11.31l-112 112c-6.25 6.25-16.38 6.25-22.62 0l-112-112c-6.25-6.25-6.25-16.38 0-22.62s16.38-6.25 22.62 0L112 457.4V54.63L27.31 139.3c-6.25 6.25-16.38 6.25-22.62 0s-6.25-16.38 0-22.62l112-112C122.9-1.562 133.1-1.562 139.3 4.688z"]},C={prefix:"fal",iconName:"check",icon:[512,512,[],"f00c","M475.3 123.3l-272 272C200.2 398.4 196.1 400 192 400s-8.188-1.562-11.31-4.688l-144-144c-6.25-6.25-6.25-16.38 0-22.62s16.38-6.25 22.62 0L192 361.4l260.7-260.7c6.25-6.25 16.38-6.25 22.62 0S481.6 117.1 475.3 123.3z"]},l={prefix:"fal",iconName:"chevron-down",icon:[448,512,[],"f078","M4.251 181.1C7.392 177.7 11.69 175.1 16 175.1c3.891 0 7.781 1.406 10.86 4.25l197.1 181.1l197.1-181.1c6.5-6 16.64-5.625 22.61 .9062c6 6.5 5.594 16.59-.8906 22.59l-208 192c-6.156 5.688-15.56 5.688-21.72 0l-208-192C-1.343 197.7-1.749 187.6 4.251 181.1z"]},i={prefix:"fal",iconName:"chevron-right",icon:[320,512,[],"f054","M85.14 475.8c-3.438-3.141-5.156-7.438-5.156-11.75c0-3.891 1.406-7.781 4.25-10.86l181.1-197.1L84.23 58.86c-6-6.5-5.625-16.64 .9062-22.61c6.5-6 16.59-5.594 22.59 .8906l192 208c5.688 6.156 5.688 15.56 0 21.72l-192 208C101.7 481.3 91.64 481.8 85.14 475.8z"]},f={prefix:"fal",iconName:"circle-info",icon:[512,512,[],"f05a","M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480zM256 184c13.25 0 24-10.74 24-24c0-13.25-10.75-24-24-24S232 146.7 232 160C232 173.3 242.7 184 256 184zM304 352h-32V240C272 231.2 264.8 224 256 224H224C215.2 224 208 231.2 208 240S215.2 256 224 256h16v96h-32C199.2 352 192 359.2 192 368C192 376.8 199.2 384 208 384h96c8.836 0 16-7.164 16-16C320 359.2 312.8 352 304 352z"]},e={prefix:"fal",iconName:"circle-xmark",icon:[512,512,[],"f057","M331.3 180.7c-6.25-6.25-16.38-6.25-22.62 0L256 233.4L203.3 180.7c-6.25-6.25-16.38-6.25-22.62 0s-6.25 16.38 0 22.62L233.4 256L180.7 308.7c-6.25 6.25-6.25 16.38 0 22.62c6.246 6.246 16.37 6.254 22.62 0L256 278.6l52.69 52.69c6.246 6.246 16.37 6.254 22.62 0c6.25-6.25 6.25-16.38 0-22.62L278.6 256l52.69-52.69C337.6 197.1 337.6 186.9 331.3 180.7zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256S512 397.4 512 256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480z"]},a={prefix:"fal",iconName:"clock-rotate-left",icon:[512,512,[],"f1da","M256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C172.2 512 97.87 471.8 51.19 409.6C45.88 402.5 47.31 392.5 54.37 387.2C61.44 381.9 71.47 383.3 76.78 390.4C117.7 444.8 182.7 480 256 480C379.7 480 480 379.7 480 256C480 132.3 379.7 32 256 32C166.7 32 89.51 84.3 53.55 160H144C152.8 160 160 167.2 160 176C160 184.8 152.8 192 144 192H16C7.164 192 0 184.8 0 176V48C0 39.16 7.164 32 16 32C24.84 32 32 39.16 32 48V131.1C75.66 53.29 159.6 0 256 0zM256 128C264.8 128 272 135.2 272 144V249.4L347.3 324.7C353.6 330.9 353.6 341.1 347.3 347.3C341.1 353.6 330.9 353.6 324.7 347.3L244.7 267.3C241.7 264.3 239.1 260.2 239.1 256V144C239.1 135.2 247.2 128 255.1 128H256z"]},z={prefix:"fal",iconName:"ellipsis-vertical",icon:[128,512,[],"f142","M64 384C81.67 384 96 398.3 96 416C96 433.7 81.67 448 64 448C46.33 448 32 433.7 32 416C32 398.3 46.33 384 64 384zM64 224C81.67 224 96 238.3 96 256C96 273.7 81.67 288 64 288C46.33 288 32 273.7 32 256C32 238.3 46.33 224 64 224zM64 128C46.33 128 32 113.7 32 96C32 78.33 46.33 64 64 64C81.67 64 96 78.33 96 96C96 113.7 81.67 128 64 128z"]},M={prefix:"fal",iconName:"gear",icon:[512,512,[],"f013","M255.1 512c-56.05 0-75.99-11.33-75.99-35.94V436.5c-15.17-6.375-29.35-14.53-42.36-24.41l-34.3 19.78c-4.621 2.703-9.976 4.013-15.36 4.013c-36.71 0-76.25-92.87-76.25-108.6c0-10.85 5.806-21.34 15.71-27.07l34.17-19.72C60.52 272.1 59.99 264 59.99 255.1s.5313-16.13 1.625-24.47L27.42 211.8C17.53 206.1 11.73 195.6 11.73 184.7c0-12.58 37.98-108.7 76.2-108.7c5.417 0 10.82 1.338 15.52 4.111L137.6 99.88C150.6 90.01 164.8 81.85 179.1 75.47V35.91C179.1 4.335 215.7 0 256 0c39.71 0 75.1 4.083 75.1 35.91v39.56c15.17 6.375 29.35 14.53 42.36 24.41l34.3-19.78c4.621-2.703 9.981-4.013 15.37-4.013c36.47 0 76.24 92.55 76.24 108.6c0 10.85-5.806 21.34-15.71 27.07l-34.17 19.72c1.094 8.344 1.625 16.44 1.625 24.47s-.5313 16.13-1.625 24.47l34.19 19.75c9.895 5.703 15.7 16.19 15.7 27.05c0 12.59-37.98 108.7-76.21 108.7c-5.42 0-10.83-1.338-15.51-4.111l-34.19-19.72c-13.02 9.876-27.19 18.03-42.36 24.41v39.56C332 500.6 312.1 512 255.1 512zM140.9 373.2c35.92 30.82 52.34 34.36 71.05 41v61.85c14.11 2.344 28.82 3.727 43.76 3.727c14.95 0 30.13-1.383 45.19-4.571l-.9532-61c16.07-5.702 35.18-10.22 71.05-41l53.61 30.97c18.78-22.06 33.77-47.97 43.39-76.57l-52.94-30.56c2.745-14.99 4.859-25.43 4.859-39.07c0-10.95-1.364-23.97-4.859-43.06l53.46-30.85c-9.829-27.75-24.92-53.97-45.1-76.72l-52.43 31.41c-35.92-30.82-52.34-34.36-71.05-41V35.91c-14.11-2.344-28.82-3.727-43.76-3.727c-14.95 0-30.13 1.383-45.19 4.571l.9532 61C195.9 103.5 176.8 107.1 140.9 138.8L87.33 107.8c-18.99 22.31-34.08 48.53-43.69 77.47l53.24 29.66C94.14 229.9 92.02 240.4 92.02 253.1c0 10.95 1.364 23.97 4.859 43.06l-53.46 30.85c9.829 27.75 24.92 53.97 45.1 76.72L140.9 373.2zM256 351.1c-52.94 0-96-43.06-96-96S203.1 159.1 256 159.1s96 43.06 96 96S308.9 351.1 256 351.1zM256 191.1c-35.3 0-64 28.72-64 64S220.7 319.1 256 319.1s64-28.72 64-64S291.3 191.1 256 191.1z"]},n={prefix:"fal",iconName:"house",icon:[576,512,[],"f015","M570.6 244C577.2 249.8 577.8 259.1 571.1 266.6C566.2 273.2 556 273.8 549.4 267.1L512 234.1V432C512 476.2 476.2 512 432 512H144C99.82 512 64 476.2 64 432V234.1L26.59 267.1C19.96 273.8 9.849 273.2 4.003 266.6C-1.844 259.1-1.212 249.8 5.414 244L277.4 4.002C283.5-1.334 292.5-1.334 298.6 4.002L570.6 244zM144 480H208V320C208 302.3 222.3 288 240 288H336C353.7 288 368 302.3 368 320V480H432C458.5 480 480 458.5 480 432V206.7L288 37.34L96 206.7V432C96 458.5 117.5 480 144 480zM240 480H336V320H240V480z"]},o={prefix:"fal",iconName:"id-badge",icon:[384,512,[],"f2c1","M320 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h256c35.35 0 64-28.65 64-64V64C384 28.65 355.3 0 320 0zM352 448c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V64c0-17.64 14.36-32 32-32h256c17.64 0 32 14.36 32 32V448zM192 288c35.35 0 64-28.65 64-64s-28.65-64-64-64S128 188.7 128 224S156.7 288 192 288zM192 192c17.64 0 32 14.36 32 32s-14.36 32-32 32S160 241.6 160 224S174.4 192 192 192zM224 320H160c-44.18 0-80 35.82-80 80C80 408.8 87.16 416 96 416c8.838 0 16-7.164 16-16C112 373.5 133.5 352 160 352h64c26.51 0 48 21.49 48 48c0 8.836 7.164 16 16 16c8.838 0 16-7.164 16-16C304 355.8 268.2 320 224 320zM144 96h96C248.8 96 256 88.84 256 80S248.8 64 240 64h-96C135.2 64 128 71.16 128 80S135.2 96 144 96z"]},s={prefix:"fal",iconName:"link",icon:[512,512,[],"f0c1","M591.5 256c50-50 50-131 0-181s-131-50-181 0L387.9 97.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l22.6-22.6c37.5-37.5 98.3-37.5 135.8 0s37.5 98.3 0 135.8L444.3 357.9c-37.4 37.4-98.1 37.4-135.6 0c-35.6-35.6-37.6-92.6-4.7-130.6l5.3-6.1c5.8-6.7 5.1-16.8-1.6-22.6s-16.8-5.1-22.6 1.6l-5.3 6.1c-43.9 50.7-41.2 126.7 6.2 174.1c49.9 49.9 130.9 49.9 180.8 0L591.5 256zM48.5 256c-50 50-50 131 0 181s131 50 181 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-22.6 22.6c-37.5 37.5-98.3 37.5-135.8 0s-37.5-98.3 0-135.8L195.7 154.1c37.4-37.4 98.1-37.4 135.6 0c35.6 35.6 37.6 92.6 4.7 130.6l-5.3 6.1c-5.8 6.7-5.1 16.8 1.6 22.6s16.8 5.1 22.6-1.6l5.3-6.1c43.9-50.7 41.2-126.7-6.2-174.1C303.9 81.5 223 81.5 173 131.4L48.5 256z"]},L={prefix:"fal",iconName:"magnifying-glass",icon:[512,512,[],"f002","M507.3 484.7l-141.5-141.5C397 306.8 415.1 259.7 415.1 208c0-114.9-93.13-208-208-208S-.0002 93.13-.0002 208S93.12 416 207.1 416c51.68 0 98.85-18.96 135.2-50.15l141.5 141.5C487.8 510.4 491.9 512 496 512s8.188-1.562 11.31-4.688C513.6 501.1 513.6 490.9 507.3 484.7zM208 384C110.1 384 32 305 32 208S110.1 32 208 32S384 110.1 384 208S305 384 208 384z"]},r={prefix:"fal",iconName:"pen",icon:[512,512,[],"f304","M493.2 56.26l-37.51-37.51C443.2 6.252 426.8 0 410.5 0c-16.38 0-32.76 6.25-45.26 18.75L45.11 338.9c-8.568 8.566-14.53 19.39-17.18 31.21l-27.61 122.8C-1.7 502.1 6.158 512 15.95 512c1.047 0 2.116-.1034 3.198-.3202c0 0 84.61-17.95 122.8-26.93c11.54-2.717 21.87-8.523 30.25-16.9l321.2-321.2C518.3 121.7 518.2 81.26 493.2 56.26zM149.5 445.2c-4.219 4.219-9.252 7.039-14.96 8.383c-24.68 5.811-69.64 15.55-97.46 21.52l22.04-98.01c1.332-5.918 4.303-11.31 8.594-15.6l247.6-247.6l82.76 82.76L149.5 445.2zM470.7 124l-50.03 50.02l-82.76-82.76l49.93-49.93C393.9 35.33 401.9 32 410.5 32s16.58 3.33 22.63 9.375l37.51 37.51C483.1 91.37 483.1 111.6 470.7 124z"]},S={prefix:"fal",iconName:"print",icon:[512,512,[],"f02f","M416 320H96c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-128C448 334.3 433.7 320 416 320zM416 480H96v-128h320V480zM448 192V70.63C448 62.14 444.6 54 438.6 48l-38.63-38.63C393.1 3.37 385.9 0 377.4 0H128C92.65 0 64 28.65 64 64v128C28.7 192 0 220.7 0 256v112C0 376.8 7.156 384 16 384S32 376.8 32 368V256c0-17.67 14.33-32 32-32h384c17.67 0 32 14.33 32 32v112c0 8.844 7.156 16 16 16s16-7.156 16-16V256C512 220.7 483.3 192 448 192zM416 192H96V64c0-17.67 14.33-32 32-32h249.4L416 70.63V192zM432 248c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24s24-10.75 24-24C456 258.7 445.3 248 432 248z"]},V={prefix:"fal",iconName:"question",icon:[320,512,[],"3f","M213.1 32H106.7C47.84 32 0 79.84 0 138.7V160c0 8.844 7.156 16 16 16S32 168.9 32 160V138.7C32 97.48 65.5 64 106.7 64h106.5C254.4 64 288 97.58 288 138.9c0 27-14.62 52-38.16 65.25L152.5 258.9C137.4 267.4 128 283.4 128 300.7V336c0 8.844 7.156 16.01 16 16.01S160 344.8 160 336V300.7c0-5.766 3.125-11.11 8.156-13.95l97.38-54.78C299.1 213.1 320 177.4 320 138.9C320 79.94 272.1 32 213.1 32zM144 400c-17.67 0-32 14.32-32 31.99s14.33 32 32 32s32-14.33 32-32S161.7 400 144 400z"]},h={prefix:"fal",iconName:"rotate-right",icon:[512,512,[],"f2f9","M32.05 256.1c0 123.5 100.4 223.9 223.9 223.9c104.4 0 180-76.8 180-95.94c0-9.377-7.705-16.03-15.98-16.03C399.5 367.1 369.3 448 256 448c-105.9 0-192-86.13-192-192s86.13-192 192-192c75.11 0 123.1 44.4 124.2 45.15l-55.54 55.54c-3.055 3.055-4.681 7.16-4.681 11.33C320 184.9 327.2 192 336 192h128C472.8 192 480 184.8 480 176v-128c0-8.606-6.901-15.97-15.97-15.97c-4.171 0-8.291 1.598-11.35 4.653L402.1 87.32c-8.646-13.15-70.2-55.25-146.1-55.25C132.4 32.07 32.05 132.6 32.05 256.1zM374.6 160L448 86.63V160H374.6z"]},p={prefix:"fal",iconName:"trash-can",icon:[448,512,[],"f2ed","M432 64h-96l-33.63-44.75C293.4 7.125 279.1 0 264 0h-80C168.9 0 154.6 7.125 145.6 19.25L112 64h-96C7.201 64 0 71.2 0 80c0 8.799 7.201 16 16 16h416c8.801 0 16-7.201 16-16C448 71.2 440.8 64 432 64zM152 64l19.25-25.62C174.3 34.38 179 32 184 32h80c5 0 9.75 2.375 12.75 6.375L296 64H152zM400 128C391.2 128 384 135.2 384 144v288c0 26.47-21.53 48-48 48h-224C85.53 480 64 458.5 64 432v-288C64 135.2 56.84 128 48 128S32 135.2 32 144v288C32 476.1 67.89 512 112 512h224c44.11 0 80-35.89 80-80v-288C416 135.2 408.8 128 400 128zM144 416V192c0-8.844-7.156-16-16-16S112 183.2 112 192v224c0 8.844 7.156 16 16 16S144 424.8 144 416zM240 416V192c0-8.844-7.156-16-16-16S208 183.2 208 192v224c0 8.844 7.156 16 16 16S240 424.8 240 416zM336 416V192c0-8.844-7.156-16-16-16S304 183.2 304 192v224c0 8.844 7.156 16 16 16S336 424.8 336 416z"]},m={prefix:"fal",iconName:"triangle-exclamation",icon:[512,512,[],"f071","M256 360c-13.25 0-23.1 10.74-23.1 24c0 13.25 10.75 24 23.1 24c13.25 0 23.1-10.75 23.1-24C280 370.7 269.3 360 256 360zM256 320c8.843 0 15.1-7.156 15.1-16V160c0-8.844-7.155-16-15.1-16S240 151.2 240 160v144C240 312.8 247.2 320 256 320zM504.3 397.3L304.5 59.38C294.4 42.27 276.2 32.03 256 32C235.8 32 217.7 42.22 207.5 59.36l-199.9 338c-10.05 16.97-10.2 37.34-.4218 54.5C17.29 469.5 35.55 480 56.1 480h399.9c20.51 0 38.75-10.53 48.81-28.17C514.6 434.7 514.4 414.3 504.3 397.3zM476.1 435.1C472.7 443.5 464.8 448 455.1 448H56.1c-8.906 0-16.78-4.484-21.08-12c-4.078-7.156-4.015-15.3 .1562-22.36L235.1 75.66C239.4 68.36 247.2 64 256 64c0 0-.0156 0 0 0c8.765 .0156 16.56 4.359 20.86 11.64l199.9 338C480.1 420.7 481.1 428.8 476.1 435.1z"]},v={prefix:"fal",iconName:"xmark",icon:[320,512,[],"f00d","M315.3 411.3c-6.253 6.253-16.37 6.253-22.63 0L160 278.6l-132.7 132.7c-6.253 6.253-16.37 6.253-22.63 0c-6.253-6.253-6.253-16.37 0-22.63L137.4 256L4.69 123.3c-6.253-6.253-6.253-16.37 0-22.63c6.253-6.253 16.37-6.253 22.63 0L160 233.4l132.7-132.7c6.253-6.253 16.37-6.253 22.63 0c6.253 6.253 6.253 16.37 0 22.63L182.6 256l132.7 132.7C321.6 394.9 321.6 405.1 315.3 411.3z"]};export{c as faArrowsUpDown,C as faCheck,l as faChevronDown,i as faChevronRight,f as faCircleInfo,e as faCircleXmark,a as faClockRotateLeft,z as faEllipsisVertical,M as faGear,n as faHouse,o as faIdBadge,s as faLink,L as faMagnifyingGlass,r as faPen,S as faPrint,V as faQuestion,h as faRotateRight,p as faTrashCan,m as faTriangleExclamation,v as faXmark};
|
|
1
|
+
const c={prefix:"fal",iconName:"arrows-up-down",icon:[256,512,[],"f07d","M139.3 4.688l112 112C254.4 119.8 256 123.9 256 128s-1.562 8.188-4.688 11.31c-6.25 6.25-16.38 6.25-22.62 0L144 54.63v402.8l84.69-84.69c6.25-6.25 16.38-6.25 22.62 0C254.4 375.8 256 379.9 256 384s-1.562 8.188-4.688 11.31l-112 112c-6.25 6.25-16.38 6.25-22.62 0l-112-112c-6.25-6.25-6.25-16.38 0-22.62s16.38-6.25 22.62 0L112 457.4V54.63L27.31 139.3c-6.25 6.25-16.38 6.25-22.62 0s-6.25-16.38 0-22.62l112-112C122.9-1.562 133.1-1.562 139.3 4.688z"]},C={prefix:"fal",iconName:"bookmark",icon:[384,512,[],"f02e","M320 0H64C28.72 0 0 28.7 0 64v431.1c0 5.844 3.188 11.23 8.312 14.04c5.125 2.781 11.34 2.562 16.28-.5313L192 402.1l167.4 106.5C362 511.2 365 512 368 512c2.656 0 5.281-.6562 7.688-1.969C380.8 507.2 384 501.8 384 495.1V64C384 28.7 355.3 0 320 0zM352 466.9l-151.4-96.36C197.1 368.8 195 368 192 368s-5.969 .8281-8.594 2.5L32 466.9V64c0-17.64 14.34-32 32-32h256c17.66 0 32 14.36 32 32V466.9z"]},l={prefix:"fal",iconName:"bookmark-slash",icon:[640,512,[],"e0c2","M192 32h256c17.66 0 32 14.36 32 32v236.8l32 25.26V64c0-35.3-28.72-64-64-64H192C169 0 148.1 12.28 137.7 30.53l25.45 20.09C168.3 39.7 179.2 32 192 32zM320 368c-3 0-5.969 .8281-8.594 2.5L160 466.9V211.2L128 185.9v310c0 5.844 3.188 11.23 8.312 14.04c5.125 2.781 11.34 2.562 16.28-.5313L320 402.1l167.4 106.5C490 511.2 493 512 496 512c2.656 0 5.281-.6562 7.688-1.969C508.8 507.2 512 501.8 512 496v-3.877l-183.4-121.6C325.1 368.8 323 368 320 368zM633.9 483.4L25.9 3.418C18.1-2.02 8.936-.8477 3.436 6.059c-5.469 6.939-4.281 17 2.656 22.49l608 480C617 510.9 620.5 512 624 512c4.719 0 9.406-2.094 12.56-6.078C642 498.1 640.8 488.9 633.9 483.4z"]},i={prefix:"fal",iconName:"check",icon:[512,512,[],"f00c","M475.3 123.3l-272 272C200.2 398.4 196.1 400 192 400s-8.188-1.562-11.31-4.688l-144-144c-6.25-6.25-6.25-16.38 0-22.62s16.38-6.25 22.62 0L192 361.4l260.7-260.7c6.25-6.25 16.38-6.25 22.62 0S481.6 117.1 475.3 123.3z"]},f={prefix:"fal",iconName:"chevron-down",icon:[448,512,[],"f078","M4.251 181.1C7.392 177.7 11.69 175.1 16 175.1c3.891 0 7.781 1.406 10.86 4.25l197.1 181.1l197.1-181.1c6.5-6 16.64-5.625 22.61 .9062c6 6.5 5.594 16.59-.8906 22.59l-208 192c-6.156 5.688-15.56 5.688-21.72 0l-208-192C-1.343 197.7-1.749 187.6 4.251 181.1z"]},e={prefix:"fal",iconName:"chevron-right",icon:[320,512,[],"f054","M85.14 475.8c-3.438-3.141-5.156-7.438-5.156-11.75c0-3.891 1.406-7.781 4.25-10.86l181.1-197.1L84.23 58.86c-6-6.5-5.625-16.64 .9062-22.61c6.5-6 16.59-5.594 22.59 .8906l192 208c5.688 6.156 5.688 15.56 0 21.72l-192 208C101.7 481.3 91.64 481.8 85.14 475.8z"]},a={prefix:"fal",iconName:"circle-info",icon:[512,512,[],"f05a","M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480zM256 184c13.25 0 24-10.74 24-24c0-13.25-10.75-24-24-24S232 146.7 232 160C232 173.3 242.7 184 256 184zM304 352h-32V240C272 231.2 264.8 224 256 224H224C215.2 224 208 231.2 208 240S215.2 256 224 256h16v96h-32C199.2 352 192 359.2 192 368C192 376.8 199.2 384 208 384h96c8.836 0 16-7.164 16-16C320 359.2 312.8 352 304 352z"]},o={prefix:"fal",iconName:"circle-xmark",icon:[512,512,[],"f057","M331.3 180.7c-6.25-6.25-16.38-6.25-22.62 0L256 233.4L203.3 180.7c-6.25-6.25-16.38-6.25-22.62 0s-6.25 16.38 0 22.62L233.4 256L180.7 308.7c-6.25 6.25-6.25 16.38 0 22.62c6.246 6.246 16.37 6.254 22.62 0L256 278.6l52.69 52.69c6.246 6.246 16.37 6.254 22.62 0c6.25-6.25 6.25-16.38 0-22.62L278.6 256l52.69-52.69C337.6 197.1 337.6 186.9 331.3 180.7zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256S512 397.4 512 256S397.4 0 256 0zM256 480c-123.5 0-224-100.5-224-224s100.5-224 224-224s224 100.5 224 224S379.5 480 256 480z"]},z={prefix:"fal",iconName:"clock-rotate-left",icon:[512,512,[],"f1da","M256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C172.2 512 97.87 471.8 51.19 409.6C45.88 402.5 47.31 392.5 54.37 387.2C61.44 381.9 71.47 383.3 76.78 390.4C117.7 444.8 182.7 480 256 480C379.7 480 480 379.7 480 256C480 132.3 379.7 32 256 32C166.7 32 89.51 84.3 53.55 160H144C152.8 160 160 167.2 160 176C160 184.8 152.8 192 144 192H16C7.164 192 0 184.8 0 176V48C0 39.16 7.164 32 16 32C24.84 32 32 39.16 32 48V131.1C75.66 53.29 159.6 0 256 0zM256 128C264.8 128 272 135.2 272 144V249.4L347.3 324.7C353.6 330.9 353.6 341.1 347.3 347.3C341.1 353.6 330.9 353.6 324.7 347.3L244.7 267.3C241.7 264.3 239.1 260.2 239.1 256V144C239.1 135.2 247.2 128 255.1 128H256z"]},M={prefix:"fal",iconName:"ellipsis-vertical",icon:[128,512,[],"f142","M64 384C81.67 384 96 398.3 96 416C96 433.7 81.67 448 64 448C46.33 448 32 433.7 32 416C32 398.3 46.33 384 64 384zM64 224C81.67 224 96 238.3 96 256C96 273.7 81.67 288 64 288C46.33 288 32 273.7 32 256C32 238.3 46.33 224 64 224zM64 128C46.33 128 32 113.7 32 96C32 78.33 46.33 64 64 64C81.67 64 96 78.33 96 96C96 113.7 81.67 128 64 128z"]},n={prefix:"fal",iconName:"gear",icon:[512,512,[],"f013","M255.1 512c-56.05 0-75.99-11.33-75.99-35.94V436.5c-15.17-6.375-29.35-14.53-42.36-24.41l-34.3 19.78c-4.621 2.703-9.976 4.013-15.36 4.013c-36.71 0-76.25-92.87-76.25-108.6c0-10.85 5.806-21.34 15.71-27.07l34.17-19.72C60.52 272.1 59.99 264 59.99 255.1s.5313-16.13 1.625-24.47L27.42 211.8C17.53 206.1 11.73 195.6 11.73 184.7c0-12.58 37.98-108.7 76.2-108.7c5.417 0 10.82 1.338 15.52 4.111L137.6 99.88C150.6 90.01 164.8 81.85 179.1 75.47V35.91C179.1 4.335 215.7 0 256 0c39.71 0 75.1 4.083 75.1 35.91v39.56c15.17 6.375 29.35 14.53 42.36 24.41l34.3-19.78c4.621-2.703 9.981-4.013 15.37-4.013c36.47 0 76.24 92.55 76.24 108.6c0 10.85-5.806 21.34-15.71 27.07l-34.17 19.72c1.094 8.344 1.625 16.44 1.625 24.47s-.5313 16.13-1.625 24.47l34.19 19.75c9.895 5.703 15.7 16.19 15.7 27.05c0 12.59-37.98 108.7-76.21 108.7c-5.42 0-10.83-1.338-15.51-4.111l-34.19-19.72c-13.02 9.876-27.19 18.03-42.36 24.41v39.56C332 500.6 312.1 512 255.1 512zM140.9 373.2c35.92 30.82 52.34 34.36 71.05 41v61.85c14.11 2.344 28.82 3.727 43.76 3.727c14.95 0 30.13-1.383 45.19-4.571l-.9532-61c16.07-5.702 35.18-10.22 71.05-41l53.61 30.97c18.78-22.06 33.77-47.97 43.39-76.57l-52.94-30.56c2.745-14.99 4.859-25.43 4.859-39.07c0-10.95-1.364-23.97-4.859-43.06l53.46-30.85c-9.829-27.75-24.92-53.97-45.1-76.72l-52.43 31.41c-35.92-30.82-52.34-34.36-71.05-41V35.91c-14.11-2.344-28.82-3.727-43.76-3.727c-14.95 0-30.13 1.383-45.19 4.571l.9532 61C195.9 103.5 176.8 107.1 140.9 138.8L87.33 107.8c-18.99 22.31-34.08 48.53-43.69 77.47l53.24 29.66C94.14 229.9 92.02 240.4 92.02 253.1c0 10.95 1.364 23.97 4.859 43.06l-53.46 30.85c9.829 27.75 24.92 53.97 45.1 76.72L140.9 373.2zM256 351.1c-52.94 0-96-43.06-96-96S203.1 159.1 256 159.1s96 43.06 96 96S308.9 351.1 256 351.1zM256 191.1c-35.3 0-64 28.72-64 64S220.7 319.1 256 319.1s64-28.72 64-64S291.3 191.1 256 191.1z"]},L={prefix:"fal",iconName:"house",icon:[576,512,[],"f015","M570.6 244C577.2 249.8 577.8 259.1 571.1 266.6C566.2 273.2 556 273.8 549.4 267.1L512 234.1V432C512 476.2 476.2 512 432 512H144C99.82 512 64 476.2 64 432V234.1L26.59 267.1C19.96 273.8 9.849 273.2 4.003 266.6C-1.844 259.1-1.212 249.8 5.414 244L277.4 4.002C283.5-1.334 292.5-1.334 298.6 4.002L570.6 244zM144 480H208V320C208 302.3 222.3 288 240 288H336C353.7 288 368 302.3 368 320V480H432C458.5 480 480 458.5 480 432V206.7L288 37.34L96 206.7V432C96 458.5 117.5 480 144 480zM240 480H336V320H240V480z"]},s={prefix:"fal",iconName:"id-badge",icon:[384,512,[],"f2c1","M320 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h256c35.35 0 64-28.65 64-64V64C384 28.65 355.3 0 320 0zM352 448c0 17.64-14.36 32-32 32H64c-17.64 0-32-14.36-32-32V64c0-17.64 14.36-32 32-32h256c17.64 0 32 14.36 32 32V448zM192 288c35.35 0 64-28.65 64-64s-28.65-64-64-64S128 188.7 128 224S156.7 288 192 288zM192 192c17.64 0 32 14.36 32 32s-14.36 32-32 32S160 241.6 160 224S174.4 192 192 192zM224 320H160c-44.18 0-80 35.82-80 80C80 408.8 87.16 416 96 416c8.838 0 16-7.164 16-16C112 373.5 133.5 352 160 352h64c26.51 0 48 21.49 48 48c0 8.836 7.164 16 16 16c8.838 0 16-7.164 16-16C304 355.8 268.2 320 224 320zM144 96h96C248.8 96 256 88.84 256 80S248.8 64 240 64h-96C135.2 64 128 71.16 128 80S135.2 96 144 96z"]},r={prefix:"fal",iconName:"link",icon:[512,512,[],"f0c1","M591.5 256c50-50 50-131 0-181s-131-50-181 0L387.9 97.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l22.6-22.6c37.5-37.5 98.3-37.5 135.8 0s37.5 98.3 0 135.8L444.3 357.9c-37.4 37.4-98.1 37.4-135.6 0c-35.6-35.6-37.6-92.6-4.7-130.6l5.3-6.1c5.8-6.7 5.1-16.8-1.6-22.6s-16.8-5.1-22.6 1.6l-5.3 6.1c-43.9 50.7-41.2 126.7 6.2 174.1c49.9 49.9 130.9 49.9 180.8 0L591.5 256zM48.5 256c-50 50-50 131 0 181s131 50 181 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-22.6 22.6c-37.5 37.5-98.3 37.5-135.8 0s-37.5-98.3 0-135.8L195.7 154.1c37.4-37.4 98.1-37.4 135.6 0c35.6 35.6 37.6 92.6 4.7 130.6l-5.3 6.1c-5.8 6.7-5.1 16.8 1.6 22.6s16.8 5.1 22.6-1.6l5.3-6.1c43.9-50.7 41.2-126.7-6.2-174.1C303.9 81.5 223 81.5 173 131.4L48.5 256z"]},V={prefix:"fal",iconName:"magnifying-glass",icon:[512,512,[],"f002","M507.3 484.7l-141.5-141.5C397 306.8 415.1 259.7 415.1 208c0-114.9-93.13-208-208-208S-.0002 93.13-.0002 208S93.12 416 207.1 416c51.68 0 98.85-18.96 135.2-50.15l141.5 141.5C487.8 510.4 491.9 512 496 512s8.188-1.562 11.31-4.688C513.6 501.1 513.6 490.9 507.3 484.7zM208 384C110.1 384 32 305 32 208S110.1 32 208 32S384 110.1 384 208S305 384 208 384z"]},S={prefix:"fal",iconName:"pen",icon:[512,512,[],"f304","M493.2 56.26l-37.51-37.51C443.2 6.252 426.8 0 410.5 0c-16.38 0-32.76 6.25-45.26 18.75L45.11 338.9c-8.568 8.566-14.53 19.39-17.18 31.21l-27.61 122.8C-1.7 502.1 6.158 512 15.95 512c1.047 0 2.116-.1034 3.198-.3202c0 0 84.61-17.95 122.8-26.93c11.54-2.717 21.87-8.523 30.25-16.9l321.2-321.2C518.3 121.7 518.2 81.26 493.2 56.26zM149.5 445.2c-4.219 4.219-9.252 7.039-14.96 8.383c-24.68 5.811-69.64 15.55-97.46 21.52l22.04-98.01c1.332-5.918 4.303-11.31 8.594-15.6l247.6-247.6l82.76 82.76L149.5 445.2zM470.7 124l-50.03 50.02l-82.76-82.76l49.93-49.93C393.9 35.33 401.9 32 410.5 32s16.58 3.33 22.63 9.375l37.51 37.51C483.1 91.37 483.1 111.6 470.7 124z"]},h={prefix:"fal",iconName:"print",icon:[512,512,[],"f02f","M416 320H96c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-128C448 334.3 433.7 320 416 320zM416 480H96v-128h320V480zM448 192V70.63C448 62.14 444.6 54 438.6 48l-38.63-38.63C393.1 3.37 385.9 0 377.4 0H128C92.65 0 64 28.65 64 64v128C28.7 192 0 220.7 0 256v112C0 376.8 7.156 384 16 384S32 376.8 32 368V256c0-17.67 14.33-32 32-32h384c17.67 0 32 14.33 32 32v112c0 8.844 7.156 16 16 16s16-7.156 16-16V256C512 220.7 483.3 192 448 192zM416 192H96V64c0-17.67 14.33-32 32-32h249.4L416 70.63V192zM432 248c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24s24-10.75 24-24C456 258.7 445.3 248 432 248z"]},m={prefix:"fal",iconName:"question",icon:[320,512,[],"3f","M213.1 32H106.7C47.84 32 0 79.84 0 138.7V160c0 8.844 7.156 16 16 16S32 168.9 32 160V138.7C32 97.48 65.5 64 106.7 64h106.5C254.4 64 288 97.58 288 138.9c0 27-14.62 52-38.16 65.25L152.5 258.9C137.4 267.4 128 283.4 128 300.7V336c0 8.844 7.156 16.01 16 16.01S160 344.8 160 336V300.7c0-5.766 3.125-11.11 8.156-13.95l97.38-54.78C299.1 213.1 320 177.4 320 138.9C320 79.94 272.1 32 213.1 32zM144 400c-17.67 0-32 14.32-32 31.99s14.33 32 32 32s32-14.33 32-32S161.7 400 144 400z"]},v={prefix:"fal",iconName:"rotate-right",icon:[512,512,[],"f2f9","M32.05 256.1c0 123.5 100.4 223.9 223.9 223.9c104.4 0 180-76.8 180-95.94c0-9.377-7.705-16.03-15.98-16.03C399.5 367.1 369.3 448 256 448c-105.9 0-192-86.13-192-192s86.13-192 192-192c75.11 0 123.1 44.4 124.2 45.15l-55.54 55.54c-3.055 3.055-4.681 7.16-4.681 11.33C320 184.9 327.2 192 336 192h128C472.8 192 480 184.8 480 176v-128c0-8.606-6.901-15.97-15.97-15.97c-4.171 0-8.291 1.598-11.35 4.653L402.1 87.32c-8.646-13.15-70.2-55.25-146.1-55.25C132.4 32.07 32.05 132.6 32.05 256.1zM374.6 160L448 86.63V160H374.6z"]},p={prefix:"fal",iconName:"trash-can",icon:[448,512,[],"f2ed","M432 64h-96l-33.63-44.75C293.4 7.125 279.1 0 264 0h-80C168.9 0 154.6 7.125 145.6 19.25L112 64h-96C7.201 64 0 71.2 0 80c0 8.799 7.201 16 16 16h416c8.801 0 16-7.201 16-16C448 71.2 440.8 64 432 64zM152 64l19.25-25.62C174.3 34.38 179 32 184 32h80c5 0 9.75 2.375 12.75 6.375L296 64H152zM400 128C391.2 128 384 135.2 384 144v288c0 26.47-21.53 48-48 48h-224C85.53 480 64 458.5 64 432v-288C64 135.2 56.84 128 48 128S32 135.2 32 144v288C32 476.1 67.89 512 112 512h224c44.11 0 80-35.89 80-80v-288C416 135.2 408.8 128 400 128zM144 416V192c0-8.844-7.156-16-16-16S112 183.2 112 192v224c0 8.844 7.156 16 16 16S144 424.8 144 416zM240 416V192c0-8.844-7.156-16-16-16S208 183.2 208 192v224c0 8.844 7.156 16 16 16S240 424.8 240 416zM336 416V192c0-8.844-7.156-16-16-16S304 183.2 304 192v224c0 8.844 7.156 16 16 16S336 424.8 336 416z"]},x={prefix:"fal",iconName:"triangle-exclamation",icon:[512,512,[],"f071","M256 360c-13.25 0-23.1 10.74-23.1 24c0 13.25 10.75 24 23.1 24c13.25 0 23.1-10.75 23.1-24C280 370.7 269.3 360 256 360zM256 320c8.843 0 15.1-7.156 15.1-16V160c0-8.844-7.155-16-15.1-16S240 151.2 240 160v144C240 312.8 247.2 320 256 320zM504.3 397.3L304.5 59.38C294.4 42.27 276.2 32.03 256 32C235.8 32 217.7 42.22 207.5 59.36l-199.9 338c-10.05 16.97-10.2 37.34-.4218 54.5C17.29 469.5 35.55 480 56.1 480h399.9c20.51 0 38.75-10.53 48.81-28.17C514.6 434.7 514.4 414.3 504.3 397.3zM476.1 435.1C472.7 443.5 464.8 448 455.1 448H56.1c-8.906 0-16.78-4.484-21.08-12c-4.078-7.156-4.015-15.3 .1562-22.36L235.1 75.66C239.4 68.36 247.2 64 256 64c0 0-.0156 0 0 0c8.765 .0156 16.56 4.359 20.86 11.64l199.9 338C480.1 420.7 481.1 428.8 476.1 435.1z"]},H={prefix:"fal",iconName:"xmark",icon:[320,512,[],"f00d","M315.3 411.3c-6.253 6.253-16.37 6.253-22.63 0L160 278.6l-132.7 132.7c-6.253 6.253-16.37 6.253-22.63 0c-6.253-6.253-6.253-16.37 0-22.63L137.4 256L4.69 123.3c-6.253-6.253-6.253-16.37 0-22.63c6.253-6.253 16.37-6.253 22.63 0L160 233.4l132.7-132.7c6.253-6.253 16.37-6.253 22.63 0c6.253 6.253 6.253 16.37 0 22.63L182.6 256l132.7 132.7C321.6 394.9 321.6 405.1 315.3 411.3z"]};export{c as faArrowsUpDown,C as faBookmark,l as faBookmarkSlash,i as faCheck,f as faChevronDown,e as faChevronRight,a as faCircleInfo,o as faCircleXmark,z as faClockRotateLeft,M as faEllipsisVertical,n as faGear,L as faHouse,s as faIdBadge,r as faLink,V as faMagnifyingGlass,S as faPen,h as faPrint,m as faQuestion,v as faRotateRight,p as faTrashCan,x as faTriangleExclamation,H as faXmark};
|
package/dist/index.d.ts
CHANGED
|
@@ -8,12 +8,12 @@ export { DragDropContext, Draggable, Droppable } from 'react-beautiful-dnd';
|
|
|
8
8
|
import * as react_toastify from 'react-toastify';
|
|
9
9
|
export { ToastContainer } from 'react-toastify';
|
|
10
10
|
import * as react from 'react';
|
|
11
|
-
import { FC, MouseEventHandler, ButtonHTMLAttributes, Ref, FormEvent, ReactNode, ReactElement, MouseEvent, Dispatch, SetStateAction,
|
|
11
|
+
import { FC, MouseEventHandler, ButtonHTMLAttributes, Ref, FormEvent, ReactNode, RefObject, ReactElement, MouseEvent, Dispatch, SetStateAction, ComponentProps, InputHTMLAttributes, FocusEventHandler } from 'react';
|
|
12
12
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
13
13
|
|
|
14
14
|
type IButtonColor = 'primary' | 'neutral' | 'danger';
|
|
15
15
|
type IButtonVariant = 'solid' | 'outlined' | 'simple';
|
|
16
|
-
interface IButtonProps {
|
|
16
|
+
interface IButtonProps$1 {
|
|
17
17
|
label: string;
|
|
18
18
|
icon?: IconDefinition;
|
|
19
19
|
iconEnd?: IconDefinition;
|
|
@@ -28,7 +28,7 @@ interface IButtonProps {
|
|
|
28
28
|
buttonProps?: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
29
29
|
ref?: Ref<HTMLButtonElement>;
|
|
30
30
|
}
|
|
31
|
-
declare const Button: FC<IButtonProps>;
|
|
31
|
+
declare const Button: FC<IButtonProps$1>;
|
|
32
32
|
|
|
33
33
|
interface IFormWrapper {
|
|
34
34
|
isLoading: boolean;
|
|
@@ -79,9 +79,23 @@ interface IValueLabel {
|
|
|
79
79
|
label: string;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
interface
|
|
82
|
+
interface PopupControlRef {
|
|
83
|
+
onOpen: () => void;
|
|
84
|
+
onClose: () => void;
|
|
85
|
+
}
|
|
86
|
+
interface ILocalPopupControl {
|
|
87
|
+
controlRef: RefObject<PopupControlRef | null>;
|
|
88
|
+
isOpen: boolean;
|
|
89
|
+
setIsOpen: (isOpen: boolean) => void;
|
|
90
|
+
}
|
|
91
|
+
interface IPopupControl {
|
|
92
|
+
control: ILocalPopupControl;
|
|
93
|
+
onOpen: () => void;
|
|
94
|
+
onClose: () => void;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
interface ITable<T = unknown> {
|
|
83
98
|
columns: ITableColumn[];
|
|
84
|
-
customHeader?: ITableColumn[][];
|
|
85
99
|
data: ITableDataItem[];
|
|
86
100
|
dataActions?: {
|
|
87
101
|
edit?: {
|
|
@@ -97,10 +111,6 @@ interface ITable {
|
|
|
97
111
|
hasAccess: boolean;
|
|
98
112
|
}[];
|
|
99
113
|
};
|
|
100
|
-
sumRows?: ITableDataItem[];
|
|
101
|
-
isLoading?: boolean;
|
|
102
|
-
headerWrap?: boolean;
|
|
103
|
-
selectedRowUuid?: string;
|
|
104
114
|
rowSelect?: {
|
|
105
115
|
selectedRows: Set<string>;
|
|
106
116
|
setSelectedRows: Dispatch<SetStateAction<Set<string>>>;
|
|
@@ -108,11 +118,23 @@ interface ITable {
|
|
|
108
118
|
};
|
|
109
119
|
filterData?: ITableFilterData;
|
|
110
120
|
sortData?: ITableSortData;
|
|
121
|
+
templateData?: {
|
|
122
|
+
identifier: string;
|
|
123
|
+
setSearch?: (search: string) => void;
|
|
124
|
+
items: IReportTemplate[];
|
|
125
|
+
isLoading?: boolean;
|
|
126
|
+
allowPublicCreate?: boolean;
|
|
127
|
+
};
|
|
128
|
+
printData?: IPrintData<T>;
|
|
129
|
+
sumRows?: ITableDataItem[];
|
|
111
130
|
editable?: ITableEdit;
|
|
131
|
+
selectedRowUuid?: string;
|
|
112
132
|
keyboard?: {
|
|
113
133
|
enabled: boolean;
|
|
114
134
|
actions: ITableKeyboardActionsBase;
|
|
115
135
|
};
|
|
136
|
+
headerWrap?: boolean;
|
|
137
|
+
customHeader?: ITableColumn[][];
|
|
116
138
|
footer?: {
|
|
117
139
|
paginationControl?: IPaginationControl;
|
|
118
140
|
customPagination?: {
|
|
@@ -120,11 +142,9 @@ interface ITable {
|
|
|
120
142
|
customLimit?: number[];
|
|
121
143
|
};
|
|
122
144
|
totalRows?: number;
|
|
123
|
-
|
|
124
|
-
icon?: IconDefinition;
|
|
125
|
-
onClick: () => void;
|
|
126
|
-
};
|
|
145
|
+
refetch?: () => void;
|
|
127
146
|
};
|
|
147
|
+
isLoading?: boolean;
|
|
128
148
|
className?: string;
|
|
129
149
|
rowHeight?: 'xs' | 's' | 'm';
|
|
130
150
|
maxHeight?: string;
|
|
@@ -147,6 +167,7 @@ interface ITableColumn {
|
|
|
147
167
|
desc: string;
|
|
148
168
|
label: string;
|
|
149
169
|
};
|
|
170
|
+
notFirstCell?: boolean;
|
|
150
171
|
className?: string;
|
|
151
172
|
}
|
|
152
173
|
interface ITableDataItem {
|
|
@@ -227,6 +248,50 @@ interface ITableEdit<T = any> {
|
|
|
227
248
|
addLabel?: string;
|
|
228
249
|
keepEditOnSubmit?: boolean;
|
|
229
250
|
}
|
|
251
|
+
interface IBasePrintData {
|
|
252
|
+
label: string;
|
|
253
|
+
organization?: {
|
|
254
|
+
name?: string;
|
|
255
|
+
taxId?: string;
|
|
256
|
+
registrationNumber?: string;
|
|
257
|
+
jbkjs?: string;
|
|
258
|
+
email?: string;
|
|
259
|
+
};
|
|
260
|
+
filters?: {
|
|
261
|
+
basic?: {
|
|
262
|
+
label: string;
|
|
263
|
+
value?: string;
|
|
264
|
+
}[];
|
|
265
|
+
date?: {
|
|
266
|
+
label: string;
|
|
267
|
+
from?: string;
|
|
268
|
+
to?: string;
|
|
269
|
+
}[];
|
|
270
|
+
};
|
|
271
|
+
saveXlsx?: () => void;
|
|
272
|
+
}
|
|
273
|
+
type IGetPrintData<T> = (props: {
|
|
274
|
+
pagination: IPagination;
|
|
275
|
+
noTotalRows?: boolean;
|
|
276
|
+
}) => Promise<{
|
|
277
|
+
items: T[];
|
|
278
|
+
totalRows?: number;
|
|
279
|
+
}>;
|
|
280
|
+
interface IPrintData<T = unknown> extends IBasePrintData {
|
|
281
|
+
printPopupControl: IPopupControl;
|
|
282
|
+
customHeader?: ITableColumn[][];
|
|
283
|
+
excludeColumnIds?: string[];
|
|
284
|
+
isLoading?: boolean;
|
|
285
|
+
progress?: number;
|
|
286
|
+
tableData?: ITableDataItem[];
|
|
287
|
+
items?: T[];
|
|
288
|
+
paginationControl?: IPaginationControl;
|
|
289
|
+
totals?: ITableDataItem;
|
|
290
|
+
optionalNode?: {
|
|
291
|
+
aboveTable?: ReactNode;
|
|
292
|
+
bellowTable?: ReactNode;
|
|
293
|
+
};
|
|
294
|
+
}
|
|
230
295
|
interface IPagination {
|
|
231
296
|
limit: number;
|
|
232
297
|
offset: number;
|
|
@@ -300,21 +365,6 @@ interface IMenuItem {
|
|
|
300
365
|
className?: string;
|
|
301
366
|
}
|
|
302
367
|
|
|
303
|
-
interface PopupControlRef {
|
|
304
|
-
onOpen: () => void;
|
|
305
|
-
onClose: () => void;
|
|
306
|
-
}
|
|
307
|
-
interface ILocalPopupControl {
|
|
308
|
-
controlRef: RefObject<PopupControlRef | null>;
|
|
309
|
-
isOpen: boolean;
|
|
310
|
-
setIsOpen: (isOpen: boolean) => void;
|
|
311
|
-
}
|
|
312
|
-
interface IPopupControl {
|
|
313
|
-
control: ILocalPopupControl;
|
|
314
|
-
onOpen: () => void;
|
|
315
|
-
onClose: () => void;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
368
|
interface IError {
|
|
319
369
|
errorMessage: string;
|
|
320
370
|
errorCode?: string;
|
|
@@ -449,7 +499,7 @@ interface ISidebarSubItem {
|
|
|
449
499
|
collapsed?: boolean;
|
|
450
500
|
}
|
|
451
501
|
|
|
452
|
-
interface Props$
|
|
502
|
+
interface Props$m {
|
|
453
503
|
modules: {
|
|
454
504
|
name: string;
|
|
455
505
|
icon: IconDefinition;
|
|
@@ -461,15 +511,15 @@ interface Props$j {
|
|
|
461
511
|
icon: IconDefinition;
|
|
462
512
|
} | null;
|
|
463
513
|
}
|
|
464
|
-
declare const ModuleSelect: FC<Props$
|
|
514
|
+
declare const ModuleSelect: FC<Props$m>;
|
|
465
515
|
|
|
466
|
-
interface Props$
|
|
516
|
+
interface Props$l {
|
|
467
517
|
customTitle?: string;
|
|
468
518
|
modulesProps?: ComponentProps<typeof ModuleSelect>;
|
|
469
519
|
userMenuProps: IHeaderUserMenuProps;
|
|
470
520
|
children?: ReactNode;
|
|
471
521
|
}
|
|
472
|
-
declare const Header: FC<Props$
|
|
522
|
+
declare const Header: FC<Props$l>;
|
|
473
523
|
|
|
474
524
|
interface ISidebarProps {
|
|
475
525
|
items: ISidebarItem[][];
|
|
@@ -478,22 +528,22 @@ interface ISidebarProps {
|
|
|
478
528
|
}
|
|
479
529
|
declare const Sidebar: FC<ISidebarProps>;
|
|
480
530
|
|
|
481
|
-
interface Props$
|
|
531
|
+
interface Props$k {
|
|
482
532
|
fullScreenRoutes: IRoute[];
|
|
483
533
|
appRoutes: IRoute[];
|
|
484
534
|
header: ComponentProps<typeof Header>;
|
|
485
535
|
sidebar: ComponentProps<typeof Sidebar>;
|
|
486
536
|
}
|
|
487
|
-
declare const Router: FC<Props$
|
|
537
|
+
declare const Router: FC<Props$k>;
|
|
488
538
|
|
|
489
|
-
interface Props$
|
|
539
|
+
interface Props$j {
|
|
490
540
|
tabs: ITab[];
|
|
491
541
|
initialValue?: string;
|
|
492
542
|
compact?: boolean;
|
|
493
543
|
keepContentInDom?: boolean;
|
|
494
544
|
className?: string;
|
|
495
545
|
}
|
|
496
|
-
declare const Accordions: FC<Props$
|
|
546
|
+
declare const Accordions: FC<Props$j>;
|
|
497
547
|
|
|
498
548
|
type IInfoType = 'success' | 'info' | 'warning' | 'danger';
|
|
499
549
|
|
|
@@ -506,28 +556,28 @@ interface IAlertProps {
|
|
|
506
556
|
}
|
|
507
557
|
declare const Alert: FC<IAlertProps>;
|
|
508
558
|
|
|
509
|
-
interface Props$
|
|
559
|
+
interface Props$i {
|
|
510
560
|
label: string;
|
|
511
561
|
color: IInfoType | 'gray';
|
|
512
562
|
className?: string;
|
|
513
563
|
}
|
|
514
|
-
declare const DotBadge: FC<Props$
|
|
564
|
+
declare const DotBadge: FC<Props$i>;
|
|
515
565
|
|
|
516
|
-
interface Props$
|
|
566
|
+
interface Props$h {
|
|
517
567
|
number?: number;
|
|
518
568
|
className?: string;
|
|
519
569
|
size?: 's' | 'm';
|
|
520
570
|
children?: ReactNode;
|
|
521
571
|
color?: IInfoType | 'primary';
|
|
522
572
|
}
|
|
523
|
-
declare const NotificationBadge: FC<Props$
|
|
573
|
+
declare const NotificationBadge: FC<Props$h>;
|
|
524
574
|
|
|
525
|
-
interface Props$
|
|
575
|
+
interface Props$g {
|
|
526
576
|
label: string;
|
|
527
577
|
color: IInfoType | 'gray';
|
|
528
578
|
className?: string;
|
|
529
579
|
}
|
|
530
|
-
declare const PillBadge: FC<Props$
|
|
580
|
+
declare const PillBadge: FC<Props$g>;
|
|
531
581
|
|
|
532
582
|
interface IIconButtonProps {
|
|
533
583
|
icon: IconDefinition;
|
|
@@ -545,11 +595,28 @@ interface IIconButtonProps {
|
|
|
545
595
|
}
|
|
546
596
|
declare const IconButton: FC<IIconButtonProps>;
|
|
547
597
|
|
|
598
|
+
type ISplitAction = Pick<IMenuItem, 'label' | 'onClick'> & Partial<Pick<IMenuItem, 'icon' | 'active' | 'disabled' | 'hidden'>>;
|
|
599
|
+
interface IButtonProps {
|
|
600
|
+
label: string;
|
|
601
|
+
icon?: IconDefinition;
|
|
602
|
+
onClick?: MouseEventHandler<HTMLButtonElement>;
|
|
603
|
+
splitActions?: ISplitAction[];
|
|
604
|
+
menuPlacement?: IMenuPlacement;
|
|
605
|
+
variant?: 'solid' | 'outlined';
|
|
606
|
+
size?: 'xs' | 's' | 'm' | 'l';
|
|
607
|
+
disabled?: boolean;
|
|
608
|
+
type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
609
|
+
className?: string;
|
|
610
|
+
buttonProps?: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
611
|
+
ref?: Ref<HTMLButtonElement>;
|
|
612
|
+
}
|
|
613
|
+
declare const SplitButton: FC<IButtonProps>;
|
|
614
|
+
|
|
548
615
|
declare const Dashboard: FC<{
|
|
549
616
|
children: ReactNode;
|
|
550
617
|
}>;
|
|
551
618
|
|
|
552
|
-
interface Props$
|
|
619
|
+
interface Props$f {
|
|
553
620
|
title: string;
|
|
554
621
|
icon?: any;
|
|
555
622
|
type?: 'warning' | 'info';
|
|
@@ -557,16 +624,16 @@ interface Props$c {
|
|
|
557
624
|
isLoading?: boolean;
|
|
558
625
|
children: ReactNode;
|
|
559
626
|
}
|
|
560
|
-
declare const DashboardWidget: FC<Props$
|
|
627
|
+
declare const DashboardWidget: FC<Props$f>;
|
|
561
628
|
|
|
562
|
-
interface Props$
|
|
629
|
+
interface Props$e {
|
|
563
630
|
links: {
|
|
564
631
|
icon?: IconDefinition;
|
|
565
632
|
label: string;
|
|
566
633
|
onClick: () => void;
|
|
567
634
|
}[];
|
|
568
635
|
}
|
|
569
|
-
declare const FastLinksWidget: FC<Props$
|
|
636
|
+
declare const FastLinksWidget: FC<Props$e>;
|
|
570
637
|
|
|
571
638
|
interface IDialogFooterActions {
|
|
572
639
|
confirmButton: {
|
|
@@ -578,6 +645,7 @@ interface IDialogFooterActions {
|
|
|
578
645
|
color?: IButtonColor;
|
|
579
646
|
isKeyboardDisabled?: boolean;
|
|
580
647
|
type?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
648
|
+
splitActions?: ISplitAction[];
|
|
581
649
|
};
|
|
582
650
|
cancelButton?: {
|
|
583
651
|
label?: string;
|
|
@@ -595,7 +663,7 @@ interface IDialogFooterActions {
|
|
|
595
663
|
};
|
|
596
664
|
}
|
|
597
665
|
|
|
598
|
-
interface Props$
|
|
666
|
+
interface Props$d {
|
|
599
667
|
control: ILocalPopupControl;
|
|
600
668
|
title?: string;
|
|
601
669
|
titleEl?: ReactNode;
|
|
@@ -613,15 +681,15 @@ interface Props$a {
|
|
|
613
681
|
className?: string;
|
|
614
682
|
children?: ReactNode;
|
|
615
683
|
}
|
|
616
|
-
declare const Dialog: FC<Props$
|
|
684
|
+
declare const Dialog: FC<Props$d>;
|
|
617
685
|
|
|
618
|
-
interface Props$
|
|
686
|
+
interface Props$c {
|
|
619
687
|
isOpen: boolean;
|
|
620
688
|
children: ReactNode;
|
|
621
689
|
keepContentInDom?: boolean;
|
|
622
690
|
className?: string;
|
|
623
691
|
}
|
|
624
|
-
declare const Collapse: FC<Props$
|
|
692
|
+
declare const Collapse: FC<Props$c>;
|
|
625
693
|
|
|
626
694
|
interface ICheckboxProps {
|
|
627
695
|
label?: string;
|
|
@@ -759,7 +827,7 @@ interface IRadioProps {
|
|
|
759
827
|
}
|
|
760
828
|
declare const Radio: FC<IRadioProps>;
|
|
761
829
|
|
|
762
|
-
interface Props$
|
|
830
|
+
interface Props$b {
|
|
763
831
|
title?: string | ReactElement;
|
|
764
832
|
desc?: string | ReactElement;
|
|
765
833
|
value: string;
|
|
@@ -769,7 +837,7 @@ interface Props$8 {
|
|
|
769
837
|
className?: string;
|
|
770
838
|
children?: ReactNode;
|
|
771
839
|
}
|
|
772
|
-
declare const RadioLarge: FC<Props$
|
|
840
|
+
declare const RadioLarge: FC<Props$b>;
|
|
773
841
|
|
|
774
842
|
interface IProps {
|
|
775
843
|
label?: string;
|
|
@@ -812,7 +880,21 @@ interface ITextInputProps {
|
|
|
812
880
|
}
|
|
813
881
|
declare const TextInput: FC<ITextInputProps>;
|
|
814
882
|
|
|
815
|
-
interface
|
|
883
|
+
interface IListItem {
|
|
884
|
+
id?: string;
|
|
885
|
+
label: string;
|
|
886
|
+
desc?: string;
|
|
887
|
+
onClick?: () => void;
|
|
888
|
+
active?: boolean;
|
|
889
|
+
disabled?: boolean;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
interface Props$a {
|
|
893
|
+
items?: IListItem[];
|
|
894
|
+
}
|
|
895
|
+
declare const List: FC<Props$a>;
|
|
896
|
+
|
|
897
|
+
interface Props$9 {
|
|
816
898
|
isLoading: boolean;
|
|
817
899
|
isFullPage?: boolean;
|
|
818
900
|
classNameLoader?: string;
|
|
@@ -821,13 +903,19 @@ interface Props$7 {
|
|
|
821
903
|
children: ReactElement | ReactNode;
|
|
822
904
|
}>;
|
|
823
905
|
}
|
|
824
|
-
declare const Loader: FC<Props$
|
|
906
|
+
declare const Loader: FC<Props$9>;
|
|
825
907
|
declare const FullScreenLoader: FC<{
|
|
826
908
|
isLoading: boolean;
|
|
827
909
|
}>;
|
|
828
910
|
declare const LazyLoader: FC;
|
|
829
911
|
|
|
830
|
-
interface Props$
|
|
912
|
+
interface Props$8 {
|
|
913
|
+
progress?: number;
|
|
914
|
+
label?: string;
|
|
915
|
+
}
|
|
916
|
+
declare const ProgressBar: FC<Props$8>;
|
|
917
|
+
|
|
918
|
+
interface Props$7 {
|
|
831
919
|
isOpen: boolean;
|
|
832
920
|
onClose: () => void;
|
|
833
921
|
renderButton: (ref: RefObject<any>) => ReactNode;
|
|
@@ -835,14 +923,13 @@ interface Props$6 {
|
|
|
835
923
|
placement?: IMenuPlacement;
|
|
836
924
|
size?: 's' | 'm' | 'l';
|
|
837
925
|
className?: string;
|
|
838
|
-
classNameItem?: string;
|
|
839
926
|
children?: ReactNode;
|
|
840
927
|
}
|
|
841
|
-
declare const Menu: FC<Props$
|
|
928
|
+
declare const Menu: FC<Props$7>;
|
|
842
929
|
|
|
843
930
|
declare const MenuItem: FC<IMenuItem>;
|
|
844
931
|
|
|
845
|
-
interface Props$
|
|
932
|
+
interface Props$6 {
|
|
846
933
|
tabs: ITab[];
|
|
847
934
|
initialValue?: string;
|
|
848
935
|
control?: {
|
|
@@ -854,10 +941,10 @@ interface Props$5 {
|
|
|
854
941
|
className?: string;
|
|
855
942
|
classNameContent?: string;
|
|
856
943
|
}
|
|
857
|
-
declare const Tabs: FC<Props$
|
|
944
|
+
declare const Tabs: FC<Props$6>;
|
|
858
945
|
|
|
859
946
|
type TooltipPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
860
|
-
interface Props$
|
|
947
|
+
interface Props$5 {
|
|
861
948
|
label?: string;
|
|
862
949
|
position?: TooltipPosition;
|
|
863
950
|
disabled?: boolean;
|
|
@@ -866,21 +953,21 @@ interface Props$4 {
|
|
|
866
953
|
children: ReactElement;
|
|
867
954
|
ref?: Ref<HTMLElement> | null;
|
|
868
955
|
}
|
|
869
|
-
declare const Tooltip: FC<Props$
|
|
956
|
+
declare const Tooltip: FC<Props$5>;
|
|
870
957
|
|
|
871
|
-
interface Props$
|
|
958
|
+
interface Props$4 {
|
|
872
959
|
data: ITreeItem[];
|
|
873
960
|
selectedItemUuid?: string;
|
|
874
961
|
onClick: (itemUuid: string) => void;
|
|
875
962
|
}
|
|
876
|
-
declare const Tree: FC<Props$
|
|
963
|
+
declare const Tree: FC<Props$4>;
|
|
877
964
|
|
|
878
|
-
interface Props$
|
|
965
|
+
interface Props$3 {
|
|
879
966
|
condition: boolean;
|
|
880
967
|
wrapper: (children: ReactNode) => ReactNode;
|
|
881
968
|
children: ReactNode;
|
|
882
969
|
}
|
|
883
|
-
declare const ConditionalWrapper: FC<Props$
|
|
970
|
+
declare const ConditionalWrapper: FC<Props$3>;
|
|
884
971
|
|
|
885
972
|
interface IPageLayoutProps {
|
|
886
973
|
breadcrumbs?: (string | undefined)[];
|
|
@@ -901,7 +988,7 @@ interface IPageLayoutProps {
|
|
|
901
988
|
}
|
|
902
989
|
declare const PageLayout: FC<IPageLayoutProps>;
|
|
903
990
|
|
|
904
|
-
interface Props$
|
|
991
|
+
interface Props$2 {
|
|
905
992
|
id?: string;
|
|
906
993
|
control: ILocalPopupControl;
|
|
907
994
|
header?: {
|
|
@@ -910,14 +997,16 @@ interface Props$1 {
|
|
|
910
997
|
};
|
|
911
998
|
isLoading?: boolean;
|
|
912
999
|
onFormSubmit?: () => void;
|
|
1000
|
+
onContentClick?: () => void;
|
|
913
1001
|
onCloseCallback?: () => void;
|
|
914
1002
|
footer?: IDialogFooterActions;
|
|
915
1003
|
size?: 'vw25' | 'vw50' | 'vw75' | 'vw100' | 'w500' | 'w600';
|
|
916
1004
|
className?: string;
|
|
917
1005
|
contentClassName?: string;
|
|
1006
|
+
portalTarget?: HTMLElement;
|
|
918
1007
|
children: ReactNode;
|
|
919
1008
|
}
|
|
920
|
-
declare const Pullover: FC<Props$
|
|
1009
|
+
declare const Pullover: FC<Props$2>;
|
|
921
1010
|
|
|
922
1011
|
declare const Table: FC<ITable>;
|
|
923
1012
|
|
|
@@ -949,7 +1038,7 @@ declare const useTableEdit: <T extends Record<string, any>>() => {
|
|
|
949
1038
|
};
|
|
950
1039
|
};
|
|
951
1040
|
|
|
952
|
-
interface Props<T> {
|
|
1041
|
+
interface Props$1<T> {
|
|
953
1042
|
searchData: T;
|
|
954
1043
|
setSearchData: Dispatch<SetStateAction<Partial<T>>>;
|
|
955
1044
|
}
|
|
@@ -976,7 +1065,7 @@ interface BooleanSelectProps<T> extends BaseItemProps<T> {
|
|
|
976
1065
|
labelTrue?: string;
|
|
977
1066
|
labelFalse?: string;
|
|
978
1067
|
}
|
|
979
|
-
declare const useTableFilterFields: <T extends Record<string, any>>({ searchData, setSearchData, }: Props<T>) => {
|
|
1068
|
+
declare const useTableFilterFields: <T extends Record<string, any>>({ searchData, setSearchData, }: Props$1<T>) => {
|
|
980
1069
|
textFilter: ({ label, id, additionalClearIds }: BaseItemProps<T>) => {
|
|
981
1070
|
label: string;
|
|
982
1071
|
field: react_jsx_runtime.JSX.Element;
|
|
@@ -1000,6 +1089,12 @@ declare const useTablePagination: (defaultLimit?: number) => {
|
|
|
1000
1089
|
paginationControl: IPaginationControl;
|
|
1001
1090
|
};
|
|
1002
1091
|
|
|
1092
|
+
type Props<T> = {
|
|
1093
|
+
getPrintData: IGetPrintData<T>;
|
|
1094
|
+
totalRows?: number;
|
|
1095
|
+
};
|
|
1096
|
+
declare const useTablePrint: <T>({ getPrintData, totalRows: initialTotalRows, }: Props<T>) => Pick<IPrintData<T>, "isLoading" | "progress" | "items" | "printPopupControl">;
|
|
1097
|
+
|
|
1003
1098
|
interface ITableSearchProps<T> {
|
|
1004
1099
|
setOffset: Dispatch<SetStateAction<number>>;
|
|
1005
1100
|
resetSelectedRows?: () => void;
|
|
@@ -1150,6 +1245,7 @@ declare const i18nIUILatin: {
|
|
|
1150
1245
|
Title: string;
|
|
1151
1246
|
to: string;
|
|
1152
1247
|
Yes: string;
|
|
1248
|
+
LoadingProgress: string;
|
|
1153
1249
|
RefreshData: string;
|
|
1154
1250
|
allResults: string;
|
|
1155
1251
|
Columns: string;
|
|
@@ -1171,17 +1267,14 @@ declare const i18nIUILatin: {
|
|
|
1171
1267
|
Sort: string;
|
|
1172
1268
|
AddItem: string;
|
|
1173
1269
|
Templates: string;
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
PublicTemplates: string;
|
|
1178
|
-
DefaultTemplate: string;
|
|
1179
|
-
RemoveFiltersAndLook: string;
|
|
1270
|
+
ApplyTemplate: string;
|
|
1271
|
+
ResetTemplate: string;
|
|
1272
|
+
DeleteTemplate: string;
|
|
1180
1273
|
CreateTemplateLong: string;
|
|
1181
1274
|
CreateDefaultTemplate: string;
|
|
1182
1275
|
CreateTemplate: string;
|
|
1183
|
-
|
|
1184
|
-
|
|
1276
|
+
TemplateName: string;
|
|
1277
|
+
PublicTemplate: string;
|
|
1185
1278
|
FastLinks: string;
|
|
1186
1279
|
CharMin: string;
|
|
1187
1280
|
CharRange: string;
|
|
@@ -1228,6 +1321,7 @@ declare const i18nIUICyrilic: {
|
|
|
1228
1321
|
Title: string;
|
|
1229
1322
|
to: string;
|
|
1230
1323
|
Yes: string;
|
|
1324
|
+
LoadingProgress: string;
|
|
1231
1325
|
RefreshData: string;
|
|
1232
1326
|
allResults: string;
|
|
1233
1327
|
Columns: string;
|
|
@@ -1308,6 +1402,7 @@ declare const i18nIUIMe: {
|
|
|
1308
1402
|
Title: string;
|
|
1309
1403
|
to: string;
|
|
1310
1404
|
Yes: string;
|
|
1405
|
+
LoadingProgress: string;
|
|
1311
1406
|
RefreshData: string;
|
|
1312
1407
|
allResults: string;
|
|
1313
1408
|
Columns: string;
|
|
@@ -1377,5 +1472,5 @@ declare const useIsMenuOpen: () => {
|
|
|
1377
1472
|
|
|
1378
1473
|
declare const usePopupControl: () => IPopupControl;
|
|
1379
1474
|
|
|
1380
|
-
export { Accordions, Alert, Button, Checkbox, Collapse, ConditionalWrapper, CurrencyInput, Dashboard, DashboardWidget, DateInput, Dialog, DotBadge, FastLinksWidget, FormWrapper, FullScreenLoader, IconButton, LazyLoader, Loader, Menu, MenuItem, NotificationBadge, NumberInput, PageLayout, PasswordInput, PillBadge, Pullover, Radio, RadioLarge, Router, SearchInput, Select, SelectAsyncPaginate, SelectCreatable, Table, Tabs, TextAreaInput, TextInput, TimeInput, Tooltip, Tree, areStringArraysEqual, calculateFilesSize, checkIfExpired, compareArrayItemsIndex, convertArrayToBooleanObject, convertBooleanObjectToArray, convertReportTemplateFilterToSearch, convertSearchToReportTemplateFilter, dataURLtoFile, dateAddDays, deepCopy, deleteEmptyProps, deleteEmptyPropsIncludingArray, deleteProps, deletePropsThatEndsWith, downloadDocumentFile, downloadFile, formatCurrency, formatCurrencyNoDecimals, formatDate, formatDateAndTime, formatDateYMD, formatDecimalNumber, formatTime, formatYearMonth, getActiveFilterNumber, getActiveOrgUuid, getBase64FromFile, getBase64FromUrl, getCurrentDateFormatted, getCurrentDateFormattedYMD, getDaysLeft, getDefaultOrgUuid, getExtensionFromFilename, getFileFromUrl, getInputHelperText, getInputMinMaxPattern, getPrintColumns, getVisibleColumnsIds, i18nIUICyrilic, i18nIUILatin, i18nIUIMe, inputPattern, intersectArrays, lsGet, lsRemove, lsSet, maxChar, parseUrlSearch, rootDir, rotateBase64Image, setActiveOrgUuid, setDefaultOrgUuid, setTemplateData, sizeInBytesPretty, splitBase64File, tableCustomLimit1000, toastError, toastSuccess, useDefaultTemplate, useHideZendesk, useIsMenuOpen, useOnEsc, usePopupControl, useTableEdit, useTableFilterFields, useTablePagination, useTableSearch, useTableSelect, useTableSort };
|
|
1381
|
-
export type { DeepPartial, IAlertProps, IAnyObject, IBooleanObject, IError, IFormWrapper, IHeaderAction, IHeaderUserMenuProps, IKeyboardAction, IMenuItem, IMenuPlacement, IPagination, IPaginationControl, IPopupControl, IRoute, ISelectData, ISidebarItem, ISimpleObject, ISimpleObjectWithCode, IStringObject, ITab, ITable, ITableColumn, ITableDataItem, ITableDataItemCells, ITableEdit, ITableFilter, ITableFilterData, ITableFilterItem, ITableSort, ITreeItem, IValueLabel, PopupControlRef };
|
|
1475
|
+
export { Accordions, Alert, Button, Checkbox, Collapse, ConditionalWrapper, CurrencyInput, Dashboard, DashboardWidget, DateInput, Dialog, DotBadge, FastLinksWidget, FormWrapper, FullScreenLoader, IconButton, LazyLoader, List, Loader, Menu, MenuItem, NotificationBadge, NumberInput, PageLayout, PasswordInput, PillBadge, ProgressBar, Pullover, Radio, RadioLarge, Router, SearchInput, Select, SelectAsyncPaginate, SelectCreatable, SplitButton, Table, Tabs, TextAreaInput, TextInput, TimeInput, Tooltip, Tree, areStringArraysEqual, calculateFilesSize, checkIfExpired, compareArrayItemsIndex, convertArrayToBooleanObject, convertBooleanObjectToArray, convertReportTemplateFilterToSearch, convertSearchToReportTemplateFilter, dataURLtoFile, dateAddDays, deepCopy, deleteEmptyProps, deleteEmptyPropsIncludingArray, deleteProps, deletePropsThatEndsWith, downloadDocumentFile, downloadFile, formatCurrency, formatCurrencyNoDecimals, formatDate, formatDateAndTime, formatDateYMD, formatDecimalNumber, formatTime, formatYearMonth, getActiveFilterNumber, getActiveOrgUuid, getBase64FromFile, getBase64FromUrl, getCurrentDateFormatted, getCurrentDateFormattedYMD, getDaysLeft, getDefaultOrgUuid, getExtensionFromFilename, getFileFromUrl, getInputHelperText, getInputMinMaxPattern, getPrintColumns, getVisibleColumnsIds, i18nIUICyrilic, i18nIUILatin, i18nIUIMe, inputPattern, intersectArrays, lsGet, lsRemove, lsSet, maxChar, parseUrlSearch, rootDir, rotateBase64Image, setActiveOrgUuid, setDefaultOrgUuid, setTemplateData, sizeInBytesPretty, splitBase64File, tableCustomLimit1000, toastError, toastSuccess, useDefaultTemplate, useHideZendesk, useIsMenuOpen, useOnEsc, usePopupControl, useTableEdit, useTableFilterFields, useTablePagination, useTablePrint, useTableSearch, useTableSelect, useTableSort };
|
|
1476
|
+
export type { DeepPartial, IAlertProps, IAnyObject, IBooleanObject, IError, IFormWrapper, IGetPrintData, IHeaderAction, IHeaderUserMenuProps, IKeyboardAction, IMenuItem, IMenuPlacement, IPagination, IPaginationControl, IPopupControl, IRoute, ISelectData, ISidebarItem, ISimpleObject, ISimpleObjectWithCode, IStringObject, ITab, ITable, ITableColumn, ITableDataItem, ITableDataItemCells, ITableEdit, ITableFilter, ITableFilterData, ITableFilterItem, ITableSort, ITreeItem, IValueLabel, PopupControlRef };
|