g-ui-web 0.10.13 → 0.10.15

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/lib/style.css.gz CHANGED
Binary file
@@ -41,14 +41,10 @@ interface configProps {
41
41
  baseURL: string;
42
42
  sysCode: string;
43
43
  appType: string;
44
+ tokenName: string;
44
45
  token: string;
45
46
  }
46
- export declare const setBaseConfig: (config?: configProps) => {
47
- baseURL: string;
48
- sysCode: string;
49
- appType: string;
50
- token: string;
51
- };
52
- export declare const getBaseConfig: () => any;
47
+ export declare const setAjaxConfig: (config?: configProps) => void;
48
+ export declare const getAjaxConfig: () => any;
53
49
  export declare const typeofXAxis: (item: any) => "function" | "string" | "number" | "object" | "boolean" | "undefined" | "bigint" | "symbol" | "null";
54
50
  export {};
@@ -115,5 +115,15 @@ declare const theme: {
115
115
  tooltipFill: string;
116
116
  tableHeaderBgColor: string;
117
117
  tableHeaderTextColor: string;
118
+ rankingRed: string;
119
+ rankingBlack: string;
120
+ cupTitleColor: string;
121
+ cupNameColor: string;
122
+ cupTextColor: string;
123
+ cupChangeTextColor: string;
124
+ cupRateTextColor: string;
125
+ cupTHeadTextColor: string;
126
+ cupTHeadBgColor: string;
127
+ cupTbodyBgColor: string;
118
128
  };
119
129
  export default theme;
@@ -112,5 +112,15 @@ declare const theme: {
112
112
  tooltipFill: string;
113
113
  tableHeaderBgColor: string;
114
114
  tableHeaderTextColor: string;
115
+ rankingRed: string;
116
+ rankingBlack: string;
117
+ cupTitleColor: string;
118
+ cupNameColor: string;
119
+ cupTextColor: string;
120
+ cupChangeTextColor: string;
121
+ cupRateTextColor: string;
122
+ cupTHeadTextColor: string;
123
+ cupTHeadBgColor: string;
124
+ cupTbodyBgColor: string;
115
125
  };
116
126
  export default theme;
@@ -112,5 +112,15 @@ declare const theme: {
112
112
  tooltipFill: string;
113
113
  tableHeaderBgColor: string;
114
114
  tableHeaderTextColor: string;
115
+ rankingRed: string;
116
+ rankingBlack: string;
117
+ cupTitleColor: string;
118
+ cupNameColor: string;
119
+ cupTextColor: string;
120
+ cupChangeTextColor: string;
121
+ cupRateTextColor: string;
122
+ cupTHeadTextColor: string;
123
+ cupTHeadBgColor: string;
124
+ cupTbodyBgColor: string;
115
125
  };
116
126
  export default theme;
@@ -115,5 +115,15 @@ declare const theme: {
115
115
  tooltipFill: string;
116
116
  tableHeaderBgColor: string;
117
117
  tableHeaderTextColor: string;
118
+ rankingRed: string;
119
+ rankingBlack: string;
120
+ cupTitleColor: string;
121
+ cupNameColor: string;
122
+ cupTextColor: string;
123
+ cupChangeTextColor: string;
124
+ cupRateTextColor: string;
125
+ cupTHeadTextColor: string;
126
+ cupTHeadBgColor: string;
127
+ cupTbodyBgColor: string;
118
128
  };
119
129
  export default theme;
@@ -112,5 +112,15 @@ declare const theme: {
112
112
  tooltipFill: string;
113
113
  tableHeaderBgColor: string;
114
114
  tableHeaderTextColor: string;
115
+ rankingRed: string;
116
+ rankingBlack: string;
117
+ cupTitleColor: string;
118
+ cupNameColor: string;
119
+ cupTextColor: string;
120
+ cupChangeTextColor: string;
121
+ cupRateTextColor: string;
122
+ cupTHeadTextColor: string;
123
+ cupTHeadBgColor: string;
124
+ cupTbodyBgColor: string;
115
125
  };
116
126
  export default theme;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "g-ui-web",
3
3
  "private": false,
4
4
  "description": "可视化组件库",
5
- "version": "0.10.13",
5
+ "version": "0.10.15",
6
6
  "author": "wyu",
7
7
  "license": "MIT",
8
8
  "type": "module",
package/lib/index.d.ts DELETED
@@ -1,86 +0,0 @@
1
- import { debounce, throttle, formatNumber } from './utils';
2
- import { Session, Local } from './utils/storage';
3
- import { setTheme } from './utils/theme';
4
- import { default as DataSource } from './utils/DataSource';
5
- import { default as GChart } from './chart';
6
- import { default as GRankingList } from './ranking-list';
7
- import { default as GRankingTable } from './ranking-table';
8
- import { default as GReserve } from './reserve';
9
- import { default as GPlan } from './plan';
10
- import { default as GNodeAchievement } from './node-achievement';
11
- import { default as GCashflow } from './cashflow';
12
- import { default as GBar } from './bar';
13
- import { default as GLine } from './line';
14
- import { default as GBarLine } from './bar-line';
15
- import { default as GPie } from './pie';
16
- import { default as GRadar } from './radar';
17
- import { default as GFunnel } from './funnel';
18
- import { default as GMap } from './map';
19
- import { default as GHeatmap } from './heatmap';
20
- import { default as GTargetS } from './target-s';
21
- import { default as GTargetR } from './target-r';
22
- import { default as GTargetM } from './target-m';
23
- import { default as GBox } from './box';
24
- import { default as GBarCompare } from './bar-compare';
25
- import { default as GPieDistri } from './pie-distri';
26
- import { default as GTargetAchievement } from './target-achievement';
27
- import { default as GDatatable } from './datatable';
28
- import { default as GTargetCurrent } from './target-current';
29
- import { default as GPieTable } from './pie-table';
30
- import { default as GBarConv } from './bar-conv';
31
- import { default as GTargetStruct } from './target-struct';
32
- import { default as GPieLevel } from './pie-level';
33
- import { default as GRow } from './ele/row';
34
- import { default as GCol } from './ele/col';
35
- import { default as GButton } from './ele/button';
36
- import { default as GInput } from './ele/input';
37
- import { default as GButtonGroup } from './ele/button-group';
38
- import { default as GRadio } from './ele/radio';
39
- import { default as GRadioButton } from './ele/radio-button';
40
- import { default as GRadioGroup } from './ele/radio-group';
41
- import { default as GCheckbox } from './ele/checkbox';
42
- import { default as GCheckboxGroup } from './ele/checkbox-group';
43
- import { default as GCheckboxButton } from './ele/checkbox-button';
44
- import { default as GDatePicker } from './ele/date-picker';
45
- import { default as GSelect } from './ele/select';
46
- import { default as GCascader } from './ele/cascader';
47
- import { default as GCascaderPanel } from './ele/cascader-panel';
48
- import { default as GOption } from './ele/option';
49
- import { default as GOptionGroup } from './ele/option-group';
50
- import { default as GForm } from './ele/form';
51
- import { default as GFormItem } from './ele/form-item';
52
- import { default as GSwitch } from './ele/switch';
53
- import { default as GUpload } from './ele/upload';
54
- import { default as GCard } from './ele/card';
55
- import { default as GCarousel } from './ele/carousel';
56
- import { default as GCarouselItem } from './ele/carousel-item';
57
- import { default as GPagination } from './ele/pagination';
58
- import { default as GProgress } from './ele/progress';
59
- import { default as GTable } from './ele/table';
60
- import { default as GTableColumn } from './ele/table-column';
61
- import { default as GTag } from './ele/tag';
62
- import { default as GCheckTag } from './ele/check-tag';
63
- import { default as GTree } from './ele/tree';
64
- import { default as GTreeSelect } from './ele/tree-select';
65
- import { default as GTabs } from './ele/tabs';
66
- import { default as GTabPane } from './ele/tab-pane';
67
- import { default as GDialog } from './ele/dialog';
68
- import { default as GTooltip } from './ele/tooltip';
69
- import { default as GWatermark } from './ele/watermark';
70
- export { GChart, GBarConv, GRankingList, GPieTable, GRankingTable, GReserve, GPlan, GNodeAchievement, GCashflow, GBar, GLine, GBarLine, GPie, GRadar, GFunnel, GMap, GHeatmap, GTargetS, GTargetR, GTargetM, GBox, GBarCompare, GPieDistri, GTargetAchievement, GDatatable, GTargetCurrent, GTargetStruct, GPieLevel, GButton, GRow, GCol, GInput, GButtonGroup, GRadio, GRadioButton, GRadioGroup, GCheckbox, GCheckboxGroup, GCheckboxButton, GDatePicker, GSelect, GCascader, GCascaderPanel, GOption, GOptionGroup, GForm, GFormItem, GSwitch, GUpload, GCard, GCarousel, GCarouselItem, GPagination, GProgress, GTable, GTableColumn, GTag, GCheckTag, GTree, GTreeSelect, GTabs, GTabPane, GDialog, GTooltip, GWatermark };
71
- /**
72
- * @description 公共方法
73
- */
74
- export { throttle, debounce, formatNumber, setTheme, Session, Local, DataSource };
75
- declare const _default: {
76
- install: any;
77
- };
78
- export default _default;
79
- export declare const gui: {
80
- setTheme: (theme: string) => void;
81
- getThemeList: () => {
82
- name: string;
83
- value: string;
84
- }[];
85
- getThemeConfig: () => any;
86
- };