@elmethis/qwik 0.0.29 → 0.0.30

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.
@@ -723,7 +723,8 @@ const ElmInlineText = qwik.component$((props) => {
723
723
  style: {
724
724
  "--color": props.color,
725
725
  "--font-size": size,
726
- "--background-color": props.backgroundColor
726
+ "--background-color": props.backgroundColor,
727
+ ...props.style
727
728
  },
728
729
  children: vnode
729
730
  });
@@ -721,7 +721,8 @@ const ElmInlineText = component$((props) => {
721
721
  style: {
722
722
  "--color": props.color,
723
723
  "--font-size": size,
724
- "--background-color": props.backgroundColor
724
+ "--background-color": props.backgroundColor,
725
+ ...props.style
725
726
  },
726
727
  children: vnode
727
728
  });
@@ -1,5 +1,6 @@
1
1
  import { type CSSProperties } from "@builder.io/qwik";
2
2
  export interface ElmInlineTextProps {
3
+ style?: CSSProperties;
3
4
  /**
4
5
  * The text to display.
5
6
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/qwik",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },