@salla.sa/twilight 2.11.127 → 2.12.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salla.sa/twilight",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "Salla Theme Toolkit, Webcomponents, Events, Requests, Utils",
|
|
5
5
|
"main": "dist/cjs",
|
|
6
6
|
"module": "dist/esm",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "npx rollup --config --preserveSymlinks=true",
|
|
10
10
|
"watch": "npx rollup --watch --config --preserveSymlinks=true",
|
|
11
|
-
"test": "jest --detectOpenHandles
|
|
11
|
+
"test": "node tests/server/index.js && jest --detectOpenHandles && exit",
|
|
12
12
|
"express": "node tests/server/index.js"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
],
|
|
34
34
|
"homepage": "https://salla.dev",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@salla.sa/base": "^2.
|
|
36
|
+
"@salla.sa/base": "^2.12.0",
|
|
37
37
|
"axios": "^0.27.2",
|
|
38
38
|
"infinite-scroll": "^4.0.1",
|
|
39
39
|
"jwt-decode": "^3.1.2",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"webpack": "^4 || ^5"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "cea47fe2fdd43aee6cb121930b3d0a080803e521"
|
|
71
71
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import SallaNotify from "./lib/notify";
|
|
|
7
7
|
import SallaLang from "./lib/lang";
|
|
8
8
|
import SallaForm from "./lib/form";
|
|
9
9
|
import {TwilightConfig} from "./tiwlight-config";
|
|
10
|
-
import Config from "
|
|
10
|
+
import Config from "@salla.sa/base/types/config";
|
|
11
11
|
|
|
12
12
|
export default interface Salla extends SallaActions {
|
|
13
13
|
onReady: (callback: (event: Event) => unknown) => void; //relay on it, it will be available even salla object is not loaded yet
|