@elmethis/qwik 0.0.25 → 0.0.27
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 +96 -78
- package/lib/index.qwik.mjs +96 -78
- package/lib/style.css +102 -104
- package/lib-types/components/code/elm-code-block.d.ts +1 -4
- package/lib-types/components/containments/elm-toggle.d.ts +2 -0
- package/lib-types/components/media/elm-block-image.d.ts +4 -1
- package/lib-types/components/media/elm-block-image.stories.d.ts +1 -0
- package/lib-types/components/media/elm-file.d.ts +2 -0
- package/lib-types/components/navigation/elm-bookmark.d.ts +2 -0
- package/lib-types/components/others/elm-jarkup.d.ts +2 -0
- package/lib-types/components/others/elm-markdown.d.ts +2 -0
- package/lib-types/components/table/elm-table.d.ts +1 -4
- package/lib-types/components/typography/elm-block-quote.d.ts +2 -0
- package/lib-types/components/typography/elm-callout.d.ts +2 -0
- package/lib-types/components/typography/elm-divider.d.ts +1 -4
- package/lib-types/components/typography/elm-heading.d.ts +2 -0
- package/lib-types/components/typography/elm-list.d.ts +2 -0
- package/package.json +4 -5
|
@@ -3,11 +3,8 @@ export declare const HasRowHeaderContext: import("@builder.io/qwik").ContextId<R
|
|
|
3
3
|
value: boolean;
|
|
4
4
|
}>>;
|
|
5
5
|
export interface ElmTableProps {
|
|
6
|
-
/**
|
|
7
|
-
* The margin of the table.
|
|
8
|
-
*/
|
|
9
|
-
margin?: CSSProperties["marginBlock"];
|
|
10
6
|
caption?: string;
|
|
11
7
|
hasRowHeader?: boolean;
|
|
8
|
+
style?: CSSProperties;
|
|
12
9
|
}
|
|
13
10
|
export declare const ElmTable: import("@builder.io/qwik").Component<ElmTableProps>;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { CSSProperties } from "@builder.io/qwik";
|
|
1
2
|
export type AlertType = "note" | "tip" | "important" | "warning" | "caution";
|
|
2
3
|
export interface ElmCalloutProps {
|
|
3
4
|
/**
|
|
4
5
|
* Type of alert
|
|
5
6
|
*/
|
|
6
7
|
type?: AlertType;
|
|
8
|
+
style?: CSSProperties;
|
|
7
9
|
}
|
|
8
10
|
export declare const ElmCallout: import("@builder.io/qwik").Component<ElmCalloutProps>;
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { CSSProperties } from "@builder.io/qwik";
|
|
2
2
|
export type ElmDividerProps = {
|
|
3
|
-
|
|
4
|
-
* The margin of the divider.
|
|
5
|
-
*/
|
|
6
|
-
margin?: CSSProperties["margin-block"];
|
|
3
|
+
style?: CSSProperties;
|
|
7
4
|
};
|
|
8
5
|
export declare const ElmDivider: import("@builder.io/qwik").Component<ElmDividerProps>;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { CSSProperties } from "@builder.io/qwik";
|
|
1
2
|
export interface ElmHeadingProps {
|
|
2
3
|
level: 1 | 2 | 3 | 4 | 5 | 6;
|
|
3
4
|
text?: string;
|
|
4
5
|
id?: string;
|
|
6
|
+
style?: CSSProperties;
|
|
5
7
|
}
|
|
6
8
|
export declare const ElmHeading: import("@builder.io/qwik").Component<ElmHeadingProps>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elmethis/qwik",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,10 +38,9 @@
|
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@builder.io/qwik": "1.19.0",
|
|
40
40
|
"@eslint/js": "latest",
|
|
41
|
-
"@storybook/addon-docs": "8",
|
|
42
|
-
"@storybook/addon-essentials": "8",
|
|
41
|
+
"@storybook/addon-docs": "8.6.17",
|
|
42
|
+
"@storybook/addon-essentials": "8.6.17",
|
|
43
43
|
"@types/lodash-es": "^4.17.12",
|
|
44
|
-
"@types/marked": "^6.0.0",
|
|
45
44
|
"@types/node": "20.19.0",
|
|
46
45
|
"eslint": "10.0.2",
|
|
47
46
|
"eslint-plugin-qwik": "1.19.1",
|
|
@@ -55,7 +54,7 @@
|
|
|
55
54
|
"typescript": "5.4.5",
|
|
56
55
|
"typescript-eslint": "8.56.1",
|
|
57
56
|
"undici": "*",
|
|
58
|
-
"vite": "
|
|
57
|
+
"vite": "^6.4.1",
|
|
59
58
|
"vite-tsconfig-paths": "^6.1.1"
|
|
60
59
|
},
|
|
61
60
|
"dependencies": {
|