ide-assi 0.611.0 → 0.613.0

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.
@@ -202270,6 +202270,8 @@ class IdeAi
202270
202270
  const javascriptTo = javascript + "-detail-" + index;
202271
202271
  const activeIndex = this.#findActiveDetailWrapperIndex();
202272
202272
  const javascriptFrom = activeIndex ? javascript + "-detail-" + activeIndex : javascript;
202273
+ const classFrom = activeIndex ? fileName + "Detail" + activeIndex : fileName;
202274
+ const classTo = fileName + "Detail" + index;
202273
202275
 
202274
202276
  //console.log("************", javascriptFrom, javascriptTo);
202275
202277
 
@@ -202282,6 +202284,9 @@ class IdeAi
202282
202284
  javascript: `${javascript}.jsx`,
202283
202285
  javascriptFrom: `${javascriptFrom}.jsx`,
202284
202286
  javascriptTo: `${javascriptTo}.jsx`,
202287
+ classFrom: classFrom,
202288
+ classTo: classTo,
202289
+ index: index,
202285
202290
  mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
202286
202291
  controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
202287
202292
  servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
@@ -202635,6 +202640,9 @@ console.log(el, href, title);
202635
202640
  menuUrl: where.menu.url,
202636
202641
  menuName: where.menu.name,
202637
202642
  baseClass: srcPath.baseClass,
202643
+ classFrom: srcPath.classFrom,
202644
+ classTo: srcPath.classTo,
202645
+ index: srcPath.index,
202638
202646
  mybatisXmlSource: mybatisXmlSource,
202639
202647
  controllerSource: controllerSrc,
202640
202648
  tableDefinitions: JSON.stringify(columnInfo),
@@ -202266,6 +202266,8 @@ class IdeAi
202266
202266
  const javascriptTo = javascript + "-detail-" + index;
202267
202267
  const activeIndex = this.#findActiveDetailWrapperIndex();
202268
202268
  const javascriptFrom = activeIndex ? javascript + "-detail-" + activeIndex : javascript;
202269
+ const classFrom = activeIndex ? fileName + "Detail" + activeIndex : fileName;
202270
+ const classTo = fileName + "Detail" + index;
202269
202271
 
202270
202272
  //console.log("************", javascriptFrom, javascriptTo);
202271
202273
 
@@ -202278,6 +202280,9 @@ class IdeAi
202278
202280
  javascript: `${javascript}.jsx`,
202279
202281
  javascriptFrom: `${javascriptFrom}.jsx`,
202280
202282
  javascriptTo: `${javascriptTo}.jsx`,
202283
+ classFrom: classFrom,
202284
+ classTo: classTo,
202285
+ index: index,
202281
202286
  mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
202282
202287
  controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
202283
202288
  servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
@@ -202631,6 +202636,9 @@ console.log(el, href, title);
202631
202636
  menuUrl: where.menu.url,
202632
202637
  menuName: where.menu.name,
202633
202638
  baseClass: srcPath.baseClass,
202639
+ classFrom: srcPath.classFrom,
202640
+ classTo: srcPath.classTo,
202641
+ index: srcPath.index,
202634
202642
  mybatisXmlSource: mybatisXmlSource,
202635
202643
  controllerSource: controllerSrc,
202636
202644
  tableDefinitions: JSON.stringify(columnInfo),
@@ -400,6 +400,8 @@ export class IdeAi
400
400
  const javascriptTo = javascript + "-detail-" + index;
401
401
  const activeIndex = this.#findActiveDetailWrapperIndex();
402
402
  const javascriptFrom = activeIndex ? javascript + "-detail-" + activeIndex : javascript;
403
+ const classFrom = activeIndex ? fileName + "Detail" + activeIndex : fileName;
404
+ const classTo = fileName + "Detail" + index;
403
405
 
404
406
  //console.log("************", javascriptFrom, javascriptTo);
405
407
 
@@ -412,6 +414,9 @@ export class IdeAi
412
414
  javascript: `${javascript}.jsx`,
413
415
  javascriptFrom: `${javascriptFrom}.jsx`,
414
416
  javascriptTo: `${javascriptTo}.jsx`,
417
+ classFrom: classFrom,
418
+ classTo: classTo,
419
+ index: index,
415
420
  mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
416
421
  controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
417
422
  servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
@@ -765,6 +770,9 @@ console.log(el, href, title);
765
770
  menuUrl: where.menu.url,
766
771
  menuName: where.menu.name,
767
772
  baseClass: srcPath.baseClass,
773
+ classFrom: srcPath.classFrom,
774
+ classTo: srcPath.classTo,
775
+ index: srcPath.index,
768
776
  mybatisXmlSource: mybatisXmlSource,
769
777
  controllerSource: controllerSrc,
770
778
  tableDefinitions: JSON.stringify(columnInfo),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.611.0",
4
+ "version": "0.613.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -400,6 +400,8 @@ export class IdeAi
400
400
  const javascriptTo = javascript + "-detail-" + index;
401
401
  const activeIndex = this.#findActiveDetailWrapperIndex();
402
402
  const javascriptFrom = activeIndex ? javascript + "-detail-" + activeIndex : javascript;
403
+ const classFrom = activeIndex ? fileName + "Detail" + activeIndex : fileName;
404
+ const classTo = fileName + "Detail" + index;
403
405
 
404
406
  //console.log("************", javascriptFrom, javascriptTo);
405
407
 
@@ -412,6 +414,9 @@ export class IdeAi
412
414
  javascript: `${javascript}.jsx`,
413
415
  javascriptFrom: `${javascriptFrom}.jsx`,
414
416
  javascriptTo: `${javascriptTo}.jsx`,
417
+ classFrom: classFrom,
418
+ classTo: classTo,
419
+ index: index,
415
420
  mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
416
421
  controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
417
422
  servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
@@ -765,6 +770,9 @@ console.log(el, href, title);
765
770
  menuUrl: where.menu.url,
766
771
  menuName: where.menu.name,
767
772
  baseClass: srcPath.baseClass,
773
+ classFrom: srcPath.classFrom,
774
+ classTo: srcPath.classTo,
775
+ index: srcPath.index,
768
776
  mybatisXmlSource: mybatisXmlSource,
769
777
  controllerSource: controllerSrc,
770
778
  tableDefinitions: JSON.stringify(columnInfo),