@arclux/arc-ui-solid 1.3.0 → 1.4.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arclux/arc-ui-solid",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Solid wrappers for ARC UI Web Components.",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -44,7 +44,7 @@
44
44
  "solid-js": ">=1.8.0"
45
45
  },
46
46
  "dependencies": {
47
- "@arclux/arc-ui": "1.3.0"
47
+ "@arclux/arc-ui": "1.4.0"
48
48
  },
49
49
  "license": "MIT",
50
50
  "keywords": [
@@ -4,7 +4,7 @@ import { splitProps, type Component, type JSX } from 'solid-js';
4
4
  import '@arclux/arc-ui';
5
5
 
6
6
  export interface CalloutProps {
7
- variant?: 'info' | 'warning' | 'tip' | 'danger';
7
+ variant?: string;
8
8
  children?: JSX.Element;
9
9
  [key: string]: unknown;
10
10
  }
@@ -4,7 +4,7 @@ import { splitProps, type Component, type JSX } from 'solid-js';
4
4
  import '@arclux/arc-ui';
5
5
 
6
6
  export interface AlertProps {
7
- variant?: 'info' | 'success' | 'warning' | 'error';
7
+ variant?: string;
8
8
  dismissible?: boolean;
9
9
  heading?: string;
10
10
  children?: JSX.Element;