@bluepic/embed 0.4.0-next.181 → 0.4.0-next.183
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/dist/bluepic-embed.iife.js +119 -119
- package/dist/bluepic-embed.umd.js +119 -119
- package/dist/main.cjs +69 -69
- package/dist/main.mjs +9771 -9699
- package/dist/style.css +1 -1
- package/dist/util/cloneDeep.d.ts +5 -5
- package/package.json +2 -2
package/dist/util/cloneDeep.d.ts
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Uses the native `structuredClone`, which handles plain objects, arrays,
|
|
5
5
|
* Dates, Maps, Sets, typed arrays and circular references. Vue reactive
|
|
6
|
-
* proxies are unwrapped
|
|
7
|
-
* non-reactive copy
|
|
6
|
+
* proxies are unwrapped first — at every depth, see `toRawDeep` — so the
|
|
7
|
+
* clone is a plain, non-reactive copy.
|
|
8
8
|
*
|
|
9
|
-
* Note: `structuredClone` throws on non-cloneable values
|
|
10
|
-
*
|
|
11
|
-
*
|
|
9
|
+
* Note: `structuredClone` still throws on genuinely non-cloneable values
|
|
10
|
+
* (functions, DOM nodes). All call sites clone JSON-like data models, so this
|
|
11
|
+
* is safe here.
|
|
12
12
|
*/
|
|
13
13
|
export declare function cloneDeep<T>(value: T): T;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluepic/embed",
|
|
3
|
-
"version": "0.4.0-next.
|
|
3
|
+
"version": "0.4.0-next.183",
|
|
4
4
|
"description": "Bluepic embed sdk",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@auth0/auth0-vue": "^2.4.0",
|
|
48
|
-
"@bluepic/types": "^0.8.
|
|
48
|
+
"@bluepic/types": "^0.8.66",
|
|
49
49
|
"@hono/zod-openapi": "^1.1.4",
|
|
50
50
|
"@types/css": "^0.0.38",
|
|
51
51
|
"@types/downloadjs": "^1.4.6",
|