herum-shared 0.1.38 → 0.1.46
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/assets/shared/audio-images/purple-pause.svg +4 -0
- package/assets/shared/audio-images/purple-play.svg +3 -0
- package/atoms/index.d.ts +55 -55
- package/constants/index.d.ts +186 -136
- package/dialogs/index.d.ts +4 -3
- package/environment/index.d.ts +2 -35
- package/fesm2022/herum-shared-animations.mjs +4 -0
- package/fesm2022/herum-shared-animations.mjs.map +1 -1
- package/fesm2022/herum-shared-atoms.mjs +111 -109
- package/fesm2022/herum-shared-atoms.mjs.map +1 -1
- package/fesm2022/herum-shared-constants.mjs +205 -162
- package/fesm2022/herum-shared-constants.mjs.map +1 -1
- package/fesm2022/herum-shared-decorators.mjs +4 -0
- package/fesm2022/herum-shared-decorators.mjs.map +1 -1
- package/fesm2022/herum-shared-dialogs.mjs +7 -4
- package/fesm2022/herum-shared-dialogs.mjs.map +1 -1
- package/fesm2022/herum-shared-directives.mjs +5 -1
- package/fesm2022/herum-shared-directives.mjs.map +1 -1
- package/fesm2022/herum-shared-environment.mjs +4 -0
- package/fesm2022/herum-shared-environment.mjs.map +1 -1
- package/fesm2022/herum-shared-errors.mjs +5 -1
- package/fesm2022/herum-shared-errors.mjs.map +1 -1
- package/fesm2022/herum-shared-fetched-message.mjs +39 -30
- package/fesm2022/herum-shared-fetched-message.mjs.map +1 -1
- package/fesm2022/herum-shared-molecules.mjs +57 -28
- package/fesm2022/herum-shared-molecules.mjs.map +1 -1
- package/fesm2022/herum-shared-mongo.mjs +414 -150
- package/fesm2022/herum-shared-mongo.mjs.map +1 -1
- package/fesm2022/herum-shared-objectsExample.mjs +5 -1
- package/fesm2022/herum-shared-objectsExample.mjs.map +1 -1
- package/fesm2022/herum-shared-pipes.mjs +64 -60
- package/fesm2022/herum-shared-pipes.mjs.map +1 -1
- package/fesm2022/herum-shared-services.mjs +144 -321
- package/fesm2022/herum-shared-services.mjs.map +1 -1
- package/fesm2022/herum-shared-static-services.mjs +4 -0
- package/fesm2022/herum-shared-static-services.mjs.map +1 -1
- package/fesm2022/herum-shared-table.mjs +61 -48
- package/fesm2022/herum-shared-table.mjs.map +1 -1
- package/fesm2022/herum-shared-testsObjects.mjs +89 -119
- package/fesm2022/herum-shared-testsObjects.mjs.map +1 -1
- package/fesm2022/herum-shared-tokens.mjs +4 -0
- package/fesm2022/herum-shared-tokens.mjs.map +1 -1
- package/fesm2022/herum-shared-utils.mjs +43 -39
- package/fesm2022/herum-shared-utils.mjs.map +1 -1
- package/fesm2022/herum-shared-validators.mjs +4 -0
- package/fesm2022/herum-shared-validators.mjs.map +1 -1
- package/fesm2022/herum-shared.mjs +9090 -924
- package/fesm2022/herum-shared.mjs.map +1 -1
- package/fetched-message/index.d.ts +11 -11
- package/index.d.ts +1673 -281
- package/molecules/index.d.ts +11 -8
- package/mongo/index.d.ts +125 -66
- package/objectsExample/index.d.ts +3 -1
- package/package.json +2 -5
- package/pipes/index.d.ts +25 -21
- package/services/index.d.ts +56 -67
- package/styles/_mixin.scss +2 -2
- package/styles/dialogs.scss +0 -5
- package/styles/variables/_colors.scss +5 -109
- package/styles/variables/_sizes.scss +2 -9
- package/table/index.d.ts +25 -18
- package/testsObjects/index.d.ts +3 -3
- package/tokens/index.d.ts +6 -4
- package/utils/index.d.ts +14 -10
- package/fesm2022/herum-shared-herum-types.mjs +0 -107
- package/fesm2022/herum-shared-herum-types.mjs.map +0 -1
- package/herum-types/index.d.ts +0 -200
- package/styles/variables/_colors.college.scss +0 -65
package/styles/_mixin.scss
CHANGED
|
@@ -13,9 +13,8 @@
|
|
|
13
13
|
@mixin customTooltipStyle {
|
|
14
14
|
background-color: var(--tooltip-background-color) !important;
|
|
15
15
|
color: var(--light-background-color) !important;
|
|
16
|
-
padding: var(--tooltip-padding-size) !important;
|
|
17
16
|
border-radius: var(--border-radius) !important;
|
|
18
|
-
font-size:
|
|
17
|
+
font-size: var(--standard-font-size) !important;
|
|
19
18
|
@include boxShadow;
|
|
20
19
|
}
|
|
21
20
|
|
|
@@ -47,6 +46,7 @@
|
|
|
47
46
|
}
|
|
48
47
|
|
|
49
48
|
@mixin alignContent {
|
|
49
|
+
|
|
50
50
|
&.center,
|
|
51
51
|
&.right,
|
|
52
52
|
&.left,
|
package/styles/dialogs.scss
CHANGED
|
@@ -14,17 +14,12 @@ form {
|
|
|
14
14
|
font-weight: 600;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
.description {
|
|
18
|
-
font-size: 14px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
17
|
p {
|
|
22
18
|
margin: 0;
|
|
23
19
|
}
|
|
24
20
|
|
|
25
21
|
.dialog-buttons-actions-container {
|
|
26
22
|
width: 100%;
|
|
27
|
-
justify-content: flex-end;
|
|
28
23
|
gap: 16px;
|
|
29
24
|
display: flex;
|
|
30
25
|
flex-direction: row;
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
--disabled-border-color: #c8c5c5;
|
|
8
8
|
|
|
9
9
|
--positive-color: #26c593;
|
|
10
|
+
--light-positive-color: color-mix(in srgb, var(--positive-color) 20%, transparent);
|
|
10
11
|
|
|
11
12
|
--popup-panel-color: #1c274c86;
|
|
12
13
|
|
|
@@ -18,6 +19,7 @@
|
|
|
18
19
|
--panels-fill-color: #f4f4f7;
|
|
19
20
|
|
|
20
21
|
--error-color: #ff0a4d;
|
|
22
|
+
|
|
21
23
|
--information-color: #00bcd4;
|
|
22
24
|
|
|
23
25
|
--main-background-color: #f9fcff;
|
|
@@ -49,113 +51,7 @@
|
|
|
49
51
|
--default-icons-color: #7897a8;
|
|
50
52
|
|
|
51
53
|
--dark-overlay: #00000000;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
--hover-background: #eaf3fd;
|
|
56
|
-
--dark-hover-background: #c0deff;
|
|
57
|
-
--item-hover-color: #eaf3fd;
|
|
58
|
-
--hovered-item-background-color: #eaf3fd;
|
|
59
|
-
--learning-area-background-color: #f7f7f7;
|
|
60
|
-
--light-background-color: #fff;
|
|
61
|
-
--border-separator-color: #e6e6e6;
|
|
62
|
-
|
|
63
|
-
--primary-color: linear-gradient(0deg, #2b87e9 0%, #009de7 100%);
|
|
64
|
-
--lighter-primary-color: linear-gradient(0deg, #4e96e3 0%, #45b9ef 100%);
|
|
65
|
-
--fliped-primary-color: linear-gradient(180deg, #2b87e9 0%, #009de7 100%);
|
|
66
|
-
|
|
67
|
-
--icons-color: #2b87e9;
|
|
68
|
-
--secondary-icons-color: #26c593;
|
|
69
|
-
|
|
70
|
-
--icons-start-linear-gradient-color: #032b44;
|
|
71
|
-
--icons-middle-linear-gradient-color: #4682b4;
|
|
72
|
-
--icons-end-linear-gradient-color: #6495ed;
|
|
73
|
-
--icons-linear-gradient-color: linear-gradient(135deg,
|
|
74
|
-
var(--icons-start-linear-gradient-color),
|
|
75
|
-
var(--icons-middle-linear-gradient-color),
|
|
76
|
-
var(--icons-end-linear-gradient-color));
|
|
77
|
-
|
|
78
|
-
--college-secondary-icons-color: #2d7abe;
|
|
79
|
-
--notebook-header: linear-gradient(0deg, rgba(0, 212, 255, 0) 0%, #cadff8 100%);
|
|
80
|
-
--page-background-color: #f9fcff;
|
|
81
|
-
--divider-color: #e3dbf0;
|
|
82
|
-
|
|
83
|
-
--icons-color-light-1: #2d7abe80;
|
|
84
|
-
--icons-color-light-2: #2d7abe33;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.herum-colors {
|
|
88
|
-
--hover-background: #f1f3f9;
|
|
89
|
-
--item-hover-color: #f1f5f7;
|
|
90
|
-
|
|
91
|
-
--title-color: #131a17;
|
|
92
|
-
--semi-transparent-title: rgba(255, 255, 255, 0.8);
|
|
93
|
-
|
|
94
|
-
--primary-color: linear-gradient(0deg, #198575 0%, #2ab580 100%);
|
|
95
|
-
--fliped-primary-color: linear-gradient(180deg, #198575 0%, #2ab580 100%);
|
|
96
|
-
--lighter-primary-color: linear-gradient(0deg, #177969 0%, #25a072 100%);
|
|
97
|
-
--icons-color: #26c593;
|
|
98
|
-
|
|
99
|
-
--icons-start-linear-gradient-color: #095d57;
|
|
100
|
-
--icons-middle-linear-gradient-color: #2bb982;
|
|
101
|
-
--icons-end-linear-gradient-color: #44f0bb;
|
|
102
|
-
--icons-linear-gradient-color: linear-gradient(135deg,
|
|
103
|
-
var(--icons-start-linear-gradient-color),
|
|
104
|
-
var(--icons-middle-linear-gradient-color),
|
|
105
|
-
var(--icons-end-linear-gradient-color));
|
|
106
|
-
|
|
107
|
-
--darker-primary-color: linear-gradient(0deg, #177969 0%, #25a072 100%);
|
|
108
|
-
--section-header-color: transparent linear-gradient(177deg, var(--icons-start-linear-gradient-color) 0%, #2bb982b8 52%, hsla(162, 85%, 60%, 0) 100%) 0% 0% no-repeat padding-box;
|
|
109
|
-
|
|
110
|
-
--notebook-header: linear-gradient(0deg, rgba(0, 212, 255, 0) 0%, rgba(38, 197, 147, 0.4510548107255521) 100%);
|
|
111
|
-
|
|
112
|
-
--icons-color-light-1: #26c59380;
|
|
113
|
-
--icons-color-light-2: #26c59333;
|
|
114
|
-
--icons-color-as-bg: #f1f5f7;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.hadracha-colors {
|
|
118
|
-
background-color: var(--icons-color);
|
|
119
|
-
|
|
120
|
-
--hover-background: #e3dbf0;
|
|
121
|
-
--item-hover-color: #e3dbf0;
|
|
122
|
-
--hovered-item-background-color: #e3dbf0;
|
|
123
|
-
|
|
124
|
-
--title-color: #4d4591;
|
|
125
|
-
--text-color: #4d4591;
|
|
126
|
-
--semi-transparent-title: #4d4591c1;
|
|
127
|
-
--error-color: #f05d5c;
|
|
128
|
-
--disabled-text-color: #c3bad1;
|
|
129
|
-
|
|
130
|
-
--divider-color: #e3dbf0;
|
|
131
|
-
--secondary-color: #a255ff;
|
|
132
|
-
--notebook-header: #4d4591;
|
|
133
|
-
|
|
134
|
-
--homepage-separator: #c3bad1;
|
|
135
|
-
--page-background-color: #f8f9ff;
|
|
136
|
-
|
|
137
|
-
--primary-color: linear-gradient(225deg, #d74ed0 0%, #a255ff 100%);
|
|
138
|
-
--fliped-primary-color: linear-gradient(225deg, #a255ff 0%, #d74ed0 100%);
|
|
139
|
-
--lighter-primary-color: linear-gradient(0deg, #a255ff 0%, #a255ff 100%);
|
|
140
|
-
--icons-color: #4d4591;
|
|
141
|
-
|
|
142
|
-
--icons-start-linear-gradient-color: #a255ff;
|
|
143
|
-
--icons-middle-linear-gradient-color: #d74ed0;
|
|
144
|
-
--icons-end-linear-gradient-color: #d74ed0;
|
|
145
|
-
--icons-linear-gradient-color: linear-gradient(135deg,
|
|
146
|
-
var(--icons-start-linear-gradient-color),
|
|
147
|
-
var(--icons-middle-linear-gradient-color),
|
|
148
|
-
var(--icons-end-linear-gradient-color));
|
|
149
|
-
|
|
150
|
-
--darker-primary-color: #312C5A;
|
|
151
|
-
|
|
152
|
-
--icons-color-light-1: #a155ffbd;
|
|
153
|
-
--icons-color-light-2: #fbf9ff;
|
|
154
|
-
--lighter-secondary-color: #a155ffbd;
|
|
155
|
-
--icons-color-as-bg: #4d459114;
|
|
156
|
-
|
|
157
|
-
//todo-fix it from the side of the track text changes with tokens of the style
|
|
158
|
-
--dark-hover-background: #c0deff;
|
|
159
|
-
--quiz-chip-background-color: #f6f0ff;
|
|
160
|
-
--quiz-correct-answer: #3cc8a3;
|
|
54
|
+
|
|
55
|
+
--audio-player-left-slider: #2D7ABE;
|
|
56
|
+
--audio-player-right-slider: #3B2DBE;
|
|
161
57
|
}
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
--button-padding-size: 12px;
|
|
12
12
|
--border-radius: 8px;
|
|
13
13
|
|
|
14
|
-
--tooltip-padding-size: 8px;
|
|
15
|
-
|
|
16
14
|
--standard-font-size: 12px;
|
|
17
15
|
|
|
18
16
|
--standard-padding: 12px;
|
|
@@ -51,6 +49,8 @@
|
|
|
51
49
|
--chips-border-radius: 21px;
|
|
52
50
|
|
|
53
51
|
--section-divider-margin: 28px;
|
|
52
|
+
|
|
53
|
+
--top-overlay-z-index: 1000;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
@media (max-width: 1400px) {
|
|
@@ -63,11 +63,4 @@
|
|
|
63
63
|
:root {
|
|
64
64
|
--main-header-height: 10vh;
|
|
65
65
|
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.hadracha {
|
|
69
|
-
--atom-input-height: 32px !important;
|
|
70
|
-
--parent-page-padding: 44px;
|
|
71
|
-
--user-item-user-info-font-size: 14px;
|
|
72
|
-
--hadracha-corner-radius: 60px;
|
|
73
66
|
}
|
package/table/index.d.ts
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
import * as i15 from 'ag-grid-angular';
|
|
2
|
-
import { ICellRendererAngularComp, AgFilterComponent } from 'ag-grid-angular';
|
|
3
|
-
import { AlignDir, HerumTableParams, HoveredHerumRowTable, BaseRowData } from 'herum-shared/herum-types';
|
|
4
1
|
import * as i0 from '@angular/core';
|
|
5
2
|
import { OnChanges, AfterViewInit, EventEmitter, ElementRef, SimpleChanges, OnInit } from '@angular/core';
|
|
3
|
+
import * as i16 from 'ag-grid-angular';
|
|
4
|
+
import { ICellRendererAngularComp, AgFilterComponent } from 'ag-grid-angular';
|
|
5
|
+
import { AlignDir, HerumTableParams, HoveredHerumRowTable, BaseRowData } from 'herum-types/Table';
|
|
6
6
|
import { ICellRendererParams, ColDef, GridApi, ColumnApi, GridReadyEvent, ModelUpdatedEvent, IFilterParams, IDoesFilterPassParams } from 'ag-grid-community';
|
|
7
|
-
import * as
|
|
7
|
+
import * as i18 from '@angular/cdk/clipboard';
|
|
8
8
|
import { Clipboard } from '@angular/cdk/clipboard';
|
|
9
|
-
import * as
|
|
9
|
+
import * as i14 from '@angular/forms';
|
|
10
10
|
import { FormControl } from '@angular/forms';
|
|
11
11
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
12
|
-
import
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as i16 from 'herum-shared/pipes';
|
|
12
|
+
import * as i12 from '@angular/common';
|
|
13
|
+
import * as i13 from 'herum-shared/atoms';
|
|
14
|
+
import * as i15 from '@angular/material/tooltip';
|
|
15
|
+
import * as i17 from 'herum-shared/pipes';
|
|
17
16
|
|
|
18
17
|
declare class CheckboxCellComponent implements ICellRendererAngularComp {
|
|
19
18
|
isChecked: boolean;
|
|
@@ -116,8 +115,6 @@ declare class HerumTableComponent implements OnChanges, AfterViewInit {
|
|
|
116
115
|
rowData: (unknown & BaseRowData)[];
|
|
117
116
|
columnDefs: ColDef[];
|
|
118
117
|
selectedRowsIds: string[];
|
|
119
|
-
tableFixedHeight: string;
|
|
120
|
-
tableMaxHeight: number;
|
|
121
118
|
noResults: number;
|
|
122
119
|
overlayNoRowsTemplate: string;
|
|
123
120
|
rowsSelectionType: 'multiple' | 'single';
|
|
@@ -131,7 +128,7 @@ declare class HerumTableComponent implements OnChanges, AfterViewInit {
|
|
|
131
128
|
cellMouseOver: EventEmitter<any>;
|
|
132
129
|
onPaginationChanged: EventEmitter<any>;
|
|
133
130
|
tableContainer: ElementRef;
|
|
134
|
-
onResize(): void;
|
|
131
|
+
onResize(event: any): void;
|
|
135
132
|
windowWidth: number;
|
|
136
133
|
context: any;
|
|
137
134
|
childComponentsReferences: HoveredHerumRowTable[];
|
|
@@ -180,11 +177,10 @@ declare class HerumTableComponent implements OnChanges, AfterViewInit {
|
|
|
180
177
|
private setRowheightStyleProperty;
|
|
181
178
|
private getMaxRowHeightFromColumns;
|
|
182
179
|
static ɵfac: i0.ɵɵFactoryDeclaration<HerumTableComponent, never>;
|
|
183
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HerumTableComponent, "herum-table", never, { "rowData": { "alias": "rowData"; "required": false; }; "columnDefs": { "alias": "columnDefs"; "required": false; }; "selectedRowsIds": { "alias": "selectedRowsIds"; "required": false; }; "
|
|
180
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HerumTableComponent, "herum-table", never, { "rowData": { "alias": "rowData"; "required": false; }; "columnDefs": { "alias": "columnDefs"; "required": false; }; "selectedRowsIds": { "alias": "selectedRowsIds"; "required": false; }; "noResults": { "alias": "noResults"; "required": false; }; "overlayNoRowsTemplate": { "alias": "overlayNoRowsTemplate"; "required": false; }; "rowsSelectionType": { "alias": "rowsSelectionType"; "required": false; }; "usePagination": { "alias": "usePagination"; "required": false; }; "suppressRowClickSelection": { "alias": "suppressRowClickSelection"; "required": false; }; "showExportToExcel": { "alias": "showExportToExcel"; "required": false; }; }, { "onCheckedRow": "onCheckedRow"; "onUncheckedRow": "onUncheckedRow"; "selectedRowByChild": "selectedRowByChild"; "cellValueChangeByChild": "cellValueChangeByChild"; "cellMouseOver": "cellMouseOver"; "onPaginationChanged": "onPaginationChanged"; }, never, never, false, never>;
|
|
184
181
|
}
|
|
185
182
|
|
|
186
183
|
declare class HerumAgGridFilterComponent implements AgFilterComponent, OnInit {
|
|
187
|
-
private envConfig;
|
|
188
184
|
private static readonly rowHeight;
|
|
189
185
|
private model;
|
|
190
186
|
private uniqueCheck;
|
|
@@ -200,7 +196,6 @@ declare class HerumAgGridFilterComponent implements AgFilterComponent, OnInit {
|
|
|
200
196
|
onFilterValuesChanged$: Observable<string[]>;
|
|
201
197
|
destroySubject$: Subject<null>;
|
|
202
198
|
selectedFilter: FormControl;
|
|
203
|
-
constructor(envConfig: EnvironmentConfig);
|
|
204
199
|
ngOnInit(): void;
|
|
205
200
|
agInit(params: IFilterParams): void;
|
|
206
201
|
private handleChekedValuesWhenfiltering;
|
|
@@ -226,10 +221,22 @@ declare class HerumAgGridFilterComponent implements AgFilterComponent, OnInit {
|
|
|
226
221
|
static ɵcmp: i0.ɵɵComponentDeclaration<HerumAgGridFilterComponent, "app-herum-ag-grid-filter", never, {}, {}, never, never, false, never>;
|
|
227
222
|
}
|
|
228
223
|
|
|
224
|
+
declare class TextWithIconCell implements ICellRendererAngularComp {
|
|
225
|
+
params: HerumTableParams;
|
|
226
|
+
text: string;
|
|
227
|
+
iconSrc: string;
|
|
228
|
+
textStyle: {};
|
|
229
|
+
agInit(params: HerumTableParams): void;
|
|
230
|
+
refresh(params: HerumTableParams): boolean;
|
|
231
|
+
private setParams;
|
|
232
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextWithIconCell, never>;
|
|
233
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextWithIconCell, "app-text-with-icon-cell", never, {}, {}, never, never, false, never>;
|
|
234
|
+
}
|
|
235
|
+
|
|
229
236
|
declare class TableModule {
|
|
230
237
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableModule, never>;
|
|
231
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof CheckboxCellComponent, typeof ChipsCellComponent, typeof CopyableCellComponent, typeof DeleteRowComponent, typeof EditRowComponent, typeof InputCellComponent, typeof RowActionButtonsComponent, typeof SwitchCellComponent, typeof HerumTableComponent, typeof HerumAgGridFilterComponent], [typeof
|
|
238
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableModule, [typeof CheckboxCellComponent, typeof ChipsCellComponent, typeof CopyableCellComponent, typeof DeleteRowComponent, typeof EditRowComponent, typeof InputCellComponent, typeof RowActionButtonsComponent, typeof SwitchCellComponent, typeof HerumTableComponent, typeof HerumAgGridFilterComponent, typeof TextWithIconCell], [typeof i12.CommonModule, typeof i13.AtomsModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.MatTooltipModule, typeof i16.AgGridModule, typeof i17.PipesModule, typeof i18.ClipboardModule], [typeof CheckboxCellComponent, typeof ChipsCellComponent, typeof CopyableCellComponent, typeof DeleteRowComponent, typeof EditRowComponent, typeof InputCellComponent, typeof RowActionButtonsComponent, typeof SwitchCellComponent, typeof HerumTableComponent, typeof HerumAgGridFilterComponent, typeof TextWithIconCell, typeof i16.AgGridModule]>;
|
|
232
239
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableModule>;
|
|
233
240
|
}
|
|
234
241
|
|
|
235
|
-
export { CheckboxCellComponent, ChipsCellComponent, CopyableCellComponent, DeleteRowComponent, EditRowComponent, HerumAgGridFilterComponent, HerumTableComponent, InputCellComponent, RowActionButtonsComponent, SwitchCellComponent, TableModule };
|
|
242
|
+
export { CheckboxCellComponent, ChipsCellComponent, CopyableCellComponent, DeleteRowComponent, EditRowComponent, HerumAgGridFilterComponent, HerumTableComponent, InputCellComponent, RowActionButtonsComponent, SwitchCellComponent, TableModule, TextWithIconCell };
|
package/testsObjects/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ModelInfo } from 'herum-
|
|
1
|
+
import { ModelInfo } from 'herum-types/Shared';
|
|
2
2
|
import { EnvironmentConfig } from 'herum-shared/environment';
|
|
3
3
|
|
|
4
4
|
declare const collectionModelInfo: {
|
|
@@ -82,10 +82,10 @@ declare const structModelInfo: {
|
|
|
82
82
|
[key: string]: ModelInfo;
|
|
83
83
|
};
|
|
84
84
|
|
|
85
|
+
declare const testEnvironmentConfig: EnvironmentConfig;
|
|
86
|
+
|
|
85
87
|
declare const usersModelInfo: {
|
|
86
88
|
[key: string]: ModelInfo;
|
|
87
89
|
};
|
|
88
90
|
|
|
89
|
-
declare const testEnvironmentConfig: EnvironmentConfig;
|
|
90
|
-
|
|
91
91
|
export { assignedUserSplittedFields, collectionFormattedAttachments, collectionId, collectionModelInfo, collectionSplittedFields, groupsModelInfo, mockedAssignedUserFields, mockedAssignedUserFormattedAttachments, mockedCollectioDeletedFields, mockedCollectioDeletedFieldsRequest, mockedCollectionFields, mockedCollectionFile, mockedNewFileCollectionRequest, mockedNewGroupFields, mockedNewGroupRequest, mockedUpdatedUserFields, mockedUpdatedUserRequest, mockedUserFields, structId, structModelInfo, testEnvironmentConfig, userFormattedAttachments, userId, userSplittedFields, usersModelInfo };
|
package/tokens/index.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { ISystemUserService } from 'herum-types/interfaces';
|
|
3
|
+
import { AudioVisualConfiguration, SystemIdentifier } from 'herum-types/Shared';
|
|
2
4
|
|
|
3
|
-
declare const SYSTEM_IDENTIFIER: InjectionToken<
|
|
4
|
-
declare const SYSTEM_USER_SERVICE: InjectionToken<
|
|
5
|
-
declare const SYSTEM_TRACK_TEXT_CHANGES_SERVICE: InjectionToken<
|
|
6
|
-
declare const SYSTEM_AUDIO_VISUAL_CONFIGURATION: InjectionToken<
|
|
5
|
+
declare const SYSTEM_IDENTIFIER: InjectionToken<SystemIdentifier>;
|
|
6
|
+
declare const SYSTEM_USER_SERVICE: InjectionToken<ISystemUserService>;
|
|
7
|
+
declare const SYSTEM_TRACK_TEXT_CHANGES_SERVICE: InjectionToken<ISystemUserService>;
|
|
8
|
+
declare const SYSTEM_AUDIO_VISUAL_CONFIGURATION: InjectionToken<AudioVisualConfiguration>;
|
|
7
9
|
|
|
8
10
|
export { SYSTEM_AUDIO_VISUAL_CONFIGURATION, SYSTEM_IDENTIFIER, SYSTEM_TRACK_TEXT_CHANGES_SERVICE, SYSTEM_USER_SERVICE };
|
package/utils/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import { IdentifiedEntity,
|
|
1
|
+
import { IdentifiedEntity, EntitiesLayoutProperties } from 'herum-types/Shared';
|
|
2
|
+
import { MicroResourceAuthorizationBase } from 'herum-types/Lessons';
|
|
2
3
|
import { ElementRef, QueryList } from '@angular/core';
|
|
4
|
+
import { FullHierarchyPartsPlaces } from 'herum-types/Enums';
|
|
3
5
|
import { HttpHeaders } from '@angular/common/http';
|
|
6
|
+
import { DependentMetadata } from 'herum-types/uploads-manager';
|
|
7
|
+
import { CollectionSubscription, ResourceSubscription } from 'herum-types/User';
|
|
4
8
|
|
|
5
9
|
declare const flatten: <T>(arr: T[][]) => T[];
|
|
6
10
|
declare const findKeyByValue: (array: {}[], value: any) => string;
|
|
@@ -8,6 +12,9 @@ declare const parseToIdentifiedEntitiesArray: (array: string[]) => IdentifiedEnt
|
|
|
8
12
|
|
|
9
13
|
declare const getAssignmentStateDisplayName: (state: any) => "שיבוץ זמני" | "אכ\"א" | "אג\"ת";
|
|
10
14
|
|
|
15
|
+
declare const getBrowserVersion: (browserRegexExp: RegExp) => number | undefined;
|
|
16
|
+
declare const getChromeVersion: () => string;
|
|
17
|
+
|
|
11
18
|
type ListsDiffs<Item extends {
|
|
12
19
|
[innerItemProperty: string]: {
|
|
13
20
|
id: string;
|
|
@@ -54,9 +61,6 @@ declare const setNavFlexLayout: (entitiesSectionElement: ElementRef, entitiesWra
|
|
|
54
61
|
declare const getDeserializedFile: (response: Response, fileName: string, fileType?: string) => Promise<File>;
|
|
55
62
|
declare const downloadFile: (fileName: string, data: File | Blob) => void;
|
|
56
63
|
|
|
57
|
-
declare const getBrowserVersion: (browserRegexExp: RegExp) => number | undefined;
|
|
58
|
-
declare const getChromeVersion: () => string;
|
|
59
|
-
|
|
60
64
|
declare const getHierarchyPartIfExist: (parts: string[], part: FullHierarchyPartsPlaces) => string;
|
|
61
65
|
|
|
62
66
|
declare const bytesToMegabytes: (bytes: number) => number;
|
|
@@ -74,12 +78,6 @@ declare const setHeaders: (headers: HttpHeaders, headersToSet: {
|
|
|
74
78
|
declare const convertDependentMetadataToHeaders: (dependentMetadata: DependentMetadata) => HttpHeaders;
|
|
75
79
|
declare const getVersionPathParameter: (lastUpdateTime: Date) => string;
|
|
76
80
|
|
|
77
|
-
declare const convertHeightToPixels: (value: string) => number;
|
|
78
|
-
declare const getDropdownAnimationStates: (isDropdownOpen: boolean, dropDownDirection: "upwards" | "downwards") => "openUp" | "openDown" | "closeDown" | "closeUp";
|
|
79
|
-
|
|
80
|
-
declare const getSubscriptionWithLastActivityTime: (subscriptions: CollectionSubscription[] | ResourceSubscription[]) => CollectionSubscription;
|
|
81
|
-
declare const getLastSubscriptionByField: (subscriptions: CollectionSubscription[] | ResourceSubscription[], field: string) => CollectionSubscription;
|
|
82
|
-
|
|
83
81
|
declare const toHash: (source: string) => string;
|
|
84
82
|
declare const toFirstCapitalLetter: (text: string) => string;
|
|
85
83
|
declare const toFirstLowerCaseLetter: (text: string) => string;
|
|
@@ -87,5 +85,11 @@ declare const camelCaseToPascalCase: (camelCase: string) => string;
|
|
|
87
85
|
declare const capitalizeWord: (word: string) => string;
|
|
88
86
|
declare const replaceInterpolateKeysWithObjectProperties: (string: string, object: Object) => string;
|
|
89
87
|
|
|
88
|
+
declare const convertHeightToPixels: (value: string) => number;
|
|
89
|
+
declare const getDropdownAnimationStates: (isDropdownOpen: boolean, dropDownDirection: "upwards" | "downwards") => "openUp" | "openDown" | "closeDown" | "closeUp";
|
|
90
|
+
|
|
91
|
+
declare const getSubscriptionWithLastActivityTime: (subscriptions: CollectionSubscription[] | ResourceSubscription[]) => CollectionSubscription;
|
|
92
|
+
declare const getLastSubscriptionByField: (subscriptions: CollectionSubscription[] | ResourceSubscription[], field: string) => CollectionSubscription;
|
|
93
|
+
|
|
90
94
|
export { buildPath, bytesToMegabytes, camelCaseToPascalCase, capitalizeWord, convertDependentMetadataToHeaders, convertHeightToPixels, convertToDate, downloadFile, findKeyByValue, flatten, generateNewTimeStamp, getAssignmentStateDisplayName, getBrowserVersion, getChromeVersion, getDeserializedFile, getDifferencesInLists, getDifferencesInObjects, getDropdownAnimationStates, getEntitiesLayoutProperties, getHierarchyPartIfExist, getLastSubscriptionByField, getMicroResourceTextualTimeString, getSubscriptionWithLastActivityTime, getTimeAsAgo, getVersionPathParameter, isTruncatedTitleElement, parseToIdentifiedEntitiesArray, remainJustWantedValueInDictionary, removeCommonItemsInObjectsFields, removeCommonObjectsBetweenArrays, removeDuplicatesBetweenArrays, removeUnwantedProperties, replaceInterpolateKeysWithObjectProperties, setElementsGridStyle, setHeaders, setNavFlexLayout, setNavFlexLayoutStyle, toFirstCapitalLetter, toFirstLowerCaseLetter, toHash, updateFullYear };
|
|
91
95
|
export type { ListsDiffs };
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
//temporary file to export all types from herum-shared package
|
|
2
|
-
const AlignDir = {};
|
|
3
|
-
const Answer = {};
|
|
4
|
-
const AnswerNote = {};
|
|
5
|
-
const AudioVisualConfiguration = {};
|
|
6
|
-
const AuthenticationResponse = {};
|
|
7
|
-
const BackendLoginFormat = {};
|
|
8
|
-
const BackendMicroResourceAuthorization = {};
|
|
9
|
-
const BaseRowData = {};
|
|
10
|
-
const ClosedList = {};
|
|
11
|
-
const Collection = {};
|
|
12
|
-
const CollectionBase = {};
|
|
13
|
-
const CollectionSubscription = {};
|
|
14
|
-
const CommonDependentsToast = {};
|
|
15
|
-
const ComplexObservableArrowFunctions = {};
|
|
16
|
-
const DateTimePicker = {};
|
|
17
|
-
const DbActionResponse = {};
|
|
18
|
-
const DbListItem = {};
|
|
19
|
-
const DependentMetadata = {};
|
|
20
|
-
const DialogConfig = {};
|
|
21
|
-
const DisplayIdentifiedEntity = {};
|
|
22
|
-
const EntitiesLayoutProperties = {};
|
|
23
|
-
const FailedDependentsRequestMetadata = {};
|
|
24
|
-
const FailedDependentsRequestsContext = {};
|
|
25
|
-
const FeedPriority = {};
|
|
26
|
-
const FetchedMessage = {};
|
|
27
|
-
const FileData = {};
|
|
28
|
-
const FullHierarchyPartsPlaces = {};
|
|
29
|
-
const GQLVariable = {};
|
|
30
|
-
const Gender = {};
|
|
31
|
-
const GlobalKeyboardEvent = {};
|
|
32
|
-
const GraphQLFilter = {};
|
|
33
|
-
const GraphQLOrder = {};
|
|
34
|
-
const GraphQlOffsetPaging = {};
|
|
35
|
-
const GraphQlQuery = {};
|
|
36
|
-
const GraphQlResult = {};
|
|
37
|
-
const Group = {};
|
|
38
|
-
const HerumTableParams = {};
|
|
39
|
-
const HoveredHerumRowTable = {};
|
|
40
|
-
const IMediaPlayer = {};
|
|
41
|
-
const ISystemTrackTextChangesService = {};
|
|
42
|
-
const ISystemUserService = {};
|
|
43
|
-
const IdentifiedEntity = {};
|
|
44
|
-
const KeyValue = {};
|
|
45
|
-
const Lesson = {};
|
|
46
|
-
const LessonResourceSubscription = {};
|
|
47
|
-
const LessonStudentSubscription = {};
|
|
48
|
-
const MediaSettings = {};
|
|
49
|
-
const MenuItem = {};
|
|
50
|
-
const MicroResourceAuthorizationBase = {};
|
|
51
|
-
const microResourceAuthorizationType = {};
|
|
52
|
-
const MicroResourceFrontData = {};
|
|
53
|
-
const ModelInfo = {};
|
|
54
|
-
const ModifiedResource = {};
|
|
55
|
-
const NodeMenuItem = {};
|
|
56
|
-
const ObservableArrowFunction = {};
|
|
57
|
-
const PermissionTemplate = {};
|
|
58
|
-
const ProgressOverView = {};
|
|
59
|
-
const Question = {};
|
|
60
|
-
const QuizData = {};
|
|
61
|
-
const QuizHeaderState = {};
|
|
62
|
-
const RecursiveTitledOption = {};
|
|
63
|
-
const Resource = {};
|
|
64
|
-
const ResourceGradeUpdate = {};
|
|
65
|
-
const ResourcePreview = {};
|
|
66
|
-
const ResourceState = {};
|
|
67
|
-
const ResourceSubscription = {};
|
|
68
|
-
const SectionListItem = {};
|
|
69
|
-
const SecurityQuestion = {};
|
|
70
|
-
const SignInFormData = {};
|
|
71
|
-
const SignUpField = {};
|
|
72
|
-
const SignUpFormData = {};
|
|
73
|
-
const Step = {};
|
|
74
|
-
const StepStatus = {};
|
|
75
|
-
const SubscriptionStatus = {};
|
|
76
|
-
const SystemIdentifier = {};
|
|
77
|
-
const SystemTreeNodeData = {};
|
|
78
|
-
const TableActions = {};
|
|
79
|
-
const TextChange = {};
|
|
80
|
-
const TextChangeStyle = {};
|
|
81
|
-
const TimeRange = {};
|
|
82
|
-
const TimeUnit = {};
|
|
83
|
-
const Toast = {};
|
|
84
|
-
const ToastContext = {};
|
|
85
|
-
const ToastHttpResponseDependencies = {};
|
|
86
|
-
const ToastState = {};
|
|
87
|
-
const ToastStatus = {};
|
|
88
|
-
const ToastTemplate = {};
|
|
89
|
-
const TreeNode = {};
|
|
90
|
-
const TreeNodeAssignmentsData = {};
|
|
91
|
-
const UploadProgressMetadata = {};
|
|
92
|
-
const UploadProgressStatus = {};
|
|
93
|
-
const UploadProgressType = {};
|
|
94
|
-
const User = {};
|
|
95
|
-
const UserAnswer = {};
|
|
96
|
-
const UserPreview = {};
|
|
97
|
-
const UserQuestionData = {};
|
|
98
|
-
const UsersLessonPermissionsDalResponse = {};
|
|
99
|
-
const ViewModelType = {};
|
|
100
|
-
const HadrachaPage = {};
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* Generated bundle index. Do not edit.
|
|
104
|
-
*/
|
|
105
|
-
|
|
106
|
-
export { AlignDir, Answer, AnswerNote, AudioVisualConfiguration, AuthenticationResponse, BackendLoginFormat, BackendMicroResourceAuthorization, BaseRowData, ClosedList, Collection, CollectionBase, CollectionSubscription, CommonDependentsToast, ComplexObservableArrowFunctions, DateTimePicker, DbActionResponse, DbListItem, DependentMetadata, DialogConfig, DisplayIdentifiedEntity, EntitiesLayoutProperties, FailedDependentsRequestMetadata, FailedDependentsRequestsContext, FeedPriority, FetchedMessage, FileData, FullHierarchyPartsPlaces, GQLVariable, Gender, GlobalKeyboardEvent, GraphQLFilter, GraphQLOrder, GraphQlOffsetPaging, GraphQlQuery, GraphQlResult, Group, HadrachaPage, HerumTableParams, HoveredHerumRowTable, IMediaPlayer, ISystemTrackTextChangesService, ISystemUserService, IdentifiedEntity, KeyValue, Lesson, LessonResourceSubscription, LessonStudentSubscription, MediaSettings, MenuItem, MicroResourceAuthorizationBase, MicroResourceFrontData, ModelInfo, ModifiedResource, NodeMenuItem, ObservableArrowFunction, PermissionTemplate, ProgressOverView, Question, QuizData, QuizHeaderState, RecursiveTitledOption, Resource, ResourceGradeUpdate, ResourcePreview, ResourceState, ResourceSubscription, SectionListItem, SecurityQuestion, SignInFormData, SignUpField, SignUpFormData, Step, StepStatus, SubscriptionStatus, SystemIdentifier, SystemTreeNodeData, TableActions, TextChange, TextChangeStyle, TimeRange, TimeUnit, Toast, ToastContext, ToastHttpResponseDependencies, ToastState, ToastStatus, ToastTemplate, TreeNode, TreeNodeAssignmentsData, UploadProgressMetadata, UploadProgressStatus, UploadProgressType, User, UserAnswer, UserPreview, UserQuestionData, UsersLessonPermissionsDalResponse, ViewModelType, microResourceAuthorizationType };
|
|
107
|
-
//# sourceMappingURL=herum-shared-herum-types.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"herum-shared-herum-types.mjs","sources":["../../../projects/herum-shared/herum-types/index.ts","../../../projects/herum-shared/herum-types/herum-shared-herum-types.ts"],"sourcesContent":["//temporary file to export all types from herum-shared package\n\nexport type AlignDir = any;\nexport const AlignDir: any = {};\n\nexport type Answer = any;\nexport const Answer: any = {};\n\nexport type AnswerNote = any;\nexport const AnswerNote: any = {};\n\nexport type AudioVisualConfiguration = any;\nexport const AudioVisualConfiguration: any = {};\n\nexport type AuthenticationResponse = any;\nexport const AuthenticationResponse: any = {};\n\nexport type BackendLoginFormat = any;\nexport const BackendLoginFormat: any = {};\n\nexport type BackendMicroResourceAuthorization = any;\nexport const BackendMicroResourceAuthorization: any = {};\n\nexport type BaseRowData = any;\nexport const BaseRowData: any = {};\n\nexport type ClosedList = any;\nexport const ClosedList: any = {};\n\nexport type Collection = any;\nexport const Collection: any = {};\n\nexport type CollectionBase = any;\nexport const CollectionBase: any = {};\n\nexport type CollectionSubscription = any;\nexport const CollectionSubscription: any = {};\n\nexport type CommonDependentsToast = any;\nexport const CommonDependentsToast: any = {};\n\nexport type ComplexObservableArrowFunctions = any;\nexport const ComplexObservableArrowFunctions: any = {};\n\nexport type DateTimePicker = any;\nexport const DateTimePicker: any = {};\n\nexport type DbActionResponse = any;\nexport const DbActionResponse: any = {};\n\nexport type DbListItem<T = any> = any;\nexport const DbListItem: any = {};\n\nexport type DependentMetadata = any;\nexport const DependentMetadata: any = {};\n\nexport type DialogConfig = any;\nexport const DialogConfig: any = {};\n\nexport type DisplayIdentifiedEntity = any;\nexport const DisplayIdentifiedEntity: any = {};\n\nexport type EntitiesLayoutProperties = any;\nexport const EntitiesLayoutProperties: any = {};\n\nexport type FailedDependentsRequestMetadata = any;\nexport const FailedDependentsRequestMetadata: any = {};\n\nexport type FailedDependentsRequestsContext = any;\nexport const FailedDependentsRequestsContext: any = {};\n\nexport type FeedPriority = any;\nexport const FeedPriority: any = {};\n\nexport type FetchedMessage = any;\nexport const FetchedMessage: any = {};\n\nexport type FileData = any;\nexport const FileData: any = {};\n\nexport type FullHierarchyPartsPlaces = any;\nexport const FullHierarchyPartsPlaces: any = {};\n\nexport type GQLVariable = any;\nexport const GQLVariable: any = {};\n\nexport type Gender = any;\nexport const Gender: any = {};\n\nexport type GlobalKeyboardEvent = any;\nexport const GlobalKeyboardEvent: any = {};\n\nexport type GraphQLFilter = any;\nexport const GraphQLFilter: any = {};\n\nexport type GraphQLOrder = any;\nexport const GraphQLOrder: any = {};\n\nexport type GraphQlOffsetPaging = any;\nexport const GraphQlOffsetPaging: any = {};\n\nexport type GraphQlQuery = any;\nexport const GraphQlQuery: any = {};\n\nexport type GraphQlResult = any;\nexport const GraphQlResult: any = {};\n\nexport type Group = any;\nexport const Group: any = {};\n\nexport type HerumTableParams = any;\nexport const HerumTableParams: any = {};\n\nexport type HoveredHerumRowTable = any;\nexport const HoveredHerumRowTable: any = {};\n\nexport type IMediaPlayer = any;\nexport const IMediaPlayer: any = {};\n\nexport type ISystemTrackTextChangesService = any;\nexport const ISystemTrackTextChangesService: any = {};\n\nexport type ISystemUserService = any;\nexport const ISystemUserService: any = {};\n\nexport type IdentifiedEntity = any;\nexport const IdentifiedEntity: any = {};\n\nexport type KeyValue = any;\nexport const KeyValue: any = {};\n\nexport type Lesson = any;\nexport const Lesson: any = {};\n\nexport type LessonResourceSubscription = any;\nexport const LessonResourceSubscription: any = {};\n\nexport type LessonStudentSubscription = any;\nexport const LessonStudentSubscription: any = {};\n\nexport type MediaSettings = any;\nexport const MediaSettings: any = {};\n\nexport type MenuItem = any;\nexport const MenuItem: any = {};\n\nexport type MicroResourceAuthorizationBase = any;\nexport const MicroResourceAuthorizationBase: any = {};\n\nexport type microResourceAuthorizationType = any;\nexport const microResourceAuthorizationType: any = {};\n\nexport type MicroResourceFrontData = any;\nexport const MicroResourceFrontData: any = {};\n\nexport type ModelInfo = any;\nexport const ModelInfo: any = {};\n\nexport type ModifiedResource = any;\nexport const ModifiedResource: any = {};\n\nexport type NodeMenuItem<T = any> = any;\nexport const NodeMenuItem: any = {};\n\nexport type ObservableArrowFunction = any;\nexport const ObservableArrowFunction: any = {};\n\nexport type PermissionTemplate = any;\nexport const PermissionTemplate: any = {};\n\nexport type ProgressOverView = any;\nexport const ProgressOverView: any = {};\n\nexport type Question = any;\nexport const Question: any = {};\n\nexport type QuizData = any;\nexport const QuizData: any = {};\n\nexport type QuizHeaderState = any;\nexport const QuizHeaderState: any = {};\n\nexport type RecursiveTitledOption = any;\nexport const RecursiveTitledOption: any = {};\n\nexport type Resource = any;\nexport const Resource: any = {};\n\nexport type ResourceGradeUpdate = any;\nexport const ResourceGradeUpdate: any = {};\n\nexport type ResourcePreview = any;\nexport const ResourcePreview: any = {};\n\nexport type ResourceState = any;\nexport const ResourceState: any = {};\n\nexport type ResourceSubscription = any;\nexport const ResourceSubscription: any = {};\n\nexport type SectionListItem = any;\nexport const SectionListItem: any = {};\n\nexport type SecurityQuestion = any;\nexport const SecurityQuestion: any = {};\n\nexport type SignInFormData = any;\nexport const SignInFormData: any = {};\n\nexport type SignUpField = any;\nexport const SignUpField: any = {};\n\nexport type SignUpFormData = any;\nexport const SignUpFormData: any = {};\n\nexport type Step = any;\nexport const Step: any = {};\n\nexport type StepStatus = any;\nexport const StepStatus: any = {};\n\nexport type SubscriptionStatus = any;\nexport const SubscriptionStatus: any = {};\n\nexport type SystemIdentifier = any;\nexport const SystemIdentifier: any = {};\n\nexport type SystemTreeNodeData = any;\nexport const SystemTreeNodeData: any = {};\n\nexport type TableActions = any;\nexport const TableActions: any = {};\n\nexport type TextChange = any;\nexport const TextChange: any = {};\n\nexport type TextChangeStyle = any;\nexport const TextChangeStyle: any = {};\n\nexport type TimeRange = any;\nexport const TimeRange: any = {};\n\nexport type TimeUnit = any;\nexport const TimeUnit: any = {};\n\nexport type Toast = any;\nexport const Toast: any = {};\n\nexport type ToastContext = any;\nexport const ToastContext: any = {};\n\nexport type ToastHttpResponseDependencies = any;\nexport const ToastHttpResponseDependencies: any = {};\n\nexport type ToastState = any;\nexport const ToastState: any = {};\n\nexport type ToastStatus = any;\nexport const ToastStatus: any = {};\n\nexport type ToastTemplate = any;\nexport const ToastTemplate: any = {};\n\nexport type TreeNode = any;\nexport const TreeNode: any = {};\n\nexport type TreeNodeAssignmentsData = any;\nexport const TreeNodeAssignmentsData: any = {};\n\nexport type UploadProgressMetadata = any;\nexport const UploadProgressMetadata: any = {};\n\nexport type UploadProgressStatus = any;\nexport const UploadProgressStatus: any = {};\n\nexport type UploadProgressType = any;\nexport const UploadProgressType: any = {};\n\nexport type User = any;\nexport const User: any = {};\n\nexport type UserAnswer = any;\nexport const UserAnswer: any = {};\n\nexport type UserPreview = any;\nexport const UserPreview: any = {};\n\nexport type UserQuestionData = any;\nexport const UserQuestionData: any = {};\n\nexport type UsersLessonPermissionsDalResponse = any;\nexport const UsersLessonPermissionsDalResponse: any = {};\n\nexport type ViewModelType = any;\nexport const ViewModelType: any = {};\n\nexport type HadrachaPage = any;\nexport const HadrachaPage: any = {};","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|