@kengic/vue 0.0.2-beta.54 → 0.0.2-beta.56
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/dist/index.css +1 -1
- package/dist/kengic-vue.js +483 -461
- package/dist/src/components/index.d.ts +2 -1
- package/dist/src/components/kg-yes-or-no/KgYesOrNo.d.ts +24 -0
- package/dist/src/consts/i18n/en.d.ts +2 -0
- package/dist/src/consts/i18n/index.d.ts +4 -0
- package/dist/src/consts/i18n/zh_CN.d.ts +2 -0
- package/package.json +2 -3
- package/dist/css/animation.css +0 -111
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import KgPage from './kg-page/KgPage';
|
|
2
2
|
import KgProgressA from './kg-progress-a/KgProgressA';
|
|
3
3
|
import KgVarProfile from './kg-var-profile/KgVarProfile';
|
|
4
|
-
|
|
4
|
+
import KgYesOrNo from './kg-yes-or-no/KgYesOrNo';
|
|
5
|
+
export { KgPage, KgProgressA, KgVarProfile, KgYesOrNo };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import './KgYesOrNo.less';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* 布尔数据.
|
|
6
|
+
* @default false
|
|
7
|
+
*/
|
|
8
|
+
kgValue: {
|
|
9
|
+
type: PropType<boolean>;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
/**
|
|
14
|
+
* 布尔数据.
|
|
15
|
+
* @default false
|
|
16
|
+
*/
|
|
17
|
+
kgValue: {
|
|
18
|
+
type: PropType<boolean>;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
}>>, {
|
|
22
|
+
kgValue: boolean;
|
|
23
|
+
}>;
|
|
24
|
+
export default _default;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export declare const KG_I18N: {
|
|
2
2
|
en: {
|
|
3
3
|
kg: {
|
|
4
|
+
yes: string;
|
|
5
|
+
no: string;
|
|
4
6
|
KgVarProfile: {
|
|
5
7
|
title: string;
|
|
6
8
|
search: string;
|
|
@@ -10,6 +12,8 @@ export declare const KG_I18N: {
|
|
|
10
12
|
};
|
|
11
13
|
zh_CN: {
|
|
12
14
|
kg: {
|
|
15
|
+
yes: string;
|
|
16
|
+
no: string;
|
|
13
17
|
KgVarProfile: {
|
|
14
18
|
title: string;
|
|
15
19
|
search: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kengic/vue",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
3
|
+
"version": "0.0.2-beta.56",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "rimraf dist && vue-tsc && vite build",
|
|
6
6
|
"publish:all:beta": "npm run bump-version:beta && npm run publish:all",
|
|
@@ -51,8 +51,7 @@
|
|
|
51
51
|
".": {
|
|
52
52
|
"import": "./dist/kengic-vue.js"
|
|
53
53
|
},
|
|
54
|
-
"./dist/index.css": "./dist/index.css"
|
|
55
|
-
"./dist/css/animation.css": "./dist/css/animation.css"
|
|
54
|
+
"./dist/index.css": "./dist/index.css"
|
|
56
55
|
},
|
|
57
56
|
"prettier": {
|
|
58
57
|
"endOfLine": "auto",
|
package/dist/css/animation.css
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
/* 动画样式 */
|
|
2
|
-
|
|
3
|
-
.ant-layout-sider,
|
|
4
|
-
.ant-layout-has-sider > div,
|
|
5
|
-
.ant-layout-sider-trigger,
|
|
6
|
-
.ant-drawer-content-wrapper,
|
|
7
|
-
.ant-drawer-left.ant-drawer-open,
|
|
8
|
-
.ant-drawer-right.ant-drawer-open,
|
|
9
|
-
.ant-drawer-mask,
|
|
10
|
-
.ant-dropdown-menu-item,
|
|
11
|
-
.ant-dropdown-menu-submenu-title,
|
|
12
|
-
.ant-tabs-content-animated,
|
|
13
|
-
.ant-switch,
|
|
14
|
-
.ant-switch-inner,
|
|
15
|
-
.ant-switch-handle,
|
|
16
|
-
.ant-radio-button-wrapper,
|
|
17
|
-
.ant-form-item-explain,
|
|
18
|
-
.ant-form-item-extra,
|
|
19
|
-
.ant-tabs-tab-btn,
|
|
20
|
-
.ant-tabs-card > .ant-tabs-nav .ant-tabs-tab,
|
|
21
|
-
.ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab,
|
|
22
|
-
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-list,
|
|
23
|
-
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-list,
|
|
24
|
-
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap::before,
|
|
25
|
-
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap::before,
|
|
26
|
-
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap::after,
|
|
27
|
-
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-wrap::after,
|
|
28
|
-
.ant-tabs-top > .ant-tabs-nav .ant-tabs-ink-bar-animated,
|
|
29
|
-
.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-ink-bar-animated,
|
|
30
|
-
.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-ink-bar-animated,
|
|
31
|
-
.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-ink-bar-animated,
|
|
32
|
-
.ant-menu,
|
|
33
|
-
.ant-menu-inline.ant-menu-root .ant-menu-item,
|
|
34
|
-
.ant-menu-inline.ant-menu-root .ant-menu-submenu-title,
|
|
35
|
-
.ant-menu-title-content,
|
|
36
|
-
.ant-menu-inline .ant-menu-selected::after,
|
|
37
|
-
.ant-menu-inline .ant-menu-item-selected::after,
|
|
38
|
-
.ant-btn,
|
|
39
|
-
.jeecg-app-logo,
|
|
40
|
-
.jeecg-app-logo__title,
|
|
41
|
-
.jeecg-menu-menu-popover .jeecg-menu-item,
|
|
42
|
-
.jeecg-menu-menu-popover .jeecg-menu-submenu-title,
|
|
43
|
-
.jeecg-menu-submenu-title-icon,
|
|
44
|
-
.jeecg-simple-menu-sub-title,
|
|
45
|
-
.jeecg-basic-arrow,
|
|
46
|
-
.jeecg-layout-multiple-header,
|
|
47
|
-
.fade-enter-active,
|
|
48
|
-
.fade-leave-active,
|
|
49
|
-
.fade-slide-leave-active,
|
|
50
|
-
.fade-slide-enter-active,
|
|
51
|
-
.fade-bottom-enter-active,
|
|
52
|
-
.fade-bottom-leave-active,
|
|
53
|
-
.fade-scale-leave-active,
|
|
54
|
-
.fade-scale-enter-active,
|
|
55
|
-
.fade-top-enter-active,
|
|
56
|
-
.fade-top-leave-active,
|
|
57
|
-
.zoom-out-enter-active,
|
|
58
|
-
.zoom-out-leave-active,
|
|
59
|
-
.zoom-fade-enter-active,
|
|
60
|
-
.zoom-fade-leave-active,
|
|
61
|
-
.zoom-big-fast-enter,
|
|
62
|
-
.zoom-big-fast-enter-active,
|
|
63
|
-
.zoom-big-fast-leave,
|
|
64
|
-
.zoom-big-fast-leave-active,
|
|
65
|
-
.collapse-transition,
|
|
66
|
-
.transition-default-enter-active,
|
|
67
|
-
.transition-default-leave-active,
|
|
68
|
-
.transition-default-move {
|
|
69
|
-
transition: none !important;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
[ant-click-animating-without-extra-node='true']::after,
|
|
73
|
-
.ant-click-animating-node,
|
|
74
|
-
.zoom-big-enter,
|
|
75
|
-
.zoom-big-leave,
|
|
76
|
-
.zoom-enter,
|
|
77
|
-
.zoom-leave,
|
|
78
|
-
.fade-enter,
|
|
79
|
-
.fade-leave,
|
|
80
|
-
.ant-fade-enter,
|
|
81
|
-
.ant-fade-leave,
|
|
82
|
-
.ant-zoom-enter,
|
|
83
|
-
.ant-zoom-leave,
|
|
84
|
-
.ant-slide-up-enter,
|
|
85
|
-
.ant-slide-up-leave,
|
|
86
|
-
.ant-slide-down-enter,
|
|
87
|
-
.ant-slide-down-leave,
|
|
88
|
-
.ant-drawer.ant-drawer-open .ant-drawer-mask {
|
|
89
|
-
animation-duration: 0s !important;
|
|
90
|
-
animation-delay: 0s !important;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
* > .enter-x:nth-child(1),
|
|
94
|
-
* > .-enter-x:nth-child(1),
|
|
95
|
-
* > .enter-x:nth-child(2),
|
|
96
|
-
* > .-enter-x:nth-child(2),
|
|
97
|
-
* > .enter-x:nth-child(3),
|
|
98
|
-
* > .-enter-x:nth-child(3),
|
|
99
|
-
* > .enter-x:nth-child(4),
|
|
100
|
-
* > .-enter-x:nth-child(4),
|
|
101
|
-
* > .enter-x:nth-child(5),
|
|
102
|
-
* > .-enter-x:nth-child(5),
|
|
103
|
-
* > .enter-x:nth-child(6),
|
|
104
|
-
* > .-enter-x:nth-child(6),
|
|
105
|
-
* > .enter-x:nth-child(7),
|
|
106
|
-
* > .-enter-x:nth-child(7),
|
|
107
|
-
* > .enter-x:nth-child(8),
|
|
108
|
-
* > .-enter-x:nth-child(8) {
|
|
109
|
-
animation-duration: 0s !important;
|
|
110
|
-
animation-delay: 0s !important;
|
|
111
|
-
}
|