@empathyco/x-components 5.0.0-alpha.18 → 5.0.0-alpha.19
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/CHANGELOG.md +9 -0
- package/design-system/deprecated-full-theme.css +2287 -2287
- package/docs/API-reference/api/x-components.fixedheaderandasideslayout.md +20 -19
- package/docs/API-reference/api/x-components.md +3 -3
- package/docs/API-reference/api/x-components.multicolumnmaxwidthlayout.md +27 -10
- package/docs/API-reference/api/x-components.singlecolumnlayout.md +27 -10
- package/docs/API-reference/components/common/layouts/x-components.multi-column-max-width-layout.md +4 -4
- package/docs/API-reference/components/common/layouts/x-components.single-column-layout.md +4 -4
- package/js/components/layouts/fixed-header-and-asides-layout.vue.js +1 -1
- package/js/components/layouts/fixed-header-and-asides-layout.vue.js.map +1 -1
- package/js/components/layouts/fixed-header-and-asides-layout.vue2.js +38 -28
- package/js/components/layouts/fixed-header-and-asides-layout.vue2.js.map +1 -1
- package/js/components/layouts/fixed-header-and-asides-layout.vue3.js +1 -1
- package/js/components/layouts/multi-column-max-width-layout.vue.js +1 -1
- package/js/components/layouts/multi-column-max-width-layout.vue.js.map +1 -1
- package/js/components/layouts/multi-column-max-width-layout.vue2.js +35 -19
- package/js/components/layouts/multi-column-max-width-layout.vue2.js.map +1 -1
- package/js/components/layouts/multi-column-max-width-layout.vue4.js +1 -1
- package/js/components/layouts/single-column-layout.vue.js +1 -1
- package/js/components/layouts/single-column-layout.vue.js.map +1 -1
- package/js/components/layouts/single-column-layout.vue2.js +32 -16
- package/js/components/layouts/single-column-layout.vue2.js.map +1 -1
- package/js/components/layouts/single-column-layout.vue3.js +1 -1
- package/js/components/layouts/use-layouts.js +28 -0
- package/js/components/layouts/use-layouts.js.map +1 -0
- package/package.json +2 -2
- package/report/x-components.api.json +12859 -11660
- package/report/x-components.api.md +71 -24
- package/types/components/layouts/fixed-header-and-asides-layout.vue.d.ts +31 -11
- package/types/components/layouts/fixed-header-and-asides-layout.vue.d.ts.map +1 -1
- package/types/components/layouts/multi-column-max-width-layout.vue.d.ts +43 -7
- package/types/components/layouts/multi-column-max-width-layout.vue.d.ts.map +1 -1
- package/types/components/layouts/single-column-layout.vue.d.ts +43 -7
- package/types/components/layouts/single-column-layout.vue.d.ts.map +1 -1
- package/types/components/layouts/use-layouts.d.ts +14 -0
- package/types/components/layouts/use-layouts.d.ts.map +1 -0
- package/docs/API-reference/api/x-components.fixedheaderandasideslayout.isbackdropvisible.md +0 -11
- package/docs/API-reference/api/x-components.fixedheaderandasideslayout.leftasideanimation.md +0 -11
- package/docs/API-reference/api/x-components.fixedheaderandasideslayout.rightasideanimation.md +0 -11
- package/docs/API-reference/api/x-components.fixedheaderandasideslayout.scrollposition.md +0 -11
- package/docs/API-reference/api/x-components.fixedheaderandasideslayout.setposition.md +0 -22
- package/docs/API-reference/api/x-components.multicolumnmaxwidthlayout.asideanimation.md +0 -13
- package/docs/API-reference/api/x-components.singlecolumnlayout.asideanimation.md +0 -13
- package/js/components/layouts/layouts.mixin.js +0 -35
- package/js/components/layouts/layouts.mixin.js.map +0 -1
- package/types/components/layouts/layouts.mixin.d.ts +0 -24
- package/types/components/layouts/layouts.mixin.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.0-alpha.19](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.18...@empathyco/x-components@5.0.0-alpha.19) (2024-05-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Replace `layoutsmixin` by `useLayouts` composable (#1480) ([71feaae](https://github.com/empathyco/x/commit/71feaae8493fb683919967bdf52de161a4e4fbf2))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [5.0.0-alpha.18](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.17...@empathyco/x-components@5.0.0-alpha.18) (2024-05-23)
|
|
7
16
|
|
|
8
17
|
|