Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[next] chore(mixins): remove deprecated mixins #4830

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/composables/useIsFullscreen/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,3 @@ window.addEventListener('resize', () => {
export function useIsFullscreen() {
return readonly(isFullscreen)
}

/**
* @deprecated Is to be removed in v9.0.0 with Vue 3 migration.
* Use `composables/useIsFullscreen` instead.
* Defined and exported only for isFullscreen mixin.
*/
export const isFullscreenState = readonly(isFullscreen)
7 changes: 0 additions & 7 deletions src/composables/useIsMobile/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,3 @@ window.addEventListener('resize', () => {
export function useIsMobile() {
return readonly(isMobile)
}

/**
* @deprecated Is to be removed in v9.0.0 with Vue 3 migration.
* Use `composables/useIsMobile` instead.
* Defined and exported only for isMobile mixin.
*/
export const isMobileState = readonly(isMobile)
2 changes: 0 additions & 2 deletions src/mixins/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,5 @@
*/

export { default as clickOutsideOptions } from './clickOutsideOptions/index.js'
export { default as isFullscreen } from './isFullscreen/index.js'
// export { default as isMobile } from './isMobile/index.js'
// export { default as richEditor } from './richEditor/index.js'
export { default as userStatus } from './userStatus.js'
35 changes: 0 additions & 35 deletions src/mixins/isFullscreen/index.js

This file was deleted.

35 changes: 0 additions & 35 deletions src/mixins/isMobile/index.js

This file was deleted.

Loading