@osovitny/anatoly 3.16.91 → 3.16.92
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/ui/components/base/components/enum-edit.component.mjs +84 -0
- package/esm2022/lib/ui/components/index.mjs +3 -2
- package/fesm2022/osovitny-anatoly.mjs +80 -1
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/base/components/enum-edit.component.d.ts +19 -0
- package/lib/ui/components/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { EditComponentBase } from "./edit.component";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare abstract class EnumEditComponentBase extends EditComponentBase implements OnInit {
|
|
5
|
+
enumeration: any;
|
|
6
|
+
items: any[];
|
|
7
|
+
sv: any;
|
|
8
|
+
defaultValue: number;
|
|
9
|
+
valueChange: EventEmitter<any>;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
private fireValueChange;
|
|
12
|
+
private renderItems;
|
|
13
|
+
reset(): void;
|
|
14
|
+
onChange(value: any): void;
|
|
15
|
+
get selectedValue(): any;
|
|
16
|
+
set selectedValue(value: any);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnumEditComponentBase, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EnumEditComponentBase, "ng-component", never, { "defaultValue": { "alias": "defaultValue"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export * from './base/components/edit.component';
|
|
2
1
|
export * from './base/components/component';
|
|
2
|
+
export * from './base/components/edit.component';
|
|
3
|
+
export * from './base/components/enum-edit.component';
|
|
3
4
|
export * from './base/pages/page';
|
|
4
5
|
export * from './base/pages/edit.page';
|
|
5
6
|
export * from './base/pages/paged.page';
|