@oicl/openbridge-webcomponents-vue 2.0.0-next.135 → 2.0.0-next.137

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 (43) hide show
  1. package/automation/automation-tank/ObcAutomationTank.vue.d.ts +4 -2
  2. package/automation/automation-tank/ObcAutomationTank.vue2.js.map +1 -1
  3. package/automation/heat-exchanger/ObcHeatExchanger.vue.d.ts +36 -0
  4. package/automation/heat-exchanger/ObcHeatExchanger.vue.js +2 -0
  5. package/automation/heat-exchanger/ObcHeatExchanger.vue.js.map +1 -0
  6. package/automation/heat-exchanger/ObcHeatExchanger.vue2.js +2 -0
  7. package/automation/heat-exchanger/ObcHeatExchanger.vue2.js.map +1 -0
  8. package/automation/heat-pump/ObcHeatPump.vue.d.ts +36 -0
  9. package/automation/heat-pump/ObcHeatPump.vue.js +2 -0
  10. package/automation/heat-pump/ObcHeatPump.vue.js.map +1 -0
  11. package/automation/heat-pump/ObcHeatPump.vue2.js +2 -0
  12. package/automation/heat-pump/ObcHeatPump.vue2.js.map +1 -0
  13. package/automation/hydraulic-check-valve/ObcHydraulicCheckValve.vue.d.ts +7 -0
  14. package/automation/hydraulic-check-valve/ObcHydraulicCheckValve.vue.js +2 -0
  15. package/automation/hydraulic-check-valve/ObcHydraulicCheckValve.vue.js.map +1 -0
  16. package/automation/hydraulic-check-valve/ObcHydraulicCheckValve.vue2.js +2 -0
  17. package/automation/hydraulic-check-valve/ObcHydraulicCheckValve.vue2.js.map +1 -0
  18. package/automation/hydraulic-separator/ObcHydraulicSeparator.vue.d.ts +36 -0
  19. package/automation/hydraulic-separator/ObcHydraulicSeparator.vue.js +2 -0
  20. package/automation/hydraulic-separator/ObcHydraulicSeparator.vue.js.map +1 -0
  21. package/automation/hydraulic-separator/ObcHydraulicSeparator.vue2.js +2 -0
  22. package/automation/hydraulic-separator/ObcHydraulicSeparator.vue2.js.map +1 -0
  23. package/automation/hydraulic-valve-4-3/ObcHydraulicValve43.vue.d.ts +15 -0
  24. package/automation/hydraulic-valve-4-3/ObcHydraulicValve43.vue.js +2 -0
  25. package/automation/hydraulic-valve-4-3/ObcHydraulicValve43.vue.js.map +1 -0
  26. package/automation/hydraulic-valve-4-3/ObcHydraulicValve43.vue2.js +2 -0
  27. package/automation/hydraulic-valve-4-3/ObcHydraulicValve43.vue2.js.map +1 -0
  28. package/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.vue.d.ts +15 -0
  29. package/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.vue.js +2 -0
  30. package/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.vue.js.map +1 -0
  31. package/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.vue2.js +2 -0
  32. package/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.vue2.js.map +1 -0
  33. package/automation/shuffle-button/ObcShuffleButtonBase.vue.d.ts +8 -0
  34. package/automation/shuffle-button/ObcShuffleButtonBase.vue.js +2 -0
  35. package/automation/shuffle-button/ObcShuffleButtonBase.vue.js.map +1 -0
  36. package/automation/shuffle-button/ObcShuffleButtonBase.vue2.js +2 -0
  37. package/automation/shuffle-button/ObcShuffleButtonBase.vue2.js.map +1 -0
  38. package/automation/specialty-tank/ObcAbstractSpecialtyTank.vue.d.ts +32 -0
  39. package/automation/specialty-tank/ObcAbstractSpecialtyTank.vue.js +2 -0
  40. package/automation/specialty-tank/ObcAbstractSpecialtyTank.vue.js.map +1 -0
  41. package/automation/specialty-tank/ObcAbstractSpecialtyTank.vue2.js +2 -0
  42. package/automation/specialty-tank/ObcAbstractSpecialtyTank.vue2.js.map +1 -0
  43. package/package.json +10 -2
@@ -1,6 +1,7 @@
1
1
  import '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';
2
2
  import { LineMedium } from '@oicl/openbridge-webcomponents/dist/automation/index.js';
3
- import { TankTrend, TankType, TankOrientation, TankPositioning, TankChartMode } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';
3
+ import { TankTrend, TankType, TankOrientation, TankChartMode } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';
4
+ import { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
4
5
  import { ChartLineDataItem } from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js';
5
6
  import { Priority } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
6
7
  import { LinearAdvice } from '@oicl/openbridge-webcomponents/dist/building-blocks/instrument-linear/advice.js';
@@ -49,7 +50,8 @@ export interface Props {
49
50
  animateSetpoint?: boolean;
50
51
  }
51
52
  export type { LineMedium } from '@oicl/openbridge-webcomponents/dist/automation/index.js';
52
- export type { TankTrend, TankType, TankOrientation, TankPositioning, TankChartMode } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';
53
+ export type { TankTrend, TankType, TankOrientation, TankChartMode } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';
54
+ export type { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
53
55
  export type { ChartLineDataItem } from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js';
54
56
  export type { Priority } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';
55
57
  export type { LinearAdvice } from '@oicl/openbridge-webcomponents/dist/building-blocks/instrument-linear/advice.js';
@@ -1 +1 @@
1
- {"version":3,"file":"ObcAutomationTank.vue2.js","sources":["../../src/automation/automation-tank/ObcAutomationTank.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';\n import {LineMedium} from '@oicl/openbridge-webcomponents/dist/automation/index.js';\nimport {TankTrend, TankType, TankOrientation, TankPositioning, TankChartMode} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';\nimport {ChartLineDataItem} from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js';\nimport {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';\nimport {LinearAdvice} from '@oicl/openbridge-webcomponents/dist/building-blocks/instrument-linear/advice.js';\nimport {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nimport {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\nimport {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\n\n export interface Props {\n medium?: LineMedium;\n value?: number;\n max?: number;\n trend?: TankTrend;\n type?: TankType;\n orientation?: TankOrientation;\n compact?: boolean;\n positioning?: TankPositioning;\n static?: boolean;\n clickable?: boolean;\n activated?: boolean;\n tag?: string;\n chartMode?: TankChartMode;\n chartData?: ChartLineDataItem[];\n priority?: Priority;\n advice?: LinearAdvice[];\n hasAdvice?: boolean;\n hasGraphIcon?: boolean;\n alert?: boolean;\n alertFrameType?: ObcAlertFrameType;\n alertFrameThickness?: ObcAlertFrameThickness;\n alertFrameStatus?: AlertType;\n showAlertCategoryIcon?: boolean;\n showAlertIcon?: boolean;\n showTrendSymbol?: boolean;\n percentFractionDigits?: number;\n badgeControl?: AutomationButtonBadgeControl;\n badgeAlert?: AutomationButtonBadgeAlert;\n badgeInterlock?: AutomationButtonBadgeInterlock;\n badgeCommandLocked?: AutomationButtonBadgeCommandLocked;\n setpoint?: number | undefined;\n newSetpoint?: number | undefined;\n atSetpoint?: boolean;\n touching?: boolean;\n autoAtSetpoint?: boolean;\n autoAtSetpointDeadband?: number;\n setpointAtZeroDeadband?: number;\n setpointOverride?: boolean;\n animateSetpoint?: boolean\n }\n\n \n \n export type {LineMedium} from '@oicl/openbridge-webcomponents/dist/automation/index.js';\nexport type {TankTrend, TankType, TankOrientation, TankPositioning, TankChartMode} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';\nexport type {ChartLineDataItem} from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js';\nexport type {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';\nexport type {LinearAdvice} from '@oicl/openbridge-webcomponents/dist/building-blocks/instrument-linear/advice.js';\nexport type {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nexport type {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\nexport type {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcAutomationTank',\n props: {\n medium: {},\n value: {},\n max: {},\n trend: {},\n type: {},\n orientation: {},\n compact: { type: Boolean },\n positioning: {},\n static: { type: Boolean },\n clickable: { type: Boolean },\n activated: { type: Boolean },\n tag: {},\n chartMode: {},\n chartData: {},\n priority: {},\n advice: {},\n hasAdvice: { type: Boolean },\n hasGraphIcon: { type: Boolean },\n alert: { type: Boolean },\n alertFrameType: {},\n alertFrameThickness: {},\n alertFrameStatus: {},\n showAlertCategoryIcon: { type: Boolean },\n showAlertIcon: { type: Boolean },\n showTrendSymbol: { type: Boolean },\n percentFractionDigits: {},\n badgeControl: {},\n badgeAlert: {},\n badgeInterlock: {},\n badgeCommandLocked: {},\n setpoint: {},\n newSetpoint: {},\n atSetpoint: { type: Boolean },\n touching: { type: Boolean },\n autoAtSetpoint: { type: Boolean },\n autoAtSetpointDeadband: {},\n setpointAtZeroDeadband: {},\n setpointOverride: { type: Boolean },\n animateSetpoint: { type: Boolean }\n },\n emits: [\"click\"],\n setup(__props: any, { emit: __emit }) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n const emit = __emit;\n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n onClick: (event: CustomEvent<unknown>) => emit('click', event as CustomEvent<unknown>)\n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-automation-tank',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","__emit","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","emit","slots","useSlots","render","props","event","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"8RAoEA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,oBACR,MAAO,CACL,OAAQ,CAAA,EACR,MAAO,CAAA,EACP,IAAK,CAAA,EACL,MAAO,CAAA,EACP,KAAM,CAAA,EACN,YAAa,CAAA,EACb,QAAS,CAAE,KAAM,OAAA,EACjB,YAAa,CAAA,EACb,OAAQ,CAAE,KAAM,OAAA,EAChB,UAAW,CAAE,KAAM,OAAA,EACnB,UAAW,CAAE,KAAM,OAAA,EACnB,IAAK,CAAA,EACL,UAAW,CAAA,EACX,UAAW,CAAA,EACX,SAAU,CAAA,EACV,OAAQ,CAAA,EACR,UAAW,CAAE,KAAM,OAAA,EACnB,aAAc,CAAE,KAAM,OAAA,EACtB,MAAO,CAAE,KAAM,OAAA,EACf,eAAgB,CAAA,EAChB,oBAAqB,CAAA,EACrB,iBAAkB,CAAA,EAClB,sBAAuB,CAAE,KAAM,OAAA,EAC/B,cAAe,CAAE,KAAM,OAAA,EACvB,gBAAiB,CAAE,KAAM,OAAA,EACzB,sBAAuB,CAAA,EACvB,aAAc,CAAA,EACd,WAAY,CAAA,EACZ,eAAgB,CAAA,EAChB,mBAAoB,CAAA,EACpB,SAAU,CAAA,EACV,YAAa,CAAA,EACb,WAAY,CAAE,KAAM,OAAA,EACpB,SAAU,CAAE,KAAM,OAAA,EAClB,eAAgB,CAAE,KAAM,OAAA,EACxB,uBAAwB,CAAA,EACxB,uBAAwB,CAAA,EACxB,iBAAkB,CAAE,KAAM,OAAA,EAC1B,gBAAiB,CAAE,KAAM,OAAA,CAAQ,EAEnC,MAAO,CAAC,OAAO,EACf,MAAMC,EAAc,CAAE,KAAMC,GAAU,CAElC,MAAMC,EAAWF,EAEfG,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAEd,MAAMC,EAAOR,EAEPS,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CACvB,QAAUC,GAAgCL,EAAK,QAASK,CAA6B,CAAA,EAKnF,UAAWP,KAAKL,EAAU,CACxB,MAAMa,EAAIb,EAASK,CAAgB,GAC9BQ,IAAM,QAAcP,KACtBK,EAAMN,CAAgB,EAAgBQ,GAAKZ,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLQ,EACL,sBACAH,EACAI,EAAgBP,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACQ,EAAUC,IACTC,GAAiBC,IAAcC,EAAaV,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACP,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
1
+ {"version":3,"file":"ObcAutomationTank.vue2.js","sources":["../../src/automation/automation-tank/ObcAutomationTank.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';\n import {LineMedium} from '@oicl/openbridge-webcomponents/dist/automation/index.js';\nimport {TankTrend, TankType, TankOrientation, TankChartMode} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';\nimport {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nimport {ChartLineDataItem} from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js';\nimport {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';\nimport {LinearAdvice} from '@oicl/openbridge-webcomponents/dist/building-blocks/instrument-linear/advice.js';\nimport {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nimport {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\nimport {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\n\n export interface Props {\n medium?: LineMedium;\n value?: number;\n max?: number;\n trend?: TankTrend;\n type?: TankType;\n orientation?: TankOrientation;\n compact?: boolean;\n positioning?: TankPositioning;\n static?: boolean;\n clickable?: boolean;\n activated?: boolean;\n tag?: string;\n chartMode?: TankChartMode;\n chartData?: ChartLineDataItem[];\n priority?: Priority;\n advice?: LinearAdvice[];\n hasAdvice?: boolean;\n hasGraphIcon?: boolean;\n alert?: boolean;\n alertFrameType?: ObcAlertFrameType;\n alertFrameThickness?: ObcAlertFrameThickness;\n alertFrameStatus?: AlertType;\n showAlertCategoryIcon?: boolean;\n showAlertIcon?: boolean;\n showTrendSymbol?: boolean;\n percentFractionDigits?: number;\n badgeControl?: AutomationButtonBadgeControl;\n badgeAlert?: AutomationButtonBadgeAlert;\n badgeInterlock?: AutomationButtonBadgeInterlock;\n badgeCommandLocked?: AutomationButtonBadgeCommandLocked;\n setpoint?: number | undefined;\n newSetpoint?: number | undefined;\n atSetpoint?: boolean;\n touching?: boolean;\n autoAtSetpoint?: boolean;\n autoAtSetpointDeadband?: number;\n setpointAtZeroDeadband?: number;\n setpointOverride?: boolean;\n animateSetpoint?: boolean\n }\n\n \n \n export type {LineMedium} from '@oicl/openbridge-webcomponents/dist/automation/index.js';\nexport type {TankTrend, TankType, TankOrientation, TankChartMode} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/automation-tank.js';\nexport type {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nexport type {ChartLineDataItem} from '@oicl/openbridge-webcomponents/dist/building-blocks/chart-line/chart-line-base.js';\nexport type {Priority} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/types.js';\nexport type {LinearAdvice} from '@oicl/openbridge-webcomponents/dist/building-blocks/instrument-linear/advice.js';\nexport type {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nexport type {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\nexport type {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcAutomationTank',\n props: {\n medium: {},\n value: {},\n max: {},\n trend: {},\n type: {},\n orientation: {},\n compact: { type: Boolean },\n positioning: {},\n static: { type: Boolean },\n clickable: { type: Boolean },\n activated: { type: Boolean },\n tag: {},\n chartMode: {},\n chartData: {},\n priority: {},\n advice: {},\n hasAdvice: { type: Boolean },\n hasGraphIcon: { type: Boolean },\n alert: { type: Boolean },\n alertFrameType: {},\n alertFrameThickness: {},\n alertFrameStatus: {},\n showAlertCategoryIcon: { type: Boolean },\n showAlertIcon: { type: Boolean },\n showTrendSymbol: { type: Boolean },\n percentFractionDigits: {},\n badgeControl: {},\n badgeAlert: {},\n badgeInterlock: {},\n badgeCommandLocked: {},\n setpoint: {},\n newSetpoint: {},\n atSetpoint: { type: Boolean },\n touching: { type: Boolean },\n autoAtSetpoint: { type: Boolean },\n autoAtSetpointDeadband: {},\n setpointAtZeroDeadband: {},\n setpointOverride: { type: Boolean },\n animateSetpoint: { type: Boolean }\n },\n emits: [\"click\"],\n setup(__props: any, { emit: __emit }) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n const emit = __emit;\n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n onClick: (event: CustomEvent<unknown>) => emit('click', event as CustomEvent<unknown>)\n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-automation-tank',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","__emit","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","emit","slots","useSlots","render","props","event","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"8RAsEA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,oBACR,MAAO,CACL,OAAQ,CAAA,EACR,MAAO,CAAA,EACP,IAAK,CAAA,EACL,MAAO,CAAA,EACP,KAAM,CAAA,EACN,YAAa,CAAA,EACb,QAAS,CAAE,KAAM,OAAA,EACjB,YAAa,CAAA,EACb,OAAQ,CAAE,KAAM,OAAA,EAChB,UAAW,CAAE,KAAM,OAAA,EACnB,UAAW,CAAE,KAAM,OAAA,EACnB,IAAK,CAAA,EACL,UAAW,CAAA,EACX,UAAW,CAAA,EACX,SAAU,CAAA,EACV,OAAQ,CAAA,EACR,UAAW,CAAE,KAAM,OAAA,EACnB,aAAc,CAAE,KAAM,OAAA,EACtB,MAAO,CAAE,KAAM,OAAA,EACf,eAAgB,CAAA,EAChB,oBAAqB,CAAA,EACrB,iBAAkB,CAAA,EAClB,sBAAuB,CAAE,KAAM,OAAA,EAC/B,cAAe,CAAE,KAAM,OAAA,EACvB,gBAAiB,CAAE,KAAM,OAAA,EACzB,sBAAuB,CAAA,EACvB,aAAc,CAAA,EACd,WAAY,CAAA,EACZ,eAAgB,CAAA,EAChB,mBAAoB,CAAA,EACpB,SAAU,CAAA,EACV,YAAa,CAAA,EACb,WAAY,CAAE,KAAM,OAAA,EACpB,SAAU,CAAE,KAAM,OAAA,EAClB,eAAgB,CAAE,KAAM,OAAA,EACxB,uBAAwB,CAAA,EACxB,uBAAwB,CAAA,EACxB,iBAAkB,CAAE,KAAM,OAAA,EAC1B,gBAAiB,CAAE,KAAM,OAAA,CAAQ,EAEnC,MAAO,CAAC,OAAO,EACf,MAAMC,EAAc,CAAE,KAAMC,GAAU,CAElC,MAAMC,EAAWF,EAEfG,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAEd,MAAMC,EAAOR,EAEPS,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CACvB,QAAUC,GAAgCL,EAAK,QAASK,CAA6B,CAAA,EAKnF,UAAWP,KAAKL,EAAU,CACxB,MAAMa,EAAIb,EAASK,CAAgB,GAC9BQ,IAAM,QAAcP,KACtBK,EAAMN,CAAgB,EAAgBQ,GAAKZ,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLQ,EACL,sBACAH,EACAI,EAAgBP,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACQ,EAAUC,IACTC,GAAiBC,IAAcC,EAAaV,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACP,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,36 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/heat-exchanger/heat-exchanger.js';
2
+ import { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
3
+ import { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
4
+ import { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
5
+ import { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
6
+ import { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
7
+ export interface Props {
8
+ medium?: SpecialtyTankMedium;
9
+ static?: boolean;
10
+ showIcon?: boolean;
11
+ tag?: string;
12
+ positioning?: TankPositioning;
13
+ clickable?: boolean;
14
+ activated?: boolean;
15
+ badgeControl?: AutomationButtonBadgeControl;
16
+ badgeAlert?: AutomationButtonBadgeAlert;
17
+ badgeInterlock?: AutomationButtonBadgeInterlock;
18
+ badgeCommandLocked?: AutomationButtonBadgeCommandLocked;
19
+ alert?: boolean;
20
+ alertFrameType?: ObcAlertFrameType;
21
+ alertFrameThickness?: ObcAlertFrameThickness;
22
+ alertFrameStatus?: AlertType;
23
+ showAlertCategoryIcon?: boolean;
24
+ showAlertIcon?: boolean;
25
+ }
26
+ export type { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
27
+ export type { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
28
+ export type { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
29
+ export type { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
30
+ export type { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
31
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
32
+ click: (payload: CustomEvent<unknown>) => any;
33
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
34
+ onClick?: ((payload: CustomEvent<unknown>) => any) | undefined;
35
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcHeatExchanger.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcHeatExchanger.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHeatExchanger.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as u,reactive as f,useSlots as h,withDirectives as g,openBlock as k,createBlock as v,h as y}from"vue";import{assignSlotNodes as B}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/heat-exchanger/heat-exchanger.js";const w=u({__name:"ObcHeatExchanger",props:{medium:{},static:{type:Boolean},showIcon:{type:Boolean},tag:{},positioning:{},clickable:{type:Boolean},activated:{type:Boolean},badgeControl:{},badgeAlert:{},badgeInterlock:{},badgeCommandLocked:{},alert:{type:Boolean},alertFrameType:{},alertFrameThickness:{},alertFrameStatus:{},showAlertCategoryIcon:{type:Boolean},showAlertIcon:{type:Boolean}},emits:["click"],setup(s,{emit:l}){const o=s,a=f({}),i={created(n){for(const e in o)a[e]=n[e]}};let r=!1;const p=l,m=h(),d=()=>{const e={onClick:t=>p("click",t)};for(const t in o){const c=o[t];(c!==void 0||r)&&(e[t]=c??a[t])}return r=!0,y("obc-heat-exchanger",e,B(m))};return(n,e)=>g((k(),v(d,null,null,512)),[[i]])}});export{w as default};
2
+ //# sourceMappingURL=ObcHeatExchanger.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHeatExchanger.vue2.js","sources":["../../src/automation/heat-exchanger/ObcHeatExchanger.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/heat-exchanger/heat-exchanger.js';\n import {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nimport {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nimport {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nimport {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nimport {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n\n export interface Props {\n medium?: SpecialtyTankMedium;\n static?: boolean;\n showIcon?: boolean;\n tag?: string;\n positioning?: TankPositioning;\n clickable?: boolean;\n activated?: boolean;\n badgeControl?: AutomationButtonBadgeControl;\n badgeAlert?: AutomationButtonBadgeAlert;\n badgeInterlock?: AutomationButtonBadgeInterlock;\n badgeCommandLocked?: AutomationButtonBadgeCommandLocked;\n alert?: boolean;\n alertFrameType?: ObcAlertFrameType;\n alertFrameThickness?: ObcAlertFrameThickness;\n alertFrameStatus?: AlertType;\n showAlertCategoryIcon?: boolean;\n showAlertIcon?: boolean\n }\n\n \n \n export type {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nexport type {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nexport type {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nexport type {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nexport type {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcHeatExchanger',\n props: {\n medium: {},\n static: { type: Boolean },\n showIcon: { type: Boolean },\n tag: {},\n positioning: {},\n clickable: { type: Boolean },\n activated: { type: Boolean },\n badgeControl: {},\n badgeAlert: {},\n badgeInterlock: {},\n badgeCommandLocked: {},\n alert: { type: Boolean },\n alertFrameType: {},\n alertFrameThickness: {},\n alertFrameStatus: {},\n showAlertCategoryIcon: { type: Boolean },\n showAlertIcon: { type: Boolean }\n },\n emits: [\"click\"],\n setup(__props: any, { emit: __emit }) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n const emit = __emit;\n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n onClick: (event: CustomEvent<unknown>) => emit('click', event as CustomEvent<unknown>)\n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-heat-exchanger',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","__emit","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","emit","slots","useSlots","render","props","event","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"4RAwCA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,mBACR,MAAO,CACL,OAAQ,CAAA,EACR,OAAQ,CAAE,KAAM,OAAA,EAChB,SAAU,CAAE,KAAM,OAAA,EAClB,IAAK,CAAA,EACL,YAAa,CAAA,EACb,UAAW,CAAE,KAAM,OAAA,EACnB,UAAW,CAAE,KAAM,OAAA,EACnB,aAAc,CAAA,EACd,WAAY,CAAA,EACZ,eAAgB,CAAA,EAChB,mBAAoB,CAAA,EACpB,MAAO,CAAE,KAAM,OAAA,EACf,eAAgB,CAAA,EAChB,oBAAqB,CAAA,EACrB,iBAAkB,CAAA,EAClB,sBAAuB,CAAE,KAAM,OAAA,EAC/B,cAAe,CAAE,KAAM,OAAA,CAAQ,EAEjC,MAAO,CAAC,OAAO,EACf,MAAMC,EAAc,CAAE,KAAMC,GAAU,CAElC,MAAMC,EAAWF,EAEfG,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAEd,MAAMC,EAAOR,EAEPS,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CACvB,QAAUC,GAAgCL,EAAK,QAASK,CAA6B,CAAA,EAKnF,UAAWP,KAAKL,EAAU,CACxB,MAAMa,EAAIb,EAASK,CAAgB,GAC9BQ,IAAM,QAAcP,KACtBK,EAAMN,CAAgB,EAAgBQ,GAAKZ,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLQ,EACL,qBACAH,EACAI,EAAgBP,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACQ,EAAUC,IACTC,GAAiBC,IAAcC,EAAaV,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACP,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,36 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/heat-pump/heat-pump.js';
2
+ import { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
3
+ import { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
4
+ import { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
5
+ import { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
6
+ import { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
7
+ export interface Props {
8
+ medium?: SpecialtyTankMedium;
9
+ static?: boolean;
10
+ showIcon?: boolean;
11
+ tag?: string;
12
+ positioning?: TankPositioning;
13
+ clickable?: boolean;
14
+ activated?: boolean;
15
+ badgeControl?: AutomationButtonBadgeControl;
16
+ badgeAlert?: AutomationButtonBadgeAlert;
17
+ badgeInterlock?: AutomationButtonBadgeInterlock;
18
+ badgeCommandLocked?: AutomationButtonBadgeCommandLocked;
19
+ alert?: boolean;
20
+ alertFrameType?: ObcAlertFrameType;
21
+ alertFrameThickness?: ObcAlertFrameThickness;
22
+ alertFrameStatus?: AlertType;
23
+ showAlertCategoryIcon?: boolean;
24
+ showAlertIcon?: boolean;
25
+ }
26
+ export type { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
27
+ export type { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
28
+ export type { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
29
+ export type { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
30
+ export type { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
31
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
32
+ click: (payload: CustomEvent<unknown>) => any;
33
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
34
+ onClick?: ((payload: CustomEvent<unknown>) => any) | undefined;
35
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcHeatPump.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcHeatPump.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHeatPump.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as u,reactive as f,useSlots as h,withDirectives as k,openBlock as v,createBlock as y,h as B}from"vue";import{assignSlotNodes as g}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/heat-pump/heat-pump.js";const w=u({__name:"ObcHeatPump",props:{medium:{},static:{type:Boolean},showIcon:{type:Boolean},tag:{},positioning:{},clickable:{type:Boolean},activated:{type:Boolean},badgeControl:{},badgeAlert:{},badgeInterlock:{},badgeCommandLocked:{},alert:{type:Boolean},alertFrameType:{},alertFrameThickness:{},alertFrameStatus:{},showAlertCategoryIcon:{type:Boolean},showAlertIcon:{type:Boolean}},emits:["click"],setup(c,{emit:l}){const o=c,a=f({}),i={created(n){for(const e in o)a[e]=n[e]}};let s=!1;const p=l,m=h(),d=()=>{const e={onClick:t=>p("click",t)};for(const t in o){const r=o[t];(r!==void 0||s)&&(e[t]=r??a[t])}return s=!0,B("obc-heat-pump",e,g(m))};return(n,e)=>k((v(),y(d,null,null,512)),[[i]])}});export{w as default};
2
+ //# sourceMappingURL=ObcHeatPump.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHeatPump.vue2.js","sources":["../../src/automation/heat-pump/ObcHeatPump.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/heat-pump/heat-pump.js';\n import {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nimport {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nimport {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nimport {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nimport {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n\n export interface Props {\n medium?: SpecialtyTankMedium;\n static?: boolean;\n showIcon?: boolean;\n tag?: string;\n positioning?: TankPositioning;\n clickable?: boolean;\n activated?: boolean;\n badgeControl?: AutomationButtonBadgeControl;\n badgeAlert?: AutomationButtonBadgeAlert;\n badgeInterlock?: AutomationButtonBadgeInterlock;\n badgeCommandLocked?: AutomationButtonBadgeCommandLocked;\n alert?: boolean;\n alertFrameType?: ObcAlertFrameType;\n alertFrameThickness?: ObcAlertFrameThickness;\n alertFrameStatus?: AlertType;\n showAlertCategoryIcon?: boolean;\n showAlertIcon?: boolean\n }\n\n \n \n export type {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nexport type {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nexport type {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nexport type {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nexport type {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcHeatPump',\n props: {\n medium: {},\n static: { type: Boolean },\n showIcon: { type: Boolean },\n tag: {},\n positioning: {},\n clickable: { type: Boolean },\n activated: { type: Boolean },\n badgeControl: {},\n badgeAlert: {},\n badgeInterlock: {},\n badgeCommandLocked: {},\n alert: { type: Boolean },\n alertFrameType: {},\n alertFrameThickness: {},\n alertFrameStatus: {},\n showAlertCategoryIcon: { type: Boolean },\n showAlertIcon: { type: Boolean }\n },\n emits: [\"click\"],\n setup(__props: any, { emit: __emit }) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n const emit = __emit;\n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n onClick: (event: CustomEvent<unknown>) => emit('click', event as CustomEvent<unknown>)\n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-heat-pump',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","__emit","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","emit","slots","useSlots","render","props","event","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"kRAwCA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,cACR,MAAO,CACL,OAAQ,CAAA,EACR,OAAQ,CAAE,KAAM,OAAA,EAChB,SAAU,CAAE,KAAM,OAAA,EAClB,IAAK,CAAA,EACL,YAAa,CAAA,EACb,UAAW,CAAE,KAAM,OAAA,EACnB,UAAW,CAAE,KAAM,OAAA,EACnB,aAAc,CAAA,EACd,WAAY,CAAA,EACZ,eAAgB,CAAA,EAChB,mBAAoB,CAAA,EACpB,MAAO,CAAE,KAAM,OAAA,EACf,eAAgB,CAAA,EAChB,oBAAqB,CAAA,EACrB,iBAAkB,CAAA,EAClB,sBAAuB,CAAE,KAAM,OAAA,EAC/B,cAAe,CAAE,KAAM,OAAA,CAAQ,EAEjC,MAAO,CAAC,OAAO,EACf,MAAMC,EAAc,CAAE,KAAMC,GAAU,CAElC,MAAMC,EAAWF,EAEfG,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAEd,MAAMC,EAAOR,EAEPS,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CACvB,QAAUC,GAAgCL,EAAK,QAASK,CAA6B,CAAA,EAKnF,UAAWP,KAAKL,EAAU,CACxB,MAAMa,EAAIb,EAASK,CAAgB,GAC9BQ,IAAM,QAAcP,KACtBK,EAAMN,CAAgB,EAAgBQ,GAAKZ,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLQ,EACL,gBACAH,EACAI,EAAgBP,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACQ,EAAUC,IACTC,GAAiBC,IAAcC,EAAaV,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACP,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,7 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-check-valve/hydraulic-check-valve.js';
2
+ export interface Props {
3
+ ariaLabel?: string;
4
+ vertical?: boolean;
5
+ }
6
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcHydraulicCheckValve.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcHydraulicCheckValve.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicCheckValve.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as u,reactive as v,useSlots as d,withDirectives as f,openBlock as m,createBlock as h,h as _}from"vue";import{assignSlotNodes as k}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/hydraulic-check-valve/hydraulic-check-valve.js";const P=u({__name:"ObcHydraulicCheckValve",props:{ariaLabel:{},vertical:{type:Boolean}},setup(a){const t=a,s=v({}),l={created(o){for(const e in t)s[e]=o[e]}};let n=!1;const i=d(),p=()=>{const e={};for(const r in t){const c=t[r];(c!==void 0||n)&&(e[r]=c??s[r])}return n=!0,_("obc-hydraulic-check-valve",e,k(i))};return(o,e)=>f((m(),h(p,null,null,512)),[[l]])}});export{P as default};
2
+ //# sourceMappingURL=ObcHydraulicCheckValve.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicCheckValve.vue2.js","sources":["../../src/automation/hydraulic-check-valve/ObcHydraulicCheckValve.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-check-valve/hydraulic-check-valve.js';\n \n\n export interface Props {\n ariaLabel?: string;\n vertical?: boolean\n }\n\n \n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcHydraulicCheckValve',\n props: {\n ariaLabel: {},\n vertical: { type: Boolean }\n },\n setup(__props: any) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n \n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n \n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-hydraulic-check-valve',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","slots","useSlots","render","props","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"0SAeA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,yBACR,MAAO,CACL,UAAW,CAAA,EACX,SAAU,CAAE,KAAM,OAAA,CAAQ,EAE5B,MAAMC,EAAc,CAEhB,MAAMC,EAAWD,EAEfE,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAId,MAAMC,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CAAA,EAMrB,UAAWL,KAAKL,EAAU,CACxB,MAAMW,EAAIX,EAASK,CAAgB,GAC9BM,IAAM,QAAcL,KACtBI,EAAML,CAAgB,EAAgBM,GAAKV,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLM,EACL,4BACAF,EACAG,EAAgBN,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACO,EAAUC,IACTC,GAAiBC,IAAcC,EAAaT,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACN,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,36 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-separator/hydraulic-separator.js';
2
+ import { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
3
+ import { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
4
+ import { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
5
+ import { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
6
+ import { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
7
+ export interface Props {
8
+ medium?: SpecialtyTankMedium;
9
+ static?: boolean;
10
+ showIcon?: boolean;
11
+ tag?: string;
12
+ positioning?: TankPositioning;
13
+ clickable?: boolean;
14
+ activated?: boolean;
15
+ badgeControl?: AutomationButtonBadgeControl;
16
+ badgeAlert?: AutomationButtonBadgeAlert;
17
+ badgeInterlock?: AutomationButtonBadgeInterlock;
18
+ badgeCommandLocked?: AutomationButtonBadgeCommandLocked;
19
+ alert?: boolean;
20
+ alertFrameType?: ObcAlertFrameType;
21
+ alertFrameThickness?: ObcAlertFrameThickness;
22
+ alertFrameStatus?: AlertType;
23
+ showAlertCategoryIcon?: boolean;
24
+ showAlertIcon?: boolean;
25
+ }
26
+ export type { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
27
+ export type { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
28
+ export type { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
29
+ export type { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
30
+ export type { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
31
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
32
+ click: (payload: CustomEvent<unknown>) => any;
33
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
34
+ onClick?: ((payload: CustomEvent<unknown>) => any) | undefined;
35
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
36
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcHydraulicSeparator.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcHydraulicSeparator.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicSeparator.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as u,reactive as f,useSlots as y,withDirectives as h,openBlock as k,createBlock as v,h as B}from"vue";import{assignSlotNodes as g}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/hydraulic-separator/hydraulic-separator.js";const w=u({__name:"ObcHydraulicSeparator",props:{medium:{},static:{type:Boolean},showIcon:{type:Boolean},tag:{},positioning:{},clickable:{type:Boolean},activated:{type:Boolean},badgeControl:{},badgeAlert:{},badgeInterlock:{},badgeCommandLocked:{},alert:{type:Boolean},alertFrameType:{},alertFrameThickness:{},alertFrameStatus:{},showAlertCategoryIcon:{type:Boolean},showAlertIcon:{type:Boolean}},emits:["click"],setup(c,{emit:l}){const t=c,r=f({}),i={created(n){for(const e in t)r[e]=n[e]}};let a=!1;const p=l,d=y(),m=()=>{const e={onClick:o=>p("click",o)};for(const o in t){const s=t[o];(s!==void 0||a)&&(e[o]=s??r[o])}return a=!0,B("obc-hydraulic-separator",e,g(d))};return(n,e)=>h((k(),v(m,null,null,512)),[[i]])}});export{w as default};
2
+ //# sourceMappingURL=ObcHydraulicSeparator.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicSeparator.vue2.js","sources":["../../src/automation/hydraulic-separator/ObcHydraulicSeparator.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-separator/hydraulic-separator.js';\n import {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nimport {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nimport {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nimport {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nimport {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n\n export interface Props {\n medium?: SpecialtyTankMedium;\n static?: boolean;\n showIcon?: boolean;\n tag?: string;\n positioning?: TankPositioning;\n clickable?: boolean;\n activated?: boolean;\n badgeControl?: AutomationButtonBadgeControl;\n badgeAlert?: AutomationButtonBadgeAlert;\n badgeInterlock?: AutomationButtonBadgeInterlock;\n badgeCommandLocked?: AutomationButtonBadgeCommandLocked;\n alert?: boolean;\n alertFrameType?: ObcAlertFrameType;\n alertFrameThickness?: ObcAlertFrameThickness;\n alertFrameStatus?: AlertType;\n showAlertCategoryIcon?: boolean;\n showAlertIcon?: boolean\n }\n\n \n \n export type {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nexport type {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nexport type {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nexport type {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nexport type {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcHydraulicSeparator',\n props: {\n medium: {},\n static: { type: Boolean },\n showIcon: { type: Boolean },\n tag: {},\n positioning: {},\n clickable: { type: Boolean },\n activated: { type: Boolean },\n badgeControl: {},\n badgeAlert: {},\n badgeInterlock: {},\n badgeCommandLocked: {},\n alert: { type: Boolean },\n alertFrameType: {},\n alertFrameThickness: {},\n alertFrameStatus: {},\n showAlertCategoryIcon: { type: Boolean },\n showAlertIcon: { type: Boolean }\n },\n emits: [\"click\"],\n setup(__props: any, { emit: __emit }) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n const emit = __emit;\n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n onClick: (event: CustomEvent<unknown>) => emit('click', event as CustomEvent<unknown>)\n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-hydraulic-separator',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","__emit","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","emit","slots","useSlots","render","props","event","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"sSAwCA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,wBACR,MAAO,CACL,OAAQ,CAAA,EACR,OAAQ,CAAE,KAAM,OAAA,EAChB,SAAU,CAAE,KAAM,OAAA,EAClB,IAAK,CAAA,EACL,YAAa,CAAA,EACb,UAAW,CAAE,KAAM,OAAA,EACnB,UAAW,CAAE,KAAM,OAAA,EACnB,aAAc,CAAA,EACd,WAAY,CAAA,EACZ,eAAgB,CAAA,EAChB,mBAAoB,CAAA,EACpB,MAAO,CAAE,KAAM,OAAA,EACf,eAAgB,CAAA,EAChB,oBAAqB,CAAA,EACrB,iBAAkB,CAAA,EAClB,sBAAuB,CAAE,KAAM,OAAA,EAC/B,cAAe,CAAE,KAAM,OAAA,CAAQ,EAEjC,MAAO,CAAC,OAAO,EACf,MAAMC,EAAc,CAAE,KAAMC,GAAU,CAElC,MAAMC,EAAWF,EAEfG,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAEd,MAAMC,EAAOR,EAEPS,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CACvB,QAAUC,GAAgCL,EAAK,QAASK,CAA6B,CAAA,EAKnF,UAAWP,KAAKL,EAAU,CACxB,MAAMa,EAAIb,EAASK,CAAgB,GAC9BQ,IAAM,QAAcP,KACtBK,EAAMN,CAAgB,EAAgBQ,GAAKZ,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLQ,EACL,0BACAH,EACAI,EAAgBP,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACQ,EAAUC,IACTC,GAAiBC,IAAcC,EAAaV,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACP,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,15 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
2
+ import { PositionSelectedDetail, HydraulicValve43Type } from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
3
+ export interface Props {
4
+ type?: HydraulicValve43Type;
5
+ ariaLabel?: string;
6
+ selectedPosition?: number;
7
+ vertical?: boolean;
8
+ }
9
+ export type { PositionSelectedDetail, HydraulicValve43Type } from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';
10
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
11
+ "position-selected": (payload: CustomEvent<PositionSelectedDetail>) => any;
12
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
13
+ "onPosition-selected"?: ((payload: CustomEvent<PositionSelectedDetail>) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcHydraulicValve43.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcHydraulicValve43.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicValve43.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as v,reactive as f,useSlots as m,withDirectives as _,openBlock as h,createBlock as P,h as y}from"vue";import{assignSlotNodes as b}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js";const x=v({__name:"ObcHydraulicValve43",props:{type:{},ariaLabel:{},selectedPosition:{},vertical:{type:Boolean}},emits:["position-selected"],setup(i,{emit:l}){const o=i,n=f({}),a={created(s){for(const e in o)n[e]=s[e]}};let c=!1;const p=l,d=m(),u=()=>{const e={onPositionSelected:t=>p("position-selected",t)};for(const t in o){const r=o[t];(r!==void 0||c)&&(e[t]=r??n[t])}return c=!0,y("obc-hydraulic-valve-4-3",e,b(d))};return(s,e)=>_((h(),P(u,null,null,512)),[[a]])}});export{x as default};
2
+ //# sourceMappingURL=ObcHydraulicValve43.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicValve43.vue2.js","sources":["../../src/automation/hydraulic-valve-4-3/ObcHydraulicValve43.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';\n import {PositionSelectedDetail, HydraulicValve43Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';\n\n export interface Props {\n type?: HydraulicValve43Type;\n ariaLabel?: string;\n selectedPosition?: number;\n vertical?: boolean\n }\n\n \n \n export type {PositionSelectedDetail, HydraulicValve43Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-4-3/hydraulic-valve-4-3.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcHydraulicValve43',\n props: {\n type: {},\n ariaLabel: {},\n selectedPosition: {},\n vertical: { type: Boolean }\n },\n emits: [\"position-selected\"],\n setup(__props: any, { emit: __emit }) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n const emit = __emit;\n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n onPositionSelected: (event: CustomEvent<PositionSelectedDetail>) => emit('position-selected', event as CustomEvent<PositionSelectedDetail>)\n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-hydraulic-valve-4-3',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","__emit","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","emit","slots","useSlots","render","props","event","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"sSAmBA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,sBACR,MAAO,CACL,KAAM,CAAA,EACN,UAAW,CAAA,EACX,iBAAkB,CAAA,EAClB,SAAU,CAAE,KAAM,OAAA,CAAQ,EAE5B,MAAO,CAAC,mBAAmB,EAC3B,MAAMC,EAAc,CAAE,KAAMC,GAAU,CAElC,MAAMC,EAAWF,EAEfG,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAEd,MAAMC,EAAOR,EAEPS,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CACvB,mBAAqBC,GAA+CL,EAAK,oBAAqBK,CAA4C,CAAA,EAKxI,UAAWP,KAAKL,EAAU,CACxB,MAAMa,EAAIb,EAASK,CAAgB,GAC9BQ,IAAM,QAAcP,KACtBK,EAAMN,CAAgB,EAAgBQ,GAAKZ,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLQ,EACL,0BACAH,EACAI,EAAgBP,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACQ,EAAUC,IACTC,GAAiBC,IAAcC,EAAaV,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACP,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,15 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
2
+ import { PositionSelectedDetail, HydraulicValveX2Type } from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
3
+ export interface Props {
4
+ type?: HydraulicValveX2Type;
5
+ ariaLabel?: string;
6
+ selectedPosition?: number;
7
+ vertical?: boolean;
8
+ }
9
+ export type { PositionSelectedDetail, HydraulicValveX2Type } from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';
10
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
11
+ "position-selected": (payload: CustomEvent<PositionSelectedDetail>) => any;
12
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
13
+ "onPosition-selected"?: ((payload: CustomEvent<PositionSelectedDetail>) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcHydraulicValveX2.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcHydraulicValveX2.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicValveX2.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as v,reactive as f,useSlots as m,withDirectives as _,openBlock as h,createBlock as P,h as y}from"vue";import{assignSlotNodes as b}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js";const k=v({__name:"ObcHydraulicValveX2",props:{type:{},ariaLabel:{},selectedPosition:{},vertical:{type:Boolean}},emits:["position-selected"],setup(i,{emit:l}){const o=i,n=f({}),a={created(s){for(const e in o)n[e]=s[e]}};let c=!1;const p=l,d=m(),u=()=>{const e={onPositionSelected:t=>p("position-selected",t)};for(const t in o){const r=o[t];(r!==void 0||c)&&(e[t]=r??n[t])}return c=!0,y("obc-hydraulic-valve-x-2",e,b(d))};return(s,e)=>_((h(),P(u,null,null,512)),[[a]])}});export{k as default};
2
+ //# sourceMappingURL=ObcHydraulicValveX2.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcHydraulicValveX2.vue2.js","sources":["../../src/automation/hydraulic-valve-x-2/ObcHydraulicValveX2.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';\n import {PositionSelectedDetail, HydraulicValveX2Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';\n\n export interface Props {\n type?: HydraulicValveX2Type;\n ariaLabel?: string;\n selectedPosition?: number;\n vertical?: boolean\n }\n\n \n \n export type {PositionSelectedDetail, HydraulicValveX2Type} from '@oicl/openbridge-webcomponents/dist/automation/hydraulic-valve-x-2/hydraulic-valve-x-2.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcHydraulicValveX2',\n props: {\n type: {},\n ariaLabel: {},\n selectedPosition: {},\n vertical: { type: Boolean }\n },\n emits: [\"position-selected\"],\n setup(__props: any, { emit: __emit }) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n const emit = __emit;\n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n onPositionSelected: (event: CustomEvent<PositionSelectedDetail>) => emit('position-selected', event as CustomEvent<PositionSelectedDetail>)\n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'obc-hydraulic-valve-x-2',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","__emit","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","emit","slots","useSlots","render","props","event","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"sSAmBA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,sBACR,MAAO,CACL,KAAM,CAAA,EACN,UAAW,CAAA,EACX,iBAAkB,CAAA,EAClB,SAAU,CAAE,KAAM,OAAA,CAAQ,EAE5B,MAAO,CAAC,mBAAmB,EAC3B,MAAMC,EAAc,CAAE,KAAMC,GAAU,CAElC,MAAMC,EAAWF,EAEfG,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAEd,MAAMC,EAAOR,EAEPS,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CACvB,mBAAqBC,GAA+CL,EAAK,oBAAqBK,CAA4C,CAAA,EAKxI,UAAWP,KAAKL,EAAU,CACxB,MAAMa,EAAIb,EAASK,CAAgB,GAC9BQ,IAAM,QAAcP,KACtBK,EAAMN,CAAgB,EAAgBQ,GAAKZ,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLQ,EACL,0BACAH,EACAI,EAAgBP,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACQ,EAAUC,IACTC,GAAiBC,IAAcC,EAAaV,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACP,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,8 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/shuffle-button/shuffle-button-base.js';
2
+ export interface Props {
3
+ selectedPosition?: number;
4
+ vertical?: boolean;
5
+ ariaLabel?: string;
6
+ }
7
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcShuffleButtonBase.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcShuffleButtonBase.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcShuffleButtonBase.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as u,reactive as f,useSlots as d,withDirectives as v,openBlock as m,createBlock as _,h}from"vue";import{assignSlotNodes as B}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/shuffle-button/shuffle-button-base.js";const k=u({__name:"ObcShuffleButtonBase",props:{selectedPosition:{},vertical:{type:Boolean},ariaLabel:{}},setup(a){const t=a,s=f({}),i={created(o){for(const e in t)s[e]=o[e]}};let r=!1;const l=d(),p=()=>{const e={};for(const n in t){const c=t[n];(c!==void 0||r)&&(e[n]=c??s[n])}return r=!0,h("undefined",e,B(l))};return(o,e)=>v((m(),_(p,null,null,512)),[[i]])}});export{k as default};
2
+ //# sourceMappingURL=ObcShuffleButtonBase.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcShuffleButtonBase.vue2.js","sources":["../../src/automation/shuffle-button/ObcShuffleButtonBase.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/shuffle-button/shuffle-button-base.js';\n \n\n export interface Props {\n selectedPosition?: number;\n vertical?: boolean;\n ariaLabel?: string\n }\n\n \n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcShuffleButtonBase',\n props: {\n selectedPosition: {},\n vertical: { type: Boolean },\n ariaLabel: {}\n },\n setup(__props: any) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n \n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n \n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'undefined',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","slots","useSlots","render","props","v","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"4RAgBA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,uBACR,MAAO,CACL,iBAAkB,CAAA,EAClB,SAAU,CAAE,KAAM,OAAA,EAClB,UAAW,CAAA,CAAC,EAEd,MAAMC,EAAc,CAEhB,MAAMC,EAAWD,EAEfE,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAId,MAAMC,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CAAA,EAMrB,UAAWL,KAAKL,EAAU,CACxB,MAAMW,EAAIX,EAASK,CAAgB,GAC9BM,IAAM,QAAcL,KACtBI,EAAML,CAAgB,EAAgBM,GAAKV,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGL,EACL,YACAI,EACAE,EAAgBL,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACM,EAAUC,IACTC,GAAiBC,IAAcC,EAAaR,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACN,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
@@ -0,0 +1,32 @@
1
+ import '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
2
+ import { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
3
+ import { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
4
+ import { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
5
+ import { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
6
+ import { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
7
+ export interface Props {
8
+ medium?: SpecialtyTankMedium;
9
+ static?: boolean;
10
+ showIcon?: boolean;
11
+ tag?: string;
12
+ positioning?: TankPositioning;
13
+ clickable?: boolean;
14
+ activated?: boolean;
15
+ badgeControl?: AutomationButtonBadgeControl;
16
+ badgeAlert?: AutomationButtonBadgeAlert;
17
+ badgeInterlock?: AutomationButtonBadgeInterlock;
18
+ badgeCommandLocked?: AutomationButtonBadgeCommandLocked;
19
+ alert?: boolean;
20
+ alertFrameType?: ObcAlertFrameType;
21
+ alertFrameThickness?: ObcAlertFrameThickness;
22
+ alertFrameStatus?: AlertType;
23
+ showAlertCategoryIcon?: boolean;
24
+ showAlertIcon?: boolean;
25
+ }
26
+ export type { SpecialtyTankMedium } from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';
27
+ export type { TankPositioning } from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';
28
+ export type { AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';
29
+ export type { ObcAlertFrameType, ObcAlertFrameThickness } from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';
30
+ export type { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js';
31
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
32
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import f from"./ObcAbstractSpecialtyTank.vue2.js";export{f as default};
2
+ //# sourceMappingURL=ObcAbstractSpecialtyTank.vue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcAbstractSpecialtyTank.vue.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import{defineComponent as d,reactive as m,useSlots as u,withDirectives as f,openBlock as y,createBlock as v,h as B}from"vue";import{assignSlotNodes as g}from"@lit-labs/vue-utils/wrapper-utils.js";import"@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js";const _=d({__name:"ObcAbstractSpecialtyTank",props:{medium:{},static:{type:Boolean},showIcon:{type:Boolean},tag:{},positioning:{},clickable:{type:Boolean},activated:{type:Boolean},badgeControl:{},badgeAlert:{},badgeInterlock:{},badgeCommandLocked:{},alert:{type:Boolean},alertFrameType:{},alertFrameThickness:{},alertFrameStatus:{},showAlertCategoryIcon:{type:Boolean},showAlertIcon:{type:Boolean}},setup(c){const t=c,a=m({}),l={created(o){for(const e in t)a[e]=o[e]}};let r=!1;const p=u(),i=()=>{const e={};for(const n in t){const s=t[n];(s!==void 0||r)&&(e[n]=s??a[n])}return r=!0,B("undefined",e,g(p))};return(o,e)=>f((y(),v(i,null,null,512)),[[l]])}});export{_ as default};
2
+ //# sourceMappingURL=ObcAbstractSpecialtyTank.vue2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObcAbstractSpecialtyTank.vue2.js","sources":["../../src/automation/specialty-tank/ObcAbstractSpecialtyTank.vue?vue&type=script&setup=true&lang.ts"],"sourcesContent":["import { defineComponent as _defineComponent } from 'vue'\nimport { withDirectives as _withDirectives, openBlock as _openBlock, createBlock as _createBlock } from \"vue\"\n\nimport { h, useSlots, reactive } from \"vue\";\n import { assignSlotNodes, Slots } from \"@lit-labs/vue-utils/wrapper-utils.js\";\n import '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\n import {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nimport {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nimport {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nimport {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nimport {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n\n export interface Props {\n medium?: SpecialtyTankMedium;\n static?: boolean;\n showIcon?: boolean;\n tag?: string;\n positioning?: TankPositioning;\n clickable?: boolean;\n activated?: boolean;\n badgeControl?: AutomationButtonBadgeControl;\n badgeAlert?: AutomationButtonBadgeAlert;\n badgeInterlock?: AutomationButtonBadgeInterlock;\n badgeCommandLocked?: AutomationButtonBadgeCommandLocked;\n alert?: boolean;\n alertFrameType?: ObcAlertFrameType;\n alertFrameThickness?: ObcAlertFrameThickness;\n alertFrameStatus?: AlertType;\n showAlertCategoryIcon?: boolean;\n showAlertIcon?: boolean\n }\n\n \n \n export type {SpecialtyTankMedium} from '@oicl/openbridge-webcomponents/dist/automation/specialty-tank/abstract-specialty-tank.js';\nexport type {TankPositioning} from '@oicl/openbridge-webcomponents/dist/automation/automation-tank/tank-positioning.js';\nexport type {AutomationButtonBadgeControl, AutomationButtonBadgeAlert, AutomationButtonBadgeInterlock, AutomationButtonBadgeCommandLocked} from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button.js';\nexport type {ObcAlertFrameType, ObcAlertFrameThickness} from '@oicl/openbridge-webcomponents/dist/components/alert-frame/alert-frame.js';\nexport type {AlertType} from '@oicl/openbridge-webcomponents/dist/types.js';\n \nexport default /*@__PURE__*/_defineComponent({\n __name: 'ObcAbstractSpecialtyTank',\n props: {\n medium: {},\n static: { type: Boolean },\n showIcon: { type: Boolean },\n tag: {},\n positioning: {},\n clickable: { type: Boolean },\n activated: { type: Boolean },\n badgeControl: {},\n badgeAlert: {},\n badgeInterlock: {},\n badgeCommandLocked: {},\n alert: { type: Boolean },\n alertFrameType: {},\n alertFrameThickness: {},\n alertFrameStatus: {},\n showAlertCategoryIcon: { type: Boolean },\n showAlertIcon: { type: Boolean }\n },\n setup(__props: any) {\n\n const vueProps = __props;\n\n const defaults = reactive({} as Props);\n const vDefaults = {\n created(el: any) {\n for (const p in vueProps) {\n defaults[p as keyof Props] = el[p];\n }\n }\n };\n\n let hasRendered = false;\n\n \n\n const slots = useSlots() as Slots;\n\n const render = () => {\n const eventProps = {\n \n };\n const props = eventProps as (typeof eventProps & Props);\n\n \n for (const p in vueProps) {\n const v = vueProps[p as keyof Props];\n if ((v !== undefined) || hasRendered) {\n (props[p as keyof Props] as unknown) = v ?? defaults[p as keyof Props];\n }\n }\n\n hasRendered = true;\n \n\n return h(\n 'undefined',\n props,\n assignSlotNodes(slots)\n );\n };\n \nreturn (_ctx: any,_cache: any) => {\n return _withDirectives((_openBlock(), _createBlock(render, null, null, 512)), [\n [vDefaults]\n ])\n}\n}\n\n})"],"names":["_sfc_main","_defineComponent","__props","vueProps","defaults","reactive","vDefaults","el","p","hasRendered","slots","useSlots","render","props","v","h","assignSlotNodes","_ctx","_cache","_withDirectives","_openBlock","_createBlock"],"mappings":"qSAwCA,MAAAA,EAA4BC,EAAiB,CAC3C,OAAQ,2BACR,MAAO,CACL,OAAQ,CAAA,EACR,OAAQ,CAAE,KAAM,OAAA,EAChB,SAAU,CAAE,KAAM,OAAA,EAClB,IAAK,CAAA,EACL,YAAa,CAAA,EACb,UAAW,CAAE,KAAM,OAAA,EACnB,UAAW,CAAE,KAAM,OAAA,EACnB,aAAc,CAAA,EACd,WAAY,CAAA,EACZ,eAAgB,CAAA,EAChB,mBAAoB,CAAA,EACpB,MAAO,CAAE,KAAM,OAAA,EACf,eAAgB,CAAA,EAChB,oBAAqB,CAAA,EACrB,iBAAkB,CAAA,EAClB,sBAAuB,CAAE,KAAM,OAAA,EAC/B,cAAe,CAAE,KAAM,OAAA,CAAQ,EAEjC,MAAMC,EAAc,CAEhB,MAAMC,EAAWD,EAEfE,EAAWC,EAAS,EAAW,EAC/BC,EAAY,CAChB,QAAQC,EAAS,CACf,UAAWC,KAAKL,EACdC,EAASI,CAAgB,EAAID,EAAGC,CAAC,CAErC,CAAA,EAGF,IAAIC,EAAc,GAId,MAAMC,EAAQC,EAAA,EAERC,EAAS,IAAM,CAInB,MAAMC,EAHa,CAAA,EAMrB,UAAWL,KAAKL,EAAU,CACxB,MAAMW,EAAIX,EAASK,CAAgB,GAC9BM,IAAM,QAAcL,KACtBI,EAAML,CAAgB,EAAgBM,GAAKV,EAASI,CAAgB,EAEzE,CAEA,OAAAC,EAAc,GAGLM,EACL,YACAF,EACAG,EAAgBN,CAAK,CAAA,CAEzB,EAEN,MAAO,CAACO,EAAUC,IACTC,GAAiBC,IAAcC,EAAaT,EAAQ,KAAM,KAAM,GAAG,GAAI,CAC5E,CAACN,CAAS,CAAA,CACX,CAEH,CAEA,CAAC"}
package/package.json CHANGED
@@ -8,9 +8,9 @@
8
8
  "build:declarations": "vue-tsc --declaration --emitDeclarationOnly",
9
9
  "preview": "vite preview"
10
10
  },
11
- "version": "2.0.0-next.135",
11
+ "version": "2.0.0-next.137",
12
12
  "dependencies": {
13
- "@oicl/openbridge-webcomponents": "^2.0.0-next.135",
13
+ "@oicl/openbridge-webcomponents": "^2.0.0-next.137",
14
14
  "vue": "^3.2.41",
15
15
  "@lit-labs/vue-utils": "^0.1.0"
16
16
  },
@@ -74,7 +74,13 @@
74
74
  "automation/gauge-motors-and-pumps/ObcGaugeMotorsAndPumps*",
75
75
  "automation/gauge-valve/ObcGaugeValve*",
76
76
  "automation/ground/ObcGround*",
77
+ "automation/heat-exchanger/ObcHeatExchanger*",
78
+ "automation/heat-pump/ObcHeatPump*",
77
79
  "automation/horizontal-line/ObcHorizontalLine*",
80
+ "automation/hydraulic-check-valve/ObcHydraulicCheckValve*",
81
+ "automation/hydraulic-separator/ObcHydraulicSeparator*",
82
+ "automation/hydraulic-valve-4-3/ObcHydraulicValve43*",
83
+ "automation/hydraulic-valve-x-2/ObcHydraulicValveX2*",
78
84
  "automation/indicator-battery/ObcIndicatorBattery*",
79
85
  "automation/indicator-engine/ObcIndicatorEngine*",
80
86
  "automation/indicator-generator/ObcIndicatorGenerator*",
@@ -87,7 +93,9 @@
87
93
  "automation/pump/ObcPump*",
88
94
  "automation/resistor/ObcResistor*",
89
95
  "automation/router/ObcRouter*",
96
+ "automation/shuffle-button/ObcShuffleButtonBase*",
90
97
  "automation/source/ObcSource*",
98
+ "automation/specialty-tank/ObcAbstractSpecialtyTank*",
91
99
  "automation/switch/ObcSwitch*",
92
100
  "automation/three-way-line/ObcThreeWayLine*",
93
101
  "automation/transformer/ObcTransformer*",