@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.
- package/lib/index.qwik.cjs +414 -218
- package/lib/index.qwik.mjs +415 -219
- package/lib/style.css +1132 -0
- package/lib-types/components/navigation/elm-page-top.d.ts +7 -0
- package/lib-types/components/navigation/elm-page-top.stories.d.ts +6 -0
- package/lib-types/index.d.ts +1 -0
- package/package.json +4 -1
package/lib-types/index.d.ts
CHANGED
|
@@ -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.
|
|
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": [
|