@formkit/pro 1.0.0-alpha.76 → 1.0.0-alpha.77
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/index.cjs +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/transferList/transferList.ts +1 -8
package/package.json
CHANGED
|
@@ -41,11 +41,6 @@ import {
|
|
|
41
41
|
emptyMessageInner,
|
|
42
42
|
} from '../sections/transferListSections'
|
|
43
43
|
import { default as transferListFeature } from '../features/transferlist'
|
|
44
|
-
import {
|
|
45
|
-
dropdownDisplayHandler,
|
|
46
|
-
getSelections,
|
|
47
|
-
} from '../features/dropdownFeatures'
|
|
48
|
-
import { setSelectedOption } from '../features/transferlist'
|
|
49
44
|
import { options, defaultIcon, localize } from '@formkit/inputs'
|
|
50
45
|
import { $if } from '../compose'
|
|
51
46
|
|
|
@@ -170,9 +165,7 @@ export const transferlist: FormKitProInput = {
|
|
|
170
165
|
* Additional features that make this input work.
|
|
171
166
|
*/
|
|
172
167
|
features: [
|
|
173
|
-
transferListFeature
|
|
174
|
-
dropdownDisplayHandler(getSelections, setSelectedOption)
|
|
175
|
-
),
|
|
168
|
+
transferListFeature,
|
|
176
169
|
options,
|
|
177
170
|
defaultIcon('moveRight', 'right'),
|
|
178
171
|
defaultIcon('moveLeft', 'left'),
|