raise-common-lib-new 0.0.63 → 0.0.64

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 (221) hide show
  1. package/esm2022/lib/actions/toolbar/index.component.mjs +4 -3
  2. package/esm2022/lib/actions/toolbar-item/index.component.mjs +2 -2
  3. package/esm2022/lib/common-grid/grid-action/grid-action-item/grid-action-item.component.mjs +1 -1
  4. package/esm2022/lib/common-grid/grid-action/grid-action.component.mjs +3 -2
  5. package/esm2022/lib/common-grid/index.component.mjs +6 -3
  6. package/esm2022/lib/dashboard/api.mjs +33 -0
  7. package/esm2022/lib/dashboard/bar-charts/bar-charts.component.mjs +430 -0
  8. package/esm2022/lib/dashboard/bar-charts/utils.mjs +18 -0
  9. package/esm2022/lib/dashboard/dashboard-properties/data-mart-new/data-mart-new.component.mjs +442 -0
  10. package/esm2022/lib/dashboard/dashboard.service.mjs +295 -0
  11. package/esm2022/lib/dashboard/dashboardPorlets.service.mjs +2169 -0
  12. package/esm2022/lib/dashboard/dialog-group/download/index.component.mjs +212 -0
  13. package/esm2022/lib/dashboard/dialog-group/empty-icon-prompt/empty-icon-prompt.component.mjs +36 -0
  14. package/esm2022/lib/dashboard/gadget-group/gadget-pivot/gadget-pivot.component.mjs +3211 -0
  15. package/esm2022/lib/dashboard/gadget-group/gadget-pivot-chart/gadget-pivot.component.mjs +3117 -0
  16. package/esm2022/lib/dashboard/gadget-group/gadget-table/gadget-table.component.mjs +1099 -0
  17. package/esm2022/lib/dashboard/gadget-group/gadget-transpose/gadget-transpose.component.mjs +583 -0
  18. package/esm2022/lib/dashboard/pane-group-new.component.mjs +2031 -0
  19. package/esm2022/lib/dashboard/sidebar-iconlist/field-filter/field-filter.component.mjs +637 -0
  20. package/esm2022/lib/dashboard/sidebar-iconlist/field-format/field-format.component.mjs +753 -0
  21. package/esm2022/lib/dashboard/sidebar-iconlist/portlet-type-new/portlet-type-new.component.mjs +216 -0
  22. package/esm2022/lib/dashboard/sidebar-iconlist/sidebar-iconlist-new.component.mjs +1239 -0
  23. package/esm2022/lib/dialog/common-delete-dialog/index.component.mjs +1 -1
  24. package/esm2022/lib/dialog/common-dialog/index.component.mjs +16 -5
  25. package/esm2022/lib/float-box/index.component.mjs +18 -4
  26. package/esm2022/lib/form/checkbox-group/index.component.mjs +35 -5
  27. package/esm2022/lib/form/drawer-form/drawer-form.component.mjs +177 -76
  28. package/esm2022/lib/layout/drawer/index.component.mjs +2 -2
  29. package/esm2022/lib/layout/page-list/index.component.mjs +9 -3
  30. package/esm2022/lib/layout/page-tab/index.component.mjs +5 -3
  31. package/esm2022/lib/layout/rs-stepper/constants.mjs +2 -0
  32. package/esm2022/lib/layout/rs-stepper/index.component.mjs +148 -0
  33. package/esm2022/lib/raise-common-lib.module.mjs +114 -7
  34. package/esm2022/lib/service/InjectionToken.mjs +5 -0
  35. package/esm2022/lib/service/keep-alive.service.mjs +2 -2
  36. package/esm2022/lib/smart-popup/index.component.mjs +1084 -0
  37. package/esm2022/public-api.mjs +19 -1
  38. package/fesm2022/raise-common-lib-new.mjs +18037 -220
  39. package/fesm2022/raise-common-lib-new.mjs.map +1 -1
  40. package/lib/common-grid/index.component.d.ts +2 -1
  41. package/lib/dashboard/api.d.ts +24 -0
  42. package/lib/dashboard/bar-charts/bar-charts.component.d.ts +63 -0
  43. package/lib/dashboard/bar-charts/utils.d.ts +1 -0
  44. package/lib/dashboard/dashboard-properties/data-mart-new/data-mart-new.component.d.ts +52 -0
  45. package/lib/dashboard/dashboard.service.d.ts +152 -0
  46. package/lib/dashboard/dashboardPorlets.service.d.ts +214 -0
  47. package/lib/dashboard/dialog-group/download/index.component.d.ts +36 -0
  48. package/lib/dashboard/dialog-group/empty-icon-prompt/empty-icon-prompt.component.d.ts +15 -0
  49. package/lib/dashboard/gadget-group/gadget-pivot/gadget-pivot.component.d.ts +128 -0
  50. package/lib/dashboard/gadget-group/gadget-pivot-chart/gadget-pivot.component.d.ts +131 -0
  51. package/lib/dashboard/gadget-group/gadget-table/gadget-table.component.d.ts +77 -0
  52. package/lib/dashboard/gadget-group/gadget-transpose/gadget-transpose.component.d.ts +47 -0
  53. package/lib/dashboard/pane-group-new.component.d.ts +169 -0
  54. package/lib/dashboard/sidebar-iconlist/field-filter/field-filter.component.d.ts +56 -0
  55. package/lib/dashboard/sidebar-iconlist/field-format/field-format.component.d.ts +62 -0
  56. package/lib/dashboard/sidebar-iconlist/portlet-type-new/portlet-type-new.component.d.ts +30 -0
  57. package/lib/dashboard/sidebar-iconlist/sidebar-iconlist-new.component.d.ts +150 -0
  58. package/lib/dialog/common-dialog/index.component.d.ts +3 -1
  59. package/lib/float-box/index.component.d.ts +4 -3
  60. package/lib/form/checkbox-group/index.component.d.ts +5 -0
  61. package/lib/form/drawer-form/drawer-form.component.d.ts +21 -8
  62. package/lib/layout/page-list/index.component.d.ts +3 -1
  63. package/lib/layout/page-tab/index.component.d.ts +1 -0
  64. package/lib/layout/rs-stepper/constants.d.ts +5 -0
  65. package/lib/layout/rs-stepper/index.component.d.ts +31 -0
  66. package/lib/raise-common-lib.module.d.ts +61 -40
  67. package/lib/service/InjectionToken.d.ts +4 -0
  68. package/lib/smart-popup/index.component.d.ts +60 -0
  69. package/package.json +1 -1
  70. package/public-api.d.ts +18 -0
  71. package/src/assets/img/dashboard_icon/AddPerson.svg +4 -0
  72. package/src/assets/img/dashboard_icon/Angle-double-left.svg +12 -0
  73. package/src/assets/img/dashboard_icon/Angle-double-right.svg +12 -0
  74. package/src/assets/img/dashboard_icon/Arrow_collapse.svg +3 -0
  75. package/src/assets/img/dashboard_icon/Arrow_expand.svg +3 -0
  76. package/src/assets/img/dashboard_icon/Close.svg +4 -0
  77. package/src/assets/img/dashboard_icon/Edit_label.svg +3 -0
  78. package/src/assets/img/dashboard_icon/RemoveMini.svg +3 -0
  79. package/src/assets/img/dashboard_icon/ShareTo.svg +3 -0
  80. package/src/assets/img/dashboard_icon/add-dashboard.svg +4 -0
  81. package/src/assets/img/dashboard_icon/add-tab.svg +4 -0
  82. package/src/assets/img/dashboard_icon/angle-left.svg +12 -0
  83. package/src/assets/img/dashboard_icon/angle-right.svg +12 -0
  84. package/src/assets/img/dashboard_icon/area-white.svg +3 -0
  85. package/src/assets/img/dashboard_icon/area.svg +3 -0
  86. package/src/assets/img/dashboard_icon/bar-white.svg +14 -0
  87. package/src/assets/img/dashboard_icon/bar.svg +14 -0
  88. package/src/assets/img/dashboard_icon/basic-icon-filter.svg +14 -0
  89. package/src/assets/img/dashboard_icon/chart-combined-active.svg +7 -0
  90. package/src/assets/img/dashboard_icon/chart-combined.svg +7 -0
  91. package/src/assets/img/dashboard_icon/column-white.svg +14 -0
  92. package/src/assets/img/dashboard_icon/column.svg +26 -0
  93. package/src/assets/img/dashboard_icon/customize.png +0 -0
  94. package/src/assets/img/dashboard_icon/dashboard-description.svg +18 -0
  95. package/src/assets/img/dashboard_icon/dashboard-download.svg +18 -0
  96. package/src/assets/img/dashboard_icon/dashboard-drag.svg +28 -0
  97. package/src/assets/img/dashboard_icon/dashboard-duplicate.svg +24 -0
  98. package/src/assets/img/dashboard_icon/dashboard-icon.svg +12 -0
  99. package/src/assets/img/dashboard_icon/dashboard-properties.svg +18 -0
  100. package/src/assets/img/dashboard_icon/dashboard-rename.svg +18 -0
  101. package/src/assets/img/dashboard_icon/dashboard-share.svg +20 -0
  102. package/src/assets/img/dashboard_icon/dashboard-tab-delete.svg +4 -0
  103. package/src/assets/img/dashboard_icon/dashboard_Share.svg +3 -0
  104. package/src/assets/img/dashboard_icon/dashboard_ToolsHide.svg +4 -0
  105. package/src/assets/img/dashboard_icon/datamart_.svg +5 -0
  106. package/src/assets/img/dashboard_icon/datamart_Admin.svg +3 -0
  107. package/src/assets/img/dashboard_icon/datamart_Asset Portfolio.svg +4 -0
  108. package/src/assets/img/dashboard_icon/datamart_Bank.svg +3 -0
  109. package/src/assets/img/dashboard_icon/datamart_CRM.svg +6 -0
  110. package/src/assets/img/dashboard_icon/datamart_Company.svg +6 -0
  111. package/src/assets/img/dashboard_icon/datamart_Compliance.svg +3 -0
  112. package/src/assets/img/dashboard_icon/datamart_Contact.svg +3 -0
  113. package/src/assets/img/dashboard_icon/datamart_DASHBOARD.svg +4 -0
  114. package/src/assets/img/dashboard_icon/datamart_DOCX.svg +4 -0
  115. package/src/assets/img/dashboard_icon/datamart_ESG.svg +4 -0
  116. package/src/assets/img/dashboard_icon/datamart_Financials - Company.svg +3 -0
  117. package/src/assets/img/dashboard_icon/datamart_Fund.svg +4 -0
  118. package/src/assets/img/dashboard_icon/datamart_FundFinancial.svg +4 -0
  119. package/src/assets/img/dashboard_icon/datamart_HTML.svg +4 -0
  120. package/src/assets/img/dashboard_icon/datamart_Logs.svg +8 -0
  121. package/src/assets/img/dashboard_icon/datamart_PDF.svg +5 -0
  122. package/src/assets/img/dashboard_icon/datamart_Project.svg +3 -0
  123. package/src/assets/img/dashboard_icon/datamart_Templates.svg +7 -0
  124. package/src/assets/img/dashboard_icon/datamart_Track Change.svg +3 -0
  125. package/src/assets/img/dashboard_icon/datamart_VirtualGroup.svg +5 -0
  126. package/src/assets/img/dashboard_icon/datamart_XLS.svg +4 -0
  127. package/src/assets/img/dashboard_icon/desktop_selected.svg +10 -0
  128. package/src/assets/img/dashboard_icon/desktop_unselected.svg +10 -0
  129. package/src/assets/img/dashboard_icon/favourite-grey.svg +3 -0
  130. package/src/assets/img/dashboard_icon/favourite-yellow.svg +3 -0
  131. package/src/assets/img/dashboard_icon/forms-checkbox-square-tick.svg +3 -0
  132. package/src/assets/img/dashboard_icon/ftable-white.svg +24 -0
  133. package/src/assets/img/dashboard_icon/ftable.svg +24 -0
  134. package/src/assets/img/dashboard_icon/gadget-basic-arrow-down.svg +14 -0
  135. package/src/assets/img/dashboard_icon/gadget-basic-format.svg +21 -0
  136. package/src/assets/img/dashboard_icon/gadget-basic-sub-total.svg +18 -0
  137. package/src/assets/img/dashboard_icon/gadget-basic-total-1.svg +9 -0
  138. package/src/assets/img/dashboard_icon/gadget-basic-total.svg +16 -0
  139. package/src/assets/img/dashboard_icon/gadget-columns.svg +12 -0
  140. package/src/assets/img/dashboard_icon/gadget-delete.svg +18 -0
  141. package/src/assets/img/dashboard_icon/gadget-download.svg +18 -0
  142. package/src/assets/img/dashboard_icon/gadget-duplicate.svg +24 -0
  143. package/src/assets/img/dashboard_icon/gadget-edit.svg +18 -0
  144. package/src/assets/img/dashboard_icon/gadget-filters-light.svg +9 -0
  145. package/src/assets/img/dashboard_icon/gadget-filters.svg +9 -0
  146. package/src/assets/img/dashboard_icon/gadget-format-0.svg +8 -0
  147. package/src/assets/img/dashboard_icon/gadget-format-1.svg +8 -0
  148. package/src/assets/img/dashboard_icon/gadget-format.svg +19 -0
  149. package/src/assets/img/dashboard_icon/gadget-fullscreen.svg +30 -0
  150. package/src/assets/img/dashboard_icon/gadget-settings.svg +18 -0
  151. package/src/assets/img/dashboard_icon/gadget-sub-total-0.svg +18 -0
  152. package/src/assets/img/dashboard_icon/gadget-sub-total-1.svg +18 -0
  153. package/src/assets/img/dashboard_icon/gadget-thumbnail.svg +12 -0
  154. package/src/assets/img/dashboard_icon/gadget-type-light.svg +15 -0
  155. package/src/assets/img/dashboard_icon/gadget-type.svg +16 -0
  156. package/src/assets/img/dashboard_icon/geo-white.svg +14 -0
  157. package/src/assets/img/dashboard_icon/geo.svg +14 -0
  158. package/src/assets/img/dashboard_icon/historic-IRR-white.svg +9 -0
  159. package/src/assets/img/dashboard_icon/historic-IRR.svg +5 -0
  160. package/src/assets/img/dashboard_icon/information-1.png +0 -0
  161. package/src/assets/img/dashboard_icon/information-grey.svg +4 -0
  162. package/src/assets/img/dashboard_icon/menu-change-group.svg +3 -0
  163. package/src/assets/img/dashboard_icon/menu-close.svg +20 -0
  164. package/src/assets/img/dashboard_icon/menu-delete.svg +18 -0
  165. package/src/assets/img/dashboard_icon/menu-description.svg +19 -0
  166. package/src/assets/img/dashboard_icon/menu-download.svg +24 -0
  167. package/src/assets/img/dashboard_icon/menu-drag.svg +28 -0
  168. package/src/assets/img/dashboard_icon/menu-duplicate.svg +26 -0
  169. package/src/assets/img/dashboard_icon/menu-properties.svg +18 -0
  170. package/src/assets/img/dashboard_icon/menu-rename.svg +23 -0
  171. package/src/assets/img/dashboard_icon/menu-share.svg +20 -0
  172. package/src/assets/img/dashboard_icon/menu-toolbar.svg +10 -0
  173. package/src/assets/img/dashboard_icon/mobile_selected.svg +10 -0
  174. package/src/assets/img/dashboard_icon/mobile_unselected.svg +10 -0
  175. package/src/assets/img/dashboard_icon/more_Save.svg +3 -0
  176. package/src/assets/img/dashboard_icon/more_View.svg +3 -0
  177. package/src/assets/img/dashboard_icon/multi-series-white.svg +20 -0
  178. package/src/assets/img/dashboard_icon/multi-series.svg +6 -0
  179. package/src/assets/img/dashboard_icon/paint-bucket.svg +6 -0
  180. package/src/assets/img/dashboard_icon/pie-white.svg +16 -0
  181. package/src/assets/img/dashboard_icon/pie.svg +16 -0
  182. package/src/assets/img/dashboard_icon/pivot-chart-active.svg +8 -0
  183. package/src/assets/img/dashboard_icon/pivot-chart.svg +8 -0
  184. package/src/assets/img/dashboard_icon/pivot-white.svg +8 -0
  185. package/src/assets/img/dashboard_icon/pivot.svg +8 -0
  186. package/src/assets/img/dashboard_icon/pivot_column.svg +9 -0
  187. package/src/assets/img/dashboard_icon/pivot_column_active.svg +9 -0
  188. package/src/assets/img/dashboard_icon/pivot_line.svg +12 -0
  189. package/src/assets/img/dashboard_icon/pivot_line_active.svg +12 -0
  190. package/src/assets/img/dashboard_icon/print-A2.svg +3 -0
  191. package/src/assets/img/dashboard_icon/radar-white.svg +19 -0
  192. package/src/assets/img/dashboard_icon/radar.svg +19 -0
  193. package/src/assets/img/dashboard_icon/saveAs.svg +3 -0
  194. package/src/assets/img/dashboard_icon/search_input.svg +4 -0
  195. package/src/assets/img/dashboard_icon/table-3-white.svg +16 -0
  196. package/src/assets/img/dashboard_icon/table-3.svg +16 -0
  197. package/src/assets/img/dashboard_icon/table-filter-off.svg +5 -0
  198. package/src/assets/img/dashboard_icon/table-filter-on.svg +5 -0
  199. package/src/assets/img/dashboard_icon/tag_dashboard_selected.svg +3 -0
  200. package/src/assets/img/dashboard_icon/tag_dashboard_unselected.svg +3 -0
  201. package/src/assets/img/dashboard_icon/tag_share_selected.svg +3 -0
  202. package/src/assets/img/dashboard_icon/tag_share_unselected.svg +3 -0
  203. package/src/assets/img/dashboard_icon/tick.svg +26 -0
  204. package/src/assets/img/dashboard_icon/toolbar_AddDashboard.svg +5 -0
  205. package/src/assets/img/dashboard_icon/toolbar_AddGroup.svg +3 -0
  206. package/src/assets/img/dashboard_icon/toolbar_AddReport.svg +3 -0
  207. package/src/assets/img/dashboard_icon/toolbar_CollapseAll.svg +3 -0
  208. package/src/assets/img/dashboard_icon/toolbar_Customize.svg +3 -0
  209. package/src/assets/img/dashboard_icon/toolbar_DeleteDark.svg +3 -0
  210. package/src/assets/img/dashboard_icon/toolbar_Duplicate.svg +3 -0
  211. package/src/assets/img/dashboard_icon/toolbar_Edit.svg +3 -0
  212. package/src/assets/img/dashboard_icon/toolbar_ExpandAll.svg +3 -0
  213. package/src/assets/img/dashboard_icon/toolbar_Search.svg +3 -0
  214. package/src/assets/img/dashboard_icon/topbar-menu.svg +33 -0
  215. package/src/assets/img/dashboard_icon/topbar-refresh.svg +17 -0
  216. package/src/assets/img/dashboard_icon/topbar-tool-off.svg +12 -0
  217. package/src/assets/img/dashboard_icon/topbar-tool-on.svg +12 -0
  218. package/src/assets/img/dashboard_icon/trade-up-white.svg +14 -0
  219. package/src/assets/img/dashboard_icon/trade-up.svg +14 -0
  220. package/src/assets/img/dashboard_icon/transpose-white.svg +16 -0
  221. package/src/assets/img/dashboard_icon/transpose.svg +16 -0
@@ -0,0 +1,30 @@
1
+ import { OnInit, EventEmitter, ChangeDetectorRef, OnChanges, SimpleChanges } from "@angular/core";
2
+ import { DashboardService } from "../../dashboard.service";
3
+ import * as i0 from "@angular/core";
4
+ export declare class PortletTypeNewComponent implements OnInit, OnChanges {
5
+ private DashboardService;
6
+ private ref;
7
+ dataMartCode: string;
8
+ portlet: any;
9
+ dashboard: any;
10
+ portletType: EventEmitter<any>;
11
+ private datamart;
12
+ translation: any;
13
+ private userInfo;
14
+ portletList: any;
15
+ type: any;
16
+ private subscriptions;
17
+ constructor(DashboardService: DashboardService, ref: ChangeDetectorRef);
18
+ ngOnInit(): void;
19
+ ngAfterViewInit(): void;
20
+ ngOnChanges(changes: SimpleChanges): void;
21
+ ngOnDestroy(): void;
22
+ get disabledHistoricalIRR(): boolean;
23
+ setTooltip(item: any): any;
24
+ selectPortletType(portletCode: any): void;
25
+ private getInfo;
26
+ getFinancialType(): boolean;
27
+ getFPPType(code: any): boolean;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<PortletTypeNewComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<PortletTypeNewComponent, "rs-portlet-type-new", never, { "dataMartCode": { "alias": "dataMartCode"; "required": false; }; "portlet": { "alias": "portlet"; "required": false; }; "dashboard": { "alias": "dashboard"; "required": false; }; }, { "portletType": "portletType"; }, never, never, false, never>;
30
+ }
@@ -0,0 +1,150 @@
1
+ import { OnInit, ChangeDetectorRef, EventEmitter } from "@angular/core";
2
+ import { ApiList } from "../api";
3
+ import { DashboardService } from "../dashboard.service";
4
+ import { DashboardPorletsService } from "../dashboardPorlets.service";
5
+ import * as i0 from "@angular/core";
6
+ export declare class SidebarIconlistNewComponent implements OnInit {
7
+ private api;
8
+ dashboardService: DashboardService;
9
+ dashboardPorletsService: DashboardPorletsService;
10
+ private ref;
11
+ private pbf;
12
+ private http;
13
+ dashboard_sidebar: boolean;
14
+ dashboard: any;
15
+ dashboardId: any;
16
+ activeTabId: any;
17
+ activeTabLabel: any;
18
+ portlets: any[];
19
+ tabactive: boolean;
20
+ portlet: any;
21
+ figureCode: any;
22
+ _selectedX: any;
23
+ _selectedY: any;
24
+ _selectedMultiples: any;
25
+ _selectedSecondY: any;
26
+ _selectTheme: any;
27
+ appCode: any;
28
+ closeSidebar: EventEmitter<any>;
29
+ updatePorletConfig: EventEmitter<any>;
30
+ onToggleTabactive: EventEmitter<any>;
31
+ updatePorlet: EventEmitter<any>;
32
+ updatePushBtn: EventEmitter<any>;
33
+ chartUpdate: EventEmitter<any>;
34
+ updateTheme: EventEmitter<any>;
35
+ translation: any;
36
+ private lang;
37
+ dataMartTableList: any[];
38
+ hasChanged: boolean;
39
+ gadgetTitle: any;
40
+ private subscriptions;
41
+ portletType: any;
42
+ expandArray: Array<boolean>;
43
+ selectedDataTable: any;
44
+ selectedDatamart: any;
45
+ chartSettings: {
46
+ legendSettings: {
47
+ visible: boolean;
48
+ };
49
+ enableMultipleAxis: boolean;
50
+ showMultiLevelLabels: boolean;
51
+ chartSeries: {
52
+ type: string;
53
+ width: number;
54
+ };
55
+ multipleAxisMode: string;
56
+ primaryXAxis: {
57
+ title: string;
58
+ majorGridLines: {
59
+ width: number;
60
+ };
61
+ };
62
+ chartArea: {
63
+ opacity: number;
64
+ border: {
65
+ width: number;
66
+ };
67
+ };
68
+ palettes: string[];
69
+ primaryYAxis: {
70
+ title: string;
71
+ };
72
+ zoomSettings: {
73
+ enableMouseWheelZooming: boolean;
74
+ enablePinchZooming: boolean;
75
+ enableSelectionZooming: boolean;
76
+ enableDeferredZooming: boolean;
77
+ toolbarItems: any[];
78
+ enableScrollbar: boolean;
79
+ enableZooming: boolean;
80
+ };
81
+ };
82
+ displayOption: {
83
+ view: string;
84
+ primary: string;
85
+ };
86
+ config: any;
87
+ currentTab: string;
88
+ yList: any;
89
+ chartTypeList: string[];
90
+ multipleAxisModeList: string[];
91
+ themeData: any;
92
+ themeFields: Object;
93
+ constructor(api: ApiList, dashboardService: DashboardService, dashboardPorletsService: DashboardPorletsService, ref: ChangeDetectorRef, pbf: any, http: any);
94
+ ngOnInit(): void;
95
+ ngOnChanges(): void;
96
+ ngAfterViewInit(): void;
97
+ private initDataMartTableList;
98
+ ngOnDestroy(): void;
99
+ nextWizard(wizard: number): void;
100
+ private getInfo;
101
+ clear(): void;
102
+ close(): void;
103
+ getFigurecode(): boolean;
104
+ getPortletType($event: any): void;
105
+ changeDataTable(value: any): void;
106
+ _updatePorletConfig(e: any): void;
107
+ private getData;
108
+ setMultipleAxis(e: any): void;
109
+ setChartType(): void;
110
+ getThemeData(e: any): void;
111
+ AddOrEditPortlet(): void;
112
+ private editPortlet;
113
+ switchTab(type: any): void;
114
+ gadgetTitleChange(newObj: any): void;
115
+ setDatabind(): void;
116
+ private getConfig;
117
+ selectedInvestor: any;
118
+ investorList: any[];
119
+ selectedVisualType: any;
120
+ visualTypeList: any[];
121
+ get frequencyOptions(): any;
122
+ initHistoricalIRROptions(): void;
123
+ onSelectedHistoricalIRRPortlet(): void;
124
+ setHistoricalIRRChart(opened: boolean): void;
125
+ selectedX: any;
126
+ selectedY: any;
127
+ selectedSecondY: any;
128
+ selectedMultiples: any;
129
+ markerFormat: string;
130
+ markerFormatList: {
131
+ value: string;
132
+ label: any;
133
+ }[];
134
+ hasMarker: boolean;
135
+ labelConfigChange(e: any): void;
136
+ xyChange(e: any): void;
137
+ showEdit(): void;
138
+ multiplesList: any;
139
+ getmultiplesList(): void;
140
+ capitalize(str: any): any;
141
+ getSelectDatamartId(): any;
142
+ getTrueSelectedDatamart(): any;
143
+ getSelectDatamartCode(): any;
144
+ selectTheme: any;
145
+ changeTheme(e: any, type: any): void;
146
+ sortDataMartTables(data: any): void;
147
+ onChangeFormat(): void;
148
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarIconlistNewComponent, [null, null, null, null, { optional: true; }, { optional: true; }]>;
149
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarIconlistNewComponent, "rs-sidebar-iconlist-new", never, { "dashboard_sidebar": { "alias": "dashboard_sidebar"; "required": false; }; "dashboard": { "alias": "dashboard"; "required": false; }; "dashboardId": { "alias": "dashboardId"; "required": false; }; "activeTabId": { "alias": "activeTabId"; "required": false; }; "activeTabLabel": { "alias": "activeTabLabel"; "required": false; }; "portlets": { "alias": "portlets"; "required": false; }; "tabactive": { "alias": "tabactive"; "required": false; }; "portlet": { "alias": "portlet"; "required": false; }; "figureCode": { "alias": "figureCode"; "required": false; }; "_selectedX": { "alias": "_selectedX"; "required": false; }; "_selectedY": { "alias": "_selectedY"; "required": false; }; "_selectedMultiples": { "alias": "_selectedMultiples"; "required": false; }; "_selectedSecondY": { "alias": "_selectedSecondY"; "required": false; }; "_selectTheme": { "alias": "_selectTheme"; "required": false; }; "appCode": { "alias": "appCode"; "required": false; }; }, { "closeSidebar": "closeSidebar"; "updatePorletConfig": "updatePorletConfig"; "onToggleTabactive": "onToggleTabactive"; "updatePorlet": "updatePorlet"; "updatePushBtn": "updatePushBtn"; "chartUpdate": "chartUpdate"; "updateTheme": "updateTheme"; }, never, never, false, never>;
150
+ }
@@ -14,6 +14,8 @@ export declare class CommonDialogComponent implements OnInit {
14
14
  discardBtnLabel: string;
15
15
  showErrorIcon: boolean;
16
16
  showZoomBtn: boolean;
17
+ customSave: boolean;
18
+ customPageTitle: boolean;
17
19
  onCloseRequest: Function;
18
20
  dialogStyle: {};
19
21
  size: string;
@@ -33,5 +35,5 @@ export declare class CommonDialogComponent implements OnInit {
33
35
  onDiscard(): void;
34
36
  private getInfo;
35
37
  static ɵfac: i0.ɵɵFactoryDeclaration<CommonDialogComponent, never>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<CommonDialogComponent, "rs-common-dialog", never, { "hideHeader": { "alias": "hideHeader"; "required": false; }; "hideCloseIcon": { "alias": "hideCloseIcon"; "required": false; }; "hideCloseBtn": { "alias": "hideCloseBtn"; "required": false; }; "hideSaveBtn": { "alias": "hideSaveBtn"; "required": false; }; "hideDiscardBtn": { "alias": "hideDiscardBtn"; "required": false; }; "saveBtnLabel": { "alias": "saveBtnLabel"; "required": false; }; "cancelBtnLabel": { "alias": "cancelBtnLabel"; "required": false; }; "discardBtnLabel": { "alias": "discardBtnLabel"; "required": false; }; "showErrorIcon": { "alias": "showErrorIcon"; "required": false; }; "showZoomBtn": { "alias": "showZoomBtn"; "required": false; }; "onCloseRequest": { "alias": "onCloseRequest"; "required": false; }; "dialogStyle": { "alias": "dialogStyle"; "required": false; }; "size": { "alias": "size"; "required": false; }; "title": { "alias": "title"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "saveEmit": "saveEmit"; "closeEmit": "closeEmit"; }, ["footerContent"], ["*", "[footerSlot]"], false, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<CommonDialogComponent, "rs-common-dialog", never, { "hideHeader": { "alias": "hideHeader"; "required": false; }; "hideCloseIcon": { "alias": "hideCloseIcon"; "required": false; }; "hideCloseBtn": { "alias": "hideCloseBtn"; "required": false; }; "hideSaveBtn": { "alias": "hideSaveBtn"; "required": false; }; "hideDiscardBtn": { "alias": "hideDiscardBtn"; "required": false; }; "saveBtnLabel": { "alias": "saveBtnLabel"; "required": false; }; "cancelBtnLabel": { "alias": "cancelBtnLabel"; "required": false; }; "discardBtnLabel": { "alias": "discardBtnLabel"; "required": false; }; "showErrorIcon": { "alias": "showErrorIcon"; "required": false; }; "showZoomBtn": { "alias": "showZoomBtn"; "required": false; }; "customSave": { "alias": "customSave"; "required": false; }; "customPageTitle": { "alias": "customPageTitle"; "required": false; }; "onCloseRequest": { "alias": "onCloseRequest"; "required": false; }; "dialogStyle": { "alias": "dialogStyle"; "required": false; }; "size": { "alias": "size"; "required": false; }; "title": { "alias": "title"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "saveEmit": "saveEmit"; "closeEmit": "closeEmit"; }, ["footerContent"], ["[titleSlot]", "*", "[footerSlot]"], false, never>;
37
39
  }
@@ -7,8 +7,9 @@ export declare class FloatBoxComponent implements AfterViewInit, OnDestroy {
7
7
  _trigger: "hover" | "click";
8
8
  _animation: "yes" | "no";
9
9
  _fixed: "yes" | "no";
10
- get placement(): "top" | "bottom" | "right" | "left";
11
- get position(): "start" | "center" | "end";
10
+ _floatClass: string;
11
+ get placement(): "top" | "left" | "right" | "bottom";
12
+ get position(): "center" | "start" | "end";
12
13
  get trigger(): "hover" | "click";
13
14
  get animation(): "yes" | "no";
14
15
  get fixed(): "yes" | "no";
@@ -29,5 +30,5 @@ export declare class FloatBoxComponent implements AfterViewInit, OnDestroy {
29
30
  onMoveOutside: (event: MouseEvent) => void;
30
31
  close(): void;
31
32
  static ɵfac: i0.ɵɵFactoryDeclaration<FloatBoxComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<FloatBoxComponent, "rs-float-box", never, { "_placement": { "alias": "placement"; "required": false; }; "_position": { "alias": "position"; "required": false; }; "_trigger": { "alias": "trigger"; "required": false; }; "_animation": { "alias": "animation"; "required": false; }; "_fixed": { "alias": "fixed"; "required": false; }; }, { "openChange": "openChange"; }, never, ["*", "[float-content]"], false, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<FloatBoxComponent, "rs-float-box", never, { "_placement": { "alias": "placement"; "required": false; }; "_position": { "alias": "position"; "required": false; }; "_trigger": { "alias": "trigger"; "required": false; }; "_animation": { "alias": "animation"; "required": false; }; "_fixed": { "alias": "fixed"; "required": false; }; "_floatClass": { "alias": "floatClass"; "required": false; }; }, { "openChange": "openChange"; }, never, ["*", "[float-content]"], false, never>;
33
34
  }
@@ -15,8 +15,13 @@ export declare class CheckboxGroupComponent implements OnInit {
15
15
  disabled: boolean;
16
16
  error: boolean;
17
17
  valueChange: EventEmitter<any>;
18
+ translation: any;
19
+ indeterminate: boolean;
18
20
  ngOnInit(): void;
21
+ get enabledDataSource(): any[];
19
22
  onChange(event: any, option: any): void;
23
+ onSelectAll(event: any): void;
24
+ calculateIndeterminate(result: any): void;
20
25
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupComponent, never>;
21
26
  static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent, "rs-checkbox-group", never, { "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "fields": { "alias": "fields"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
22
27
  }
@@ -1,15 +1,16 @@
1
1
  import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef, ViewContainerRef } from "@angular/core";
2
- import { FilteringEventArgs } from "@syncfusion/ej2-angular-dropdowns";
2
+ import { DropDownListComponent, FilteringEventArgs } from "@syncfusion/ej2-angular-dropdowns";
3
3
  import { FieldItem, SectionItem } from "./constants";
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class DrawerFormComponent implements OnInit, OnChanges, AfterViewInit {
6
6
  private ref;
7
+ _form: Record<string, any>;
7
8
  _sections: SectionItem[];
8
9
  optionsMap: Record<string, any[]>;
9
- customTemplate: TemplateRef<any>;
10
- customSectionTemplate: Record<string, TemplateRef<any>>;
11
10
  formDisabled: boolean;
12
11
  showAnchor: boolean;
12
+ customTemplate: TemplateRef<any>;
13
+ customSectionTemplate: Record<string, TemplateRef<any>>;
13
14
  optionFields: {
14
15
  text: string;
15
16
  value: string;
@@ -17,7 +18,8 @@ export declare class DrawerFormComponent implements OnInit, OnChanges, AfterView
17
18
  groupBy: any;
18
19
  };
19
20
  showFilterNumber: number;
20
- form: Record<string, any>;
21
+ numberFormat: string;
22
+ dateFormat: string;
21
23
  formChange: EventEmitter<Record<string, any>>;
22
24
  fieldChange: EventEmitter<{
23
25
  field: FieldItem;
@@ -26,9 +28,13 @@ export declare class DrawerFormComponent implements OnInit, OnChanges, AfterView
26
28
  rootEl: ElementRef<HTMLDivElement>;
27
29
  private containers;
28
30
  private sectionContainers;
31
+ dropdowns: QueryList<DropDownListComponent>;
29
32
  sections: SectionItem[];
30
- filterOptionsMap: Record<string, any[]>;
33
+ fieldTypeMap: Partial<Record<FieldItem["fieldFormType"], FieldItem[]>>;
34
+ formFieldMap: Record<string, FieldItem>;
35
+ form: Record<string, any>;
31
36
  fieldValidMap: Record<string, boolean>;
37
+ dateForm: Record<string, Date>;
32
38
  dateValidMap: Record<string, boolean>;
33
39
  constructor(ref: ChangeDetectorRef);
34
40
  ngOnInit(): void;
@@ -36,8 +42,14 @@ export declare class DrawerFormComponent implements OnInit, OnChanges, AfterView
36
42
  ngAfterViewInit(): void;
37
43
  customTemplateRender(containers: QueryList<ViewContainerRef>): void;
38
44
  customSectionRender(containers: QueryList<ViewContainerRef>): void;
45
+ formatFieldMap(): void;
46
+ setForm(form: Record<string, any>): void;
47
+ equal(value: any, compareValue: any): boolean;
39
48
  checkFormChange(previous: Record<string, any>, current: Record<string, any>): void;
40
- formatForm(sections: SectionItem[]): void;
49
+ syncFormToDateForm(field: FieldItem, value: any): void;
50
+ syncFormField(): void;
51
+ formatForm(sections: SectionItem[], form: Record<string, any>): Record<string, any>;
52
+ getFormProxy(form: Record<string, any>): Record<string, any>;
41
53
  updateForm(value: any, field: FieldItem): void;
42
54
  formItemValidator(field: FieldItem, isAuto?: boolean): boolean;
43
55
  preCheckFormIsValid(): boolean;
@@ -51,7 +63,8 @@ export declare class DrawerFormComponent implements OnInit, OnChanges, AfterView
51
63
  onFocus(field: FieldItem): void;
52
64
  onBlur(field: FieldItem): void;
53
65
  onFiltering(event: FilteringEventArgs, field: FieldItem): void;
54
- getValue(field: FieldItem): any;
66
+ onDropdownDataBound(event: any, field: FieldItem): void;
67
+ getOptions(field: FieldItem): any[];
55
68
  getDisabled(field: FieldItem): boolean;
56
69
  getOptionFields(field: FieldItem): {
57
70
  text: string;
@@ -66,5 +79,5 @@ export declare class DrawerFormComponent implements OnInit, OnChanges, AfterView
66
79
  findScrollViewEl(el: HTMLElement): HTMLElement;
67
80
  initAnchorScrollHandler(): void;
68
81
  static ɵfac: i0.ɵɵFactoryDeclaration<DrawerFormComponent, never>;
69
- static ɵcmp: i0.ɵɵComponentDeclaration<DrawerFormComponent, "rs-drawer-form", never, { "_sections": { "alias": "sections"; "required": false; }; "optionsMap": { "alias": "optionsMap"; "required": false; }; "customTemplate": { "alias": "customTemplate"; "required": false; }; "customSectionTemplate": { "alias": "customSectionTemplate"; "required": false; }; "formDisabled": { "alias": "disabled"; "required": false; }; "showAnchor": { "alias": "showAnchor"; "required": false; }; "optionFields": { "alias": "optionFields"; "required": false; }; "showFilterNumber": { "alias": "showFilterNumber"; "required": false; }; "form": { "alias": "form"; "required": false; }; }, { "formChange": "formChange"; "fieldChange": "fieldChange"; }, never, never, false, never>;
82
+ static ɵcmp: i0.ɵɵComponentDeclaration<DrawerFormComponent, "rs-drawer-form", never, { "_form": { "alias": "form"; "required": false; }; "_sections": { "alias": "sections"; "required": false; }; "optionsMap": { "alias": "optionsMap"; "required": false; }; "formDisabled": { "alias": "disabled"; "required": false; }; "showAnchor": { "alias": "showAnchor"; "required": false; }; "customTemplate": { "alias": "customTemplate"; "required": false; }; "customSectionTemplate": { "alias": "customSectionTemplate"; "required": false; }; "optionFields": { "alias": "optionFields"; "required": false; }; "showFilterNumber": { "alias": "showFilterNumber"; "required": false; }; "numberFormat": { "alias": "numberFormat"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; }, { "formChange": "formChange"; "fieldChange": "fieldChange"; }, never, never, false, never>;
70
83
  }
@@ -7,12 +7,14 @@ export declare class RsPageListComponent implements OnInit, AfterContentInit {
7
7
  treeGrid: any;
8
8
  wholeToolbarSlot: any;
9
9
  searchInput: SearchInputComponent;
10
+ leftContentSlot: any;
10
11
  pageTitle: any;
11
12
  customPageTitle: boolean;
12
13
  hideSearch: boolean;
13
14
  isInner: boolean;
14
15
  onGridSearch: EventEmitter<any>;
15
16
  hasWholeToolbarSlot: boolean;
17
+ hasLeftContentSlot: boolean;
16
18
  translation: any;
17
19
  ngOnInit(): void;
18
20
  getInfo(): void;
@@ -20,5 +22,5 @@ export declare class RsPageListComponent implements OnInit, AfterContentInit {
20
22
  setSearchValue(value: any): void;
21
23
  onSeach(value: any): void;
22
24
  static ɵfac: i0.ɵɵFactoryDeclaration<RsPageListComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<RsPageListComponent, "rs-page-list", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; "customPageTitle": { "alias": "customPageTitle"; "required": false; }; "hideSearch": { "alias": "hideSearch"; "required": false; }; "isInner": { "alias": "isInner"; "required": false; }; }, { "onGridSearch": "onGridSearch"; }, ["gridContent", "orignGrid", "treeGrid", "wholeToolbarSlot"], ["[titleSlot]", "[subSectionSlot]", "[contentTabSlot]", "[wholeToolbarSlot]", "[leftToolbarBtnSlot]", "[rightToolbarBtnSlot]", "[gridSlot]"], false, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<RsPageListComponent, "rs-page-list", never, { "pageTitle": { "alias": "pageTitle"; "required": false; }; "customPageTitle": { "alias": "customPageTitle"; "required": false; }; "hideSearch": { "alias": "hideSearch"; "required": false; }; "isInner": { "alias": "isInner"; "required": false; }; }, { "onGridSearch": "onGridSearch"; }, ["gridContent", "orignGrid", "treeGrid", "wholeToolbarSlot", "leftContentSlot"], ["[titleSlot]", "[subSectionSlot]", "[leftContentSlot]", "[contentTabSlot]", "[wholeToolbarSlot]", "[leftToolbarBtnSlot]", "[rightToolbarBtnSlot]", "[gridSlot]"], false, never>;
24
26
  }
@@ -8,6 +8,7 @@ export declare class RsPageTabComponent implements OnInit, AfterViewInit {
8
8
  tabList: any[];
9
9
  currentTab: any;
10
10
  tabChange: EventEmitter<any>;
11
+ selectedItemIndex: number;
11
12
  animation: object;
12
13
  ngOnInit(): void;
13
14
  ngAfterViewInit(): void;
@@ -0,0 +1,5 @@
1
+ export type StepItem = {
2
+ label: string;
3
+ step: number;
4
+ displayTitle?: string;
5
+ };
@@ -0,0 +1,31 @@
1
+ import { EventEmitter, OnInit, SimpleChanges, ElementRef, ChangeDetectorRef, AfterViewInit } from "@angular/core";
2
+ import { StepItem } from "./constants";
3
+ import { CommonFunctionService } from "../../service/common-function.service";
4
+ import * as i0 from "@angular/core";
5
+ export declare class RSStepperComponent implements OnInit, AfterViewInit {
6
+ cf: CommonFunctionService;
7
+ private ref;
8
+ menu: ElementRef;
9
+ steps: StepItem[];
10
+ currentStep: number;
11
+ constructor(cf: CommonFunctionService, ref: ChangeDetectorRef);
12
+ stepClick: EventEmitter<StepItem>;
13
+ unlockedStep: number;
14
+ containerRefId: any;
15
+ ngOnInit(): void;
16
+ ngAfterViewInit(): void;
17
+ ngOnChanges(changes: SimpleChanges): void;
18
+ private syncUnlockedStep;
19
+ onStepClick(step: StepItem, index?: number): void;
20
+ private scrollToStep;
21
+ onResize(event: Event): void;
22
+ checkBtnShow(init?: boolean): void;
23
+ scrollLeft(): void;
24
+ scrollRight(): void;
25
+ showBtn: boolean;
26
+ isAtStart: boolean;
27
+ isAtEnd: boolean;
28
+ onScroll(): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<RSStepperComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<RSStepperComponent, "rs-stepper", never, { "steps": { "alias": "steps"; "required": false; }; "currentStep": { "alias": "currentStep"; "required": false; }; "unlockedStep": { "alias": "unlockedStep"; "required": false; }; "containerRefId": { "alias": "containerRefId"; "required": false; }; }, { "stepClick": "stepClick"; }, never, never, false, never>;
31
+ }
@@ -14,47 +14,68 @@ import * as i12 from "./layout/main-container/index.component";
14
14
  import * as i13 from "./form/tag-input/index.component";
15
15
  import * as i14 from "./form/radio-group/index.component";
16
16
  import * as i15 from "./form/checkbox-group/index.component";
17
- import * as i16 from "./form/switch-input/index.component";
18
- import * as i17 from "./form/encrypted-input/index.component";
19
- import * as i18 from "./form/search-input/index.component";
20
- import * as i19 from "./form/confirm-select/index.component";
21
- import * as i20 from "./dialog/new-action-notification/new-action-notification.component";
22
- import * as i21 from "./dialog/common-dialog/index.component";
23
- import * as i22 from "./dialog/common-delete-dialog/index.component";
24
- import * as i23 from "./layout/drawer/index.component";
25
- import * as i24 from "./form/drawer-form/drawer-form.component";
26
- import * as i25 from "./actions/toolbar-item/index.component";
27
- import * as i26 from "./commentary/index.component";
28
- import * as i27 from "./layout/nav-card-group/index.component";
29
- import * as i28 from "./actions/toolbar/index.component";
30
- import * as i29 from "./truncated-text-toggle/index.component";
31
- import * as i30 from "./form/richtexteditor/index.component";
32
- import * as i31 from "@angular/common";
33
- import * as i32 from "@angular/common/http";
34
- import * as i33 from "@angular/forms";
35
- import * as i34 from "@angular/cdk/drag-drop";
36
- import * as i35 from "@angular/material/snack-bar";
37
- import * as i36 from "@angular/material/menu";
38
- import * as i37 from "@angular/material/tooltip";
39
- import * as i38 from "@angular/material/dialog";
40
- import * as i39 from "@angular/material/icon";
41
- import * as i40 from "@syncfusion/ej2-angular-grids";
42
- import * as i41 from "@syncfusion/ej2-angular-buttons";
43
- import * as i42 from "@syncfusion/ej2-angular-diagrams";
44
- import * as i43 from "@syncfusion/ej2-angular-popups";
45
- import * as i44 from "@syncfusion/ej2-angular-calendars";
46
- import * as i45 from "@syncfusion/ej2-angular-inputs";
47
- import * as i46 from "@syncfusion/ej2-angular-dropdowns";
48
- import * as i47 from "@syncfusion/ej2-angular-pivotview";
49
- import * as i48 from "@syncfusion/ej2-angular-charts";
50
- import * as i49 from "@syncfusion/ej2-angular-layouts";
51
- import * as i50 from "@syncfusion/ej2-angular-navigations";
52
- import * as i51 from "@syncfusion/ej2-angular-pdfviewer";
53
- import * as i52 from "@syncfusion/ej2-angular-splitbuttons";
54
- import * as i53 from "@syncfusion/ej2-angular-notifications";
55
- import * as i54 from "@syncfusion/ej2-angular-richtexteditor";
17
+ import * as i16 from "./form/richtexteditor/index.component";
18
+ import * as i17 from "./form/switch-input/index.component";
19
+ import * as i18 from "./form/encrypted-input/index.component";
20
+ import * as i19 from "./form/search-input/index.component";
21
+ import * as i20 from "./form/confirm-select/index.component";
22
+ import * as i21 from "./dialog/new-action-notification/new-action-notification.component";
23
+ import * as i22 from "./dialog/common-dialog/index.component";
24
+ import * as i23 from "./dialog/common-delete-dialog/index.component";
25
+ import * as i24 from "./layout/drawer/index.component";
26
+ import * as i25 from "./form/drawer-form/drawer-form.component";
27
+ import * as i26 from "./actions/toolbar-item/index.component";
28
+ import * as i27 from "./commentary/index.component";
29
+ import * as i28 from "./layout/nav-card-group/index.component";
30
+ import * as i29 from "./actions/toolbar/index.component";
31
+ import * as i30 from "./truncated-text-toggle/index.component";
32
+ import * as i31 from "./smart-popup/index.component";
33
+ import * as i32 from "./layout/rs-stepper/index.component";
34
+ import * as i33 from "./dashboard/pane-group-new.component";
35
+ import * as i34 from "./dashboard/sidebar-iconlist/sidebar-iconlist-new.component";
36
+ import * as i35 from "./dashboard/dialog-group/empty-icon-prompt/empty-icon-prompt.component";
37
+ import * as i36 from "./dashboard/gadget-group/gadget-table/gadget-table.component";
38
+ import * as i37 from "./dashboard/gadget-group/gadget-pivot/gadget-pivot.component";
39
+ import * as i38 from "./dashboard/gadget-group/gadget-pivot-chart/gadget-pivot.component";
40
+ import * as i39 from "./dashboard/gadget-group/gadget-transpose/gadget-transpose.component";
41
+ import * as i40 from "./dashboard/sidebar-iconlist/portlet-type-new/portlet-type-new.component";
42
+ import * as i41 from "./dashboard/sidebar-iconlist/field-filter/field-filter.component";
43
+ import * as i42 from "./dashboard/sidebar-iconlist/field-format/field-format.component";
44
+ import * as i43 from "./dashboard/dashboard-properties/data-mart-new/data-mart-new.component";
45
+ import * as i44 from "./dashboard/bar-charts/bar-charts.component";
46
+ import * as i45 from "./dashboard/dialog-group/download/index.component";
47
+ import * as i46 from "@angular/common";
48
+ import * as i47 from "@angular/common/http";
49
+ import * as i48 from "@angular/forms";
50
+ import * as i49 from "@angular/cdk/drag-drop";
51
+ import * as i50 from "@angular/material/snack-bar";
52
+ import * as i51 from "@angular/material/menu";
53
+ import * as i52 from "@angular/material/tooltip";
54
+ import * as i53 from "@angular/material/dialog";
55
+ import * as i54 from "@angular/material/icon";
56
+ import * as i55 from "@angular/material/checkbox";
57
+ import * as i56 from "@angular/material/select";
58
+ import * as i57 from "@angular/material/form-field";
59
+ import * as i58 from "@angular/material/input";
60
+ import * as i59 from "@angular/material/button";
61
+ import * as i60 from "@syncfusion/ej2-angular-grids";
62
+ import * as i61 from "@syncfusion/ej2-angular-buttons";
63
+ import * as i62 from "@syncfusion/ej2-angular-diagrams";
64
+ import * as i63 from "@syncfusion/ej2-angular-popups";
65
+ import * as i64 from "@syncfusion/ej2-angular-calendars";
66
+ import * as i65 from "@syncfusion/ej2-angular-inputs";
67
+ import * as i66 from "@syncfusion/ej2-angular-dropdowns";
68
+ import * as i67 from "@syncfusion/ej2-angular-pivotview";
69
+ import * as i68 from "@syncfusion/ej2-angular-charts";
70
+ import * as i69 from "@syncfusion/ej2-angular-layouts";
71
+ import * as i70 from "@syncfusion/ej2-angular-navigations";
72
+ import * as i71 from "@syncfusion/ej2-angular-pdfviewer";
73
+ import * as i72 from "@syncfusion/ej2-angular-splitbuttons";
74
+ import * as i73 from "@syncfusion/ej2-angular-notifications";
75
+ import * as i74 from "@syncfusion/ej2-angular-richtexteditor";
76
+ import * as i75 from "ng-inline-svg-2";
56
77
  export declare class RaiseCommonLibModule {
57
78
  static ɵfac: i0.ɵɵFactoryDeclaration<RaiseCommonLibModule, never>;
58
- static ɵmod: i0.ɵɵNgModuleDeclaration<RaiseCommonLibModule, [typeof i1.CommonGridComponent, typeof i2.GridActionComponent, typeof i3.GridActionItemComponent, typeof i4.FloatBoxComponent, typeof i5.RsPageListComponent, typeof i6.RsPageTabComponent, typeof i7.GridBoxComponent, typeof i8.RSHeaderComponent, typeof i9.RSFooterComponent, typeof i10.RSAsideComponent, typeof i11.MultiTabComponent, typeof i12.MainContainerComponent, typeof i13.TagInputComponent, typeof i14.RadioGroupComponent, typeof i15.CheckboxGroupComponent, typeof i16.SwitchInputComponent, typeof i17.EncryptedInputComponent, typeof i18.SearchInputComponent, typeof i19.ConfirmSelectComponent, typeof i20.NewActionNotificationComponent, typeof i21.CommonDialogComponent, typeof i22.CommonDeleteComponent, typeof i23.DrawerComponent, typeof i24.DrawerFormComponent, typeof i25.ToolbarItemComponent, typeof i26.RsCommentaryComponent, typeof i27.RSNavCardGroupComponent, typeof i28.RSToolbarComponent, typeof i29.TruncatedTextToggleComponent, typeof i30.RichtexteditorComponent], [typeof i31.CommonModule, typeof i32.HttpClientModule, typeof i33.ReactiveFormsModule, typeof i33.FormsModule, typeof i34.DragDropModule, typeof i35.MatSnackBarModule, typeof i36.MatMenuModule, typeof i37.MatTooltipModule, typeof i38.MatDialogModule, typeof i39.MatIconModule, typeof i40.GridModule, typeof i40.PagerModule, typeof i40.GridAllModule, typeof i41.SwitchModule, typeof i41.CheckBoxModule, typeof i41.RadioButtonModule, typeof i41.ButtonModule, typeof i42.DiagramModule, typeof i43.TooltipModule, typeof i43.DialogModule, typeof i44.DatePickerModule, typeof i44.DateRangePickerModule, typeof i44.DateTimePickerModule, typeof i45.TextBoxModule, typeof i45.ColorPickerModule, typeof i45.UploaderModule, typeof i45.NumericTextBoxModule, typeof i46.DropDownListModule, typeof i46.DropDownTreeModule, typeof i46.MultiSelectAllModule, typeof i46.AutoCompleteModule, typeof i46.ListBoxModule, typeof i47.PivotViewAllModule, typeof i47.PivotFieldListAllModule, typeof i48.ChartAllModule, typeof i48.AccumulationChartAllModule, typeof i48.RangeNavigatorAllModule, typeof i48.AccumulationChartModule, typeof i49.DashboardLayoutModule, typeof i50.CarouselAllModule, typeof i50.ToolbarModule, typeof i50.TabModule, typeof i50.TreeViewModule, typeof i51.PdfViewerModule, typeof i52.DropDownButtonModule, typeof i52.SplitButtonModule, typeof i53.SkeletonModule, typeof i54.RichTextEditorAllModule], [typeof i31.CommonModule, typeof i32.HttpClientModule, typeof i33.ReactiveFormsModule, typeof i33.FormsModule, typeof i34.DragDropModule, typeof i35.MatSnackBarModule, typeof i36.MatMenuModule, typeof i37.MatTooltipModule, typeof i38.MatDialogModule, typeof i40.GridModule, typeof i40.PagerModule, typeof i40.GridAllModule, typeof i41.SwitchModule, typeof i41.CheckBoxModule, typeof i41.RadioButtonModule, typeof i41.ButtonModule, typeof i42.DiagramModule, typeof i43.TooltipModule, typeof i43.DialogModule, typeof i44.DatePickerModule, typeof i44.DateRangePickerModule, typeof i44.DateTimePickerModule, typeof i45.TextBoxModule, typeof i45.ColorPickerModule, typeof i45.UploaderModule, typeof i45.NumericTextBoxModule, typeof i46.DropDownListModule, typeof i46.DropDownTreeModule, typeof i46.MultiSelectAllModule, typeof i46.AutoCompleteModule, typeof i46.ListBoxModule, typeof i47.PivotViewAllModule, typeof i47.PivotFieldListAllModule, typeof i48.ChartAllModule, typeof i48.AccumulationChartAllModule, typeof i48.RangeNavigatorAllModule, typeof i48.AccumulationChartModule, typeof i49.DashboardLayoutModule, typeof i50.CarouselAllModule, typeof i50.ToolbarModule, typeof i50.TabModule, typeof i50.TreeViewModule, typeof i51.PdfViewerModule, typeof i52.DropDownButtonModule, typeof i52.SplitButtonModule, typeof i53.SkeletonModule, typeof i54.RichTextEditorAllModule, typeof i1.CommonGridComponent, typeof i2.GridActionComponent, typeof i3.GridActionItemComponent, typeof i4.FloatBoxComponent, typeof i5.RsPageListComponent, typeof i6.RsPageTabComponent, typeof i7.GridBoxComponent, typeof i8.RSHeaderComponent, typeof i9.RSFooterComponent, typeof i10.RSAsideComponent, typeof i11.MultiTabComponent, typeof i12.MainContainerComponent, typeof i13.TagInputComponent, typeof i14.RadioGroupComponent, typeof i15.CheckboxGroupComponent, typeof i16.SwitchInputComponent, typeof i17.EncryptedInputComponent, typeof i18.SearchInputComponent, typeof i19.ConfirmSelectComponent, typeof i23.DrawerComponent, typeof i24.DrawerFormComponent, typeof i25.ToolbarItemComponent, typeof i26.RsCommentaryComponent, typeof i27.RSNavCardGroupComponent, typeof i28.RSToolbarComponent, typeof i29.TruncatedTextToggleComponent, typeof i21.CommonDialogComponent, typeof i30.RichtexteditorComponent]>;
79
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RaiseCommonLibModule, [typeof i1.CommonGridComponent, typeof i2.GridActionComponent, typeof i3.GridActionItemComponent, typeof i4.FloatBoxComponent, typeof i5.RsPageListComponent, typeof i6.RsPageTabComponent, typeof i7.GridBoxComponent, typeof i8.RSHeaderComponent, typeof i9.RSFooterComponent, typeof i10.RSAsideComponent, typeof i11.MultiTabComponent, typeof i12.MainContainerComponent, typeof i13.TagInputComponent, typeof i14.RadioGroupComponent, typeof i15.CheckboxGroupComponent, typeof i16.RichtexteditorComponent, typeof i17.SwitchInputComponent, typeof i18.EncryptedInputComponent, typeof i19.SearchInputComponent, typeof i20.ConfirmSelectComponent, typeof i21.NewActionNotificationComponent, typeof i22.CommonDialogComponent, typeof i23.CommonDeleteComponent, typeof i24.DrawerComponent, typeof i25.DrawerFormComponent, typeof i26.ToolbarItemComponent, typeof i27.RsCommentaryComponent, typeof i28.RSNavCardGroupComponent, typeof i29.RSToolbarComponent, typeof i30.TruncatedTextToggleComponent, typeof i16.RichtexteditorComponent, typeof i31.SmartPopupComponent, typeof i32.RSStepperComponent, typeof i33.PaneGroupNewComponent, typeof i34.SidebarIconlistNewComponent, typeof i35.EmptyIconPromptComponent, typeof i36.GadgetTableComponent, typeof i37.GadgetPivotComponent, typeof i38.GadgetPivotChartComponent, typeof i39.GadgetTransposeComponent, typeof i40.PortletTypeNewComponent, typeof i41.FieldFilterComponent, typeof i42.FieldFormatComponent, typeof i43.DataMartNewComponent, typeof i44.BarChartsComponent, typeof i45.PaneDownloadComponent], [typeof i46.CommonModule, typeof i47.HttpClientModule, typeof i48.ReactiveFormsModule, typeof i48.FormsModule, typeof i49.DragDropModule, typeof i50.MatSnackBarModule, typeof i51.MatMenuModule, typeof i52.MatTooltipModule, typeof i53.MatDialogModule, typeof i54.MatIconModule, typeof i55.MatCheckboxModule, typeof i56.MatSelectModule, typeof i57.MatFormFieldModule, typeof i58.MatInputModule, typeof i59.MatButtonModule, typeof i60.GridModule, typeof i60.PagerModule, typeof i60.GridAllModule, typeof i61.SwitchModule, typeof i61.CheckBoxModule, typeof i61.RadioButtonModule, typeof i61.ButtonModule, typeof i61.ChipListModule, typeof i62.DiagramModule, typeof i63.TooltipModule, typeof i63.DialogModule, typeof i64.DatePickerModule, typeof i64.DateRangePickerModule, typeof i64.DateTimePickerModule, typeof i65.TextBoxModule, typeof i65.ColorPickerModule, typeof i65.UploaderModule, typeof i65.NumericTextBoxModule, typeof i66.DropDownListModule, typeof i66.DropDownTreeModule, typeof i66.MultiSelectAllModule, typeof i66.AutoCompleteModule, typeof i66.ListBoxModule, typeof i67.PivotViewAllModule, typeof i67.PivotFieldListAllModule, typeof i68.ChartAllModule, typeof i68.AccumulationChartAllModule, typeof i68.RangeNavigatorAllModule, typeof i68.AccumulationChartModule, typeof i69.DashboardLayoutModule, typeof i70.CarouselAllModule, typeof i70.ToolbarModule, typeof i70.TabModule, typeof i70.TreeViewModule, typeof i71.PdfViewerModule, typeof i72.DropDownButtonModule, typeof i72.SplitButtonModule, typeof i73.SkeletonModule, typeof i74.RichTextEditorAllModule, typeof i75.InlineSVGModule], [typeof i46.CommonModule, typeof i47.HttpClientModule, typeof i48.ReactiveFormsModule, typeof i48.FormsModule, typeof i49.DragDropModule, typeof i50.MatSnackBarModule, typeof i51.MatMenuModule, typeof i52.MatTooltipModule, typeof i53.MatDialogModule, typeof i60.GridModule, typeof i60.PagerModule, typeof i60.GridAllModule, typeof i61.SwitchModule, typeof i61.CheckBoxModule, typeof i61.RadioButtonModule, typeof i61.ButtonModule, typeof i61.ChipListModule, typeof i62.DiagramModule, typeof i63.TooltipModule, typeof i63.DialogModule, typeof i64.DatePickerModule, typeof i64.DateRangePickerModule, typeof i64.DateTimePickerModule, typeof i65.TextBoxModule, typeof i65.ColorPickerModule, typeof i65.UploaderModule, typeof i65.NumericTextBoxModule, typeof i66.DropDownListModule, typeof i66.DropDownTreeModule, typeof i66.MultiSelectAllModule, typeof i66.AutoCompleteModule, typeof i66.ListBoxModule, typeof i67.PivotViewAllModule, typeof i67.PivotFieldListAllModule, typeof i68.ChartAllModule, typeof i68.AccumulationChartAllModule, typeof i68.RangeNavigatorAllModule, typeof i68.AccumulationChartModule, typeof i69.DashboardLayoutModule, typeof i70.CarouselAllModule, typeof i70.ToolbarModule, typeof i70.TabModule, typeof i70.TreeViewModule, typeof i71.PdfViewerModule, typeof i72.DropDownButtonModule, typeof i72.SplitButtonModule, typeof i73.SkeletonModule, typeof i74.RichTextEditorAllModule, typeof i1.CommonGridComponent, typeof i2.GridActionComponent, typeof i3.GridActionItemComponent, typeof i4.FloatBoxComponent, typeof i5.RsPageListComponent, typeof i6.RsPageTabComponent, typeof i7.GridBoxComponent, typeof i8.RSHeaderComponent, typeof i9.RSFooterComponent, typeof i10.RSAsideComponent, typeof i11.MultiTabComponent, typeof i12.MainContainerComponent, typeof i13.TagInputComponent, typeof i14.RadioGroupComponent, typeof i15.CheckboxGroupComponent, typeof i16.RichtexteditorComponent, typeof i17.SwitchInputComponent, typeof i18.EncryptedInputComponent, typeof i19.SearchInputComponent, typeof i20.ConfirmSelectComponent, typeof i24.DrawerComponent, typeof i25.DrawerFormComponent, typeof i26.ToolbarItemComponent, typeof i27.RsCommentaryComponent, typeof i28.RSNavCardGroupComponent, typeof i29.RSToolbarComponent, typeof i30.TruncatedTextToggleComponent, typeof i31.SmartPopupComponent, typeof i22.CommonDialogComponent, typeof i32.RSStepperComponent, typeof i33.PaneGroupNewComponent, typeof i34.SidebarIconlistNewComponent, typeof i35.EmptyIconPromptComponent, typeof i36.GadgetTableComponent, typeof i37.GadgetPivotComponent, typeof i38.GadgetPivotChartComponent, typeof i39.GadgetTransposeComponent, typeof i40.PortletTypeNewComponent, typeof i41.FieldFilterComponent, typeof i42.FieldFormatComponent, typeof i43.DataMartNewComponent, typeof i44.BarChartsComponent, typeof i45.PaneDownloadComponent]>;
59
80
  static ɵinj: i0.ɵɵInjectorDeclaration<RaiseCommonLibModule>;
60
81
  }
@@ -0,0 +1,4 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export declare const PBF_TOKEN: InjectionToken<unknown>;
3
+ export declare const API_SERVICE_TOKEN: InjectionToken<unknown>;
4
+ export declare const ROLE_SERVICE_TOKEN: InjectionToken<unknown>;
@@ -0,0 +1,60 @@
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnChanges, SimpleChanges } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export type PlacementType = "TopLeft" | "TopCenter" | "TopRight" | "BottomLeft" | "BottomCenter" | "BottomRight" | "LeftTop" | "LeftCenter" | "LeftBottom" | "RightTop" | "RightCenter" | "RightBottom";
4
+ export declare class SmartPopupComponent implements AfterViewInit, OnDestroy, OnChanges {
5
+ private ref;
6
+ _placement: PlacementType;
7
+ _offset: number;
8
+ _autoAdjust: "yes" | "no";
9
+ triggerElementRef: HTMLElement | null;
10
+ loading: boolean;
11
+ _open: boolean;
12
+ _width: number | null;
13
+ _height: number | null;
14
+ get placementInfo(): {
15
+ placement: "top" | "left" | "right" | "bottom";
16
+ position: "start" | "center" | "end";
17
+ };
18
+ get offset(): number;
19
+ get autoAdjust(): boolean;
20
+ openChange: EventEmitter<boolean>;
21
+ contentLoad: EventEmitter<void>;
22
+ internalTriggerElement: ElementRef<HTMLElement>;
23
+ popupElement: ElementRef<HTMLDivElement>;
24
+ currentTriggerElement: HTMLElement | null;
25
+ constructor(ref: ChangeDetectorRef);
26
+ ngAfterViewInit(): void;
27
+ ngOnChanges(changes: SimpleChanges): void;
28
+ ngOnDestroy(): void;
29
+ updateTriggerElement(): void;
30
+ FIXED_CONTAINER_ID: string;
31
+ fixedContainerEl: HTMLElement;
32
+ getFixedContainer(): HTMLElement;
33
+ opened: "yes" | "no";
34
+ positioning: "yes" | "no";
35
+ actualPlacement: "top" | "left" | "right" | "bottom";
36
+ actualPosition: "start" | "center" | "end";
37
+ open(triggerElement?: HTMLElement): void;
38
+ private openPopup;
39
+ close(): void;
40
+ toggle(): void;
41
+ onClickTrigger(event: MouseEvent): void;
42
+ onClickOutside: (event: MouseEvent) => void;
43
+ onWindowScroll: (event: Event) => void;
44
+ onPopupWheel(event: WheelEvent): void;
45
+ onPopupScroll(event: Event): void;
46
+ private calculateAndSetPosition;
47
+ updatePopupPosition(): void;
48
+ calculateOptimalPlacement(triggerRect: DOMRect | ClientRect, popupRect: DOMRect | ClientRect, viewportWidth: number, viewportHeight: number): {
49
+ placement: "top" | "left" | "right" | "bottom";
50
+ position: "start" | "center" | "end";
51
+ };
52
+ private calculatePositionCoordinates;
53
+ setPopupPosition(triggerRect: DOMRect | ClientRect, popupRect: DOMRect | ClientRect, placement: "top" | "left" | "right" | "bottom", position: "start" | "center" | "end", popupSize?: {
54
+ width: number;
55
+ height: number;
56
+ }): void;
57
+ onWindowResize(): void;
58
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmartPopupComponent, never>;
59
+ static ɵcmp: i0.ɵɵComponentDeclaration<SmartPopupComponent, "rs-smart-popup", never, { "_placement": { "alias": "placement"; "required": false; }; "_offset": { "alias": "offset"; "required": false; }; "_autoAdjust": { "alias": "autoAdjust"; "required": false; }; "triggerElementRef": { "alias": "triggerElement"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "_open": { "alias": "open"; "required": false; }; "_width": { "alias": "width"; "required": false; }; "_height": { "alias": "height"; "required": false; }; }, { "openChange": "openChange"; "contentLoad": "contentLoad"; }, never, ["[trigger]", "*"], false, never>;
60
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raise-common-lib-new",
3
- "version": "0.0.63",
3
+ "version": "0.0.64",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.0.0",
6
6
  "@angular/core": "^16.0.0"