@medyll/idae-slotui-svelte 0.150.0 → 0.151.0
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.
|
@@ -81,6 +81,7 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
81
81
|
accessKey?: string | undefined;
|
|
82
82
|
readonly accessKeyLabel?: string | undefined;
|
|
83
83
|
autocapitalize?: string | undefined;
|
|
84
|
+
autocorrect?: boolean | undefined;
|
|
84
85
|
dir?: string | undefined;
|
|
85
86
|
draggable?: boolean | undefined;
|
|
86
87
|
hidden?: boolean | undefined;
|
|
@@ -194,6 +195,7 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
194
195
|
setPointerCapture?: ((pointerId: number) => void) | undefined;
|
|
195
196
|
toggleAttribute?: ((qualifiedName: string, force?: boolean) => boolean) | undefined;
|
|
196
197
|
webkitMatchesSelector?: ((selectors: string) => boolean) | undefined;
|
|
198
|
+
textContent?: string | undefined;
|
|
197
199
|
readonly baseURI?: string | undefined;
|
|
198
200
|
readonly childNodes?: NodeListOf<ChildNode> | undefined;
|
|
199
201
|
readonly firstChild?: ChildNode | null | undefined;
|
|
@@ -206,7 +208,6 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
206
208
|
readonly parentElement?: HTMLElement | null | undefined;
|
|
207
209
|
readonly parentNode?: ParentNode | null | undefined;
|
|
208
210
|
readonly previousSibling?: ChildNode | null | undefined;
|
|
209
|
-
textContent?: string | null | undefined;
|
|
210
211
|
appendChild?: (<T extends Node>(node: T) => T) | undefined;
|
|
211
212
|
cloneNode?: ((subtree?: boolean) => Node) | undefined;
|
|
212
213
|
compareDocumentPosition?: ((other: Node) => number) | undefined;
|
|
@@ -241,6 +242,7 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
241
242
|
readonly DOCUMENT_POSITION_CONTAINED_BY?: 16 | undefined;
|
|
242
243
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC?: 32 | undefined;
|
|
243
244
|
dispatchEvent?: ((event: Event) => boolean) | undefined;
|
|
245
|
+
ariaActiveDescendantElement?: Element | null | undefined;
|
|
244
246
|
ariaAtomic?: string | null | undefined;
|
|
245
247
|
ariaAutoComplete?: string | null | undefined;
|
|
246
248
|
ariaBrailleLabel?: string | null | undefined;
|
|
@@ -251,21 +253,28 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
251
253
|
ariaColIndex?: string | null | undefined;
|
|
252
254
|
ariaColIndexText?: string | null | undefined;
|
|
253
255
|
ariaColSpan?: string | null | undefined;
|
|
256
|
+
ariaControlsElements?: readonly Element[] | null | undefined;
|
|
254
257
|
ariaCurrent?: string | null | undefined;
|
|
258
|
+
ariaDescribedByElements?: readonly Element[] | null | undefined;
|
|
255
259
|
ariaDescription?: string | null | undefined;
|
|
260
|
+
ariaDetailsElements?: readonly Element[] | null | undefined;
|
|
256
261
|
ariaDisabled?: string | null | undefined;
|
|
262
|
+
ariaErrorMessageElements?: readonly Element[] | null | undefined;
|
|
257
263
|
ariaExpanded?: string | null | undefined;
|
|
264
|
+
ariaFlowToElements?: readonly Element[] | null | undefined;
|
|
258
265
|
ariaHasPopup?: string | null | undefined;
|
|
259
266
|
ariaHidden?: string | null | undefined;
|
|
260
267
|
ariaInvalid?: string | null | undefined;
|
|
261
268
|
ariaKeyShortcuts?: string | null | undefined;
|
|
262
269
|
ariaLabel?: string | null | undefined;
|
|
270
|
+
ariaLabelledByElements?: readonly Element[] | null | undefined;
|
|
263
271
|
ariaLevel?: string | null | undefined;
|
|
264
272
|
ariaLive?: string | null | undefined;
|
|
265
273
|
ariaModal?: string | null | undefined;
|
|
266
274
|
ariaMultiLine?: string | null | undefined;
|
|
267
275
|
ariaMultiSelectable?: string | null | undefined;
|
|
268
276
|
ariaOrientation?: string | null | undefined;
|
|
277
|
+
ariaOwnsElements?: readonly Element[] | null | undefined;
|
|
269
278
|
ariaPlaceholder?: string | null | undefined;
|
|
270
279
|
ariaPosInSet?: string | null | undefined;
|
|
271
280
|
ariaPressed?: string | null | undefined;
|
|
@@ -324,18 +333,19 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
324
333
|
onanimationend?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
|
|
325
334
|
onanimationiteration?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
|
|
326
335
|
onanimationstart?: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null | undefined;
|
|
327
|
-
onauxclick?: ((this: GlobalEventHandlers, ev:
|
|
336
|
+
onauxclick?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
328
337
|
onbeforeinput?: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null | undefined;
|
|
329
|
-
|
|
338
|
+
onbeforematch?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
339
|
+
onbeforetoggle?: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null | undefined;
|
|
330
340
|
onblur?: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null | undefined;
|
|
331
341
|
oncancel?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
332
342
|
oncanplay?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
333
343
|
oncanplaythrough?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
334
344
|
onchange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
335
|
-
onclick?: ((this: GlobalEventHandlers, ev:
|
|
345
|
+
onclick?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
336
346
|
onclose?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
337
347
|
oncontextlost?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
338
|
-
oncontextmenu?: ((this: GlobalEventHandlers, ev:
|
|
348
|
+
oncontextmenu?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
339
349
|
oncontextrestored?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
340
350
|
oncopy?: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null | undefined;
|
|
341
351
|
oncuechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
@@ -383,6 +393,7 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
383
393
|
onpointermove?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
384
394
|
onpointerout?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
385
395
|
onpointerover?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
396
|
+
onpointerrawupdate?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
386
397
|
onpointerup?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
|
|
387
398
|
onprogress?: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null | undefined;
|
|
388
399
|
onratechange?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
@@ -401,7 +412,7 @@ declare const Checkbox: import("svelte").Component<{
|
|
|
401
412
|
onsubmit?: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null | undefined;
|
|
402
413
|
onsuspend?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
403
414
|
ontimeupdate?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
|
|
404
|
-
ontoggle?: ((this: GlobalEventHandlers, ev:
|
|
415
|
+
ontoggle?: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null | undefined;
|
|
405
416
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined | undefined;
|
|
406
417
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined | undefined;
|
|
407
418
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export * from './componentCite.js';
|
|
2
|
-
export * from './csss/csss.js';
|
|
3
2
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
4
3
|
export * as windowCss from './slotui-css/window.css';
|
|
5
4
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -108,6 +107,7 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
108
107
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
109
108
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
110
109
|
export * as alertCss from './slotui-css/alert.css';
|
|
110
|
+
export * from './csss/csss.js';
|
|
111
111
|
export * from './utils/uses/toggler.js';
|
|
112
112
|
export * from './utils/uses/positioner.js';
|
|
113
113
|
export * from './utils/uses/navigation.js';
|
|
@@ -279,6 +279,6 @@ export { default as Alert } from './base/alert/Alert.svelte';
|
|
|
279
279
|
export * from './utils/uses/sx4u/sx4uPreprocess.js';
|
|
280
280
|
export * from './utils/uses/sx4u/sx4u.js';
|
|
281
281
|
export * from './utils/uses/stickTo/stickTo.js';
|
|
282
|
-
export * from './utils/uses/clickAway/clickAway.js';
|
|
283
282
|
export * from './utils/uses/resizer/resizer.js';
|
|
283
|
+
export * from './utils/uses/clickAway/clickAway.js';
|
|
284
284
|
export * from './utils/uses/autofocus/autofocus.js';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// auto exports of entry components
|
|
2
2
|
export * from './componentCite.js';
|
|
3
|
-
export * from './csss/csss.js';
|
|
4
3
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
5
4
|
export * as windowCss from './slotui-css/window.css';
|
|
6
5
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -109,6 +108,7 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
109
108
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
110
109
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
111
110
|
export * as alertCss from './slotui-css/alert.css';
|
|
111
|
+
export * from './csss/csss.js';
|
|
112
112
|
export * from './utils/uses/toggler.js';
|
|
113
113
|
export * from './utils/uses/positioner.js';
|
|
114
114
|
export * from './utils/uses/navigation.js';
|
|
@@ -280,6 +280,6 @@ export { default as Alert } from './base/alert/Alert.svelte';
|
|
|
280
280
|
export * from './utils/uses/sx4u/sx4uPreprocess.js';
|
|
281
281
|
export * from './utils/uses/sx4u/sx4u.js';
|
|
282
282
|
export * from './utils/uses/stickTo/stickTo.js';
|
|
283
|
-
export * from './utils/uses/clickAway/clickAway.js';
|
|
284
283
|
export * from './utils/uses/resizer/resizer.js';
|
|
284
|
+
export * from './utils/uses/clickAway/clickAway.js';
|
|
285
285
|
export * from './utils/uses/autofocus/autofocus.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medyll/idae-slotui-svelte",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.151.0",
|
|
4
4
|
"scope": "@medyll",
|
|
5
5
|
"description": "A Svelte 5 component library for building modular and reactive user interfaces.",
|
|
6
6
|
"scripts": {
|
|
@@ -39,7 +39,10 @@
|
|
|
39
39
|
"svelte": "^5.0.0-next"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@medyll/idae-prettier-config": "
|
|
42
|
+
"@medyll/idae-prettier-config": "latest",
|
|
43
|
+
"@medyll/cssfabric": "next",
|
|
44
|
+
"@medyll/idae-be": "next",
|
|
45
|
+
"@medyll/idae-engine": "next",
|
|
43
46
|
"@playwright/test": "^1.51.1",
|
|
44
47
|
"@sveltejs/adapter-auto": "^5.0.0",
|
|
45
48
|
"@sveltejs/kit": "^2.20.2",
|
|
@@ -75,9 +78,6 @@
|
|
|
75
78
|
"rimraf": "^6.0.1",
|
|
76
79
|
"sass": "^1.86.0",
|
|
77
80
|
"sveld": "^0.22.1",
|
|
78
|
-
"svelte": "^5.25.3",
|
|
79
|
-
"svelte-check": "^4.1.5",
|
|
80
|
-
"svelte2tsx": "^0.7.35",
|
|
81
81
|
"tslib": "^2.8.1",
|
|
82
82
|
"typescript": "^5.8.2",
|
|
83
83
|
"vite": "^6.2.3",
|
|
@@ -88,9 +88,6 @@
|
|
|
88
88
|
"type": "module",
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@iconify/svelte": "^4.2.0",
|
|
91
|
-
"@medyll/cssfabric": "^0.4.2",
|
|
92
|
-
"@medyll/idae-be": "^1.58.0",
|
|
93
|
-
"@medyll/idae-engine": "^1.147.0",
|
|
94
91
|
"d3": "^7.9.0",
|
|
95
92
|
"lerna": "^8.2.1",
|
|
96
93
|
"npm-check-updates": "^17.1.16",
|