uni-app-fe 0.0.8 → 0.0.9
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 +4 -3
- package/types/uni-app-fe.d.ts +5 -1
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uni-app-fe",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=21.0.0",
|
|
6
6
|
"@angular/core": ">=21.0.0",
|
|
7
|
-
"devextreme": ">=
|
|
8
|
-
"
|
|
7
|
+
"devextreme": ">=25.0.0",
|
|
8
|
+
"devextreme-angular": ">=25.0.0",
|
|
9
|
+
"uni-manager": ">= 0.0.63"
|
|
9
10
|
},
|
|
10
11
|
"dependencies": {
|
|
11
12
|
"tslib": "^2.3.0"
|
package/types/uni-app-fe.d.ts
CHANGED
|
@@ -30,6 +30,10 @@ interface Combo {
|
|
|
30
30
|
code: string;
|
|
31
31
|
description: string;
|
|
32
32
|
}
|
|
33
|
+
interface ComboRaw {
|
|
34
|
+
id: number;
|
|
35
|
+
name: string;
|
|
36
|
+
}
|
|
33
37
|
|
|
34
38
|
interface LoginForm {
|
|
35
39
|
username: string;
|
|
@@ -197,4 +201,4 @@ declare class UniToastService implements IToastManager {
|
|
|
197
201
|
}
|
|
198
202
|
|
|
199
203
|
export { FaIconTransformPipe, UniCapitalizePipe, UniControlValidityPipe, UniGetComboPipe, UniLabelizePipe, UniLoaderService, UniLocaleManagerAngular, UniPadPipe, UniPopupService, UniToastService, UniTranslateInlineParametersPipe, UniTranslatePipe, UniTruncateNumberPipe };
|
|
200
|
-
export type { Combo, Instance, LoginForm, Nullable, PopupContent, PopupType };
|
|
204
|
+
export type { Combo, ComboRaw, Instance, LoginForm, Nullable, PopupContent, PopupType };
|