@elmethis/core 1.0.0-alpha.20 → 1.0.0-alpha.22
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/{Bash-DU5nZf4s.js → Bash-DMCsMJoD.js} +1 -1
- package/dist/{JavaScript-CxMJ22TW.js → JavaScript-B_lDU8ZT.js} +1 -1
- package/dist/{Rust-CB1E0kPp.js → Rust-D6faKZyi.js} +1 -1
- package/dist/{TypeScript-DIghIo6c.js → TypeScript-C3BuW_JX.js} +1 -1
- package/dist/components/icon/ElmLoginIcon.stories.d.ts +6 -0
- package/dist/components/icon/ElmLoginIcon.vue.d.ts +18 -0
- package/dist/components/others/ElmColorSample.stories.d.ts +6 -0
- package/dist/components/others/ElmColorSample.vue.d.ts +8 -0
- package/dist/components/others/ElmColorTable.stories.d.ts +6 -0
- package/dist/components/others/ElmColorTable.vue.d.ts +11 -0
- package/dist/elmethis.js +45 -42
- package/dist/elmethis.umd.cjs +19 -19
- package/dist/{index-CoKWXkXA.js → index-7YOGi1h1.js} +3210 -3034
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { openBlock as l, createElementBlock as t, createElementVNode as e } from "vue";
|
|
2
|
-
import { _ as o } from "./index-
|
|
2
|
+
import { _ as o } from "./index-7YOGi1h1.js";
|
|
3
3
|
const s = {}, r = {
|
|
4
4
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
5
|
viewBox: "0 0 128 128",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface ElmLoginIconProps {
|
|
2
|
+
/**
|
|
3
|
+
* Specifies the width of the icon.
|
|
4
|
+
*/
|
|
5
|
+
size?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Specifies whether the icon is for login or logout.
|
|
8
|
+
*/
|
|
9
|
+
isLogin?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Specifies whether the icon is loading.
|
|
12
|
+
*/
|
|
13
|
+
isLoading?: boolean;
|
|
14
|
+
}
|
|
15
|
+
declare const _default: import('vue').DefineComponent<ElmLoginIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmLoginIconProps> & Readonly<{}>, {
|
|
16
|
+
size: string;
|
|
17
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export interface ElmColorSampleProps {
|
|
2
|
+
/**
|
|
3
|
+
* The color to display.
|
|
4
|
+
*/
|
|
5
|
+
color: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<ElmColorSampleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmColorSampleProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface ElmColorTableProps {
|
|
2
|
+
/**
|
|
3
|
+
* The colors to display.
|
|
4
|
+
*/
|
|
5
|
+
colors: {
|
|
6
|
+
name: string;
|
|
7
|
+
code: string;
|
|
8
|
+
}[];
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import('vue').DefineComponent<ElmColorTableProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmColorTableProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
export default _default;
|