@mobileaction/action-kit 1.45.1 → 1.45.3

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.
Files changed (27) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/action-kit.mjs +1 -1
  3. package/dist/{annotations-BoKrvKtU.js → annotations-Cc8-hzTY.js} +1 -1
  4. package/dist/{export-data-BbWSdanP.js → export-data-CRYwjurw.js} +1 -1
  5. package/dist/{exporting-xDsQjLnb.js → exporting-BtNhop-z.js} +1 -1
  6. package/dist/{index-C5SNRk2G.js → index-B6v0tisE.js} +1150 -1142
  7. package/dist/{map-Ce9DPOD2.js → map-DgZGHNvi.js} +1 -1
  8. package/dist/{offline-exporting-DoxED6OQ.js → offline-exporting-CxNsbsAZ.js} +1 -1
  9. package/dist/src/components/app-icon/index.vue.d.ts +2 -2
  10. package/dist/src/components/date-picker-2/index.vue.d.ts +1 -0
  11. package/dist/src/components/date-picker-2/stories/default.stories.d.ts +2 -0
  12. package/dist/src/components/date-picker-2/stories/range.stories.d.ts +2 -0
  13. package/dist/src/components/date-picker-2/types.d.ts +5 -1
  14. package/dist/src/components/ellipsis/index.vue.d.ts +2 -2
  15. package/dist/src/components/icon-button/index.vue.d.ts +3 -3
  16. package/dist/src/components/progress/components/circle.vue.d.ts +3 -3
  17. package/dist/src/components/progress/components/halfCircle.vue.d.ts +2 -2
  18. package/dist/src/components/progress/components/line.vue.d.ts +4 -4
  19. package/dist/src/components/progress/components/stepLine.vue.d.ts +2 -2
  20. package/dist/src/components/progress/index.vue.d.ts +2 -2
  21. package/dist/src/components/tooltip-2/index.vue.d.ts +2 -2
  22. package/dist/src/components/watchlist-button/index.vue.d.ts +3 -3
  23. package/dist/{stock-CeANuPzY.js → stock-cgogCbmp.js} +1 -1
  24. package/dist/style.css +1 -1
  25. package/dist/{venn-CkGeZlT1.js → venn-DdB-2edP.js} +1 -1
  26. package/dist/{wordcloud-vS3H7y9J.js → wordcloud-BKutD0Dx.js} +1 -1
  27. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { g as tr } from "./index-C5SNRk2G.js";
1
+ import { g as tr } from "./index-B6v0tisE.js";
2
2
  function ir(ne, Ze) {
3
3
  for (var S = 0; S < Ze.length; S++) {
4
4
  const Y = Ze[S];
@@ -1,4 +1,4 @@
1
- import { g as st } from "./index-C5SNRk2G.js";
1
+ import { g as st } from "./index-B6v0tisE.js";
2
2
  function at(te, pe) {
3
3
  for (var K = 0; K < pe.length; K++) {
4
4
  const _ = pe[K];
@@ -1,5 +1,5 @@
1
1
  import { AppIconPlatform, AppIconSize } from '@/components/app-icon/types';
2
- import { MaTooltipProps } from '@/components/tooltip/index.vue';
2
+ import { MaTooltip2Props } from '@/components/tooltip-2/index.vue';
3
3
  export interface MaAppIconProps {
4
4
  appIcon: string;
5
5
  appName?: string;
@@ -9,7 +9,7 @@ export interface MaAppIconProps {
9
9
  rounded?: boolean;
10
10
  size?: AppIconSize;
11
11
  showTooltip?: boolean;
12
- tooltipProps?: MaTooltipProps;
12
+ tooltipProps?: MaTooltip2Props;
13
13
  fallback?: string;
14
14
  shadow?: boolean;
15
15
  appStoreIcon?: string;
@@ -130,6 +130,7 @@ declare const __VLS_component: import("vue").DefineComponent<MaDatePickerProps,
130
130
  autoPosition: typeof import("./types").MaDatePickerVerticalPositions[number];
131
131
  preventMinMaxNavigation: boolean;
132
132
  clearable: boolean;
133
+ alwaysClearable: boolean;
133
134
  applyButtonText: string;
134
135
  multiCalendars: boolean;
135
136
  hideCalendarIcon: boolean;
@@ -23,3 +23,5 @@ export declare const MinMaxDates: Story;
23
23
  export declare const MultiCalendars: Story;
24
24
  export declare const FocusStartDate: Story;
25
25
  export declare const CustomSlots: Story;
26
+ export declare const Clearable: Story;
27
+ export declare const AlwaysClearable: Story;
@@ -24,3 +24,5 @@ export declare const AutoRange: Story;
24
24
  export declare const MultiCalendars: Story;
25
25
  export declare const FocusStartDate: Story;
26
26
  export declare const CustomSlots: Story;
27
+ export declare const Clearable: Story;
28
+ export declare const AlwaysClearable: Story;
@@ -159,9 +159,13 @@ export interface MaDatePickerProps {
159
159
  */
160
160
  focusStartDate?: boolean;
161
161
  /**
162
- * Add a clear icon to the input field where you can set the value to null
162
+ * Add a clear icon to the input field that is visible only when there is a value and on hover
163
163
  */
164
164
  clearable?: boolean;
165
+ /**
166
+ * Keeps the clear icon only when there is a value in the calendar
167
+ */
168
+ alwaysClearable?: boolean;
165
169
  /**
166
170
  * The text of the apply button
167
171
  * @default Apply
@@ -1,6 +1,6 @@
1
- import { MaTooltipProps } from '@/components/tooltip/index.vue';
1
+ import { MaTooltip2Props } from '@/components/tooltip-2/index.vue';
2
2
  export interface MaEllipsisProps {
3
- tooltipProps?: MaTooltipProps;
3
+ tooltipProps?: MaTooltip2Props;
4
4
  }
5
5
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<MaEllipsisProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MaEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>, {
6
6
  default?(_: {}): any;
@@ -1,6 +1,6 @@
1
- import { MaIconButtonType, MaIconButtonSize, MaIconButtonVariant } from "./types";
1
+ import { MaIconButtonType, MaIconButtonSize, MaIconButtonVariant } from './types';
2
2
  import { ButtonTarget } from '@/components/button/types';
3
- import { MaTooltipProps } from '../tooltip/index.vue';
3
+ import { MaTooltip2Props } from '../tooltip-2/index.vue';
4
4
  export interface MaIconButtonProps {
5
5
  type?: MaIconButtonType;
6
6
  icon: string;
@@ -12,7 +12,7 @@ export interface MaIconButtonProps {
12
12
  active?: boolean;
13
13
  rounded?: boolean;
14
14
  variant?: MaIconButtonVariant;
15
- tooltipProps?: MaTooltipProps;
15
+ tooltipProps?: MaTooltip2Props;
16
16
  disabled?: boolean;
17
17
  loading?: boolean;
18
18
  }
@@ -1,9 +1,9 @@
1
- import { MaProgressCircleSize } from "../types";
2
- import { MaTooltipProps } from '@/components/tooltip/index.vue';
1
+ import { MaProgressCircleSize } from '../types';
2
+ import { MaTooltip2Props } from '@/components/tooltip-2/index.vue';
3
3
  export interface MaProgressItemProps {
4
4
  percent: number;
5
5
  showTooltip?: boolean;
6
- tooltipProps?: MaTooltipProps;
6
+ tooltipProps?: MaTooltip2Props;
7
7
  icon?: string;
8
8
  label?: string;
9
9
  showPercent?: boolean;
@@ -1,9 +1,9 @@
1
1
  import { MaProgressCircleSize } from '../types';
2
- import { MaTooltipProps } from '@/components/tooltip/index.vue';
2
+ import { MaTooltip2Props } from '@/components/tooltip-2/index.vue';
3
3
  export interface MaProgressItemProps {
4
4
  percent: number;
5
5
  showTooltip?: boolean;
6
- tooltipProps?: MaTooltipProps;
6
+ tooltipProps?: MaTooltip2Props;
7
7
  icon?: string;
8
8
  label?: string;
9
9
  showPercent?: boolean;
@@ -1,9 +1,9 @@
1
- import { MaTooltipProps } from '@/components/tooltip/index.vue';
1
+ import { MaTooltip2Props } from '@/components/tooltip-2/index.vue';
2
2
  import { MaProgressCircleSize } from '../types';
3
3
  export interface MaProgressItemProps {
4
4
  percent: number;
5
5
  showTooltip?: boolean;
6
- tooltipProps?: MaTooltipProps;
6
+ tooltipProps?: MaTooltip2Props;
7
7
  icon?: string;
8
8
  label?: string;
9
9
  showPercent?: boolean;
@@ -16,10 +16,10 @@ declare function __VLS_template(): {
16
16
  customLabel?(_: {}): any;
17
17
  };
18
18
  refs: {};
19
- rootEl: HTMLDivElement;
19
+ rootEl: any;
20
20
  };
21
21
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
- declare const __VLS_component: import("vue").DefineComponent<MaProgressItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MaProgressItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
22
+ declare const __VLS_component: import("vue").DefineComponent<MaProgressItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MaProgressItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
23
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
24
  export default _default;
25
25
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,9 +1,9 @@
1
- import { MaTooltipProps } from '@/components/tooltip/index.vue';
1
+ import { MaTooltip2Props } from '@/components/tooltip-2/index.vue';
2
2
  import { MaProgressCircleSize } from '../types';
3
3
  export interface MaProgressItemProps {
4
4
  percent: number;
5
5
  showTooltip?: boolean;
6
- tooltipProps?: MaTooltipProps;
6
+ tooltipProps?: MaTooltip2Props;
7
7
  icon?: string;
8
8
  label?: string;
9
9
  showPercent?: boolean;
@@ -1,11 +1,11 @@
1
1
  import { MaProgressType, MaProgressColor, MaProgressCircleSize, MaProgressPercentAlignment } from './types';
2
- import { MaTooltipProps } from '../tooltip/index.vue';
2
+ import { MaTooltip2Props } from '../tooltip-2/index.vue';
3
3
  export interface MaProgressProps {
4
4
  type?: MaProgressType;
5
5
  percent: number;
6
6
  color?: MaProgressColor;
7
7
  showTooltip?: boolean;
8
- tooltipProps?: MaTooltipProps;
8
+ tooltipProps?: MaTooltip2Props;
9
9
  icon?: string;
10
10
  label?: string;
11
11
  showPercent?: boolean;
@@ -1,6 +1,6 @@
1
1
  import { Popover2Placement, Popover2TriggerType, Tooltip2Types } from '@/index';
2
2
  import { MaPopover2Props } from '../popover-2/index.vue';
3
- export interface Tooltip2Props {
3
+ export interface MaTooltip2Props {
4
4
  placement?: Popover2Placement;
5
5
  type?: Tooltip2Types;
6
6
  icon?: string;
@@ -27,7 +27,7 @@ declare function __VLS_template(): {
27
27
  rootEl: any;
28
28
  };
29
29
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
30
- declare const __VLS_component: import("vue").DefineComponent<Tooltip2Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Tooltip2Props> & Readonly<{}>, {
30
+ declare const __VLS_component: import("vue").DefineComponent<MaTooltip2Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MaTooltip2Props> & Readonly<{}>, {
31
31
  type: Tooltip2Types;
32
32
  placement: Popover2Placement;
33
33
  trigger: Popover2TriggerType[];
@@ -1,6 +1,6 @@
1
- import { MaWatchlistButtonType, MaWatchlistButtonSize } from "./types";
1
+ import { MaWatchlistButtonType, MaWatchlistButtonSize } from './types';
2
2
  import { ButtonTarget } from '@/components/button/types';
3
- import { MaTooltipProps } from '../tooltip/index.vue';
3
+ import { MaTooltip2Props } from '../tooltip-2/index.vue';
4
4
  export interface MaWatchlistButtonProps {
5
5
  type?: MaWatchlistButtonType;
6
6
  icon?: string;
@@ -10,7 +10,7 @@ export interface MaWatchlistButtonProps {
10
10
  target?: ButtonTarget;
11
11
  size?: MaWatchlistButtonSize;
12
12
  active?: boolean;
13
- tooltipProps?: MaTooltipProps;
13
+ tooltipProps?: MaTooltip2Props;
14
14
  disabled?: boolean;
15
15
  loading?: boolean;
16
16
  }
@@ -1,4 +1,4 @@
1
- import { g as ua } from "./index-C5SNRk2G.js";
1
+ import { g as ua } from "./index-B6v0tisE.js";
2
2
  function ca(Dt, te) {
3
3
  for (var H = 0; H < te.length; H++) {
4
4
  const et = te[H];