-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicitly mark the package as an ES module (#78)
- Loading branch information
Showing
72 changed files
with
181 additions
and
178 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
dist/cjs/features/atom/autocompleteLite.js → dist/cjs/features/atom/autocompleteLite.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
dist/cjs/features/atom/dropdownToggle.js → dist/cjs/features/atom/dropdownToggle.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
dist/cjs/features/atom/index.js → dist/cjs/features/atom/index.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
dist/cjs/features/atom/inputToggle.js → dist/cjs/features/atom/inputToggle.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
dist/cjs/features/atom/label.js → dist/cjs/features/atom/label.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
dist/cjs/features/atom/nonblurToggle.js → dist/cjs/features/atom/nonblurToggle.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
'use strict'; | ||
|
||
var mergeModules = require('../../utils/mergeModules.cjs'); | ||
var autocompleteLite = require('../atom/autocompleteLite.cjs'); | ||
var inputToggle = require('../atom/inputToggle.cjs'); | ||
var label = require('../atom/label.cjs'); | ||
|
||
const autocomplete = props => mergeModules.mergeModules(autocompleteLite.autocompleteLite(props), inputToggle.inputToggle(), label.label()); | ||
|
||
exports.autocomplete = autocomplete; |
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
dist/cjs/features/molecule/dropdown.js → dist/cjs/features/molecule/dropdown.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
dist/cjs/features/molecule/index.js → dist/cjs/features/molecule/index.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use strict'; | ||
|
||
var mergeModules = require('../../utils/mergeModules.cjs'); | ||
var autocompleteLite = require('../atom/autocompleteLite.cjs'); | ||
var nonblurToggle = require('../atom/nonblurToggle.cjs'); | ||
var label = require('../atom/label.cjs'); | ||
var inputFocus = require('../atom/inputFocus.cjs'); | ||
var multiInput = require('../atom/multiInput.cjs'); | ||
|
||
const multiSelect = props => mergeModules.mergeModules(autocompleteLite.autocompleteLite({ | ||
...props, | ||
select: true | ||
}), nonblurToggle.nonblurToggle(), label.label(), inputFocus.inputFocus(), multiInput.multiInput()); | ||
|
||
exports.multiSelect = multiSelect; |
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
.../features/molecule/multiSelectDropdown.js → ...features/molecule/multiSelectDropdown.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
dist/cjs/features/molecule/supercomplete.js → dist/cjs/features/molecule/supercomplete.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
dist/cjs/hooks/useAutocomplete.js → dist/cjs/hooks/useAutocomplete.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
dist/cjs/hooks/useCombobox.js → dist/cjs/hooks/useCombobox.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
dist/cjs/hooks/useFocusCapture.js → dist/cjs/hooks/useFocusCapture.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
dist/cjs/hooks/useMultiSelect.js → dist/cjs/hooks/useMultiSelect.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
dist/cjs/utils/mergeModules.js → dist/cjs/utils/mergeModules.cjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
dist/esm/features/atom/autocompleteLite.js → dist/esm/features/atom/autocompleteLite.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
dist/esm/features/atom/dropdownToggle.js → dist/esm/features/atom/dropdownToggle.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export { autocompleteLite } from './autocompleteLite.mjs'; | ||
export { autoFocus } from './autoFocus.mjs'; | ||
export { autoInline } from './autoInline.mjs'; | ||
export { dropdownToggle } from './dropdownToggle.mjs'; | ||
export { inputFocus } from './inputFocus.mjs'; | ||
export { inputToggle } from './inputToggle.mjs'; | ||
export { label } from './label.mjs'; | ||
export { multiInput } from './multiInput.mjs'; | ||
export { nonblurToggle } from './nonblurToggle.mjs'; |
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
dist/esm/features/atom/inputToggle.js → dist/esm/features/atom/inputToggle.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
dist/esm/features/atom/label.js → dist/esm/features/atom/label.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { getId } from '../../common.js'; | ||
import { getId } from '../../common.mjs'; | ||
|
||
const label = () => ({ | ||
id | ||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
dist/esm/features/atom/nonblurToggle.js → dist/esm/features/atom/nonblurToggle.mjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { mergeModules } from '../../utils/mergeModules.mjs'; | ||
import { autocompleteLite } from '../atom/autocompleteLite.mjs'; | ||
import { inputToggle } from '../atom/inputToggle.mjs'; | ||
import { label } from '../atom/label.mjs'; | ||
|
||
const autocomplete = props => mergeModules(autocompleteLite(props), inputToggle(), label()); | ||
|
||
export { autocomplete }; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { mergeModules } from '../../utils/mergeModules.mjs'; | ||
import { autocompleteLite } from '../atom/autocompleteLite.mjs'; | ||
import { dropdownToggle } from '../atom/dropdownToggle.mjs'; | ||
|
||
const dropdown = props => mergeModules(autocompleteLite({ | ||
...props, | ||
select: true, | ||
deselectOnClear: false | ||
}), dropdownToggle(props)); | ||
|
||
export { dropdown }; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export { autocomplete } from './autocomplete.mjs'; | ||
export { dropdown } from './dropdown.mjs'; | ||
export { multiSelect } from './multiSelect.mjs'; | ||
export { multiSelectDropdown } from './multiSelectDropdown.mjs'; | ||
export { supercomplete } from './supercomplete.mjs'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { mergeModules } from '../../utils/mergeModules.mjs'; | ||
import { autocompleteLite } from '../atom/autocompleteLite.mjs'; | ||
import { nonblurToggle } from '../atom/nonblurToggle.mjs'; | ||
import { label } from '../atom/label.mjs'; | ||
import { inputFocus } from '../atom/inputFocus.mjs'; | ||
import { multiInput } from '../atom/multiInput.mjs'; | ||
|
||
const multiSelect = props => mergeModules(autocompleteLite({ | ||
...props, | ||
select: true | ||
}), nonblurToggle(), label(), inputFocus(), multiInput()); | ||
|
||
export { multiSelect }; |
Oops, something went wrong.