@mobileaction/action-kit 1.1.63 → 1.1.65
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 +8 -8
- package/dist/action-kit.mjs +1031 -968
- package/dist/add-button-7d56a1a7.mjs +41 -0
- package/dist/add-button-dbecdef2.js +1 -0
- package/dist/components/avatar/index.vue.d.ts +68 -1
- package/dist/components/avatar/types.d.ts +8 -0
- package/dist/components/dropdown/index.vue.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/src/components/autocomplete/stories/default.stories.d.ts +3 -2
- package/dist/src/components/avatar/group.vue.d.ts +37 -0
- package/dist/src/components/avatar/index.vue.d.ts +33 -1
- package/dist/src/components/avatar/labelGroup.vue.d.ts +31 -0
- package/dist/src/components/avatar/profileAvatar.vue.d.ts +28 -0
- package/dist/src/components/avatar/stories/constants.d.ts +15 -0
- package/dist/src/components/avatar/stories/group.stories.d.ts +11 -0
- package/dist/src/components/avatar/stories/labelGroup.stories.d.ts +8 -0
- package/dist/src/components/avatar/stories/profilePhoto.stories.d.ts +8 -0
- package/dist/src/components/avatar/stories/visuals.stories.d.ts +14 -0
- package/dist/src/components/avatar/types.d.ts +8 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/user-default-7079615a.mjs +22 -0
- package/dist/user-default-8285ae98.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { openBlock as e, createElementBlock as t, createElementVNode as o } from "vue";
|
|
2
|
+
const n = {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
fill: "none",
|
|
5
|
+
viewBox: "0 0 12 14"
|
|
6
|
+
}, r = /* @__PURE__ */ o("path", {
|
|
7
|
+
stroke: "#101828",
|
|
8
|
+
"stroke-linecap": "round",
|
|
9
|
+
"stroke-linejoin": "round",
|
|
10
|
+
"stroke-width": "1.333",
|
|
11
|
+
d: "M11.333 13v-1.333A2.667 2.667 0 0 0 8.667 9H3.333a2.667 2.667 0 0 0-2.666 2.667V13m8-9.333a2.667 2.667 0 1 1-5.334 0 2.667 2.667 0 0 1 5.334 0Z"
|
|
12
|
+
}, null, -1), s = [
|
|
13
|
+
r
|
|
14
|
+
];
|
|
15
|
+
function c(l, d) {
|
|
16
|
+
return e(), t("svg", n, s);
|
|
17
|
+
}
|
|
18
|
+
const a = { render: c };
|
|
19
|
+
export {
|
|
20
|
+
a as default,
|
|
21
|
+
c as render
|
|
22
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),o={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 12 14"},n=e.createElementVNode("path",{stroke:"#101828","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.333",d:"M11.333 13v-1.333A2.667 2.667 0 0 0 8.667 9H3.333a2.667 2.667 0 0 0-2.666 2.667V13m8-9.333a2.667 2.667 0 1 1-5.334 0 2.667 2.667 0 0 1 5.334 0Z"},null,-1),r=[n];function t(c,l){return e.openBlock(),e.createElementBlock("svg",o,r)}const s={render:t};exports.default=s;exports.render=t;
|