@sisense/sdk-ui-preact 1.33.0 → 1.34.0

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/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "Sisense",
12
12
  "Compose SDK"
13
13
  ],
14
- "version": "1.33.0",
14
+ "version": "1.34.0",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -40,7 +40,7 @@
40
40
  "author": "Sisense",
41
41
  "license": "SEE LICENSE IN LICENSE.md",
42
42
  "dependencies": {
43
- "@sisense/sdk-ui": "^1.33.0",
43
+ "@sisense/sdk-ui": "^1.34.0",
44
44
  "preact": "^10.13.2"
45
45
  },
46
46
  "scripts": {
@@ -48,20 +48,20 @@
48
48
  "build": "tsc --noEmit && vite build --mode development",
49
49
  "build:prod": "tsc --noEmit && vite build",
50
50
  "clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
51
- "lint": "eslint . --fix"
51
+ "lint": "eslint . --quiet",
52
+ "lint:fix": "run lint --fix"
52
53
  },
53
54
  "files": [
54
55
  "dist/**/*"
55
56
  ],
56
57
  "devDependencies": {
57
58
  "@preact/preset-vite": "2.5.0",
58
- "@sisense/sdk-data": "^1.33.0",
59
+ "@sisense/sdk-data": "^1.34.0",
59
60
  "@types/node": "^18.16.0",
60
61
  "eslint": "^8.40.0",
61
62
  "prettier": "2.8.4",
62
- "rxjs": "^7.8.1",
63
63
  "typescript": "4.8.4",
64
- "vite": "4.1.4",
64
+ "vite": "4.5.2",
65
65
  "vite-plugin-dts": "^2.3.0"
66
66
  },
67
67
  "volta": {
@@ -1,5 +0,0 @@
1
- import { type Observable } from 'rxjs';
2
- /** @internal */
3
- export declare function isPromise<T>(object: any): object is Promise<T>;
4
- /** @internal */
5
- export declare function isObservable<T>(object: any): object is Observable<T>;