@ioca/react 1.4.75 → 1.4.76

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,6 @@ interface IPopup {
7
7
  trigger?: "hover" | "click" | "focus" | "none" | "contextmenu";
8
8
  gap?: number;
9
9
  offset?: number;
10
- fixed?: boolean;
11
10
  position?: TPosition;
12
11
  arrow?: boolean;
13
12
  align?: "start" | "center" | "end";
@@ -15,13 +14,10 @@ interface IPopup {
15
14
  hideDelay?: number;
16
15
  touchable?: boolean;
17
16
  fitSize?: boolean;
18
- watchResize?: boolean;
19
- clickOutside?: boolean;
20
17
  disabled?: boolean;
21
18
  style?: CSSProperties;
22
19
  children?: ReactNode;
23
20
  className?: string;
24
- getContainer?: (trigger?: HTMLElement) => HTMLElement;
25
21
  onVisibleChange?: (visible: boolean) => void;
26
22
  }
27
23
 
package/package.json CHANGED
@@ -1,100 +1,101 @@
1
1
  {
2
- "name": "@ioca/react",
3
- "version": "1.4.75",
4
- "type": "module",
5
- "scripts": {
6
- "dev": "vite",
7
- "build": "tsc && vite build",
8
- "preview": "vite preview",
9
- "make": "node templates/index.js",
10
- "lib": "rimraf lib && npx rollup -c"
11
- },
12
- "dependencies": {
13
- "@rc-component/color-picker": "^2.0.1",
14
- "@ricons/material": "^0.12.0",
15
- "classnames": "^2.5.1",
16
- "dayjs": "^1.11.13",
17
- "highlight-words-core": "^1.2.3",
18
- "pubsub-js": "^1.9.5",
19
- "radash": "^12.1.0",
20
- "react": "^19.0.0",
21
- "react-dom": "^19.0.0",
22
- "react-easy-sort": "^1.6.0",
23
- "react-router": "^7.1.1",
24
- "xss": "^1.0.15"
25
- },
26
- "devDependencies": {
27
- "@rollup/plugin-commonjs": "^28.0.3",
28
- "@rollup/plugin-node-resolve": "^15.3.0",
29
- "@rollup/plugin-terser": "^0.4.4",
30
- "@rollup/plugin-typescript": "^12.1.1",
31
- "@types/mockjs": "^1.0.10",
32
- "@types/node": "^22.10.1",
33
- "@types/pubsub-js": "^1.8.5",
34
- "@types/react": "^19.0.4",
35
- "@vitejs/plugin-react": "^6.0.1",
36
- "chalk": "^5.4.1",
37
- "fs": "^0.0.1-security",
38
- "mockjs": "^1.1.0",
39
- "path": "^0.12.7",
40
- "react-syntax-highlighter": "^15.6.1",
41
- "rimraf": "^6.0.1",
42
- "rollup": "^4.59.0",
43
- "rollup-plugin-dts": "^6.1.1",
44
- "rollup-plugin-peer-deps-external": "^2.2.4",
45
- "rollup-plugin-scss": "^4.0.0",
46
- "sass": "^1.86.0",
47
- "typescript": "^5.7.2",
48
- "vite": "^8.0.0",
49
- "vite-plugin-dynamic-import": "^1.6.0"
50
- },
51
- "peerDependencies": {
52
- "react": ">=16.8.0",
53
- "react-dom": ">=16.8.0"
54
- },
55
- "main": "lib/cjs/index.js",
56
- "module": "lib/es/index.js",
57
- "types": "lib/types/index.d.ts",
58
- "exports": {
59
- ".": {
60
- "types": "./lib/types/index.d.ts",
61
- "import": "./lib/es/index.js",
62
- "require": "./lib/cjs/index.js"
63
- },
64
- "./index.css": "./lib/css/index.css",
65
- "./*": {
66
- "types": "./lib/types/*.d.ts",
67
- "import": "./lib/es/*.js",
68
- "require": "./lib/cjs/*.js"
69
- }
70
- },
71
- "files": [
72
- "lib"
73
- ],
74
- "publishConfig": {
75
- "access": "public"
76
- },
77
- "license": "MIT",
78
- "description": "ioca react ui components",
79
- "directories": {
80
- "doc": "docs"
81
- },
82
- "repository": {
83
- "type": "git",
84
- "url": "git+https://github.com/MunGaaKei/ioca-react.git"
85
- },
86
- "keywords": [
87
- "ioca",
88
- "react ui",
89
- "components"
90
- ],
91
- "author": "iannman",
92
- "bugs": {
93
- "url": "https://github.com/MunGaaKei/ioca-react/issues"
94
- },
95
- "homepage": "https://github.com/MunGaaKei/ioca-react#readme",
96
- "sideEffects": [
97
- "*.css",
98
- "*.scss"
99
- ]
100
- }
2
+ "name": "@ioca/react",
3
+ "version": "1.4.76",
4
+ "type": "module",
5
+ "scripts": {
6
+ "dev": "vite",
7
+ "build": "tsc && vite build",
8
+ "preview": "vite preview",
9
+ "make": "node templates/index.js",
10
+ "lib": "rimraf lib && npx rollup -c"
11
+ },
12
+ "dependencies": {
13
+ "@rc-component/color-picker": "^2.0.1",
14
+ "@ricons/material": "^0.12.0",
15
+ "classnames": "^2.5.1",
16
+ "dayjs": "^1.11.13",
17
+ "highlight-words-core": "^1.2.3",
18
+ "pubsub-js": "^1.9.5",
19
+ "radash": "^12.1.0",
20
+ "react": "^19.0.0",
21
+ "react-dom": "^19.0.0",
22
+ "react-easy-sort": "^1.6.0",
23
+ "react-router": "^7.1.1",
24
+ "xss": "^1.0.15"
25
+ },
26
+ "devDependencies": {
27
+ "@rollup/plugin-commonjs": "^28.0.3",
28
+ "@rollup/plugin-node-resolve": "^15.3.0",
29
+ "@rollup/plugin-terser": "^0.4.4",
30
+ "@rollup/plugin-typescript": "^12.1.1",
31
+ "@types/mockjs": "^1.0.10",
32
+ "@types/node": "^22.10.1",
33
+ "@types/pubsub-js": "^1.8.5",
34
+ "@types/react": "^19.0.4",
35
+ "@vitejs/plugin-react": "^6.0.1",
36
+ "chalk": "^5.4.1",
37
+ "fs": "^0.0.1-security",
38
+ "mockjs": "^1.1.0",
39
+ "path": "^0.12.7",
40
+ "react-syntax-highlighter": "^15.6.1",
41
+ "rimraf": "^6.0.1",
42
+ "rollup": "^4.59.0",
43
+ "rollup-plugin-dts": "^6.1.1",
44
+ "rollup-plugin-peer-deps-external": "^2.2.4",
45
+ "rollup-plugin-scss": "^4.0.0",
46
+ "sass": "^1.86.0",
47
+ "typescript": "^5.7.2",
48
+ "vite": "^8.0.0",
49
+ "vite-plugin-dynamic-import": "^1.6.0"
50
+ },
51
+ "peerDependencies": {
52
+ "react": ">=16.8.0",
53
+ "react-dom": ">=16.8.0"
54
+ },
55
+ "main": "lib/cjs/index.js",
56
+ "module": "lib/es/index.js",
57
+ "types": "lib/types/index.d.ts",
58
+ "exports": {
59
+ ".": {
60
+ "types": "./lib/types/index.d.ts",
61
+ "import": "./lib/es/index.js",
62
+ "require": "./lib/cjs/index.js"
63
+ },
64
+ "./index.css": "./lib/css/index.css",
65
+ "./*": {
66
+ "types": "./lib/types/*.d.ts",
67
+ "import": "./lib/es/*.js",
68
+ "require": "./lib/cjs/*.js"
69
+ }
70
+ },
71
+ "files": [
72
+ "lib"
73
+ ],
74
+ "publishConfig": {
75
+ "access": "public"
76
+ },
77
+ "license": "MIT",
78
+ "description": "ioca react ui components",
79
+ "directories": {
80
+ "doc": "docs"
81
+ },
82
+ "repository": {
83
+ "type": "git",
84
+ "url": "git+https://github.com/MunGaaKei/ioca-react.git"
85
+ },
86
+ "keywords": [
87
+ "ioca",
88
+ "react ui",
89
+ "components"
90
+ ],
91
+ "author": "iannman",
92
+ "bugs": {
93
+ "url": "https://github.com/MunGaaKei/ioca-react/issues"
94
+ },
95
+ "homepage": "https://github.com/MunGaaKei/ioca-react#readme",
96
+ "sideEffects": [
97
+ "*.css",
98
+ "*.scss"
99
+ ],
100
+ "packageManager": "pnpm@10.32.1"
101
+ }