-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing the exports in the mixins/extensions
- Loading branch information
1 parent
0ccd6b8
commit 7f37c1f
Showing
2 changed files
with
8 additions
and
16 deletions.
There are no files selected for viewing
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,14 +1,8 @@ | ||
export { default as AccordionContainer } from "./AccordionContainer"; | ||
export { default as ComputedFields } from "./ComputedFields"; | ||
export { default as CustomCss } from "./CustomCss"; | ||
export { default as DataManager } from "./DataManager"; | ||
export { default as DefaultValues } from "./DefaultValues"; | ||
export { default as InputText } from "./InputText"; | ||
export { default as LoadFieldComponents } from "./LoadFieldComponents"; | ||
export { default as LoopContainer } from "./LoopContainer"; | ||
export { default as MultiColumn } from "./MultiColumn"; | ||
export { default as PageNavigate } from "./PageNavigate"; | ||
export { default as Submit } from "./Submit"; | ||
// export { default as ValidationRules } from "./ValidationRules"; | ||
// export { default as VisibilityRule } from "./VisibilityRule"; | ||
export { default as Watchers } from "./Watchers"; | ||
const mixins = []; | ||
const modules = import.meta.glob("./*.js", { eager: true }); | ||
|
||
Object.entries(modules).forEach(([path, m]) => { | ||
mixins.push(m.default); | ||
}); | ||
|
||
export default mixins; |
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