@mobileaction/action-kit 1.42.12 → 1.43.0-beta.7
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/CHANGELOG.md +7 -0
- package/dist/3square-bold-Dx1--kR9.js +27 -0
- package/dist/action-kit.mjs +3579 -3450
- package/dist/src/components/popconfirm-2/index.vue.d.ts +62 -0
- package/dist/src/components/popconfirm-2/popconfirm2.test.d.ts +1 -0
- package/dist/src/components/popconfirm-2/stories/default.stories.d.ts +10 -0
- package/dist/src/components/popconfirm-2/types.d.ts +6 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.43.0](https://github.com/mobileaction/action-kit/compare/v1.42.12...v1.43.0) (2025-04-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **PEC-5460:** 3square-bold icon added ([b1f99b8](https://github.com/mobileaction/action-kit/commit/b1f99b82ab51ff125857931ed8df159a44c4440c))
|
|
11
|
+
|
|
5
12
|
## [1.42.12](https://github.com/mobileaction/action-kit/compare/v1.42.11...v1.42.12) (2025-03-27)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { createElementBlock as r, openBlock as o, createElementVNode as l } from "vue";
|
|
2
|
+
const t = {
|
|
3
|
+
viewBox: "0 0 24 24",
|
|
4
|
+
fill: "none",
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
6
|
+
};
|
|
7
|
+
function n(C, e) {
|
|
8
|
+
return o(), r("svg", t, e[0] || (e[0] = [
|
|
9
|
+
l("path", {
|
|
10
|
+
d: "M12 18.5V19.38C12 21.25 11.25 22 9.37 22H4.62C3.17 22 2 20.83 2 19.38V14.63C2 12.75 2.75 12 4.62 12H5.5V15.5C5.5 17.16 6.84 18.5 8.5 18.5H12Z",
|
|
11
|
+
fill: "currentColor"
|
|
12
|
+
}, null, -1),
|
|
13
|
+
l("path", {
|
|
14
|
+
d: "M17 13.5V14.37C17 15.82 15.82 17 14.37 17H9.62C7.75 17 7 16.25 7 14.37V9.62C7 8.17 8.17 7 9.62 7H10.5V10.5C10.5 12.16 11.84 13.5 13.5 13.5H17Z",
|
|
15
|
+
fill: "currentColor"
|
|
16
|
+
}, null, -1),
|
|
17
|
+
l("path", {
|
|
18
|
+
d: "M22 4.62V9.37C22 11.25 21.25 12 19.37 12H14.62C12.75 12 12 11.25 12 9.37V4.62C12 2.75 12.75 2 14.62 2H19.37C21.25 2 22 2.75 22 4.62Z",
|
|
19
|
+
fill: "currentColor"
|
|
20
|
+
}, null, -1)
|
|
21
|
+
]));
|
|
22
|
+
}
|
|
23
|
+
const c = { render: n };
|
|
24
|
+
export {
|
|
25
|
+
c as default,
|
|
26
|
+
n as render
|
|
27
|
+
};
|