@ws-ui/store 0.0.4 → 0.0.5

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.
@@ -1,6 +1,6 @@
1
1
  declare const _default: import("redux").Reducer<import("./types").IWebformEditorState>;
2
2
  export default _default;
3
3
  export * from './reducer';
4
- export * from './selectors';
4
+ export * from './private';
5
5
  export * from './thunks';
6
6
  export * from './types';
@@ -1,3 +1,3 @@
1
- export declare const FLAGS_KEYS: {
1
+ export declare const WT_FLAGS_KEYS: {
2
2
  SIDEBAR_SECTION_RESIZABLE: string;
3
3
  };
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
- {
2
- "name": "@ws-ui/store",
3
- "private": false,
4
- "version": "0.0.4",
5
- "type": "module",
6
- "main": "./dist/index.cjs.js",
7
- "module": "./dist/index.es.js",
8
- "types": "./dist/index.d.ts",
9
- "files": [
10
- "dist"
11
- ],
12
- "scripts": {
13
- "dev": "vite",
14
- "prepack": "npm run build",
15
- "build": "tsc && vite build",
16
- "postbuild": "yalc push --changed",
17
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
18
- "preview": "vite preview"
19
- },
20
- "dependencies": {
21
- "@reduxjs/toolkit": "^1.7.1",
22
- "react-redux": "^7.2.6"
23
- },
24
- "peerDependencies": {
25
- "@ws-ui/shared": "^0.0.29",
26
- "lodash": "^4.17.21",
27
- "minimatch": "^5.1.0",
28
- "react": "^17.0.2",
29
- "react-dom": "^17.0.2",
30
- "react-flow-renderer": "^10.3.17",
31
- "react-icons": "^4.3.1",
32
- "vscode-debugprotocol": "^1.51.0"
33
- },
34
- "devDependencies": {
35
- "@jest/globals": "^29.7.0",
36
- "@types/jest": "^29.5.5",
37
- "@types/lodash": "^4.14.199",
38
- "@types/minimatch": "^3.0.5",
39
- "@types/node": "^20.6.5",
40
- "@types/react": "^17.0.24",
41
- "@types/react-dom": "^17.0.5",
42
- "@types/react-redux": "^7.1.16",
43
- "@typescript-eslint/eslint-plugin": "^6.0.0",
44
- "@typescript-eslint/parser": "^6.0.0",
45
- "@vitejs/plugin-react": "^4.0.3",
46
- "eslint": "^8.45.0",
47
- "eslint-plugin-react-hooks": "^4.6.0",
48
- "eslint-plugin-react-refresh": "^0.4.3",
49
- "prettier": "3.0.3",
50
- "typescript": "^5.0.2",
51
- "vite": "^4.4.5",
52
- "vite-plugin-dts": "^3.5.4",
53
- "yalc": "^1.0.0-pre.53"
54
- }
55
- }
1
+ {
2
+ "name": "@ws-ui/store",
3
+ "private": false,
4
+ "version": "0.0.5",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs.js",
7
+ "module": "./dist/index.es.js",
8
+ "types": "./dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "dev": "vite",
14
+ "prepack": "npm run build",
15
+ "build": "tsc && vite build",
16
+ "postbuild": "yalc push --changed",
17
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
18
+ "preview": "vite preview"
19
+ },
20
+ "dependencies": {
21
+ "@reduxjs/toolkit": "^1.7.1",
22
+ "react-redux": "^7.2.6"
23
+ },
24
+ "peerDependencies": {
25
+ "@ws-ui/shared": "^0.0.31",
26
+ "lodash": "^4.17.21",
27
+ "minimatch": "^5.1.0",
28
+ "react": "^17.0.2",
29
+ "react-dom": "^17.0.2",
30
+ "react-flow-renderer": "^10.3.17",
31
+ "react-icons": "^4.3.1",
32
+ "vscode-debugprotocol": "^1.51.0"
33
+ },
34
+ "devDependencies": {
35
+ "@jest/globals": "^29.7.0",
36
+ "@types/jest": "^29.5.5",
37
+ "@types/lodash": "^4.14.199",
38
+ "@types/minimatch": "^3.0.5",
39
+ "@types/node": "^20.6.5",
40
+ "@types/react": "^17.0.24",
41
+ "@types/react-dom": "^17.0.5",
42
+ "@types/react-redux": "^7.1.16",
43
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
44
+ "@typescript-eslint/parser": "^6.0.0",
45
+ "@vitejs/plugin-react": "^4.0.3",
46
+ "eslint": "^8.45.0",
47
+ "eslint-plugin-react-hooks": "^4.6.0",
48
+ "eslint-plugin-react-refresh": "^0.4.3",
49
+ "prettier": "3.0.3",
50
+ "typescript": "^5.0.2",
51
+ "vite": "^4.4.5",
52
+ "vite-plugin-dts": "^3.5.4",
53
+ "yalc": "^1.0.0-pre.53"
54
+ }
55
+ }
@@ -1,6 +0,0 @@
1
- export declare const useWebformsFlags: () => {
2
- resizeSidebarSection: any;
3
- flags: {
4
- [key: string]: any;
5
- };
6
- };