@mobileaction/action-kit 1.55.11-beta.3 → 1.55.11-beta.4

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.
@@ -0,0 +1,2 @@
1
+ declare function initPlugin(): void;
2
+ export { initPlugin };
@@ -17,3 +17,4 @@ export declare const AppRating: Story;
17
17
  export declare const PieChart: Story;
18
18
  export declare const Exporting: Story;
19
19
  export declare const DynamicSeriesUpdate: Story;
20
+ export declare const SinglePointMarker: Story;
@@ -1,5 +1,6 @@
1
1
  import type { Ref, UnwrapRef } from 'vue';
2
2
  import type { ChartModuleName, ChartOptions } from './types';
3
+ import './highcharts-single-point-marker.plugin';
3
4
  /**
4
5
  * Lazy‑import map for Highcharts modules.
5
6
  */
@@ -1,7 +1,7 @@
1
- import type { ActionKitLocale } from '../locales/types';
1
+ import type { ActionKitLocaleOptions } from '../locales/types';
2
2
  export interface UseActionKitConfig {
3
3
  config: ActionKitConfigOptions;
4
4
  }
5
5
  export interface ActionKitConfigOptions {
6
- locale?: ActionKitLocale;
6
+ locale?: ActionKitLocaleOptions;
7
7
  }
@@ -1,3 +1,34 @@
1
- import type en from './en.json';
2
- export type ActionKitLocale = typeof en;
3
1
  export type ActionKitSupportedLocales = 'en' | 'zh' | 'ja' | 'ko';
2
+ export interface ActionKitLocaleAriaOptions {
3
+ close?: string;
4
+ closeDrawer?: string;
5
+ closeModal?: string;
6
+ expandModal?: string;
7
+ collapseModal?: string;
8
+ page?: string;
9
+ pagination?: string;
10
+ prev?: string;
11
+ goNextPage?: string;
12
+ }
13
+ export interface ActionKitLocaleOptions {
14
+ total?: string;
15
+ itemsPerPage?: string;
16
+ page?: string;
17
+ dragDrop?: string;
18
+ clickToUpload?: string;
19
+ or?: string;
20
+ uploading?: string;
21
+ removeFile?: string;
22
+ selectFile?: string;
23
+ maxFileSizeMessage?: string;
24
+ allowedFileTypesMessage?: string;
25
+ ok?: string;
26
+ cancel?: string;
27
+ confirm?: string;
28
+ noData?: string;
29
+ loading?: string;
30
+ search?: string;
31
+ itemSelected?: string;
32
+ itemsSelected?: string;
33
+ aria?: ActionKitLocaleAriaOptions;
34
+ }