@marianmeres/stuic 1.105.0 → 1.106.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.
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -22,13 +22,14 @@ export { default as Switch, SwitchConfig, type SwitchPreHook, } from './componen
|
|
|
22
22
|
export { default as Thc, type THC, isTHCNotEmpty } from './components/Thc/Thc.svelte';
|
|
23
23
|
export { default as X } from './components/X/X.svelte';
|
|
24
24
|
export { autogrow } from './actions/autogrow.js';
|
|
25
|
+
export { autoscroll } from './actions/autoscroll.js';
|
|
25
26
|
export { draggable, droppable, type DraggableOptions, type DroppableOptions, } from './actions/drag-drop.js';
|
|
26
27
|
export { focusTrap, type FocusTrapOptions } from './actions/focus-trap.js';
|
|
27
28
|
export { onOutside } from './actions/on-outside.js';
|
|
28
29
|
export { preSubmitValidityCheck } from './actions/pre-submit-validity-check.js';
|
|
29
30
|
export { tooltip, TooltipConfig, type TooltipOptions, } from './actions/tooltip/tooltip.js';
|
|
30
|
-
export { validate, type ValidateOptions, type ValidationResult, } from './actions/validate.js';
|
|
31
31
|
export { trim } from './actions/trim.js';
|
|
32
|
+
export { validate, type ValidateOptions, type ValidationResult, } from './actions/validate.js';
|
|
32
33
|
export { calculateAlignment } from './utils/calculate-alignment.js';
|
|
33
34
|
export { DevicePointer } from './utils/device-pointer.js';
|
|
34
35
|
export { getId } from './utils/get-id.js';
|
package/dist/index.js
CHANGED
|
@@ -37,13 +37,14 @@ export { default as Thc, isTHCNotEmpty } from './components/Thc/Thc.svelte';
|
|
|
37
37
|
export { default as X } from './components/X/X.svelte';
|
|
38
38
|
// actions
|
|
39
39
|
export { autogrow } from './actions/autogrow.js';
|
|
40
|
+
export { autoscroll } from './actions/autoscroll.js';
|
|
40
41
|
export { draggable, droppable, } from './actions/drag-drop.js';
|
|
41
42
|
export { focusTrap } from './actions/focus-trap.js';
|
|
42
43
|
export { onOutside } from './actions/on-outside.js';
|
|
43
44
|
export { preSubmitValidityCheck } from './actions/pre-submit-validity-check.js';
|
|
44
45
|
export { tooltip, TooltipConfig, } from './actions/tooltip/tooltip.js';
|
|
45
|
-
export { validate, } from './actions/validate.js';
|
|
46
46
|
export { trim } from './actions/trim.js';
|
|
47
|
+
export { validate, } from './actions/validate.js';
|
|
47
48
|
// utils
|
|
48
49
|
export { calculateAlignment } from './utils/calculate-alignment.js';
|
|
49
50
|
export { DevicePointer } from './utils/device-pointer.js';
|