@elderbyte/ngx-starter 19.6.2 → 19.6.3
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/fesm2022/elderbyte-ngx-starter.mjs +51 -34
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/common/data/datasource/data-source.d.ts +1 -1
- package/lib/components/forms/directives/checkbox/elder-triple-state-checkbox-controller.d.ts +4 -2
- package/lib/components/forms/directives/checkbox/elder-triple-state-checkbox.directive.d.ts +9 -3
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import { Page, Pageable } from '../page';
|
|
|
5
5
|
import { TokenChunkRequest } from '../token-chunk-request';
|
|
6
6
|
import { ContinuableListing } from '../continuable-listing';
|
|
7
7
|
import { DataSourceChangeEvent } from './data-source-change-event';
|
|
8
|
-
import { LocalListDataSource } from
|
|
8
|
+
import { LocalListDataSource } from './local/local-list-data-source';
|
|
9
9
|
/***************************************************************************
|
|
10
10
|
* *
|
|
11
11
|
* Data Fetcher APIs *
|
package/lib/components/forms/directives/checkbox/elder-triple-state-checkbox-controller.d.ts
CHANGED
|
@@ -8,25 +8,27 @@ export declare enum TripleCheckboxState {
|
|
|
8
8
|
}
|
|
9
9
|
export declare class ElderTripleStateCheckboxController {
|
|
10
10
|
private readonly checkbox;
|
|
11
|
-
private readonly ngModel
|
|
11
|
+
private readonly ngModel?;
|
|
12
12
|
/***************************************************************************
|
|
13
13
|
* *
|
|
14
14
|
* Fields *
|
|
15
15
|
* *
|
|
16
16
|
**************************************************************************/
|
|
17
17
|
private readonly _stateChange;
|
|
18
|
+
private readonly _valueChange;
|
|
18
19
|
/***************************************************************************
|
|
19
20
|
* *
|
|
20
21
|
* Constructor *
|
|
21
22
|
* *
|
|
22
23
|
**************************************************************************/
|
|
23
|
-
constructor(checkbox: MatCheckbox, ngModel
|
|
24
|
+
constructor(checkbox: MatCheckbox, ngModel?: NgModel);
|
|
24
25
|
/***************************************************************************
|
|
25
26
|
* *
|
|
26
27
|
* Properties *
|
|
27
28
|
* *
|
|
28
29
|
**************************************************************************/
|
|
29
30
|
get stateChange(): Observable<TripleCheckboxState>;
|
|
31
|
+
get valueChange(): Observable<boolean | undefined>;
|
|
30
32
|
/***************************************************************************
|
|
31
33
|
* *
|
|
32
34
|
* Public API *
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { MatCheckbox } from '@angular/material/checkbox';
|
|
3
3
|
import { NgModel } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -11,6 +11,12 @@ export declare class ElderTripleStateCheckboxDirective implements OnInit {
|
|
|
11
11
|
**************************************************************************/
|
|
12
12
|
private readonly log;
|
|
13
13
|
private readonly controller;
|
|
14
|
+
/***************************************************************************
|
|
15
|
+
* *
|
|
16
|
+
* Properties *
|
|
17
|
+
* *
|
|
18
|
+
**************************************************************************/
|
|
19
|
+
valueChange: EventEmitter<boolean>;
|
|
14
20
|
/***************************************************************************
|
|
15
21
|
* *
|
|
16
22
|
* Constructor *
|
|
@@ -29,6 +35,6 @@ export declare class ElderTripleStateCheckboxDirective implements OnInit {
|
|
|
29
35
|
* *
|
|
30
36
|
**************************************************************************/
|
|
31
37
|
toggleNextState(): void;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTripleStateCheckboxDirective,
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderTripleStateCheckboxDirective, "mat-checkbox[elderTripleStateCheckbox]", never, {}, {}, never, never, true, never>;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderTripleStateCheckboxDirective, [null, { optional: true; }]>;
|
|
39
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderTripleStateCheckboxDirective, "mat-checkbox[elderTripleStateCheckbox]", never, {}, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
34
40
|
}
|