diff --git a/components/badgedirective/BadgeDirective.js b/components/badgedirective/BadgeDirective.js index aea2a65de..07267f3f8 100644 --- a/components/badgedirective/BadgeDirective.js +++ b/components/badgedirective/BadgeDirective.js @@ -1,5 +1,4 @@ -import { DomHandler } from 'primevue/utils'; -import { UniqueComponentId } from 'primevue/utils'; +import { DomHandler, UniqueComponentId } from 'primevue/utils'; const BadgeDirective = { beforeMount(el, options) { diff --git a/components/utils/Utils.js b/components/utils/Utils.js index 01879ce2a..aaa8be247 100644 --- a/components/utils/Utils.js +++ b/components/utils/Utils.js @@ -1,8 +1,8 @@ import ConnectedOverlayScrollHandler from './ConnectedOverlayScrollHandler'; import DomHandler from './DomHandler'; -import ObjectUtils from './ObjectUtils'; -import ZIndexUtils from './ZIndexUtils'; -import UniqueComponentId from './UniqueComponentId'; import EventBus from './EventBus'; +import ObjectUtils from './ObjectUtils'; +import UniqueComponentId from './UniqueComponentId'; +import ZIndexUtils from './ZIndexUtils'; export { ConnectedOverlayScrollHandler, DomHandler, ObjectUtils, ZIndexUtils, UniqueComponentId, EventBus };