ide-assi 0.611.0 → 0.612.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.
- package/dist/bundle.cjs.js +4 -0
- package/dist/bundle.esm.js +4 -0
- package/dist/components/ideAi.js +4 -0
- package/package.json +1 -1
- package/src/components/ideAi.js +4 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -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,8 @@ class IdeAi
|
|
|
202282
202284
|
javascript: `${javascript}.jsx`,
|
|
202283
202285
|
javascriptFrom: `${javascriptFrom}.jsx`,
|
|
202284
202286
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
202287
|
+
classFrom: classFrom,
|
|
202288
|
+
classTo: classTo,
|
|
202285
202289
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
202286
202290
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
202287
202291
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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,8 @@ class IdeAi
|
|
|
202278
202280
|
javascript: `${javascript}.jsx`,
|
|
202279
202281
|
javascriptFrom: `${javascriptFrom}.jsx`,
|
|
202280
202282
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
202283
|
+
classFrom: classFrom,
|
|
202284
|
+
classTo: classTo,
|
|
202281
202285
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
202282
202286
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
202283
202287
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
package/dist/components/ideAi.js
CHANGED
|
@@ -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,8 @@ export class IdeAi
|
|
|
412
414
|
javascript: `${javascript}.jsx`,
|
|
413
415
|
javascriptFrom: `${javascriptFrom}.jsx`,
|
|
414
416
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
417
|
+
classFrom: classFrom,
|
|
418
|
+
classTo: classTo,
|
|
415
419
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
416
420
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
417
421
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|
package/package.json
CHANGED
package/src/components/ideAi.js
CHANGED
|
@@ -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,8 @@ export class IdeAi
|
|
|
412
414
|
javascript: `${javascript}.jsx`,
|
|
413
415
|
javascriptFrom: `${javascriptFrom}.jsx`,
|
|
414
416
|
javascriptTo: `${javascriptTo}.jsx`,
|
|
417
|
+
classFrom: classFrom,
|
|
418
|
+
classTo: classTo,
|
|
415
419
|
mybatisPullPath: `${this.#parent.settings.beProjectName}/src/main/resources/mapper/${cleaned.split(".").slice(0, -1).join("/")}/${fileName}Mapper.xml`,
|
|
416
420
|
controllerPullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/controller/${fileName}Controller.java`,
|
|
417
421
|
servicePullPath: `${this.#parent.settings.beProjectName}/src/main/java/${packageName.replaceAll(".", "/")}/service/${fileName}Service.java`,
|