@oicl/openbridge-webcomponents-svelte 2.0.0-next.90 → 2.0.0-next.92

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.
Files changed (47) hide show
  1. package/dist/automation/analog-valve/ObcAnalogValve.svelte +2 -0
  2. package/dist/automation/analog-valve/ObcAnalogValve.svelte.d.ts +2 -0
  3. package/dist/automation/automation-button/ObcAbstractAutomationButton.svelte +2 -0
  4. package/dist/automation/automation-button/ObcAbstractAutomationButton.svelte.d.ts +2 -0
  5. package/dist/automation/automation-button/ObcAbstractAutomationButtonMotorized.svelte +2 -0
  6. package/dist/automation/automation-button/ObcAbstractAutomationButtonMotorized.svelte.d.ts +2 -0
  7. package/dist/automation/automation-button/ObcAbstractAutomationButtonSquared.svelte +2 -0
  8. package/dist/automation/automation-button/ObcAbstractAutomationButtonSquared.svelte.d.ts +2 -0
  9. package/dist/automation/automation-button/ObcAutomationButton.svelte +2 -0
  10. package/dist/automation/automation-button/ObcAutomationButton.svelte.d.ts +2 -0
  11. package/dist/automation/bipolar-transistor/ObcBipolarTransistor.svelte +2 -0
  12. package/dist/automation/bipolar-transistor/ObcBipolarTransistor.svelte.d.ts +2 -0
  13. package/dist/automation/capacitor/ObcCapacitor.svelte +2 -0
  14. package/dist/automation/capacitor/ObcCapacitor.svelte.d.ts +2 -0
  15. package/dist/automation/converter/ObcConverter.svelte +2 -0
  16. package/dist/automation/converter/ObcConverter.svelte.d.ts +2 -0
  17. package/dist/automation/damper/ObcDamper.svelte +2 -0
  18. package/dist/automation/damper/ObcDamper.svelte.d.ts +2 -0
  19. package/dist/automation/digital-valve/ObcDigitalValve.svelte +2 -0
  20. package/dist/automation/digital-valve/ObcDigitalValve.svelte.d.ts +2 -0
  21. package/dist/automation/diodes/ObcDiodes.svelte +2 -0
  22. package/dist/automation/diodes/ObcDiodes.svelte.d.ts +2 -0
  23. package/dist/automation/fan/ObcFan.svelte +2 -0
  24. package/dist/automation/fan/ObcFan.svelte.d.ts +2 -0
  25. package/dist/automation/filter/ObcFilter.svelte +2 -0
  26. package/dist/automation/filter/ObcFilter.svelte.d.ts +2 -0
  27. package/dist/automation/ground/ObcGround.svelte +2 -0
  28. package/dist/automation/ground/ObcGround.svelte.d.ts +2 -0
  29. package/dist/automation/logic/ObcLogic.svelte +2 -0
  30. package/dist/automation/logic/ObcLogic.svelte.d.ts +2 -0
  31. package/dist/automation/mosfet/ObcMosfet.svelte +2 -0
  32. package/dist/automation/mosfet/ObcMosfet.svelte.d.ts +2 -0
  33. package/dist/automation/motor/ObcMotor.svelte +2 -0
  34. package/dist/automation/motor/ObcMotor.svelte.d.ts +2 -0
  35. package/dist/automation/pump/ObcPump.svelte +2 -0
  36. package/dist/automation/pump/ObcPump.svelte.d.ts +2 -0
  37. package/dist/automation/resistor/ObcResistor.svelte +2 -0
  38. package/dist/automation/resistor/ObcResistor.svelte.d.ts +2 -0
  39. package/dist/automation/router/ObcRouter.svelte +2 -0
  40. package/dist/automation/router/ObcRouter.svelte.d.ts +2 -0
  41. package/dist/automation/source/ObcSource.svelte +2 -0
  42. package/dist/automation/source/ObcSource.svelte.d.ts +2 -0
  43. package/dist/automation/switch/ObcSwitch.svelte +2 -0
  44. package/dist/automation/switch/ObcSwitch.svelte.d.ts +2 -0
  45. package/dist/automation/transformer/ObcTransformer.svelte +2 -0
  46. package/dist/automation/transformer/ObcTransformer.svelte.d.ts +2 -0
  47. package/package.json +2 -2
@@ -25,6 +25,8 @@ import type {AnalogValveVariant} from '@oicl/openbridge-webcomponents/dist/autom
25
25
  readoutPosition?: AutomationButtonReadoutPosition;
26
26
  readoutSize?: AutomationButtonReadoutStackSize;
27
27
  positioning?: AutomationButtonPositioning;
28
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
29
+ activated?: boolean;
28
30
  alert?: boolean;
29
31
  alertFrameType?: ObcAlertFrameType;
30
32
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -14,6 +14,8 @@ export interface Props {
14
14
  readoutPosition?: AutomationButtonReadoutPosition;
15
15
  readoutSize?: AutomationButtonReadoutStackSize;
16
16
  positioning?: AutomationButtonPositioning;
17
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
18
+ activated?: boolean;
17
19
  alert?: boolean;
18
20
  alertFrameType?: ObcAlertFrameType;
19
21
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -23,6 +23,8 @@ import type {AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, A
23
23
  readoutPosition?: AutomationButtonReadoutPosition;
24
24
  readoutSize?: AutomationButtonReadoutStackSize;
25
25
  positioning?: AutomationButtonPositioning;
26
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
27
+ activated?: boolean;
26
28
  alert?: boolean;
27
29
  alertFrameType?: ObcAlertFrameType;
28
30
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -13,6 +13,8 @@ export interface Props {
13
13
  readoutPosition?: AutomationButtonReadoutPosition;
14
14
  readoutSize?: AutomationButtonReadoutStackSize;
15
15
  positioning?: AutomationButtonPositioning;
16
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
17
+ activated?: boolean;
16
18
  alert?: boolean;
17
19
  alertFrameType?: ObcAlertFrameType;
18
20
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -25,6 +25,8 @@ import type {MotorizedVariant} from '@oicl/openbridge-webcomponents/dist/automat
25
25
  readoutPosition?: AutomationButtonReadoutPosition;
26
26
  readoutSize?: AutomationButtonReadoutStackSize;
27
27
  positioning?: AutomationButtonPositioning;
28
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
29
+ activated?: boolean;
28
30
  alert?: boolean;
29
31
  alertFrameType?: ObcAlertFrameType;
30
32
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -14,6 +14,8 @@ export interface Props {
14
14
  readoutPosition?: AutomationButtonReadoutPosition;
15
15
  readoutSize?: AutomationButtonReadoutStackSize;
16
16
  positioning?: AutomationButtonPositioning;
17
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
18
+ activated?: boolean;
17
19
  alert?: boolean;
18
20
  alertFrameType?: ObcAlertFrameType;
19
21
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -25,6 +25,8 @@ import type {SquaredVariant} from '@oicl/openbridge-webcomponents/dist/automatio
25
25
  readoutPosition?: AutomationButtonReadoutPosition;
26
26
  readoutSize?: AutomationButtonReadoutStackSize;
27
27
  positioning?: AutomationButtonPositioning;
28
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
29
+ activated?: boolean;
28
30
  alert?: boolean;
29
31
  alertFrameType?: ObcAlertFrameType;
30
32
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -14,6 +14,8 @@ export interface Props {
14
14
  readoutPosition?: AutomationButtonReadoutPosition;
15
15
  readoutSize?: AutomationButtonReadoutStackSize;
16
16
  positioning?: AutomationButtonPositioning;
17
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
18
+ activated?: boolean;
17
19
  alert?: boolean;
18
20
  alertFrameType?: ObcAlertFrameType;
19
21
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -20,6 +20,8 @@ import type {CircularProgressMode} from '@oicl/openbridge-webcomponents/dist/bui
20
20
  variant?: AutomationButtonVariant;
21
21
  state?: AutomationButtonState;
22
22
  static?: boolean;
23
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
24
+ activated?: boolean;
23
25
  showReadoutStack?: boolean;
24
26
  readouts?: AutomationButtonReadoutStack[];
25
27
  tag?: string | null;
@@ -11,6 +11,8 @@ export interface Props {
11
11
  variant?: AutomationButtonVariant;
12
12
  state?: AutomationButtonState;
13
13
  static?: boolean;
14
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
15
+ activated?: boolean;
14
16
  showReadoutStack?: boolean;
15
17
  readouts?: AutomationButtonReadoutStack[];
16
18
  tag?: string | null;
@@ -30,6 +30,8 @@ import type {BipolarTransistorAlternativeIcon} from '@oicl/openbridge-webcompone
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {CapacitorAlternativeIcon} from '@oicl/openbridge-webcomponents/dist
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {ConverterAlternativeIcon} from '@oicl/openbridge-webcomponents/dist
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -28,6 +28,8 @@ import type {AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, A
28
28
  readoutPosition?: AutomationButtonReadoutPosition;
29
29
  readoutSize?: AutomationButtonReadoutStackSize;
30
30
  positioning?: AutomationButtonPositioning;
31
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
32
+ activated?: boolean;
31
33
  alert?: boolean;
32
34
  alertFrameType?: ObcAlertFrameType;
33
35
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -17,6 +17,8 @@ export interface Props {
17
17
  readoutPosition?: AutomationButtonReadoutPosition;
18
18
  readoutSize?: AutomationButtonReadoutStackSize;
19
19
  positioning?: AutomationButtonPositioning;
20
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
21
+ activated?: boolean;
20
22
  alert?: boolean;
21
23
  alertFrameType?: ObcAlertFrameType;
22
24
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -25,6 +25,8 @@ import type {DigitalValveVariant} from '@oicl/openbridge-webcomponents/dist/auto
25
25
  readoutPosition?: AutomationButtonReadoutPosition;
26
26
  readoutSize?: AutomationButtonReadoutStackSize;
27
27
  positioning?: AutomationButtonPositioning;
28
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
29
+ activated?: boolean;
28
30
  alert?: boolean;
29
31
  alertFrameType?: ObcAlertFrameType;
30
32
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -14,6 +14,8 @@ export interface Props {
14
14
  readoutPosition?: AutomationButtonReadoutPosition;
15
15
  readoutSize?: AutomationButtonReadoutStackSize;
16
16
  positioning?: AutomationButtonPositioning;
17
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
18
+ activated?: boolean;
17
19
  alert?: boolean;
18
20
  alertFrameType?: ObcAlertFrameType;
19
21
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {DiodesAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/au
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -33,6 +33,8 @@ import type {AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, A
33
33
  readoutPosition?: AutomationButtonReadoutPosition;
34
34
  readoutSize?: AutomationButtonReadoutStackSize;
35
35
  positioning?: AutomationButtonPositioning;
36
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
37
+ activated?: boolean;
36
38
  alert?: boolean;
37
39
  alertFrameType?: ObcAlertFrameType;
38
40
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -22,6 +22,8 @@ export interface Props {
22
22
  readoutPosition?: AutomationButtonReadoutPosition;
23
23
  readoutSize?: AutomationButtonReadoutStackSize;
24
24
  positioning?: AutomationButtonPositioning;
25
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
26
+ activated?: boolean;
25
27
  alert?: boolean;
26
28
  alertFrameType?: ObcAlertFrameType;
27
29
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {FilterAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/au
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {GroundAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/au
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {LogicAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/aut
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {MosfetAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/au
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -33,6 +33,8 @@ import type {AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, A
33
33
  readoutPosition?: AutomationButtonReadoutPosition;
34
34
  readoutSize?: AutomationButtonReadoutStackSize;
35
35
  positioning?: AutomationButtonPositioning;
36
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
37
+ activated?: boolean;
36
38
  alert?: boolean;
37
39
  alertFrameType?: ObcAlertFrameType;
38
40
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -22,6 +22,8 @@ export interface Props {
22
22
  readoutPosition?: AutomationButtonReadoutPosition;
23
23
  readoutSize?: AutomationButtonReadoutStackSize;
24
24
  positioning?: AutomationButtonPositioning;
25
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
26
+ activated?: boolean;
25
27
  alert?: boolean;
26
28
  alertFrameType?: ObcAlertFrameType;
27
29
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -33,6 +33,8 @@ import type {AutomationButtonBadgeControl, AutomationButtonBadgeCommandLocked, A
33
33
  readoutPosition?: AutomationButtonReadoutPosition;
34
34
  readoutSize?: AutomationButtonReadoutStackSize;
35
35
  positioning?: AutomationButtonPositioning;
36
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
37
+ activated?: boolean;
36
38
  alert?: boolean;
37
39
  alertFrameType?: ObcAlertFrameType;
38
40
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -22,6 +22,8 @@ export interface Props {
22
22
  readoutPosition?: AutomationButtonReadoutPosition;
23
23
  readoutSize?: AutomationButtonReadoutStackSize;
24
24
  positioning?: AutomationButtonPositioning;
25
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
26
+ activated?: boolean;
25
27
  alert?: boolean;
26
28
  alertFrameType?: ObcAlertFrameType;
27
29
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {ResistorAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {RouterAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/au
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {SourceAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/au
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {SwitchAlternativeIcon} from '@oicl/openbridge-webcomponents/dist/au
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -30,6 +30,8 @@ import type {TransformerAlternativeIcon} from '@oicl/openbridge-webcomponents/di
30
30
  readoutPosition?: AutomationButtonReadoutPosition;
31
31
  readoutSize?: AutomationButtonReadoutStackSize;
32
32
  positioning?: AutomationButtonPositioning;
33
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
34
+ activated?: boolean;
33
35
  alert?: boolean;
34
36
  alertFrameType?: ObcAlertFrameType;
35
37
  alertFrameThickness?: ObcAlertFrameThickness;
@@ -18,6 +18,8 @@ export interface Props {
18
18
  readoutPosition?: AutomationButtonReadoutPosition;
19
19
  readoutSize?: AutomationButtonReadoutStackSize;
20
20
  positioning?: AutomationButtonPositioning;
21
+ /** Enables the activated background color, used to indicate that the button is activated/selected. */
22
+ activated?: boolean;
21
23
  alert?: boolean;
22
24
  alertFrameType?: ObcAlertFrameType;
23
25
  alertFrameThickness?: ObcAlertFrameThickness;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oicl/openbridge-webcomponents-svelte",
3
- "version": "2.0.0-next.90",
3
+ "version": "2.0.0-next.92",
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.89"
34
+ "@oicl/openbridge-webcomponents": "^2.0.0-next.91"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "svelte": "^5.0.0"