@piying-lib/angular-daisyui 1.3.19 → 1.3.21
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/extension/index.d.ts +2 -2
- package/fesm2022/piying-lib-angular-daisyui-extension.mjs +11 -1
- package/fesm2022/piying-lib-angular-daisyui-extension.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-field-group.mjs +16 -6
- package/fesm2022/piying-lib-angular-daisyui-field-group.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-overlay.mjs +11 -2
- package/fesm2022/piying-lib-angular-daisyui-overlay.mjs.map +1 -1
- package/field-group/index.d.ts +2 -1
- package/overlay/index.d.ts +10 -0
- package/package.json +2 -2
package/overlay/index.d.ts
CHANGED
|
@@ -96,6 +96,7 @@ interface FormDialogOptions<Schema extends v.BaseSchema<any, any, any> = v.BaseS
|
|
|
96
96
|
applyValue?: (value: v.InferOutput<Schema>) => Promise<ReturnValue | undefined>;
|
|
97
97
|
injector: Injector;
|
|
98
98
|
close: (value: any) => Promise<any>;
|
|
99
|
+
context?: Record<string, any>;
|
|
99
100
|
}
|
|
100
101
|
declare class FormDialogService {
|
|
101
102
|
#private;
|
|
@@ -123,6 +124,15 @@ declare class FormDialogItemComponent {
|
|
|
123
124
|
apply(): Promise<void>;
|
|
124
125
|
close(): void;
|
|
125
126
|
modelChange(value: any): void;
|
|
127
|
+
options2$$: i0.Signal<{
|
|
128
|
+
context: any;
|
|
129
|
+
handle?: typeof _piying_view_angular_core.CoreSchemaHandle | undefined;
|
|
130
|
+
environments?: string[] | undefined;
|
|
131
|
+
defaultMetadataActionsGroup?: Record<string, v.BaseMetadata<any>[]> | undefined;
|
|
132
|
+
additionalData?: Record<string, any> | undefined;
|
|
133
|
+
builder?: typeof _piying_view_angular_core.FormBuilder | undefined;
|
|
134
|
+
fieldGlobalConfig?: _piying_view_angular.PiViewConfig;
|
|
135
|
+
}>;
|
|
126
136
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormDialogItemComponent, never>;
|
|
127
137
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormDialogItemComponent, "pi-form-dialog-item", never, { "item": { "alias": "item"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
128
138
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@piying-lib/angular-daisyui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.21",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=20.3.0",
|
|
6
6
|
"@angular/core": ">=20.3.0",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"tslib": "^2.3.0",
|
|
15
|
-
"@piying-lib/angular-core": "^1.3.
|
|
15
|
+
"@piying-lib/angular-core": "^1.3.21",
|
|
16
16
|
"cally": "^0.9.2",
|
|
17
17
|
"type-fest": "5.5.0"
|
|
18
18
|
},
|