@sankhyalabs/sankhyablocks 2.4.2 → 2.4.3

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/README.md CHANGED
@@ -73,3 +73,4 @@ The first step for all three of these strategies is to [publish to NPM](https://
73
73
  - Run `npm install my-component --save`
74
74
  - Add an import to the npm packages `import my-component;`
75
75
  - Then you can use the element anywhere in your template, JSX, html etc
76
+
@@ -872,7 +872,7 @@ export class SnkApplication {
872
872
  },
873
873
  "showPopUp": {
874
874
  "complexType": {
875
- "signature": "(content: HTMLElement, size?: string, useHeader?: boolean) => Promise<void>",
875
+ "signature": "(content: HTMLElement, size?: \"auto\" | \"full\", useHeader?: boolean) => Promise<void>",
876
876
  "parameters": [{
877
877
  "tags": [],
878
878
  "text": ""
@@ -3,4 +3,3 @@
3
3
  flex-direction: column;
4
4
  height: 100%;
5
5
  }
6
-
@@ -87,7 +87,7 @@ export declare class SnkApplication {
87
87
  /**
88
88
  * Exibe o conteúdo passado em um Popup.
89
89
  */
90
- showPopUp(content: HTMLElement, size?: string, useHeader?: boolean): Promise<void>;
90
+ showPopUp(content: HTMLElement, size?: "auto" | "full", useHeader?: boolean): Promise<void>;
91
91
  /**
92
92
  * Exibe o conteúdo passado em um Modal.
93
93
  */
@@ -192,7 +192,7 @@ export namespace Components {
192
192
  /**
193
193
  * Exibe o conteúdo passado em um Popup.
194
194
  */
195
- "showPopUp": (content: HTMLElement, size?: string, useHeader?: boolean) => Promise<void>;
195
+ "showPopUp": (content: HTMLElement, size?: "auto" | "full", useHeader?: boolean) => Promise<void>;
196
196
  /**
197
197
  * Exibe o diálogo de sucesso de acordo com os parâmetros passados.
198
198
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/sankhyablocks",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",