uni-app-fe 0.0.17 → 0.0.18
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/package.json +1 -1
- package/types/uni-app-fe.d.ts +2 -1
package/package.json
CHANGED
package/types/uni-app-fe.d.ts
CHANGED
|
@@ -198,7 +198,7 @@ declare class UniToastService implements IToastManager {
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
declare class UniBannerAlert {
|
|
201
|
-
type: i0.InputSignal<"
|
|
201
|
+
type: i0.InputSignal<"error" | "warning">;
|
|
202
202
|
lblTitle: i0.InputSignal<string>;
|
|
203
203
|
lblDescription: i0.InputSignal<string>;
|
|
204
204
|
icon: i0.InputSignal<IconDefinition | undefined>;
|
|
@@ -283,6 +283,7 @@ type MenuItem = {
|
|
|
283
283
|
icon: IconDefinition$1;
|
|
284
284
|
label: string;
|
|
285
285
|
path: string;
|
|
286
|
+
pathQueryParams?: Record<string, string>;
|
|
286
287
|
visible?: boolean;
|
|
287
288
|
disabled?: boolean;
|
|
288
289
|
badge?: boolean;
|