@elmethis/qwik 0.0.19 → 0.0.21

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/style.css CHANGED
@@ -1149,4 +1149,8 @@
1149
1149
  }
1150
1150
  ._column_1l2bp_7 > * + * {
1151
1151
  margin-block-start: 2em;
1152
+ }._markdown-body_11s6o_1 {
1153
+ display: flex;
1154
+ flex-direction: column;
1155
+ gap: 2rem;
1152
1156
  }
@@ -0,0 +1,4 @@
1
+ export interface ElmMarkdownProps {
2
+ markdown: string;
3
+ }
4
+ export declare const ElmMarkdown: import("@builder.io/qwik").Component<ElmMarkdownProps>;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from "storybook-framework-qwik";
2
+ import { ElmMarkdown } from "./elm-markdown";
3
+ declare const meta: Meta<typeof ElmMarkdown>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Primary: Story;
@@ -29,3 +29,4 @@ export { ElmTableBody, type ElmTableBodyProps, } from "./components/table/elm-ta
29
29
  export { ElmTableRow, type ElmTableRowProps, } from "./components/table/elm-table-row";
30
30
  export { ElmTableCell, type ElmTableCellProps, } from "./components/table/elm-table-cell";
31
31
  export { ElmJarkup, type ElmJarkupProps } from "./components/others/elm-jarkup";
32
+ export { ElmMarkdown, type ElmMarkdownProps, } from "./components/others/elm-markdown";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/qwik",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -41,6 +41,7 @@
41
41
  "@storybook/addon-docs": "8",
42
42
  "@storybook/addon-essentials": "8",
43
43
  "@types/lodash-es": "^4.17.12",
44
+ "@types/marked": "^6.0.0",
44
45
  "@types/node": "20.19.0",
45
46
  "eslint": "10.0.2",
46
47
  "eslint-plugin-qwik": "1.19.1",
@@ -61,6 +62,7 @@
61
62
  "@mdi/js": "^7.4.47",
62
63
  "katex": "^0.16.33",
63
64
  "lodash-es": "^4.17.23",
65
+ "marked": "^17.0.3",
64
66
  "polished": "^4.3.1",
65
67
  "shiki": "^4.0.1"
66
68
  },