@mchp-mcc/scf-pic8-clc-v1 4.2.0 → 4.2.1

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.
@@ -10205,7 +10205,9 @@ function getRowData(appModel, rowData) {
10205
10205
  }
10206
10206
  });
10207
10207
  } else if (rowData.name === "clcin0") {
10208
- if (inputSelections.indexOf("CLCIN0 (CLCIN0PPS)") !== -1) {
10208
+ if (inputSelections.some(function (input) {
10209
+ return input.includes("CLCIN0PPS");
10210
+ })) {
10209
10211
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10210
10212
  module: moduleName,
10211
10213
  behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
@@ -10228,7 +10230,9 @@ function getRowData(appModel, rowData) {
10228
10230
  return undefined; // hide row
10229
10231
  }
10230
10232
  } else if (rowData.name === "clcin1") {
10231
- if (inputSelections.indexOf("CLCIN1 (CLCIN1PPS)") !== -1) {
10233
+ if (inputSelections.some(function (input) {
10234
+ return input.includes("CLCIN1PPS");
10235
+ })) {
10232
10236
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10233
10237
  module: moduleName,
10234
10238
  behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
@@ -10251,9 +10255,12 @@ function getRowData(appModel, rowData) {
10251
10255
  return undefined; // hide row
10252
10256
  }
10253
10257
  } else if (rowData.name === "clcin2") {
10254
- if (inputSelections.indexOf("CLCIN2 (CLCIN2PPS)") !== -1) {
10258
+ if (inputSelections.some(function (input) {
10259
+ return input.includes("CLCIN2PPS");
10260
+ })) {
10255
10261
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10256
10262
  module: moduleName,
10263
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
10257
10264
  filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
10258
10265
  module: moduleName
10259
10266
  })
@@ -10262,9 +10269,12 @@ function getRowData(appModel, rowData) {
10262
10269
  return undefined; // hide row
10263
10270
  }
10264
10271
  } else if (rowData.name === "clcin3") {
10265
- if (inputSelections.indexOf("CLCIN3 (CLCIN3PPS)") !== -1) {
10272
+ if (inputSelections.some(function (input) {
10273
+ return input.includes("CLCIN3PPS");
10274
+ })) {
10266
10275
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10267
10276
  module: moduleName,
10277
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
10268
10278
  filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
10269
10279
  module: moduleName
10270
10280
  })
@@ -10273,9 +10283,12 @@ function getRowData(appModel, rowData) {
10273
10283
  return undefined; // hide row
10274
10284
  }
10275
10285
  } else if (rowData.name === "clcin4") {
10276
- if (inputSelections.indexOf("CLCIN4 (CLCIN4PPS)") !== -1) {
10286
+ if (inputSelections.some(function (input) {
10287
+ return input.includes("CLCIN4PPS");
10288
+ })) {
10277
10289
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10278
10290
  module: moduleName,
10291
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
10279
10292
  filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
10280
10293
  module: moduleName
10281
10294
  })
@@ -10284,9 +10297,12 @@ function getRowData(appModel, rowData) {
10284
10297
  return undefined; // hide row
10285
10298
  }
10286
10299
  } else if (rowData.name === "clcin5") {
10287
- if (inputSelections.indexOf("CLCIN5 (CLCIN5PPS)") !== -1) {
10300
+ if (inputSelections.some(function (input) {
10301
+ return input.includes("CLCIN5PPS");
10302
+ })) {
10288
10303
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10289
10304
  module: moduleName,
10305
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
10290
10306
  filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
10291
10307
  module: moduleName
10292
10308
  })
@@ -10295,9 +10311,12 @@ function getRowData(appModel, rowData) {
10295
10311
  return undefined; // hide row
10296
10312
  }
10297
10313
  } else if (rowData.name === "clcin6") {
10298
- if (inputSelections.indexOf("CLCIN6 (CLCIN6PPS)") !== -1) {
10314
+ if (inputSelections.some(function (input) {
10315
+ return input.includes("CLCIN6PPS");
10316
+ })) {
10299
10317
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10300
10318
  module: moduleName,
10319
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
10301
10320
  filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
10302
10321
  module: moduleName
10303
10322
  })
@@ -10306,9 +10325,12 @@ function getRowData(appModel, rowData) {
10306
10325
  return undefined; // hide row
10307
10326
  }
10308
10327
  } else if (rowData.name === "clcin7") {
10309
- if (inputSelections.indexOf("CLCIN7 (CLCIN7PPS)") !== -1) {
10328
+ if (inputSelections.some(function (input) {
10329
+ return input.includes("CLCIN7PPS");
10330
+ })) {
10310
10331
  retRowJSONdata = _objectSpread(_objectSpread({}, retRowJSONdata), {}, {
10311
10332
  module: moduleName,
10333
+ behaviour: getpinBehaviour(getAPFCONPins, getPPSPins, retRowJSONdata.filter.aliasReEx),
10312
10334
  filter: _objectSpread(_objectSpread({}, retRowJSONdata.filter), {}, {
10313
10335
  module: moduleName
10314
10336
  })
@@ -10678,7 +10700,7 @@ module.exports = JSON.parse("{\"rows\":[{\"name\":\"clcout\",\"module\":\"CLC1\"
10678
10700
 
10679
10701
  __webpack_require__(/*! core-js/es/set/index */"./node_modules/core-js/es/set/index.js");
10680
10702
  __webpack_require__(/*! core-js/es/map/index */"./node_modules/core-js/es/map/index.js");
10681
- module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/ed_Content_scf-pic8-clc-v1_4.2.0/generated_module/src/processor.ts */"./generated_module/src/processor.ts");
10703
+ module.exports = __webpack_require__(/*! /home/jenkins/agent/workspace/ed_Content_scf-pic8-clc-v1_4.2.1/generated_module/src/processor.ts */"./generated_module/src/processor.ts");
10682
10704
 
10683
10705
 
10684
10706
  /***/ })