raise-common-lib 0.0.168 → 0.0.170
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/bundles/raise-common-lib.umd.js +145 -2
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/form/confirm-select/index.component.js +118 -0
- package/esm2015/lib/raise-common-lib.module.js +4 -1
- package/esm2015/raise-common-lib.js +4 -3
- package/esm5/lib/form/confirm-select/index.component.js +143 -0
- package/esm5/lib/raise-common-lib.module.js +4 -1
- package/esm5/raise-common-lib.js +4 -3
- package/fesm2015/raise-common-lib.js +119 -1
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +143 -1
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/form/confirm-select/index.component.d.ts +25 -0
- package/package.json +1 -1
- package/raise-common-lib.d.ts +3 -2
- package/raise-common-lib.metadata.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from "@angular/core";
|
|
2
|
+
import { MultiSelectComponent } from "@syncfusion/ej2-angular-dropdowns";
|
|
3
|
+
export declare class ConfirmSelectComponent implements OnInit, OnChanges {
|
|
4
|
+
comfirmSelect: MultiSelectComponent;
|
|
5
|
+
value: any;
|
|
6
|
+
dataSource: any[];
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
fields: {
|
|
9
|
+
text: string;
|
|
10
|
+
value: string;
|
|
11
|
+
};
|
|
12
|
+
placeholder: any;
|
|
13
|
+
showSelectAll: boolean;
|
|
14
|
+
valueChange: EventEmitter<any>;
|
|
15
|
+
translation: any;
|
|
16
|
+
selectedItems: any[];
|
|
17
|
+
isInteracted: boolean;
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
20
|
+
getInfo(): void;
|
|
21
|
+
resetSelectedItems(): void;
|
|
22
|
+
onCancel(): void;
|
|
23
|
+
onApply(): void;
|
|
24
|
+
onClose(e: any): void;
|
|
25
|
+
}
|
package/package.json
CHANGED
package/raise-common-lib.d.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export { CommonDeleteComponent as
|
|
6
|
-
export { NewActionNotificationComponent as
|
|
5
|
+
export { CommonDeleteComponent as ɵd } from './lib/dialog/common-delete-dialog/index.component';
|
|
6
|
+
export { NewActionNotificationComponent as ɵc } from './lib/dialog/new-action-notification/new-action-notification.component';
|
|
7
|
+
export { ConfirmSelectComponent as ɵb } from './lib/form/confirm-select/index.component';
|
|
7
8
|
export { Debounce as ɵa } from './lib/utils/decorator';
|