@elmethis/core 1.0.0-alpha.86 → 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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/core",
3
- "version": "1.0.0-alpha.86",
3
+ "version": "1.0.0-alpha.87",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -27,10 +27,10 @@
27
27
  "@iconify/vue": "^4.1.2",
28
28
  "@notionhq/client": "^2.2.15",
29
29
  "@storybook/addon-essentials": "^8.4.5",
30
- "@storybook/addon-interactions": "^8.4.5",
31
- "@storybook/addon-links": "^8.4.5",
32
- "@storybook/addon-onboarding": "^8.4.5",
33
- "@storybook/blocks": "^8.4.5",
30
+ "@storybook/addon-interactions": "^8.4.6",
31
+ "@storybook/addon-links": "^8.4.6",
32
+ "@storybook/addon-onboarding": "^8.4.6",
33
+ "@storybook/blocks": "^8.4.6",
34
34
  "@storybook/test": "^8.4.5",
35
35
  "@storybook/vue3": "^8.4.5",
36
36
  "@storybook/vue3-vite": "^8.4.5",