@adobe/data 0.5.22 → 0.5.25
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/README.md +96 -110
- package/dist/blob/blob-handle.d.ts +53 -2
- package/dist/blob/blob-handle.js +48 -4
- package/dist/blob/blob-handle.js.map +1 -1
- package/dist/blob/blob-meta.d.ts +26 -1
- package/dist/blob/blob-meta.js +14 -1
- package/dist/blob/blob-meta.js.map +1 -1
- package/dist/blob/index.d.ts +0 -2
- package/dist/blob/index.js +21 -2
- package/dist/blob/index.js.map +1 -1
- package/dist/cache/functions/hashing/blob-to-hash.js +7 -5
- package/dist/cache/functions/hashing/blob-to-hash.js.map +1 -1
- package/dist/ecs/database/create-database.js +54 -50
- package/dist/ecs/database/create-database.js.map +1 -1
- package/dist/ecs/database/create-database.test.js +2 -1
- package/dist/ecs/database/create-database.test.js.map +1 -1
- package/dist/ecs/database/database-schema/create-database-schema-test.js +1 -1
- package/dist/ecs/database/database-schema/create-database-schema-test.js.map +1 -1
- package/dist/ecs/database/database-schema/create-database-schema.js +0 -2
- package/dist/ecs/database/database-schema/create-database-schema.js.map +1 -1
- package/dist/ecs/database/transactional-store/apply-operations.js.map +1 -1
- package/dist/ecs/database/transactional-store/coalesce-transactions.js +2 -2
- package/dist/ecs/database/transactional-store/coalesce-transactions.js.map +1 -1
- package/dist/ecs/database/transactional-store/patch-entity-values.js.map +1 -1
- package/dist/ecs/store/core/select-entities.js +2 -2
- package/dist/ecs/store/core/select-entities.js.map +1 -1
- package/dist/ecs/store/create-store-schema-test.d.ts +1 -0
- package/dist/ecs/store/create-store-schema-test.js +33 -0
- package/dist/ecs/store/create-store-schema-test.js.map +1 -0
- package/dist/ecs/store/create-store.d.ts +2 -6
- package/dist/ecs/store/create-store.js.map +1 -1
- package/dist/ecs/store/index.d.ts +0 -1
- package/dist/ecs/store/index.js +0 -1
- package/dist/ecs/store/index.js.map +1 -1
- package/dist/ecs/store/store.d.ts +25 -4
- package/dist/ecs/store/store.js +17 -1
- package/dist/ecs/store/store.js.map +1 -1
- package/dist/functions/merge-patch.js.map +1 -1
- package/dist/functions/merge-patch.test.js +21 -0
- package/dist/functions/merge-patch.test.js.map +1 -1
- package/dist/functions/serialization/index.js +21 -0
- package/dist/functions/serialization/index.js.map +1 -1
- package/dist/functions/serialization/register-blob-codecs.js.map +1 -1
- package/dist/functions/serialization/register-typed-array-codecs.js.map +1 -1
- package/dist/functions/serialization/serialize-to-blobs.js +21 -0
- package/dist/functions/serialization/serialize-to-blobs.js.map +1 -1
- package/dist/functions/serialization/serialize-to-blobs.test.js +21 -0
- package/dist/functions/serialization/serialize-to-blobs.test.js.map +1 -1
- package/dist/functions/serialization/serialize-to-storage.js +21 -0
- package/dist/functions/serialization/serialize-to-storage.js.map +1 -1
- package/dist/functions/serialization/serialize-to-storage.test.js +21 -0
- package/dist/functions/serialization/serialize-to-storage.test.js.map +1 -1
- package/dist/functions/serialization/serialize.js +21 -0
- package/dist/functions/serialization/serialize.js.map +1 -1
- package/dist/internal/array-buffer-like/copy.js +0 -420
- package/dist/internal/array-buffer-like/copy.js.map +1 -1
- package/dist/internal/array-buffer-like/is-array-buffer.js +0 -420
- package/dist/internal/array-buffer-like/is-array-buffer.js.map +1 -1
- package/dist/internal/array-buffer-like/is-shared-array-buffer.js +0 -420
- package/dist/internal/array-buffer-like/is-shared-array-buffer.js.map +1 -1
- package/dist/internal/data-view-32/data-view-32.js +0 -21
- package/dist/internal/data-view-32/data-view-32.js.map +1 -1
- package/dist/lit/hooks/index.d.ts +1 -0
- package/dist/lit/hooks/index.js +1 -0
- package/dist/lit/hooks/index.js.map +1 -1
- package/dist/lit/hooks/use-debounce.d.ts +8 -0
- package/dist/lit/hooks/use-debounce.js +41 -0
- package/dist/lit/hooks/use-debounce.js.map +1 -0
- package/dist/lit/hooks/use-drag-observe.d.ts +6 -5
- package/dist/lit/hooks/use-drag-observe.js +2 -2
- package/dist/lit/hooks/use-drag-observe.js.map +1 -1
- package/dist/lit/hooks/use-drag-transaction.d.ts +1 -1
- package/dist/lit/hooks/use-drag-transaction.js +1 -2
- package/dist/lit/hooks/use-drag-transaction.js.map +1 -1
- package/dist/lit/hooks/use-draggable.d.ts +5 -6
- package/dist/lit/hooks/use-draggable.js +23 -31
- package/dist/lit/hooks/use-draggable.js.map +1 -1
- package/dist/lit/hooks/use-effect.js +1 -1
- package/dist/lit/hooks/use-effect.js.map +1 -1
- package/dist/lit/hooks/use-resize-observer.d.ts +2 -0
- package/dist/lit/hooks/use-resize-observer.js +2 -0
- package/dist/lit/hooks/use-resize-observer.js.map +1 -1
- package/dist/lit/hooks/use-updated.js +21 -0
- package/dist/lit/hooks/use-updated.js.map +1 -1
- package/dist/math/aabb/aabb.js +1 -0
- package/dist/math/aabb/aabb.js.map +1 -1
- package/dist/math/aabb-face/aabb-face.d.ts +14 -19
- package/dist/math/aabb-face/aabb-face.js +31 -19
- package/dist/math/aabb-face/aabb-face.js.map +1 -1
- package/dist/math/f32/f32.js +1 -0
- package/dist/math/f32/f32.js.map +1 -1
- package/dist/math/i32/i32.js +1 -0
- package/dist/math/i32/i32.js.map +1 -1
- package/dist/math/line2/line2.js +1 -0
- package/dist/math/line2/line2.js.map +1 -1
- package/dist/math/line3/line3.js +1 -0
- package/dist/math/line3/line3.js.map +1 -1
- package/dist/math/mat4x4/mat4x4.js +1 -0
- package/dist/math/mat4x4/mat4x4.js.map +1 -1
- package/dist/math/plane/plane.js +1 -0
- package/dist/math/plane/plane.js.map +1 -1
- package/dist/math/quat/quat.js +1 -0
- package/dist/math/quat/quat.js.map +1 -1
- package/dist/math/u32/u32.js +1 -0
- package/dist/math/u32/u32.js.map +1 -1
- package/dist/math/vec2/vec2.js +1 -0
- package/dist/math/vec2/vec2.js.map +1 -1
- package/dist/math/vec3/vec3.d.ts +1 -0
- package/dist/math/vec3/vec3.js +2 -0
- package/dist/math/vec3/vec3.js.map +1 -1
- package/dist/math/vec4/vec4.d.ts +1 -0
- package/dist/math/vec4/vec4.js +7 -0
- package/dist/math/vec4/vec4.js.map +1 -1
- package/dist/observe/to-async-generator.test.js +5 -8
- package/dist/observe/to-async-generator.test.js.map +1 -1
- package/dist/observe/with-default.js +0 -1
- package/dist/observe/with-default.js.map +1 -1
- package/dist/samples/todo/elements/todo-list/todo-list-presentation.d.ts +0 -17
- package/dist/samples/todo/elements/todo-list/todo-list-presentation.js.map +1 -1
- package/dist/samples/todo/elements/todo-list/todo-list.css.d.ts +0 -17
- package/dist/samples/todo/elements/todo-list/todo-list.css.js +21 -17
- package/dist/samples/todo/elements/todo-list/todo-list.css.js.map +1 -1
- package/dist/samples/todo/elements/todo-list/todo-list.js +21 -17
- package/dist/samples/todo/elements/todo-list/todo-list.js.map +1 -1
- package/dist/samples/todo/elements/todo-row/index.d.ts +0 -17
- package/dist/samples/todo/elements/todo-row/index.js +21 -17
- package/dist/samples/todo/elements/todo-row/index.js.map +1 -1
- package/dist/samples/todo/elements/todo-row/todo-row-presentation.js +23 -19
- package/dist/samples/todo/elements/todo-row/todo-row-presentation.js.map +1 -1
- package/dist/samples/todo/elements/todo-row/todo-row.css.js +21 -17
- package/dist/samples/todo/elements/todo-row/todo-row.css.js.map +1 -1
- package/dist/samples/todo/elements/todo-row/todo-row.js +21 -17
- package/dist/samples/todo/elements/todo-row/todo-row.js.map +1 -1
- package/dist/samples/todo/elements/todo-toolbar/index.d.ts +0 -17
- package/dist/samples/todo/elements/todo-toolbar/index.js +21 -17
- package/dist/samples/todo/elements/todo-toolbar/index.js.map +1 -1
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar-presentation.js +21 -17
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar-presentation.js.map +1 -1
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.css.js +21 -17
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.css.js.map +1 -1
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.js +21 -17
- package/dist/samples/todo/elements/todo-toolbar/todo-toolbar.js.map +1 -1
- package/dist/samples/todo/elements/todo-undo-redo/index.d.ts +0 -17
- package/dist/samples/todo/elements/todo-undo-redo/index.js +21 -17
- package/dist/samples/todo/elements/todo-undo-redo/index.js.map +1 -1
- package/dist/samples/todo/elements/todo-undo-redo/todo-undo-redo-presentation.js +21 -17
- package/dist/samples/todo/elements/todo-undo-redo/todo-undo-redo-presentation.js.map +1 -1
- package/dist/samples/todo/elements/todo-undo-redo/todo-undo-redo.css.js +21 -17
- package/dist/samples/todo/elements/todo-undo-redo/todo-undo-redo.css.js.map +1 -1
- package/dist/samples/todo/elements/todo-undo-redo/todo-undo-redo.js +21 -17
- package/dist/samples/todo/elements/todo-undo-redo/todo-undo-redo.js.map +1 -1
- package/dist/samples/todo/services/dependent-state-service/create-dependent-state-service.js +21 -17
- package/dist/samples/todo/services/dependent-state-service/create-dependent-state-service.js.map +1 -1
- package/dist/samples/todo/services/dependent-state-service/dependent-state/all-todos.d.ts +0 -17
- package/dist/samples/todo/services/dependent-state-service/dependent-state/all-todos.js.map +1 -1
- package/dist/samples/todo/services/dependent-state-service/dependent-state/complete-todos.d.ts +0 -17
- package/dist/samples/todo/services/dependent-state-service/dependent-state/complete-todos.js.map +1 -1
- package/dist/samples/todo/services/dependent-state-service/dependent-state/incomplete-todos.d.ts +0 -17
- package/dist/samples/todo/services/dependent-state-service/dependent-state/incomplete-todos.js.map +1 -1
- package/dist/samples/todo/services/dependent-state-service/dependent-state/index.d.ts +0 -17
- package/dist/samples/todo/services/dependent-state-service/dependent-state/index.js +21 -17
- package/dist/samples/todo/services/dependent-state-service/dependent-state/index.js.map +1 -1
- package/dist/samples/todo/services/dependent-state-service/dependent-state-service.d.ts +0 -17
- package/dist/samples/todo/services/main-service/create-main-service.d.ts +0 -17
- package/dist/samples/todo/services/main-service/create-main-service.js.map +1 -1
- package/dist/samples/todo/services/main-service/todo-main-service.d.ts +0 -17
- package/dist/samples/todo/services/state-service/create-todo-database.d.ts +33 -10
- package/dist/samples/todo/services/state-service/create-todo-database.js +21 -17
- package/dist/samples/todo/services/state-service/create-todo-database.js.map +1 -1
- package/dist/samples/todo/services/state-service/create-todo-store.d.ts +33 -10
- package/dist/samples/todo/services/state-service/create-todo-store.js +21 -17
- package/dist/samples/todo/services/state-service/create-todo-store.js.map +1 -1
- package/dist/samples/todo/services/state-service/todo-state-service.d.ts +0 -17
- package/dist/samples/todo/services/state-service/transactions/create-bulk-todos.js +21 -17
- package/dist/samples/todo/services/state-service/transactions/create-bulk-todos.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/create-todo.d.ts +0 -17
- package/dist/samples/todo/services/state-service/transactions/create-todo.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/create-todo.test.js +21 -17
- package/dist/samples/todo/services/state-service/transactions/create-todo.test.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/delete-all-todos.d.ts +0 -17
- package/dist/samples/todo/services/state-service/transactions/delete-all-todos.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/delete-todo.js +21 -17
- package/dist/samples/todo/services/state-service/transactions/delete-todo.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/delete-todo.test.js +21 -17
- package/dist/samples/todo/services/state-service/transactions/delete-todo.test.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/drag-todo.js +21 -17
- package/dist/samples/todo/services/state-service/transactions/drag-todo.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/index.d.ts +0 -17
- package/dist/samples/todo/services/state-service/transactions/index.js +21 -17
- package/dist/samples/todo/services/state-service/transactions/index.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/reorder-todos.d.ts +0 -17
- package/dist/samples/todo/services/state-service/transactions/reorder-todos.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/toggle-complete.d.ts +0 -17
- package/dist/samples/todo/services/state-service/transactions/toggle-complete.js.map +1 -1
- package/dist/samples/todo/services/state-service/transactions/toggle-complete.test.js +21 -17
- package/dist/samples/todo/services/state-service/transactions/toggle-complete.test.js.map +1 -1
- package/dist/samples/todo/todo-element.d.ts +0 -17
- package/dist/samples/todo/todo-element.js.map +1 -1
- package/dist/samples/todo/todo-main-element.d.ts +0 -17
- package/dist/samples/todo/todo-main-element.js +21 -17
- package/dist/samples/todo/todo-main-element.js.map +1 -1
- package/dist/schema/schema.d.ts +1 -1
- package/dist/table/table.js +1 -0
- package/dist/table/table.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/typed-buffer/create-struct-buffer.js +0 -1
- package/dist/typed-buffer/create-struct-buffer.js.map +1 -1
- package/dist/typed-buffer/create-struct-buffer.test.js +5 -3
- package/dist/typed-buffer/create-struct-buffer.test.js.map +1 -1
- package/dist/typed-buffer/is-typed-buffer.js +21 -0
- package/dist/typed-buffer/is-typed-buffer.js.map +1 -1
- package/dist/typed-buffer/is-typed-buffer.test.js +21 -0
- package/dist/typed-buffer/is-typed-buffer.test.js.map +1 -1
- package/dist/typed-buffer/typed-buffer-equals.js +21 -0
- package/dist/typed-buffer/typed-buffer-equals.js.map +1 -1
- package/dist/types/replace.d.ts +0 -4
- package/dist/types/replace.js.map +1 -1
- package/package.json +1 -1
|
@@ -12,426 +12,6 @@ furnished to do so, subject to the following conditions:
|
|
|
12
12
|
The above copyright notice and this permission notice shall be included in all
|
|
13
13
|
copies or substantial portions of the Software.
|
|
14
14
|
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.*/
|
|
22
|
-
/*MIT License
|
|
23
|
-
|
|
24
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
25
|
-
|
|
26
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
27
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
28
|
-
in the Software without restriction, including without limitation the rights
|
|
29
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
30
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
31
|
-
furnished to do so, subject to the following conditions:
|
|
32
|
-
|
|
33
|
-
The above copyright notice and this permission notice shall be included in all
|
|
34
|
-
copies or substantial portions of the Software.
|
|
35
|
-
|
|
36
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
37
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
38
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
39
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
40
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
41
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
42
|
-
SOFTWARE.*/
|
|
43
|
-
/*MIT License
|
|
44
|
-
|
|
45
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
46
|
-
|
|
47
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
48
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
49
|
-
in the Software without restriction, including without limitation the rights
|
|
50
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
51
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
52
|
-
furnished to do so, subject to the following conditions:
|
|
53
|
-
|
|
54
|
-
The above copyright notice and this permission notice shall be included in all
|
|
55
|
-
copies or substantial portions of the Software.
|
|
56
|
-
|
|
57
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
58
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
59
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
60
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
61
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
62
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
63
|
-
SOFTWARE.*/
|
|
64
|
-
/*MIT License
|
|
65
|
-
|
|
66
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
67
|
-
|
|
68
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
69
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
70
|
-
in the Software without restriction, including without limitation the rights
|
|
71
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
72
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
73
|
-
furnished to do so, subject to the following conditions:
|
|
74
|
-
|
|
75
|
-
The above copyright notice and this permission notice shall be included in all
|
|
76
|
-
copies or substantial portions of the Software.
|
|
77
|
-
|
|
78
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
79
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
80
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
81
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
82
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
83
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
84
|
-
SOFTWARE.*/
|
|
85
|
-
/*MIT License
|
|
86
|
-
|
|
87
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
88
|
-
|
|
89
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
90
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
91
|
-
in the Software without restriction, including without limitation the rights
|
|
92
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
93
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
94
|
-
furnished to do so, subject to the following conditions:
|
|
95
|
-
|
|
96
|
-
The above copyright notice and this permission notice shall be included in all
|
|
97
|
-
copies or substantial portions of the Software.
|
|
98
|
-
|
|
99
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
100
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
101
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
102
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
103
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
104
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
105
|
-
SOFTWARE.*/
|
|
106
|
-
/*MIT License
|
|
107
|
-
|
|
108
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
109
|
-
|
|
110
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
111
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
112
|
-
in the Software without restriction, including without limitation the rights
|
|
113
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
114
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
115
|
-
furnished to do so, subject to the following conditions:
|
|
116
|
-
|
|
117
|
-
The above copyright notice and this permission notice shall be included in all
|
|
118
|
-
copies or substantial portions of the Software.
|
|
119
|
-
|
|
120
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
121
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
122
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
123
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
124
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
125
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
126
|
-
SOFTWARE.*/
|
|
127
|
-
/*MIT License
|
|
128
|
-
|
|
129
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
130
|
-
|
|
131
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
132
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
133
|
-
in the Software without restriction, including without limitation the rights
|
|
134
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
135
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
136
|
-
furnished to do so, subject to the following conditions:
|
|
137
|
-
|
|
138
|
-
The above copyright notice and this permission notice shall be included in all
|
|
139
|
-
copies or substantial portions of the Software.
|
|
140
|
-
|
|
141
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
142
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
143
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
144
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
145
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
146
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
147
|
-
SOFTWARE.*/
|
|
148
|
-
/*MIT License
|
|
149
|
-
|
|
150
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
151
|
-
|
|
152
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
153
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
154
|
-
in the Software without restriction, including without limitation the rights
|
|
155
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
156
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
157
|
-
furnished to do so, subject to the following conditions:
|
|
158
|
-
|
|
159
|
-
The above copyright notice and this permission notice shall be included in all
|
|
160
|
-
copies or substantial portions of the Software.
|
|
161
|
-
|
|
162
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
163
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
164
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
165
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
166
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
167
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
168
|
-
SOFTWARE.*/
|
|
169
|
-
/*MIT License
|
|
170
|
-
|
|
171
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
172
|
-
|
|
173
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
174
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
175
|
-
in the Software without restriction, including without limitation the rights
|
|
176
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
177
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
178
|
-
furnished to do so, subject to the following conditions:
|
|
179
|
-
|
|
180
|
-
The above copyright notice and this permission notice shall be included in all
|
|
181
|
-
copies or substantial portions of the Software.
|
|
182
|
-
|
|
183
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
184
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
185
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
186
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
187
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
188
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
189
|
-
SOFTWARE.*/
|
|
190
|
-
/*MIT License
|
|
191
|
-
|
|
192
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
193
|
-
|
|
194
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
195
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
196
|
-
in the Software without restriction, including without limitation the rights
|
|
197
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
198
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
199
|
-
furnished to do so, subject to the following conditions:
|
|
200
|
-
|
|
201
|
-
The above copyright notice and this permission notice shall be included in all
|
|
202
|
-
copies or substantial portions of the Software.
|
|
203
|
-
|
|
204
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
205
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
206
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
207
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
208
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
209
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
210
|
-
SOFTWARE.*/
|
|
211
|
-
/*MIT License
|
|
212
|
-
|
|
213
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
214
|
-
|
|
215
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
216
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
217
|
-
in the Software without restriction, including without limitation the rights
|
|
218
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
219
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
220
|
-
furnished to do so, subject to the following conditions:
|
|
221
|
-
|
|
222
|
-
The above copyright notice and this permission notice shall be included in all
|
|
223
|
-
copies or substantial portions of the Software.
|
|
224
|
-
|
|
225
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
226
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
227
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
228
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
229
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
230
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
231
|
-
SOFTWARE.*/
|
|
232
|
-
/*MIT License
|
|
233
|
-
|
|
234
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
235
|
-
|
|
236
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
237
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
238
|
-
in the Software without restriction, including without limitation the rights
|
|
239
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
240
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
241
|
-
furnished to do so, subject to the following conditions:
|
|
242
|
-
|
|
243
|
-
The above copyright notice and this permission notice shall be included in all
|
|
244
|
-
copies or substantial portions of the Software.
|
|
245
|
-
|
|
246
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
247
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
248
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
249
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
250
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
251
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
252
|
-
SOFTWARE.*/
|
|
253
|
-
/*MIT License
|
|
254
|
-
|
|
255
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
256
|
-
|
|
257
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
258
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
259
|
-
in the Software without restriction, including without limitation the rights
|
|
260
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
261
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
262
|
-
furnished to do so, subject to the following conditions:
|
|
263
|
-
|
|
264
|
-
The above copyright notice and this permission notice shall be included in all
|
|
265
|
-
copies or substantial portions of the Software.
|
|
266
|
-
|
|
267
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
268
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
269
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
270
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
271
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
272
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
273
|
-
SOFTWARE.*/
|
|
274
|
-
/*MIT License
|
|
275
|
-
|
|
276
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
277
|
-
|
|
278
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
279
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
280
|
-
in the Software without restriction, including without limitation the rights
|
|
281
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
282
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
283
|
-
furnished to do so, subject to the following conditions:
|
|
284
|
-
|
|
285
|
-
The above copyright notice and this permission notice shall be included in all
|
|
286
|
-
copies or substantial portions of the Software.
|
|
287
|
-
|
|
288
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
289
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
290
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
291
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
292
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
293
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
294
|
-
SOFTWARE.*/
|
|
295
|
-
/*MIT License
|
|
296
|
-
|
|
297
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
298
|
-
|
|
299
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
300
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
301
|
-
in the Software without restriction, including without limitation the rights
|
|
302
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
303
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
304
|
-
furnished to do so, subject to the following conditions:
|
|
305
|
-
|
|
306
|
-
The above copyright notice and this permission notice shall be included in all
|
|
307
|
-
copies or substantial portions of the Software.
|
|
308
|
-
|
|
309
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
310
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
311
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
312
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
313
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
314
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
315
|
-
SOFTWARE.*/
|
|
316
|
-
/*MIT License
|
|
317
|
-
|
|
318
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
319
|
-
|
|
320
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
321
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
322
|
-
in the Software without restriction, including without limitation the rights
|
|
323
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
324
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
325
|
-
furnished to do so, subject to the following conditions:
|
|
326
|
-
|
|
327
|
-
The above copyright notice and this permission notice shall be included in all
|
|
328
|
-
copies or substantial portions of the Software.
|
|
329
|
-
|
|
330
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
331
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
332
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
333
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
334
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
335
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
336
|
-
SOFTWARE.*/
|
|
337
|
-
/*MIT License
|
|
338
|
-
|
|
339
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
340
|
-
|
|
341
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
342
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
343
|
-
in the Software without restriction, including without limitation the rights
|
|
344
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
345
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
346
|
-
furnished to do so, subject to the following conditions:
|
|
347
|
-
|
|
348
|
-
The above copyright notice and this permission notice shall be included in all
|
|
349
|
-
copies or substantial portions of the Software.
|
|
350
|
-
|
|
351
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
352
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
353
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
354
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
355
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
356
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
357
|
-
SOFTWARE.*/
|
|
358
|
-
/*MIT License
|
|
359
|
-
|
|
360
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
361
|
-
|
|
362
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
363
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
364
|
-
in the Software without restriction, including without limitation the rights
|
|
365
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
366
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
367
|
-
furnished to do so, subject to the following conditions:
|
|
368
|
-
|
|
369
|
-
The above copyright notice and this permission notice shall be included in all
|
|
370
|
-
copies or substantial portions of the Software.
|
|
371
|
-
|
|
372
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
373
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
374
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
375
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
376
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
377
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
378
|
-
SOFTWARE.*/
|
|
379
|
-
/*MIT License
|
|
380
|
-
|
|
381
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
382
|
-
|
|
383
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
384
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
385
|
-
in the Software without restriction, including without limitation the rights
|
|
386
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
387
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
388
|
-
furnished to do so, subject to the following conditions:
|
|
389
|
-
|
|
390
|
-
The above copyright notice and this permission notice shall be included in all
|
|
391
|
-
copies or substantial portions of the Software.
|
|
392
|
-
|
|
393
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
394
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
395
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
396
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
397
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
398
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
399
|
-
SOFTWARE.*/
|
|
400
|
-
/*MIT License
|
|
401
|
-
|
|
402
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
403
|
-
|
|
404
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
405
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
406
|
-
in the Software without restriction, including without limitation the rights
|
|
407
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
408
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
409
|
-
furnished to do so, subject to the following conditions:
|
|
410
|
-
|
|
411
|
-
The above copyright notice and this permission notice shall be included in all
|
|
412
|
-
copies or substantial portions of the Software.
|
|
413
|
-
|
|
414
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
415
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
416
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
417
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
418
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
419
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
420
|
-
SOFTWARE.*/
|
|
421
|
-
/*MIT License
|
|
422
|
-
|
|
423
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
424
|
-
|
|
425
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
426
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
427
|
-
in the Software without restriction, including without limitation the rights
|
|
428
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
429
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
430
|
-
furnished to do so, subject to the following conditions:
|
|
431
|
-
|
|
432
|
-
The above copyright notice and this permission notice shall be included in all
|
|
433
|
-
copies or substantial portions of the Software.
|
|
434
|
-
|
|
435
15
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
436
16
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
437
17
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"is-shared-array-buffer.js","sourceRoot":"","sources":["../../../src/internal/array-buffer-like/is-shared-array-buffer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;
|
|
1
|
+
{"version":3,"file":"is-shared-array-buffer.js","sourceRoot":"","sources":["../../../src/internal/array-buffer-like/is-shared-array-buffer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AACX,MAAM,UAAU,mBAAmB,CAAC,WAA4B;IAC5D,OAAO,MAAM,IAAI,WAAW,CAAC;AACjC,CAAC"}
|
|
@@ -1,23 +1,2 @@
|
|
|
1
|
-
/*MIT License
|
|
2
|
-
|
|
3
|
-
© Copyright 2025 Adobe. All rights reserved.
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.*/
|
|
22
1
|
export {};
|
|
23
2
|
//# sourceMappingURL=data-view-32.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-view-32.js","sourceRoot":"","sources":["../../../src/internal/data-view-32/data-view-32.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"data-view-32.js","sourceRoot":"","sources":["../../../src/internal/data-view-32/data-view-32.ts"],"names":[],"mappings":""}
|
|
@@ -9,6 +9,7 @@ export * from "./use-observable-values.js";
|
|
|
9
9
|
export * from "./use-observable.js";
|
|
10
10
|
export * from "./use-window-event.js";
|
|
11
11
|
export * from "./use-resize-observer.js";
|
|
12
|
+
export * from "./use-debounce.js";
|
|
12
13
|
export * from "./use-element.js";
|
|
13
14
|
export * from "./with-hooks.js";
|
|
14
15
|
export * from "./attach-decorator.js";
|
package/dist/lit/hooks/index.js
CHANGED
|
@@ -30,6 +30,7 @@ export * from "./use-observable-values.js";
|
|
|
30
30
|
export * from "./use-observable.js";
|
|
31
31
|
export * from "./use-window-event.js";
|
|
32
32
|
export * from "./use-resize-observer.js";
|
|
33
|
+
export * from "./use-debounce.js";
|
|
33
34
|
export * from "./use-element.js";
|
|
34
35
|
export * from "./with-hooks.js";
|
|
35
36
|
export * from "./attach-decorator.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lit/hooks/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AAEX,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lit/hooks/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AAEX,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,0BAA0B,CAAC;AACzC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hook to debounce a value. Returns the debounced value after the specified delay.
|
|
3
|
+
*
|
|
4
|
+
* @param value - The value to debounce
|
|
5
|
+
* @param delay - Delay in milliseconds before updating the debounced value
|
|
6
|
+
* @returns The debounced value
|
|
7
|
+
*/
|
|
8
|
+
export declare function useDebounce<T>(value: T, delay: number): T;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/*MIT License
|
|
2
|
+
|
|
3
|
+
© Copyright 2025 Adobe. All rights reserved.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.*/
|
|
22
|
+
import { useEffect } from "./use-effect.js";
|
|
23
|
+
import { useState } from "./use-state.js";
|
|
24
|
+
/**
|
|
25
|
+
* Hook to debounce a value. Returns the debounced value after the specified delay.
|
|
26
|
+
*
|
|
27
|
+
* @param value - The value to debounce
|
|
28
|
+
* @param delay - Delay in milliseconds before updating the debounced value
|
|
29
|
+
* @returns The debounced value
|
|
30
|
+
*/
|
|
31
|
+
export function useDebounce(value, delay) {
|
|
32
|
+
const [debouncedValue, setDebouncedValue] = useState(value);
|
|
33
|
+
useEffect(() => {
|
|
34
|
+
const timeoutId = window.setTimeout(() => {
|
|
35
|
+
setDebouncedValue(value);
|
|
36
|
+
}, delay);
|
|
37
|
+
return () => clearTimeout(timeoutId);
|
|
38
|
+
}, [value, delay]);
|
|
39
|
+
return debouncedValue;
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=use-debounce.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-debounce.js","sourceRoot":"","sources":["../../../src/lit/hooks/use-debounce.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AAEX,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAE1C;;;;;;GAMG;AACH,MAAM,UAAU,WAAW,CAAI,KAAQ,EAAE,KAAa;IAClD,MAAM,CAAC,cAAc,EAAE,iBAAiB,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAE5D,SAAS,CAAC,GAAG,EAAE;QACX,MAAM,SAAS,GAAG,MAAM,CAAC,UAAU,CAAC,GAAG,EAAE;YACrC,iBAAiB,CAAC,KAAK,CAAC,CAAC;QAC7B,CAAC,EAAE,KAAK,CAAC,CAAC;QAEV,OAAO,GAAG,EAAE,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;IACzC,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;IAEnB,OAAO,cAAc,CAAC;AAC1B,CAAC"}
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
import { DraggableProps
|
|
1
|
+
import { DraggableProps } from './use-draggable.js';
|
|
2
|
+
import { Vec2 } from '../../math/index.js';
|
|
2
3
|
export type DragObserveProps = Pick<DraggableProps, 'minDragDistance' | 'dragCursor' | 'addPlaceholder' | 'stopPropagation'>;
|
|
3
4
|
export type DragStart = {
|
|
4
5
|
readonly type: 'start' | 'cancel';
|
|
5
6
|
};
|
|
6
7
|
export type DragMove = {
|
|
7
8
|
readonly type: 'move';
|
|
8
|
-
readonly delta:
|
|
9
|
-
readonly position:
|
|
9
|
+
readonly delta: Vec2;
|
|
10
|
+
readonly position: Vec2;
|
|
10
11
|
};
|
|
11
12
|
export type DragEnd = {
|
|
12
13
|
readonly type: 'end';
|
|
13
|
-
readonly delta:
|
|
14
|
-
readonly position:
|
|
14
|
+
readonly delta: Vec2;
|
|
15
|
+
readonly position: Vec2;
|
|
15
16
|
};
|
|
16
17
|
export type DragState = DragStart | DragMove | DragEnd;
|
|
17
18
|
/**
|
|
@@ -31,7 +31,7 @@ import { createObservableEvent } from '../../observe/index.js';
|
|
|
31
31
|
export function useDragObserve(props, dependencies) {
|
|
32
32
|
const [dragState, setDragState] = createObservableEvent();
|
|
33
33
|
const element = useElement();
|
|
34
|
-
useDraggable(element,
|
|
34
|
+
useDraggable(element, {
|
|
35
35
|
...props,
|
|
36
36
|
onDragStart: _e => {
|
|
37
37
|
setDragState({ type: 'start' });
|
|
@@ -49,7 +49,7 @@ export function useDragObserve(props, dependencies) {
|
|
|
49
49
|
onDragCancel: () => {
|
|
50
50
|
setDragState({ type: 'cancel' });
|
|
51
51
|
},
|
|
52
|
-
}
|
|
52
|
+
}, dependencies);
|
|
53
53
|
return dragState;
|
|
54
54
|
}
|
|
55
55
|
//# sourceMappingURL=use-drag-observe.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-drag-observe.js","sourceRoot":"","sources":["../../../src/lit/hooks/use-drag-observe.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AAEX,OAAO,
|
|
1
|
+
{"version":3,"file":"use-drag-observe.js","sourceRoot":"","sources":["../../../src/lit/hooks/use-drag-observe.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AAEX,OAAO,EAAkB,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAC;AAsB/D;;;;;GAKG;AACH,MAAM,UAAU,cAAc,CAAC,KAAuB,EAAE,YAAuB;IAC3E,MAAM,CAAC,SAAS,EAAE,YAAY,CAAC,GAAG,qBAAqB,EAAa,CAAC;IACrE,MAAM,OAAO,GAAG,UAAU,EAAE,CAAC;IAC7B,YAAY,CAAC,OAAO,EAChB;QACI,GAAG,KAAK;QACR,WAAW,EAAE,EAAE,CAAC,EAAE;YACd,YAAY,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC,CAAC;QACpC,CAAC;QACD,MAAM,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE;YAC5B,YAAY,CAAC;gBACT,IAAI,EAAE,MAAM;gBACZ,QAAQ;gBACR,KAAK;aACR,CAAC,CAAC;QACP,CAAC;QACD,SAAS,EAAE,CAAC,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE;YAC/B,YAAY,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QACnD,CAAC;QACD,YAAY,EAAE,GAAG,EAAE;YACf,YAAY,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC;QACrC,CAAC;KACJ,EACD,YAAY,CACf,CAAC;IACF,OAAO,SAAS,CAAC;AACrB,CAAC"}
|
|
@@ -4,4 +4,4 @@ export type DragTransactionProps<T> = DragObserveProps & {
|
|
|
4
4
|
transaction: (asyncArgs: AsyncArgsProvider<T>) => void;
|
|
5
5
|
update: (drag: DragMove | DragEnd) => T | void;
|
|
6
6
|
};
|
|
7
|
-
export declare function useDragTransaction<T>(
|
|
7
|
+
export declare function useDragTransaction<T>(props: DragTransactionProps<T>, dependencies: unknown[]): void;
|
|
@@ -22,8 +22,7 @@ SOFTWARE.*/
|
|
|
22
22
|
import { useDragObserve } from './use-drag-observe.js';
|
|
23
23
|
import { useEffect } from "./use-effect.js";
|
|
24
24
|
import { toAsyncGenerator, withFilter } from '../../observe/index.js';
|
|
25
|
-
export function useDragTransaction(
|
|
26
|
-
const props = propsFactory();
|
|
25
|
+
export function useDragTransaction(props, dependencies) {
|
|
27
26
|
const { transaction, update } = props;
|
|
28
27
|
const dragObserve = useDragObserve(props, dependencies);
|
|
29
28
|
const startDragTransaction = () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-drag-transaction.js","sourceRoot":"","sources":["../../../src/lit/hooks/use-drag-transaction.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AAEX,OAAO,EAAuC,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAC5F,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAOtE,MAAM,UAAU,kBAAkB,CAAI,
|
|
1
|
+
{"version":3,"file":"use-drag-transaction.js","sourceRoot":"","sources":["../../../src/lit/hooks/use-drag-transaction.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;WAoBW;AAEX,OAAO,EAAuC,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAC5F,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,OAAO,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAOtE,MAAM,UAAU,kBAAkB,CAAI,KAA8B,EAAE,YAAuB;IACzF,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,GAAG,KAAK,CAAC;IACtC,MAAM,WAAW,GAAG,cAAc,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;IACxD,MAAM,oBAAoB,GAAG,GAAG,EAAE;QAC9B,IAAI,IAAI,GAAG,KAAK,CAAC;QACjB,yGAAyG;QACzG,WAAW;QACP,6FAA6F;QAC7F,GAAG,EAAE,CACD,gBAAgB;QACZ,8EAA8E;QAC9E,yDAAyD;QACzD,UAAU,CAAC,WAAW,EAAE,KAAK,CAAC,EAAE;YAC5B,IAAI,KAAK,CAAC,IAAI,KAAK,KAAK,EAAE,CAAC;gBACvB,IAAI,GAAG,IAAI,CAAC;gBACZ,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC;YACzB,CAAC;YACD,IAAI,KAAK,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;gBACxB,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC;YACzB,CAAC;QACL,CAAC,CAAC,EACF,MAAM,CAAC,EAAE,CAAC,IAAI,CACjB,CACR,CAAC;IACN,CAAC,CAAC;IACF,wFAAwF;IACxF,SAAS,CAAC,GAAG,EAAE;QACX,OAAO,WAAW,CAAC,KAAK,CAAC,EAAE;YACvB,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE,CAAC;gBACzB,oBAAoB,EAAE,CAAC;YAC3B,CAAC;QACL,CAAC,CAAC,CAAC;IACP,CAAC,EAAE,YAAY,CAAC,CAAC;AACrB,CAAC"}
|
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
import { Vec2 } from '../../math/vec2/vec2.js';
|
|
2
2
|
export interface DraggableProps {
|
|
3
|
-
onDragStart: (e: PointerEvent) =>
|
|
4
|
-
onDrag: (e: PointerEvent, newPosition:
|
|
5
|
-
onDragEnd?: (e: PointerEvent, newPosition:
|
|
3
|
+
onDragStart: (e: PointerEvent) => Vec2 | void;
|
|
4
|
+
onDrag: (e: PointerEvent, newPosition: Vec2, delta: Vec2) => void;
|
|
5
|
+
onDragEnd?: (e: PointerEvent, newPosition: Vec2, delta: Vec2) => void;
|
|
6
6
|
/**
|
|
7
7
|
* Called if this hook is destroyed before the drag is completed.
|
|
8
8
|
*/
|
|
9
9
|
onDragCancel?: () => void;
|
|
10
|
-
initialDownPosition?: Vector2;
|
|
11
10
|
minDragDistance?: number;
|
|
12
11
|
dragCursor?: string;
|
|
13
12
|
addPlaceholder?: boolean;
|
|
14
13
|
stopPropagation?: boolean;
|
|
15
14
|
}
|
|
16
|
-
export declare function useDraggable(element: HTMLElement,
|
|
15
|
+
export declare function useDraggable(element: HTMLElement, props: DraggableProps, dependencies: unknown[]): void;
|