@aplus-frontend/ui 0.0.1-beta.19 → 0.0.1-beta.20
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/es/src/ap-layout/ap-info-layout/ap-info-layout.vue.mjs +44 -27
- package/es/src/ap-layout/style/ap-info-layout.css +32 -0
- package/es/src/base-button/index.d.ts +1 -1
- package/es/src/basic/index.d.ts +1 -1
- package/es/src/button/index.d.ts +1 -1
- package/es/src/config-provider/index.d.ts +1 -1
- package/es/src/container/index.d.ts +1 -1
- package/es/src/count-down/index.d.ts +1 -1
- package/es/src/description/index.d.ts +1 -1
- package/es/src/dropdown/index.d.ts +1 -1
- package/es/src/icon/index.d.ts +1 -1
- package/es/src/icon-picker/index.d.ts +1 -1
- package/es/src/scroll-bar/index.d.ts +2 -1
- package/es/src/strength-meter/index.d.ts +1 -1
- package/es/src/theme/ap-layout/ap-info-layout.css +32 -0
- package/es/src/transition/index.d.ts +1 -1
- package/lib/src/ap-layout/ap-info-layout/ap-info-layout.vue.js +1 -1
- package/lib/src/ap-layout/style/ap-info-layout.css +32 -0
- package/lib/src/base-button/index.d.ts +1 -1
- package/lib/src/basic/index.d.ts +1 -1
- package/lib/src/button/index.d.ts +1 -1
- package/lib/src/config-provider/index.d.ts +1 -1
- package/lib/src/container/index.d.ts +1 -1
- package/lib/src/count-down/index.d.ts +1 -1
- package/lib/src/description/index.d.ts +1 -1
- package/lib/src/dropdown/index.d.ts +1 -1
- package/lib/src/icon/index.d.ts +1 -1
- package/lib/src/icon-picker/index.d.ts +1 -1
- package/lib/src/scroll-bar/index.d.ts +2 -1
- package/lib/src/strength-meter/index.d.ts +1 -1
- package/lib/src/theme/ap-layout/ap-info-layout.css +32 -0
- package/lib/src/transition/index.d.ts +1 -1
- package/package.json +1 -1
- package/es/src/cropper/index.d.ts +0 -369
- package/es/src/modal/index.d.ts +0 -963
- package/lib/src/cropper/index.d.ts +0 -369
- package/lib/src/modal/index.d.ts +0 -963
|
@@ -1,44 +1,61 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { Divider as
|
|
1
|
+
import { defineComponent as C, computed as e, openBlock as l, createElementBlock as b, normalizeClass as t, createBlock as g, Teleport as h, createElementVNode as o, renderSlot as r, createVNode as y, unref as $ } from "vue";
|
|
2
|
+
import { Divider as B } from "ant-design-vue";
|
|
3
3
|
import "../style/ap-info-layout.css";
|
|
4
|
-
|
|
4
|
+
import "../../config-provider/index.mjs";
|
|
5
|
+
import { useNamespace as E } from "../../config-provider/hooks/use-namespace.mjs";
|
|
6
|
+
const _ = /* @__PURE__ */ C({
|
|
5
7
|
name: "ApInfoLayout",
|
|
6
8
|
__name: "ap-info-layout",
|
|
7
9
|
props: {
|
|
8
10
|
toEl: { default: "#microapp-fixed-header" },
|
|
9
11
|
disabled: { type: Boolean, default: !0 }
|
|
10
12
|
},
|
|
11
|
-
setup(
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
setup(H) {
|
|
14
|
+
const { b: n, be: d, bem: s } = E("info-layout"), i = e(() => [n("container")]), c = e(() => [n("header")]), u = e(() => [n("divider")]), p = e(() => [n("contant")]), m = e(() => [d("header", "contant")]), v = e(() => [s("header", "contant", "title")]), f = e(() => [s("header", "contant", "actions")]);
|
|
15
|
+
return (a, k) => (l(), b("div", {
|
|
16
|
+
class: t(i.value)
|
|
17
|
+
}, [
|
|
18
|
+
(l(), g(h, {
|
|
19
|
+
to: a.toEl,
|
|
20
|
+
disabled: a.disabled
|
|
16
21
|
}, [
|
|
17
|
-
o("div",
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
o("div", {
|
|
23
|
+
class: t(`${c.value}`)
|
|
24
|
+
}, [
|
|
25
|
+
o("div", {
|
|
26
|
+
class: t(m.value)
|
|
27
|
+
}, [
|
|
28
|
+
o("div", {
|
|
29
|
+
class: t(v.value)
|
|
30
|
+
}, [
|
|
31
|
+
r(a.$slots, "title")
|
|
32
|
+
], 2),
|
|
33
|
+
o("div", {
|
|
34
|
+
class: t(f.value)
|
|
35
|
+
}, [
|
|
36
|
+
r(a.$slots, "actions")
|
|
37
|
+
], 2)
|
|
38
|
+
], 2)
|
|
39
|
+
], 2)
|
|
27
40
|
], 8, ["to", "disabled"])),
|
|
28
|
-
o("div",
|
|
29
|
-
t(
|
|
30
|
-
|
|
41
|
+
o("div", {
|
|
42
|
+
class: t(u.value)
|
|
43
|
+
}, [
|
|
44
|
+
r(a.$slots, "divider", {}, () => [
|
|
45
|
+
y($(B), {
|
|
31
46
|
class: "ap-info-layout-divider",
|
|
32
47
|
dashed: ""
|
|
33
48
|
})
|
|
34
49
|
])
|
|
35
|
-
]),
|
|
36
|
-
o("div",
|
|
37
|
-
t(
|
|
38
|
-
|
|
39
|
-
|
|
50
|
+
], 2),
|
|
51
|
+
o("div", {
|
|
52
|
+
class: t(p.value)
|
|
53
|
+
}, [
|
|
54
|
+
r(a.$slots, "content")
|
|
55
|
+
], 2)
|
|
56
|
+
], 2));
|
|
40
57
|
}
|
|
41
58
|
});
|
|
42
59
|
export {
|
|
43
|
-
|
|
60
|
+
_ as default
|
|
44
61
|
};
|
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
.aplus-info-layout-container {
|
|
2
|
+
height: 100%;
|
|
3
|
+
background-color: #fff;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
}
|
|
6
|
+
.aplus-info-layout-header {
|
|
7
|
+
padding: 16px 24px;
|
|
8
|
+
border-bottom-color: #fff;
|
|
9
|
+
border-bottom-width: 1px;
|
|
10
|
+
}
|
|
11
|
+
.aplus-info-layout-header__contant {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
}
|
|
16
|
+
.aplus-info-layout-header__contant--title {
|
|
17
|
+
display: inline-block;
|
|
18
|
+
font-weight: 600;
|
|
19
|
+
font-size: 16px;
|
|
20
|
+
line-height: 1;
|
|
21
|
+
}
|
|
22
|
+
.aplus-info-layout-header__contant--actions {
|
|
23
|
+
display: inline-block;
|
|
24
|
+
}
|
|
25
|
+
.aplus-info-layout-divider {
|
|
26
|
+
padding-left: 24px;
|
|
27
|
+
padding-right: 24px;
|
|
28
|
+
}
|
|
29
|
+
.aplus-info-layout-contant {
|
|
30
|
+
padding: 24px;
|
|
31
|
+
border-bottom-color: #fff;
|
|
32
|
+
}
|
|
1
33
|
.ap-info-layout-container {
|
|
2
34
|
height: 100%;
|
|
3
35
|
background-color: #ffffff;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as ModalButton } from './modal-button.vue';
|
|
2
2
|
import { default as PopConfirmButton } from './pop-confirm-button.vue';
|
|
3
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
3
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
4
4
|
export * from './interface';
|
|
5
5
|
export { ModalButton, PopConfirmButton };
|
|
6
6
|
export declare const BaseButton: {
|
package/es/src/basic/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, VNode, RendererNode, RendererElement, VNodeChild, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, VNode, RendererNode, RendererElement, VNodeChild, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { TooltipPlacement } from 'ant-design-vue/es/tooltip';
|
|
3
3
|
export * from './interface';
|
|
4
4
|
export declare const BasicHelp: {
|
package/es/src/button/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export declare const Button: {
|
|
3
3
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
4
4
|
type: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { default as __DTS_DEFAULT_0__ } from 'ant-design-vue/es/config-provider/renderEmpty';
|
|
3
3
|
import { TransformCellTextProps } from 'ant-design-vue/es/table/interface';
|
|
4
4
|
import { CSPConfig } from 'ant-design-vue/es/config-provider';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const ScrollContainer: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const CountdownButton: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { CollapseContainerOptions } from '..';
|
|
3
3
|
import { DescItem } from './interface';
|
|
4
4
|
export * from './interface';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { DropMenu } from './interface';
|
|
3
3
|
import { Recordable } from '../type';
|
|
4
4
|
export * from './interface';
|
package/es/src/icon/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const Icon: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const IconPicker: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType,
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { StyleValue } from '../type';
|
|
3
|
+
import { Ref } from '@vue/reactivity';
|
|
3
4
|
export * from './interface';
|
|
4
5
|
export declare const Scrollbar: {
|
|
5
6
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const StrengthMeter: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.aplus-info-layout-container {
|
|
2
|
+
height: 100%;
|
|
3
|
+
background-color: #fff;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
}
|
|
6
|
+
.aplus-info-layout-header {
|
|
7
|
+
padding: 16px 24px;
|
|
8
|
+
border-bottom-color: #fff;
|
|
9
|
+
border-bottom-width: 1px;
|
|
10
|
+
}
|
|
11
|
+
.aplus-info-layout-header__contant {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
}
|
|
16
|
+
.aplus-info-layout-header__contant--title {
|
|
17
|
+
display: inline-block;
|
|
18
|
+
font-weight: 600;
|
|
19
|
+
font-size: 16px;
|
|
20
|
+
line-height: 1;
|
|
21
|
+
}
|
|
22
|
+
.aplus-info-layout-header__contant--actions {
|
|
23
|
+
display: inline-block;
|
|
24
|
+
}
|
|
25
|
+
.aplus-info-layout-divider {
|
|
26
|
+
padding-left: 24px;
|
|
27
|
+
padding-right: 24px;
|
|
28
|
+
}
|
|
29
|
+
.aplus-info-layout-contant {
|
|
30
|
+
padding: 24px;
|
|
31
|
+
border-bottom-color: #fff;
|
|
32
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefineComponent, PropType, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
1
|
+
import { DefineComponent, PropType, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from '@vue/runtime-core';
|
|
2
2
|
export { default as CollapseTransition } from './collapse-transition.vue';
|
|
3
3
|
export declare const FadeTransition: DefineComponent<{
|
|
4
4
|
group: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),m=require("ant-design-vue");require("../style/ap-info-layout.css");require("../../config-provider/index.js");const p=require("../../config-provider/hooks/use-namespace.js"),v=e.defineComponent({name:"ApInfoLayout",__name:"ap-info-layout",props:{toEl:{default:"#microapp-fixed-header"},disabled:{type:Boolean,default:!0}},setup(C){const{b:a,be:n,bem:o}=p.useNamespace("info-layout"),r=e.computed(()=>[a("container")]),l=e.computed(()=>[a("header")]),s=e.computed(()=>[a("divider")]),d=e.computed(()=>[a("contant")]),i=e.computed(()=>[n("header","contant")]),c=e.computed(()=>[o("header","contant","title")]),u=e.computed(()=>[o("header","contant","actions")]);return(t,f)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(r.value)},[(e.openBlock(),e.createBlock(e.Teleport,{to:t.toEl,disabled:t.disabled},[e.createElementVNode("div",{class:e.normalizeClass(`${l.value}`)},[e.createElementVNode("div",{class:e.normalizeClass(i.value)},[e.createElementVNode("div",{class:e.normalizeClass(c.value)},[e.renderSlot(t.$slots,"title")],2),e.createElementVNode("div",{class:e.normalizeClass(u.value)},[e.renderSlot(t.$slots,"actions")],2)],2)],2)],8,["to","disabled"])),e.createElementVNode("div",{class:e.normalizeClass(s.value)},[e.renderSlot(t.$slots,"divider",{},()=>[e.createVNode(e.unref(m.Divider),{class:"ap-info-layout-divider",dashed:""})])],2),e.createElementVNode("div",{class:e.normalizeClass(d.value)},[e.renderSlot(t.$slots,"content")],2)],2))}});exports.default=v;
|
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
.aplus-info-layout-container {
|
|
2
|
+
height: 100%;
|
|
3
|
+
background-color: #fff;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
}
|
|
6
|
+
.aplus-info-layout-header {
|
|
7
|
+
padding: 16px 24px;
|
|
8
|
+
border-bottom-color: #fff;
|
|
9
|
+
border-bottom-width: 1px;
|
|
10
|
+
}
|
|
11
|
+
.aplus-info-layout-header__contant {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
}
|
|
16
|
+
.aplus-info-layout-header__contant--title {
|
|
17
|
+
display: inline-block;
|
|
18
|
+
font-weight: 600;
|
|
19
|
+
font-size: 16px;
|
|
20
|
+
line-height: 1;
|
|
21
|
+
}
|
|
22
|
+
.aplus-info-layout-header__contant--actions {
|
|
23
|
+
display: inline-block;
|
|
24
|
+
}
|
|
25
|
+
.aplus-info-layout-divider {
|
|
26
|
+
padding-left: 24px;
|
|
27
|
+
padding-right: 24px;
|
|
28
|
+
}
|
|
29
|
+
.aplus-info-layout-contant {
|
|
30
|
+
padding: 24px;
|
|
31
|
+
border-bottom-color: #fff;
|
|
32
|
+
}
|
|
1
33
|
.ap-info-layout-container {
|
|
2
34
|
height: 100%;
|
|
3
35
|
background-color: #ffffff;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as ModalButton } from './modal-button.vue';
|
|
2
2
|
import { default as PopConfirmButton } from './pop-confirm-button.vue';
|
|
3
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
3
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
4
4
|
export * from './interface';
|
|
5
5
|
export { ModalButton, PopConfirmButton };
|
|
6
6
|
export declare const BaseButton: {
|
package/lib/src/basic/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, VNode, RendererNode, RendererElement, VNodeChild, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, VNode, RendererNode, RendererElement, VNodeChild, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { TooltipPlacement } from 'ant-design-vue/es/tooltip';
|
|
3
3
|
export * from './interface';
|
|
4
4
|
export declare const BasicHelp: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export declare const Button: {
|
|
3
3
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
4
4
|
type: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { default as __DTS_DEFAULT_0__ } from 'ant-design-vue/es/config-provider/renderEmpty';
|
|
3
3
|
import { TransformCellTextProps } from 'ant-design-vue/es/table/interface';
|
|
4
4
|
import { CSPConfig } from 'ant-design-vue/es/config-provider';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const ScrollContainer: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const CountdownButton: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { CollapseContainerOptions } from '..';
|
|
3
3
|
import { DescItem } from './interface';
|
|
4
4
|
export * from './interface';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { DropMenu } from './interface';
|
|
3
3
|
import { Recordable } from '../type';
|
|
4
4
|
export * from './interface';
|
package/lib/src/icon/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const Icon: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const IconPicker: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType,
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
import { StyleValue } from '../type';
|
|
3
|
+
import { Ref } from '@vue/reactivity';
|
|
3
4
|
export * from './interface';
|
|
4
5
|
export declare const Scrollbar: {
|
|
5
6
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from 'vue';
|
|
1
|
+
import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase, Plugin } from '@vue/runtime-core';
|
|
2
2
|
export * from './interface';
|
|
3
3
|
export declare const StrengthMeter: {
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.aplus-info-layout-container {
|
|
2
|
+
height: 100%;
|
|
3
|
+
background-color: #fff;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
}
|
|
6
|
+
.aplus-info-layout-header {
|
|
7
|
+
padding: 16px 24px;
|
|
8
|
+
border-bottom-color: #fff;
|
|
9
|
+
border-bottom-width: 1px;
|
|
10
|
+
}
|
|
11
|
+
.aplus-info-layout-header__contant {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: space-between;
|
|
15
|
+
}
|
|
16
|
+
.aplus-info-layout-header__contant--title {
|
|
17
|
+
display: inline-block;
|
|
18
|
+
font-weight: 600;
|
|
19
|
+
font-size: 16px;
|
|
20
|
+
line-height: 1;
|
|
21
|
+
}
|
|
22
|
+
.aplus-info-layout-header__contant--actions {
|
|
23
|
+
display: inline-block;
|
|
24
|
+
}
|
|
25
|
+
.aplus-info-layout-divider {
|
|
26
|
+
padding-left: 24px;
|
|
27
|
+
padding-right: 24px;
|
|
28
|
+
}
|
|
29
|
+
.aplus-info-layout-contant {
|
|
30
|
+
padding: 24px;
|
|
31
|
+
border-bottom-color: #fff;
|
|
32
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefineComponent, PropType, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
1
|
+
import { DefineComponent, PropType, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from '@vue/runtime-core';
|
|
2
2
|
export { default as CollapseTransition } from './collapse-transition.vue';
|
|
3
3
|
export declare const FadeTransition: DefineComponent<{
|
|
4
4
|
group: {
|