gomtm 0.0.358 → 0.0.360

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.
Files changed (32) hide show
  1. package/dist/esm/components/curdView/curdViewEditor.d.ts +2 -0
  2. package/dist/esm/components/curdView/curdViewEditor.js +8 -0
  3. package/dist/esm/curd/CurdView.js +1 -1
  4. package/dist/esm/curd/CurdViewSS.js +3 -3
  5. package/dist/esm/curd/DynViews.d.ts +1 -0
  6. package/dist/esm/curd/DynViews.js +46 -3
  7. package/dist/esm/curd/form/CurdEditPanel.d.ts +2 -0
  8. package/dist/esm/curd/form/CurdEditPanel.js +56 -0
  9. package/dist/esm/curd/form/GomtmForm.d.ts +2 -0
  10. package/dist/esm/curd/form/GomtmForm.js +46 -0
  11. package/dist/esm/curd/form/formStore.d.ts +29 -0
  12. package/dist/esm/curd/form/formStore.js +159 -0
  13. package/dist/esm/curd/form/useCurdUpdateForm.d.ts +7 -0
  14. package/dist/esm/curd/form/useCurdUpdateForm.js +25 -0
  15. package/dist/esm/curd/listview/CommonListView.js +57 -40
  16. package/dist/esm/curd/listview/list-store.d.ts +2 -2
  17. package/dist/esm/curd/listview/list-store.js +2 -14
  18. package/dist/esm/curd/remove/RemovePanel.js +2 -5
  19. package/dist/esm/gomtmpb/mtm/sppb/curd-CurdService_connectquery.d.ts +42 -2
  20. package/dist/esm/gomtmpb/mtm/sppb/curd-CurdService_connectquery.js +46 -2
  21. package/dist/esm/gomtmpb/mtm/sppb/curd_connect.d.ts +26 -2
  22. package/dist/esm/gomtmpb/mtm/sppb/curd_connect.js +43 -2
  23. package/dist/esm/gomtmpb/mtm/sppb/curd_pb.d.ts +44 -0
  24. package/dist/esm/gomtmpb/mtm/sppb/curd_pb.js +106 -0
  25. package/dist/esm/gomtmpb/mtm/sppb/mtm-MtmService_connectquery.d.ts +1 -41
  26. package/dist/esm/gomtmpb/mtm/sppb/mtm-MtmService_connectquery.js +1 -45
  27. package/dist/esm/gomtmpb/mtm/sppb/mtm_connect.d.ts +1 -25
  28. package/dist/esm/gomtmpb/mtm/sppb/mtm_connect.js +1 -37
  29. package/dist/esm/gomtmpb/mtm/sppb/mtm_pb.d.ts +0 -42
  30. package/dist/esm/gomtmpb/mtm/sppb/mtm_pb.js +0 -94
  31. package/dist/tsconfig.type.tsbuildinfo +1 -1
  32. package/package.json +3 -3
@@ -1590,48 +1590,6 @@ export declare class CurdView extends Message<CurdView> {
1590
1590
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdView;
1591
1591
  static equals(a: CurdView | PlainMessage<CurdView> | undefined, b: CurdView | PlainMessage<CurdView> | undefined): boolean;
1592
1592
  }
1593
- export declare class CurdViewCreateReq extends Message<CurdViewCreateReq> {
1594
- title: string;
1595
- constructor(data?: PartialMessage<CurdViewCreateReq>);
1596
- static readonly runtime: typeof proto3;
1597
- static readonly typeName = "sppb.CurdViewCreateReq";
1598
- static readonly fields: FieldList;
1599
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewCreateReq;
1600
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewCreateReq;
1601
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewCreateReq;
1602
- static equals(a: CurdViewCreateReq | PlainMessage<CurdViewCreateReq> | undefined, b: CurdViewCreateReq | PlainMessage<CurdViewCreateReq> | undefined): boolean;
1603
- }
1604
- export declare class CurdViewUpdateReq extends Message<CurdViewUpdateReq> {
1605
- input?: CurdView;
1606
- constructor(data?: PartialMessage<CurdViewUpdateReq>);
1607
- static readonly runtime: typeof proto3;
1608
- static readonly typeName = "sppb.CurdViewUpdateReq";
1609
- static readonly fields: FieldList;
1610
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewUpdateReq;
1611
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewUpdateReq;
1612
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewUpdateReq;
1613
- static equals(a: CurdViewUpdateReq | PlainMessage<CurdViewUpdateReq> | undefined, b: CurdViewUpdateReq | PlainMessage<CurdViewUpdateReq> | undefined): boolean;
1614
- }
1615
- export declare class CurdViewGetRes extends Message<CurdViewGetRes> {
1616
- item: {
1617
- value: ErrorRes;
1618
- case: "error";
1619
- } | {
1620
- value: CurdView;
1621
- case: "data";
1622
- } | {
1623
- case: undefined;
1624
- value?: undefined;
1625
- };
1626
- constructor(data?: PartialMessage<CurdViewGetRes>);
1627
- static readonly runtime: typeof proto3;
1628
- static readonly typeName = "sppb.CurdViewGetRes";
1629
- static readonly fields: FieldList;
1630
- static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CurdViewGetRes;
1631
- static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CurdViewGetRes;
1632
- static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CurdViewGetRes;
1633
- static equals(a: CurdViewGetRes | PlainMessage<CurdViewGetRes> | undefined, b: CurdViewGetRes | PlainMessage<CurdViewGetRes> | undefined): boolean;
1634
- }
1635
1593
  export declare class ArtContentClassifyReq extends Message<ArtContentClassifyReq> {
1636
1594
  text: string;
1637
1595
  categories: string[];
@@ -6439,97 +6439,6 @@ __publicField(_CurdView, "fields", proto3.util.newFieldList(() => [
6439
6439
  }
6440
6440
  ]));
6441
6441
  let CurdView = _CurdView;
6442
- const _CurdViewCreateReq = class _CurdViewCreateReq extends Message {
6443
- constructor(data) {
6444
- super();
6445
- /**
6446
- * @generated from field: string title = 1;
6447
- */
6448
- __publicField(this, "title", "");
6449
- proto3.util.initPartial(data, this);
6450
- }
6451
- static fromBinary(bytes, options) {
6452
- return new _CurdViewCreateReq().fromBinary(bytes, options);
6453
- }
6454
- static fromJson(jsonValue, options) {
6455
- return new _CurdViewCreateReq().fromJson(jsonValue, options);
6456
- }
6457
- static fromJsonString(jsonString, options) {
6458
- return new _CurdViewCreateReq().fromJsonString(jsonString, options);
6459
- }
6460
- static equals(a, b) {
6461
- return proto3.util.equals(_CurdViewCreateReq, a, b);
6462
- }
6463
- };
6464
- __publicField(_CurdViewCreateReq, "runtime", proto3);
6465
- __publicField(_CurdViewCreateReq, "typeName", "sppb.CurdViewCreateReq");
6466
- __publicField(_CurdViewCreateReq, "fields", proto3.util.newFieldList(() => [
6467
- {
6468
- no: 1,
6469
- name: "title",
6470
- kind: "scalar",
6471
- T: 9
6472
- /* ScalarType.STRING */
6473
- }
6474
- ]));
6475
- let CurdViewCreateReq = _CurdViewCreateReq;
6476
- const _CurdViewUpdateReq = class _CurdViewUpdateReq extends Message {
6477
- constructor(data) {
6478
- super();
6479
- /**
6480
- * @generated from field: sppb.CurdView input = 1;
6481
- */
6482
- __publicField(this, "input");
6483
- proto3.util.initPartial(data, this);
6484
- }
6485
- static fromBinary(bytes, options) {
6486
- return new _CurdViewUpdateReq().fromBinary(bytes, options);
6487
- }
6488
- static fromJson(jsonValue, options) {
6489
- return new _CurdViewUpdateReq().fromJson(jsonValue, options);
6490
- }
6491
- static fromJsonString(jsonString, options) {
6492
- return new _CurdViewUpdateReq().fromJsonString(jsonString, options);
6493
- }
6494
- static equals(a, b) {
6495
- return proto3.util.equals(_CurdViewUpdateReq, a, b);
6496
- }
6497
- };
6498
- __publicField(_CurdViewUpdateReq, "runtime", proto3);
6499
- __publicField(_CurdViewUpdateReq, "typeName", "sppb.CurdViewUpdateReq");
6500
- __publicField(_CurdViewUpdateReq, "fields", proto3.util.newFieldList(() => [
6501
- { no: 1, name: "input", kind: "message", T: CurdView }
6502
- ]));
6503
- let CurdViewUpdateReq = _CurdViewUpdateReq;
6504
- const _CurdViewGetRes = class _CurdViewGetRes extends Message {
6505
- constructor(data) {
6506
- super();
6507
- /**
6508
- * @generated from oneof sppb.CurdViewGetRes.item
6509
- */
6510
- __publicField(this, "item", { case: void 0 });
6511
- proto3.util.initPartial(data, this);
6512
- }
6513
- static fromBinary(bytes, options) {
6514
- return new _CurdViewGetRes().fromBinary(bytes, options);
6515
- }
6516
- static fromJson(jsonValue, options) {
6517
- return new _CurdViewGetRes().fromJson(jsonValue, options);
6518
- }
6519
- static fromJsonString(jsonString, options) {
6520
- return new _CurdViewGetRes().fromJsonString(jsonString, options);
6521
- }
6522
- static equals(a, b) {
6523
- return proto3.util.equals(_CurdViewGetRes, a, b);
6524
- }
6525
- };
6526
- __publicField(_CurdViewGetRes, "runtime", proto3);
6527
- __publicField(_CurdViewGetRes, "typeName", "sppb.CurdViewGetRes");
6528
- __publicField(_CurdViewGetRes, "fields", proto3.util.newFieldList(() => [
6529
- { no: 101, name: "error", kind: "message", T: ErrorRes, oneof: "item" },
6530
- { no: 102, name: "data", kind: "message", T: CurdView, oneof: "item" }
6531
- ]));
6532
- let CurdViewGetRes = _CurdViewGetRes;
6533
6442
  const _ArtContentClassifyReq = class _ArtContentClassifyReq extends Message {
6534
6443
  constructor(data) {
6535
6444
  super();
@@ -7117,10 +7026,7 @@ export {
7117
7026
  CurdDetailReq,
7118
7027
  CurdDetailRes,
7119
7028
  CurdView,
7120
- CurdViewCreateReq,
7121
7029
  CurdViewGetReq,
7122
- CurdViewGetRes,
7123
- CurdViewUpdateReq,
7124
7030
  DemoGetProductionRequest,
7125
7031
  DevInitConfig,
7126
7032
  DomainCollResult,