@resolveio/client-lib-core 15.0.0 → 15.0.2
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/esm2020/lib/models/user-group.model.mjs +1 -1
- package/esm2020/lib/util/common.helper.mjs +18 -21
- package/esm2020/lib/util/window-resize.service.mjs +4 -4
- package/esm2020/lib/widgets/dialog/dialog.confirm.content.mjs +4 -4
- package/esm2020/lib/widgets/dialog/dialog.error.content.mjs +4 -4
- package/esm2020/lib/widgets/dialog/dialog.notify.content.mjs +4 -4
- package/esm2020/lib/widgets/navbar-module/navbar-module.component.mjs +1 -8
- package/esm2020/lib/widgets/sort-table/sort-table.directive.mjs +8 -8
- package/fesm2015/resolveio-client-lib-core.mjs +36 -46
- package/fesm2015/resolveio-client-lib-core.mjs.map +1 -1
- package/fesm2020/resolveio-client-lib-core.mjs +36 -46
- package/fesm2020/resolveio-client-lib-core.mjs.map +1 -1
- package/lib/directive/scroll.d.ts +1 -1
- package/lib/models/dialog.model.d.ts +1 -1
- package/lib/models/navbar-main-tab.model.d.ts +1 -1
- package/lib/models/support-ticket.model.d.ts +5 -5
- package/lib/models/user-group.model.d.ts +1 -0
- package/lib/widgets/alert/alert.model.d.ts +1 -1
- package/lib/widgets/sort-table/sort-table.directive.d.ts +1 -1
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ export interface DialogInputFieldSelectOptions {
|
|
|
14
14
|
value: string | number;
|
|
15
15
|
text: string;
|
|
16
16
|
}
|
|
17
|
-
|
|
17
|
+
type DialogInputFieldTypes = 'text' | 'number' | 'select' | 'ng-select' | 'state' | 'email' | 'password' | 'textarea' | 'boolean';
|
|
18
18
|
export interface DialogSelectWithButtonsOptionModel {
|
|
19
19
|
value: string | number;
|
|
20
20
|
text: string;
|
|
@@ -6,7 +6,7 @@ export interface NavbarMainTabModel {
|
|
|
6
6
|
left?: number;
|
|
7
7
|
tourAnchor?: string;
|
|
8
8
|
}
|
|
9
|
-
export
|
|
9
|
+
export type NavbarMainTabType = 'link' | 'dropdown';
|
|
10
10
|
export interface NavbarMainTabLinkModel {
|
|
11
11
|
routerLink: string;
|
|
12
12
|
label: string;
|
|
@@ -32,10 +32,10 @@ export interface SupportTicketClientUserModel {
|
|
|
32
32
|
user: string;
|
|
33
33
|
email: string;
|
|
34
34
|
}
|
|
35
|
-
export
|
|
36
|
-
export
|
|
37
|
-
export
|
|
38
|
-
export
|
|
35
|
+
export type SupportTicketPriority = 'High' | 'Low';
|
|
36
|
+
export type SupportTicketType = 'System Impairment' | 'Request New Feature' | 'General Inquery' | 'New Build';
|
|
37
|
+
export type SupportTicketStatus = 'Opened' | 'Review' | 'Closed';
|
|
38
|
+
export type SupportTicketSubstatus = 'New' | 'Work In Progress' | 'Idle' | 'Awaiting Customer Interaction';
|
|
39
39
|
export interface SupportTicketMessageModel {
|
|
40
40
|
message: string;
|
|
41
41
|
id_user: string;
|
|
@@ -43,7 +43,7 @@ export interface SupportTicketMessageModel {
|
|
|
43
43
|
date: Date;
|
|
44
44
|
type: SupportTicketMessageType;
|
|
45
45
|
}
|
|
46
|
-
|
|
46
|
+
type SupportTicketMessageType = 'ResolveIO' | 'Client';
|
|
47
47
|
export interface SupportTicketWatchersModel {
|
|
48
48
|
user: string;
|
|
49
49
|
id_user: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type alertType = 'warning' | 'error' | 'success' | 'info' | 'update';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
2
|
import { Subject, Observable } from 'rxjs';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export
|
|
4
|
+
export type SortDirectionType = 1 | 0 | -1;
|
|
5
5
|
export interface Sortable {
|
|
6
6
|
/** The id of the column being sorted. */
|
|
7
7
|
id: string;
|
package/package.json
CHANGED