nira-falcon 0.1.49 → 0.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/core-table/core-table/core-table.component.mjs +3 -2
- package/esm2022/lib/core-table/core-table/core-table.type.mjs +1 -1
- package/esm2022/lib/core-table/core-table-card-manager/core-table-card-manager.component.mjs +2 -2
- package/esm2022/lib/core-table/core-table-column-manager/core-table-column-manager.component.mjs +2 -2
- package/esm2022/lib/core-table/core-table-date/core-table-date.component.mjs +2 -2
- package/esm2022/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.mjs +2 -2
- package/esm2022/lib/falconTypes.mjs +19 -1
- package/esm2022/utils/constants.mjs +1 -19
- package/fesm2022/nira-falcon.mjs +28 -28
- package/fesm2022/nira-falcon.mjs.map +1 -1
- package/lib/core-table/core-table/core-table.component.d.ts +1 -1
- package/lib/core-table/core-table/core-table.type.d.ts +1 -1
- package/lib/core-table/core-table-card-manager/core-table-card-manager.component.d.ts +1 -1
- package/lib/core-table/core-table-column-manager/core-table-column-manager.component.d.ts +1 -1
- package/lib/core-table/core-table-date/core-table-date.component.d.ts +1 -1
- package/lib/core-table/core-table-shamsi-date/core-table-shamsi-date.component.d.ts +1 -1
- package/lib/falconTypes.d.ts +17 -0
- package/package.json +1 -1
- package/utils/constants.d.ts +0 -17
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { BehaviorSubject } from 'rxjs';
|
|
3
3
|
import { NgxIndexedDBService } from 'ngx-indexed-db';
|
|
4
|
-
import { COLUMNS_TYPES } from '../../../utils/constants';
|
|
5
4
|
import { ColumnsSchema } from './core-table.type';
|
|
5
|
+
import { COLUMNS_TYPES } from '../../falconTypes';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class CoreTableComponent {
|
|
8
8
|
private dbService;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { NiraSnackBarService } from 'nira-snack-bar';
|
|
3
|
-
import { COLUMNS_TYPES } from '../../../utils/constants';
|
|
4
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { COLUMNS_TYPES } from '../../falconTypes';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CoreTableCardManagerComponent {
|
|
7
7
|
private niraSnackBar;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { NiraSnackBarService } from 'nira-snack-bar';
|
|
3
|
-
import { COLUMNS_TYPES } from '../../../utils/constants';
|
|
4
3
|
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { COLUMNS_TYPES } from '../../falconTypes';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CoreTableColumnManagerComponent {
|
|
7
7
|
private niraSnackBar;
|
package/lib/falconTypes.d.ts
CHANGED
|
@@ -22,3 +22,20 @@ export declare enum DetailViewers {
|
|
|
22
22
|
SERVICE = "service",
|
|
23
23
|
VEHICLE = "vehicle"
|
|
24
24
|
}
|
|
25
|
+
export declare enum COLUMNS_TYPES {
|
|
26
|
+
TEXT = "text",
|
|
27
|
+
COLOR = "color",
|
|
28
|
+
NUMBER = "number",
|
|
29
|
+
SELECTOR = "selector",
|
|
30
|
+
ROW_SELECTOR = "row-selector",
|
|
31
|
+
STATUS = "status",
|
|
32
|
+
STATUS_ACTIVE = "status-active",
|
|
33
|
+
ACTION = "action",
|
|
34
|
+
ACTION_BUTTONS = "action-buttons",
|
|
35
|
+
/** @deprecated do not use SHAMSI_DATE please use DATE */
|
|
36
|
+
SHAMSI_DATE = "shamsi-date",
|
|
37
|
+
DATE = "date",
|
|
38
|
+
MULTI_COLUMN = "multiColumn",
|
|
39
|
+
PELAK = "pelak",
|
|
40
|
+
DETAIL_VIEWER_FOR_REPORT = "detail-viewer-for-report"
|
|
41
|
+
}
|
package/package.json
CHANGED
package/utils/constants.d.ts
CHANGED
|
@@ -15,23 +15,6 @@ export declare enum UserLanguage {
|
|
|
15
15
|
EN = "en",
|
|
16
16
|
FA = "fa"
|
|
17
17
|
}
|
|
18
|
-
export declare enum COLUMNS_TYPES {
|
|
19
|
-
TEXT = "text",
|
|
20
|
-
COLOR = "color",
|
|
21
|
-
NUMBER = "number",
|
|
22
|
-
SELECTOR = "selector",
|
|
23
|
-
ROW_SELECTOR = "row-selector",
|
|
24
|
-
STATUS = "status",
|
|
25
|
-
STATUS_ACTIVE = "status-active",
|
|
26
|
-
ACTION = "action",
|
|
27
|
-
ACTION_BUTTONS = "action-buttons",
|
|
28
|
-
/** @deprecated do not use SHAMSI_DATE please use DATE */
|
|
29
|
-
SHAMSI_DATE = "shamsi-date",
|
|
30
|
-
DATE = "date",
|
|
31
|
-
MULTI_COLUMN = "multiColumn",
|
|
32
|
-
PELAK = "pelak",
|
|
33
|
-
DETAIL_VIEWER_FOR_REPORT = "detail-viewer-for-report"
|
|
34
|
-
}
|
|
35
18
|
export declare enum TOAST_MESSAGES {
|
|
36
19
|
SUCCESSFUL_CREATE = "\u0628\u0627 \u0645\u0648\u0641\u0642\u06CC\u062A \u062B\u0628\u062A \u0634\u062F",
|
|
37
20
|
SUCCESSFUL_ADDED = "\u0628\u0627 \u0645\u0648\u0641\u0642\u06CC\u062A \u0627\u0636\u0627\u0641\u0647 \u0634\u062F",
|