@tresjs/cientos 2.1.1 → 2.1.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@tresjs/cientos",
3
3
  "description": "Collection of useful helpers and fully functional, ready-made abstractions for Tres",
4
- "version": "2.1.1",
4
+ "version": "2.1.2",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@8.4.0",
7
7
  "author": "Alvaro Saburido <hola@alvarosaburido.dev> (https://github.com/alvarosabu/)",
@@ -53,14 +53,14 @@
53
53
  "@alvarosabu/prettier-config": "^1.3.0",
54
54
  "@release-it/conventional-changelog": "^5.1.1",
55
55
  "@tweakpane/plugin-essentials": "^0.1.8",
56
- "@types/node": "^20.2.3",
57
- "@types/three": "^0.152.0",
56
+ "@types/node": "^20.2.4",
57
+ "@types/three": "^0.152.1",
58
58
  "@typescript-eslint/eslint-plugin": "^5.59.7",
59
59
  "@typescript-eslint/parser": "^5.59.7",
60
60
  "@vitejs/plugin-vue": "^4.2.3",
61
61
  "eslint": "^8.41.0",
62
62
  "eslint-config-prettier": "^8.8.0",
63
- "eslint-plugin-vue": "^9.14.0",
63
+ "eslint-plugin-vue": "^9.14.1",
64
64
  "gsap": "^3.11.5",
65
65
  "kolorist": "^1.8.0",
66
66
  "pathe": "^1.1.0",
@@ -70,18 +70,18 @@
70
70
  "rollup-plugin-visualizer": "^5.9.0",
71
71
  "tweakpane": "^3.1.9",
72
72
  "typescript": "^5.0.4",
73
- "unocss": "^0.52.1",
74
- "vite": "^4.3.8",
73
+ "unocss": "^0.52.3",
74
+ "vite": "^4.3.9",
75
75
  "vite-plugin-banner": "^0.7.0",
76
76
  "vite-plugin-dts": "2.3.0",
77
77
  "vite-svg-loader": "^4.0.0",
78
78
  "vitepress": "1.0.0-beta.1"
79
79
  },
80
80
  "dependencies": {
81
- "@tresjs/core": "2.1.1",
81
+ "@tresjs/core": "2.1.2",
82
82
  "@vueuse/core": "^10.1.2",
83
83
  "three": "^0.152.2",
84
- "three-stdlib": "^2.21.12",
84
+ "three-stdlib": "^2.22.4",
85
85
  "vue": "^3.3.4"
86
86
  }
87
87
  }
@@ -1,20 +0,0 @@
1
- /**
2
- * Update the function signature to explicitly specify the type of the props parameter
3
- *
4
- * @export
5
- * @template T
6
- * @template K
7
- * @param {T} obj
8
- * @param {K[]} props
9
- * @return {*} {Pick<T, K>}
10
- */
11
- export declare function pick<T extends object, K extends keyof T>(obj: T, props: K[]): Pick<T, K>;
12
- /**
13
- * Check if the object has a setter for the given property
14
- *
15
- * @export
16
- * @param {*} obj
17
- * @param {string} prop
18
- * @return {*} {boolean}
19
- */
20
- export declare function hasSetter(obj: any, prop: string): boolean;