zek 17.3.48 → 17.3.49
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/esm2022/lib/modules/index.mjs +2 -1
- package/esm2022/lib/modules/modal/modal/modal.component.mjs +5 -5
- package/esm2022/lib/modules/tag/index.mjs +2 -0
- package/esm2022/lib/modules/tag/tag.mjs +112 -0
- package/fesm2022/zek.mjs +125 -21
- package/fesm2022/zek.mjs.map +1 -1
- package/lib/modules/index.d.ts +1 -0
- package/lib/modules/modal/modal/modal.component.d.ts +0 -1
- package/lib/modules/tag/index.d.ts +1 -0
- package/lib/modules/tag/tag.d.ts +26 -0
- package/package.json +1 -1
package/lib/modules/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import { ModalSize } from '../../../models';
|
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class ZekModal extends CoreComponent {
|
|
9
9
|
protected readonly translate: TranslateService;
|
|
10
|
-
constructor();
|
|
11
10
|
destroy(): Promise<void>;
|
|
12
11
|
init(): void;
|
|
13
12
|
private _uniqueId;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './tag';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BooleanInput, CoreUiComponent, NumberInput } from '../../components';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ZekTag extends CoreUiComponent {
|
|
5
|
+
model: string[] | null;
|
|
6
|
+
readonly modelChange: EventEmitter<string[]>;
|
|
7
|
+
get max(): number;
|
|
8
|
+
set max(v: NumberInput);
|
|
9
|
+
_max: number;
|
|
10
|
+
_maxlength: number | null;
|
|
11
|
+
get maxlength(): number | null;
|
|
12
|
+
set maxlength(v: NumberInput);
|
|
13
|
+
private _duplicate;
|
|
14
|
+
get duplicate(): boolean;
|
|
15
|
+
set duplicate(v: BooleanInput);
|
|
16
|
+
text: string | null;
|
|
17
|
+
onKeyEnter(e: Event): void;
|
|
18
|
+
private _uniqueId;
|
|
19
|
+
/** The unique ID for the tag. */
|
|
20
|
+
id: string;
|
|
21
|
+
get inputId(): string;
|
|
22
|
+
add(text: string | null): boolean;
|
|
23
|
+
remove(item: string): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ZekTag, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZekTag, "zek-tag", never, { "model": { "alias": "model"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "duplicate": { "alias": "duplicate"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, true, never>;
|
|
26
|
+
}
|