d2aura 26.0.7 → 26.0.9

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 (121) hide show
  1. package/api/eda/edaManagerApi.d.ts +26 -0
  2. package/api/eda/edaManagerApi.js +51 -0
  3. package/api/eda/edaManagerApi.js.map +1 -0
  4. package/api/eda/generated/events.d.ts +132 -0
  5. package/api/eda/generated/events.js +295 -0
  6. package/api/eda/generated/events.js.map +1 -0
  7. package/api/eda/generated/structures.d.ts +109 -0
  8. package/api/eda/generated/structures.js +2 -0
  9. package/api/eda/generated/structures.js.map +1 -0
  10. package/core/i18n/d2aura.en.json +40 -1
  11. package/core/i18n/d2aura.sk.json +87 -1
  12. package/coreui/components/edaManagerComponent/components/edaBasePanel.d.ts +16 -0
  13. package/coreui/components/edaManagerComponent/components/edaBasePanel.js +85 -0
  14. package/coreui/components/edaManagerComponent/components/edaBasePanel.js.map +1 -0
  15. package/coreui/components/edaManagerComponent/components/edaDataBasePanel.d.ts +43 -0
  16. package/coreui/components/edaManagerComponent/components/edaDataBasePanel.js +217 -0
  17. package/coreui/components/edaManagerComponent/components/edaDataBasePanel.js.map +1 -0
  18. package/coreui/components/edaManagerComponent/components/edaDetailPanel.d.ts +16 -0
  19. package/coreui/components/edaManagerComponent/components/edaDetailPanel.js +25 -0
  20. package/coreui/components/edaManagerComponent/components/edaDetailPanel.js.map +1 -0
  21. package/coreui/components/edaManagerComponent/components/edaGraphPanel.d.ts +7 -0
  22. package/coreui/components/edaManagerComponent/components/edaGraphPanel.js +393 -0
  23. package/coreui/components/edaManagerComponent/components/edaGraphPanel.js.map +1 -0
  24. package/coreui/components/edaManagerComponent/components/edaGroupDetailPanel.d.ts +18 -0
  25. package/coreui/components/edaManagerComponent/components/edaGroupDetailPanel.js +72 -0
  26. package/coreui/components/edaManagerComponent/components/edaGroupDetailPanel.js.map +1 -0
  27. package/coreui/components/edaManagerComponent/components/edaSampleRangePickerPanel.d.ts +29 -0
  28. package/coreui/components/edaManagerComponent/components/edaSampleRangePickerPanel.js +94 -0
  29. package/coreui/components/edaManagerComponent/components/edaSampleRangePickerPanel.js.map +1 -0
  30. package/coreui/components/edaManagerComponent/components/edaScenarioDetailPanel.d.ts +18 -0
  31. package/coreui/components/edaManagerComponent/components/edaScenarioDetailPanel.js +86 -0
  32. package/coreui/components/edaManagerComponent/components/edaScenarioDetailPanel.js.map +1 -0
  33. package/coreui/components/edaManagerComponent/components/edaTablePanel.d.ts +4 -0
  34. package/coreui/components/edaManagerComponent/components/edaTablePanel.js +73 -0
  35. package/coreui/components/edaManagerComponent/components/edaTablePanel.js.map +1 -0
  36. package/coreui/components/edaManagerComponent/components/edaTimeWindowPickerPanel.d.ts +34 -0
  37. package/coreui/components/edaManagerComponent/components/edaTimeWindowPickerPanel.js +202 -0
  38. package/coreui/components/edaManagerComponent/components/edaTimeWindowPickerPanel.js.map +1 -0
  39. package/coreui/components/edaManagerComponent/components/edaTreeView.d.ts +61 -0
  40. package/coreui/components/edaManagerComponent/components/edaTreeView.js +399 -0
  41. package/coreui/components/edaManagerComponent/components/edaTreeView.js.map +1 -0
  42. package/coreui/components/edaManagerComponent/components/edaVectorDetailPanel.d.ts +20 -0
  43. package/coreui/components/edaManagerComponent/components/edaVectorDetailPanel.js +162 -0
  44. package/coreui/components/edaManagerComponent/components/edaVectorDetailPanel.js.map +1 -0
  45. package/coreui/components/edaManagerComponent/constants/edaTypes.d.ts +78 -0
  46. package/coreui/components/edaManagerComponent/constants/edaTypes.js +71 -0
  47. package/coreui/components/edaManagerComponent/constants/edaTypes.js.map +1 -0
  48. package/coreui/components/edaManagerComponent/constants/storageTypes.d.ts +5 -0
  49. package/coreui/components/edaManagerComponent/constants/storageTypes.js +7 -0
  50. package/coreui/components/edaManagerComponent/constants/storageTypes.js.map +1 -0
  51. package/coreui/components/edaManagerComponent/context/sharedSampleRange.d.ts +17 -0
  52. package/coreui/components/edaManagerComponent/context/sharedSampleRange.js +3 -0
  53. package/coreui/components/edaManagerComponent/context/sharedSampleRange.js.map +1 -0
  54. package/coreui/components/edaManagerComponent/context/sharedSampleRangeWrapper.d.ts +6 -0
  55. package/coreui/components/edaManagerComponent/context/sharedSampleRangeWrapper.js +14 -0
  56. package/coreui/components/edaManagerComponent/context/sharedSampleRangeWrapper.js.map +1 -0
  57. package/coreui/components/edaManagerComponent/edaDetail.d.ts +45 -0
  58. package/coreui/components/edaManagerComponent/edaDetail.js +173 -0
  59. package/coreui/components/edaManagerComponent/edaDetail.js.map +1 -0
  60. package/coreui/components/edaManagerComponent/edaManager.d.ts +20 -0
  61. package/coreui/components/edaManagerComponent/edaManager.js +33 -0
  62. package/coreui/components/edaManagerComponent/edaManager.js.map +1 -0
  63. package/coreui/components/edaManagerComponent/edaNavigator.d.ts +19 -0
  64. package/coreui/components/edaManagerComponent/edaNavigator.js +64 -0
  65. package/coreui/components/edaManagerComponent/edaNavigator.js.map +1 -0
  66. package/coreui/components/edaManagerComponent/edaSelect.d.ts +10 -0
  67. package/coreui/components/edaManagerComponent/edaSelect.js +9 -0
  68. package/coreui/components/edaManagerComponent/edaSelect.js.map +1 -0
  69. package/coreui/components/edaManagerComponent/icons/letterCFilled.d.ts +6 -0
  70. package/coreui/components/edaManagerComponent/icons/letterCFilled.js +6 -0
  71. package/coreui/components/edaManagerComponent/icons/letterCFilled.js.map +1 -0
  72. package/coreui/components/edaManagerComponent/icons/letterDFilled.d.ts +6 -0
  73. package/coreui/components/edaManagerComponent/icons/letterDFilled.js +6 -0
  74. package/coreui/components/edaManagerComponent/icons/letterDFilled.js.map +1 -0
  75. package/coreui/components/edaManagerComponent/icons/letterHFilled.d.ts +6 -0
  76. package/coreui/components/edaManagerComponent/icons/letterHFilled.js +6 -0
  77. package/coreui/components/edaManagerComponent/icons/letterHFilled.js.map +1 -0
  78. package/coreui/components/edaManagerComponent/icons/letterIFilled.d.ts +6 -0
  79. package/coreui/components/edaManagerComponent/icons/letterIFilled.js +6 -0
  80. package/coreui/components/edaManagerComponent/icons/letterIFilled.js.map +1 -0
  81. package/coreui/components/edaManagerComponent/icons/letterMFilled.d.ts +6 -0
  82. package/coreui/components/edaManagerComponent/icons/letterMFilled.js +6 -0
  83. package/coreui/components/edaManagerComponent/icons/letterMFilled.js.map +1 -0
  84. package/coreui/components/edaManagerComponent/icons/numberFifteenFilled.d.ts +6 -0
  85. package/coreui/components/edaManagerComponent/icons/numberFifteenFilled.js +7 -0
  86. package/coreui/components/edaManagerComponent/icons/numberFifteenFilled.js.map +1 -0
  87. package/coreui/components/edaManagerComponent/icons/pairOutlined.d.ts +6 -0
  88. package/coreui/components/edaManagerComponent/icons/pairOutlined.js +6 -0
  89. package/coreui/components/edaManagerComponent/icons/pairOutlined.js.map +1 -0
  90. package/coreui/components/edaManagerComponent/icons/periodicOutlined.d.ts +6 -0
  91. package/coreui/components/edaManagerComponent/icons/periodicOutlined.js +6 -0
  92. package/coreui/components/edaManagerComponent/icons/periodicOutlined.js.map +1 -0
  93. package/coreui/components/edaManagerComponent/utils/utils.d.ts +2 -0
  94. package/coreui/components/edaManagerComponent/utils/utils.js +8 -0
  95. package/coreui/components/edaManagerComponent/utils/utils.js.map +1 -0
  96. package/d2configuration/edaManager/DB.EM_EDA_Function.xml +65 -0
  97. package/d2configuration/edaManager/DB.EM_EDA_GroupVector.xml +65 -0
  98. package/d2configuration/edaManager/DB.EM_EDA_Scenario.xml +65 -0
  99. package/d2configuration/edaManager/DB.EM_EDA_Vector.xml +65 -0
  100. package/d2configuration/edaManager/DB.EM_EDA_VectorEx.xml +65 -0
  101. package/d2configuration/edaManager/DBC_EM_EDA.xml +51 -0
  102. package/d2configuration/edaManager/E.EM_DETAIL_IMPL.xml +124 -0
  103. package/d2configuration/edaManager/E.EM_DETAIL_UNIT.xml +202 -0
  104. package/d2configuration/edaManager/E.EM_NAVIGATOR_IMPL.xml +160 -0
  105. package/d2configuration/edaManager/E.EM_NAVIGATOR_SQL.xml +272 -0
  106. package/d2configuration/edaManager/E.EM_NAVIGATOR_UNIT.xml +346 -0
  107. package/d2configuration/edaManager/E.EM_VECTOR_IMPL.xml +92 -0
  108. package/d2configuration/edaManager/E.EM_VECTOR_MANAGER.xml +116 -0
  109. package/d2configuration/edaManager/E.EM_VECTOR_UNIT.xml +124 -0
  110. package/d2configuration/edaManager/EDA_CancelSession.xml +54 -0
  111. package/d2configuration/edaManager/EDA_GetSessionId.xml +54 -0
  112. package/d2configuration/edaManager/EDA_ReadValuesFromVektorRec.xml +54 -0
  113. package/d2configuration/edaManager/SD.EM_EDA_Function.xml +135 -0
  114. package/d2configuration/edaManager/SD.EM_EDA_GroupVector.xml +190 -0
  115. package/d2configuration/edaManager/SD.EM_EDA_ReadValuesFromVector_V1.xml +168 -0
  116. package/d2configuration/edaManager/SD.EM_EDA_Scenario.xml +322 -0
  117. package/d2configuration/edaManager/SD.EM_EDA_Vector.xml +465 -0
  118. package/d2configuration/edaManager/SD.EM_EDA_VectorEx.xml +80 -0
  119. package/d2configuration/edaManager/SD.EM_EDA_VectorValues.xml +58 -0
  120. package/d2configuration/edaManager/SD.EM_Tree_Item.xml +113 -0
  121. package/package.json +8 -6
@@ -0,0 +1 @@
1
+ {"version":3,"file":"edaManager.js","sourceRoot":"","sources":["../../../../../coreui/components/edaManagerComponent/edaManager.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAC,QAAQ,EAAC,MAAM,MAAM,CAAC;AAC9B,OAAO,EAAC,YAAY,EAAC,MAAM,gBAAgB,CAAC;AAC5C,OAAO,EAAC,SAAS,EAAW,MAAM,aAAa,CAAC;AAGhD,OAAO,OAAO,MAAM,mCAAmC,CAAC;AACxD,OAAO,EAAC,YAAY,EAAC,MAAM,YAAY,CAAC;AAGxC,MAAM,SAAS,GAAG,YAAY,CAAC,CAAC,EAAC,GAAG,EAAE,KAAK,EAAC,EAAG,EAAE;IAC7C,OAAO;QACH,UAAU,EAAE,GAAG,CAAA;;;uBAGA,KAAK,CAAC,UAAU;SAC9B;KACJ,CAAA;AACL,CAAC,CAAC,CAAC;AAkBH,MAAM,OAAO,UAAW,SAAQ,KAAK,CAAC,SAAuB;IACzD,YAAY,KAAsB;QAC9B,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,EAAE,CAAA;IACnB,CAAC;IAED,MAAM;QACF,MAAM,EAAC,YAAY,EAAC,GAAG,IAAI,CAAC,KAAK,CAAC;QAClC,MAAM,EAAC,IAAI,EAAE,OAAO,EAAE,cAAc,EAAC,GAAG,IAAI,CAAC,KAAK,CAAC;QAEnD,OAAO,CACH,oBAAC,OAAO,IAAC,SAAS,EAAE,SAAS,IACxB,CAAC,GAAG,EAAE,EAAE,CACL,oBAAC,QAAQ,IAAC,SAAS,EAAE,GAAG,CAAC,MAAM,CAAC,UAAU;YACtC,oBAAC,QAAQ,CAAC,KAAK,IAAC,WAAW,EAAE,KAAK;gBAC9B,oBAAC,YAAY,IAAC,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,EACnB,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,EAAC,YAAY,EAAE,GAAG,CAAC,KAAK,CAAC,UAAU,EAAC,EAC3C,aAAa,EAAE,CAAC,IAAI,EAAE,EAAE;wBACpB,IAAI,CAAC,QAAQ,CAAC,EAAC,YAAY,EAAE,IAAI,EAAC,CAAC,CAAC;oBACxC,CAAC,GACb,CACW;YACjB,oBAAC,QAAQ,CAAC,KAAK;gBACX,oBAAC,SAAS,IAAC,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,EACnB,IAAI,EAAE,YAAY,EAClB,IAAI,EAAE,IAAI,EACV,OAAO,EAAE,OAAO,EAChB,cAAc,EAAE,cAAc,EAC9B,eAAe,EAAE,cAAc,EAC/B,KAAK,EAAE,EAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,EAAE,GAAG,CAAC,KAAK,CAAC,UAAU,EAAC,GAClF,CACW,CACV,CAET,CACb,CAAC;IACN,CAAC;CACJ","sourcesContent":["import React from \"react\";\r\nimport {Splitter} from \"antd\";\r\nimport {EdaNavigator} from \"./edaNavigator\";\r\nimport {EdaDetail, ItemType} from \"./edaDetail\";\r\nimport EdaManagerApi from \"../../../api/eda/edaManagerApi\";\r\nimport {SizeType} from \"antd/lib/config-provider/SizeContext\";\r\nimport WithCss from \"d2coreui/components/style/withCss\";\r\nimport {createStyles} from \"antd-style\";\r\nimport {Variant} from \"antd/es/config-provider\";\r\n\r\nconst useStyles = createStyles(({css, token},) => {\r\n return {\r\n baseLayout: css`\r\n width: 100%;\r\n height: 100%;\r\n padding: ${token.paddingXXS}px;\r\n `\r\n }\r\n});\r\n\r\ninterface Props {\r\n api: EdaManagerApi\r\n\r\n // Size of AntD components\r\n size?: SizeType\r\n variant?: Variant\r\n // Displaying of time window selector in Table and Graph panel\r\n showTimeWindow?: boolean\r\n // Default displayed chart legend\r\n showChartLegend?: boolean\r\n}\r\n\r\ninterface State {\r\n selectedItem?: ItemType\r\n}\r\n\r\nexport class EdaManager extends React.Component<Props, State> {\r\n constructor(props: Readonly<Props>) {\r\n super(props);\r\n this.state = {}\r\n }\r\n\r\n render() {\r\n const {selectedItem} = this.state;\r\n const {size, variant, showTimeWindow} = this.props;\r\n\r\n return (\r\n <WithCss useStyles={useStyles}>\r\n {(css) =>\r\n <Splitter className={css.styles.baseLayout}>\r\n <Splitter.Panel defaultSize={\"25%\"}>\r\n <EdaNavigator api={this.props.api}\r\n size={size}\r\n style={{paddingRight: css.theme.paddingXXS}}\r\n onDoubleClick={(item) => {\r\n this.setState({selectedItem: item});\r\n }}\r\n />\r\n </Splitter.Panel>\r\n <Splitter.Panel>\r\n <EdaDetail api={this.props.api}\r\n item={selectedItem}\r\n size={size}\r\n variant={variant}\r\n showTimeWindow={showTimeWindow}\r\n showChartLegend={showTimeWindow}\r\n style={{width: '100%', height: '100%', paddingLeft: css.theme.paddingXXS}}\r\n />\r\n </Splitter.Panel>\r\n </Splitter>\r\n }\r\n </WithCss>\r\n );\r\n }\r\n}"]}
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import EdaManagerApi from "../../../api/eda/edaManagerApi";
3
+ import { TypedIndex } from "./constants/edaTypes";
4
+ import { SizeType } from "antd/lib/config-provider/SizeContext";
5
+ interface Props {
6
+ api: EdaManagerApi;
7
+ style?: React.CSSProperties;
8
+ size?: SizeType;
9
+ onDoubleClick?: (item: TypedIndex) => void;
10
+ }
11
+ interface State {
12
+ }
13
+ export declare class EdaNavigator extends React.Component<Props, State> {
14
+ constructor(props: Readonly<Props>);
15
+ renderGroups(): React.ReactNode;
16
+ renderScenarios(): React.ReactNode;
17
+ render(): React.ReactNode;
18
+ }
19
+ export {};
@@ -0,0 +1,64 @@
1
+ import React from "react";
2
+ import { EdaTreeView, TreeViewType } from "./components/edaTreeView";
3
+ import { Button, Space, Tabs } from "antd";
4
+ import { createStyles } from "antd-style";
5
+ import WithCss from "d2coreui/components/style/withCss";
6
+ import { SearchOutlined } from "@ant-design/icons";
7
+ import i18n from "d2core/i18n/i18n";
8
+ const useStyles = createStyles(({ css, token }) => {
9
+ return {
10
+ baseLayout: css `
11
+ height: 100%;
12
+
13
+ .ant-tabs-content {
14
+ height: 100%;
15
+ background-color: ${token.colorBgContainer};
16
+ border-radius: ${token.borderRadius}px;
17
+ transition: background-color 0.3s;
18
+ }
19
+
20
+ .control-buttons {
21
+ padding: ${token.paddingXXS}px;
22
+ }
23
+ `
24
+ };
25
+ });
26
+ export class EdaNavigator extends React.Component {
27
+ constructor(props) {
28
+ super(props);
29
+ this.state = {};
30
+ }
31
+ renderGroups() {
32
+ const { size, api, onDoubleClick } = this.props;
33
+ return (React.createElement("div", { style: { height: "100%", display: "flex", flexDirection: "column" } },
34
+ React.createElement("div", { className: "control-buttons" },
35
+ React.createElement(Space.Compact, { size: size },
36
+ React.createElement(Button, { icon: React.createElement(SearchOutlined, null) }))),
37
+ React.createElement("div", { style: { flex: "1 1 auto" } },
38
+ React.createElement(EdaTreeView, { api: api, type: TreeViewType.GROUP, onItemDoubleClick: onDoubleClick }))));
39
+ }
40
+ renderScenarios() {
41
+ const { api, onDoubleClick } = this.props;
42
+ return (React.createElement(React.Fragment, null,
43
+ React.createElement(EdaTreeView, { api: api, type: TreeViewType.SCENARIO, onItemDoubleClick: onDoubleClick })));
44
+ }
45
+ render() {
46
+ const { style, size } = this.props;
47
+ return (React.createElement(WithCss, { useStyles: useStyles }, (css) => React.createElement("div", { className: css.styles.baseLayout, style: style },
48
+ React.createElement(Tabs, { type: "editable-card", size: size, style: { height: "100%" }, items: [
49
+ {
50
+ key: "groups",
51
+ label: i18n("Groups"),
52
+ closable: false,
53
+ children: this.renderGroups(),
54
+ },
55
+ {
56
+ key: "scenarios",
57
+ label: i18n("Scenarios"),
58
+ closable: false,
59
+ children: this.renderScenarios(),
60
+ },
61
+ ] }))));
62
+ }
63
+ }
64
+ //# sourceMappingURL=edaNavigator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"edaNavigator.js","sourceRoot":"","sources":["../../../../../coreui/components/edaManagerComponent/edaNavigator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAC,WAAW,EAAE,YAAY,EAAC,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAC,MAAM,EAAE,KAAK,EAAE,IAAI,EAAC,MAAM,MAAM,CAAC;AACzC,OAAO,EAAC,YAAY,EAAC,MAAM,YAAY,CAAC;AACxC,OAAO,OAAO,MAAM,mCAAmC,CAAC;AACxD,OAAO,EAAC,cAAc,EAAC,MAAM,mBAAmB,CAAC;AAEjD,OAAO,IAAI,MAAM,kBAAkB,CAAC;AAGpC,MAAM,SAAS,GAAG,YAAY,CAAC,CAAC,EAAC,GAAG,EAAE,KAAK,EAAC,EAAG,EAAE;IAC7C,OAAO;QACH,UAAU,EAAE,GAAG,CAAA;;;;;oCAKa,KAAK,CAAC,gBAAgB;iCACzB,KAAK,CAAC,YAAY;;;;;2BAKxB,KAAK,CAAC,UAAU;;SAElC;KACJ,CAAA;AACL,CAAC,CAAC,CAAC;AAcH,MAAM,OAAO,YAAa,SAAQ,KAAK,CAAC,SAAuB;IAC3D,YAAY,KAAsB;QAC9B,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG,EACZ,CAAA;IACL,CAAC;IAED,YAAY;QACR,MAAM,EAAC,IAAI,EAAE,GAAG,EAAE,aAAa,EAAC,GAAG,IAAI,CAAC,KAAK,CAAC;QAE9C,OAAO,CACH,6BAAK,KAAK,EAAE,EAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,QAAQ,EAAC;YAClE,6BAAK,SAAS,EAAE,iBAAiB;gBAC7B,oBAAC,KAAK,CAAC,OAAO,IAAC,IAAI,EAAE,IAAI;oBACrB,oBAAC,MAAM,IAAC,IAAI,EAAE,oBAAC,cAAc,OAAE,GAAI,CACvB,CACd;YACN,6BAAK,KAAK,EAAE,EAAC,IAAI,EAAE,UAAU,EAAC;gBAC1B,oBAAC,WAAW,IACR,GAAG,EAAE,GAAG,EACR,IAAI,EAAE,YAAY,CAAC,KAAK,EACxB,iBAAiB,EAAE,aAAa,GAClC,CACA,CACJ,CACT,CAAC;IACN,CAAC;IAED,eAAe;QACX,MAAM,EAAC,GAAG,EAAE,aAAa,EAAC,GAAG,IAAI,CAAC,KAAK,CAAC;QAExC,OAAO,CACH;YACI,oBAAC,WAAW,IACR,GAAG,EAAE,GAAG,EACR,IAAI,EAAE,YAAY,CAAC,QAAQ,EAC3B,iBAAiB,EAAE,aAAa,GAClC,CACH,CACN,CAAC;IACN,CAAC;IAED,MAAM;QACF,MAAM,EAAC,KAAK,EAAE,IAAI,EAAC,GAAG,IAAI,CAAC,KAAK,CAAC;QAEjC,OAAO,CACH,oBAAC,OAAO,IAAC,SAAS,EAAE,SAAS,IACxB,CAAC,GAAG,EAAE,EAAE,CACL,6BAAK,SAAS,EAAE,GAAG,CAAC,MAAM,CAAC,UAAU,EAAE,KAAK,EAAE,KAAK;YAC/C,oBAAC,IAAI,IACD,IAAI,EAAE,eAAe,EACrB,IAAI,EAAE,IAAI,EACV,KAAK,EAAE,EAAC,MAAM,EAAE,MAAM,EAAC,EACvB,KAAK,EAAE;oBACH;wBACI,GAAG,EAAE,QAAQ;wBACb,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC;wBACrB,QAAQ,EAAE,KAAK;wBACf,QAAQ,EAAE,IAAI,CAAC,YAAY,EAAE;qBAChC;oBACD;wBACI,GAAG,EAAE,WAAW;wBAChB,KAAK,EAAE,IAAI,CAAC,WAAW,CAAC;wBACxB,QAAQ,EAAE,KAAK;wBACf,QAAQ,EAAE,IAAI,CAAC,eAAe,EAAE;qBACnC;iBACJ,GACH,CACA,CAEJ,CACb,CAAC;IACN,CAAC;CACJ","sourcesContent":["import React from \"react\";\r\nimport EdaManagerApi from \"../../../api/eda/edaManagerApi\";\r\nimport {EdaTreeView, TreeViewType} from \"./components/edaTreeView\";\r\nimport {Button, Space, Tabs} from \"antd\";\r\nimport {createStyles} from \"antd-style\";\r\nimport WithCss from \"d2coreui/components/style/withCss\";\r\nimport {SearchOutlined} from \"@ant-design/icons\";\r\nimport {TypedIndex} from \"./constants/edaTypes\";\r\nimport i18n from \"d2core/i18n/i18n\";\r\nimport {SizeType} from \"antd/lib/config-provider/SizeContext\";\r\n\r\nconst useStyles = createStyles(({css, token},) => {\r\n return {\r\n baseLayout: css`\r\n height: 100%;\r\n \r\n .ant-tabs-content {\r\n height: 100%;\r\n background-color: ${token.colorBgContainer};\r\n border-radius: ${token.borderRadius}px;\r\n transition: background-color 0.3s;\r\n }\r\n \r\n .control-buttons {\r\n padding: ${token.paddingXXS}px;\r\n }\r\n `\r\n }\r\n});\r\n\r\ninterface Props {\r\n api: EdaManagerApi\r\n style?: React.CSSProperties\r\n\r\n size?: SizeType\r\n\r\n onDoubleClick?: (item: TypedIndex) => void\r\n}\r\n\r\ninterface State {\r\n}\r\n\r\nexport class EdaNavigator extends React.Component<Props, State> {\r\n constructor(props: Readonly<Props>) {\r\n super(props);\r\n this.state = {\r\n }\r\n }\r\n\r\n renderGroups(): React.ReactNode {\r\n const {size, api, onDoubleClick} = this.props;\r\n\r\n return (\r\n <div style={{height: \"100%\", display: \"flex\", flexDirection: \"column\"}}>\r\n <div className={\"control-buttons\"}>\r\n <Space.Compact size={size}>\r\n <Button icon={<SearchOutlined/>} />\r\n </Space.Compact>\r\n </div>\r\n <div style={{flex: \"1 1 auto\"}}>\r\n <EdaTreeView\r\n api={api}\r\n type={TreeViewType.GROUP}\r\n onItemDoubleClick={onDoubleClick}\r\n />\r\n </div>\r\n </div>\r\n );\r\n }\r\n\r\n renderScenarios(): React.ReactNode {\r\n const {api, onDoubleClick} = this.props;\r\n\r\n return (\r\n <>\r\n <EdaTreeView\r\n api={api}\r\n type={TreeViewType.SCENARIO}\r\n onItemDoubleClick={onDoubleClick}\r\n />\r\n </>\r\n );\r\n }\r\n\r\n render(): React.ReactNode {\r\n const {style, size} = this.props;\r\n\r\n return (\r\n <WithCss useStyles={useStyles}>\r\n {(css) =>\r\n <div className={css.styles.baseLayout} style={style}>\r\n <Tabs\r\n type={\"editable-card\"}\r\n size={size}\r\n style={{height: \"100%\"}}\r\n items={[\r\n {\r\n key: \"groups\",\r\n label: i18n(\"Groups\"),\r\n closable: false,\r\n children: this.renderGroups(),\r\n },\r\n {\r\n key: \"scenarios\",\r\n label: i18n(\"Scenarios\"),\r\n closable: false,\r\n children: this.renderScenarios(),\r\n },\r\n ]}\r\n />\r\n </div>\r\n }\r\n </WithCss>\r\n );\r\n }\r\n}"]}
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { SelectProps } from "antd/es/select";
3
+ interface Props extends SelectProps {
4
+ }
5
+ interface State {
6
+ }
7
+ export declare class EdaSelect extends React.Component<Props, State> {
8
+ render(): React.JSX.Element;
9
+ }
10
+ export {};
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { Select } from "antd";
3
+ export class EdaSelect extends React.Component {
4
+ render() {
5
+ const { ...others } = this.props;
6
+ return (React.createElement(Select, { ...others }));
7
+ }
8
+ }
9
+ //# sourceMappingURL=edaSelect.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"edaSelect.js","sourceRoot":"","sources":["../../../../../coreui/components/edaManagerComponent/edaSelect.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAC,MAAM,EAAC,MAAM,MAAM,CAAC;AAW5B,MAAM,OAAO,SAAU,SAAQ,KAAK,CAAC,SAAuB;IACxD,MAAM;QACF,MAAM,EAAC,GAAG,MAAM,EAAC,GAAG,IAAI,CAAC,KAAK,CAAC;QAC/B,OAAO,CACH,oBAAC,MAAM,OACC,MAAM,GACZ,CACL,CAAC;IACN,CAAC;CACJ","sourcesContent":["import React from \"react\";\r\nimport {Select} from \"antd\";\r\nimport {SelectProps} from \"antd/es/select\";\r\n\r\ninterface Props extends SelectProps {\r\n\r\n}\r\n\r\ninterface State {\r\n\r\n}\r\n\r\nexport class EdaSelect extends React.Component<Props, State> {\r\n render() {\r\n const {...others} = this.props;\r\n return (\r\n <Select\r\n {...others}\r\n />\r\n );\r\n }\r\n}"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const LetterCFilled: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const LetterCSvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "4", d: "M19 7a6 6 0 0 0-6-5h-2a6 6 0 0 0-6 6v8a6 6 0 0 0 6 6h2a6 6 0 0 0 6-5" })));
5
+ export const LetterCFilled = (props) => (React.createElement(Icon, { component: LetterCSvg, ...props }));
6
+ //# sourceMappingURL=letterCFilled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"letterCFilled.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/letterCFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,UAAU,GAAG,GAAG,EAAE,CAAC,CACrB,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BACI,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,CAAC,EAAC,sEAAsE,GAC1E,CACA,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CACvE,oBAAC,IAAI,IAAC,SAAS,EAAE,UAAU,KAAM,KAAK,GAAI,CAC7C,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst LetterCSvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path\r\n fill=\"none\"\r\n stroke=\"currentColor\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n strokeWidth=\"4\"\r\n d=\"M19 7a6 6 0 0 0-6-5h-2a6 6 0 0 0-6 6v8a6 6 0 0 0 6 6h2a6 6 0 0 0 6-5\"\r\n />\r\n </svg>\r\n);\r\n\r\nexport const LetterCFilled = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={LetterCSvg} {...props} />\r\n)"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const LetterDFilled: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const LetterDSvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "4", d: "M7 22V2h6a7 7 0 0 1 7 7v6a7 7 0 0 1-7 7H7z" })));
5
+ export const LetterDFilled = (props) => (React.createElement(Icon, { component: LetterDSvg, ...props }));
6
+ //# sourceMappingURL=letterDFilled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"letterDFilled.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/letterDFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,UAAU,GAAG,GAAG,EAAE,CAAC,CACrB,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BACI,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,CAAC,EAAC,4CAA4C,GAChD,CACA,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CACvE,oBAAC,IAAI,IAAC,SAAS,EAAE,UAAU,KAAM,KAAK,GAAI,CAC7C,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst LetterDSvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path\r\n fill=\"none\"\r\n stroke=\"currentColor\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n strokeWidth=\"4\"\r\n d=\"M7 22V2h6a7 7 0 0 1 7 7v6a7 7 0 0 1-7 7H7z\"\r\n />\r\n </svg>\r\n);\r\n\r\nexport const LetterDFilled = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={LetterDSvg} {...props} />\r\n)"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const LetterHFilled: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const LetterHSvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "4", d: "M5 2v20M19 2v20M5 12h14" })));
5
+ export const LetterHFilled = (props) => (React.createElement(Icon, { component: LetterHSvg, ...props }));
6
+ //# sourceMappingURL=letterHFilled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"letterHFilled.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/letterHFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,UAAU,GAAG,GAAG,EAAE,CAAC,CACrB,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BACI,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,CAAC,EAAC,yBAAyB,GAC7B,CACA,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CACvE,oBAAC,IAAI,IAAC,SAAS,EAAE,UAAU,KAAM,KAAK,GAAI,CAC7C,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst LetterHSvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path\r\n fill=\"none\"\r\n stroke=\"currentColor\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n strokeWidth=\"4\"\r\n d=\"M5 2v20M19 2v20M5 12h14\"\r\n />\r\n </svg>\r\n);\r\n\r\nexport const LetterHFilled = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={LetterHSvg} {...props} />\r\n)"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const LetterIFilled: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const LetterISvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "4", d: "M8 2h8M12 2v20M8 22h8" })));
5
+ export const LetterIFilled = (props) => (React.createElement(Icon, { component: LetterISvg, ...props }));
6
+ //# sourceMappingURL=letterIFilled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"letterIFilled.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/letterIFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,UAAU,GAAG,GAAG,EAAE,CAAC,CACrB,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BACI,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,CAAC,EAAC,uBAAuB,GAC3B,CACA,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CACvE,oBAAC,IAAI,IAAC,SAAS,EAAE,UAAU,KAAM,KAAK,GAAI,CAC7C,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst LetterISvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path\r\n fill=\"none\"\r\n stroke=\"currentColor\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n strokeWidth=\"4\"\r\n d=\"M8 2h8M12 2v20M8 22h8\"\r\n />\r\n </svg>\r\n);\r\n\r\nexport const LetterIFilled = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={LetterISvg} {...props} />\r\n)"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const LetterMFilled: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const LetterMSvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "4", d: "M4 22V2m0 0l8 10l8-10m0 0v20" })));
5
+ export const LetterMFilled = (props) => (React.createElement(Icon, { component: LetterMSvg, ...props }));
6
+ //# sourceMappingURL=letterMFilled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"letterMFilled.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/letterMFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,UAAU,GAAG,GAAG,EAAE,CAAC,CACrB,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BACI,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,CAAC,EAAC,8BAA8B,GAClC,CACA,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CACvE,oBAAC,IAAI,IAAC,SAAS,EAAE,UAAU,KAAM,KAAK,GAAI,CAC7C,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst LetterMSvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path\r\n fill=\"none\"\r\n stroke=\"currentColor\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n strokeWidth=\"4\"\r\n d=\"M4 22V2m0 0l8 10l8-10m0 0v20\"\r\n />\r\n </svg>\r\n);\r\n\r\nexport const LetterMFilled = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={LetterMSvg} {...props} />\r\n)"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const NumberFifteenFilled: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const NumberFifteenSvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "4", d: "M2 22h4M4 22V2m-2 0h2" }),
5
+ React.createElement("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "4", d: "M22 2h-9v9h6a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-2 a4 4 0 0 1-4-2" })));
6
+ export const NumberFifteenFilled = (props) => (React.createElement(Icon, { component: NumberFifteenSvg, ...props }));
7
+ //# sourceMappingURL=numberFifteenFilled.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"numberFifteenFilled.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/numberFifteenFilled.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,gBAAgB,GAAG,GAAG,EAAE,CAAC,CAC3B,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BACI,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,CAAC,EAAC,uBAAuB,GAC3B;IAEF,8BACI,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,CAAC,EAAC,8DAA8D,GAClE,CACA,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CAC7E,oBAAC,IAAI,IAAC,SAAS,EAAE,gBAAgB,KAAM,KAAK,GAAI,CACnD,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst NumberFifteenSvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path\r\n fill=\"none\"\r\n stroke=\"currentColor\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n strokeWidth=\"4\"\r\n d=\"M2 22h4M4 22V2m-2 0h2\"\r\n />\r\n {/* The 5 matching the full 2-22 height */}\r\n <path\r\n fill=\"none\"\r\n stroke=\"currentColor\"\r\n strokeLinecap=\"round\"\r\n strokeLinejoin=\"round\"\r\n strokeWidth=\"4\"\r\n d=\"M22 2h-9v9h6a3 3 0 0 1 3 3v5a3 3 0 0 1-3 3h-2 a4 4 0 0 1-4-2\"\r\n />\r\n </svg>\r\n);\r\n\r\nexport const NumberFifteenFilled = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={NumberFifteenSvg} {...props} />\r\n)"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const PairOutlined: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const PairSvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "currentColor", d: "M18.268 21.001h-6.536A2 2 0 1 1 9 18.267V15l-3.27.001a2 2 0 0 1-1.582.994L4 16a2 2 0 0 1-1-3.732V5.732A2 2 0 1 1 5.732 3h6.536A2 2 0 1 1 15 5.732V9h3.268a2 2 0 0 1 1.583-.995L20 8a2 2 0 0 1 1.002 3.731v6.538A2 2 0 1 1 18.268 21h-6.536zm0-10L15 11l.001 1.268a2 2 0 0 1 .994 1.583L16 14a2 2 0 0 1-3.732 1.001L11.001 15l.001 3.269c.303.175.555.428.73.73h6.536a2 2 0 0 1 .733-.732v-6.534a2 2 0 0 1-.639-.585zM13 11l-1.268.001a2 2 0 0 1-.73.73L11.001 13h1.267a2 2 0 0 1 .732-.732zm-.732-5.999H5.732a2 2 0 0 1-.73.73v6.537c.302.176.555.429.73.732h3.269v-1.267a2 2 0 0 1-.996-1.584L8 10a2 2 0 0 1 3.732-1H13V5.732a2 2 0 0 1-.638-.584z" })));
5
+ export const PairOutlined = (props) => (React.createElement(Icon, { component: PairSvg, ...props }));
6
+ //# sourceMappingURL=pairOutlined.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pairOutlined.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/pairOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,OAAO,GAAG,GAAG,EAAE,CAAC,CAClB,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BAAM,IAAI,EAAC,cAAc,EACnB,CAAC,EAAC,qnBAAqnB,GAAE,CAC7nB,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CACtE,oBAAC,IAAI,IAAC,SAAS,EAAE,OAAO,KAAM,KAAK,GAAI,CAC1C,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst PairSvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path fill=\"currentColor\"\r\n d=\"M18.268 21.001h-6.536A2 2 0 1 1 9 18.267V15l-3.27.001a2 2 0 0 1-1.582.994L4 16a2 2 0 0 1-1-3.732V5.732A2 2 0 1 1 5.732 3h6.536A2 2 0 1 1 15 5.732V9h3.268a2 2 0 0 1 1.583-.995L20 8a2 2 0 0 1 1.002 3.731v6.538A2 2 0 1 1 18.268 21h-6.536zm0-10L15 11l.001 1.268a2 2 0 0 1 .994 1.583L16 14a2 2 0 0 1-3.732 1.001L11.001 15l.001 3.269c.303.175.555.428.73.73h6.536a2 2 0 0 1 .733-.732v-6.534a2 2 0 0 1-.639-.585zM13 11l-1.268.001a2 2 0 0 1-.73.73L11.001 13h1.267a2 2 0 0 1 .732-.732zm-.732-5.999H5.732a2 2 0 0 1-.73.73v6.537c.302.176.555.429.73.732h3.269v-1.267a2 2 0 0 1-.996-1.584L8 10a2 2 0 0 1 3.732-1H13V5.732a2 2 0 0 1-.638-.584z\"/>\r\n </svg>\r\n);\r\n\r\nexport const PairOutlined = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={PairSvg} {...props} />\r\n)"]}
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ import type { GetProps } from 'antd';
4
+ type CustomIconComponentProps = GetProps<typeof Icon>;
5
+ export declare const PeriodicOutlined: (props: Partial<CustomIconComponentProps>) => React.JSX.Element;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import Icon from '@ant-design/icons';
3
+ const PeriodicSvg = () => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 24 24" },
4
+ React.createElement("path", { fill: "currentColor", d: "M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7c3.54 0 6.45 2.62 6.93 6.03c.72.05 1.41.2 2.07.47a9.16 9.16 0 0 0-1.97-5.11l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.34 0 .67 0 1-.06c-.37-.59-.65-1.25-.82-1.94zm10-1.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z" })));
5
+ export const PeriodicOutlined = (props) => (React.createElement(Icon, { component: PeriodicSvg, ...props }));
6
+ //# sourceMappingURL=periodicOutlined.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"periodicOutlined.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/icons/periodicOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,mBAAmB,CAAC;AAKrC,MAAM,WAAW,GAAG,GAAG,EAAE,CAAC,CACtB,6BAAK,KAAK,EAAC,4BAA4B,EAAC,KAAK,EAAC,KAAK,EAAC,MAAM,EAAC,KAAK,EAAC,OAAO,EAAC,WAAW;IAChF,8BAAM,IAAI,EAAC,cAAc,EACnB,CAAC,EAAC,4YAA4Y,GAAE,CACpZ,CACT,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,KAAwC,EAAE,EAAE,CAAC,CAC1E,oBAAC,IAAI,IAAC,SAAS,EAAE,WAAW,KAAM,KAAK,GAAI,CAC9C,CAAA","sourcesContent":["import React from \"react\";\r\nimport Icon from '@ant-design/icons';\r\nimport type {GetProps} from 'antd';\r\n\r\ntype CustomIconComponentProps = GetProps<typeof Icon>;\r\n\r\nconst PeriodicSvg = () => (\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" viewBox=\"0 0 24 24\">\r\n <path fill=\"currentColor\"\r\n d=\"M11 8h2v6h-2zm4-7H9v2h6zm-3 19c-3.87 0-7-3.13-7-7s3.13-7 7-7c3.54 0 6.45 2.62 6.93 6.03c.72.05 1.41.2 2.07.47a9.16 9.16 0 0 0-1.97-5.11l1.42-1.42c-.45-.51-.9-.97-1.41-1.41L17.62 6c-1.55-1.26-3.5-2-5.62-2a9 9 0 0 0 0 18c.34 0 .67 0 1-.06c-.37-.59-.65-1.25-.82-1.94zm10-1.5v-4l-1.17 1.17A4 4 0 0 0 18 14.5c-2.21 0-4 1.79-4 4s1.79 4 4 4c1.68 0 3.12-1.03 3.71-2.5H20a2.5 2.5 0 1 1-.23-3.27L18 18.5z\"/>\r\n </svg>\r\n);\r\n\r\nexport const PeriodicOutlined = (props: Partial<CustomIconComponentProps>) => (\r\n <Icon component={PeriodicSvg} {...props} />\r\n)"]}
@@ -0,0 +1,2 @@
1
+ export declare function savePreference(key: string, value: any): void;
2
+ export declare function loadPreference<T>(key: string, defaultValue: T): T;
@@ -0,0 +1,8 @@
1
+ export function savePreference(key, value) {
2
+ localStorage.setItem(key, JSON.stringify(value));
3
+ }
4
+ export function loadPreference(key, defaultValue) {
5
+ const stored = localStorage.getItem(key);
6
+ return stored !== null ? JSON.parse(stored) : defaultValue;
7
+ }
8
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../../../coreui/components/edaManagerComponent/utils/utils.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,cAAc,CAAC,GAAW,EAAE,KAAU;IAClD,YAAY,CAAC,OAAO,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,CAAC;AACrD,CAAC;AAED,MAAM,UAAU,cAAc,CAAI,GAAW,EAAE,YAAe;IAC1D,MAAM,MAAM,GAAG,YAAY,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAEzC,OAAO,MAAM,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC;AAC/D,CAAC","sourcesContent":["export function savePreference(key: string, value: any) {\r\n localStorage.setItem(key, JSON.stringify(value));\r\n}\r\n\r\nexport function loadPreference<T>(key: string, defaultValue: T): T {\r\n const stored = localStorage.getItem(key);\r\n\r\n return stored !== null ? JSON.parse(stored) : defaultValue;\r\n}"]}
@@ -0,0 +1,65 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ROOT>
3
+ <REFERENCES>
4
+ <HOBJ_REF>
5
+ <uid>AE08787EB75A384D9C91C542BEDFBB8F</uid>
6
+ <name>DBC_EM_EDA</name>
7
+ <objType>DB_CONNECT</objType>
8
+ <valType>Int</valType>
9
+ </HOBJ_REF>
10
+ <HOBJ_REF>
11
+ <uid>42C6605F250C9D439C33565F834F13AF</uid>
12
+ <name>SD.EM_EDA_Function</name>
13
+ <objType>STRUCTDEF</objType>
14
+ <valType>NAN</valType>
15
+ </HOBJ_REF>
16
+ </REFERENCES>
17
+ <CFGRECORDS>
18
+ <TObjItemData>
19
+ <Id>2578151</Id>
20
+ <Name>DB.EM_EDA_Function</Name>
21
+ <Descript>EDA Vector Function</Descript>
22
+ <Typ>DB_TABLE</Typ>
23
+ <ParentId>DBC_EM_EDA</ParentId>
24
+ <Value_Type>NAN</Value_Type>
25
+ <CreateTime>26.03.2026 10:01:52.726</CreateTime>
26
+ <ModifyTime>23.04.2026 12:49:57.250</ModifyTime>
27
+ <Text_Palette/>
28
+ <Read_Only>False</Read_Only>
29
+ <TECH_UNIT/>
30
+ <UseLimits>False</UseLimits>
31
+ <VHL>1.00000000000000E+38</VHL>
32
+ <HL>1.00000000000000E+38</HL>
33
+ <LL>-1.00000000000000E+38</LL>
34
+ <VLL>-1.00000000000000E+38</VLL>
35
+ <VHL_ID/>
36
+ <HL_ID/>
37
+ <LL_ID/>
38
+ <VLL_ID/>
39
+ <Hysterezia>0.00000000000000E+00</Hysterezia>
40
+ <TransPalIdx>0</TransPalIdx>
41
+ <Hidden>False</Hidden>
42
+ <uuid>96E0FECCB01CE343A36451E252D80CC3</uuid>
43
+ <memberOfModule/>
44
+ <moduleRelation>AM_None</moduleRelation>
45
+ <memberOfDevice/>
46
+ <version>2</version>
47
+ <metadata/>
48
+ <EXP_SubDir/>
49
+ </TObjItemData>
50
+ <tDBTableInterface>
51
+ <StructTypId>SD.EM_EDA_Function</StructTypId>
52
+ <DB_Access>DBModify</DB_Access>
53
+ <DB_Table>EDA_FUNKCIA</DB_Table>
54
+ <DB_Key>1</DB_Key>
55
+ <DB_DeepCol>0</DB_DeepCol>
56
+ <DB_DeepTime>0</DB_DeepTime>
57
+ <DB_PurposeId/>
58
+ <DB_Optional/>
59
+ <DB_Not_Null/>
60
+ <DB_Export_Monitored>False</DB_Export_Monitored>
61
+ </tDBTableInterface>
62
+ </CFGRECORDS>
63
+ <MEMBEROFRESGROUP>
64
+ </MEMBEROFRESGROUP>
65
+ </ROOT>
@@ -0,0 +1,65 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ROOT>
3
+ <REFERENCES>
4
+ <HOBJ_REF>
5
+ <uid>AE08787EB75A384D9C91C542BEDFBB8F</uid>
6
+ <name>DBC_EM_EDA</name>
7
+ <objType>DB_CONNECT</objType>
8
+ <valType>Int</valType>
9
+ </HOBJ_REF>
10
+ <HOBJ_REF>
11
+ <uid>368C6EC65CDE5C47942FAFADC8867589</uid>
12
+ <name>SD.EM_EDA_GroupVector</name>
13
+ <objType>STRUCTDEF</objType>
14
+ <valType>NAN</valType>
15
+ </HOBJ_REF>
16
+ </REFERENCES>
17
+ <CFGRECORDS>
18
+ <TObjItemData>
19
+ <Id>2578147</Id>
20
+ <Name>DB.EM_EDA_GroupVector</Name>
21
+ <Descript>EDA Group Vector</Descript>
22
+ <Typ>DB_TABLE</Typ>
23
+ <ParentId>DBC_EM_EDA</ParentId>
24
+ <Value_Type>NAN</Value_Type>
25
+ <CreateTime>26.03.2026 09:53:11.117</CreateTime>
26
+ <ModifyTime>23.04.2026 12:50:43.116</ModifyTime>
27
+ <Text_Palette/>
28
+ <Read_Only>False</Read_Only>
29
+ <TECH_UNIT/>
30
+ <UseLimits>False</UseLimits>
31
+ <VHL>1.00000000000000E+38</VHL>
32
+ <HL>1.00000000000000E+38</HL>
33
+ <LL>-1.00000000000000E+38</LL>
34
+ <VLL>-1.00000000000000E+38</VLL>
35
+ <VHL_ID/>
36
+ <HL_ID/>
37
+ <LL_ID/>
38
+ <VLL_ID/>
39
+ <Hysterezia>0.00000000000000E+00</Hysterezia>
40
+ <TransPalIdx>0</TransPalIdx>
41
+ <Hidden>False</Hidden>
42
+ <uuid>A41C1FB7C51DE740901A48CE6AB1835D</uuid>
43
+ <memberOfModule/>
44
+ <moduleRelation>AM_None</moduleRelation>
45
+ <memberOfDevice/>
46
+ <version>1</version>
47
+ <metadata/>
48
+ <EXP_SubDir/>
49
+ </TObjItemData>
50
+ <tDBTableInterface>
51
+ <StructTypId>SD.EM_EDA_GroupVector</StructTypId>
52
+ <DB_Access>DBModify</DB_Access>
53
+ <DB_Table>EDA_SKVEKTOR</DB_Table>
54
+ <DB_Key>1</DB_Key>
55
+ <DB_DeepCol>0</DB_DeepCol>
56
+ <DB_DeepTime>0</DB_DeepTime>
57
+ <DB_PurposeId/>
58
+ <DB_Optional/>
59
+ <DB_Not_Null/>
60
+ <DB_Export_Monitored>False</DB_Export_Monitored>
61
+ </tDBTableInterface>
62
+ </CFGRECORDS>
63
+ <MEMBEROFRESGROUP>
64
+ </MEMBEROFRESGROUP>
65
+ </ROOT>
@@ -0,0 +1,65 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ROOT>
3
+ <REFERENCES>
4
+ <HOBJ_REF>
5
+ <uid>AE08787EB75A384D9C91C542BEDFBB8F</uid>
6
+ <name>DBC_EM_EDA</name>
7
+ <objType>DB_CONNECT</objType>
8
+ <valType>Int</valType>
9
+ </HOBJ_REF>
10
+ <HOBJ_REF>
11
+ <uid>AFC7C0F3EEC4744288BB210641AB1109</uid>
12
+ <name>SD.EM_EDA_Scenario</name>
13
+ <objType>STRUCTDEF</objType>
14
+ <valType>NAN</valType>
15
+ </HOBJ_REF>
16
+ </REFERENCES>
17
+ <CFGRECORDS>
18
+ <TObjItemData>
19
+ <Id>2578149</Id>
20
+ <Name>DB.EM_EDA_Scenario</Name>
21
+ <Descript>EDA Scenario</Descript>
22
+ <Typ>DB_TABLE</Typ>
23
+ <ParentId>DBC_EM_EDA</ParentId>
24
+ <Value_Type>NAN</Value_Type>
25
+ <CreateTime>26.03.2026 09:54:11.750</CreateTime>
26
+ <ModifyTime>23.04.2026 12:51:04.765</ModifyTime>
27
+ <Text_Palette/>
28
+ <Read_Only>False</Read_Only>
29
+ <TECH_UNIT/>
30
+ <UseLimits>False</UseLimits>
31
+ <VHL>1.00000000000000E+38</VHL>
32
+ <HL>1.00000000000000E+38</HL>
33
+ <LL>-1.00000000000000E+38</LL>
34
+ <VLL>-1.00000000000000E+38</VLL>
35
+ <VHL_ID/>
36
+ <HL_ID/>
37
+ <LL_ID/>
38
+ <VLL_ID/>
39
+ <Hysterezia>0.00000000000000E+00</Hysterezia>
40
+ <TransPalIdx>0</TransPalIdx>
41
+ <Hidden>False</Hidden>
42
+ <uuid>DC4771AFABE21F479810F277A878CC95</uuid>
43
+ <memberOfModule/>
44
+ <moduleRelation>AM_None</moduleRelation>
45
+ <memberOfDevice/>
46
+ <version>2</version>
47
+ <metadata/>
48
+ <EXP_SubDir/>
49
+ </TObjItemData>
50
+ <tDBTableInterface>
51
+ <StructTypId>SD.EM_EDA_Scenario</StructTypId>
52
+ <DB_Access>DBModify</DB_Access>
53
+ <DB_Table>EDA_SCENAR</DB_Table>
54
+ <DB_Key>1</DB_Key>
55
+ <DB_DeepCol>0</DB_DeepCol>
56
+ <DB_DeepTime>0</DB_DeepTime>
57
+ <DB_PurposeId/>
58
+ <DB_Optional/>
59
+ <DB_Not_Null/>
60
+ <DB_Export_Monitored>False</DB_Export_Monitored>
61
+ </tDBTableInterface>
62
+ </CFGRECORDS>
63
+ <MEMBEROFRESGROUP>
64
+ </MEMBEROFRESGROUP>
65
+ </ROOT>
@@ -0,0 +1,65 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <ROOT>
3
+ <REFERENCES>
4
+ <HOBJ_REF>
5
+ <uid>AE08787EB75A384D9C91C542BEDFBB8F</uid>
6
+ <name>DBC_EM_EDA</name>
7
+ <objType>DB_CONNECT</objType>
8
+ <valType>Int</valType>
9
+ </HOBJ_REF>
10
+ <HOBJ_REF>
11
+ <uid>153DB088C0D3BA4AA4CE2A1E44C1FD4E</uid>
12
+ <name>SD.EM_EDA_Vector</name>
13
+ <objType>STRUCTDEF</objType>
14
+ <valType>NAN</valType>
15
+ </HOBJ_REF>
16
+ </REFERENCES>
17
+ <CFGRECORDS>
18
+ <TObjItemData>
19
+ <Id>2578144</Id>
20
+ <Name>DB.EM_EDA_Vector</Name>
21
+ <Descript>EDA Vector</Descript>
22
+ <Typ>DB_TABLE</Typ>
23
+ <ParentId>DBC_EM_EDA</ParentId>
24
+ <Value_Type>NAN</Value_Type>
25
+ <CreateTime>26.03.2026 09:48:19.506</CreateTime>
26
+ <ModifyTime>23.04.2026 12:51:13.074</ModifyTime>
27
+ <Text_Palette/>
28
+ <Read_Only>False</Read_Only>
29
+ <TECH_UNIT/>
30
+ <UseLimits>False</UseLimits>
31
+ <VHL>1.00000000000000E+38</VHL>
32
+ <HL>1.00000000000000E+38</HL>
33
+ <LL>-1.00000000000000E+38</LL>
34
+ <VLL>-1.00000000000000E+38</VLL>
35
+ <VHL_ID/>
36
+ <HL_ID/>
37
+ <LL_ID/>
38
+ <VLL_ID/>
39
+ <Hysterezia>0.00000000000000E+00</Hysterezia>
40
+ <TransPalIdx>0</TransPalIdx>
41
+ <Hidden>False</Hidden>
42
+ <uuid>5D1EC332EA805F4BAC65D2D0888B1C0E</uuid>
43
+ <memberOfModule/>
44
+ <moduleRelation>AM_None</moduleRelation>
45
+ <memberOfDevice/>
46
+ <version>2</version>
47
+ <metadata/>
48
+ <EXP_SubDir/>
49
+ </TObjItemData>
50
+ <tDBTableInterface>
51
+ <StructTypId>SD.EM_EDA_Vector</StructTypId>
52
+ <DB_Access>DBModify</DB_Access>
53
+ <DB_Table>EDA_VEKTOR</DB_Table>
54
+ <DB_Key>1</DB_Key>
55
+ <DB_DeepCol>0</DB_DeepCol>
56
+ <DB_DeepTime>0</DB_DeepTime>
57
+ <DB_PurposeId/>
58
+ <DB_Optional/>
59
+ <DB_Not_Null/>
60
+ <DB_Export_Monitored>False</DB_Export_Monitored>
61
+ </tDBTableInterface>
62
+ </CFGRECORDS>
63
+ <MEMBEROFRESGROUP>
64
+ </MEMBEROFRESGROUP>
65
+ </ROOT>