@elmethis/core 1.0.0-alpha.7 → 1.0.0-alpha.9
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-Bv0s-qIR.js → Bash-7Ao8EoX1.js} +1 -1
- package/dist/{JavaScript-B7PrlpRu.js → JavaScript-CSIyUm0J.js} +1 -1
- package/dist/{Rust-BufOEXEo.js → Rust-CzYpgz5B.js} +1 -1
- package/dist/{TypeScript-Ci8WYeYq.js → TypeScript-CrWcScZq.js} +1 -1
- package/dist/bg1.webp +0 -0
- package/dist/bg2.webp +0 -0
- package/dist/components/containments/ElmParallax.stories.d.ts +6 -0
- package/dist/components/containments/ElmParallax.vue.d.ts +6 -0
- package/dist/components/data/ElmProgress.stories.d.ts +9 -0
- package/dist/components/data/ElmProgress.vue.d.ts +33 -0
- package/dist/components/navigation/ElmBookmark.stories.d.ts +2 -0
- package/dist/components/navigation/ElmTableOfContents.stories.d.ts +7 -0
- package/dist/components/navigation/ElmTableOfContents.vue.d.ts +9 -0
- package/dist/elmethis.js +28 -24
- package/dist/elmethis.umd.cjs +19 -19
- package/dist/{index-DKkBrO1O.js → index-dKFEjnoD.js} +2326 -2212
- package/dist/index.d.ts +9 -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-dKFEjnoD.js";
|
|
3
3
|
const s = {}, r = {
|
|
4
4
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5
5
|
viewBox: "0 0 128 128",
|
package/dist/bg1.webp
ADDED
|
Binary file
|
package/dist/bg2.webp
ADDED
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export interface ElmParallaxProps {
|
|
2
|
+
imageUrl1: string;
|
|
3
|
+
imageUrl2: string;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import('vue').DefineComponent<ElmParallaxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmParallaxProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import { default as ElmProgress } from './ElmProgress.vue';
|
|
3
|
+
declare const meta: Meta<typeof ElmProgress>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Primary: Story;
|
|
7
|
+
export declare const WithBuffer: Story;
|
|
8
|
+
export declare const Bold: Story;
|
|
9
|
+
export declare const WithColor: Story;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Property } from 'csstype';
|
|
2
|
+
export interface ElmProgressProps {
|
|
3
|
+
/**
|
|
4
|
+
* The current value of the progress.
|
|
5
|
+
*/
|
|
6
|
+
value: number;
|
|
7
|
+
/**
|
|
8
|
+
* The buffer value of the progress.
|
|
9
|
+
*/
|
|
10
|
+
buffer?: number;
|
|
11
|
+
/**
|
|
12
|
+
* The maximum value of the progress.
|
|
13
|
+
*/
|
|
14
|
+
max?: number;
|
|
15
|
+
/**
|
|
16
|
+
* The weight of the progress.
|
|
17
|
+
*/
|
|
18
|
+
weight: Property.Height<string | number>;
|
|
19
|
+
/**
|
|
20
|
+
* Whether the progress should be round.
|
|
21
|
+
*/
|
|
22
|
+
round?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* The color of the progress.
|
|
25
|
+
*/
|
|
26
|
+
color?: string;
|
|
27
|
+
}
|
|
28
|
+
declare const _default: import('vue').DefineComponent<ElmProgressProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmProgressProps> & Readonly<{}>, {
|
|
29
|
+
max: number;
|
|
30
|
+
weight: Property.Height<string | number>;
|
|
31
|
+
round: boolean;
|
|
32
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import { default as ElmTableOfContents } from './ElmTableOfContents.vue';
|
|
3
|
+
declare const meta: Meta<typeof ElmTableOfContents>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Primary: Story;
|
|
7
|
+
export declare const Deep: Story;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface ElmTableOfContentsProps {
|
|
2
|
+
headings: Array<{
|
|
3
|
+
level: 1 | 2 | 3 | 4 | 5 | 6;
|
|
4
|
+
text: string;
|
|
5
|
+
id?: string;
|
|
6
|
+
}>;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<ElmTableOfContentsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmTableOfContentsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
export default _default;
|