@elmethis/qwik 0.0.12 → 0.0.14

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,7 @@
1
+ export interface ElmPageTopProps {
2
+ /**
3
+ * Specifies the position of the button.
4
+ */
5
+ position?: "left" | "right";
6
+ }
7
+ export declare const ElmPageTop: import("@builder.io/qwik").Component<ElmPageTopProps>;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from "storybook-framework-qwik";
2
+ import { ElmPageTop } from "./elm-page-top";
3
+ declare const meta: Meta<typeof ElmPageTop>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Primary: Story;
@@ -13,6 +13,7 @@ export { ElmBlockImage, type ElmBlockImageProps, } from "./components/media/elm-
13
13
  export { ElmFile, type ElmFileProps } from "./components/media/elm-file";
14
14
  export { ElmBookmark, type ElmBookmarkProps, } from "./components/navigation/elm-bookmark";
15
15
  export { ElmBreadcrumb, type ElmBreadcrumbProps, } from "./components/navigation/elm-breadcrumb";
16
+ export { ElmPageTop, type ElmPageTopProps, } from "./components/navigation/elm-page-top";
16
17
  export { ElmBlockQuote, type ElmBlockQuoteProps, } from "./components/typography/elm-block-quote";
17
18
  export { ElmCallout, type ElmCalloutProps, } from "./components/typography/elm-callout";
18
19
  export { ElmDivider, type ElmDividerProps, } from "./components/typography/elm-divider";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/qwik",
3
- "version": "0.0.12",
3
+ "version": "0.0.14",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -20,6 +20,9 @@
20
20
  "types": "./lib-types/index.d.ts",
21
21
  "default": "./lib/index.qwik.cjs"
22
22
  }
23
+ },
24
+ "./style.css": {
25
+ "default": "./lib/style.css"
23
26
  }
24
27
  },
25
28
  "files": [