@aiquants/drag-drop-panels 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/dist/index.es.js +2 -2
  2. package/package.json +69 -70
package/dist/index.es.js CHANGED
@@ -5,7 +5,7 @@ var fe;
5
5
  function We() {
6
6
  if (fe) return oe;
7
7
  fe = 1;
8
- var t = Symbol.for("react.transitional.element"), o = Symbol.for("react.fragment");
8
+ var t = /* @__PURE__ */ Symbol.for("react.transitional.element"), o = /* @__PURE__ */ Symbol.for("react.fragment");
9
9
  function n(l, r, u) {
10
10
  var d = null;
11
11
  if (u !== void 0 && (d = "" + u), r.key !== void 0 && (d = "" + r.key), "key" in r) {
@@ -220,7 +220,7 @@ React keys must be passed directly to JSX without using spread:
220
220
  function T(a) {
221
221
  return typeof a == "object" && a !== null && a.$$typeof === y;
222
222
  }
223
- var s = be, y = Symbol.for("react.transitional.element"), D = Symbol.for("react.portal"), m = Symbol.for("react.fragment"), O = Symbol.for("react.strict_mode"), F = Symbol.for("react.profiler"), U = Symbol.for("react.consumer"), B = Symbol.for("react.context"), k = Symbol.for("react.forward_ref"), I = Symbol.for("react.suspense"), X = Symbol.for("react.suspense_list"), Q = Symbol.for("react.memo"), h = Symbol.for("react.lazy"), f = Symbol.for("react.activity"), v = Symbol.for("react.client.reference"), N = s.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, j = Object.prototype.hasOwnProperty, i = Array.isArray, g = console.createTask ? console.createTask : function() {
223
+ var s = be, y = /* @__PURE__ */ Symbol.for("react.transitional.element"), D = /* @__PURE__ */ Symbol.for("react.portal"), m = /* @__PURE__ */ Symbol.for("react.fragment"), O = /* @__PURE__ */ Symbol.for("react.strict_mode"), F = /* @__PURE__ */ Symbol.for("react.profiler"), U = /* @__PURE__ */ Symbol.for("react.consumer"), B = /* @__PURE__ */ Symbol.for("react.context"), k = /* @__PURE__ */ Symbol.for("react.forward_ref"), I = /* @__PURE__ */ Symbol.for("react.suspense"), X = /* @__PURE__ */ Symbol.for("react.suspense_list"), Q = /* @__PURE__ */ Symbol.for("react.memo"), h = /* @__PURE__ */ Symbol.for("react.lazy"), f = /* @__PURE__ */ Symbol.for("react.activity"), v = /* @__PURE__ */ Symbol.for("react.client.reference"), N = s.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, j = Object.prototype.hasOwnProperty, i = Array.isArray, g = console.createTask ? console.createTask : function() {
224
224
  return null;
225
225
  };
226
226
  s = {
package/package.json CHANGED
@@ -1,72 +1,71 @@
1
1
  {
2
- "name": "@aiquants/drag-drop-panels",
3
- "version": "0.3.0",
4
- "description": "Reusable drag-and-drop panel layout components and utilities",
5
- "keywords": [
6
- "react",
7
- "drag-drop",
8
- "panels",
9
- "layout",
10
- "component",
11
- "ui"
12
- ],
13
- "author": {
14
- "name": "fehde-k",
15
- "url": "https://x.com/fehdek"
2
+ "name": "@aiquants/drag-drop-panels",
3
+ "version": "0.3.1",
4
+ "description": "Reusable drag-and-drop panel layout components and utilities",
5
+ "keywords": [
6
+ "react",
7
+ "drag-drop",
8
+ "panels",
9
+ "layout",
10
+ "component",
11
+ "ui"
12
+ ],
13
+ "author": {
14
+ "name": "fehde-k",
15
+ "url": "https://x.com/fehdek"
16
+ },
17
+ "license": "MIT",
18
+ "main": "dist/index.umd.js",
19
+ "module": "dist/index.es.js",
20
+ "types": "dist/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.es.js",
25
+ "require": "./dist/index.umd.js"
16
26
  },
17
- "license": "MIT",
18
- "main": "dist/index.umd.js",
19
- "module": "dist/index.es.js",
20
- "types": "dist/index.d.ts",
21
- "exports": {
22
- ".": {
23
- "types": "./dist/index.d.ts",
24
- "import": "./dist/index.es.js",
25
- "require": "./dist/index.umd.js"
26
- },
27
- "./css": "./dist/drag-drop-panels.css"
28
- },
29
- "files": [
30
- "dist",
31
- "README.md"
32
- ],
33
- "scripts": {
34
- "build": "vite build",
35
- "dev": "vite build --watch",
36
- "watch": "vite build --watch",
37
- "typecheck": "tsc --noEmit",
38
- "license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
39
- "license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
40
- "clean": "rimraf dist",
41
- "prepublishOnly": "npm run clean && npm run typecheck && npm run test --if-present && npm run build",
42
- "publish:patch": "npm version patch && npm publish",
43
- "publish:minor": "npm version minor && npm publish",
44
- "publish:major": "npm version major && npm publish"
45
- },
46
- "engines": {
47
- "node": ">=18.0.0",
48
- "npm": ">=8.0.0"
49
- },
50
- "peerDependencies": {
51
- "react": "^19.1.0",
52
- "react-dom": "^19.1.0"
53
- },
54
- "dependencies": {
55
- "lucide-react": "^0.561.0"
56
- },
57
- "devDependencies": {
58
- "@types/react": "^19.2.7",
59
- "@types/react-dom": "^19.2.3",
60
- "@vitejs/plugin-react": "^4.7.0",
61
- "react": "^19.2.3",
62
- "react-dom": "^19.2.3",
63
- "rimraf": "^6.1.2",
64
- "typescript": "^5.9.3",
65
- "vite": "^7.2.7",
66
- "vite-plugin-dts": "^3.9.1",
67
- "vite-tsconfig-paths": "^5.1.4"
68
- },
69
- "publishConfig": {
70
- "access": "public"
71
- }
72
- }
27
+ "./css": "./dist/drag-drop-panels.css"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "README.md"
32
+ ],
33
+ "engines": {
34
+ "node": ">=18.0.0",
35
+ "npm": ">=8.0.0"
36
+ },
37
+ "peerDependencies": {
38
+ "react": "^19.1.0",
39
+ "react-dom": "^19.1.0"
40
+ },
41
+ "dependencies": {
42
+ "lucide-react": "^0.561.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/react": "^19.2.7",
46
+ "@types/react-dom": "^19.2.3",
47
+ "@vitejs/plugin-react": "^4.7.0",
48
+ "react": "^19.2.3",
49
+ "react-dom": "^19.2.3",
50
+ "rimraf": "^6.1.2",
51
+ "typescript": "^5.9.3",
52
+ "vite": "^7.2.7",
53
+ "vite-plugin-dts": "^3.9.1",
54
+ "vite-tsconfig-paths": "^5.1.4"
55
+ },
56
+ "publishConfig": {
57
+ "access": "public"
58
+ },
59
+ "scripts": {
60
+ "build": "vite build",
61
+ "dev": "vite build --watch",
62
+ "watch": "vite build --watch",
63
+ "typecheck": "tsc --noEmit",
64
+ "license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
65
+ "license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
66
+ "clean": "rimraf dist",
67
+ "publish:patch": "npm version patch && pnpm publish --no-git-checks",
68
+ "publish:minor": "npm version minor && pnpm publish --no-git-checks",
69
+ "publish:major": "npm version major && pnpm publish --no-git-checks"
70
+ }
71
+ }