@mobileaction/action-kit 1.21.43 → 1.22.0
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.js +1 -1
- package/dist/action-kit.mjs +7 -7
- package/dist/chevron-left-26b60cf0.mjs +21 -0
- package/dist/chevron-left-9597863c.js +1 -0
- package/dist/chevron-right-53fbda71.mjs +21 -0
- package/dist/chevron-right-e08e788e.js +1 -0
- package/dist/components/checkbox/group.vue.d.ts +3 -3
- package/dist/components/checkbox/index.vue.d.ts +3 -3
- package/dist/components/icon/components/flagIcon.vue.d.ts +1 -1
- package/dist/components/icon/components/maIcon.vue.d.ts +3 -3
- package/dist/components/icon/index.vue.d.ts +3 -3
- package/dist/components/icon-button/components/button.vue.d.ts +2 -2
- package/dist/components/icon-button/index.vue.d.ts +3 -3
- package/dist/components/pagination/index.vue.d.ts +132 -42
- package/dist/components/pagination/types.d.ts +19 -2
- package/dist/components/progress/components/circle.vue.d.ts +2 -2
- package/dist/components/progress/components/halfCircle.vue.d.ts +2 -2
- package/dist/components/progress/components/line.vue.d.ts +2 -2
- package/dist/components/progress/components/stepLine.vue.d.ts +2 -2
- package/dist/components/progress/index.vue.d.ts +3 -3
- package/dist/components/rate/components/star.vue.d.ts +2 -2
- package/dist/components/tag-input/index.vue.d.ts +3 -3
- package/dist/components/track-button/index.vue.d.ts +3 -3
- package/dist/components/upload/index.vue.d.ts +3 -3
- package/dist/components/watchlist-button/components/button.vue.d.ts +2 -2
- package/dist/components/watchlist-button/index.vue.d.ts +3 -3
- package/dist/index-0071f266.mjs +9930 -0
- package/dist/index-47430f7f.js +53 -0
- package/dist/lottie_light-1423b6a7.js +9 -0
- package/dist/{lottie_light-98c80831.mjs → lottie_light-dc5b306d.mjs} +473 -492
- package/dist/src/components/pagination/index.vue.d.ts +171 -39
- package/dist/src/components/pagination/pagination.test.d.ts +1 -0
- package/dist/src/components/pagination/stories/default.stories.d.ts +1 -2
- package/dist/src/components/pagination/types.d.ts +19 -2
- package/dist/src/utils/breakpoints.d.ts +16 -0
- package/dist/src/utils/breakpoints.test.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/utils/breakpoints.d.ts +16 -0
- package/package.json +4 -4
- package/dist/chevron-left-326ad5ea.js +0 -1
- package/dist/chevron-left-cc52a4d7.mjs +0 -22
- package/dist/chevron-right-1fc62c60.js +0 -1
- package/dist/chevron-right-817fda2d.mjs +0 -22
- package/dist/index-163b07e0.js +0 -53
- package/dist/index-e2b3b395.mjs +0 -9596
- package/dist/lottie_light-7680adde.js +0 -9
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tailwind breakpoints
|
|
3
|
+
*/
|
|
4
|
+
export type TailwindBreakpoints = {
|
|
5
|
+
'2xl': number;
|
|
6
|
+
xl: number;
|
|
7
|
+
lg: number;
|
|
8
|
+
md: number;
|
|
9
|
+
sm: number;
|
|
10
|
+
xs: number;
|
|
11
|
+
};
|
|
12
|
+
export declare const breakpoints: TailwindBreakpoints;
|
|
13
|
+
export declare const MaBreakpointInstance: {
|
|
14
|
+
windowWidth: () => number;
|
|
15
|
+
getBreakpointSize(): string;
|
|
16
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobileaction/action-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"main": "dist/action-kit.js",
|
|
5
5
|
"module": "dist/action-kit.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@types/jsdom": "^21.1.0",
|
|
52
52
|
"@types/node": "^18.14.2",
|
|
53
53
|
"@vitejs/plugin-vue": "^4.1.0",
|
|
54
|
-
"@vitest/coverage-c8": "^0.
|
|
54
|
+
"@vitest/coverage-c8": "^0.33.0",
|
|
55
55
|
"@vue/compiler-sfc": "^3.2.47",
|
|
56
56
|
"@vue/eslint-config-prettier": "^7.1.0",
|
|
57
57
|
"@vue/eslint-config-typescript": "^11.0.2",
|
|
@@ -75,13 +75,13 @@
|
|
|
75
75
|
"sass-loader": "^13.2.0",
|
|
76
76
|
"standard-version": "^9.5.0",
|
|
77
77
|
"storybook": "^7.0.4",
|
|
78
|
-
"storybook_vitest_addon": "^0.
|
|
78
|
+
"storybook_vitest_addon": "^0.1.5",
|
|
79
79
|
"tailwindcss": "^3.2.7",
|
|
80
80
|
"typescript": "~4.8.4",
|
|
81
81
|
"vite": "^4.1.5",
|
|
82
82
|
"vite-plugin-dts": "^2.1.0",
|
|
83
83
|
"vite-svg-loader": "^4.0.0",
|
|
84
|
-
"vitest": "^
|
|
84
|
+
"vitest": "^1.2.2",
|
|
85
85
|
"vue-loader": "^16.8.3",
|
|
86
86
|
"vue-tsc": "^1.2.0"
|
|
87
87
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),o={viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},n=e.createElementVNode("path",{d:"M15 18L9 12L15 6",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},null,-1),r=[n];function t(s,l){return e.openBlock(),e.createElementBlock("svg",o,r)}const c={render:t};exports.default=c;exports.render=t;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
|
-
const n = {
|
|
3
|
-
viewBox: "0 0 24 24",
|
|
4
|
-
fill: "none",
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
6
|
-
}, r = /* @__PURE__ */ t("path", {
|
|
7
|
-
d: "M15 18L9 12L15 6",
|
|
8
|
-
stroke: "currentColor",
|
|
9
|
-
"stroke-width": "2",
|
|
10
|
-
"stroke-linecap": "round",
|
|
11
|
-
"stroke-linejoin": "round"
|
|
12
|
-
}, null, -1), c = [
|
|
13
|
-
r
|
|
14
|
-
];
|
|
15
|
-
function s(l, d) {
|
|
16
|
-
return e(), o("svg", n, c);
|
|
17
|
-
}
|
|
18
|
-
const h = { render: s };
|
|
19
|
-
export {
|
|
20
|
-
h as default,
|
|
21
|
-
s as render
|
|
22
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),o={viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},n=e.createElementVNode("path",{d:"M9 18L15 12L9 6",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},null,-1),r=[n];function t(s,l){return e.openBlock(),e.createElementBlock("svg",o,r)}const c={render:t};exports.default=c;exports.render=t;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { openBlock as e, createElementBlock as o, createElementVNode as t } from "vue";
|
|
2
|
-
const n = {
|
|
3
|
-
viewBox: "0 0 24 24",
|
|
4
|
-
fill: "none",
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
6
|
-
}, r = /* @__PURE__ */ t("path", {
|
|
7
|
-
d: "M9 18L15 12L9 6",
|
|
8
|
-
stroke: "currentColor",
|
|
9
|
-
"stroke-width": "2",
|
|
10
|
-
"stroke-linecap": "round",
|
|
11
|
-
"stroke-linejoin": "round"
|
|
12
|
-
}, null, -1), c = [
|
|
13
|
-
r
|
|
14
|
-
];
|
|
15
|
-
function s(l, i) {
|
|
16
|
-
return e(), o("svg", n, c);
|
|
17
|
-
}
|
|
18
|
-
const h = { render: s };
|
|
19
|
-
export {
|
|
20
|
-
h as default,
|
|
21
|
-
s as render
|
|
22
|
-
};
|