@formkit/pro 0.122.6 → 0.122.7-5d2a1fd
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/autocomplete/autocomplete.ts +10 -8
- package/colorpicker/colorpicker.ts +3 -5
- package/datepicker/datepicker.ts +3 -5
- package/dropdown/dropdown.ts +10 -8
- package/index.cjs +1 -1
- package/index.d.ts +48 -1
- package/index.mjs +1 -1
- package/mask/mask.ts +3 -4
- package/package.json +49 -1
- package/rating/rating.ts +4 -3
- package/repeater/repeater.ts +3 -4
- package/slider/index.mjs +1 -1
- package/slider/slider.ts +3 -4
- package/taglist/taglist.ts +10 -8
- package/toggle/toggle.ts +3 -3
- package/togglebuttons/togglebuttons.ts +15 -19
- package/transferList/transferList.ts +3 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { options, defaultIcon, localize } from '@formkit/inputs'
|
|
2
|
-
import { FormKitProInput } from '
|
|
2
|
+
import type { FormKitProInput } from '../index'
|
|
3
3
|
import {
|
|
4
4
|
outer,
|
|
5
5
|
wrapper,
|
|
@@ -20,13 +20,15 @@ import {
|
|
|
20
20
|
removeSelection,
|
|
21
21
|
selectionWrapper,
|
|
22
22
|
selections,
|
|
23
|
-
} from '
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
23
|
+
} from '@formkit/pro/autocomplete'
|
|
24
|
+
import {
|
|
25
|
+
dropdownFamily,
|
|
26
|
+
autocompleteProps,
|
|
27
|
+
searchInput,
|
|
28
|
+
autocompleteFeatures,
|
|
29
|
+
usePopover,
|
|
30
|
+
$if,
|
|
31
|
+
} from '@formkit/pro'
|
|
30
32
|
|
|
31
33
|
/**
|
|
32
34
|
* Input definition for a autocomplete input.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormKitProInput } from '
|
|
1
|
+
import { FormKitProInput } from '../index'
|
|
2
2
|
import {
|
|
3
3
|
outer,
|
|
4
4
|
wrapper,
|
|
@@ -41,11 +41,9 @@ import {
|
|
|
41
41
|
formatSwitcher,
|
|
42
42
|
swatches,
|
|
43
43
|
swatch,
|
|
44
|
-
} from '
|
|
45
|
-
import { $if } from '../compose'
|
|
44
|
+
} from '@formkit/pro/colorpicker'
|
|
46
45
|
import { defaultIcon, options, localize } from '@formkit/inputs'
|
|
47
|
-
import colorFeature from '
|
|
48
|
-
import usePopover from '../features/popover'
|
|
46
|
+
import { colorFeature, usePopover, $if } from '@formkit/pro'
|
|
49
47
|
|
|
50
48
|
/**
|
|
51
49
|
* Input definition for a colorpicker input.
|
package/datepicker/datepicker.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormKitProInput } from '
|
|
1
|
+
import { FormKitProInput } from '../index'
|
|
2
2
|
import {
|
|
3
3
|
calendar,
|
|
4
4
|
calendarHeader,
|
|
@@ -49,11 +49,9 @@ import {
|
|
|
49
49
|
yearsHeader,
|
|
50
50
|
removeSelection,
|
|
51
51
|
panelClose,
|
|
52
|
-
} from '
|
|
53
|
-
import { useCalendar } from '../features/calendar'
|
|
54
|
-
import usePopover from '../features/popover'
|
|
52
|
+
} from '@formkit/pro/datepicker'
|
|
55
53
|
import { defaultIcon, localize } from '@formkit/inputs'
|
|
56
|
-
import maskOverlay from '
|
|
54
|
+
import { useCalendar, usePopover, maskOverlay } from '@formkit/pro'
|
|
57
55
|
|
|
58
56
|
/**
|
|
59
57
|
* Input definition for a datepicker input.
|
package/dropdown/dropdown.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormKitProInput } from '
|
|
1
|
+
import { FormKitProInput } from '../index'
|
|
2
2
|
import { options, defaultIcon, localize } from '@formkit/inputs'
|
|
3
3
|
import {
|
|
4
4
|
outer,
|
|
@@ -29,13 +29,15 @@ import {
|
|
|
29
29
|
tagLabel,
|
|
30
30
|
tagLoading,
|
|
31
31
|
truncationCount,
|
|
32
|
-
} from '
|
|
33
|
-
import {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
32
|
+
} from '@formkit/pro/dropdown'
|
|
33
|
+
import {
|
|
34
|
+
dropdownFamily,
|
|
35
|
+
dropdownProps,
|
|
36
|
+
selectorHandlers,
|
|
37
|
+
dropdownFeatures,
|
|
38
|
+
usePopover,
|
|
39
|
+
$if,
|
|
40
|
+
} from '@formkit/pro'
|
|
39
41
|
|
|
40
42
|
/**
|
|
41
43
|
* Input definition for a dropdown input.
|