@oicl/openbridge-webcomponents-svelte 2.0.0-next.29 → 2.0.0-next.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.
@@ -14,7 +14,11 @@ size?: ObcModalWindowSize;
14
14
  /** Whether to show an optional third action button. */
15
15
  hasOptionalAction?: boolean;
16
16
  /** Whether to show the leading icon slot in the header. */
17
- hasLeadingIcon?: boolean
17
+ hasLeadingIcon?: boolean;
18
+ /** Whether to show the footer cancel button. */
19
+ hasCancelAction?: boolean;
20
+ /** Whether to show the header close (X) button. */
21
+ hasCloseAction?: boolean
18
22
  }
19
23
  export interface Events {
20
24
  onCloseClick?: (event: CustomEvent<unknown>) => void;
@@ -10,6 +10,10 @@ export interface Props {
10
10
  hasOptionalAction?: boolean;
11
11
  /** Whether to show the leading icon slot in the header. */
12
12
  hasLeadingIcon?: boolean;
13
+ /** Whether to show the footer cancel button. */
14
+ hasCancelAction?: boolean;
15
+ /** Whether to show the header close (X) button. */
16
+ hasCloseAction?: boolean;
13
17
  }
14
18
  export interface Events {
15
19
  onCloseClick?: (event: CustomEvent<unknown>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oicl/openbridge-webcomponents-svelte",
3
- "version": "2.0.0-next.29",
3
+ "version": "2.0.0-next.30",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@oicl/openbridge-webcomponents": "^2.0.0-next.28"
34
+ "@oicl/openbridge-webcomponents": "^2.0.0-next.29"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "svelte": "^5.0.0"