@ecan-bi/datav 1.1.7 → 1.1.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/dist/style.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! @ecan-bi/datav@1.1.7 */
1
+ /*! @ecan-bi/datav@1.1.9 */
2
2
  x-vue-echarts{display:block;width:100%;height:100%}
3
3
  .spin-wrapper {
4
4
  position: relative;
@@ -248,6 +248,18 @@ x-vue-echarts{display:block;width:100%;height:100%}
248
248
  [datav-theme='darkBlue'] .ecan-date-picker-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-in-view) .ant-picker-cell-inner,
249
249
  [datav-theme='darkBlue'] .ecan-date-picker-dropdown .ant-picker-cell:hover:not(.ant-picker-cell-selected):not(.ant-picker-cell-range-start):not(.ant-picker-cell-range-end):not(.ant-picker-cell-range-hover-start):not(.ant-picker-cell-range-hover-end) .ant-picker-cell-inner {
250
250
  background: #1890ff;
251
+ color: #ffffff;
252
+ }
253
+ [datav-theme='darkBlue'] .ecan-date-picker-dropdown .ant-picker-time-panel-column > li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner {
254
+ color: #69befa;
255
+ }
256
+ [datav-theme='darkBlue'] .ecan-date-picker-dropdown .ant-picker-time-panel-column > li.ant-picker-time-panel-cell .ant-picker-time-panel-cell-inner:hover {
257
+ background: #1890ff;
258
+ color: #ffffff;
259
+ }
260
+ [datav-theme='darkBlue'] .ecan-date-picker-dropdown .ant-picker-time-panel-column > li.ant-picker-time-panel-cell-selected .ant-picker-time-panel-cell-inner {
261
+ background: #1890ff;
262
+ color: #ffffff;
251
263
  }
252
264
  .select[data-v-dd2bcf63] {
253
265
  width: 100%;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecan-bi/datav",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "main": "./dist/index.umd.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./types/index.d.ts",
@@ -538,7 +538,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
538
538
  trigger: string;
539
539
  show: any;
540
540
  formatter: (params: any) => string;
541
- valueFormatter(value: string): string;
542
541
  textStyle: {
543
542
  color: any;
544
543
  };
@@ -538,7 +538,6 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
538
538
  trigger: string;
539
539
  show: any;
540
540
  formatter: (params: any) => string;
541
- valueFormatter(value: string): string;
542
541
  textStyle: {
543
542
  color: any;
544
543
  };
@@ -7,10 +7,7 @@ export declare type Events = Event[];
7
7
  export declare type RequestMethod = 'get' | 'post' | 'put' | 'delete' | 'head';
8
8
  export interface RequestParam {
9
9
  key: string;
10
- value: {
11
- id: string;
12
- prop: string;
13
- } | string;
10
+ value: any;
14
11
  }
15
12
  export declare type RequestParams = RequestParam[];
16
13
  export interface Props {