@mingto/mt-ui 1.1.47 → 1.1.48
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/README.md +209 -173
- package/dist/icon/assets/font/iconfont.json.d.ts +2207 -2207
- package/dist/index.es.js +69 -55
- package/dist/index.umd.js +69 -55
- package/dist/message/index.d.ts +1 -1
- package/dist/message/src/message.d.ts +5 -5
- package/dist/poster/src/method.d.ts +4 -1
- package/dist/style.css +1277 -1284
- package/dist/tab/index.d.ts +3 -3
- package/dist/tab/src/tab.d.ts +1 -1
- package/dist/tab/src/tab.vue.d.ts +1 -1
- package/package.json +2 -2
package/dist/tab/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare const MtTab: {
|
|
|
9
9
|
readonly default: 0;
|
|
10
10
|
};
|
|
11
11
|
}>> & Readonly<{}>, {
|
|
12
|
-
isActive: import('vue').ComputedRef<boolean>;
|
|
12
|
+
isActive: boolean | import('vue').ComputedRef<boolean>;
|
|
13
13
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
14
14
|
readonly name: string | number;
|
|
15
15
|
readonly label: string;
|
|
@@ -30,7 +30,7 @@ export declare const MtTab: {
|
|
|
30
30
|
readonly default: 0;
|
|
31
31
|
};
|
|
32
32
|
}>> & Readonly<{}>, {
|
|
33
|
-
isActive: import('vue').ComputedRef<boolean>;
|
|
33
|
+
isActive: boolean | import('vue').ComputedRef<boolean>;
|
|
34
34
|
}, {}, {}, {}, {
|
|
35
35
|
readonly name: string | number;
|
|
36
36
|
readonly label: string;
|
|
@@ -48,7 +48,7 @@ export declare const MtTab: {
|
|
|
48
48
|
readonly default: 0;
|
|
49
49
|
};
|
|
50
50
|
}>> & Readonly<{}>, {
|
|
51
|
-
isActive: import('vue').ComputedRef<boolean>;
|
|
51
|
+
isActive: boolean | import('vue').ComputedRef<boolean>;
|
|
52
52
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
53
53
|
readonly name: string | number;
|
|
54
54
|
readonly label: string;
|
package/dist/tab/src/tab.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ declare const tabProps: {
|
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
18
|
interface TabContext {
|
|
19
|
-
isActive: ComputedRef<boolean>;
|
|
19
|
+
isActive: boolean | ComputedRef<boolean>;
|
|
20
20
|
}
|
|
21
21
|
type TabProps = ExtractPropTypes<typeof tabProps>;
|
|
22
22
|
declare function isTabContext(obj: unknown): obj is TabContext;
|
|
@@ -8,7 +8,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
readonly default: 0;
|
|
9
9
|
};
|
|
10
10
|
}>, {
|
|
11
|
-
isActive: import('vue').ComputedRef<boolean>;
|
|
11
|
+
isActive: boolean | import('vue').ComputedRef<boolean>;
|
|
12
12
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
13
13
|
readonly label: {
|
|
14
14
|
readonly type: StringConstructor;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mingto/mt-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.48",
|
|
5
5
|
"description": "UI组件库",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -39,4 +39,4 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/lodash-es": "^4.17.12"
|
|
41
41
|
}
|
|
42
|
-
}
|
|
42
|
+
}
|