@elmethis/qwik 0.0.26 → 0.0.28

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,3 +1,4 @@
1
+ import { CSSProperties } from "@builder.io/qwik";
1
2
  export interface ElmFileProps {
2
3
  /**
3
4
  * The name of the file.
@@ -11,5 +12,6 @@ export interface ElmFileProps {
11
12
  * The size of the file in bytes.
12
13
  */
13
14
  filesize?: string;
15
+ style?: CSSProperties;
14
16
  }
15
17
  export declare const ElmFile: import("@builder.io/qwik").Component<ElmFileProps>;
@@ -1,3 +1,4 @@
1
+ import { CSSProperties } from "@builder.io/qwik";
1
2
  export interface ElmBookmarkProps {
2
3
  /**
3
4
  * The title of the bookmark.
@@ -20,5 +21,6 @@ export interface ElmBookmarkProps {
20
21
  * The URL of the favicon.
21
22
  */
22
23
  favicon?: string;
24
+ style?: CSSProperties;
23
25
  }
24
26
  export declare const ElmBookmark: import("@builder.io/qwik").Component<ElmBookmarkProps>;
@@ -1,5 +1,7 @@
1
+ import { CSSProperties } from "@builder.io/qwik";
1
2
  import type { Component } from "jarkup-ts";
2
3
  export interface ElmJarkupProps {
3
4
  jsonComponents: Component[];
5
+ style?: CSSProperties;
4
6
  }
5
7
  export declare const ElmJarkup: import("@builder.io/qwik").Component<ElmJarkupProps>;
@@ -1,4 +1,6 @@
1
+ import { CSSProperties } from "@builder.io/qwik";
1
2
  export interface ElmMarkdownProps {
2
3
  markdown: string;
4
+ style?: CSSProperties;
3
5
  }
4
6
  export declare const ElmMarkdown: import("@builder.io/qwik").Component<ElmMarkdownProps>;
@@ -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,4 +1,6 @@
1
+ import { CSSProperties } from "@builder.io/qwik";
1
2
  export interface ElmBlockQuoteProps {
2
3
  cite?: string;
4
+ style?: string | CSSProperties;
3
5
  }
4
6
  export declare const ElmBlockQuote: import("@builder.io/qwik").Component<ElmBlockQuoteProps>;
@@ -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>;
@@ -1,4 +1,6 @@
1
+ import { CSSProperties } from "@builder.io/qwik";
1
2
  export interface ElmListProps {
2
3
  listStyle: "unordered" | "ordered";
4
+ style?: CSSProperties;
3
5
  }
4
6
  export declare const ElmList: import("@builder.io/qwik").Component<ElmListProps>;
@@ -16,6 +16,7 @@ export { ElmInlineIcon, type ElmInlineIconProps, } from "./components/icon/elm-i
16
16
  export { ElmLanguageIcon, type ElmLanguageIconProps, } from "./components/icon/elm-language-icon";
17
17
  export { ElmMdiIcon, type ElmMdiIconProps, } from "./components/icon/elm-mdi-icon";
18
18
  export { ElmToggleTheme, type ElmToggleThemeProps, } from "./components/icon/elm-toggle-theme";
19
+ export { ElmSquareLoadingIcon, type ElmSquareLoadingIconProps, } from "./components/icon/elm-square-loading-icon";
19
20
  export { ElmBlockImage, type ElmBlockImageProps, } from "./components/media/elm-block-image";
20
21
  export { ElmFile, type ElmFileProps } from "./components/media/elm-file";
21
22
  export { ElmBookmark, type ElmBookmarkProps, } from "./components/navigation/elm-bookmark";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/qwik",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },