@oicl/openbridge-webcomponents-svelte 2.0.0-next.12 → 2.0.0-next.14

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.
@@ -4,12 +4,14 @@
4
4
  export type {AutomationButtonReadoutStackSize} from '@oicl/openbridge-webcomponents/dist/components/automation-button-readout-stack/automation-button-readout-stack.js';
5
5
  export type {ObcAlertFrameType, ObcAlertFrameThickness, ObcAlertFrameStatus} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
6
6
  export type {CircularProgressMode} from '@oicl/openbridge-webcomponents/dist/building-blocks/circular-progress/circular-progress.js';
7
+ export type {AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, AutomationButtonBadgeInterlock, AutomationButtonBadgeAlert} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
7
8
  import '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
8
9
  import { setProperties } from "../../util.js";
9
10
  import type {AutomationButtonReadoutPosition, AutomationButtonPositioning, AutomationButtonDirection} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/automation-button.js';
10
11
  import type {AutomationButtonReadoutStackSize} from '@oicl/openbridge-webcomponents/dist/components/automation-button-readout-stack/automation-button-readout-stack.js';
11
12
  import type {ObcAlertFrameType, ObcAlertFrameThickness, ObcAlertFrameStatus} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
12
13
  import type {CircularProgressMode} from '@oicl/openbridge-webcomponents/dist/building-blocks/circular-progress/circular-progress.js';
14
+ import type {AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, AutomationButtonBadgeInterlock, AutomationButtonBadgeAlert} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
13
15
  import type { Snippet } from 'svelte';
14
16
 
15
17
  export interface Props {
@@ -31,10 +33,10 @@ import type {CircularProgressMode} from '@oicl/openbridge-webcomponents/dist/bui
31
33
  progressValue?: number;
32
34
  tag?: string;
33
35
  direction?: AutomationButtonDirection;
34
- badgeAuto?: boolean;
35
- badgeCommandLocked?: boolean;
36
- badgeDuty?: boolean;
37
- badgeAlertOff?: boolean
36
+ badgeControl?: AutomationButtonBadgeControl;
37
+ badgeCommandLocked?: AutomationButtonBadgeCommandLocked;
38
+ badgeInterlock?: AutomationButtonBadgeInterlock;
39
+ badgeAlert?: AutomationButtonBadgeAlert
38
40
  }
39
41
  export interface Events {
40
42
 
@@ -3,6 +3,7 @@ import type { AutomationButtonReadoutPosition, AutomationButtonPositioning, Auto
3
3
  import type { AutomationButtonReadoutStackSize } from '@oicl/openbridge-webcomponents/dist/components/automation-button-readout-stack/automation-button-readout-stack.js';
4
4
  import type { ObcAlertFrameType, ObcAlertFrameThickness, ObcAlertFrameStatus } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
5
5
  import type { CircularProgressMode } from '@oicl/openbridge-webcomponents/dist/building-blocks/circular-progress/circular-progress.js';
6
+ import type { AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, AutomationButtonBadgeInterlock, AutomationButtonBadgeAlert } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
6
7
  import type { Snippet } from 'svelte';
7
8
  export interface Props {
8
9
  class?: string;
@@ -23,10 +24,10 @@ export interface Props {
23
24
  progressValue?: number;
24
25
  tag?: string;
25
26
  direction?: AutomationButtonDirection;
26
- badgeAuto?: boolean;
27
- badgeCommandLocked?: boolean;
28
- badgeDuty?: boolean;
29
- badgeAlertOff?: boolean;
27
+ badgeControl?: AutomationButtonBadgeControl;
28
+ badgeCommandLocked?: AutomationButtonBadgeCommandLocked;
29
+ badgeInterlock?: AutomationButtonBadgeInterlock;
30
+ badgeAlert?: AutomationButtonBadgeAlert;
30
31
  }
31
32
  export interface Events {
32
33
  }
@@ -43,6 +44,10 @@ declare const ObcAbstractAutomationButton: import("svelte").Component<$$Componen
43
44
  ObcAlertFrameThickness: typeof ObcAlertFrameThickness;
44
45
  ObcAlertFrameStatus: typeof ObcAlertFrameStatus;
45
46
  CircularProgressMode: typeof CircularProgressMode;
47
+ AutomationButtonBadgeControl: typeof AutomationButtonBadgeControl;
48
+ AutomationButtonBadgeCommandLocked: typeof AutomationButtonBadgeCommandLocked;
49
+ AutomationButtonBadgeInterlock: typeof AutomationButtonBadgeInterlock;
50
+ AutomationButtonBadgeAlert: typeof AutomationButtonBadgeAlert;
46
51
  }, "">;
47
52
  type ObcAbstractAutomationButton = ReturnType<typeof ObcAbstractAutomationButton>;
48
53
  export default ObcAbstractAutomationButton;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oicl/openbridge-webcomponents-svelte",
3
- "version": "2.0.0-next.12",
3
+ "version": "2.0.0-next.14",
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.11"
34
+ "@oicl/openbridge-webcomponents": "^2.0.0-next.13"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "svelte": "^5.0.0"