zek 16.1.12 → 16.1.14

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.
@@ -8,7 +8,8 @@ export declare class CoreComponent implements OnInit, OnDestroy {
8
8
  init(): void;
9
9
  bindModel(): void;
10
10
  bindDictionary(): void;
11
- onBound(): void;
11
+ onBindingCompleted(): void;
12
+ onLoadCompleted(): void;
12
13
  destroy(): Promise<void>;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreComponent, never>;
14
15
  static ɵdir: i0.ɵɵDirectiveDeclaration<CoreComponent, never, never, {}, {}, never, never, false, never>;
@@ -14,6 +14,7 @@ export * from './grid-toolbar';
14
14
  export * from './list-toolbar';
15
15
  export * from './loading';
16
16
  export * from './modal';
17
+ export * from './numeric';
17
18
  export * from './page-title';
18
19
  export * from './pager';
19
20
  export * from './password';
@@ -0,0 +1 @@
1
+ export * from './numeric.directive';
@@ -0,0 +1,20 @@
1
+ import { ElementRef } from "@angular/core";
2
+ import { BooleanInput, NumberInput } from "../../components";
3
+ import * as i0 from "@angular/core";
4
+ export declare class NumericDirective {
5
+ private el;
6
+ private _digits;
7
+ get digits(): NumberInput;
8
+ set digits(v: NumberInput);
9
+ private _negative;
10
+ get negative(): boolean;
11
+ set negative(v: BooleanInput);
12
+ private checkAllowNegative;
13
+ private check;
14
+ private run;
15
+ constructor(el: ElementRef);
16
+ onKeyDown(event: KeyboardEvent): void;
17
+ onPaste(event: ClipboardEvent): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NumericDirective, "[numeric]", never, { "digits": { "alias": "digits"; "required": false; }; "negative": { "alias": "negative"; "required": false; }; }, {}, never, never, true, never>;
20
+ }
@@ -1,2 +1 @@
1
- export * from './module';
2
1
  export * from './select2-multiple';
@@ -26,5 +26,5 @@ export declare class ZekSelect2Multiple {
26
26
  private setText;
27
27
  selectItem(item: any): void;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<ZekSelect2Multiple, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<ZekSelect2Multiple, "zek-select2-multiple,[zek-select2-multiple]", never, { "data": { "alias": "data"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selectedItemChange": "selectedItemChange"; "valueChange": "valueChange"; }, never, never, false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<ZekSelect2Multiple, "zek-select2-multiple,[zek-select2-multiple]", never, { "data": { "alias": "data"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "selectedItemChange": "selectedItemChange"; "valueChange": "valueChange"; }, never, never, true, never>;
30
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "16.1.12",
3
+ "version": "16.1.14",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"
@@ -1,28 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { FormsModule } from '@angular/forms';
4
- import { ZekSelect2Multiple } from './select2-multiple';
5
- import * as i0 from "@angular/core";
6
- export class ZekSelect2MultipleModule {
7
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ZekSelect2MultipleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
8
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: ZekSelect2MultipleModule, declarations: [ZekSelect2Multiple], imports: [CommonModule,
9
- FormsModule], exports: [ZekSelect2Multiple] }); }
10
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ZekSelect2MultipleModule, imports: [CommonModule,
11
- FormsModule] }); }
12
- }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ZekSelect2MultipleModule, decorators: [{
14
- type: NgModule,
15
- args: [{
16
- imports: [
17
- CommonModule,
18
- FormsModule
19
- ],
20
- declarations: [
21
- ZekSelect2Multiple
22
- ],
23
- exports: [
24
- ZekSelect2Multiple
25
- ],
26
- }]
27
- }] });
28
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvemVrL3NyYy9saWIvbW9kdWxlcy9zZWxlY3QyLW11bHRpcGxlL21vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDN0MsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7O0FBZXhELE1BQU0sT0FBTyx3QkFBd0I7OEdBQXhCLHdCQUF3QjsrR0FBeEIsd0JBQXdCLGlCQVBqQyxrQkFBa0IsYUFKbEIsWUFBWTtZQUNaLFdBQVcsYUFNWCxrQkFBa0I7K0dBSVQsd0JBQXdCLFlBWGpDLFlBQVk7WUFDWixXQUFXOzsyRkFVRix3QkFBd0I7a0JBYnBDLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osV0FBVztxQkFDWjtvQkFDRCxZQUFZLEVBQUU7d0JBQ1osa0JBQWtCO3FCQUNuQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asa0JBQWtCO3FCQUNuQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbIiAgXHJcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XHJcbmltcG9ydCB7IEZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5pbXBvcnQgeyBaZWtTZWxlY3QyTXVsdGlwbGUgfSBmcm9tICcuL3NlbGVjdDItbXVsdGlwbGUnO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBpbXBvcnRzOiBbXHJcbiAgICBDb21tb25Nb2R1bGUsXHJcbiAgICBGb3Jtc01vZHVsZVxyXG4gIF0sXHJcbiAgZGVjbGFyYXRpb25zOiBbXHJcbiAgICBaZWtTZWxlY3QyTXVsdGlwbGVcclxuICBdLFxyXG4gIGV4cG9ydHM6IFtcclxuICAgIFpla1NlbGVjdDJNdWx0aXBsZVxyXG4gIF0sXHJcbn0pXHJcblxyXG5leHBvcnQgY2xhc3MgWmVrU2VsZWN0Mk11bHRpcGxlTW9kdWxlIHtcclxufSJdfQ==
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./select2-multiple";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/forms";
5
- export declare class ZekSelect2MultipleModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ZekSelect2MultipleModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<ZekSelect2MultipleModule, [typeof i1.ZekSelect2Multiple], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.ZekSelect2Multiple]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<ZekSelect2MultipleModule>;
9
- }