@cuby-ui/core 0.0.337 → 0.0.338
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/widgets/select-modal/components/select-modal-search/select-modal-search.component.mjs +16 -6
- package/fesm2022/cuby-ui-core.mjs +11 -3
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/widgets/select-modal/components/select-modal-search/select-modal-search.component.d.ts +8 -3
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.338",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
7
|
"@angular/elements": ">=18.0.0",
|
|
8
8
|
"@angular/forms": ">=18.0.0",
|
|
9
|
-
"@cuby-ui/api": "^0.0.
|
|
10
|
-
"@cuby-ui/cdk": "^0.0.
|
|
11
|
-
"@cuby-ui/icons": "^0.0.
|
|
9
|
+
"@cuby-ui/api": "^0.0.338",
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.338",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.338",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
package/widgets/select-modal/components/select-modal-search/select-modal-search.component.d.ts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { FormControl } from '@angular/forms';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CuiSelectModalSearchComponent {
|
|
4
|
-
|
|
4
|
+
export declare class CuiSelectModalSearchComponent implements OnInit {
|
|
5
|
+
private readonly destroyRef;
|
|
6
|
+
readonly searchControl: import("@angular/core").InputSignal<FormControl<any>>;
|
|
7
|
+
readonly controlDelay: import("@angular/core").InputSignal<number>;
|
|
8
|
+
readonly searchStringChanged: import("@angular/core").OutputEmitterRef<string>;
|
|
9
|
+
ngOnInit(): void;
|
|
5
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<CuiSelectModalSearchComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CuiSelectModalSearchComponent, "cui-select-modal-search", never, {}, {}, never, never, true, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CuiSelectModalSearchComponent, "cui-select-modal-search", never, { "searchControl": { "alias": "searchControl"; "required": true; "isSignal": true; }; "controlDelay": { "alias": "controlDelay"; "required": false; "isSignal": true; }; }, { "searchStringChanged": "searchStringChanged"; }, never, never, true, never>;
|
|
7
12
|
}
|