@hg2/dataview-basic 2.0.0
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/componentEntries.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsDate/config.d.ts +33 -0
- package/dist/components/Informations/Inputs/InputsDate/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsDate/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsDate/interact.d.ts +47 -0
- package/dist/components/Informations/Inputs/InputsInput/config.d.ts +27 -0
- package/dist/components/Informations/Inputs/InputsInput/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsInput/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsInput/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/InputsPagination/config.d.ts +31 -0
- package/dist/components/Informations/Inputs/InputsPagination/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsPagination/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsPagination/interact.d.ts +9 -0
- package/dist/components/Informations/Inputs/InputsSelect/config.d.ts +33 -0
- package/dist/components/Informations/Inputs/InputsSelect/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsSelect/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsSelect/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/InputsTab/config.d.ts +35 -0
- package/dist/components/Informations/Inputs/InputsTab/index.d.ts +2 -0
- package/dist/components/Informations/Inputs/InputsTab/index.vue.d.ts +14 -0
- package/dist/components/Informations/Inputs/InputsTab/interact.d.ts +8 -0
- package/dist/components/Informations/Inputs/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextBarrage/config.d.ts +56 -0
- package/dist/components/Informations/Texts/TextBarrage/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextCommon/config.d.ts +56 -0
- package/dist/components/Informations/Texts/TextCommon/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextGradient/config.d.ts +24 -0
- package/dist/components/Informations/Texts/TextGradient/index.d.ts +2 -0
- package/dist/components/Informations/Texts/TextGradient/index.vue.d.ts +14 -0
- package/dist/components/Informations/Texts/index.d.ts +2 -0
- package/dist/components/Informations/index.d.ts +1 -0
- package/dist/components/Tables/Tables/TableList/config.d.ts +46 -0
- package/dist/components/Tables/Tables/TableList/data.json.d.ts +17 -0
- package/dist/components/Tables/Tables/TableList/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TableList/index.vue.d.ts +14 -0
- package/dist/components/Tables/Tables/TableScrollBoard/config.d.ts +34 -0
- package/dist/components/Tables/Tables/TableScrollBoard/data.json.d.ts +15 -0
- package/dist/components/Tables/Tables/TableScrollBoard/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TableScrollBoard/index.vue.d.ts +14 -0
- package/dist/components/Tables/Tables/TablesBasic/config.d.ts +81 -0
- package/dist/components/Tables/Tables/TablesBasic/data.json.d.ts +63 -0
- package/dist/components/Tables/Tables/TablesBasic/index.d.ts +2 -0
- package/dist/components/Tables/Tables/TablesBasic/index.vue.d.ts +18 -0
- package/dist/components/Tables/Tables/TablesBasic/public.d.ts +2 -0
- package/dist/components/Tables/Tables/index.d.ts +7 -0
- package/dist/components/Tables/index.d.ts +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +9698 -0
- package/dist/index.js.map +1 -0
- package/dist/public/components.d.ts +37 -0
- package/dist/style.css +1 -0
- package/package.json +31 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
import { ComponentInteractEventEnum, DefaultTypeEnum, DifferUnitEnum } from './interact';
|
|
4
|
+
export declare const option: {
|
|
5
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
6
|
+
isPanel: number;
|
|
7
|
+
dataset: number | number[] | null;
|
|
8
|
+
defaultType: DefaultTypeEnum;
|
|
9
|
+
differUnit: DifferUnitEnum[];
|
|
10
|
+
differValue: number[];
|
|
11
|
+
};
|
|
12
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
13
|
+
key: string;
|
|
14
|
+
attr: {
|
|
15
|
+
w: number;
|
|
16
|
+
h: number;
|
|
17
|
+
zIndex: number;
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
offsetX: number;
|
|
21
|
+
offsetY: number;
|
|
22
|
+
};
|
|
23
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
24
|
+
interactActions: import('../../../../../../dataview-core/src/enums/eventEnum').InteractActionsType[];
|
|
25
|
+
option: {
|
|
26
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
27
|
+
isPanel: number;
|
|
28
|
+
dataset: number | number[] | null;
|
|
29
|
+
defaultType: DefaultTypeEnum;
|
|
30
|
+
differUnit: DifferUnitEnum[];
|
|
31
|
+
differValue: number[];
|
|
32
|
+
};
|
|
33
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
chartConfig: {
|
|
5
|
+
type: PropType<CreateComponentType>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
chartConfig: {
|
|
10
|
+
type: PropType<CreateComponentType>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { InteractActionsType } from '../../../../../../dataview-core/src/enums/eventEnum';
|
|
2
|
+
export declare enum ComponentInteractEventEnum {
|
|
3
|
+
DATE = "date",
|
|
4
|
+
DATE_TIME = "datetime",
|
|
5
|
+
DATE_RANGE = "daterange",
|
|
6
|
+
DATE_TIME_RANGE = "datetimerange",
|
|
7
|
+
MONTH = "month",
|
|
8
|
+
MONTH_RANGE = "monthrange",
|
|
9
|
+
YEAR = "year",
|
|
10
|
+
YEAR_RANGE = "yearrange",
|
|
11
|
+
QUARTER = "quarter",
|
|
12
|
+
QUARTER_RANGE = "quarterrange"
|
|
13
|
+
}
|
|
14
|
+
export declare enum ComponentInteractParamsEnum {
|
|
15
|
+
DATE = "date",
|
|
16
|
+
DATE_START = "dateStart",
|
|
17
|
+
DATE_END = "dateEnd",
|
|
18
|
+
DATE_RANGE = "daterange"
|
|
19
|
+
}
|
|
20
|
+
export declare enum DefaultTypeEnum {
|
|
21
|
+
NONE = "none",
|
|
22
|
+
STATIC = "static",
|
|
23
|
+
DYNAMIC = "dynamic"
|
|
24
|
+
}
|
|
25
|
+
export declare enum DifferUnitEnum {
|
|
26
|
+
DAY = "d",
|
|
27
|
+
WEEK = "w",
|
|
28
|
+
MONTH = "M",
|
|
29
|
+
QUARTER = "Q",
|
|
30
|
+
YEAR = "y",
|
|
31
|
+
HOUR = "h",
|
|
32
|
+
MINUTE = "m",
|
|
33
|
+
SECOND = "s",
|
|
34
|
+
MILLISECOND = "ms"
|
|
35
|
+
}
|
|
36
|
+
export declare const DifferUnitObject: {
|
|
37
|
+
d: string;
|
|
38
|
+
w: string;
|
|
39
|
+
M: string;
|
|
40
|
+
Q: string;
|
|
41
|
+
y: string;
|
|
42
|
+
h: string;
|
|
43
|
+
m: string;
|
|
44
|
+
s: string;
|
|
45
|
+
ms: string;
|
|
46
|
+
};
|
|
47
|
+
export declare const interactActions: InteractActionsType[];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
import { ComponentInteractEventEnum } from './interact';
|
|
4
|
+
export declare const option: {
|
|
5
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
6
|
+
inputValue: string;
|
|
7
|
+
dataset: string;
|
|
8
|
+
};
|
|
9
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
10
|
+
key: string;
|
|
11
|
+
attr: {
|
|
12
|
+
w: number;
|
|
13
|
+
h: number;
|
|
14
|
+
zIndex: number;
|
|
15
|
+
x: number;
|
|
16
|
+
y: number;
|
|
17
|
+
offsetX: number;
|
|
18
|
+
offsetY: number;
|
|
19
|
+
};
|
|
20
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
21
|
+
interactActions: import('../../../../../../dataview-core/src/enums/eventEnum').InteractActionsType[];
|
|
22
|
+
option: {
|
|
23
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
24
|
+
inputValue: string;
|
|
25
|
+
dataset: string;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
chartConfig: {
|
|
5
|
+
type: PropType<CreateComponentType>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
chartConfig: {
|
|
10
|
+
type: PropType<CreateComponentType>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { InteractActionsType } from '../../../../../../dataview-core/src/enums/eventEnum';
|
|
2
|
+
export declare enum ComponentInteractEventEnum {
|
|
3
|
+
DATA = "data"
|
|
4
|
+
}
|
|
5
|
+
export declare enum ComponentInteractParamsEnum {
|
|
6
|
+
DATA = "data"
|
|
7
|
+
}
|
|
8
|
+
export declare const interactActions: InteractActionsType[];
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
import { ComponentInteractEventEnum } from './interact';
|
|
4
|
+
export declare const option: {
|
|
5
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
6
|
+
pageValue: number;
|
|
7
|
+
sizeValue: number[];
|
|
8
|
+
pageSize: number;
|
|
9
|
+
dataset: number;
|
|
10
|
+
};
|
|
11
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
12
|
+
key: string;
|
|
13
|
+
attr: {
|
|
14
|
+
w: number;
|
|
15
|
+
h: number;
|
|
16
|
+
zIndex: number;
|
|
17
|
+
x: number;
|
|
18
|
+
y: number;
|
|
19
|
+
offsetX: number;
|
|
20
|
+
offsetY: number;
|
|
21
|
+
};
|
|
22
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
23
|
+
interactActions: import('../../../../../../dataview-core/src/enums/eventEnum').InteractActionsType[];
|
|
24
|
+
option: {
|
|
25
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
26
|
+
pageValue: number;
|
|
27
|
+
sizeValue: number[];
|
|
28
|
+
pageSize: number;
|
|
29
|
+
dataset: number;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
chartConfig: {
|
|
5
|
+
type: PropType<CreateComponentType>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
chartConfig: {
|
|
10
|
+
type: PropType<CreateComponentType>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { InteractActionsType } from '../../../../../../dataview-core/src/enums/eventEnum';
|
|
2
|
+
export declare enum ComponentInteractEventEnum {
|
|
3
|
+
DATA = "data"
|
|
4
|
+
}
|
|
5
|
+
export declare enum ComponentInteractParamsEnum {
|
|
6
|
+
DATA = "data",
|
|
7
|
+
DATA2 = "data2"
|
|
8
|
+
}
|
|
9
|
+
export declare const interactActions: InteractActionsType[];
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
import { ComponentInteractEventEnum } from './interact';
|
|
4
|
+
export declare const option: {
|
|
5
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
6
|
+
selectValue: string;
|
|
7
|
+
dataset: {
|
|
8
|
+
label: string;
|
|
9
|
+
value: string;
|
|
10
|
+
}[];
|
|
11
|
+
};
|
|
12
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
13
|
+
key: string;
|
|
14
|
+
attr: {
|
|
15
|
+
w: number;
|
|
16
|
+
h: number;
|
|
17
|
+
zIndex: number;
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
offsetX: number;
|
|
21
|
+
offsetY: number;
|
|
22
|
+
};
|
|
23
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
24
|
+
interactActions: import('../../../../../../dataview-core/src/enums/eventEnum').InteractActionsType[];
|
|
25
|
+
option: {
|
|
26
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
27
|
+
selectValue: string;
|
|
28
|
+
dataset: {
|
|
29
|
+
label: string;
|
|
30
|
+
value: string;
|
|
31
|
+
}[];
|
|
32
|
+
};
|
|
33
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
chartConfig: {
|
|
5
|
+
type: PropType<CreateComponentType>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
chartConfig: {
|
|
10
|
+
type: PropType<CreateComponentType>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { InteractActionsType } from '../../../../../../dataview-core/src/enums/eventEnum';
|
|
2
|
+
export declare enum ComponentInteractEventEnum {
|
|
3
|
+
DATA = "data"
|
|
4
|
+
}
|
|
5
|
+
export declare enum ComponentInteractParamsEnum {
|
|
6
|
+
DATA = "data"
|
|
7
|
+
}
|
|
8
|
+
export declare const interactActions: InteractActionsType[];
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
import { ComponentInteractEventEnum } from './interact';
|
|
4
|
+
export declare const option: {
|
|
5
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
6
|
+
tabLabel: string;
|
|
7
|
+
tabType: string;
|
|
8
|
+
dataset: {
|
|
9
|
+
label: string;
|
|
10
|
+
value: string;
|
|
11
|
+
}[];
|
|
12
|
+
};
|
|
13
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
14
|
+
key: string;
|
|
15
|
+
attr: {
|
|
16
|
+
w: number;
|
|
17
|
+
h: number;
|
|
18
|
+
zIndex: number;
|
|
19
|
+
x: number;
|
|
20
|
+
y: number;
|
|
21
|
+
offsetX: number;
|
|
22
|
+
offsetY: number;
|
|
23
|
+
};
|
|
24
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
25
|
+
interactActions: import('../../../../../../dataview-core/src/enums/eventEnum').InteractActionsType[];
|
|
26
|
+
option: {
|
|
27
|
+
componentInteractEventKey: ComponentInteractEventEnum;
|
|
28
|
+
tabLabel: string;
|
|
29
|
+
tabType: string;
|
|
30
|
+
dataset: {
|
|
31
|
+
label: string;
|
|
32
|
+
value: string;
|
|
33
|
+
}[];
|
|
34
|
+
};
|
|
35
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
chartConfig: {
|
|
5
|
+
type: PropType<CreateComponentType>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
chartConfig: {
|
|
10
|
+
type: PropType<CreateComponentType>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { InteractActionsType } from '../../../../../../dataview-core/src/enums/eventEnum';
|
|
2
|
+
export declare enum ComponentInteractEventEnum {
|
|
3
|
+
DATA = "data"
|
|
4
|
+
}
|
|
5
|
+
export declare enum ComponentInteractParamsEnum {
|
|
6
|
+
DATA = "data"
|
|
7
|
+
}
|
|
8
|
+
export declare const interactActions: InteractActionsType[];
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
export declare enum FontWeightEnum {
|
|
4
|
+
NORMAL = "\u5E38\u89C4",
|
|
5
|
+
BOLD = "\u52A0\u7C97"
|
|
6
|
+
}
|
|
7
|
+
export declare const FontWeightObject: {
|
|
8
|
+
常规: string;
|
|
9
|
+
加粗: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const option: {
|
|
12
|
+
dataset: string;
|
|
13
|
+
fontSize: number;
|
|
14
|
+
fontColor: string;
|
|
15
|
+
fontWeight: string;
|
|
16
|
+
letterSpacing: number;
|
|
17
|
+
showShadow: boolean;
|
|
18
|
+
boxShadow: string;
|
|
19
|
+
hShadow: number;
|
|
20
|
+
vShadow: number;
|
|
21
|
+
blurShadow: number;
|
|
22
|
+
colorShadow: string;
|
|
23
|
+
animationTime: number;
|
|
24
|
+
animationSpeed: number;
|
|
25
|
+
};
|
|
26
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
27
|
+
key: string;
|
|
28
|
+
attr: {
|
|
29
|
+
w: number;
|
|
30
|
+
h: number;
|
|
31
|
+
zIndex: number;
|
|
32
|
+
x: number;
|
|
33
|
+
y: number;
|
|
34
|
+
offsetX: number;
|
|
35
|
+
offsetY: number;
|
|
36
|
+
};
|
|
37
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
38
|
+
option: {
|
|
39
|
+
dataset: string;
|
|
40
|
+
fontSize: number;
|
|
41
|
+
fontColor: string;
|
|
42
|
+
fontWeight: string;
|
|
43
|
+
letterSpacing: number;
|
|
44
|
+
showShadow: boolean;
|
|
45
|
+
boxShadow: string;
|
|
46
|
+
hShadow: number;
|
|
47
|
+
vShadow: number;
|
|
48
|
+
blurShadow: number;
|
|
49
|
+
colorShadow: string;
|
|
50
|
+
animationTime: number;
|
|
51
|
+
animationSpeed: number;
|
|
52
|
+
};
|
|
53
|
+
preview: {
|
|
54
|
+
overFlowHidden: boolean;
|
|
55
|
+
};
|
|
56
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
export declare enum WritingModeEnum {
|
|
4
|
+
HORIZONTAL = "\u6C34\u5E73",
|
|
5
|
+
VERTICAL = "\u5782\u76F4"
|
|
6
|
+
}
|
|
7
|
+
export declare const WritingModeObject: {
|
|
8
|
+
水平: string;
|
|
9
|
+
垂直: string;
|
|
10
|
+
};
|
|
11
|
+
export declare enum FontWeightEnum {
|
|
12
|
+
NORMAL = "\u5E38\u89C4",
|
|
13
|
+
BOLD = "\u52A0\u7C97"
|
|
14
|
+
}
|
|
15
|
+
export declare const FontWeightObject: {
|
|
16
|
+
常规: string;
|
|
17
|
+
加粗: string;
|
|
18
|
+
};
|
|
19
|
+
export declare const option: {
|
|
20
|
+
link: string;
|
|
21
|
+
linkHead: string;
|
|
22
|
+
dataset: string;
|
|
23
|
+
fontSize: number;
|
|
24
|
+
fontColor: string;
|
|
25
|
+
paddingX: number;
|
|
26
|
+
paddingY: number;
|
|
27
|
+
textAlign: string;
|
|
28
|
+
fontWeight: string;
|
|
29
|
+
borderWidth: number;
|
|
30
|
+
borderColor: string;
|
|
31
|
+
borderRadius: number;
|
|
32
|
+
letterSpacing: number;
|
|
33
|
+
writingMode: string;
|
|
34
|
+
backgroundColor: string;
|
|
35
|
+
};
|
|
36
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
37
|
+
key: string;
|
|
38
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
39
|
+
option: {
|
|
40
|
+
link: string;
|
|
41
|
+
linkHead: string;
|
|
42
|
+
dataset: string;
|
|
43
|
+
fontSize: number;
|
|
44
|
+
fontColor: string;
|
|
45
|
+
paddingX: number;
|
|
46
|
+
paddingY: number;
|
|
47
|
+
textAlign: string;
|
|
48
|
+
fontWeight: string;
|
|
49
|
+
borderWidth: number;
|
|
50
|
+
borderColor: string;
|
|
51
|
+
borderRadius: number;
|
|
52
|
+
letterSpacing: number;
|
|
53
|
+
writingMode: string;
|
|
54
|
+
backgroundColor: string;
|
|
55
|
+
};
|
|
56
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
export declare const option: {
|
|
4
|
+
dataset: string;
|
|
5
|
+
size: number;
|
|
6
|
+
gradient: {
|
|
7
|
+
from: string;
|
|
8
|
+
to: string;
|
|
9
|
+
deg: number;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
13
|
+
key: string;
|
|
14
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
15
|
+
option: {
|
|
16
|
+
dataset: string;
|
|
17
|
+
size: number;
|
|
18
|
+
gradient: {
|
|
19
|
+
from: string;
|
|
20
|
+
to: string;
|
|
21
|
+
deg: number;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
chartConfig: {
|
|
5
|
+
type: PropType<CreateComponentType>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
chartConfig: {
|
|
10
|
+
type: PropType<CreateComponentType>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../../../dataview-core/src/packages/components/Informations/index.d'
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { PublicConfigClass } from '../../../../../../dataview-core/src/packages/public';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
export declare const option: {
|
|
4
|
+
dataset: {
|
|
5
|
+
name: string;
|
|
6
|
+
value: number;
|
|
7
|
+
}[];
|
|
8
|
+
rowNum: number;
|
|
9
|
+
waitTime: number;
|
|
10
|
+
unit: string;
|
|
11
|
+
sort: boolean;
|
|
12
|
+
color: string;
|
|
13
|
+
textColor: string;
|
|
14
|
+
borderColor: string;
|
|
15
|
+
carousel: string;
|
|
16
|
+
indexFontSize: number;
|
|
17
|
+
leftFontSize: number;
|
|
18
|
+
rightFontSize: number;
|
|
19
|
+
valueFormatter(item: {
|
|
20
|
+
value: any;
|
|
21
|
+
}): any;
|
|
22
|
+
};
|
|
23
|
+
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
24
|
+
key: string;
|
|
25
|
+
chartConfig: import('../../../../../../dataview-core/src/packages/index.d').ConfigType;
|
|
26
|
+
option: {
|
|
27
|
+
dataset: {
|
|
28
|
+
name: string;
|
|
29
|
+
value: number;
|
|
30
|
+
}[];
|
|
31
|
+
rowNum: number;
|
|
32
|
+
waitTime: number;
|
|
33
|
+
unit: string;
|
|
34
|
+
sort: boolean;
|
|
35
|
+
color: string;
|
|
36
|
+
textColor: string;
|
|
37
|
+
borderColor: string;
|
|
38
|
+
carousel: string;
|
|
39
|
+
indexFontSize: number;
|
|
40
|
+
leftFontSize: number;
|
|
41
|
+
rightFontSize: number;
|
|
42
|
+
valueFormatter(item: {
|
|
43
|
+
value: any;
|
|
44
|
+
}): any;
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: [
|
|
2
|
+
{ "name": "荣成", "value": 26700 },
|
|
3
|
+
{ "name": "河南", "value": 20700 },
|
|
4
|
+
{ "name": "河北", "value": 18700 },
|
|
5
|
+
{ "name": "徐州", "value": 17800 },
|
|
6
|
+
{ "name": "漯河", "value": 16756 },
|
|
7
|
+
{ "name": "三门峡", "value": 12343 },
|
|
8
|
+
{ "name": "郑州", "value": 9822 },
|
|
9
|
+
{ "name": "周口", "value": 8912 },
|
|
10
|
+
{ "name": "濮阳", "value": 6834 },
|
|
11
|
+
{ "name": "信阳", "value": 5875 },
|
|
12
|
+
{ "name": "新乡", "value": 3832 },
|
|
13
|
+
{ "name": "大同", "value": 1811 }
|
|
14
|
+
]
|
|
15
|
+
;
|
|
16
|
+
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CreateComponentType } from '../../../../../../dataview-core/src/packages/index.d';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
chartConfig: {
|
|
5
|
+
type: PropType<CreateComponentType>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9
|
+
chartConfig: {
|
|
10
|
+
type: PropType<CreateComponentType>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
|
+
export default _default;
|