zova-cli-set-front 1.2.42 → 1.2.44

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.
@@ -1,9 +1,15 @@
1
- import type { IJsxRenderContextPage, IResourceActionBulkOptionsBase } from 'zova-module-a-openapi';
1
+ import type { IJsxRenderContextPage, IResourceTableActionBulkOptionsBase } from 'zova-module-a-openapi';
2
2
 
3
- import { BeanControllerBase, IComponentOptions, Use } from 'zova';
3
+ import { BeanControllerBase, type IComponentOptions, Use } from 'zova';
4
4
  import { Controller } from 'zova-module-a-bean';
5
5
 
6
- export interface Controller<%=argv.nameMeta.fullCapitalize%>Props extends IResourceActionBulkOptionsBase {}
6
+ declare module 'zova-module-a-openapi' {
7
+ export interface IResourceTableActionBulkRecord {
8
+ '<%=argv.module%>:<%=argv.nameMeta.full%>'?: Controller<%=argv.nameMeta.fullCapitalize%>Props;
9
+ }
10
+ }
11
+
12
+ export interface Controller<%=argv.nameMeta.fullCapitalize%>Props extends IResourceTableActionBulkOptionsBase {}
7
13
 
8
14
  @Controller()
9
15
  export class Controller<%=argv.nameMeta.fullCapitalize%> extends BeanControllerBase {
@@ -1,9 +1,15 @@
1
- import type { IJsxRenderContextPageEntry, IResourceActionRowOptionsBase } from 'zova-module-a-openapi';
1
+ import type { IJsxRenderContextPageEntry, IResourceFormActionRowOptionsBase } from 'zova-module-a-openapi';
2
2
 
3
- import { BeanControllerBase, IComponentOptions, Use } from 'zova';
3
+ import { BeanControllerBase, type IComponentOptions, Use } from 'zova';
4
4
  import { Controller } from 'zova-module-a-bean';
5
5
 
6
- export interface Controller<%=argv.nameMeta.fullCapitalize%>Props extends IResourceActionRowOptionsBase {}
6
+ declare module 'zova-module-a-openapi' {
7
+ export interface IResourceFormActionRowRecord {
8
+ '<%=argv.module%>:<%=argv.nameMeta.full%>'?: Controller<%=argv.nameMeta.fullCapitalize%>Props;
9
+ }
10
+ }
11
+
12
+ export interface Controller<%=argv.nameMeta.fullCapitalize%>Props extends IResourceFormActionRowOptionsBase {}
7
13
 
8
14
  @Controller()
9
15
  export class Controller<%=argv.nameMeta.fullCapitalize%> extends BeanControllerBase {
@@ -1,8 +1,14 @@
1
1
  import type { IResourceBlockOptionsBase, IJsxRenderContextPage } from 'zova-module-a-openapi';
2
2
 
3
- import { BeanControllerBase, IComponentOptions, Use } from 'zova';
3
+ import { BeanControllerBase, type IComponentOptions, Use } from 'zova';
4
4
  import { Controller } from 'zova-module-a-bean';
5
5
 
6
+ declare module 'zova-module-a-openapi' {
7
+ export interface IResourceBlockRecord {
8
+ '<%=argv.module%>:<%=argv.nameMeta.full%>'?: Controller<%=argv.nameMeta.fullCapitalize%>Props;
9
+ }
10
+ }
11
+
6
12
  export interface Controller<%=argv.nameMeta.fullCapitalize%>Props extends IResourceBlockOptionsBase {}
7
13
 
8
14
  @Controller()
@@ -1,8 +1,14 @@
1
1
  import type { IResourceBlockOptionsBase, IJsxRenderContextPageEntry } from 'zova-module-a-openapi';
2
2
 
3
- import { BeanControllerBase, IComponentOptions, Use } from 'zova';
3
+ import { BeanControllerBase, type IComponentOptions, Use } from 'zova';
4
4
  import { Controller } from 'zova-module-a-bean';
5
5
 
6
+ declare module 'zova-module-a-openapi' {
7
+ export interface IResourceBlockRecord {
8
+ '<%=argv.module%>:<%=argv.nameMeta.full%>'?: Controller<%=argv.nameMeta.fullCapitalize%>Props;
9
+ }
10
+ }
11
+
6
12
  export interface Controller<%=argv.nameMeta.fullCapitalize%>Props extends IResourceBlockOptionsBase {}
7
13
 
8
14
  @Controller()
@@ -6,7 +6,7 @@ import { Controller } from 'zova-module-a-bean';
6
6
  import { ZFormField, type IFormFieldComponentOptions } from 'zova-module-a-form';
7
7
 
8
8
  declare module 'zova-module-a-openapi' {
9
- export interface IResourceComponentFormFieldRecord {
9
+ export interface IResourceFormFieldRecord {
10
10
  '<%=argv.module%>:<%=argv.nameMeta.full%>'?: IResource<%=argv.nameMeta.fullCapitalize%>Options;
11
11
  }
12
12
  }
@@ -1,28 +1,31 @@
1
1
  import type z from 'zod';
2
2
  import type { TypeRenderComponentJsx } from 'zova-jsx';
3
3
  import type {
4
- IResourceComponentFormFieldRecord,
4
+ IResourceFormFieldRecord,
5
+ IResourceTableCellRecord,
6
+ IResourceTableActionRowRecord,
7
+ IResourceFormActionRowRecord,
8
+ IResourceTableActionBulkRecord,
9
+ IResourceBlockRecord,
5
10
  TypeFormSchemaScene,
6
- IResourceComponentTableCellActionRowRecord,
7
- IResourceActionRowRecord,
8
- IResourceComponentActionRowOptionsAction,
9
- IResourceActionBulkRecord,
10
- IResourceComponentActionBulkOptionsAction,
11
- IResourceComponentBlockRecord,
12
- IResourceComponentBlockOptionsBlock,
11
+ IResourceRenderTableActionRowOptionsAction,
12
+ IResourceRenderFormActionRowOptionsAction,
13
+ IResourceRenderTableActionBulkOptionsAction,
14
+ IResourceRenderBlockOptionsBlock,
15
+ IResourceTableActionRowOptionsBase,
16
+ IResourceFormActionRowOptionsBase,
17
+ IResourceTableActionBulkOptionsBase,
13
18
  } from 'zova-module-a-openapi';
14
19
 
15
- import { toUpperCaseFirstChar } from '@cabloy/word-utils';
20
+ import { _generalSchemaRest, _toLowerCaseFirstChar } from './inner.ts';
16
21
 
17
- import { _generalSchemaRest } from './inner.ts';
18
-
19
- export function schemaRenderField<K extends keyof IResourceComponentFormFieldRecord, T extends z.ZodType>(
20
- name: K,
21
- options?: IResourceComponentFormFieldRecord[K],
22
+ export function schemaRenderField<K extends keyof IResourceFormFieldRecord, T extends z.ZodType>(
23
+ render: K,
24
+ options?: IResourceFormFieldRecord[K],
22
25
  scene?: TypeFormSchemaScene,
23
26
  ) {
24
27
  return function (schema: T): T {
25
- const options2 = options !== undefined ? { render: name as never, options } : { render: name as never };
28
+ const options2 = options !== undefined ? { render, options } : { render };
26
29
  return _generalSchemaRest(schema, options2, scene ?? 'form'); // diff from table
27
30
  };
28
31
  }
@@ -34,52 +37,79 @@ export function schemaRenderFieldJsx<T extends z.ZodType>(renderComponentJsx: Ty
34
37
  };
35
38
  }
36
39
 
37
- export function schemaRenderCell<K extends keyof IResourceComponentTableCellActionRowRecord, T extends z.ZodType>(
38
- name: K,
39
- options?: IResourceComponentTableCellActionRowRecord[K],
40
+ export function schemaRenderCell<K extends keyof (IResourceTableCellRecord & IResourceTableActionRowRecord), T extends z.ZodType>(
41
+ render: K,
42
+ options?: (IResourceTableCellRecord & IResourceTableActionRowRecord)[K],
40
43
  ) {
41
44
  return function (schema: T): T {
42
- const options2 = options !== undefined ? { render: name as never, columnProps: options } : { render: name as never };
45
+ const options2 = options !== undefined ? { render, columnProps: options } : { render };
43
46
  return _generalSchemaRest(schema, options2, 'table');
44
47
  };
45
48
  }
46
49
 
47
- export function schemaRenderCellJsx<T extends z.ZodType>(renderComponentJsx: TypeRenderComponentJsx) {
50
+ export function schemaRenderCellJsx<T extends z.ZodType>(
51
+ renderComponentJsx: TypeRenderComponentJsx,
52
+ options?: Pick<IResourceTableActionRowOptionsBase, 'permission'>,
53
+ ) {
48
54
  return function (schema: T): T {
49
- const options = { render: renderComponentJsx };
50
- return _generalSchemaRest(schema, options, 'table');
55
+ const options2 = options !== undefined ? { render: renderComponentJsx, columnProps: options } : { render: renderComponentJsx };
56
+ return _generalSchemaRest(schema, options2, 'table');
51
57
  };
52
58
  }
53
59
 
54
- export function schemaRenderActionRow<K extends keyof IResourceActionRowRecord>(
55
- name: K,
56
- options?: IResourceActionRowRecord[K],
57
- ): IResourceComponentActionRowOptionsAction {
58
- const render = 'Action' + toUpperCaseFirstChar(name);
59
- return { $$typeof: 'zova-jsx:actionRow', name, render: render as any, options };
60
+ export function schemaRenderTableActionRow<K extends keyof IResourceTableActionRowRecord>(
61
+ render: K,
62
+ options?: IResourceTableActionRowRecord[K],
63
+ ): IResourceRenderTableActionRowOptionsAction {
64
+ const pos = render.toString().indexOf(':action');
65
+ const name = pos > -1 ? _toLowerCaseFirstChar(render.toString().substring(pos + ':action'.length)) : undefined;
66
+ return { $$typeof: 'zova-jsx:actionRow', name, render, options };
60
67
  }
61
68
 
62
- export function schemaRenderActionRowJsx<K extends keyof IResourceActionRowRecord>(name: K, renderComponentJsx: TypeRenderComponentJsx) {
63
- return { name, render: renderComponentJsx };
69
+ export function schemaRenderTableActionRowJsx(
70
+ renderComponentJsx: TypeRenderComponentJsx,
71
+ options?: Pick<IResourceTableActionRowOptionsBase, 'permission'>,
72
+ ) {
73
+ return { render: renderComponentJsx, options };
64
74
  }
65
75
 
66
- export function schemaRenderActionBulk<K extends keyof IResourceActionBulkRecord>(
67
- name: K,
68
- options?: IResourceActionBulkRecord[K],
69
- ): IResourceComponentActionBulkOptionsAction {
70
- const render = 'Action' + toUpperCaseFirstChar(name);
71
- return { $$typeof: 'zova-jsx:actionBulk', name, render: render as any, options };
76
+ export function schemaRenderFormActionRow<K extends keyof IResourceFormActionRowRecord>(
77
+ render: K,
78
+ options?: IResourceFormActionRowRecord[K],
79
+ ): IResourceRenderFormActionRowOptionsAction {
80
+ const pos = render.toString().indexOf(':action');
81
+ const name = pos > -1 ? _toLowerCaseFirstChar(render.toString().substring(pos + ':action'.length)) : undefined;
82
+ return { $$typeof: 'zova-jsx:actionRow', name, render, options };
72
83
  }
73
84
 
74
- export function schemaRenderActionBulkJsx<K extends IResourceActionBulkRecord>(name: K, renderComponentJsx: TypeRenderComponentJsx) {
75
- return { name, render: renderComponentJsx };
85
+ export function schemaRenderFormActionRowJsx(
86
+ renderComponentJsx: TypeRenderComponentJsx,
87
+ options?: Pick<IResourceFormActionRowOptionsBase, 'permission'>,
88
+ ) {
89
+ return { render: renderComponentJsx, options };
90
+ }
91
+
92
+ export function schemaRenderTableActionBulk<K extends keyof IResourceTableActionBulkRecord>(
93
+ render: K,
94
+ options?: IResourceTableActionBulkRecord[K],
95
+ ): IResourceRenderTableActionBulkOptionsAction {
96
+ const pos = render.toString().indexOf(':action');
97
+ const name = pos > -1 ? _toLowerCaseFirstChar(render.toString().substring(pos + ':action'.length)) : undefined;
98
+ return { $$typeof: 'zova-jsx:actionBulk', name, render, options };
99
+ }
100
+
101
+ export function schemaRenderTableActionBulkJsx(
102
+ renderComponentJsx: TypeRenderComponentJsx,
103
+ options?: Pick<IResourceTableActionBulkOptionsBase, 'permission'>,
104
+ ) {
105
+ return { render: renderComponentJsx, options };
76
106
  }
77
107
 
78
- export function schemaRenderBlock<K extends keyof IResourceComponentBlockRecord>(
79
- name: K,
80
- options?: IResourceComponentBlockRecord[K],
81
- ): IResourceComponentBlockOptionsBlock {
82
- return { $$typeof: 'zova-jsx:block', render: name, options };
108
+ export function schemaRenderBlock<K extends keyof IResourceBlockRecord>(
109
+ render: K,
110
+ options?: IResourceBlockRecord[K],
111
+ ): IResourceRenderBlockOptionsBlock {
112
+ return { $$typeof: 'zova-jsx:block', render, options };
83
113
  }
84
114
 
85
115
  export function schemaRenderBlockJsx(renderComponentJsx: TypeRenderComponentJsx) {
@@ -20,3 +20,7 @@ export function _order(order: number, level?: TypeSchemaOrderLevel) {
20
20
  const levelBase = OrderLevelBaseMap[level ?? 'business'];
21
21
  return levelBase + order;
22
22
  }
23
+
24
+ export function _toLowerCaseFirstChar(str: string) {
25
+ return str.charAt(0).toLowerCase() + str.substring(1);
26
+ }
@@ -1,14 +1,16 @@
1
1
  import {
2
- schemaRenderActionBulk,
3
- schemaRenderActionBulkJsx,
4
- schemaRenderActionRow,
5
- schemaRenderActionRowJsx,
6
2
  schemaRenderBlock,
7
3
  schemaRenderBlockJsx,
8
4
  schemaRenderCell,
9
5
  schemaRenderCellJsx,
10
6
  schemaRenderField,
11
7
  schemaRenderFieldJsx,
8
+ schemaRenderFormActionRow,
9
+ schemaRenderFormActionRowJsx,
10
+ schemaRenderTableActionBulk,
11
+ schemaRenderTableActionBulkJsx,
12
+ schemaRenderTableActionRow,
13
+ schemaRenderTableActionRowJsx,
12
14
  } from './component.ts';
13
15
  import {
14
16
  schemaRenderDisableNotifyChanged,
@@ -32,10 +34,12 @@ export const render = {
32
34
  fieldJsx: schemaRenderFieldJsx,
33
35
  cell: schemaRenderCell,
34
36
  cellJsx: schemaRenderCellJsx,
35
- actionRow: schemaRenderActionRow,
36
- actionRowJsx: schemaRenderActionRowJsx,
37
- actionBulk: schemaRenderActionBulk,
38
- actionBulkJsx: schemaRenderActionBulkJsx,
37
+ tableActionRow: schemaRenderTableActionRow,
38
+ tableActionRowJsx: schemaRenderTableActionRowJsx,
39
+ formActionRow: schemaRenderFormActionRow,
40
+ formActionRowJsx: schemaRenderFormActionRowJsx,
41
+ tableActionBulk: schemaRenderTableActionBulk,
42
+ tableActionBulkJsx: schemaRenderTableActionBulkJsx,
39
43
  block: schemaRenderBlock,
40
44
  blockJsx: schemaRenderBlockJsx,
41
45
  };
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { rolldown } from 'rolldown';
7
7
  import { dts } from 'rolldown-plugin-dts';
8
8
  import { build } from 'vite';
9
9
  import { createRequire } from 'node:module';
10
- import { camelToKebab, replaceTemplate, toUpperCaseFirstChar, toLowerCaseFirstChar, skipPrefix, stringToCapitalize } from '@cabloy/word-utils';
10
+ import { camelToKebab, toUpperCaseFirstChar, toLowerCaseFirstChar, skipPrefix, stringToCapitalize, replaceTemplate } from '@cabloy/word-utils';
11
11
  import fse from 'fs-extra';
12
12
  import { build as build$1 } from 'tsdown';
13
13
  import yaml from 'yaml';
@@ -192,21 +192,6 @@ function svgResolverPlugin() {
192
192
  }
193
193
  };
194
194
  }
195
- const __template_package = `{
196
- "name": "{{Name}}",
197
- "version": "{{Version}}",
198
- "type": "module",
199
- "exports": {
200
- ".": {
201
- "types": [
202
- "./index.d.mts"
203
- ],
204
- "import": "./index.mjs"
205
- },
206
- "./package.json": "./package.json"
207
- }
208
- }
209
- `;
210
195
  class CliBinBuildRest extends BeanCliBase {
211
196
  async execute() {
212
197
  const {
@@ -287,22 +272,6 @@ class CliBinBuildRest extends BeanCliBase {
287
272
  // render
288
273
  await this.template.renderDir(srcDir, templateDir);
289
274
  }
290
- async _prepareResources_(context) {
291
- // package.json
292
- await this._prepareResourcesPackage(context);
293
- // index.ts
294
- await this._prepareResourcesIndex(context);
295
- }
296
- _prepareBundleModules() {
297
- const modules = [];
298
- for (const module of this.modulesMeta.modulesArray) {
299
- const moduleRoot = module.root.replaceAll('\\', '/');
300
- if (moduleRoot.includes('/src/module/') || moduleRoot.includes('/src/suite/')) {
301
- modules.push(module.info.fullName);
302
- }
303
- }
304
- return modules;
305
- }
306
275
  async _buildTs({
307
276
  srcDir,
308
277
  outDir
@@ -385,124 +354,6 @@ class CliBinBuildRest extends BeanCliBase {
385
354
  // copy
386
355
  _copyToTarget(outDir, process.env.BUILD_REST_COPY_DIST, bundleNameCopy);
387
356
  }
388
- async _prepareResourcesPackage({
389
- projectPath,
390
- flavor,
391
- bundleName,
392
- srcDir
393
- }) {
394
- const mode = 'production';
395
- const appMode = 'ssr';
396
- const configMeta = {
397
- flavor,
398
- mode,
399
- appMode
400
- };
401
- const configOptions = {
402
- appDir: projectPath,
403
- runtimeDir: '.zova'
404
- };
405
- const configUtils = createConfigUtils(configMeta, configOptions);
406
- // env
407
- const env = configUtils.loadEnvs();
408
- // package.json
409
- const pkgContent = replaceTemplate(__template_package, {
410
- Name: bundleName,
411
- Version: env.APP_VERSION
412
- });
413
- await fse.writeFile(path.join(srcDir, 'package.json'), pkgContent);
414
- }
415
- async _prepareResourcesIndex({
416
- srcDir,
417
- projectPath
418
- }) {
419
- let indexContent = `import type { IIconRecord } from 'zova-module-a-icon';
420
- export type { IIconRecord } from 'zova-module-a-icon';
421
- import type { TypePagePathSchema } from 'zova-module-a-router';
422
- export type { IPagePathRecord } from 'zova-module-a-router';
423
- import type { IActionRecord, TypeActionOptions } from 'zova-module-a-action';
424
- export type { IActionRecord } from 'zova-module-a-action';
425
- import type { IVonaComponentRecord, TypeComponentOptions } from 'zova-module-a-bean';
426
- export type { IVonaComponentRecord } from 'zova-module-a-bean';
427
- export type {
428
- IResourceComponentActionBulkRecord,
429
- IResourceComponentActionRowRecord,
430
- IResourceComponentBlockRecord,
431
- IResourceComponentFormFieldRecord,
432
- IResourceComponentTableCellRecord,
433
- ISchemaRenderComponentLayoutOptions,
434
- } from 'zova-module-a-openapi';
435
- `;
436
- indexContent += await this._prepareResourcesIndex_rest(srcDir);
437
- indexContent += await this._prepareResourcesIndex_icons(srcDir);
438
- indexContent += await this._prepareResourcesIndex_pages(srcDir);
439
- indexContent += await this._prepareResourcesIndex_providers(srcDir, projectPath);
440
- await fse.writeFile(path.join(srcDir, 'index.ts'), indexContent);
441
- }
442
- async _prepareResourcesIndex_rest(srcDir) {
443
- let content = '';
444
- for (const module of this.modulesMeta.modulesArray) {
445
- const restDir = path.join(module.root, 'rest');
446
- if (!fse.existsSync(restDir)) continue;
447
- let tempDir;
448
- if (module.info.node_modules) {
449
- tempDir = path.join(srcDir, 'modules', module.info.relativeName, 'rest');
450
- await fse.copy(restDir, tempDir);
451
- } else {
452
- tempDir = path.join(module.root, 'rest');
453
- }
454
- const restIndexFile = path.join(tempDir, 'index.ts');
455
- let restIndexFileRelative = path.relative(srcDir, restIndexFile);
456
- if (!restIndexFileRelative.startsWith('.')) {
457
- restIndexFileRelative = `./${restIndexFileRelative}`;
458
- }
459
- content += `export * from '${restIndexFileRelative.replaceAll('\\', '/')}';\n`;
460
- }
461
- return content;
462
- }
463
- async _prepareResourcesIndex_icons(_srcDir) {
464
- const content = `export function $iconName<K extends keyof IIconRecord>(name: K): any {
465
- return name;
466
- }
467
- `;
468
- return content;
469
- }
470
- async _prepareResourcesIndex_providers(_srcDir, projectPath) {
471
- // openapi
472
- const dirBasicOpenapi = path.join(projectPath, './src/suite/cabloy-basic/modules/basic-openapi');
473
- const dirStartOpenapi = path.join(projectPath, './src/suite/cabloy-start/modules/start-openapi');
474
- let content = '';
475
- if (fse.existsSync(dirBasicOpenapi)) {
476
- content += `import 'zova-module-basic-openapi';\n`;
477
- } else if (fse.existsSync(dirStartOpenapi)) {
478
- content += `import 'zova-module-start-openapi';\n`;
479
- }
480
- // actions
481
- content += `export function Action<K extends keyof IActionRecord>(options: TypeActionOptions<K>) {
482
- if(!options.name) throw new Error('should specify the action name');
483
- return options.name.replace(':','.action.');
484
- }
485
- `;
486
- // components
487
- content += `export function Component<K extends keyof IVonaComponentRecord>(options: TypeComponentOptions<K>) {
488
- if (!options.name) throw new Error('should specify the component name');
489
- return options.name;
490
- }
491
- `;
492
- return content;
493
- }
494
- async _prepareResourcesIndex_pages(_srcDir) {
495
- const content = `declare module 'zova-module-a-router' {
496
- export interface IPagePathRecord {
497
- '/': TypePagePathSchema<undefined, undefined>;
498
- 'presetLogin': TypePagePathSchema<undefined, undefined>;
499
- 'presetErrorExpired': TypePagePathSchema<undefined, undefined>;
500
- 'presetResource': TypePagePathSchema<undefined, undefined>;
501
- }
502
- }
503
- `;
504
- return content;
505
- }
506
357
  }
507
358
  function _copyToTarget(outDir, target, bundleNameCopy) {
508
359
  if (!target) return;
@@ -20,16 +20,8 @@ interface IBinBuildRestContext {
20
20
  export declare class CliBinBuildRest extends BeanCliBase {
21
21
  execute(): Promise<void>;
22
22
  _prepareResources(context: IBinBuildRestContext): Promise<void>;
23
- _prepareResources_(context: IBinBuildRestContext): Promise<void>;
24
- _prepareBundleModules(): string[];
25
23
  _buildTs({ srcDir, outDir }: IBinBuildRestContext): Promise<void>;
26
24
  _buildDts({ srcDir, outDir, bundleModules }: IBinBuildRestContext): Promise<void>;
27
25
  _build(buildContext: IBinBuildRestContext): Promise<void>;
28
- _prepareResourcesPackage({ projectPath, flavor, bundleName, srcDir }: IBinBuildRestContext): Promise<void>;
29
- _prepareResourcesIndex({ srcDir, projectPath }: IBinBuildRestContext): Promise<void>;
30
- _prepareResourcesIndex_rest(srcDir: string): Promise<string>;
31
- _prepareResourcesIndex_icons(_srcDir: string): Promise<string>;
32
- _prepareResourcesIndex_providers(_srcDir: string, projectPath: string): Promise<string>;
33
- _prepareResourcesIndex_pages(_srcDir: string): Promise<string>;
34
26
  }
35
27
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zova-cli-set-front",
3
- "version": "1.2.42",
4
- "gitHead": "59a9d8a527385e1677aa1664328637de4054ed86",
3
+ "version": "1.2.44",
4
+ "gitHead": "b6da8c02893f8002151fdd2eeec44c597570d5d6",
5
5
  "description": "zova cli-set-front",
6
6
  "keywords": [
7
7
  "framework",