export-table-pulgin-csharp 1.1.98 → 1.1.99
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/ExportCSPlugin.js +1 -1
- package/dist/ExportLiteDBCSPlugin.d.ts.map +1 -1
- package/dist/ExportLiteDBCSPlugin.js +1 -1
- package/dist/ExportLiteDBUnityCSJsonPlugin.d.ts.map +1 -1
- package/dist/ExportLiteDBUnityCSJsonPlugin.js +1 -1
- package/package.json +1 -1
- package/src/ExportCSPlugin.ts +1 -1
- package/src/ExportLiteDBCSPlugin.ts +1 -1
- package/src/ExportLiteDBUnityCSJsonPlugin.ts +1 -1
package/dist/ExportCSPlugin.js
CHANGED
|
@@ -123,7 +123,7 @@ ${(0, export_table_lib_1.foreach)(fields, f => {
|
|
|
123
123
|
}
|
|
124
124
|
#endif
|
|
125
125
|
return ${tempDictByMemberName}.GetValueOrDefault(${paraName});
|
|
126
|
-
|
|
126
|
+
}
|
|
127
127
|
`;
|
|
128
128
|
}
|
|
129
129
|
else if (f.type == "number" || f.type == "float" || f.type == "int" || f.type == "long" || f.type == "string") {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExportLiteDBCSPlugin.d.ts","sourceRoot":"","sources":["../src/ExportLiteDBCSPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAmF,MAAM,kBAAkB,CAAA;AAInL,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CA4NpE;AAED,qBAAa,oBAAqB,SAAQ,UAAU;IACnD,IAAI,
|
|
1
|
+
{"version":3,"file":"ExportLiteDBCSPlugin.d.ts","sourceRoot":"","sources":["../src/ExportLiteDBCSPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAmF,MAAM,kBAAkB,CAAA;AAInL,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CA4NpE;AAED,qBAAa,oBAAqB,SAAQ,UAAU;IACnD,IAAI,SAAa;IACjB,IAAI,EAAE,MAAM,EAAE,CAAe;IAE7B,WAAW,CAAC,KAAK,EAAE,iBAAiB;CAUpC"}
|
|
@@ -226,7 +226,7 @@ ${(0, export_table_lib_1.iff)(f.type == "fk[]", () => `
|
|
|
226
226
|
}
|
|
227
227
|
exports.export_stuff = export_stuff;
|
|
228
228
|
class ExportLiteDBCSPlugin extends export_table_lib_1.PluginBase {
|
|
229
|
-
name = "
|
|
229
|
+
name = "litedbcs";
|
|
230
230
|
tags = ["litedbcs"];
|
|
231
231
|
handleSheet(paras) {
|
|
232
232
|
let content = export_stuff(paras);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExportLiteDBUnityCSJsonPlugin.d.ts","sourceRoot":"","sources":["../src/ExportLiteDBUnityCSJsonPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAE,iBAAiB,EAAqC,MAAM,kBAAkB,CAAA;AAOxJ,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAuFnE;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAsDzE;AAED,qBAAa,uBAAwB,SAAQ,UAAU;IACtD,IAAI,
|
|
1
|
+
{"version":3,"file":"ExportLiteDBUnityCSJsonPlugin.d.ts","sourceRoot":"","sources":["../src/ExportLiteDBUnityCSJsonPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAE,iBAAiB,EAAqC,MAAM,kBAAkB,CAAA;AAOxJ,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAuFnE;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAsDzE;AAED,qBAAa,uBAAwB,SAAQ,UAAU;IACtD,IAAI,SAAgB;IACpB,IAAI,EAAE,MAAM,EAAE,CAAkB;IAEhC,WAAW,CAAC,KAAK,EAAE,iBAAiB;IAmBpC,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,IAAI;CAmC3C"}
|
|
@@ -155,7 +155,7 @@ namespace ${exportNamespace}
|
|
|
155
155
|
}
|
|
156
156
|
exports.exportUJsonLoader = exportUJsonLoader;
|
|
157
157
|
class ExportLiteDBUJsonPlugin extends export_table_lib_1.PluginBase {
|
|
158
|
-
name = "
|
|
158
|
+
name = "litedbujson";
|
|
159
159
|
tags = ["litedbujson"];
|
|
160
160
|
handleSheet(paras) {
|
|
161
161
|
var fullName = `${paras.table.workbookName}-${paras.name}`;
|
package/package.json
CHANGED
package/src/ExportCSPlugin.ts
CHANGED
|
@@ -124,7 +124,7 @@ ${foreach(fields, f => {
|
|
|
124
124
|
}
|
|
125
125
|
#endif
|
|
126
126
|
return ${tempDictByMemberName}.GetValueOrDefault(${paraName});
|
|
127
|
-
|
|
127
|
+
}
|
|
128
128
|
`
|
|
129
129
|
} else if (f.type == "number" || f.type == "float" || f.type == "int" || f.type == "long" || f.type == "string") {
|
|
130
130
|
let memberName = convMemberName(f.name);
|