@elmethis/core 1.0.0-alpha.28 → 1.0.0-alpha.29

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 l, normalizeClass as o } from "vue";
2
- import { _ as n } from "./index-DEi0jnLD.js";
2
+ import { _ as n } from "./index-Dz-pYs7O.js";
3
3
  const a = "_path_1ccs2_1", r = {
4
4
  path: a
5
5
  }, p = {}, m = {
@@ -1,5 +1,5 @@
1
1
  import { openBlock as e, createElementBlock as l, createElementVNode as t } from "vue";
2
- import { _ as o } from "./index-DEi0jnLD.js";
2
+ import { _ as o } from "./index-Dz-pYs7O.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-DEi0jnLD.js";
2
+ import { _ as o } from "./index-Dz-pYs7O.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-DEi0jnLD.js";
2
+ import { _ as o } from "./index-Dz-pYs7O.js";
3
3
  const l = {}, r = {
4
4
  xmlns: "http://www.w3.org/2000/svg",
5
5
  viewBox: "0 0 128 128"
@@ -4,3 +4,4 @@ declare const meta: Meta<typeof ElmToggle>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof meta>;
6
6
  export declare const Primary: Story;
7
+ export declare const InlineSummary: Story;
@@ -10,6 +10,7 @@ type __VLS_PublicProps = {
10
10
  } & typeof __VLS_typeProps;
11
11
  declare function __VLS_template(): {
12
12
  slots: {
13
+ summary?(_: {}): any;
13
14
  default?(_: {}): any;
14
15
  };
15
16
  refs: {};
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/vue3';
2
+ import { default as ElmBookmarkIcon } from './ElmBookmarkIcon.vue';
3
+ declare const meta: Meta<typeof ElmBookmarkIcon>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Primary: Story;
7
+ export declare const Long: Story;
8
+ export declare const NoFavicon: Story;
@@ -0,0 +1,7 @@
1
+ export interface ElmBookmarkIconProps {
2
+ name?: string;
3
+ href: string;
4
+ favicon?: string;
5
+ }
6
+ declare const _default: import('vue').DefineComponent<ElmBookmarkIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ElmBookmarkIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
+ export default _default;