@bizdoc/core 1.13.37 → 1.13.38
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/themes/brown.min.css +0 -2
- package/assets/themes/dark.min.css +3 -5
- package/assets/themes/deep-purple-light-blue.min.css +0 -2
- package/assets/themes/deep-purple-teal.min.css +0 -2
- package/assets/themes/default.min.css +0 -2
- package/assets/themes/green.min.css +0 -2
- package/assets/themes/indigo.min.css +0 -2
- package/esm2020/lib/browse/expanded-item/expanded-item.component.mjs +14 -9
- package/esm2020/lib/compose/action/assign-action.component.mjs +19 -43
- package/esm2020/lib/compose/trace/flow.component.mjs +39 -24
- package/esm2020/lib/core/controls/auto-complete.input.mjs +3 -2
- package/esm2020/lib/core/translations.mjs +11 -7
- package/esm2020/lib/home/home.desktop.component.mjs +4 -4
- package/fesm2015/bizdoc-core.mjs +206 -202
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +206 -202
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/compose/action/assign-action.component.d.ts +3 -9
- package/lib/core/translations.d.ts +6 -2
- package/lib/home/home.desktop.component.d.ts +1 -1
- package/package.json +1 -1
@@ -11,25 +11,19 @@ export declare class AssignActionComponent implements ArgumentsComponent, OnInit
|
|
11
11
|
private _fb;
|
12
12
|
private _session;
|
13
13
|
private _accounts;
|
14
|
-
readonly separatorKeysCodes: number[];
|
15
14
|
nameInput: ElementRef<HTMLInputElement>;
|
16
15
|
readonly form: import("@angular/forms").FormGroup;
|
17
|
-
readonly
|
16
|
+
readonly userId: import("@angular/forms").FormControl;
|
18
17
|
users$: Observable<UserInfo[]>;
|
19
18
|
private _destroy;
|
20
19
|
constructor(_fb: FormBuilder, _session: SessionService, _accounts: AccountService);
|
20
|
+
displayWith: (e: UserInfo) => string;
|
21
21
|
ngOnInit(): void;
|
22
22
|
/**
|
23
23
|
*
|
24
|
-
* @param inp
|
25
24
|
* @param event
|
26
25
|
*/
|
27
|
-
userSelected(
|
28
|
-
/**
|
29
|
-
*
|
30
|
-
* @param id
|
31
|
-
*/
|
32
|
-
removed(id: string): void;
|
26
|
+
userSelected(event: MatAutocompleteSelectedEvent): void;
|
33
27
|
ngOnDestroy(): void;
|
34
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssignActionComponent, never>;
|
35
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<AssignActionComponent, "ng-component", never, {}, {}, never, never>;
|
@@ -196,7 +196,8 @@ export declare const STRINGS: {
|
|
196
196
|
YouSubmittedNote: string;
|
197
197
|
SubmittedNote: string;
|
198
198
|
SubmittedNoteBy: string;
|
199
|
-
|
199
|
+
SubmittedNoteYouBy: string;
|
200
|
+
YouSubmittedNoteBy: string;
|
200
201
|
Today: string;
|
201
202
|
Yesterday: string;
|
202
203
|
Forget: string;
|
@@ -739,10 +740,13 @@ export declare const STRINGS: {
|
|
739
740
|
SubmittedNoteMale: string;
|
740
741
|
SubmittedNoteFemale: string;
|
741
742
|
YouSubmittedNote: string;
|
743
|
+
SubmittedNoteYouBy: string;
|
744
|
+
SubmittedNoteYouByMale: string;
|
745
|
+
SubmittedNoteYouByFemale: string;
|
742
746
|
SubmittedNoteBy: string;
|
743
747
|
SubmittedNoteByMale: string;
|
744
748
|
SubmittedNoteByFemale: string;
|
745
|
-
|
749
|
+
YouSubmittedNoteBy: string;
|
746
750
|
Today: string;
|
747
751
|
Yesterday: string;
|
748
752
|
SomeoneTyping: string;
|
@@ -12,7 +12,7 @@ import { HomeBase } from './home-base.component';
|
|
12
12
|
import { MailboxService } from '../core/mailbox.service';
|
13
13
|
import { PromptService } from '../core/prompt.service';
|
14
14
|
import * as i0 from "@angular/core";
|
15
|
-
/** home comp */
|
15
|
+
/** desktop home comp */
|
16
16
|
export declare class HomeComponent extends HomeBase {
|
17
17
|
private _router;
|
18
18
|
private _mailbox;
|
package/package.json
CHANGED