@sankhyalabs/sankhyablocks 1.3.6 → 1.3.7

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.
@@ -7155,16 +7155,16 @@ const SnkApplication = class {
7155
7155
  async getResourceID() {
7156
7156
  return Promise.resolve(this.resourceID);
7157
7157
  }
7158
- async alert(title, message, icon) {
7159
- return utils.ApplicationUtils.alert(title, message, icon);
7158
+ async alert(title, message, icon, options) {
7159
+ return utils.ApplicationUtils.alert(title, message, icon, options);
7160
7160
  }
7161
- async error(title, message, icon) {
7162
- return utils.ApplicationUtils.error(title, message, icon);
7161
+ async error(title, message, icon, options) {
7162
+ return utils.ApplicationUtils.error(title, message, icon, options);
7163
7163
  }
7164
- async confirm(title, message, icon, critical) {
7165
- return utils.ApplicationUtils.confirm(title, message, icon, critical);
7164
+ async confirm(title, message, icon, critical, options) {
7165
+ return utils.ApplicationUtils.confirm(title, message, icon, critical, options);
7166
7166
  }
7167
- async info(message, options = undefined) {
7167
+ async info(message, options) {
7168
7168
  return utils.ApplicationUtils.info(message, options);
7169
7169
  }
7170
7170
  async loadFormConfig(name) {
@@ -89,16 +89,16 @@ export class SnkApplication {
89
89
  async getResourceID() {
90
90
  return Promise.resolve(this.resourceID);
91
91
  }
92
- async alert(title, message, icon) {
93
- return ApplicationUtils.alert(title, message, icon);
92
+ async alert(title, message, icon, options) {
93
+ return ApplicationUtils.alert(title, message, icon, options);
94
94
  }
95
- async error(title, message, icon) {
96
- return ApplicationUtils.error(title, message, icon);
95
+ async error(title, message, icon, options) {
96
+ return ApplicationUtils.error(title, message, icon, options);
97
97
  }
98
- async confirm(title, message, icon, critical) {
99
- return ApplicationUtils.confirm(title, message, icon, critical);
98
+ async confirm(title, message, icon, critical, options) {
99
+ return ApplicationUtils.confirm(title, message, icon, critical, options);
100
100
  }
101
- async info(message, options = undefined) {
101
+ async info(message, options) {
102
102
  return ApplicationUtils.info(message, options);
103
103
  }
104
104
  async loadFormConfig(name) {
@@ -466,7 +466,7 @@ export class SnkApplication {
466
466
  },
467
467
  "alert": {
468
468
  "complexType": {
469
- "signature": "(title: string, message: string, icon?: string) => Promise<boolean>",
469
+ "signature": "(title: string, message: string, icon?: string, options?: MessageOptions) => Promise<boolean>",
470
470
  "parameters": [{
471
471
  "tags": [],
472
472
  "text": ""
@@ -476,10 +476,17 @@ export class SnkApplication {
476
476
  }, {
477
477
  "tags": [],
478
478
  "text": ""
479
+ }, {
480
+ "tags": [],
481
+ "text": ""
479
482
  }],
480
483
  "references": {
481
484
  "Promise": {
482
485
  "location": "global"
486
+ },
487
+ "MessageOptions": {
488
+ "location": "import",
489
+ "path": "@sankhyalabs/ezui/dist/collection/utils"
483
490
  }
484
491
  },
485
492
  "return": "Promise<boolean>"
@@ -491,7 +498,7 @@ export class SnkApplication {
491
498
  },
492
499
  "error": {
493
500
  "complexType": {
494
- "signature": "(title: string, message: string, icon?: string) => Promise<boolean>",
501
+ "signature": "(title: string, message: string, icon?: string, options?: MessageOptions) => Promise<boolean>",
495
502
  "parameters": [{
496
503
  "tags": [],
497
504
  "text": ""
@@ -501,10 +508,17 @@ export class SnkApplication {
501
508
  }, {
502
509
  "tags": [],
503
510
  "text": ""
511
+ }, {
512
+ "tags": [],
513
+ "text": ""
504
514
  }],
505
515
  "references": {
506
516
  "Promise": {
507
517
  "location": "global"
518
+ },
519
+ "MessageOptions": {
520
+ "location": "import",
521
+ "path": "@sankhyalabs/ezui/dist/collection/utils"
508
522
  }
509
523
  },
510
524
  "return": "Promise<boolean>"
@@ -516,7 +530,7 @@ export class SnkApplication {
516
530
  },
517
531
  "confirm": {
518
532
  "complexType": {
519
- "signature": "(title: string, message: string, icon?: string, critical?: boolean) => Promise<boolean>",
533
+ "signature": "(title: string, message: string, icon?: string, critical?: boolean, options?: MessageOptions) => Promise<boolean>",
520
534
  "parameters": [{
521
535
  "tags": [],
522
536
  "text": ""
@@ -529,10 +543,17 @@ export class SnkApplication {
529
543
  }, {
530
544
  "tags": [],
531
545
  "text": ""
546
+ }, {
547
+ "tags": [],
548
+ "text": ""
532
549
  }],
533
550
  "references": {
534
551
  "Promise": {
535
552
  "location": "global"
553
+ },
554
+ "MessageOptions": {
555
+ "location": "import",
556
+ "path": "@sankhyalabs/ezui/dist/collection/utils"
536
557
  }
537
558
  },
538
559
  "return": "Promise<boolean>"
@@ -544,7 +565,7 @@ export class SnkApplication {
544
565
  },
545
566
  "info": {
546
567
  "complexType": {
547
- "signature": "(message: string, options?: any) => Promise<void>",
568
+ "signature": "(message: string, options?: MessageOptions) => Promise<void>",
548
569
  "parameters": [{
549
570
  "tags": [],
550
571
  "text": ""
@@ -555,6 +576,10 @@ export class SnkApplication {
555
576
  "references": {
556
577
  "Promise": {
557
578
  "location": "global"
579
+ },
580
+ "MessageOptions": {
581
+ "location": "import",
582
+ "path": "@sankhyalabs/ezui/dist/collection/utils"
558
583
  }
559
584
  },
560
585
  "return": "Promise<void>"
@@ -7153,16 +7153,16 @@ const SnkApplication = /*@__PURE__*/ proxyCustomElement(class extends HTMLElemen
7153
7153
  async getResourceID() {
7154
7154
  return Promise.resolve(this.resourceID);
7155
7155
  }
7156
- async alert(title, message, icon) {
7157
- return ApplicationUtils.alert(title, message, icon);
7156
+ async alert(title, message, icon, options) {
7157
+ return ApplicationUtils.alert(title, message, icon, options);
7158
7158
  }
7159
- async error(title, message, icon) {
7160
- return ApplicationUtils.error(title, message, icon);
7159
+ async error(title, message, icon, options) {
7160
+ return ApplicationUtils.error(title, message, icon, options);
7161
7161
  }
7162
- async confirm(title, message, icon, critical) {
7163
- return ApplicationUtils.confirm(title, message, icon, critical);
7162
+ async confirm(title, message, icon, critical, options) {
7163
+ return ApplicationUtils.confirm(title, message, icon, critical, options);
7164
7164
  }
7165
- async info(message, options = undefined) {
7165
+ async info(message, options) {
7166
7166
  return ApplicationUtils.info(message, options);
7167
7167
  }
7168
7168
  async loadFormConfig(name) {
@@ -7151,16 +7151,16 @@ const SnkApplication = class {
7151
7151
  async getResourceID() {
7152
7152
  return Promise.resolve(this.resourceID);
7153
7153
  }
7154
- async alert(title, message, icon) {
7155
- return ApplicationUtils.alert(title, message, icon);
7154
+ async alert(title, message, icon, options) {
7155
+ return ApplicationUtils.alert(title, message, icon, options);
7156
7156
  }
7157
- async error(title, message, icon) {
7158
- return ApplicationUtils.error(title, message, icon);
7157
+ async error(title, message, icon, options) {
7158
+ return ApplicationUtils.error(title, message, icon, options);
7159
7159
  }
7160
- async confirm(title, message, icon, critical) {
7161
- return ApplicationUtils.confirm(title, message, icon, critical);
7160
+ async confirm(title, message, icon, critical, options) {
7161
+ return ApplicationUtils.confirm(title, message, icon, critical, options);
7162
7162
  }
7163
- async info(message, options = undefined) {
7163
+ async info(message, options) {
7164
7164
  return ApplicationUtils.info(message, options);
7165
7165
  }
7166
7166
  async loadFormConfig(name) {
@@ -60,4 +60,4 @@ import{r as e,c as t,h as n}from"./p-ee5a384b.js";import{DataUnit as i,StringUti
60
60
  value
61
61
  label
62
62
  }
63
- }`)}loadSearchOptions(e,t,n){return new Promise(((i,r)=>{z.get().callGraphQL({values:{argument:t,entityName:e,criteria:n},query:this.templateByQuery.get("search")}).then((e=>{i(e)})).catch((e=>{r(e)}))}))}loadAdvancedSearch(e,t,n){const i={query:{$:null==n?void 0:n.expression}};(null==n?void 0:n.params.length)>0&&(i.params={param:n.params.map((e=>({$:e.value,type:ne(e.dataType)})))});const r={serviceName:"PesquisaSP.getSuggestion",requestBody:{criteria:{entityName:e,compacted:!1,ignoreEntityCriteria:!1,limit:"5",query:{$:t},orderByDesc:!1,options:{showInactives:!1},externalCriteria:i},clientEventList:{clientEvent:[]}}};return new Promise(((e,t)=>{z.get().callServiceBroker("PesquisaSP.getSuggestion",JSON.stringify(r)).then((t=>e(t))).catch((e=>t(e)))}))}}function ne(e){switch(e){case a.NUMBER:return"I";case a.DATE:return"D";default:return"S"}}const ie=class{constructor(n){e(this,n),this.applicationLoaded=t(this,"applicationLoaded",7),this.applicationLoading=t(this,"applicationLoading",7)}get parameters(){return this._parameters||(this._parameters=new Z),this._parameters}get resourceID(){return this._resourceID||(this._resourceID=this.urlParams.get("workspaceResourceID")||this.urlParams.get("resourceID")||Y.resourceID||"unknown.resource.id"),this._resourceID}async getStringParam(e){return this.parameters.asString(e,this.resourceID)}async getIntParam(e){return this.parameters.asInteger(e,this.resourceID)}async getFloatParam(e){return this.parameters.asFloat(e,this.resourceID)}async getBooleanParam(e){return this.parameters.asBoolean(e,this.resourceID)}async getDateParam(e){return this.parameters.asDate(e,this.resourceID)}async showPopUp(e){this._popUp.appendChild(e),this._popUp.opened=!0}async closePopUp(){Array.from(this._popUp.children).forEach((e=>{this._popUp.removeChild(e)})),this._popUp.opened=!1}async temOpcional(e){const t=e.split(",");return new Promise(((e,n)=>{this.getAttributeFromHTMLWrapper("opc0009").then((i=>{"1"===i?e(!0):Promise.all(t.map((e=>this.getAttributeFromHTMLWrapper("opc"+e)))).then((t=>{e(t.includes("1"))})).catch((e=>{n(e)}))})).catch((e=>{n(e)}))}))}async getAttributeFromHTMLWrapper(e){return Promise.resolve(window[e])}async openApp(e,t){Y.openAppActivity(e,t)}async createDataunit(e){return new Promise((t=>{const n=this.dataUnitFetcher.getDataUnit(e,this.resourceID);n.loadMetadata(),t(n)}))}async getResourceID(){return Promise.resolve(this.resourceID)}async alert(e,t,n){return c.alert(e,t,n)}async error(e,t,n){return c.error(e,t,n)}async confirm(e,t,n,i){return c.confirm(e,t,n,i)}async info(e,t){return c.info(e,t)}async loadFormConfig(e){return this.formConfigFetcher.loadFormConfig(e,this.resourceID)}get urlParams(){return this._urlParams||(this._urlParams=H.getQueryParams(location.search)),this._urlParams}get dataUnitFetcher(){return this._dataUnitFetcher||(this._dataUnitFetcher=new K),this._dataUnitFetcher}get formConfigFetcher(){return this._formConfigFetcher||(this._formConfigFetcher=new ee),this._formConfigFetcher}get pesquisaFetcher(){return this._pesquisaFetcher||(this._pesquisaFetcher=new te),this._pesquisaFetcher}executeSearch(e,t,n){const i=n.getField(t);if(i){const{mode:t,argument:r}=e,{ENTITYNAME:s}=i.properties,o=i.dependencies;let u;return null==o||o.forEach((e=>{var t;e.type===h.SEARCHING&&(null===(t=e.masterFields)||void 0===t?void 0:t.length)>0&&(u={expression:e.expression,params:e.masterFields.map((e=>{const t=n.getField(e),i=(null==t?void 0:t.dataType)||a.TEXT;return{name:e,value:n.getFieldValue(e),dataType:i}}))})})),"ADVANCED"===t?new Promise((e=>{const t=document.createElement("snk-pesquisa");t.argument=r,t.searchLoader=e=>this.pesquisaFetcher.loadAdvancedSearch(s,e,u),t.onSelectItem=t=>{e(t),this.closePopUp()},this.showPopUp(t)})):this.pesquisaFetcher.loadSearchOptions(s,r,u)}}componentWillLoad(){u.setContextValue("__EZUI__UPLOAD__ADD__URL__",`${H.getUrlBase()}/mge/ez.uploading`),u.setContextValue("__EZUI__SEARCH__OPTION__LOADER__",((e,t,n)=>this.executeSearch(e,t,n)))}componentDidLoad(){this.applicationLoading.emit(!0),window.requestAnimationFrame((()=>{this.applicationLoaded.emit(!0)}))}render(){return n("div",null,n("ez-popup",{opened:!1,ref:e=>this._popUp=e,onEzClosePopup:()=>this.closePopUp()}))}};ie.style=".sc-snk-application-h{display:flex;flex-direction:column;height:100%}";export{ie as snk_application}
63
+ }`)}loadSearchOptions(e,t,n){return new Promise(((i,r)=>{z.get().callGraphQL({values:{argument:t,entityName:e,criteria:n},query:this.templateByQuery.get("search")}).then((e=>{i(e)})).catch((e=>{r(e)}))}))}loadAdvancedSearch(e,t,n){const i={query:{$:null==n?void 0:n.expression}};(null==n?void 0:n.params.length)>0&&(i.params={param:n.params.map((e=>({$:e.value,type:ne(e.dataType)})))});const r={serviceName:"PesquisaSP.getSuggestion",requestBody:{criteria:{entityName:e,compacted:!1,ignoreEntityCriteria:!1,limit:"5",query:{$:t},orderByDesc:!1,options:{showInactives:!1},externalCriteria:i},clientEventList:{clientEvent:[]}}};return new Promise(((e,t)=>{z.get().callServiceBroker("PesquisaSP.getSuggestion",JSON.stringify(r)).then((t=>e(t))).catch((e=>t(e)))}))}}function ne(e){switch(e){case a.NUMBER:return"I";case a.DATE:return"D";default:return"S"}}const ie=class{constructor(n){e(this,n),this.applicationLoaded=t(this,"applicationLoaded",7),this.applicationLoading=t(this,"applicationLoading",7)}get parameters(){return this._parameters||(this._parameters=new Z),this._parameters}get resourceID(){return this._resourceID||(this._resourceID=this.urlParams.get("workspaceResourceID")||this.urlParams.get("resourceID")||Y.resourceID||"unknown.resource.id"),this._resourceID}async getStringParam(e){return this.parameters.asString(e,this.resourceID)}async getIntParam(e){return this.parameters.asInteger(e,this.resourceID)}async getFloatParam(e){return this.parameters.asFloat(e,this.resourceID)}async getBooleanParam(e){return this.parameters.asBoolean(e,this.resourceID)}async getDateParam(e){return this.parameters.asDate(e,this.resourceID)}async showPopUp(e){this._popUp.appendChild(e),this._popUp.opened=!0}async closePopUp(){Array.from(this._popUp.children).forEach((e=>{this._popUp.removeChild(e)})),this._popUp.opened=!1}async temOpcional(e){const t=e.split(",");return new Promise(((e,n)=>{this.getAttributeFromHTMLWrapper("opc0009").then((i=>{"1"===i?e(!0):Promise.all(t.map((e=>this.getAttributeFromHTMLWrapper("opc"+e)))).then((t=>{e(t.includes("1"))})).catch((e=>{n(e)}))})).catch((e=>{n(e)}))}))}async getAttributeFromHTMLWrapper(e){return Promise.resolve(window[e])}async openApp(e,t){Y.openAppActivity(e,t)}async createDataunit(e){return new Promise((t=>{const n=this.dataUnitFetcher.getDataUnit(e,this.resourceID);n.loadMetadata(),t(n)}))}async getResourceID(){return Promise.resolve(this.resourceID)}async alert(e,t,n,i){return c.alert(e,t,n,i)}async error(e,t,n,i){return c.error(e,t,n,i)}async confirm(e,t,n,i,r){return c.confirm(e,t,n,i,r)}async info(e,t){return c.info(e,t)}async loadFormConfig(e){return this.formConfigFetcher.loadFormConfig(e,this.resourceID)}get urlParams(){return this._urlParams||(this._urlParams=H.getQueryParams(location.search)),this._urlParams}get dataUnitFetcher(){return this._dataUnitFetcher||(this._dataUnitFetcher=new K),this._dataUnitFetcher}get formConfigFetcher(){return this._formConfigFetcher||(this._formConfigFetcher=new ee),this._formConfigFetcher}get pesquisaFetcher(){return this._pesquisaFetcher||(this._pesquisaFetcher=new te),this._pesquisaFetcher}executeSearch(e,t,n){const i=n.getField(t);if(i){const{mode:t,argument:r}=e,{ENTITYNAME:s}=i.properties,o=i.dependencies;let u;return null==o||o.forEach((e=>{var t;e.type===h.SEARCHING&&(null===(t=e.masterFields)||void 0===t?void 0:t.length)>0&&(u={expression:e.expression,params:e.masterFields.map((e=>{const t=n.getField(e),i=(null==t?void 0:t.dataType)||a.TEXT;return{name:e,value:n.getFieldValue(e),dataType:i}}))})})),"ADVANCED"===t?new Promise((e=>{const t=document.createElement("snk-pesquisa");t.argument=r,t.searchLoader=e=>this.pesquisaFetcher.loadAdvancedSearch(s,e,u),t.onSelectItem=t=>{e(t),this.closePopUp()},this.showPopUp(t)})):this.pesquisaFetcher.loadSearchOptions(s,r,u)}}componentWillLoad(){u.setContextValue("__EZUI__UPLOAD__ADD__URL__",`${H.getUrlBase()}/mge/ez.uploading`),u.setContextValue("__EZUI__SEARCH__OPTION__LOADER__",((e,t,n)=>this.executeSearch(e,t,n)))}componentDidLoad(){this.applicationLoading.emit(!0),window.requestAnimationFrame((()=>{this.applicationLoaded.emit(!0)}))}render(){return n("div",null,n("ez-popup",{opened:!1,ref:e=>this._popUp=e,onEzClosePopup:()=>this.closePopUp()}))}};ie.style=".sc-snk-application-h{display:flex;flex-direction:column;height:100%}";export{ie as snk_application}
@@ -1 +1 @@
1
- import{p as e,b as a}from"./p-ee5a384b.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>a([["p-91ca1a98",[[1,"snk-pesquisa",{searchLoader:[16],onSelectItem:[16],argument:[1025]}]]],["p-89e9bc08",[[2,"snk-application",{getStringParam:[64],getIntParam:[64],getFloatParam:[64],getBooleanParam:[64],getDateParam:[64],showPopUp:[64],closePopUp:[64],temOpcional:[64],getAttributeFromHTMLWrapper:[64],openApp:[64],createDataunit:[64],getResourceID:[64],alert:[64],error:[64],confirm:[64],info:[64],loadFormConfig:[64]}]]],["p-e6ba985e",[[1,"teste-pesquisa"]]]],e)));
1
+ import{p as e,b as a}from"./p-ee5a384b.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>a([["p-91ca1a98",[[1,"snk-pesquisa",{searchLoader:[16],onSelectItem:[16],argument:[1025]}]]],["p-9c2b5779",[[2,"snk-application",{getStringParam:[64],getIntParam:[64],getFloatParam:[64],getBooleanParam:[64],getDateParam:[64],showPopUp:[64],closePopUp:[64],temOpcional:[64],getAttributeFromHTMLWrapper:[64],openApp:[64],createDataunit:[64],getResourceID:[64],alert:[64],error:[64],confirm:[64],info:[64],loadFormConfig:[64]}]]],["p-e6ba985e",[[1,"teste-pesquisa"]]]],e)));
@@ -2,6 +2,7 @@ import { EventEmitter } from "../../stencil-public-runtime";
2
2
  import { DataUnit } from "@sankhyalabs/core";
3
3
  import DataUnitFetcher from "../../lib/http/data-fetcher/fetchers/dataunit-fetcher";
4
4
  import ParametersFetcher from "../../lib/http/data-fetcher/fetchers/parameters-fecher";
5
+ import { MessageOptions } from "@sankhyalabs/ezui/dist/collection/utils";
5
6
  import { FormConfigFetcher } from "../../lib/http/data-fetcher/fetchers/form-config-fetcher";
6
7
  import { FieldConfig } from "@sankhyalabs/ezui/dist/types/components/ez-form/ez-form";
7
8
  import { PesquisaFetcher } from "../../lib/http/data-fetcher/fetchers/pesquisa-fetcher";
@@ -28,10 +29,10 @@ export declare class SnkApplication {
28
29
  openApp(resourceId: string, pkObject: Object): Promise<void>;
29
30
  createDataunit(entityName: string): Promise<DataUnit>;
30
31
  getResourceID(): Promise<string>;
31
- alert(title: string, message: string, icon?: string): Promise<boolean>;
32
- error(title: string, message: string, icon?: string): Promise<boolean>;
33
- confirm(title: string, message: string, icon?: string, critical?: boolean): Promise<boolean>;
34
- info(message: string, options?: any): Promise<void>;
32
+ alert(title: string, message: string, icon?: string, options?: MessageOptions): Promise<boolean>;
33
+ error(title: string, message: string, icon?: string, options?: MessageOptions): Promise<boolean>;
34
+ confirm(title: string, message: string, icon?: string, critical?: boolean, options?: MessageOptions): Promise<boolean>;
35
+ info(message: string, options?: MessageOptions): Promise<void>;
35
36
  loadFormConfig(name: string): Promise<Array<FieldConfig>>;
36
37
  private get urlParams();
37
38
  private get dataUnitFetcher();
@@ -6,14 +6,15 @@
6
6
  */
7
7
  import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
8
  import { DataUnit } from "@sankhyalabs/core";
9
+ import { MessageOptions } from "@sankhyalabs/ezui/dist/collection/utils";
9
10
  import { FieldConfig } from "@sankhyalabs/ezui/dist/types/components/ez-form/ez-form";
10
11
  export namespace Components {
11
12
  interface SnkApplication {
12
- "alert": (title: string, message: string, icon?: string) => Promise<boolean>;
13
+ "alert": (title: string, message: string, icon?: string, options?: MessageOptions) => Promise<boolean>;
13
14
  "closePopUp": () => Promise<void>;
14
- "confirm": (title: string, message: string, icon?: string, critical?: boolean) => Promise<boolean>;
15
+ "confirm": (title: string, message: string, icon?: string, critical?: boolean, options?: MessageOptions) => Promise<boolean>;
15
16
  "createDataunit": (entityName: string) => Promise<DataUnit>;
16
- "error": (title: string, message: string, icon?: string) => Promise<boolean>;
17
+ "error": (title: string, message: string, icon?: string, options?: MessageOptions) => Promise<boolean>;
17
18
  "getAttributeFromHTMLWrapper": (attribName: string) => Promise<string>;
18
19
  "getBooleanParam": (name: string) => Promise<boolean>;
19
20
  "getDateParam": (name: string) => Promise<Date>;
@@ -21,7 +22,7 @@ export namespace Components {
21
22
  "getIntParam": (name: string) => Promise<number>;
22
23
  "getResourceID": () => Promise<string>;
23
24
  "getStringParam": (name: string) => Promise<string>;
24
- "info": (message: string, options?: any) => Promise<void>;
25
+ "info": (message: string, options?: MessageOptions) => Promise<void>;
25
26
  "loadFormConfig": (name: string) => Promise<Array<FieldConfig>>;
26
27
  "openApp": (resourceId: string, pkObject: Object) => Promise<void>;
27
28
  "showPopUp": (content: HTMLElement) => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/sankhyablocks",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",