@elmethis/core 1.0.0-alpha.85 → 1.0.0-alpha.87
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-DtVNu4Di.js → Bash-CVo8Hz3W.js} +1 -1
- package/dist/{C-B7RmhEm-.js → C-C_f_yPrO.js} +1 -1
- package/dist/{Cpp-CfWL9m_g.js → Cpp-BXySqJ46.js} +1 -1
- package/dist/{Csharp-nAdsNZdr.js → Csharp-B6Ju_7i8.js} +1 -1
- package/dist/{Css-CHkuqW90.js → Css-COEXUh5p.js} +1 -1
- package/dist/{Go-BRlpi0Da.js → Go-BcuMeS1U.js} +1 -1
- package/dist/{Html-DdvMQ2BG.js → Html-D5WGvgDQ.js} +1 -1
- package/dist/{Java-Bt68ROwe.js → Java-CE2W2TQa.js} +1 -1
- package/dist/{JavaScript-RSYKKZwJ.js → JavaScript-vjCRKZzn.js} +1 -1
- package/dist/{Json-eB1aorVu.js → Json-C7xbr18N.js} +1 -1
- package/dist/{Kotlin-D2F9AMun.js → Kotlin-CPfKE4hr.js} +1 -1
- package/dist/{Lua-DSloKjGv.js → Lua-7dO1mDsT.js} +1 -1
- package/dist/{Npm-Cq9tShbj.js → Npm-C74dZsdr.js} +1 -1
- package/dist/{Python-iF_r-_om.js → Python-CgoTKkaH.js} +1 -1
- package/dist/{Rust-BzqNJ0zM.js → Rust-6KkbXJKO.js} +1 -1
- package/dist/{Sql-PgD3XdqZ.js → Sql-CdpQ04Yl.js} +1 -1
- package/dist/{Terraform-DTcyVob5.js → Terraform-WCa3nCWv.js} +1 -1
- package/dist/{TypeScript-BGvdATLE.js → TypeScript-CrDdzIj7.js} +1 -1
- package/dist/components/inline/ElmTypingAnimation.stories.d.ts +6 -0
- package/dist/components/inline/ElmTypingAnimation.vue.d.ts +21 -0
- package/dist/components/{notion/ElmNotion.stories.d.ts → others/ElmTemplate.stories.d.ts} +2 -2
- package/dist/components/others/ElmTyping.vue.d.ts +4 -0
- package/dist/elmethis.js +38 -40
- package/dist/elmethis.umd.cjs +20 -20
- package/dist/hooks/useTyping.d.ts +17 -0
- package/dist/{index-BzUrxqjq.js → index-Dd3p52S2.js} +5388 -5948
- package/dist/index.d.ts +2 -4
- package/package.json +10 -10
- package/dist/components/notion/ElmNotion.vue.d.ts +0 -6
- package/dist/components/notion/ElmNotionRichText.vue.d.ts +0 -23
|
@@ -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-Dd3p52S2.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,6 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import { default as ElmTypingAnimation } from './ElmTypingAnimation.vue';
|
|
3
|
+
declare const meta: Meta<typeof ElmTypingAnimation>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Primary: Story;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Property } from 'csstype';
|
|
2
|
+
export interface ElmTypingAnimationProps {
|
|
3
|
+
/**
|
|
4
|
+
* The texts to display.
|
|
5
|
+
*/
|
|
6
|
+
texts: string[];
|
|
7
|
+
/**
|
|
8
|
+
* The interval between each text.
|
|
9
|
+
*/
|
|
10
|
+
interval?: number;
|
|
11
|
+
/**
|
|
12
|
+
* The font size of the text.
|
|
13
|
+
*/
|
|
14
|
+
fontSize: Property.FontSize<string | number>;
|
|
15
|
+
}
|
|
16
|
+
declare const _default: import('vue').DefineComponent<ElmTypingAnimationProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmTypingAnimationProps> & Readonly<{}>, {
|
|
17
|
+
texts: string[];
|
|
18
|
+
interval: number;
|
|
19
|
+
fontSize: Property.FontSize<string | number>;
|
|
20
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
export default _default;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
-
import { default as
|
|
3
|
-
declare const meta: Meta<typeof
|
|
2
|
+
import { default as ElmTyping } from './ElmTyping.vue';
|
|
3
|
+
declare const meta: Meta<typeof ElmTyping>;
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof meta>;
|
|
6
6
|
export declare const Primary: Story;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export interface ElmTyping {
|
|
2
|
+
}
|
|
3
|
+
declare const _default: import('vue').DefineComponent<ElmTyping, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmTyping> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
4
|
+
export default _default;
|