@oicl/openbridge-webcomponents-svelte 2.0.0-next.126 → 2.0.0-next.128

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