@elmethis/core 1.0.0-alpha.21 → 1.0.0-alpha.23
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-FmP2QG69.js → Bash-DKzxK5_l.js} +1 -1
- package/dist/{JavaScript-BwWTdzdf.js → JavaScript-Cdavf1SN.js} +1 -1
- package/dist/{Rust-D_qsTMKZ.js → Rust-CprXRX1_.js} +1 -1
- package/dist/{TypeScript-iVTasrrG.js → TypeScript-DtTJJhvZ.js} +1 -1
- package/dist/components/badge/ElmTag.stories.d.ts +6 -0
- package/dist/components/badge/ElmTag.vue.d.ts +14 -0
- package/dist/components/icon/ElmDotLoadingIcon.vue.d.ts +1 -1
- 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 +47 -43
- package/dist/elmethis.umd.cjs +24 -20
- package/dist/{index-BAirwQ5V.js → index-YC7NOXi3.js} +6566 -4322
- package/dist/index.d.ts +6 -2
- package/package.json +3 -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-YC7NOXi3.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,14 @@
|
|
|
1
|
+
export interface ElmTagProps {
|
|
2
|
+
/**
|
|
3
|
+
* The text to display in the tag.
|
|
4
|
+
*/
|
|
5
|
+
text: string;
|
|
6
|
+
/**
|
|
7
|
+
* The color of the tag.
|
|
8
|
+
*/
|
|
9
|
+
color: string;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import('vue').DefineComponent<ElmTagProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmTagProps> & Readonly<{}>, {
|
|
12
|
+
color: string;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
|
@@ -12,7 +12,7 @@ export interface ElmDotLoadingIconProps {
|
|
|
12
12
|
size?: Property.Width<string | number>;
|
|
13
13
|
}
|
|
14
14
|
declare const _default: import('vue').DefineComponent<ElmDotLoadingIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmDotLoadingIconProps> & Readonly<{}>, {
|
|
15
|
-
size: Property.Width<string | number>;
|
|
16
15
|
color: Property.BackgroundColor;
|
|
16
|
+
size: Property.Width<string | number>;
|
|
17
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
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;
|