nira-falcon 0.1.21 → 0.1.23
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/README.md +24 -24
- package/ng-package.json +7 -0
- package/package copy.json +13 -0
- package/package.json +13 -26
- package/src/assets/images/hub-dashboard-title-bg.png +0 -0
- package/src/assets/images/iran.png +0 -0
- package/src/environments/environment.ts +7 -0
- package/src/lib/core-auto-complete/core-auto-complete.component.html +30 -0
- package/src/lib/core-auto-complete/core-auto-complete.component.scss +89 -0
- package/src/lib/core-auto-complete/core-auto-complete.component.ts +92 -0
- package/src/lib/core-btn/core-btn-bluebird.component.html +21 -0
- package/src/lib/core-btn/core-btn-bluebird.component.scss +123 -0
- package/src/lib/core-btn/core-btn-falcon.component.html +20 -0
- package/src/lib/core-btn/core-btn-falcon.component.scss +115 -0
- package/src/lib/core-btn/core-btn.component.ts +54 -0
- package/src/lib/core-card/core-card.component.html +3 -0
- package/src/lib/core-card/core-card.component.scss +0 -0
- package/src/lib/core-card/core-card.component.ts +10 -0
- package/src/lib/core-checkbox/core-checkbox.component.html +9 -0
- package/src/lib/core-checkbox/core-checkbox.component.scss +60 -0
- package/src/lib/core-checkbox/core-checkbox.component.ts +19 -0
- package/src/lib/core-confirm-dialog/core-confirm-dialog.component.html +28 -0
- package/src/lib/core-confirm-dialog/core-confirm-dialog.component.scss +131 -0
- package/src/lib/core-confirm-dialog/core-confirm-dialog.component.ts +29 -0
- package/src/lib/core-date-picker/core-date-picker-bluebird.component.html +15 -0
- package/src/lib/core-date-picker/core-date-picker-bluebird.component.scss +0 -0
- package/src/lib/core-date-picker/core-date-picker-falcon.component.html +14 -0
- package/src/lib/core-date-picker/core-date-picker-falcon.component.scss +0 -0
- package/src/lib/core-date-picker/core-date-picker.component.ts +44 -0
- package/src/lib/core-input/core-input-bluebird.component.html +95 -0
- package/src/lib/core-input/core-input-bluebird.component.scss +152 -0
- package/src/lib/core-input/core-input-falcon.component.html +90 -0
- package/src/lib/core-input/core-input-falcon.component.scss +141 -0
- package/src/lib/core-input/core-input.component.ts +112 -0
- package/src/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.html +3 -0
- package/src/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.scss +15 -0
- package/src/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.ts +19 -0
- package/src/lib/core-multi-select/core-multi-select.component.html +41 -0
- package/src/lib/core-multi-select/core-multi-select.component.scss +119 -0
- package/src/lib/core-multi-select/core-multi-select.component.ts +139 -0
- package/src/lib/core-number/core-number.component.html +3 -0
- package/src/lib/core-number/core-number.component.scss +1 -0
- package/src/lib/core-number/core-number.component.ts +45 -0
- package/src/lib/core-page-title/core-page-title.component.html +14 -0
- package/src/lib/core-page-title/core-page-title.component.scss +16 -0
- package/src/lib/core-page-title/core-page-title.component.ts +11 -0
- package/src/lib/core-radio-buttons/core-radio-buttons.component.html +17 -0
- package/src/lib/core-radio-buttons/core-radio-buttons.component.scss +46 -0
- package/src/lib/core-radio-buttons/core-radio-buttons.component.spec.ts +21 -0
- package/src/lib/core-radio-buttons/core-radio-buttons.component.ts +64 -0
- package/src/lib/core-search-box/core-search-box.component.html +14 -0
- package/src/lib/core-search-box/core-search-box.component.scss +37 -0
- package/src/lib/core-search-box/core-search-box.component.ts +15 -0
- package/src/lib/core-select/core-select-bluebird.component.html +57 -0
- package/src/lib/core-select/core-select-bluebird.component.scss +129 -0
- package/src/lib/core-select/core-select-falcon.component.html +56 -0
- package/src/lib/core-select/core-select-falcon.component.scss +123 -0
- package/src/lib/core-select/core-select.component.spec.ts +21 -0
- package/src/lib/core-select/core-select.component.ts +93 -0
- package/src/lib/core-spinner/core-spinner.component.html +14 -0
- package/src/lib/core-spinner/core-spinner.component.scss +162 -0
- package/src/lib/core-spinner/core-spinner.component.ts +13 -0
- package/src/lib/core-switch/core-switch.component.html +13 -0
- package/src/lib/core-switch/core-switch.component.scss +58 -0
- package/src/lib/core-switch/core-switch.component.spec.ts +21 -0
- package/src/lib/core-switch/core-switch.component.ts +28 -0
- package/src/lib/core-table/core-column-date-picker/core-column-date-picker.component.html +21 -0
- package/src/lib/core-table/core-column-date-picker/core-column-date-picker.component.scss +3 -0
- package/src/lib/core-table/core-column-date-picker/core-column-date-picker.component.ts +55 -0
- package/src/lib/core-table/core-column-input/core-column-input.component.html +17 -0
- package/src/lib/core-table/core-column-input/core-column-input.component.scss +21 -0
- package/src/lib/core-table/core-column-input/core-column-input.component.ts +23 -0
- package/src/lib/core-table/core-column-selector/core-column-selector.component.html +47 -0
- package/src/lib/core-table/core-column-selector/core-column-selector.component.scss +113 -0
- package/src/lib/core-table/core-column-selector/core-column-selector.component.ts +94 -0
- package/src/lib/core-table/core-row-pelak/core-row-pelak.component.html +12 -0
- package/src/lib/core-table/core-row-pelak/core-row-pelak.component.scss +21 -0
- package/src/lib/core-table/core-row-pelak/core-row-pelak.component.ts +12 -0
- package/src/lib/core-table/core-table/core-table.component.html +168 -0
- package/src/lib/core-table/core-table/core-table.component.scss +65 -0
- package/src/lib/core-table/core-table/core-table.component.ts +179 -0
- package/src/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.html +10 -0
- package/src/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.scss +3 -0
- package/src/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.ts +24 -0
- package/src/lib/core-table/core-table-action-column/core-table-action-column.component.html +6 -0
- package/src/lib/core-table/core-table-action-column/core-table-action-column.component.scss +3 -0
- package/src/lib/core-table/core-table-action-column/core-table-action-column.component.ts +19 -0
- package/src/lib/core-table/core-table-card-manager/core-table-card-manager.component.html +94 -0
- package/src/lib/core-table/core-table-card-manager/core-table-card-manager.component.scss +0 -0
- package/src/lib/core-table/core-table-card-manager/core-table-card-manager.component.ts +58 -0
- package/src/lib/core-table/core-table-column-manager/core-table-column-manager.component.html +99 -0
- package/src/lib/core-table/core-table-column-manager/core-table-column-manager.component.scss +0 -0
- package/src/lib/core-table/core-table-column-manager/core-table-column-manager.component.ts +59 -0
- package/src/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.html +5 -0
- package/src/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.scss +8 -0
- package/src/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.ts +28 -0
- package/src/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.html +24 -0
- package/src/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.scss +10 -0
- package/src/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.ts +76 -0
- package/src/lib/core-table/core-table-no-content/core-table-no-content.component.html +6 -0
- package/src/lib/core-table/core-table-no-content/core-table-no-content.component.scss +7 -0
- package/src/lib/core-table/core-table-no-content/core-table-no-content.component.ts +14 -0
- package/src/lib/core-table/core-table-no-content/core-table-no-content.label.ts +14 -0
- package/src/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.html +5 -0
- package/src/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.scss +0 -0
- package/src/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.ts +60 -0
- package/src/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.html +3 -0
- package/src/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.scss +0 -0
- package/src/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.ts +24 -0
- package/src/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.html +3 -0
- package/src/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.scss +14 -0
- package/src/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.ts +14 -0
- package/src/lib/core-table/core-table-status-column/core-table-status-column.component.html +3 -0
- package/src/lib/core-table/core-table-status-column/core-table-status-column.component.scss +14 -0
- package/src/lib/core-table/core-table-status-column/core-table-status-column.component.ts +11 -0
- package/src/lib/core-textarea/core-textarea.component.html +18 -0
- package/src/lib/core-textarea/core-textarea.component.scss +62 -0
- package/src/lib/core-textarea/core-textarea.component.ts +31 -0
- package/src/lib/core-time-picker/core-time-picker.component.html +51 -0
- package/src/lib/core-time-picker/core-time-picker.component.scss +144 -0
- package/src/lib/core-time-picker/core-time-picker.component.ts +102 -0
- package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.html +50 -0
- package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.scss +424 -0
- package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.spec.ts +21 -0
- package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.ts +172 -0
- package/src/lib/falcon-lib.module.ts +157 -0
- package/src/lib/falconTypes.ts +35 -0
- package/src/lib/pipes/digit-group.pipe.ts +10 -0
- package/src/lib/pipes/form-control.pipe.ts +11 -0
- package/src/lib/pipes/persian-digits.pipe.ts +33 -0
- package/src/lib/pipes/price-format.pipe.ts +20 -0
- package/src/lib/pipes/shamsi-date.pipe.ts +24 -0
- package/src/lib/pipes/time-format.pipe.ts +21 -0
- package/src/lib/pipes/weight.pipe.ts +10 -0
- package/src/lib/wordify.ts +116 -0
- package/{public-api.d.ts → src/public-api.ts} +31 -27
- package/src/svg-icon/arrow-down-icon/arrow-down-icon.component.html +8 -0
- package/src/svg-icon/arrow-down-icon/arrow-down-icon.component.scss +0 -0
- package/src/svg-icon/arrow-down-icon/arrow-down-icon.component.ts +8 -0
- package/src/svg-icon/calendar-icon/calendar-icon.component.html +10 -0
- package/src/svg-icon/calendar-icon/calendar-icon.component.scss +0 -0
- package/src/svg-icon/calendar-icon/calendar-icon.component.ts +8 -0
- package/src/svg-icon/caret-up-icon/caret-up-icon.component.html +16 -0
- package/src/svg-icon/caret-up-icon/caret-up-icon.component.scss +0 -0
- package/src/svg-icon/caret-up-icon/caret-up-icon.component.ts +10 -0
- package/src/svg-icon/close-icon/close-icon.component.html +10 -0
- package/src/svg-icon/close-icon/close-icon.component.scss +0 -0
- package/src/svg-icon/close-icon/close-icon.component.ts +8 -0
- package/src/svg-icon/edit-square-icon/edit-square-icon.component.html +10 -0
- package/src/svg-icon/edit-square-icon/edit-square-icon.component.scss +0 -0
- package/src/svg-icon/edit-square-icon/edit-square-icon.component.ts +8 -0
- package/src/svg-icon/pelak-icon/pelak-icon.component.html +32 -0
- package/src/svg-icon/pelak-icon/pelak-icon.component.scss +0 -0
- package/src/svg-icon/pelak-icon/pelak-icon.component.ts +8 -0
- package/src/svg-icon/search-icon/search-icon.component.html +10 -0
- package/src/svg-icon/search-icon/search-icon.component.scss +0 -0
- package/src/svg-icon/search-icon/search-icon.component.spec.ts +21 -0
- package/src/svg-icon/search-icon/search-icon.component.ts +8 -0
- package/src/svg-icon/sort-down-icon/sort-down-icon.component.html +5 -0
- package/src/svg-icon/sort-down-icon/sort-down-icon.component.scss +0 -0
- package/src/svg-icon/sort-down-icon/sort-down-icon.component.ts +10 -0
- package/src/svg-icon/sort-solid-icon/sort-solid-icon.component.html +5 -0
- package/src/svg-icon/sort-solid-icon/sort-solid-icon.component.scss +0 -0
- package/src/svg-icon/sort-solid-icon/sort-solid-icon.component.ts +8 -0
- package/src/svg-icon/sort-up-icon/sort-up-icon.component.html +5 -0
- package/src/svg-icon/sort-up-icon/sort-up-icon.component.scss +0 -0
- package/src/svg-icon/sort-up-icon/sort-up-icon.component.ts +8 -0
- package/src/svg-icon/time-icon/time-icon.component.html +10 -0
- package/src/svg-icon/time-icon/time-icon.component.scss +0 -0
- package/src/svg-icon/time-icon/time-icon.component.ts +8 -0
- package/src/svg-icon/warning-icon/warning-icon.component.html +10 -0
- package/src/svg-icon/warning-icon/warning-icon.component.scss +0 -0
- package/src/svg-icon/warning-icon/warning-icon.component.ts +10 -0
- package/src/utils/constants.ts +182 -0
- package/src/utils/directives/detail-viewer-manager.directive.ts +78 -0
- package/src/utils/directives/filterTableDirective.ts +36 -0
- package/src/utils/directives/table-detail-viewer-manager.directive.ts +57 -0
- package/src/utils/interfaces.ts +0 -0
- package/src/utils/jsonparser.ts +49 -0
- package/src/utils/links.ts +67 -0
- package/src/utils/toast.ts +35 -0
- package/src/utils/types.ts +20 -0
- package/src/utils/util.ts +32 -0
- package/styles.css +1 -1
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/environments/environment.d.ts +0 -4
- package/esm2022/environments/environment.mjs +0 -7
- package/esm2022/lib/core-auto-complete/core-auto-complete.component.mjs +0 -82
- package/esm2022/lib/core-btn/core-btn.component.mjs +0 -68
- package/esm2022/lib/core-card/core-card.component.mjs +0 -16
- package/esm2022/lib/core-checkbox/core-checkbox.component.mjs +0 -33
- package/esm2022/lib/core-confirm-dialog/core-confirm-dialog.component.mjs +0 -31
- package/esm2022/lib/core-date-picker/core-date-picker.component.mjs +0 -46
- package/esm2022/lib/core-input/core-input.component.mjs +0 -132
- package/esm2022/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.mjs +0 -28
- package/esm2022/lib/core-multi-select/core-multi-select.component.mjs +0 -145
- package/esm2022/lib/core-number/core-number.component.mjs +0 -64
- package/esm2022/lib/core-page-title/core-page-title.component.mjs +0 -19
- package/esm2022/lib/core-radio-buttons/core-radio-buttons.component.mjs +0 -75
- package/esm2022/lib/core-search-box/core-search-box.component.mjs +0 -25
- package/esm2022/lib/core-select/core-select.component.mjs +0 -92
- package/esm2022/lib/core-spinner/core-spinner.component.mjs +0 -23
- package/esm2022/lib/core-switch/core-switch.component.mjs +0 -33
- package/esm2022/lib/core-table/core-column-date-picker/core-column-date-picker.component.mjs +0 -62
- package/esm2022/lib/core-table/core-column-input/core-column-input.component.mjs +0 -43
- package/esm2022/lib/core-table/core-column-selector/core-column-selector.component.mjs +0 -100
- package/esm2022/lib/core-table/core-row-pelak/core-row-pelak.component.mjs +0 -21
- package/esm2022/lib/core-table/core-table/core-table.component.mjs +0 -182
- package/esm2022/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.mjs +0 -34
- package/esm2022/lib/core-table/core-table-action-column/core-table-action-column.component.mjs +0 -27
- package/esm2022/lib/core-table/core-table-card-manager/core-table-card-manager.component.mjs +0 -83
- package/esm2022/lib/core-table/core-table-column-manager/core-table-column-manager.component.mjs +0 -85
- package/esm2022/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.mjs +0 -29
- package/esm2022/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.mjs +0 -82
- package/esm2022/lib/core-table/core-table-no-content/core-table-no-content.component.mjs +0 -23
- package/esm2022/lib/core-table/core-table-no-content/core-table-no-content.label.mjs +0 -9
- package/esm2022/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.mjs +0 -68
- package/esm2022/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.mjs +0 -28
- package/esm2022/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.mjs +0 -20
- package/esm2022/lib/core-table/core-table-status-column/core-table-status-column.component.mjs +0 -18
- package/esm2022/lib/core-textarea/core-textarea.component.mjs +0 -47
- package/esm2022/lib/core-time-picker/core-time-picker.component.mjs +0 -118
- package/esm2022/lib/core-time-picker/time-picker-modal/time-picker-modal.component.mjs +0 -147
- package/esm2022/lib/falcon-lib.module.mjs +0 -252
- package/esm2022/lib/falconTypes.mjs +0 -9
- package/esm2022/lib/pipes/digit-group.pipe.mjs +0 -16
- package/esm2022/lib/pipes/form-control.pipe.mjs +0 -16
- package/esm2022/lib/pipes/persian-digits.pipe.mjs +0 -40
- package/esm2022/lib/pipes/price-format.pipe.mjs +0 -23
- package/esm2022/lib/pipes/shamsi-date.pipe.mjs +0 -24
- package/esm2022/lib/pipes/time-format.pipe.mjs +0 -28
- package/esm2022/lib/pipes/weight.pipe.mjs +0 -16
- package/esm2022/lib/wordify.mjs +0 -109
- package/esm2022/nira-falcon.mjs +0 -5
- package/esm2022/public-api.mjs +0 -31
- package/esm2022/svg-icon/arrow-down-icon/arrow-down-icon.component.mjs +0 -11
- package/esm2022/svg-icon/calendar-icon/calendar-icon.component.mjs +0 -11
- package/esm2022/svg-icon/caret-up-icon/caret-up-icon.component.mjs +0 -11
- package/esm2022/svg-icon/close-icon/close-icon.component.mjs +0 -11
- package/esm2022/svg-icon/edit-square-icon/edit-square-icon.component.mjs +0 -11
- package/esm2022/svg-icon/pelak-icon/pelak-icon.component.mjs +0 -11
- package/esm2022/svg-icon/search-icon/search-icon.component.mjs +0 -11
- package/esm2022/svg-icon/sort-down-icon/sort-down-icon.component.mjs +0 -11
- package/esm2022/svg-icon/sort-solid-icon/sort-solid-icon.component.mjs +0 -11
- package/esm2022/svg-icon/sort-up-icon/sort-up-icon.component.mjs +0 -11
- package/esm2022/svg-icon/time-icon/time-icon.component.mjs +0 -11
- package/esm2022/svg-icon/warning-icon/warning-icon.component.mjs +0 -11
- package/esm2022/utils/constants.mjs +0 -184
- package/esm2022/utils/directives/detail-viewer-manager.directive.mjs +0 -71
- package/esm2022/utils/directives/table-detail-viewer-manager.directive.mjs +0 -49
- package/esm2022/utils/util.mjs +0 -26
- package/fesm2022/nira-falcon.mjs +0 -2863
- package/fesm2022/nira-falcon.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/core-auto-complete/core-auto-complete.component.d.ts +0 -30
- package/lib/core-btn/core-btn.component.d.ts +0 -22
- package/lib/core-card/core-card.component.d.ts +0 -6
- package/lib/core-checkbox/core-checkbox.component.d.ts +0 -13
- package/lib/core-confirm-dialog/core-confirm-dialog.component.d.ts +0 -14
- package/lib/core-date-picker/core-date-picker.component.d.ts +0 -20
- package/lib/core-input/core-input.component.d.ts +0 -28
- package/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.d.ts +0 -11
- package/lib/core-multi-select/core-multi-select.component.d.ts +0 -43
- package/lib/core-number/core-number.component.d.ts +0 -12
- package/lib/core-page-title/core-page-title.component.d.ts +0 -7
- package/lib/core-radio-buttons/core-radio-buttons.component.d.ts +0 -29
- package/lib/core-search-box/core-search-box.component.d.ts +0 -10
- package/lib/core-select/core-select.component.d.ts +0 -36
- package/lib/core-spinner/core-spinner.component.d.ts +0 -9
- package/lib/core-switch/core-switch.component.d.ts +0 -17
- package/lib/core-table/core-column-date-picker/core-column-date-picker.component.d.ts +0 -21
- package/lib/core-table/core-column-input/core-column-input.component.d.ts +0 -16
- package/lib/core-table/core-column-selector/core-column-selector.component.d.ts +0 -35
- package/lib/core-table/core-row-pelak/core-row-pelak.component.d.ts +0 -8
- package/lib/core-table/core-table/core-table.component.d.ts +0 -42
- package/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.d.ts +0 -11
- package/lib/core-table/core-table-action-column/core-table-action-column.component.d.ts +0 -11
- package/lib/core-table/core-table-card-manager/core-table-card-manager.component.d.ts +0 -24
- package/lib/core-table/core-table-column-manager/core-table-column-manager.component.d.ts +0 -24
- package/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.d.ts +0 -11
- package/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.d.ts +0 -22
- package/lib/core-table/core-table-no-content/core-table-no-content.component.d.ts +0 -9
- package/lib/core-table/core-table-no-content/core-table-no-content.label.d.ts +0 -5
- package/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.d.ts +0 -14
- package/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.d.ts +0 -11
- package/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.d.ts +0 -8
- package/lib/core-table/core-table-status-column/core-table-status-column.component.d.ts +0 -7
- package/lib/core-textarea/core-textarea.component.d.ts +0 -13
- package/lib/core-time-picker/core-time-picker.component.d.ts +0 -26
- package/lib/core-time-picker/time-picker-modal/time-picker-modal.component.d.ts +0 -35
- package/lib/falcon-lib.module.d.ts +0 -66
- package/lib/falconTypes.d.ts +0 -23
- package/lib/pipes/digit-group.pipe.d.ts +0 -7
- package/lib/pipes/form-control.pipe.d.ts +0 -8
- package/lib/pipes/persian-digits.pipe.d.ts +0 -7
- package/lib/pipes/price-format.pipe.d.ts +0 -7
- package/lib/pipes/shamsi-date.pipe.d.ts +0 -9
- package/lib/pipes/time-format.pipe.d.ts +0 -7
- package/lib/pipes/weight.pipe.d.ts +0 -7
- package/lib/wordify.d.ts +0 -2
- package/svg-icon/arrow-down-icon/arrow-down-icon.component.d.ts +0 -5
- package/svg-icon/calendar-icon/calendar-icon.component.d.ts +0 -5
- package/svg-icon/caret-up-icon/caret-up-icon.component.d.ts +0 -5
- package/svg-icon/close-icon/close-icon.component.d.ts +0 -5
- package/svg-icon/edit-square-icon/edit-square-icon.component.d.ts +0 -5
- package/svg-icon/pelak-icon/pelak-icon.component.d.ts +0 -5
- package/svg-icon/search-icon/search-icon.component.d.ts +0 -5
- package/svg-icon/sort-down-icon/sort-down-icon.component.d.ts +0 -5
- package/svg-icon/sort-solid-icon/sort-solid-icon.component.d.ts +0 -5
- package/svg-icon/sort-up-icon/sort-up-icon.component.d.ts +0 -5
- package/svg-icon/time-icon/time-icon.component.d.ts +0 -5
- package/svg-icon/warning-icon/warning-icon.component.d.ts +0 -5
- package/utils/constants.d.ts +0 -70
- package/utils/directives/detail-viewer-manager.directive.d.ts +0 -18
- package/utils/directives/table-detail-viewer-manager.directive.d.ts +0 -16
- package/utils/util.d.ts +0 -11
package/index.d.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { MenuItem } from '../falconTypes';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CoreAutoCompleteComponent<T> implements OnInit {
|
|
5
|
-
private cdr;
|
|
6
|
-
selectedItem: MenuItem<T>;
|
|
7
|
-
titleKeyObject: keyof string | number;
|
|
8
|
-
valueKeyObject: keyof string | number;
|
|
9
|
-
filterItems: MenuItem<T>[];
|
|
10
|
-
newItems: MenuItem<T>[];
|
|
11
|
-
value: T;
|
|
12
|
-
isOpenMenu: boolean;
|
|
13
|
-
get _items(): MenuItem<T>[];
|
|
14
|
-
label: string;
|
|
15
|
-
titleKey: string;
|
|
16
|
-
valueKey: string;
|
|
17
|
-
items: any[];
|
|
18
|
-
set defaultValue(value: T);
|
|
19
|
-
onChange: EventEmitter<string>;
|
|
20
|
-
constructor(cdr: ChangeDetectorRef);
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
ngAfterViewInit(): void;
|
|
23
|
-
changeItemsType(items: any[]): MenuItem<T>[];
|
|
24
|
-
openMenuClick(): void;
|
|
25
|
-
onItemSelect(item: MenuItem<T> | undefined): void;
|
|
26
|
-
focusOut(): void;
|
|
27
|
-
onChanged(value: any): void;
|
|
28
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreAutoCompleteComponent<any>, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreAutoCompleteComponent<any>, "core-auto-complete", never, { "label": { "alias": "label"; "required": false; }; "titleKey": { "alias": "titleKey"; "required": false; }; "valueKey": { "alias": "valueKey"; "required": false; }; "items": { "alias": "items"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
30
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { NiraModalService } from 'nira-modal';
|
|
3
|
-
import { ButtonSize, ButtonType, ColorState, ConfirmDialog, ThemePalette } from '../falconTypes';
|
|
4
|
-
import { FormGroup } from '@angular/forms';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CoreBtnComponent {
|
|
7
|
-
private niraModalService;
|
|
8
|
-
disable: boolean;
|
|
9
|
-
formGroup: FormGroup | undefined;
|
|
10
|
-
loading: boolean;
|
|
11
|
-
theme: ThemePalette;
|
|
12
|
-
buttonType: ButtonType;
|
|
13
|
-
size: ButtonSize;
|
|
14
|
-
set isDisabled(value: boolean);
|
|
15
|
-
colorState: ColorState;
|
|
16
|
-
btnClicked: EventEmitter<any>;
|
|
17
|
-
confirmDialog: ConfirmDialog | undefined;
|
|
18
|
-
constructor(niraModalService: NiraModalService);
|
|
19
|
-
clicked(): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreBtnComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreBtnComponent, "core-btn", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "buttonType": { "alias": "buttonType"; "required": false; }; "size": { "alias": "size"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "colorState": { "alias": "colorState"; "required": false; }; "confirmDialog": { "alias": "confirmDialog"; "required": false; }; }, { "btnClicked": "btnClicked"; }, never, ["*"], false, never>;
|
|
22
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CoreCardComponent {
|
|
3
|
-
cardClass: string;
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreCardComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreCardComponent, "core-card", never, { "cardClass": { "alias": "cardClass"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
6
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CoreCheckboxComponent {
|
|
5
|
-
label: string;
|
|
6
|
-
name: string;
|
|
7
|
-
checked: boolean;
|
|
8
|
-
onChange: EventEmitter<any>;
|
|
9
|
-
inputFormControl: FormControl;
|
|
10
|
-
change(event: any): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreCheckboxComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreCheckboxComponent, "core-checkbox", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
13
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { IModal, NiraModalConfig } from 'nira-modal';
|
|
2
|
-
import { Subject } from 'rxjs';
|
|
3
|
-
import { ConfirmDialog } from '../falconTypes';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CoreConfirmDialogComponent implements IModal {
|
|
6
|
-
closeSubject: Subject<any>;
|
|
7
|
-
config: NiraModalConfig;
|
|
8
|
-
confirmDialog: ConfirmDialog;
|
|
9
|
-
ngOnInit(): Promise<void>;
|
|
10
|
-
close(): void;
|
|
11
|
-
confirm(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreConfirmDialogComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreConfirmDialogComponent, "app-core-confirm-dialog", never, { "closeSubject": { "alias": "closeSubject"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CoreDatePickerComponent implements OnInit {
|
|
5
|
-
private changeDetectorRef;
|
|
6
|
-
_inputFormControl: FormControl<string | null>;
|
|
7
|
-
canSelectToday: boolean;
|
|
8
|
-
defaultDate: string;
|
|
9
|
-
label: string;
|
|
10
|
-
set inputFormControl(value: FormControl);
|
|
11
|
-
isOpenCalendar: boolean;
|
|
12
|
-
date: string;
|
|
13
|
-
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
ngAfterViewInit(): void;
|
|
16
|
-
onDatePickerResult(result: string): void;
|
|
17
|
-
onTodayDate(todayDate: string): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreDatePickerComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreDatePickerComponent, "core-date-picker", never, { "canSelectToday": { "alias": "canSelectToday"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
type InputType = 'number' | 'password' | 'text';
|
|
5
|
-
export declare class CoreInputComponent {
|
|
6
|
-
inputType: InputType;
|
|
7
|
-
isDisable: boolean;
|
|
8
|
-
lastValue: string;
|
|
9
|
-
set type(value: InputType);
|
|
10
|
-
canShowWordifyFa: boolean;
|
|
11
|
-
canSplitNumber: boolean;
|
|
12
|
-
canHighlightBackground: boolean;
|
|
13
|
-
maxLength: number;
|
|
14
|
-
inputFormControl: FormControl;
|
|
15
|
-
set disable(value: boolean);
|
|
16
|
-
placeholder: string;
|
|
17
|
-
onChange: EventEmitter<string>;
|
|
18
|
-
onBlurEmit: EventEmitter<string>;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
change(event: any): void;
|
|
21
|
-
onPaste(event: any): void;
|
|
22
|
-
onBlur(): void;
|
|
23
|
-
onKeyPress(): boolean;
|
|
24
|
-
formatPrice(event: any): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreInputComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreInputComponent, "core-input", never, { "type": { "alias": "type"; "required": false; }; "canShowWordifyFa": { "alias": "canShowWordifyFa"; "required": false; }; "canSplitNumber": { "alias": "canSplitNumber"; "required": false; }; "canHighlightBackground": { "alias": "canHighlightBackground"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "onChange": "onChange"; "onBlurEmit": "onBlurEmit"; }, never, never, false, never>;
|
|
27
|
-
}
|
|
28
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CoreMultiSelectRowComponent {
|
|
4
|
-
set isSelected(value: boolean);
|
|
5
|
-
item: any;
|
|
6
|
-
onSelect: EventEmitter<boolean>;
|
|
7
|
-
_isSelected: boolean;
|
|
8
|
-
onItemSelect(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreMultiSelectRowComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreMultiSelectRowComponent, "app-core-multi-select-row", never, { "isSelected": { "alias": "isSelected"; "required": false; }; "item": { "alias": "item"; "required": false; }; }, { "onSelect": "onSelect"; }, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
interface ISelectedItemsDictionary {
|
|
5
|
-
[index: string]: any;
|
|
6
|
-
}
|
|
7
|
-
export declare class CoreMultiSelectComponent {
|
|
8
|
-
private cdr;
|
|
9
|
-
selectedItems: ISelectedItemsDictionary[];
|
|
10
|
-
newItems: any[];
|
|
11
|
-
isOpenMenu: boolean;
|
|
12
|
-
_items: any;
|
|
13
|
-
_defaultValue: never[];
|
|
14
|
-
_titleKey: any;
|
|
15
|
-
_valueKey: any;
|
|
16
|
-
initCounter: number;
|
|
17
|
-
hasTitleKey: boolean;
|
|
18
|
-
hasValueKey: boolean;
|
|
19
|
-
hasItems: boolean;
|
|
20
|
-
hasDefaultValue: boolean;
|
|
21
|
-
text: string;
|
|
22
|
-
set titleKey(data: any);
|
|
23
|
-
set valueKey(data: any);
|
|
24
|
-
set items(data: any);
|
|
25
|
-
set defaultValue(data: any);
|
|
26
|
-
label: string;
|
|
27
|
-
singleSelectItems: string[];
|
|
28
|
-
onItemSelected: EventEmitter<any[]>;
|
|
29
|
-
inputFormControl: FormControl;
|
|
30
|
-
get isSelectedItems(): boolean;
|
|
31
|
-
constructor(cdr: ChangeDetectorRef);
|
|
32
|
-
init(): void;
|
|
33
|
-
ngOnInit(): void;
|
|
34
|
-
ngAfterViewInit(): void;
|
|
35
|
-
onItemSelect(selectedItem: any, isFromUi: boolean): void;
|
|
36
|
-
showText(): void;
|
|
37
|
-
changeItemsType(items: any[]): any[];
|
|
38
|
-
openMenuClick(): void;
|
|
39
|
-
focusOut(): void;
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreMultiSelectComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreMultiSelectComponent, "core-multi-select", never, { "titleKey": { "alias": "titleKey"; "required": false; }; "valueKey": { "alias": "valueKey"; "required": false; }; "items": { "alias": "items"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": true; }; "label": { "alias": "label"; "required": false; }; "singleSelectItems": { "alias": "singleSelectItems"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; }, { "onItemSelected": "onItemSelected"; }, never, never, false, never>;
|
|
42
|
-
}
|
|
43
|
-
export {};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CoreNumberComponent {
|
|
3
|
-
number: number | string | undefined;
|
|
4
|
-
type: 'number' | 'word';
|
|
5
|
-
canSplitNumbers: boolean;
|
|
6
|
-
canShowWordInToolTip: boolean;
|
|
7
|
-
canShowIRR: boolean;
|
|
8
|
-
wordifyFa(number: string | number | undefined): string | number;
|
|
9
|
-
toolTipText(number: string | number | undefined): string;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreNumberComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreNumberComponent, "app-core-number", never, { "number": { "alias": "number"; "required": false; }; "type": { "alias": "type"; "required": false; }; "canSplitNumbers": { "alias": "canSplitNumbers"; "required": false; }; "canShowWordInToolTip": { "alias": "canShowWordInToolTip"; "required": false; }; "canShowIRR": { "alias": "canShowIRR"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CorePageTitleComponent {
|
|
3
|
-
title: string;
|
|
4
|
-
description: string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CorePageTitleComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CorePageTitleComponent, "core-page-title", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
type MenuItem<T> = {
|
|
4
|
-
title: T;
|
|
5
|
-
value: T;
|
|
6
|
-
};
|
|
7
|
-
type LayoutRadioButtons = 'row' | 'column';
|
|
8
|
-
export declare class CoreRadioButtonsComponent<T> {
|
|
9
|
-
selectedItem: MenuItem<T>;
|
|
10
|
-
titleKeyObject: keyof string | number;
|
|
11
|
-
valueKeyObject: keyof string | number;
|
|
12
|
-
_defaultValue: undefined;
|
|
13
|
-
newItems: MenuItem<T>[];
|
|
14
|
-
_items: any;
|
|
15
|
-
initCounter: number;
|
|
16
|
-
set items(data: any);
|
|
17
|
-
set defaultValue(data: any);
|
|
18
|
-
titleKey: string;
|
|
19
|
-
valueKey: string;
|
|
20
|
-
layout: LayoutRadioButtons;
|
|
21
|
-
name: string;
|
|
22
|
-
onChange: EventEmitter<string>;
|
|
23
|
-
changeItemsType(items: any[]): MenuItem<T>[];
|
|
24
|
-
init(): void;
|
|
25
|
-
onItemClick(item: MenuItem<T> | undefined): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreRadioButtonsComponent<any>, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreRadioButtonsComponent<any>, "core-radio-buttons", never, { "items": { "alias": "items"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": true; }; "titleKey": { "alias": "titleKey"; "required": false; }; "valueKey": { "alias": "valueKey"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
28
|
-
}
|
|
29
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CoreSearchBoxComponent {
|
|
4
|
-
placeholder: string;
|
|
5
|
-
onChange: EventEmitter<string>;
|
|
6
|
-
value: string;
|
|
7
|
-
change(event: any): void;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreSearchBoxComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreSearchBoxComponent, "core-search-box", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
10
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
type MenuItem<T> = {
|
|
5
|
-
title: T;
|
|
6
|
-
value: T;
|
|
7
|
-
};
|
|
8
|
-
export declare class CoreSelectComponent<T> {
|
|
9
|
-
private cdr;
|
|
10
|
-
selectedItem: MenuItem<T>;
|
|
11
|
-
titleKeyObject: keyof string | number;
|
|
12
|
-
valueKeyObject: keyof string | number;
|
|
13
|
-
newItems: MenuItem<T>[];
|
|
14
|
-
isOpenMenu: boolean;
|
|
15
|
-
_items: any;
|
|
16
|
-
_defaultValue: T;
|
|
17
|
-
titleKey: string;
|
|
18
|
-
valueKey: string;
|
|
19
|
-
canHighlightBackground: boolean;
|
|
20
|
-
set items(data: any);
|
|
21
|
-
set defaultValue(data: T);
|
|
22
|
-
label: string;
|
|
23
|
-
disabled: boolean;
|
|
24
|
-
onItemSelected: EventEmitter<any>;
|
|
25
|
-
inputFormControl: FormControl;
|
|
26
|
-
constructor(cdr: ChangeDetectorRef);
|
|
27
|
-
init(): void;
|
|
28
|
-
ngOnInit(): void;
|
|
29
|
-
changeItemsType(items: any[]): MenuItem<T>[];
|
|
30
|
-
openMenuClick(): void;
|
|
31
|
-
onItemSelect(selectedItem: MenuItem<T> | undefined, isFromUi: boolean): void;
|
|
32
|
-
focusOut(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreSelectComponent<any>, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreSelectComponent<any>, "core-select", never, { "titleKey": { "alias": "titleKey"; "required": false; }; "valueKey": { "alias": "valueKey"; "required": false; }; "canHighlightBackground": { "alias": "canHighlightBackground"; "required": false; }; "items": { "alias": "items"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; }, { "onItemSelected": "onItemSelected"; }, never, never, false, never>;
|
|
35
|
-
}
|
|
36
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ColorState } from '../falconTypes';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CoreSpinnerComponent {
|
|
4
|
-
size: number;
|
|
5
|
-
colorState: ColorState;
|
|
6
|
-
type: 'circle' | 'line';
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreSpinnerComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreSpinnerComponent, "core-spinner", never, { "size": { "alias": "size"; "required": false; }; "colorState": { "alias": "colorState"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
interface ISwitch {
|
|
4
|
-
iconActive: string;
|
|
5
|
-
iconInactive: string;
|
|
6
|
-
}
|
|
7
|
-
export declare class CoreSwitchComponent {
|
|
8
|
-
toggle: string;
|
|
9
|
-
value: EventEmitter<string>;
|
|
10
|
-
icon: ISwitch;
|
|
11
|
-
label: string;
|
|
12
|
-
set defaultValue(value: string);
|
|
13
|
-
change(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreSwitchComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreSwitchComponent, "core-switch", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; }, { "value": "value"; }, never, never, false, never>;
|
|
16
|
-
}
|
|
17
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl, FormGroup } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CoreColumnDatePickerComponent {
|
|
5
|
-
private changeDetectorRef;
|
|
6
|
-
canSelectToday: boolean;
|
|
7
|
-
defaultDate: string;
|
|
8
|
-
inputFormControl: FormControl;
|
|
9
|
-
onChange: EventEmitter<any>;
|
|
10
|
-
niraDatePickerForm: FormGroup;
|
|
11
|
-
isOpenCalendar: boolean;
|
|
12
|
-
date: string;
|
|
13
|
-
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
ngAfterViewInit(): void;
|
|
16
|
-
clearedText(): void;
|
|
17
|
-
onDatePickerResult(result: string): void;
|
|
18
|
-
onTodayDate(todayDate: string): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreColumnDatePickerComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreColumnDatePickerComponent, "core-column-date-picker", never, { "canSelectToday": { "alias": "canSelectToday"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
21
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { InputType } from '../../falconTypes';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CoreColumnInputComponent {
|
|
5
|
-
inputType: InputType;
|
|
6
|
-
showRemoveIcon: boolean;
|
|
7
|
-
placeholder: string;
|
|
8
|
-
onChange: EventEmitter<string>;
|
|
9
|
-
value: string;
|
|
10
|
-
set type(value: InputType);
|
|
11
|
-
isDatePicker: boolean;
|
|
12
|
-
maxLength: number;
|
|
13
|
-
change(event: any): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreColumnInputComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreColumnInputComponent, "core-column-input", never, { "showRemoveIcon": { "alias": "showRemoveIcon"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "type": { "alias": "type"; "required": false; }; "isDatePicker": { "alias": "isDatePicker"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
|
|
16
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import { MenuItem } from '../../falconTypes';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CoreColumnSelectorComponent<T> {
|
|
6
|
-
private cdr;
|
|
7
|
-
selectedItem: MenuItem<T>;
|
|
8
|
-
newItems: MenuItem<T>[];
|
|
9
|
-
isOpenMenu: boolean;
|
|
10
|
-
_items: any[];
|
|
11
|
-
set items(data: any);
|
|
12
|
-
_defaultValue: undefined;
|
|
13
|
-
_titleKey: T;
|
|
14
|
-
_valueKey: T;
|
|
15
|
-
initCounter: number;
|
|
16
|
-
hasTitleKey: boolean;
|
|
17
|
-
hasValueKey: boolean;
|
|
18
|
-
hasItems: boolean;
|
|
19
|
-
hasDefaultValue: boolean;
|
|
20
|
-
set titleKey(data: T);
|
|
21
|
-
set valueKey(data: T);
|
|
22
|
-
label: string;
|
|
23
|
-
onItemSelected: EventEmitter<any>;
|
|
24
|
-
inputFormControl: FormControl;
|
|
25
|
-
constructor(cdr: ChangeDetectorRef);
|
|
26
|
-
init(): void;
|
|
27
|
-
ngAfterViewInit(): void;
|
|
28
|
-
changeItemsType(items: any[]): MenuItem<T>[];
|
|
29
|
-
openMenuClick(): void;
|
|
30
|
-
onItemSelect(selectedItem: MenuItem<T>, isFromUi: boolean): void;
|
|
31
|
-
focusOut(): void;
|
|
32
|
-
removedText(): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreColumnSelectorComponent<any>, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreColumnSelectorComponent<any>, "core-column-selector", never, { "items": { "alias": "items"; "required": false; }; "titleKey": { "alias": "titleKey"; "required": false; }; "valueKey": { "alias": "valueKey"; "required": false; }; "label": { "alias": "label"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; }, { "onItemSelected": "onItemSelected"; }, never, never, false, never>;
|
|
35
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CoreRowPelakComponent {
|
|
3
|
-
data: any;
|
|
4
|
-
column: any;
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreRowPelakComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreRowPelakComponent, "app-core-row-pelak", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { BehaviorSubject } from 'rxjs';
|
|
3
|
-
import { NgxIndexedDBService } from 'ngx-indexed-db';
|
|
4
|
-
import { COLUMNS_TYPES } from '../../../utils/constants';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CoreTableComponent {
|
|
7
|
-
private dbService;
|
|
8
|
-
key: string | undefined;
|
|
9
|
-
columnsSchema: any;
|
|
10
|
-
tableData: BehaviorSubject<any[]>;
|
|
11
|
-
responsive: boolean;
|
|
12
|
-
loading: any;
|
|
13
|
-
canFilter: boolean;
|
|
14
|
-
styleFilter: ((data: any) => string) | undefined;
|
|
15
|
-
rowSelector: BehaviorSubject<any> | undefined;
|
|
16
|
-
onColumnClicked: EventEmitter<any>;
|
|
17
|
-
ACTIVE_OPTIONS: {
|
|
18
|
-
title: string;
|
|
19
|
-
value: boolean;
|
|
20
|
-
}[];
|
|
21
|
-
YES_NO_OPTIONS: {
|
|
22
|
-
title: string;
|
|
23
|
-
value: boolean;
|
|
24
|
-
}[];
|
|
25
|
-
sortDetail: {
|
|
26
|
-
key: string;
|
|
27
|
-
sort: 'asc' | 'desc';
|
|
28
|
-
} | undefined;
|
|
29
|
-
sortedTableData: any[];
|
|
30
|
-
dbTableFilter: any;
|
|
31
|
-
get columnsTypes(): typeof COLUMNS_TYPES;
|
|
32
|
-
get isRunningOnSmallScreen(): boolean;
|
|
33
|
-
constructor(dbService: NgxIndexedDBService);
|
|
34
|
-
ngOnInit(): void;
|
|
35
|
-
setTableFilter(): void;
|
|
36
|
-
columnClicked(val: any): void;
|
|
37
|
-
sortByHeader(column: any): void;
|
|
38
|
-
activeColumnsSchema(): any[];
|
|
39
|
-
tableDataFiltered(text: String | boolean, column: any): void;
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableComponent, "core-table", never, { "key": { "alias": "key"; "required": false; }; "columnsSchema": { "alias": "columnsSchema"; "required": true; }; "tableData": { "alias": "tableData"; "required": true; }; "responsive": { "alias": "responsive"; "required": false; }; "loading": { "alias": "loading"; "required": true; }; "canFilter": { "alias": "canFilter"; "required": false; }; "styleFilter": { "alias": "styleFilter"; "required": false; }; "rowSelector": { "alias": "rowSelector"; "required": false; }; }, { "onColumnClicked": "onColumnClicked"; }, never, never, false, never>;
|
|
42
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CoreTableActionButtonsColumnComponent {
|
|
4
|
-
data: any;
|
|
5
|
-
column: any;
|
|
6
|
-
onClick: EventEmitter<any>;
|
|
7
|
-
clicked(key: string): void;
|
|
8
|
-
checkFilter(column: any): any;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableActionButtonsColumnComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableActionButtonsColumnComponent, "app-core-table-action-buttons-column", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; }, { "onClick": "onClick"; }, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { NiraModalService } from 'nira-modal';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CoreTableActionColumnComponent {
|
|
4
|
-
private niraModalService;
|
|
5
|
-
data: any;
|
|
6
|
-
column: any;
|
|
7
|
-
constructor(niraModalService: NiraModalService);
|
|
8
|
-
openDialog(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableActionColumnComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableActionColumnComponent, "app-core-table-action-column", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { NiraSnackBarService } from 'nira-snack-bar';
|
|
3
|
-
import { COLUMNS_TYPES } from '../../../utils/constants';
|
|
4
|
-
import { BehaviorSubject } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CoreTableCardManagerComponent {
|
|
7
|
-
private niraSnackBar;
|
|
8
|
-
data: any;
|
|
9
|
-
column: any;
|
|
10
|
-
allTableData: any;
|
|
11
|
-
rowSelector: BehaviorSubject<any> | undefined;
|
|
12
|
-
onColumnClicked: EventEmitter<any>;
|
|
13
|
-
get columnsTypes(): typeof COLUMNS_TYPES;
|
|
14
|
-
constructor(niraSnackBar: NiraSnackBarService);
|
|
15
|
-
getSelectorData(data: any, key: string): any;
|
|
16
|
-
onTextColumnClicked(column: any, data: string): void;
|
|
17
|
-
clicked(val: any): void;
|
|
18
|
-
combinedData(detailViewer: any, data: any): {
|
|
19
|
-
detailViewer: any;
|
|
20
|
-
data: any;
|
|
21
|
-
};
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableCardManagerComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableCardManagerComponent, "app-core-table-card-manager", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; "allTableData": { "alias": "allTableData"; "required": true; }; "rowSelector": { "alias": "rowSelector"; "required": false; }; }, { "onColumnClicked": "onColumnClicked"; }, never, ["*"], false, never>;
|
|
24
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { NiraSnackBarService } from 'nira-snack-bar';
|
|
3
|
-
import { COLUMNS_TYPES } from '../../../utils/constants';
|
|
4
|
-
import { BehaviorSubject } from 'rxjs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CoreTableColumnManagerComponent {
|
|
7
|
-
private niraSnackBar;
|
|
8
|
-
data: any;
|
|
9
|
-
column: any;
|
|
10
|
-
allTableData: any;
|
|
11
|
-
rowSelector: BehaviorSubject<any> | undefined;
|
|
12
|
-
onColumnClicked: EventEmitter<any>;
|
|
13
|
-
get columnsTypes(): typeof COLUMNS_TYPES;
|
|
14
|
-
constructor(niraSnackBar: NiraSnackBarService);
|
|
15
|
-
getSelectorData(data: any, key: string): any;
|
|
16
|
-
onTextColumnClicked(column: any, data: string): void;
|
|
17
|
-
clicked(val: any): void;
|
|
18
|
-
combinedData(detailViewer: any, data: any): {
|
|
19
|
-
detailViewer: any;
|
|
20
|
-
data: any;
|
|
21
|
-
};
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableColumnManagerComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableColumnManagerComponent, "app-core-table-column-manager", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; "allTableData": { "alias": "allTableData"; "required": true; }; "rowSelector": { "alias": "rowSelector"; "required": false; }; }, { "onColumnClicked": "onColumnClicked"; }, never, ["*"], false, never>;
|
|
24
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CoreTableDetailViewerForReportComponent {
|
|
3
|
-
data: any;
|
|
4
|
-
column: any;
|
|
5
|
-
get detailViewers(): any;
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
hasDetailViewers(): any;
|
|
8
|
-
onClick(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableDetailViewerForReportComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableDetailViewerForReportComponent, "core-table-detail-viewer-for-report", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { NgxIndexedDBService } from 'ngx-indexed-db';
|
|
2
|
-
import { IModal, NiraModalConfig } from 'nira-modal';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CoreTableFilterDialogComponent implements IModal {
|
|
6
|
-
private dbService;
|
|
7
|
-
closeSubject: Subject<any>;
|
|
8
|
-
config: NiraModalConfig;
|
|
9
|
-
key: string;
|
|
10
|
-
columnsSchema: any[];
|
|
11
|
-
dbTableFilter: any;
|
|
12
|
-
constructor(dbService: NgxIndexedDBService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
onCheckboxClicked(selectedColumn: any, event: any): void;
|
|
15
|
-
getDbTableFilter(): void;
|
|
16
|
-
saveTableFilter(): void;
|
|
17
|
-
setTableFilter(): void;
|
|
18
|
-
submitBtn(): void;
|
|
19
|
-
close(): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableFilterDialogComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableFilterDialogComponent, "app-core-table-filter-dialog", never, { "closeSubject": { "alias": "closeSubject"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class CoreTableNoContentComponent {
|
|
3
|
-
labels: import("./core-table-no-content.label").ITabelNoContent;
|
|
4
|
-
tableData: any;
|
|
5
|
-
loading: any;
|
|
6
|
-
constructor();
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableNoContentComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableNoContentComponent, "core-table-no-content", never, { "tableData": { "alias": "tableData"; "required": true; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
-
}
|
package/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CoreTableRowSelectorColumnComponent {
|
|
4
|
-
checked: boolean;
|
|
5
|
-
data: any;
|
|
6
|
-
column: any;
|
|
7
|
-
allTableData: any;
|
|
8
|
-
rowSelector: BehaviorSubject<any> | undefined;
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
change(event: any): void;
|
|
11
|
-
oncontextmenu(event: any): Promise<void>;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableRowSelectorColumnComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableRowSelectorColumnComponent, "app-core-table-row-selector-column", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; "allTableData": { "alias": "allTableData"; "required": true; }; "rowSelector": { "alias": "rowSelector"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
-
}
|