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.
Files changed (318) hide show
  1. package/README.md +24 -24
  2. package/ng-package.json +7 -0
  3. package/package copy.json +13 -0
  4. package/package.json +13 -26
  5. package/src/assets/images/hub-dashboard-title-bg.png +0 -0
  6. package/src/assets/images/iran.png +0 -0
  7. package/src/environments/environment.ts +7 -0
  8. package/src/lib/core-auto-complete/core-auto-complete.component.html +30 -0
  9. package/src/lib/core-auto-complete/core-auto-complete.component.scss +89 -0
  10. package/src/lib/core-auto-complete/core-auto-complete.component.ts +92 -0
  11. package/src/lib/core-btn/core-btn-bluebird.component.html +21 -0
  12. package/src/lib/core-btn/core-btn-bluebird.component.scss +123 -0
  13. package/src/lib/core-btn/core-btn-falcon.component.html +20 -0
  14. package/src/lib/core-btn/core-btn-falcon.component.scss +115 -0
  15. package/src/lib/core-btn/core-btn.component.ts +54 -0
  16. package/src/lib/core-card/core-card.component.html +3 -0
  17. package/src/lib/core-card/core-card.component.scss +0 -0
  18. package/src/lib/core-card/core-card.component.ts +10 -0
  19. package/src/lib/core-checkbox/core-checkbox.component.html +9 -0
  20. package/src/lib/core-checkbox/core-checkbox.component.scss +60 -0
  21. package/src/lib/core-checkbox/core-checkbox.component.ts +19 -0
  22. package/src/lib/core-confirm-dialog/core-confirm-dialog.component.html +28 -0
  23. package/src/lib/core-confirm-dialog/core-confirm-dialog.component.scss +131 -0
  24. package/src/lib/core-confirm-dialog/core-confirm-dialog.component.ts +29 -0
  25. package/src/lib/core-date-picker/core-date-picker-bluebird.component.html +15 -0
  26. package/src/lib/core-date-picker/core-date-picker-bluebird.component.scss +0 -0
  27. package/src/lib/core-date-picker/core-date-picker-falcon.component.html +14 -0
  28. package/src/lib/core-date-picker/core-date-picker-falcon.component.scss +0 -0
  29. package/src/lib/core-date-picker/core-date-picker.component.ts +44 -0
  30. package/src/lib/core-input/core-input-bluebird.component.html +95 -0
  31. package/src/lib/core-input/core-input-bluebird.component.scss +152 -0
  32. package/src/lib/core-input/core-input-falcon.component.html +90 -0
  33. package/src/lib/core-input/core-input-falcon.component.scss +141 -0
  34. package/src/lib/core-input/core-input.component.ts +112 -0
  35. package/src/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.html +3 -0
  36. package/src/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.scss +15 -0
  37. package/src/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.ts +19 -0
  38. package/src/lib/core-multi-select/core-multi-select.component.html +41 -0
  39. package/src/lib/core-multi-select/core-multi-select.component.scss +119 -0
  40. package/src/lib/core-multi-select/core-multi-select.component.ts +139 -0
  41. package/src/lib/core-number/core-number.component.html +3 -0
  42. package/src/lib/core-number/core-number.component.scss +1 -0
  43. package/src/lib/core-number/core-number.component.ts +45 -0
  44. package/src/lib/core-page-title/core-page-title.component.html +14 -0
  45. package/src/lib/core-page-title/core-page-title.component.scss +16 -0
  46. package/src/lib/core-page-title/core-page-title.component.ts +11 -0
  47. package/src/lib/core-radio-buttons/core-radio-buttons.component.html +17 -0
  48. package/src/lib/core-radio-buttons/core-radio-buttons.component.scss +46 -0
  49. package/src/lib/core-radio-buttons/core-radio-buttons.component.spec.ts +21 -0
  50. package/src/lib/core-radio-buttons/core-radio-buttons.component.ts +64 -0
  51. package/src/lib/core-search-box/core-search-box.component.html +14 -0
  52. package/src/lib/core-search-box/core-search-box.component.scss +37 -0
  53. package/src/lib/core-search-box/core-search-box.component.ts +15 -0
  54. package/src/lib/core-select/core-select-bluebird.component.html +57 -0
  55. package/src/lib/core-select/core-select-bluebird.component.scss +129 -0
  56. package/src/lib/core-select/core-select-falcon.component.html +56 -0
  57. package/src/lib/core-select/core-select-falcon.component.scss +123 -0
  58. package/src/lib/core-select/core-select.component.spec.ts +21 -0
  59. package/src/lib/core-select/core-select.component.ts +93 -0
  60. package/src/lib/core-spinner/core-spinner.component.html +14 -0
  61. package/src/lib/core-spinner/core-spinner.component.scss +162 -0
  62. package/src/lib/core-spinner/core-spinner.component.ts +13 -0
  63. package/src/lib/core-switch/core-switch.component.html +13 -0
  64. package/src/lib/core-switch/core-switch.component.scss +58 -0
  65. package/src/lib/core-switch/core-switch.component.spec.ts +21 -0
  66. package/src/lib/core-switch/core-switch.component.ts +28 -0
  67. package/src/lib/core-table/core-column-date-picker/core-column-date-picker.component.html +21 -0
  68. package/src/lib/core-table/core-column-date-picker/core-column-date-picker.component.scss +3 -0
  69. package/src/lib/core-table/core-column-date-picker/core-column-date-picker.component.ts +55 -0
  70. package/src/lib/core-table/core-column-input/core-column-input.component.html +17 -0
  71. package/src/lib/core-table/core-column-input/core-column-input.component.scss +21 -0
  72. package/src/lib/core-table/core-column-input/core-column-input.component.ts +23 -0
  73. package/src/lib/core-table/core-column-selector/core-column-selector.component.html +47 -0
  74. package/src/lib/core-table/core-column-selector/core-column-selector.component.scss +113 -0
  75. package/src/lib/core-table/core-column-selector/core-column-selector.component.ts +94 -0
  76. package/src/lib/core-table/core-row-pelak/core-row-pelak.component.html +12 -0
  77. package/src/lib/core-table/core-row-pelak/core-row-pelak.component.scss +21 -0
  78. package/src/lib/core-table/core-row-pelak/core-row-pelak.component.ts +12 -0
  79. package/src/lib/core-table/core-table/core-table.component.html +168 -0
  80. package/src/lib/core-table/core-table/core-table.component.scss +65 -0
  81. package/src/lib/core-table/core-table/core-table.component.ts +179 -0
  82. package/src/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.html +10 -0
  83. package/src/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.scss +3 -0
  84. package/src/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.ts +24 -0
  85. package/src/lib/core-table/core-table-action-column/core-table-action-column.component.html +6 -0
  86. package/src/lib/core-table/core-table-action-column/core-table-action-column.component.scss +3 -0
  87. package/src/lib/core-table/core-table-action-column/core-table-action-column.component.ts +19 -0
  88. package/src/lib/core-table/core-table-card-manager/core-table-card-manager.component.html +94 -0
  89. package/src/lib/core-table/core-table-card-manager/core-table-card-manager.component.scss +0 -0
  90. package/src/lib/core-table/core-table-card-manager/core-table-card-manager.component.ts +58 -0
  91. package/src/lib/core-table/core-table-column-manager/core-table-column-manager.component.html +99 -0
  92. package/src/lib/core-table/core-table-column-manager/core-table-column-manager.component.scss +0 -0
  93. package/src/lib/core-table/core-table-column-manager/core-table-column-manager.component.ts +59 -0
  94. package/src/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.html +5 -0
  95. package/src/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.scss +8 -0
  96. package/src/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.ts +28 -0
  97. package/src/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.html +24 -0
  98. package/src/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.scss +10 -0
  99. package/src/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.ts +76 -0
  100. package/src/lib/core-table/core-table-no-content/core-table-no-content.component.html +6 -0
  101. package/src/lib/core-table/core-table-no-content/core-table-no-content.component.scss +7 -0
  102. package/src/lib/core-table/core-table-no-content/core-table-no-content.component.ts +14 -0
  103. package/src/lib/core-table/core-table-no-content/core-table-no-content.label.ts +14 -0
  104. package/src/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.html +5 -0
  105. package/src/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.scss +0 -0
  106. package/src/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.ts +60 -0
  107. package/src/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.html +3 -0
  108. package/src/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.scss +0 -0
  109. package/src/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.ts +24 -0
  110. package/src/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.html +3 -0
  111. package/src/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.scss +14 -0
  112. package/src/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.ts +14 -0
  113. package/src/lib/core-table/core-table-status-column/core-table-status-column.component.html +3 -0
  114. package/src/lib/core-table/core-table-status-column/core-table-status-column.component.scss +14 -0
  115. package/src/lib/core-table/core-table-status-column/core-table-status-column.component.ts +11 -0
  116. package/src/lib/core-textarea/core-textarea.component.html +18 -0
  117. package/src/lib/core-textarea/core-textarea.component.scss +62 -0
  118. package/src/lib/core-textarea/core-textarea.component.ts +31 -0
  119. package/src/lib/core-time-picker/core-time-picker.component.html +51 -0
  120. package/src/lib/core-time-picker/core-time-picker.component.scss +144 -0
  121. package/src/lib/core-time-picker/core-time-picker.component.ts +102 -0
  122. package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.html +50 -0
  123. package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.scss +424 -0
  124. package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.spec.ts +21 -0
  125. package/src/lib/core-time-picker/time-picker-modal/time-picker-modal.component.ts +172 -0
  126. package/src/lib/falcon-lib.module.ts +157 -0
  127. package/src/lib/falconTypes.ts +35 -0
  128. package/src/lib/pipes/digit-group.pipe.ts +10 -0
  129. package/src/lib/pipes/form-control.pipe.ts +11 -0
  130. package/src/lib/pipes/persian-digits.pipe.ts +33 -0
  131. package/src/lib/pipes/price-format.pipe.ts +20 -0
  132. package/src/lib/pipes/shamsi-date.pipe.ts +24 -0
  133. package/src/lib/pipes/time-format.pipe.ts +21 -0
  134. package/src/lib/pipes/weight.pipe.ts +10 -0
  135. package/src/lib/wordify.ts +116 -0
  136. package/{public-api.d.ts → src/public-api.ts} +31 -27
  137. package/src/svg-icon/arrow-down-icon/arrow-down-icon.component.html +8 -0
  138. package/src/svg-icon/arrow-down-icon/arrow-down-icon.component.scss +0 -0
  139. package/src/svg-icon/arrow-down-icon/arrow-down-icon.component.ts +8 -0
  140. package/src/svg-icon/calendar-icon/calendar-icon.component.html +10 -0
  141. package/src/svg-icon/calendar-icon/calendar-icon.component.scss +0 -0
  142. package/src/svg-icon/calendar-icon/calendar-icon.component.ts +8 -0
  143. package/src/svg-icon/caret-up-icon/caret-up-icon.component.html +16 -0
  144. package/src/svg-icon/caret-up-icon/caret-up-icon.component.scss +0 -0
  145. package/src/svg-icon/caret-up-icon/caret-up-icon.component.ts +10 -0
  146. package/src/svg-icon/close-icon/close-icon.component.html +10 -0
  147. package/src/svg-icon/close-icon/close-icon.component.scss +0 -0
  148. package/src/svg-icon/close-icon/close-icon.component.ts +8 -0
  149. package/src/svg-icon/edit-square-icon/edit-square-icon.component.html +10 -0
  150. package/src/svg-icon/edit-square-icon/edit-square-icon.component.scss +0 -0
  151. package/src/svg-icon/edit-square-icon/edit-square-icon.component.ts +8 -0
  152. package/src/svg-icon/pelak-icon/pelak-icon.component.html +32 -0
  153. package/src/svg-icon/pelak-icon/pelak-icon.component.scss +0 -0
  154. package/src/svg-icon/pelak-icon/pelak-icon.component.ts +8 -0
  155. package/src/svg-icon/search-icon/search-icon.component.html +10 -0
  156. package/src/svg-icon/search-icon/search-icon.component.scss +0 -0
  157. package/src/svg-icon/search-icon/search-icon.component.spec.ts +21 -0
  158. package/src/svg-icon/search-icon/search-icon.component.ts +8 -0
  159. package/src/svg-icon/sort-down-icon/sort-down-icon.component.html +5 -0
  160. package/src/svg-icon/sort-down-icon/sort-down-icon.component.scss +0 -0
  161. package/src/svg-icon/sort-down-icon/sort-down-icon.component.ts +10 -0
  162. package/src/svg-icon/sort-solid-icon/sort-solid-icon.component.html +5 -0
  163. package/src/svg-icon/sort-solid-icon/sort-solid-icon.component.scss +0 -0
  164. package/src/svg-icon/sort-solid-icon/sort-solid-icon.component.ts +8 -0
  165. package/src/svg-icon/sort-up-icon/sort-up-icon.component.html +5 -0
  166. package/src/svg-icon/sort-up-icon/sort-up-icon.component.scss +0 -0
  167. package/src/svg-icon/sort-up-icon/sort-up-icon.component.ts +8 -0
  168. package/src/svg-icon/time-icon/time-icon.component.html +10 -0
  169. package/src/svg-icon/time-icon/time-icon.component.scss +0 -0
  170. package/src/svg-icon/time-icon/time-icon.component.ts +8 -0
  171. package/src/svg-icon/warning-icon/warning-icon.component.html +10 -0
  172. package/src/svg-icon/warning-icon/warning-icon.component.scss +0 -0
  173. package/src/svg-icon/warning-icon/warning-icon.component.ts +10 -0
  174. package/src/utils/constants.ts +182 -0
  175. package/src/utils/directives/detail-viewer-manager.directive.ts +78 -0
  176. package/src/utils/directives/filterTableDirective.ts +36 -0
  177. package/src/utils/directives/table-detail-viewer-manager.directive.ts +57 -0
  178. package/src/utils/interfaces.ts +0 -0
  179. package/src/utils/jsonparser.ts +49 -0
  180. package/src/utils/links.ts +67 -0
  181. package/src/utils/toast.ts +35 -0
  182. package/src/utils/types.ts +20 -0
  183. package/src/utils/util.ts +32 -0
  184. package/styles.css +1 -1
  185. package/tsconfig.lib.json +14 -0
  186. package/tsconfig.lib.prod.json +10 -0
  187. package/tsconfig.spec.json +14 -0
  188. package/environments/environment.d.ts +0 -4
  189. package/esm2022/environments/environment.mjs +0 -7
  190. package/esm2022/lib/core-auto-complete/core-auto-complete.component.mjs +0 -82
  191. package/esm2022/lib/core-btn/core-btn.component.mjs +0 -68
  192. package/esm2022/lib/core-card/core-card.component.mjs +0 -16
  193. package/esm2022/lib/core-checkbox/core-checkbox.component.mjs +0 -33
  194. package/esm2022/lib/core-confirm-dialog/core-confirm-dialog.component.mjs +0 -31
  195. package/esm2022/lib/core-date-picker/core-date-picker.component.mjs +0 -46
  196. package/esm2022/lib/core-input/core-input.component.mjs +0 -132
  197. package/esm2022/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.mjs +0 -28
  198. package/esm2022/lib/core-multi-select/core-multi-select.component.mjs +0 -145
  199. package/esm2022/lib/core-number/core-number.component.mjs +0 -64
  200. package/esm2022/lib/core-page-title/core-page-title.component.mjs +0 -19
  201. package/esm2022/lib/core-radio-buttons/core-radio-buttons.component.mjs +0 -75
  202. package/esm2022/lib/core-search-box/core-search-box.component.mjs +0 -25
  203. package/esm2022/lib/core-select/core-select.component.mjs +0 -92
  204. package/esm2022/lib/core-spinner/core-spinner.component.mjs +0 -23
  205. package/esm2022/lib/core-switch/core-switch.component.mjs +0 -33
  206. package/esm2022/lib/core-table/core-column-date-picker/core-column-date-picker.component.mjs +0 -62
  207. package/esm2022/lib/core-table/core-column-input/core-column-input.component.mjs +0 -43
  208. package/esm2022/lib/core-table/core-column-selector/core-column-selector.component.mjs +0 -100
  209. package/esm2022/lib/core-table/core-row-pelak/core-row-pelak.component.mjs +0 -21
  210. package/esm2022/lib/core-table/core-table/core-table.component.mjs +0 -182
  211. package/esm2022/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.mjs +0 -34
  212. package/esm2022/lib/core-table/core-table-action-column/core-table-action-column.component.mjs +0 -27
  213. package/esm2022/lib/core-table/core-table-card-manager/core-table-card-manager.component.mjs +0 -83
  214. package/esm2022/lib/core-table/core-table-column-manager/core-table-column-manager.component.mjs +0 -85
  215. package/esm2022/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.mjs +0 -29
  216. package/esm2022/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.mjs +0 -82
  217. package/esm2022/lib/core-table/core-table-no-content/core-table-no-content.component.mjs +0 -23
  218. package/esm2022/lib/core-table/core-table-no-content/core-table-no-content.label.mjs +0 -9
  219. package/esm2022/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.mjs +0 -68
  220. package/esm2022/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.mjs +0 -28
  221. package/esm2022/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.mjs +0 -20
  222. package/esm2022/lib/core-table/core-table-status-column/core-table-status-column.component.mjs +0 -18
  223. package/esm2022/lib/core-textarea/core-textarea.component.mjs +0 -47
  224. package/esm2022/lib/core-time-picker/core-time-picker.component.mjs +0 -118
  225. package/esm2022/lib/core-time-picker/time-picker-modal/time-picker-modal.component.mjs +0 -147
  226. package/esm2022/lib/falcon-lib.module.mjs +0 -252
  227. package/esm2022/lib/falconTypes.mjs +0 -9
  228. package/esm2022/lib/pipes/digit-group.pipe.mjs +0 -16
  229. package/esm2022/lib/pipes/form-control.pipe.mjs +0 -16
  230. package/esm2022/lib/pipes/persian-digits.pipe.mjs +0 -40
  231. package/esm2022/lib/pipes/price-format.pipe.mjs +0 -23
  232. package/esm2022/lib/pipes/shamsi-date.pipe.mjs +0 -24
  233. package/esm2022/lib/pipes/time-format.pipe.mjs +0 -28
  234. package/esm2022/lib/pipes/weight.pipe.mjs +0 -16
  235. package/esm2022/lib/wordify.mjs +0 -109
  236. package/esm2022/nira-falcon.mjs +0 -5
  237. package/esm2022/public-api.mjs +0 -31
  238. package/esm2022/svg-icon/arrow-down-icon/arrow-down-icon.component.mjs +0 -11
  239. package/esm2022/svg-icon/calendar-icon/calendar-icon.component.mjs +0 -11
  240. package/esm2022/svg-icon/caret-up-icon/caret-up-icon.component.mjs +0 -11
  241. package/esm2022/svg-icon/close-icon/close-icon.component.mjs +0 -11
  242. package/esm2022/svg-icon/edit-square-icon/edit-square-icon.component.mjs +0 -11
  243. package/esm2022/svg-icon/pelak-icon/pelak-icon.component.mjs +0 -11
  244. package/esm2022/svg-icon/search-icon/search-icon.component.mjs +0 -11
  245. package/esm2022/svg-icon/sort-down-icon/sort-down-icon.component.mjs +0 -11
  246. package/esm2022/svg-icon/sort-solid-icon/sort-solid-icon.component.mjs +0 -11
  247. package/esm2022/svg-icon/sort-up-icon/sort-up-icon.component.mjs +0 -11
  248. package/esm2022/svg-icon/time-icon/time-icon.component.mjs +0 -11
  249. package/esm2022/svg-icon/warning-icon/warning-icon.component.mjs +0 -11
  250. package/esm2022/utils/constants.mjs +0 -184
  251. package/esm2022/utils/directives/detail-viewer-manager.directive.mjs +0 -71
  252. package/esm2022/utils/directives/table-detail-viewer-manager.directive.mjs +0 -49
  253. package/esm2022/utils/util.mjs +0 -26
  254. package/fesm2022/nira-falcon.mjs +0 -2863
  255. package/fesm2022/nira-falcon.mjs.map +0 -1
  256. package/index.d.ts +0 -5
  257. package/lib/core-auto-complete/core-auto-complete.component.d.ts +0 -30
  258. package/lib/core-btn/core-btn.component.d.ts +0 -22
  259. package/lib/core-card/core-card.component.d.ts +0 -6
  260. package/lib/core-checkbox/core-checkbox.component.d.ts +0 -13
  261. package/lib/core-confirm-dialog/core-confirm-dialog.component.d.ts +0 -14
  262. package/lib/core-date-picker/core-date-picker.component.d.ts +0 -20
  263. package/lib/core-input/core-input.component.d.ts +0 -28
  264. package/lib/core-multi-select/core-multi-select-row/core-multi-select-row.component.d.ts +0 -11
  265. package/lib/core-multi-select/core-multi-select.component.d.ts +0 -43
  266. package/lib/core-number/core-number.component.d.ts +0 -12
  267. package/lib/core-page-title/core-page-title.component.d.ts +0 -7
  268. package/lib/core-radio-buttons/core-radio-buttons.component.d.ts +0 -29
  269. package/lib/core-search-box/core-search-box.component.d.ts +0 -10
  270. package/lib/core-select/core-select.component.d.ts +0 -36
  271. package/lib/core-spinner/core-spinner.component.d.ts +0 -9
  272. package/lib/core-switch/core-switch.component.d.ts +0 -17
  273. package/lib/core-table/core-column-date-picker/core-column-date-picker.component.d.ts +0 -21
  274. package/lib/core-table/core-column-input/core-column-input.component.d.ts +0 -16
  275. package/lib/core-table/core-column-selector/core-column-selector.component.d.ts +0 -35
  276. package/lib/core-table/core-row-pelak/core-row-pelak.component.d.ts +0 -8
  277. package/lib/core-table/core-table/core-table.component.d.ts +0 -42
  278. package/lib/core-table/core-table-action-buttons-column/core-table-action-buttons-column.component.d.ts +0 -11
  279. package/lib/core-table/core-table-action-column/core-table-action-column.component.d.ts +0 -11
  280. package/lib/core-table/core-table-card-manager/core-table-card-manager.component.d.ts +0 -24
  281. package/lib/core-table/core-table-column-manager/core-table-column-manager.component.d.ts +0 -24
  282. package/lib/core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component.d.ts +0 -11
  283. package/lib/core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component.d.ts +0 -22
  284. package/lib/core-table/core-table-no-content/core-table-no-content.component.d.ts +0 -9
  285. package/lib/core-table/core-table-no-content/core-table-no-content.label.d.ts +0 -5
  286. package/lib/core-table/core-table-row-selector-column/core-table-row-selector-column.component.d.ts +0 -14
  287. package/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.d.ts +0 -11
  288. package/lib/core-table/core-table-status-active-column/core-table-status-active-column.component.d.ts +0 -8
  289. package/lib/core-table/core-table-status-column/core-table-status-column.component.d.ts +0 -7
  290. package/lib/core-textarea/core-textarea.component.d.ts +0 -13
  291. package/lib/core-time-picker/core-time-picker.component.d.ts +0 -26
  292. package/lib/core-time-picker/time-picker-modal/time-picker-modal.component.d.ts +0 -35
  293. package/lib/falcon-lib.module.d.ts +0 -66
  294. package/lib/falconTypes.d.ts +0 -23
  295. package/lib/pipes/digit-group.pipe.d.ts +0 -7
  296. package/lib/pipes/form-control.pipe.d.ts +0 -8
  297. package/lib/pipes/persian-digits.pipe.d.ts +0 -7
  298. package/lib/pipes/price-format.pipe.d.ts +0 -7
  299. package/lib/pipes/shamsi-date.pipe.d.ts +0 -9
  300. package/lib/pipes/time-format.pipe.d.ts +0 -7
  301. package/lib/pipes/weight.pipe.d.ts +0 -7
  302. package/lib/wordify.d.ts +0 -2
  303. package/svg-icon/arrow-down-icon/arrow-down-icon.component.d.ts +0 -5
  304. package/svg-icon/calendar-icon/calendar-icon.component.d.ts +0 -5
  305. package/svg-icon/caret-up-icon/caret-up-icon.component.d.ts +0 -5
  306. package/svg-icon/close-icon/close-icon.component.d.ts +0 -5
  307. package/svg-icon/edit-square-icon/edit-square-icon.component.d.ts +0 -5
  308. package/svg-icon/pelak-icon/pelak-icon.component.d.ts +0 -5
  309. package/svg-icon/search-icon/search-icon.component.d.ts +0 -5
  310. package/svg-icon/sort-down-icon/sort-down-icon.component.d.ts +0 -5
  311. package/svg-icon/sort-solid-icon/sort-solid-icon.component.d.ts +0 -5
  312. package/svg-icon/sort-up-icon/sort-up-icon.component.d.ts +0 -5
  313. package/svg-icon/time-icon/time-icon.component.d.ts +0 -5
  314. package/svg-icon/warning-icon/warning-icon.component.d.ts +0 -5
  315. package/utils/constants.d.ts +0 -70
  316. package/utils/directives/detail-viewer-manager.directive.d.ts +0 -18
  317. package/utils/directives/table-detail-viewer-manager.directive.d.ts +0 -16
  318. package/utils/util.d.ts +0 -11
@@ -1,11 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { COLUMNS_TYPES } from '../../../utils/constants';
3
- import * as i0 from "@angular/core";
4
- export declare class CoreTableShamsiDateComponent {
5
- data: any;
6
- column: any;
7
- onClick: EventEmitter<any>;
8
- get columnsTypes(): typeof COLUMNS_TYPES;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableShamsiDateComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableShamsiDateComponent, "app-core-table-shamsi-date", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; }, { "onClick": "onClick"; }, never, never, false, never>;
11
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CoreTableStatusActiveColumnComponent {
3
- data: any;
4
- column: any;
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableStatusActiveColumnComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableStatusActiveColumnComponent, "app-core-table-status-active-column", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
8
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CoreTableStatusColumnComponent {
3
- data: any;
4
- column: any;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<CoreTableStatusColumnComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreTableStatusColumnComponent, "app-core-table-status-column", never, { "data": { "alias": "data"; "required": true; }; "column": { "alias": "column"; "required": true; }; }, {}, never, never, false, never>;
7
- }
@@ -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 CoreTextareaComponent {
5
- textareaFormControl: FormControl;
6
- set model(value: string | null);
7
- set disable(value: boolean);
8
- placeholder: string;
9
- onChange: EventEmitter<string>;
10
- change(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<CoreTextareaComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreTextareaComponent, "core-textarea", never, { "textareaFormControl": { "alias": "textareaFormControl"; "required": false; }; "model": { "alias": "model"; "required": false; }; "disable": { "alias": "disable"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "onChange": "onChange"; }, never, never, false, never>;
13
- }
@@ -1,26 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { NiraModalService } from 'nira-modal';
4
- import * as i0 from "@angular/core";
5
- export declare class CoreTimePickerComponent {
6
- private niraModalService;
7
- onSelect: EventEmitter<string>;
8
- onBlurEmit: EventEmitter<string>;
9
- placeholder: string;
10
- canHighlightBackground: boolean;
11
- setCurrentTime: boolean;
12
- inputFormControl: FormControl;
13
- selectedTime: string;
14
- set defaultValue(data: string);
15
- maxLength: number;
16
- constructor(niraModalService: NiraModalService);
17
- ngOnInit(): void;
18
- showSelectTimeModal(): void;
19
- focusOut(): void;
20
- change(event: any): void;
21
- onPaste(event: any): void;
22
- onBlur(): void;
23
- onKeyPress(): boolean;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<CoreTimePickerComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<CoreTimePickerComponent, "core-time-picker", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "canHighlightBackground": { "alias": "canHighlightBackground"; "required": false; }; "setCurrentTime": { "alias": "setCurrentTime"; "required": false; }; "inputFormControl": { "alias": "inputFormControl"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; }, { "onSelect": "onSelect"; "onBlurEmit": "onBlurEmit"; }, never, never, false, never>;
26
- }
@@ -1,35 +0,0 @@
1
- import { ChangeDetectorRef } from '@angular/core';
2
- import { IModal, NiraModalConfig } from 'nira-modal';
3
- import { BehaviorSubject, Subject } from 'rxjs';
4
- import * as i0 from "@angular/core";
5
- type Location = {
6
- left: string;
7
- top: string;
8
- text: string;
9
- value: string;
10
- };
11
- export declare class TimePickerModalComponent implements IModal {
12
- private cdr;
13
- config: NiraModalConfig;
14
- closeSubject: Subject<any>;
15
- hoursSubject: BehaviorSubject<Location[]>;
16
- hours2Subject: BehaviorSubject<Location[]>;
17
- minutesSubject: BehaviorSubject<Location[]>;
18
- showHour: boolean;
19
- showMin: boolean;
20
- constructor(cdr: ChangeDetectorRef);
21
- ngOnInit(): void;
22
- close(): void;
23
- submit(): void;
24
- ngAfterViewInit(): void;
25
- onHourClick(): void;
26
- onMinutesClick(): void;
27
- createCircleOfDivs(num: any, radius: number, offsetX: number, offsetY: number, add: number, teilbar: number): Location[];
28
- onHourSelect(item: Location): void;
29
- onMinutesSelect(item: Location): void;
30
- selectHours(): void;
31
- selectMinutes(): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerModalComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerModalComponent, "lib-time-picker-modal", never, { "config": { "alias": "config"; "required": false; }; "closeSubject": { "alias": "closeSubject"; "required": false; }; }, {}, never, never, false, never>;
34
- }
35
- export {};
@@ -1,66 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./core-auto-complete/core-auto-complete.component";
3
- import * as i2 from "./core-btn/core-btn.component";
4
- import * as i3 from "./core-search-box/core-search-box.component";
5
- import * as i4 from "./core-checkbox/core-checkbox.component";
6
- import * as i5 from "./core-date-picker/core-date-picker.component";
7
- import * as i6 from "./core-confirm-dialog/core-confirm-dialog.component";
8
- import * as i7 from "./core-input/core-input.component";
9
- import * as i8 from "./core-page-title/core-page-title.component";
10
- import * as i9 from "./core-radio-buttons/core-radio-buttons.component";
11
- import * as i10 from "./core-card/core-card.component";
12
- import * as i11 from "./core-select/core-select.component";
13
- import * as i12 from "./core-spinner/core-spinner.component";
14
- import * as i13 from "./core-switch/core-switch.component";
15
- import * as i14 from "./core-table/core-column-date-picker/core-column-date-picker.component";
16
- import * as i15 from "./core-table/core-column-input/core-column-input.component";
17
- import * as i16 from "./core-table/core-column-selector/core-column-selector.component";
18
- import * as i17 from "./core-table/core-table/core-table.component";
19
- import * as i18 from "./core-table/core-table-action-buttons-column/core-table-action-buttons-column.component";
20
- import * as i19 from "./core-table/core-table-action-column/core-table-action-column.component";
21
- import * as i20 from "./core-table/core-table-card-manager/core-table-card-manager.component";
22
- import * as i21 from "./core-table/core-table-column-manager/core-table-column-manager.component";
23
- import * as i22 from "./core-table/core-table-filter-dialog/core-table-filter-dialog/core-table-filter-dialog.component";
24
- import * as i23 from "./core-table/core-table-no-content/core-table-no-content.component";
25
- import * as i24 from "./core-table/core-table-row-selector-column/core-table-row-selector-column.component";
26
- import * as i25 from "./core-table/core-table-shamsi-date/core-table-shamsi-date.component";
27
- import * as i26 from "./core-table/core-table-status-column/core-table-status-column.component";
28
- import * as i27 from "./core-time-picker/time-picker-modal/time-picker-modal.component";
29
- import * as i28 from "./core-textarea/core-textarea.component";
30
- import * as i29 from "./core-time-picker/core-time-picker.component";
31
- import * as i30 from "./core-number/core-number.component";
32
- import * as i31 from "./pipes/persian-digits.pipe";
33
- import * as i32 from "./pipes/form-control.pipe";
34
- import * as i33 from "./pipes/digit-group.pipe";
35
- import * as i34 from "./pipes/price-format.pipe";
36
- import * as i35 from "./pipes/time-format.pipe";
37
- import * as i36 from "./pipes/shamsi-date.pipe";
38
- import * as i37 from "./pipes/weight.pipe";
39
- import * as i38 from "../svg-icon/search-icon/search-icon.component";
40
- import * as i39 from "../svg-icon/close-icon/close-icon.component";
41
- import * as i40 from "../svg-icon/warning-icon/warning-icon.component";
42
- import * as i41 from "../svg-icon/edit-square-icon/edit-square-icon.component";
43
- import * as i42 from "../svg-icon/sort-down-icon/sort-down-icon.component";
44
- import * as i43 from "../svg-icon/caret-up-icon/caret-up-icon.component";
45
- import * as i44 from "../svg-icon/time-icon/time-icon.component";
46
- import * as i45 from "../svg-icon/sort-solid-icon/sort-solid-icon.component";
47
- import * as i46 from "../svg-icon/sort-up-icon/sort-up-icon.component";
48
- import * as i47 from "../svg-icon/pelak-icon/pelak-icon.component";
49
- import * as i48 from "./core-multi-select/core-multi-select.component";
50
- import * as i49 from "./core-multi-select/core-multi-select-row/core-multi-select-row.component";
51
- import * as i50 from "../utils/directives/table-detail-viewer-manager.directive";
52
- import * as i51 from "../utils/directives/detail-viewer-manager.directive";
53
- import * as i52 from "./core-table/core-table-status-active-column/core-table-status-active-column.component";
54
- import * as i53 from "./core-table/core-row-pelak/core-row-pelak.component";
55
- import * as i54 from "./core-table/core-table-detail-viewer-for-report/core-table-detail-viewer-for-report.component";
56
- import * as i55 from "../svg-icon/calendar-icon/calendar-icon.component";
57
- import * as i56 from "../svg-icon/arrow-down-icon/arrow-down-icon.component";
58
- import * as i57 from "@angular/common";
59
- import * as i58 from "@angular/forms";
60
- import * as i59 from "nira-snack-bar";
61
- import * as i60 from "nira-date-picker";
62
- export declare class FalconLibModule {
63
- static ɵfac: i0.ɵɵFactoryDeclaration<FalconLibModule, never>;
64
- static ɵmod: i0.ɵɵNgModuleDeclaration<FalconLibModule, [typeof i1.CoreAutoCompleteComponent, typeof i2.CoreBtnComponent, typeof i3.CoreSearchBoxComponent, typeof i4.CoreCheckboxComponent, typeof i5.CoreDatePickerComponent, typeof i6.CoreConfirmDialogComponent, typeof i7.CoreInputComponent, typeof i8.CorePageTitleComponent, typeof i9.CoreRadioButtonsComponent, typeof i3.CoreSearchBoxComponent, typeof i10.CoreCardComponent, typeof i11.CoreSelectComponent, typeof i12.CoreSpinnerComponent, typeof i13.CoreSwitchComponent, typeof i14.CoreColumnDatePickerComponent, typeof i15.CoreColumnInputComponent, typeof i16.CoreColumnSelectorComponent, typeof i17.CoreTableComponent, typeof i18.CoreTableActionButtonsColumnComponent, typeof i19.CoreTableActionColumnComponent, typeof i20.CoreTableCardManagerComponent, typeof i21.CoreTableColumnManagerComponent, typeof i22.CoreTableFilterDialogComponent, typeof i23.CoreTableNoContentComponent, typeof i24.CoreTableRowSelectorColumnComponent, typeof i25.CoreTableShamsiDateComponent, typeof i26.CoreTableStatusColumnComponent, typeof i27.TimePickerModalComponent, typeof i28.CoreTextareaComponent, typeof i29.CoreTimePickerComponent, typeof i30.CoreNumberComponent, typeof i31.PersianDigitsPipe, typeof i32.FormControlPipe, typeof i33.DigitGroupPipe, typeof i34.PriceFormatPipe, typeof i35.TimeFormatPipe, typeof i36.ShamsiDatePipe, typeof i37.WeightPipe, typeof i38.SearchIconComponent, typeof i39.CloseIconComponent, typeof i40.WarningIconComponent, typeof i41.EditSquareIconComponent, typeof i42.SortDownIconComponent, typeof i43.CaretUpIconComponent, typeof i44.TimeIconComponent, typeof i45.SortSolidIconComponent, typeof i46.SortUpIconComponent, typeof i47.PelakIconComponent, typeof i48.CoreMultiSelectComponent, typeof i49.CoreMultiSelectRowComponent, typeof i50.TableDetailViewerManagerDirective, typeof i51.DetailViewerManagerDirective, typeof i52.CoreTableStatusActiveColumnComponent, typeof i53.CoreRowPelakComponent, typeof i54.CoreTableDetailViewerForReportComponent, typeof i55.CalendarIconComponent, typeof i56.ArrowDownIconComponent], [typeof i57.CommonModule, typeof i58.ReactiveFormsModule, typeof i58.FormsModule, typeof i59.NiraSnackBarModule, typeof i60.NiraDatePickerModule], [typeof i1.CoreAutoCompleteComponent, typeof i10.CoreCardComponent, typeof i4.CoreCheckboxComponent, typeof i5.CoreDatePickerComponent, typeof i8.CorePageTitleComponent, typeof i11.CoreSelectComponent, typeof i9.CoreRadioButtonsComponent, typeof i7.CoreInputComponent, typeof i12.CoreSpinnerComponent, typeof i13.CoreSwitchComponent, typeof i48.CoreMultiSelectComponent, typeof i17.CoreTableComponent, typeof i2.CoreBtnComponent, typeof i29.CoreTimePickerComponent, typeof i30.CoreNumberComponent, typeof i6.CoreConfirmDialogComponent, typeof i31.PersianDigitsPipe, typeof i3.CoreSearchBoxComponent, typeof i32.FormControlPipe, typeof i33.DigitGroupPipe, typeof i34.PriceFormatPipe, typeof i36.ShamsiDatePipe, typeof i35.TimeFormatPipe, typeof i37.WeightPipe]>;
65
- static ɵinj: i0.ɵɵInjectorDeclaration<FalconLibModule>;
66
- }
@@ -1,23 +0,0 @@
1
- export type ThemePalette = 'square' | 'round';
2
- export type ColorState = 'default' | 'primary' | 'success' | 'warning' | 'danger';
3
- export type ButtonType = 'button';
4
- export type LayoutRadioButtons = 'row' | 'column';
5
- export type InputType = 'number' | 'password' | 'text';
6
- export type MenuItem<T> = {
7
- title: T;
8
- value: T;
9
- };
10
- export type ButtonSize = 'small' | 'medium';
11
- export type ConfirmDialog = {
12
- title: string;
13
- text: string;
14
- confirmBtn: string;
15
- cancelBtn: string;
16
- };
17
- export declare enum DetailViewers {
18
- BILL = "bill",
19
- DRIVER = "driver",
20
- MANIFEST = "manifest",
21
- SERVICE = "service",
22
- VEHICLE = "vehicle"
23
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class DigitGroupPipe implements PipeTransform {
4
- transform(el: string | number): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<DigitGroupPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<DigitGroupPipe, "digitGroup", false>;
7
- }
@@ -1,8 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { AbstractControl, FormControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- export declare class FormControlPipe implements PipeTransform {
5
- transform(value: AbstractControl): FormControl<(typeof value)['value']>;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<FormControlPipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<FormControlPipe, "formControl", false>;
8
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class PersianDigitsPipe implements PipeTransform {
4
- transform(el: number | string): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<PersianDigitsPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<PersianDigitsPipe, "persianDigits", false>;
7
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class PriceFormatPipe implements PipeTransform {
4
- transform(value: string | number | undefined, currency: string, ...args: unknown[]): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<PriceFormatPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<PriceFormatPipe, "priceFormat", false>;
7
- }
@@ -1,9 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- type Format = 'HH:mm' | 'jYYYY/jMM/jDD' | 'jYYYY/jMM/jDD HH:mm';
4
- export declare class ShamsiDatePipe implements PipeTransform {
5
- transform(value: string | undefined, format: Format, ...args: unknown[]): string;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ShamsiDatePipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<ShamsiDatePipe, "shamsiDate", false>;
8
- }
9
- export {};
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TimeFormatPipe implements PipeTransform {
4
- transform(value: number, ...args: unknown[]): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<TimeFormatPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<TimeFormatPipe, "timeFormat", false>;
7
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class WeightPipe implements PipeTransform {
4
- transform(value: number, ...args: unknown[]): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<WeightPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<WeightPipe, "weight", false>;
7
- }
package/lib/wordify.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export declare function toEnglishDigits(num: string | number): string;
2
- export declare function WordifyFa(input: string | number | undefined, level?: number): string;
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class ArrowDownIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<ArrowDownIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<ArrowDownIconComponent, "arrow-down-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CalendarIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<CalendarIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<CalendarIconComponent, "calendar-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CaretUpIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<CaretUpIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<CaretUpIconComponent, "app-caret-up-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class CloseIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<CloseIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<CloseIconComponent, "close-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class EditSquareIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<EditSquareIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<EditSquareIconComponent, "edit-square-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class PelakIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<PelakIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<PelakIconComponent, "pelak-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class SearchIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<SearchIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchIconComponent, "search-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class SortDownIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<SortDownIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<SortDownIconComponent, "app-sort-down-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class SortSolidIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<SortSolidIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<SortSolidIconComponent, "app-sort-solid-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class SortUpIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<SortUpIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<SortUpIconComponent, "app-sort-up-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class TimeIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<TimeIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeIconComponent, "time-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class WarningIconComponent {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<WarningIconComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<WarningIconComponent, "warning-icon", never, {}, {}, never, never, false, never>;
5
- }
@@ -1,70 +0,0 @@
1
- export declare enum IconInput {
2
- Password = "Password",
3
- Text = "Text",
4
- EmailPhone = "EmailPhone",
5
- Phone = "Phone",
6
- Editable = "Editable",
7
- Verified = "Verified",
8
- NotVerified = "NotVerified",
9
- OwnerName = "OwnerName",
10
- totalAmount = "totalAmount",
11
- totalRows = "totalRows",
12
- Date = "Date"
13
- }
14
- export declare enum UserLanguage {
15
- EN = "en",
16
- FA = "fa"
17
- }
18
- export declare enum COLUMNS_TYPES {
19
- TEXT = "text",
20
- NUMBER = "number",
21
- SELECTOR = "selector",
22
- ROW_SELECTOR = "row-selector",
23
- STATUS = "status",
24
- STATUS_ACTIVE = "status-active",
25
- ACTION = "action",
26
- ACTION_BUTTONS = "action-buttons",
27
- SHAMSI_DATE = "shamsi-date",
28
- MULTI_COLUMN = "multiColumn",
29
- PELAK = "pelak",
30
- DETAIL_VIEWER_FOR_REPORT = "detail-viewer-for-report"
31
- }
32
- export declare enum TOAST_MESSAGES {
33
- SUCCESSFUL_CREATE = "\u0628\u0627 \u0645\u0648\u0641\u0642\u06CC\u062A \u062B\u0628\u062A \u0634\u062F",
34
- SUCCESSFUL_ADDED = "\u0628\u0627 \u0645\u0648\u0641\u0642\u06CC\u062A \u0627\u0636\u0627\u0641\u0647 \u0634\u062F",
35
- SUCCESSFUL_EDIT = "\u0628\u0627 \u0645\u0648\u0641\u0642\u06CC\u062A \u0648\u06CC\u0631\u0627\u06CC\u0634 \u0634\u062F",
36
- SUCCESSFUL_DELETED = "\u0628\u0627 \u0645\u0648\u0641\u0642\u06CC\u062A \u062D\u0630\u0641 \u0634\u062F "
37
- }
38
- export declare const travelTypes: {
39
- title: string;
40
- value: string;
41
- }[];
42
- export declare enum DetailViewers {
43
- BILL = "bill",
44
- DRIVER = "driver",
45
- MANIFEST = "manifest",
46
- SERVICE = "service",
47
- VEHICLE = "vehicle"
48
- }
49
- export declare const countryCodes: {
50
- countryId: string;
51
- countryNameFa: string;
52
- countryNameEn: string;
53
- }[];
54
- export declare const priceTypes: {
55
- currencyId: string;
56
- currencyNameEn: string;
57
- currencyNameFa: string;
58
- }[];
59
- export declare const Letters: {
60
- key: number;
61
- value: string;
62
- }[];
63
- export declare const YES_NO_OPTIONS: {
64
- title: string;
65
- value: boolean;
66
- }[];
67
- export declare const ACTIVE_OPTIONS: {
68
- title: string;
69
- value: boolean;
70
- }[];
@@ -1,18 +0,0 @@
1
- import { ComponentFactoryResolver, ElementRef, ViewContainerRef } from '@angular/core';
2
- import { NiraModalService } from 'nira-modal';
3
- import { DetailViewers } from '../../lib/falconTypes';
4
- import * as i0 from "@angular/core";
5
- export declare class DetailViewerManagerDirective {
6
- private el;
7
- private niraModalService;
8
- private viewContainerRef;
9
- private componentFactoryResolver;
10
- detailViewerData: any;
11
- detailViewerName: DetailViewers | undefined;
12
- constructor(el: ElementRef, niraModalService: NiraModalService, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver);
13
- ngAfterViewInit(): void;
14
- changeStyle(): void;
15
- onMouseUp(): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<DetailViewerManagerDirective, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<DetailViewerManagerDirective, "[detailViewerManager]", never, { "detailViewerData": { "alias": "detailViewerData"; "required": false; }; "detailViewerName": { "alias": "detailViewerName"; "required": false; }; }, {}, never, never, false, never>;
18
- }
@@ -1,16 +0,0 @@
1
- import { ComponentFactoryResolver, ElementRef, ViewContainerRef } from '@angular/core';
2
- import { NiraModalService } from 'nira-modal';
3
- import * as i0 from "@angular/core";
4
- export declare class TableDetailViewerManagerDirective {
5
- private el;
6
- private niraModalService;
7
- private viewContainerRef;
8
- private componentFactoryResolver;
9
- detailViewerData: any;
10
- constructor(el: ElementRef, niraModalService: NiraModalService, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver);
11
- ngAfterViewInit(): void;
12
- changeStyle(): void;
13
- onMouseUp(): void;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<TableDetailViewerManagerDirective, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<TableDetailViewerManagerDirective, "[tableDetailViewerManager]", never, { "detailViewerData": { "alias": "detailViewerData"; "required": false; }; }, {}, never, never, false, never>;
16
- }
package/utils/util.d.ts DELETED
@@ -1,11 +0,0 @@
1
- type DateFormat = 'HH:mm' | 'YYYY-MM-DD' | 'YYYY-MM-DD HH:mm';
2
- export declare class Util {
3
- static getMoneyFormat(data: string): string;
4
- static isRunningOnSmallScreen(): boolean;
5
- static isRunningOnMobile(): boolean;
6
- static isRunningOnWindows(): boolean;
7
- static getRunningPlatform(): string;
8
- static getTotalFromArray(array: [], name: string): number;
9
- static shamsiToMiladi(value: string, format: DateFormat): string;
10
- }
11
- export {};