uni-app-fe 0.0.19 → 0.0.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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "uni-app-fe",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=21.0.0",
6
6
  "@angular/core": ">=21.0.0",
7
7
  "devextreme": ">=25.0.0",
8
8
  "devextreme-angular": ">=25.0.0",
9
- "uni-manager": ">= 0.09"
9
+ "uni-manager": ">=0.0.69"
10
10
  },
11
11
  "dependencies": {
12
12
  "tslib": "^2.3.0"
@@ -207,7 +207,7 @@ declare class UniToastService implements IToastManager {
207
207
  }
208
208
 
209
209
  declare class UniBannerAlert {
210
- type: i0.InputSignal<"warning" | "error">;
210
+ type: i0.InputSignal<"error" | "warning">;
211
211
  lblTitle: i0.InputSignal<string>;
212
212
  lblDescription: i0.InputSignal<string>;
213
213
  icon: i0.InputSignal<IconDefinition | undefined>;
@@ -248,7 +248,7 @@ declare class UniItemField {
248
248
  label: i0.InputSignal<string>;
249
249
  value: i0.InputSignal<string | number | Date | null | undefined>;
250
250
  udm: i0.InputSignal<string | undefined>;
251
- dateFormat: i0.InputSignal<"short" | "medium" | "shortDate" | "mediumDate" | "longDate" | "fullDate">;
251
+ dateFormat: i0.InputSignal<"medium" | "short" | "shortDate" | "mediumDate" | "longDate" | "fullDate">;
252
252
  valueFormatted: i0.Signal<string | null>;
253
253
  onCopyValue(): Promise<void>;
254
254
  private isValidDateString;