@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.
@@ -1,5 +1,5 @@
1
1
  import { openBlock as t, createElementBlock as e, createElementVNode as c } from "vue";
2
- import { _ as o } from "./index-DKkBrO1O.js";
2
+ import { _ as o } from "./index-dKFEjnoD.js";
3
3
  const n = {}, s = {
4
4
  xmlns: "http://www.w3.org/2000/svg",
5
5
  viewBox: "0 0 128 128"
@@ -1,5 +1,5 @@
1
1
  import { openBlock as e, createElementBlock as l, createElementVNode as t } from "vue";
2
- import { _ as o } from "./index-DKkBrO1O.js";
2
+ import { _ as o } from "./index-dKFEjnoD.js";
3
3
  const r = {}, n = {
4
4
  xmlns: "http://www.w3.org/2000/svg",
5
5
  viewBox: "0 0 128 128"
@@ -1,5 +1,5 @@
1
1
  import { openBlock as l, createElementBlock as t, createElementVNode as e } from "vue";
2
- import { _ as o } from "./index-DKkBrO1O.js";
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",
@@ -1,5 +1,5 @@
1
1
  import { openBlock as t, createElementBlock as e, createElementVNode as a } from "vue";
2
- import { _ as o } from "./index-DKkBrO1O.js";
2
+ import { _ as o } from "./index-dKFEjnoD.js";
3
3
  const l = {}, 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
+ import { Meta, StoryObj } from '@storybook/vue3';
2
+ import { default as ElmParallax } from './ElmParallax.vue';
3
+ declare const meta: Meta<typeof ElmParallax>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Primary: Story;
@@ -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;
@@ -6,3 +6,5 @@ type Story = StoryObj<typeof meta>;
6
6
  export declare const Primary: Story;
7
7
  export declare const WithoutDate: Story;
8
8
  export declare const Card: Story;
9
+ export declare const Square: Story;
10
+ export declare const SquareCard: Story;
@@ -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;