@sankhyalabs/sankhyablocks 1.0.5 → 1.0.6

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.
@@ -7,7 +7,7 @@ export default class SankhyaAppProvider extends ApplicationUtils {
7
7
  private static _parameters;
8
8
  static get parameters(): AppParameterProvider;
9
9
  static getResourceID(defaultValue?: string): string;
10
- static temOpcional(opcional: string): boolean;
10
+ static temOpcional(opcional: string, abs?: boolean): boolean;
11
11
  static getAttributeFromHTMLWrapper(attribName: string): string;
12
12
  static openApp(resourceId: string, pkObject: Map<string, any>): void;
13
13
  static getDataunit(entityName: string, useCache?: boolean): DataUnit;
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@sankhyalabs/sankhyablocks",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Projeto para integração do design system ez-ui com as regras de negocio/framework do ERP Sankhya",
5
- "main": "build/index.js",
6
- "types": "build/types/index.d.ts",
5
+ "main": "dist/index.js",
6
+ "types": "dist/types/index.d.ts",
7
7
  "scripts": {
8
8
  "start": "webpack serve --config webpack.config.demo.js",
9
9
  "build": "webpack && tsc",
10
+ "dev": "set isDev=true&& tsc && webpack",
10
11
  "build:demo": "webpack --config webpack.config.demo.js",
11
12
  "test": "jest --silent",
12
13
  "coverage": "npm run test -- --coverage",
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "noImplicitAny": true,
4
- "outDir": "build/types",
4
+ "outDir": "dist/types",
5
5
  "module": "esnext",
6
6
  "target": "es5",
7
7
  "allowJs": true,