svelte-tweakpane-ui 1.5.14 → 1.5.15
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/core/Pane.svelte.d.ts +19 -19
- package/package.json +20 -13
|
@@ -1,24 +1,7 @@
|
|
|
1
1
|
import { SvelteComponent } from 'svelte'
|
|
2
2
|
export type PanePosition = 'draggable' | 'fixed' | 'inline'
|
|
3
3
|
declare const __propDef: {
|
|
4
|
-
props:
|
|
5
|
-
/**
|
|
6
|
-
* Pane mode, one of three options:
|
|
7
|
-
* - **'draggable'** *(default)* \
|
|
8
|
-
* The pane is draggable and resizable, and may be placed anywhere over the page.
|
|
9
|
-
* - **'inline'** \
|
|
10
|
-
* The pane appears inline with other content in the normal flow of the document. \
|
|
11
|
-
* This is the default mode for components created outside of an explicit `<Pane>`
|
|
12
|
-
* component.*
|
|
13
|
-
* - **'fixed'** \
|
|
14
|
-
* Standard Tweakpane behavior where the pane is shown in a fixed position over the page.
|
|
15
|
-
*
|
|
16
|
-
* Note that `<Pane>` is a dynamic component, and availability of additional props will
|
|
17
|
-
* vary depending on the defined `position` value.
|
|
18
|
-
* @default `'draggable'`
|
|
19
|
-
*/
|
|
20
|
-
position?: PanePosition
|
|
21
|
-
} & (
|
|
4
|
+
props: (
|
|
22
5
|
| (Omit<
|
|
23
6
|
{
|
|
24
7
|
/**
|
|
@@ -432,7 +415,24 @@ declare const __propDef: {
|
|
|
432
415
|
*/
|
|
433
416
|
position?: 'draggable' | undefined
|
|
434
417
|
})
|
|
435
|
-
)
|
|
418
|
+
) & {
|
|
419
|
+
/**
|
|
420
|
+
* Pane mode, one of three options:
|
|
421
|
+
* - **'draggable'** *(default)* \
|
|
422
|
+
* The pane is draggable and resizable, and may be placed anywhere over the page.
|
|
423
|
+
* - **'inline'** \
|
|
424
|
+
* The pane appears inline with other content in the normal flow of the document. \
|
|
425
|
+
* This is the default mode for components created outside of an explicit `<Pane>`
|
|
426
|
+
* component.*
|
|
427
|
+
* - **'fixed'** \
|
|
428
|
+
* Standard Tweakpane behavior where the pane is shown in a fixed position over the page.
|
|
429
|
+
*
|
|
430
|
+
* Note that `<Pane>` is a dynamic component, and availability of additional props will
|
|
431
|
+
* vary depending on the defined `position` value.
|
|
432
|
+
* @default `'draggable'`
|
|
433
|
+
*/
|
|
434
|
+
position?: PanePosition
|
|
435
|
+
}
|
|
436
436
|
events: {
|
|
437
437
|
[evt: string]: CustomEvent<any>
|
|
438
438
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-tweakpane-ui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.15",
|
|
4
4
|
"description": "A Svelte component library wrapping UI elements from Tweakpane, plus some additional functionality for convenience and flexibility.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"components",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"email": "eric@ericmika.com",
|
|
32
32
|
"url": "https://ericmika.com"
|
|
33
33
|
},
|
|
34
|
+
"sideEffects": false,
|
|
34
35
|
"type": "module",
|
|
35
36
|
"exports": {
|
|
36
37
|
".": {
|
|
@@ -201,27 +202,27 @@
|
|
|
201
202
|
"tweakpane": "4.0.5"
|
|
202
203
|
},
|
|
203
204
|
"devDependencies": {
|
|
204
|
-
"@kitschpatrol/shared-config": "^
|
|
205
|
+
"@kitschpatrol/shared-config": "^6.0.2",
|
|
205
206
|
"@phenomnomnominal/tsquery": "^6.1.4",
|
|
206
|
-
"@playwright/test": "^1.58.
|
|
207
|
+
"@playwright/test": "^1.58.2",
|
|
207
208
|
"@stkb/rewrap": "^0.1.0",
|
|
208
209
|
"@sveltejs/adapter-static": "^3.0.10",
|
|
209
|
-
"@sveltejs/kit": "^2.
|
|
210
|
+
"@sveltejs/kit": "^2.53.4",
|
|
210
211
|
"@sveltejs/package": "^2.5.7",
|
|
211
212
|
"@sveltejs/vite-plugin-svelte": "^3.1.2",
|
|
212
|
-
"@types/eslint": "^
|
|
213
|
-
"@types/node": "^20.19.
|
|
214
|
-
"bumpp": "^10.4.
|
|
215
|
-
"glob": "^13.0.
|
|
216
|
-
"node-addon-api": "^8.
|
|
213
|
+
"@types/eslint": "^9.6.1",
|
|
214
|
+
"@types/node": "^20.19.35",
|
|
215
|
+
"bumpp": "^10.4.1",
|
|
216
|
+
"glob": "^13.0.6",
|
|
217
|
+
"node-addon-api": "^8.6.0",
|
|
217
218
|
"node-gyp": "^12.2.0",
|
|
218
219
|
"postcss-html": "^1.8.1",
|
|
219
|
-
"publint": "^0.3.
|
|
220
|
+
"publint": "^0.3.18",
|
|
220
221
|
"read-package-up": "^12.0.0",
|
|
221
222
|
"svelte": "^4.2.20",
|
|
222
|
-
"svelte-check": "^4.
|
|
223
|
-
"svelte-language-server": "^0.17.
|
|
224
|
-
"svelte2tsx": "^0.7.
|
|
223
|
+
"svelte-check": "^4.4.4",
|
|
224
|
+
"svelte-language-server": "^0.17.29",
|
|
225
|
+
"svelte2tsx": "^0.7.51",
|
|
225
226
|
"ts-morph": "^27.0.2",
|
|
226
227
|
"tslib": "^2.8.1",
|
|
227
228
|
"tsx": "^4.21.0",
|
|
@@ -232,6 +233,12 @@
|
|
|
232
233
|
"peerDependencies": {
|
|
233
234
|
"svelte": "^4.0.0 || ^5.0.0"
|
|
234
235
|
},
|
|
236
|
+
"devEngines": {
|
|
237
|
+
"runtime": {
|
|
238
|
+
"name": "node",
|
|
239
|
+
"version": ">=20.19.0"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
235
242
|
"scripts": {
|
|
236
243
|
"build": "pnpm run --sequential /^build:/",
|
|
237
244
|
"build:01-sync": "pnpm run check && pnpm run docs-sync",
|