@medyll/idae-slotui-svelte 0.149.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: MouseEvent) => any) | null | undefined;
336
+ onauxclick?: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null | undefined;
328
337
  onbeforeinput?: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null | undefined;
329
- onbeforetoggle?: ((this: GlobalEventHandlers, ev: Event) => any) | null | undefined;
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: MouseEvent) => any) | null | undefined;
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: MouseEvent) => any) | null | undefined;
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: Event) => any) | null | undefined;
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
@@ -218,9 +218,9 @@ export * from './controls/switch/types.js';
218
218
  export { default as Switch } from './controls/switch/Switch.svelte';
219
219
  export * from './controls/stepper/types.js';
220
220
  export { default as Stepper } from './controls/stepper/Stepper.svelte';
221
- export { default as Select } from './controls/select/Select.svelte';
222
221
  export * from './controls/slider/types.js';
223
222
  export { default as Slider } from './controls/slider/Slider.svelte';
223
+ export { default as Select } from './controls/select/Select.svelte';
224
224
  export * from './controls/rating/types.js';
225
225
  export { default as Rating } from './controls/rating/Rating.svelte';
226
226
  export * from './controls/progress/types.js';
package/dist/index.js CHANGED
@@ -219,9 +219,9 @@ export * from './controls/switch/types.js';
219
219
  export { default as Switch } from './controls/switch/Switch.svelte';
220
220
  export * from './controls/stepper/types.js';
221
221
  export { default as Stepper } from './controls/stepper/Stepper.svelte';
222
- export { default as Select } from './controls/select/Select.svelte';
223
222
  export * from './controls/slider/types.js';
224
223
  export { default as Slider } from './controls/slider/Slider.svelte';
224
+ export { default as Select } from './controls/select/Select.svelte';
225
225
  export * from './controls/rating/types.js';
226
226
  export { default as Rating } from './controls/rating/Rating.svelte';
227
227
  export * from './controls/progress/types.js';
@@ -4426,21 +4426,6 @@ hr.vertical {
4426
4426
  transform: scale(0, 0);
4427
4427
  }
4428
4428
 
4429
- /** avatar.scss ----------------*/
4430
- :root {
4431
- --avatar-radius: var(--css-radius-small);
4432
- --avatar-border-color: var(--sld-color-border);
4433
- }
4434
-
4435
- .avatar {
4436
- position: relative;
4437
- border-radius: var(--avatar-radius);
4438
- border: 1px solid var(--avatar-border-color);
4439
- display: grid;
4440
- place-items: center;
4441
- overflow: hidden;
4442
- }
4443
-
4444
4429
  /** backdrop.scss ----------------*/
4445
4430
  :root {
4446
4431
  --backdrop-background-color: var(--sld-color-foreground-alpha-high);
@@ -4475,6 +4460,21 @@ hr.vertical {
4475
4460
  display: inherit;
4476
4461
  }
4477
4462
 
4463
+ /** avatar.scss ----------------*/
4464
+ :root {
4465
+ --avatar-radius: var(--css-radius-small);
4466
+ --avatar-border-color: var(--sld-color-border);
4467
+ }
4468
+
4469
+ .avatar {
4470
+ position: relative;
4471
+ border-radius: var(--avatar-radius);
4472
+ border: 1px solid var(--avatar-border-color);
4473
+ display: grid;
4474
+ place-items: center;
4475
+ overflow: hidden;
4476
+ }
4477
+
4478
4478
  /** alert.scss ----------------*/
4479
4479
  :root {
4480
4480
  --alert-radius: var(--sld-radius-small);
@@ -4426,21 +4426,6 @@ hr.vertical {
4426
4426
  transform: scale(0, 0);
4427
4427
  }
4428
4428
 
4429
- /** avatar.scss ----------------*/
4430
- :root {
4431
- --avatar-radius: var(--css-radius-small);
4432
- --avatar-border-color: var(--sld-color-border);
4433
- }
4434
-
4435
- .avatar {
4436
- position: relative;
4437
- border-radius: var(--avatar-radius);
4438
- border: 1px solid var(--avatar-border-color);
4439
- display: grid;
4440
- place-items: center;
4441
- overflow: hidden;
4442
- }
4443
-
4444
4429
  /** backdrop.scss ----------------*/
4445
4430
  :root {
4446
4431
  --backdrop-background-color: var(--sld-color-foreground-alpha-high);
@@ -4475,6 +4460,21 @@ hr.vertical {
4475
4460
  display: inherit;
4476
4461
  }
4477
4462
 
4463
+ /** avatar.scss ----------------*/
4464
+ :root {
4465
+ --avatar-radius: var(--css-radius-small);
4466
+ --avatar-border-color: var(--sld-color-border);
4467
+ }
4468
+
4469
+ .avatar {
4470
+ position: relative;
4471
+ border-radius: var(--avatar-radius);
4472
+ border: 1px solid var(--avatar-border-color);
4473
+ display: grid;
4474
+ place-items: center;
4475
+ overflow: hidden;
4476
+ }
4477
+
4478
4478
  /** alert.scss ----------------*/
4479
4479
  :root {
4480
4480
  --alert-radius: var(--sld-radius-small);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medyll/idae-slotui-svelte",
3
- "version": "0.149.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": "^1.2.1",
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.57.0",
93
- "@medyll/idae-engine": "^1.146.0",
94
91
  "d3": "^7.9.0",
95
92
  "lerna": "^8.2.1",
96
93
  "npm-check-updates": "^17.1.16",