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 +2 -2
- package/types/uni-app-fe.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uni-app-fe",
|
|
3
|
-
"version": "0.0.
|
|
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": ">=
|
|
9
|
+
"uni-manager": ">=0.0.69"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|
package/types/uni-app-fe.d.ts
CHANGED
|
@@ -207,7 +207,7 @@ declare class UniToastService implements IToastManager {
|
|
|
207
207
|
}
|
|
208
208
|
|
|
209
209
|
declare class UniBannerAlert {
|
|
210
|
-
type: i0.InputSignal<"
|
|
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<"
|
|
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;
|