@kengic/vue 0.30.1-beta.26 → 0.30.1-beta.28
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/check-box-outline-blank.d01a2055.mjs +8 -0
- package/dist/collapse-all-rounded.26ee73fc.mjs +8 -0
- package/dist/expand-all-rounded.e01e6cb9.mjs +8 -0
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +41092 -36789
- package/dist/src/component/KgCanvas/KgCanvas.event.d.ts +11 -3
- package/dist/src/component/KgCanvas/KgCanvas.hooks.d.ts +15 -5
- package/dist/src/component/KgCanvas/KgCanvas.store.d.ts +4 -1
- package/dist/src/component/KgModal/KgModal.d.ts +11 -11
- package/dist/src/component/KgModal02/KgModal02.d.ts +6 -6
- package/dist/src/component/KgSimulator/KgSimulator.Panel.d.ts +22 -4
- package/dist/src/component/KgSimulator/KgSimulator.Toolbar.d.ts +4 -4
- package/dist/src/component/KgSimulator/KgSimulator.event.d.ts +41 -0
- package/dist/src/component/KgSimulator/KgSimulator.hooks.d.ts +37 -0
- package/dist/src/component/KgSimulator/KgSimulator.model.d.ts +132 -43
- package/dist/src/component/KgSimulator/KgSimulator.service.d.ts +32 -13
- package/dist/src/component/KgSimulator/KgSimulator.store.d.ts +54 -19
- package/dist/src/component/KgSubmit/KgSubmit.event.d.ts +8 -6
- package/dist/src/component/KgSubmit/KgSubmit.hooks.d.ts +38 -13
- package/dist/src/component/KgSubmit/KgSubmit.store.d.ts +46 -0
- package/dist/src/component/KgVar/KgVar.hooks.d.ts +5 -5
- package/dist/src/const/const.model.d.ts +6 -0
- package/package.json +2 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const t = {
|
|
2
|
+
width: 24,
|
|
3
|
+
height: 24,
|
|
4
|
+
body: '<path fill="currentColor" d="m12 17.4l-3.9 3.9q-.275.275-.7.275t-.7-.275q-.275-.275-.275-.7t.275-.7l3.875-3.875q.575-.575 1.425-.575t1.425.575L17.3 19.9q.275.275.275.7t-.275.7q-.275.275-.7.275t-.7-.275L12 17.4Zm0-10.8l3.9-3.9q.275-.275.7-.275t.7.275q.275.275.275.7t-.275.7l-3.875 3.875Q12.85 8.55 12 8.55t-1.425-.575L6.7 4.1q-.275-.275-.275-.7t.275-.7q.275-.275.7-.275t.7.275L12 6.6Z"/>'
|
|
5
|
+
};
|
|
6
|
+
export {
|
|
7
|
+
t as default
|
|
8
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
const t = {
|
|
2
|
+
width: 24,
|
|
3
|
+
height: 24,
|
|
4
|
+
body: '<path fill="currentColor" d="m12 19.15l3.875-3.875q.3-.3.7-.3t.7.3q.3.3.3.713t-.3.712l-3.85 3.875q-.575.575-1.425.575t-1.425-.575L6.7 16.7q-.3-.3-.288-.713t.313-.712q.3-.3.713-.3t.712.3L12 19.15Zm0-14.3L8.15 8.7q-.3.3-.7.288t-.7-.288q-.3-.3-.313-.712t.288-.713l3.85-3.85Q11.15 2.85 12 2.85t1.425.575l3.85 3.85q.3.3.288.713t-.313.712q-.3.275-.7.288t-.7-.288L12 4.85Z"/>'
|
|
5
|
+
};
|
|
6
|
+
export {
|
|
7
|
+
t as default
|
|
8
|
+
};
|