@mobileaction/action-kit 1.55.11-beta.0 → 1.55.11-beta.2
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/action-kit.mjs +172 -171
- package/dist/{annotations-kyKV0sLe.js → annotations-BG_ry7ca.js} +1 -1
- package/dist/components/cascader/stories/default.stories.d.ts +736 -736
- package/dist/components/chart/index.vue.d.ts +4 -5
- package/dist/components/chart/types.d.ts +2 -1
- package/dist/config/plugin.d.ts +4 -1
- package/dist/config/types.d.ts +7 -0
- package/dist/config/use-action-kit.d.ts +1 -1
- package/dist/{export-data-CLn7pP9T.js → export-data-CkEPlYVJ.js} +1 -1
- package/dist/{exporting-BTKGXorM.js → exporting-BpGF1h8m.js} +1 -1
- package/dist/{funnel-DKCGK0C1.js → funnel-Cnk5hVec.js} +1 -1
- package/dist/{index-HRyHV1rP.js → index-BTam3Ain.js} +4469 -4453
- package/dist/index.d.ts +5 -1
- package/dist/{map-BE2Es3xO.js → map-B-Ee93ZQ.js} +1 -1
- package/dist/{offline-exporting-BCAnW-Iu.js → offline-exporting-DtThUR3G.js} +1 -1
- package/dist/{stock-B-VO9Sdj.js → stock-Bi4YZTNr.js} +1 -1
- package/dist/{venn-DM7XImYO.js → venn-CRsbi_lM.js} +1 -1
- package/dist/{wordcloud-lhPkc6jG.js → wordcloud-CUktyeek.js} +1 -1
- package/package.json +1 -1
- package/dist/config/index.d.ts +0 -4
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import type { MaChartProps } from './types';
|
|
2
|
-
|
|
3
|
-
declare function getChart(): Highcharts.Chart;
|
|
1
|
+
import type { ChartConstructor, MaChartProps } from './types';
|
|
2
|
+
declare function getChart(): ChartConstructor;
|
|
4
3
|
declare const _default: import("vue").DefineComponent<MaChartProps, {
|
|
5
4
|
getChart: typeof getChart;
|
|
6
5
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
|
-
chartReady: (chart:
|
|
6
|
+
chartReady: (chart: ChartConstructor) => any;
|
|
8
7
|
chartDestroyed: () => any;
|
|
9
8
|
}, string, import("vue").PublicProps, Readonly<MaChartProps> & Readonly<{
|
|
10
|
-
onChartReady?: (chart:
|
|
9
|
+
onChartReady?: (chart: ChartConstructor) => any;
|
|
11
10
|
onChartDestroyed?: () => any;
|
|
12
11
|
}>, {
|
|
13
12
|
constructorType: import("./types").ChartConstructorType;
|
|
@@ -105,8 +105,9 @@ export interface MaChartProps {
|
|
|
105
105
|
}
|
|
106
106
|
export type ChartNamespace = typeof Highcharts;
|
|
107
107
|
export type ChartConstructorType = keyof typeof Highcharts;
|
|
108
|
-
export type ChartConstructor = Highcharts.Chart;
|
|
108
|
+
export type ChartConstructor = Highcharts.Chart | Highcharts.StockChart | Highcharts.MapChart;
|
|
109
109
|
export type ChartOptions = Highcharts.Options;
|
|
110
|
+
export type ChartSeriesOptionsType = Highcharts.SeriesOptionsType;
|
|
110
111
|
export type ChartUpdateArgs = [boolean] | [boolean, boolean] | [boolean, boolean, boolean];
|
|
111
112
|
export type ChartModuleName = 'stock' | 'map' | 'wordcloud' | 'venn' | 'funnel' | 'annotations' | 'exporting' | 'offline-exporting' | 'export-data';
|
|
112
113
|
export interface ModulesToLoad {
|
package/dist/config/plugin.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { App } from 'vue';
|
|
2
|
-
import type { ActionKitConfigOptions } from './
|
|
2
|
+
import type { ActionKitConfigOptions } from './types';
|
|
3
3
|
export declare const defaultOptions: {
|
|
4
4
|
locale: {
|
|
5
5
|
total: string;
|
|
@@ -18,6 +18,9 @@ export declare const defaultOptions: {
|
|
|
18
18
|
confirm: string;
|
|
19
19
|
noData: string;
|
|
20
20
|
loading: string;
|
|
21
|
+
search: string;
|
|
22
|
+
itemSelected: string;
|
|
23
|
+
itemsSelected: string;
|
|
21
24
|
aria: {
|
|
22
25
|
close: string;
|
|
23
26
|
closeDrawer: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { UseActionKitConfig } from './
|
|
1
|
+
import type { UseActionKitConfig } from './types';
|
|
2
2
|
export declare function useActionKit(): UseActionKitConfig;
|