@elmethis/core 1.0.0-alpha.194 → 1.0.0-alpha.195
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.
|
@@ -5,7 +5,7 @@ export interface ElmTextFieldProps {
|
|
|
5
5
|
placeholder?: string;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
loading?: boolean;
|
|
8
|
-
icon?: "
|
|
8
|
+
icon?: "text" | "pen" | "email" | "user" | "lock" | "key" | "earth" | "tag" | "archive" | "link";
|
|
9
9
|
isPassword?: boolean;
|
|
10
10
|
required?: boolean;
|
|
11
11
|
}
|
|
@@ -22,7 +22,6 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
22
22
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
required: boolean;
|
|
25
|
-
icon: "default" | "mail" | "user" | "password";
|
|
26
25
|
loading: boolean;
|
|
27
26
|
disabled: boolean;
|
|
28
27
|
isPassword: boolean;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineComponent, mergeModels, ref, useModel, createElementBlock, openBlock, normalizeStyle, normalizeClass, createElementVNode, createBlock, createCommentVNode, unref, toDisplayString,
|
|
1
|
+
import { defineComponent, mergeModels, ref, useModel, createElementBlock, openBlock, normalizeStyle, normalizeClass, createElementVNode, createBlock, createCommentVNode, unref, toDisplayString, withDirectives, vModelDynamic, createVNode } from "vue";
|
|
2
2
|
import ElmInlineText from "../typography/ElmInlineText.vue.mjs";
|
|
3
3
|
import { nanoid } from "nanoid";
|
|
4
4
|
import ElmMdiIcon from "../icon/ElmMdiIcon.vue.mjs";
|
|
5
|
-
import {
|
|
5
|
+
import { mdiLinkVariant, mdiArchive, mdiTag, mdiEarth, mdiKey, mdiLock, mdiAccount, mdiEmail, mdiPen, mdiText, mdiEyeOutline, mdiEyeOffOutline, mdiBackspaceOutline } from "../../node_modules/.pnpm/@mdi_js@7.4.47/node_modules/@mdi/js/mdi.mjs";
|
|
6
6
|
const _hoisted_1 = ["for"];
|
|
7
7
|
const _hoisted_2 = ["id", "type", "placeholder", "disabled", "aria-required"];
|
|
8
8
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -14,7 +14,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
14
14
|
placeholder: {},
|
|
15
15
|
disabled: { type: Boolean, default: false },
|
|
16
16
|
loading: { type: Boolean, default: false },
|
|
17
|
-
icon: {
|
|
17
|
+
icon: {},
|
|
18
18
|
isPassword: { type: Boolean, default: false },
|
|
19
19
|
required: { type: Boolean, default: false }
|
|
20
20
|
}, {
|
|
@@ -36,10 +36,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
36
36
|
type.value = type.value === "text" ? "password" : "text";
|
|
37
37
|
};
|
|
38
38
|
const iconMap = {
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
text: mdiText,
|
|
40
|
+
pen: mdiPen,
|
|
41
|
+
email: mdiEmail,
|
|
41
42
|
user: mdiAccount,
|
|
42
|
-
|
|
43
|
+
lock: mdiLock,
|
|
44
|
+
key: mdiKey,
|
|
45
|
+
earth: mdiEarth,
|
|
46
|
+
tag: mdiTag,
|
|
47
|
+
archive: mdiArchive,
|
|
48
|
+
link: mdiLinkVariant
|
|
43
49
|
};
|
|
44
50
|
return (_ctx, _cache) => {
|
|
45
51
|
return openBlock(), createElementBlock("div", {
|
|
@@ -73,11 +79,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
73
79
|
createElementVNode("div", {
|
|
74
80
|
class: normalizeClass(_ctx.$style.body)
|
|
75
81
|
}, [
|
|
76
|
-
|
|
82
|
+
_ctx.icon ? (openBlock(), createBlock(ElmMdiIcon, {
|
|
83
|
+
key: 0,
|
|
77
84
|
d: iconMap[_ctx.icon],
|
|
78
85
|
size: "1.5rem",
|
|
79
86
|
color: "gray"
|
|
80
|
-
}, null, 8, ["d"]),
|
|
87
|
+
}, null, 8, ["d"])) : createCommentVNode("", true),
|
|
81
88
|
withDirectives(createElementVNode("input", {
|
|
82
89
|
id: unref(id),
|
|
83
90
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => input.value = $event),
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,8 @@ export type { ElmLanguageIconProps } from './components/icon/ElmLanguageIcon.vue
|
|
|
58
58
|
export { default as ElmLanguageIcon } from './components/icon/ElmLanguageIcon.vue';
|
|
59
59
|
export type { ElmLoginIconProps } from './components/icon/ElmLoginIcon.vue';
|
|
60
60
|
export { default as ElmLoginIcon } from './components/icon/ElmLoginIcon.vue';
|
|
61
|
+
export type { ElmMdiIconProps } from './components/icon/ElmMdiIcon.vue';
|
|
62
|
+
export { default as ElmMdiIcon } from './components/icon/ElmMdiIcon.vue';
|
|
61
63
|
export type { ElmToggleThemeProps } from './components/icon/ElmToggleTheme.vue';
|
|
62
64
|
export { default as ElmToggleTheme } from './components/icon/ElmToggleTheme.vue';
|
|
63
65
|
export type { ElmInlineTextProps } from './components/typography/ElmInlineText.vue';
|
package/dist/index.mjs
CHANGED
|
@@ -40,64 +40,66 @@ import { default as default28 } from "./components/icon/ElmCubeIcon.vue.mjs";
|
|
|
40
40
|
import { default as default29 } from "./components/icon/ElmDotLoadingIcon.vue.mjs";
|
|
41
41
|
import { default as default30 } from "./components/icon/ElmLanguageIcon.vue.mjs";
|
|
42
42
|
import { default as default31 } from "./components/icon/ElmLoginIcon.vue.mjs";
|
|
43
|
-
import { default as default32 } from "./components/icon/
|
|
44
|
-
import { default as default33 } from "./components/
|
|
45
|
-
import { default as default34 } from "./components/
|
|
46
|
-
import { default as default35
|
|
47
|
-
import { default as default37 } from "./components/
|
|
48
|
-
import { default as default38 } from "./components/navigation/
|
|
49
|
-
import { default as default39 } from "./components/navigation/
|
|
50
|
-
import { default as default40 } from "./components/navigation/
|
|
51
|
-
import { default as default41 } from "./components/
|
|
52
|
-
import { default as default42 } from "./components/others/
|
|
53
|
-
import { default as default43 } from "./components/others/
|
|
54
|
-
import { default as default44 } from "./components/
|
|
55
|
-
import { default as default45 } from "./components/table/
|
|
56
|
-
import { default as default46 } from "./components/table/
|
|
57
|
-
import { default as default47 } from "./components/table/
|
|
58
|
-
import { default as default48 } from "./components/table/
|
|
59
|
-
import { default as default49 } from "./components/
|
|
60
|
-
import { default as default50 } from "./components/typography/
|
|
61
|
-
import { default as default51 } from "./components/typography/
|
|
62
|
-
import { default as default52 } from "./components/typography/
|
|
63
|
-
import { default as default53 } from "./components/typography/
|
|
43
|
+
import { default as default32 } from "./components/icon/ElmMdiIcon.vue.mjs";
|
|
44
|
+
import { default as default33 } from "./components/icon/ElmToggleTheme.vue.mjs";
|
|
45
|
+
import { default as default34 } from "./components/typography/ElmInlineText.vue.mjs";
|
|
46
|
+
import { default as default35 } from "./components/media/ElmFile.vue.mjs";
|
|
47
|
+
import { default as default36, default as default37 } from "./components/media/ElmImage.vue.mjs";
|
|
48
|
+
import { default as default38 } from "./components/navigation/ElmBookmark.vue.mjs";
|
|
49
|
+
import { default as default39 } from "./components/navigation/ElmBreadcrumb.vue.mjs";
|
|
50
|
+
import { default as default40 } from "./components/navigation/ElmPagetop.vue.mjs";
|
|
51
|
+
import { default as default41 } from "./components/navigation/ElmTableOfContents.vue.mjs";
|
|
52
|
+
import { default as default42 } from "./components/others/ElmColorSample.vue.mjs";
|
|
53
|
+
import { default as default43 } from "./components/others/ElmColorTable.vue.mjs";
|
|
54
|
+
import { default as default44 } from "./components/others/ElmJsonComponentRenderer.vue.mjs";
|
|
55
|
+
import { default as default45 } from "./components/table/ElmTable.vue.mjs";
|
|
56
|
+
import { default as default46 } from "./components/table/ElmTableHeader.vue.mjs";
|
|
57
|
+
import { default as default47 } from "./components/table/ElmTableBody.vue.mjs";
|
|
58
|
+
import { default as default48 } from "./components/table/ElmTableRow.vue.mjs";
|
|
59
|
+
import { default as default49 } from "./components/table/ElmTableCell.vue.mjs";
|
|
60
|
+
import { default as default50 } from "./components/typography/ElmBlockQuote.vue.mjs";
|
|
61
|
+
import { default as default51 } from "./components/typography/ElmCallout.vue.mjs";
|
|
62
|
+
import { default as default52 } from "./components/typography/ElmDivider.vue.mjs";
|
|
63
|
+
import { default as default53 } from "./components/typography/ElmParagraph.vue.mjs";
|
|
64
|
+
import { default as default54 } from "./components/typography/ElmList.vue.mjs";
|
|
64
65
|
|
|
65
66
|
import { useElmethisTheme } from "./hooks/useElmethisTheme.mjs";
|
|
66
67
|
import { useTyping } from "./hooks/useTyping.mjs";
|
|
67
68
|
export {
|
|
68
69
|
default26 as ElmArrowIcon,
|
|
69
70
|
default17 as ElmBlockFallback,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
default36 as ElmBlockImage,
|
|
72
|
+
default50 as ElmBlockQuote,
|
|
73
|
+
default38 as ElmBookmark,
|
|
73
74
|
default27 as ElmBookmarkIcon,
|
|
74
|
-
|
|
75
|
+
default39 as ElmBreadcrumb,
|
|
75
76
|
default20 as ElmButton,
|
|
76
|
-
|
|
77
|
+
default51 as ElmCallout,
|
|
77
78
|
default21 as ElmCheckbox,
|
|
78
79
|
default2 as ElmCodeBlock,
|
|
79
|
-
|
|
80
|
-
|
|
80
|
+
default42 as ElmColorSample,
|
|
81
|
+
default43 as ElmColorTable,
|
|
81
82
|
default4 as ElmColumn,
|
|
82
83
|
default5 as ElmColumnList,
|
|
83
84
|
default28 as ElmCubeIcon,
|
|
84
85
|
default6 as ElmDesktopWindow,
|
|
85
|
-
|
|
86
|
+
default52 as ElmDivider,
|
|
86
87
|
default29 as ElmDotLoadingIcon,
|
|
87
|
-
|
|
88
|
+
default35 as ElmFile,
|
|
88
89
|
default25 as ElmFragmentIdentifier,
|
|
89
90
|
default24 as ElmHeading,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
default37 as ElmImage,
|
|
92
|
+
default34 as ElmInlineText,
|
|
93
|
+
default44 as ElmJsonComponentRenderer,
|
|
93
94
|
default3 as ElmKatex,
|
|
94
95
|
default30 as ElmLanguageIcon,
|
|
95
|
-
|
|
96
|
+
default54 as ElmList,
|
|
96
97
|
default31 as ElmLoginIcon,
|
|
98
|
+
default32 as ElmMdiIcon,
|
|
97
99
|
default7 as ElmModal,
|
|
98
100
|
default14 as ElmMultiProgress,
|
|
99
|
-
|
|
100
|
-
|
|
101
|
+
default40 as ElmPagetop,
|
|
102
|
+
default53 as ElmParagraph,
|
|
101
103
|
default8 as ElmParallax,
|
|
102
104
|
default13 as ElmProgress,
|
|
103
105
|
default16 as ElmRectangleWave,
|
|
@@ -106,15 +108,15 @@ export {
|
|
|
106
108
|
default18 as ElmSpinner,
|
|
107
109
|
default15 as ElmStatusMessage,
|
|
108
110
|
default22 as ElmSwitch,
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
111
|
+
default45 as ElmTable,
|
|
112
|
+
default47 as ElmTableBody,
|
|
113
|
+
default49 as ElmTableCell,
|
|
114
|
+
default46 as ElmTableHeader,
|
|
115
|
+
default41 as ElmTableOfContents,
|
|
116
|
+
default48 as ElmTableRow,
|
|
115
117
|
default23 as ElmTextField,
|
|
116
118
|
default11 as ElmToggle,
|
|
117
|
-
|
|
119
|
+
default33 as ElmToggleTheme,
|
|
118
120
|
default12 as ElmTooltip,
|
|
119
121
|
default19 as ElmUnsupportedBlock,
|
|
120
122
|
useElmethisTheme,
|
|
@@ -3,6 +3,7 @@ var mdiAlert = "M13 14H11V9H13M13 18H11V16H13M1 21H23L12 2L1 21Z";
|
|
|
3
3
|
var mdiAlertCircle = "M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z";
|
|
4
4
|
var mdiAlertOctagram = "M2.2,16.06L3.88,12L2.2,7.94L6.26,6.26L7.94,2.2L12,3.88L16.06,2.2L17.74,6.26L21.8,7.94L20.12,12L21.8,16.06L17.74,17.74L16.06,21.8L12,20.12L7.94,21.8L6.26,17.74L2.2,16.06M13,17V15H11V17H13M13,13V7H11V13H13Z";
|
|
5
5
|
var mdiAnchor = "M12 2A3 3 0 0 0 9 5A3 3 0 0 0 11 7.83V9H8V11H11V19.92C10.26 19.79 9.5 19.58 8.79 19.27C8.05 18.95 7.4 18.56 6.82 18.09C6.24 17.62 5.78 17.11 5.44 16.55L7 15L3 12V15C3 15.97 3.27 16.88 3.82 17.72C4.37 18.56 5.09 19.31 6 19.95C6.87 20.59 7.84 21.09 8.88 21.45C9.93 21.81 10.97 22 12 22C13.03 22 14.07 21.8 15.12 21.44C16.16 21.08 17.13 20.58 18 19.95C18.92 19.31 19.63 18.57 20.18 17.72C20.73 16.88 21 15.97 21 15V12L17 15L18.56 16.55C18.22 17.11 17.76 17.62 17.18 18.09C16.6 18.56 15.95 18.95 15.21 19.27C14.5 19.58 13.74 19.79 13 19.92V11H16V9H13V7.82A3 3 0 0 0 15 5A3 3 0 0 0 12 2M12 4A1 1 0 0 1 13 5A1 1 0 0 1 12 6A1 1 0 0 1 11 5A1 1 0 0 1 12 4Z";
|
|
6
|
+
var mdiArchive = "M3,3H21V7H3V3M4,8H20V21H4V8M9.5,11A0.5,0.5 0 0,0 9,11.5V13H15V11.5A0.5,0.5 0 0,0 14.5,11H9.5Z";
|
|
6
7
|
var mdiBackspaceOutline = "M19,15.59L17.59,17L14,13.41L10.41,17L9,15.59L12.59,12L9,8.41L10.41,7L14,10.59L17.59,7L19,8.41L15.41,12L19,15.59M22,3A2,2 0 0,1 24,5V19A2,2 0 0,1 22,21H7C6.31,21 5.77,20.64 5.41,20.11L0,12L5.41,3.88C5.77,3.35 6.31,3 7,3H22M22,5H7L2.28,12L7,19H22V5Z";
|
|
7
8
|
var mdiCalendarMonth = "M9,10V12H7V10H9M13,10V12H11V10H13M17,10V12H15V10H17M19,3A2,2 0 0,1 21,5V19A2,2 0 0,1 19,21H5C3.89,21 3,20.1 3,19V5A2,2 0 0,1 5,3H6V1H8V3H16V1H18V3H19M19,19V8H5V19H19M9,14V16H7V14H9M13,14V16H11V14H13M17,14V16H15V14H17Z";
|
|
8
9
|
var mdiCalendarRefresh = "M19 3H18V1H16V3H8V1H6V3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H14C13.4 20.5 12.9 19.8 12.5 19H5V8H19V10.6C19.7 10.7 20.4 10.9 21 11.3V5C21 3.9 20.1 3 19 3M18 12.5C19.1 12.5 20.1 12.9 20.8 13.7L22 12.5V16.5H18L19.8 14.7C19.3 14.3 18.7 14 18 14C16.6 14 15.5 15.1 15.5 16.5S16.6 19 18 19C18.8 19 19.5 18.6 20 18H21.7C21.1 19.5 19.7 20.5 18 20.5C15.8 20.5 14 18.7 14 16.5S15.8 12.5 18 12.5Z";
|
|
@@ -14,10 +15,9 @@ var mdiClipboardCheckMultipleOutline = "M4 7V21H18V23H4C2.9 23 2 22.1 2 21V7H4M1
|
|
|
14
15
|
var mdiClipboardMultipleOutline = "M4 7V21H18V23H4C2.9 23 2 22.1 2 21V7H4M20 3C21.1 3 22 3.9 22 5V17C22 18.1 21.1 19 20 19H8C6.9 19 6 18.1 6 17V5C6 3.9 6.9 3 8 3H11.18C11.6 1.84 12.7 1 14 1C15.3 1 16.4 1.84 16.82 3H20M14 3C13.45 3 13 3.45 13 4C13 4.55 13.45 5 14 5C14.55 5 15 4.55 15 4C15 3.45 14.55 3 14 3M10 7V5H8V17H20V5H18V7H10Z";
|
|
15
16
|
var mdiCloseCircleOutline = "M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2C6.47,2 2,6.47 2,12C2,17.53 6.47,22 12,22C17.53,22 22,17.53 22,12C22,6.47 17.53,2 12,2M14.59,8L12,10.59L9.41,8L8,9.41L10.59,12L8,14.59L9.41,16L12,13.41L14.59,16L16,14.59L13.41,12L16,9.41L14.59,8Z";
|
|
16
17
|
var mdiCodeJson = "M5,3H7V5H5V10A2,2 0 0,1 3,12A2,2 0 0,1 5,14V19H7V21H5C3.93,20.73 3,20.1 3,19V15A2,2 0 0,0 1,13H0V11H1A2,2 0 0,0 3,9V5A2,2 0 0,1 5,3M19,3A2,2 0 0,1 21,5V9A2,2 0 0,0 23,11H24V13H23A2,2 0 0,0 21,15V19A2,2 0 0,1 19,21H17V19H19V14A2,2 0 0,1 21,12A2,2 0 0,1 19,10V5H17V3H19M12,15A1,1 0 0,1 13,16A1,1 0 0,1 12,17A1,1 0 0,1 11,16A1,1 0 0,1 12,15M8,15A1,1 0 0,1 9,16A1,1 0 0,1 8,17A1,1 0 0,1 7,16A1,1 0 0,1 8,15M16,15A1,1 0 0,1 17,16A1,1 0 0,1 16,17A1,1 0 0,1 15,16A1,1 0 0,1 16,15Z";
|
|
17
|
-
var mdiCursorText = "M13,19A1,1 0 0,0 14,20H16V22H13.5C12.95,22 12,21.55 12,21C12,21.55 11.05,22 10.5,22H8V20H10A1,1 0 0,0 11,19V5A1,1 0 0,0 10,4H8V2H10.5C11.05,2 12,2.45 12,3C12,2.45 12.95,2 13.5,2H16V4H14A1,1 0 0,0 13,5V19Z";
|
|
18
18
|
var mdiDownload = "M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z";
|
|
19
19
|
var mdiEarth = "M17.9,17.39C17.64,16.59 16.89,16 16,16H15V13A1,1 0 0,0 14,12H8V10H10A1,1 0 0,0 11,9V7H13A2,2 0 0,0 15,5V4.59C17.93,5.77 20,8.64 20,12C20,14.08 19.2,15.97 17.9,17.39M11,19.93C7.05,19.44 4,16.08 4,12C4,11.38 4.08,10.78 4.21,10.21L9,15V16A2,2 0 0,0 11,18M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z";
|
|
20
|
-
var
|
|
20
|
+
var mdiEmail = "M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z";
|
|
21
21
|
var mdiEyeOffOutline = "M2,5.27L3.28,4L20,20.72L18.73,22L15.65,18.92C14.5,19.3 13.28,19.5 12,19.5C7,19.5 2.73,16.39 1,12C1.69,10.24 2.79,8.69 4.19,7.46L2,5.27M12,9A3,3 0 0,1 15,12C15,12.35 14.94,12.69 14.83,13L11,9.17C11.31,9.06 11.65,9 12,9M12,4.5C17,4.5 21.27,7.61 23,12C22.18,14.08 20.79,15.88 19,17.19L17.58,15.76C18.94,14.82 20.06,13.54 20.82,12C19.17,8.64 15.76,6.5 12,6.5C10.91,6.5 9.84,6.68 8.84,7L7.3,5.47C8.74,4.85 10.33,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C12.69,17.5 13.37,17.43 14,17.29L11.72,15C10.29,14.85 9.15,13.71 9,12.28L5.6,8.87C4.61,9.72 3.78,10.78 3.18,12Z";
|
|
22
22
|
var mdiEyeOutline = "M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9M12,4.5C17,4.5 21.27,7.61 23,12C21.27,16.39 17,19.5 12,19.5C7,19.5 2.73,16.39 1,12C2.73,7.61 7,4.5 12,4.5M3.18,12C4.83,15.36 8.24,17.5 12,17.5C15.76,17.5 19.17,15.36 20.82,12C19.17,8.64 15.76,6.5 12,6.5C8.24,6.5 4.83,8.64 3.18,12Z";
|
|
23
23
|
var mdiFileDocument = "M13,9H18.5L13,3.5V9M6,2H14L20,8V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V4C4,2.89 4.89,2 6,2M15,18V16H6V18H15M18,14V12H6V14H18Z";
|
|
@@ -27,25 +27,30 @@ var mdiFormatQuoteClose = "M14,17H17L19,13V7H13V13H16M6,17H9L11,13V7H5V13H8L6,17
|
|
|
27
27
|
var mdiFormatQuoteOpen = "M10,7L8,11H11V17H5V11L7,7H10M18,7L16,11H19V17H13V11L15,7H18Z";
|
|
28
28
|
var mdiHome = "M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z";
|
|
29
29
|
var mdiInformation = "M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z";
|
|
30
|
+
var mdiKey = "M7 14C5.9 14 5 13.1 5 12S5.9 10 7 10 9 10.9 9 12 8.1 14 7 14M12.6 10C11.8 7.7 9.6 6 7 6C3.7 6 1 8.7 1 12S3.7 18 7 18C9.6 18 11.8 16.3 12.6 14H16V18H20V14H23V10H12.6Z";
|
|
30
31
|
var mdiLightbulbOn = "M12,6A6,6 0 0,1 18,12C18,14.22 16.79,16.16 15,17.2V19A1,1 0 0,1 14,20H10A1,1 0 0,1 9,19V17.2C7.21,16.16 6,14.22 6,12A6,6 0 0,1 12,6M14,21V22A1,1 0 0,1 13,23H11A1,1 0 0,1 10,22V21H14M20,11H23V13H20V11M1,11H4V13H1V11M13,1V4H11V1H13M4.92,3.5L7.05,5.64L5.63,7.05L3.5,4.93L4.92,3.5M16.95,5.63L19.07,3.5L20.5,4.93L18.37,7.05L16.95,5.63Z";
|
|
31
32
|
var mdiLinkVariant = "M10.59,13.41C11,13.8 11,14.44 10.59,14.83C10.2,15.22 9.56,15.22 9.17,14.83C7.22,12.88 7.22,9.71 9.17,7.76V7.76L12.71,4.22C14.66,2.27 17.83,2.27 19.78,4.22C21.73,6.17 21.73,9.34 19.78,11.29L18.29,12.78C18.3,11.96 18.17,11.14 17.89,10.36L18.36,9.88C19.54,8.71 19.54,6.81 18.36,5.64C17.19,4.46 15.29,4.46 14.12,5.64L10.59,9.17C9.41,10.34 9.41,12.24 10.59,13.41M13.41,9.17C13.8,8.78 14.44,8.78 14.83,9.17C16.78,11.12 16.78,14.29 14.83,16.24V16.24L11.29,19.78C9.34,21.73 6.17,21.73 4.22,19.78C2.27,17.83 2.27,14.66 4.22,12.71L5.71,11.22C5.7,12.04 5.83,12.86 6.11,13.65L5.64,14.12C4.46,15.29 4.46,17.19 5.64,18.36C6.81,19.54 8.71,19.54 9.88,18.36L13.41,14.83C14.59,13.66 14.59,11.76 13.41,10.59C13,10.2 13,9.56 13.41,9.17Z";
|
|
32
33
|
var mdiLoading = "M12,4V2A10,10 0 0,0 2,12H4A8,8 0 0,1 12,4Z";
|
|
33
|
-
var
|
|
34
|
+
var mdiLock = "M12,17A2,2 0 0,0 14,15C14,13.89 13.1,13 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10C4,8.89 4.9,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z";
|
|
34
35
|
var mdiLoginVariant = "M19,3H5C3.89,3 3,3.89 3,5V9H5V5H19V19H5V15H3V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M10.08,15.58L11.5,17L16.5,12L11.5,7L10.08,8.41L12.67,11H3V13H12.67L10.08,15.58Z";
|
|
35
36
|
var mdiLogoutVariant = "M14.08,15.59L16.67,13H7V11H16.67L14.08,8.41L15.5,7L20.5,12L15.5,17L14.08,15.59M19,3A2,2 0 0,1 21,5V9.67L19,7.67V5H5V19H19V16.33L21,14.33V19A2,2 0 0,1 19,21H5C3.89,21 3,20.1 3,19V5C3,3.89 3.89,3 5,3H19Z";
|
|
36
37
|
var mdiMenuDown = "M7,10L12,15L17,10H7Z";
|
|
37
38
|
var mdiMessageImageOutline = "M20 2H4C2.9 2 2 2.9 2 4V22L6 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2M20 16H5.2L4 17.2V4H20V16M5 14L8.5 9.5L11 12.5L14.5 8L19 14";
|
|
38
39
|
var mdiOpenInNew = "M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z";
|
|
40
|
+
var mdiPen = "M20.71,7.04C20.37,7.38 20.04,7.71 20.03,8.04C20,8.36 20.34,8.69 20.66,9C21.14,9.5 21.61,9.95 21.59,10.44C21.57,10.93 21.06,11.44 20.55,11.94L16.42,16.08L15,14.66L19.25,10.42L18.29,9.46L16.87,10.87L13.12,7.12L16.96,3.29C17.35,2.9 18,2.9 18.37,3.29L20.71,5.63C21.1,6 21.1,6.65 20.71,7.04M3,17.25L12.56,7.68L16.31,11.43L6.75,21H3V17.25Z";
|
|
39
41
|
var mdiPlus = "M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z";
|
|
40
42
|
var mdiReload = "M2 12C2 16.97 6.03 21 11 21C13.39 21 15.68 20.06 17.4 18.4L15.9 16.9C14.63 18.25 12.86 19 11 19C4.76 19 1.64 11.46 6.05 7.05C10.46 2.64 18 5.77 18 12H15L19 16H19.1L23 12H20C20 7.03 15.97 3 11 3C6.03 3 2 7.03 2 12Z";
|
|
41
43
|
var mdiShieldAlert = "M12,1L3,5V11C3,16.55 6.84,21.74 12,23C17.16,21.74 21,16.55 21,11V5M11,7H13V13H11M11,15H13V17H11";
|
|
42
44
|
var mdiTable = "M5,4H19A2,2 0 0,1 21,6V18A2,2 0 0,1 19,20H5A2,2 0 0,1 3,18V6A2,2 0 0,1 5,4M5,8V12H11V8H5M13,8V12H19V8H13M5,14V18H11V14H5M13,14V18H19V14H13Z";
|
|
45
|
+
var mdiTag = "M5.5,7A1.5,1.5 0 0,1 4,5.5A1.5,1.5 0 0,1 5.5,4A1.5,1.5 0 0,1 7,5.5A1.5,1.5 0 0,1 5.5,7M21.41,11.58L12.41,2.58C12.05,2.22 11.55,2 11,2H4C2.89,2 2,2.89 2,4V11C2,11.55 2.22,12.05 2.59,12.41L11.58,21.41C11.95,21.77 12.45,22 13,22C13.55,22 14.05,21.77 14.41,21.41L21.41,14.41C21.78,14.05 22,13.55 22,13C22,12.44 21.77,11.94 21.41,11.58Z";
|
|
46
|
+
var mdiText = "M21,6V8H3V6H21M3,18H12V16H3V18M3,13H21V11H3V13Z";
|
|
43
47
|
export {
|
|
44
48
|
mdiAccount,
|
|
45
49
|
mdiAlert,
|
|
46
50
|
mdiAlertCircle,
|
|
47
51
|
mdiAlertOctagram,
|
|
48
52
|
mdiAnchor,
|
|
53
|
+
mdiArchive,
|
|
49
54
|
mdiBackspaceOutline,
|
|
50
55
|
mdiCalendarMonth,
|
|
51
56
|
mdiCalendarRefresh,
|
|
@@ -57,10 +62,9 @@ export {
|
|
|
57
62
|
mdiClipboardMultipleOutline,
|
|
58
63
|
mdiCloseCircleOutline,
|
|
59
64
|
mdiCodeJson,
|
|
60
|
-
mdiCursorText,
|
|
61
65
|
mdiDownload,
|
|
62
66
|
mdiEarth,
|
|
63
|
-
|
|
67
|
+
mdiEmail,
|
|
64
68
|
mdiEyeOffOutline,
|
|
65
69
|
mdiEyeOutline,
|
|
66
70
|
mdiFileDocument,
|
|
@@ -70,17 +74,21 @@ export {
|
|
|
70
74
|
mdiFormatQuoteOpen,
|
|
71
75
|
mdiHome,
|
|
72
76
|
mdiInformation,
|
|
77
|
+
mdiKey,
|
|
73
78
|
mdiLightbulbOn,
|
|
74
79
|
mdiLinkVariant,
|
|
75
80
|
mdiLoading,
|
|
76
|
-
|
|
81
|
+
mdiLock,
|
|
77
82
|
mdiLoginVariant,
|
|
78
83
|
mdiLogoutVariant,
|
|
79
84
|
mdiMenuDown,
|
|
80
85
|
mdiMessageImageOutline,
|
|
81
86
|
mdiOpenInNew,
|
|
87
|
+
mdiPen,
|
|
82
88
|
mdiPlus,
|
|
83
89
|
mdiReload,
|
|
84
90
|
mdiShieldAlert,
|
|
85
|
-
mdiTable
|
|
91
|
+
mdiTable,
|
|
92
|
+
mdiTag,
|
|
93
|
+
mdiText
|
|
86
94
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elmethis/core",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.195",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"postcss": "^8.5.3",
|
|
47
47
|
"postcss-preset-env": "^10.1.6",
|
|
48
48
|
"sass": "^1.87.0",
|
|
49
|
-
"vite": "^6.3.
|
|
49
|
+
"vite": "^6.3.4",
|
|
50
50
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
51
51
|
"vite-plugin-dts": "^4.5.3",
|
|
52
52
|
"vue-tsc": "^2.2.10"
|