-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9871 from ovh/sync/master-develop
Sync/master develop
- Loading branch information
Showing
331 changed files
with
4,457 additions
and
943 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
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 |
---|---|---|
|
@@ -3,6 +3,14 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [5.10.4](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-10) | ||
|
||
**Note:** Version bump only for package @ovh-ux/ng-at-internet | ||
|
||
|
||
|
||
|
||
|
||
## [5.10.3](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-07-24) | ||
|
||
**Note:** Version bump only for package @ovh-ux/ng-at-internet | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,17 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [14.0.20](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-17) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* **pci:** scroll top at object page init ([#9667](https://github.com/ovh/manager/issues/9667)) ([276137a](https://github.com/ovh/manager/commit/276137adec9fc2d95a708dacc93b0da9add1113a)) | ||
|
||
|
||
|
||
|
||
|
||
## [14.0.19](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-01-19) | ||
|
||
**Note:** Version bump only for package @ovh-ux/ng-ovh-utils | ||
|
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
8 changes: 8 additions & 0 deletions
8
packages/components/ng-ovh-utils/src/scroll/scroll-directive.js
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 @@ | ||
export default /* @ngInject */ function scrollTopDirective(ScrollService) { | ||
return { | ||
restrict: 'A', | ||
link() { | ||
ScrollService.scrollTop(); | ||
}, | ||
}; | ||
} |
36 changes: 36 additions & 0 deletions
36
packages/components/ng-ovh-utils/src/scroll/scroll-service.js
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,36 @@ | ||
/** | ||
* @type service | ||
* @name ovhServices:ScrollService | ||
* @description | ||
* Provide scroll methods | ||
* @example | ||
* # Usage | ||
* <code:js> | ||
* export default class PciStoragesContainersContainerController { | ||
* */ /* @ngInject */ /* | ||
* constructor(ScrollService) { | ||
* this.ScrollService = ScrollService | ||
* } | ||
* | ||
* $onInit() { | ||
* ScrollService.scrollTop(); | ||
* }; | ||
*}; | ||
* | ||
* </code> | ||
*/ | ||
export default /* @ngInject */ function scrollService( | ||
$document, | ||
$timeout, | ||
$anchorScroll, | ||
) { | ||
this.scrollTop = function scrollTop() { | ||
$document[0].body.style.setProperty('height', 'auto', 'important'); | ||
$document[0].body.style.setProperty('overflow', 'auto'); | ||
$anchorScroll(); | ||
$timeout(function() { | ||
$document[0].body.style.removeProperty('height'); | ||
$document[0].body.style.removeProperty('overflow'); | ||
}); | ||
}; | ||
} |
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,12 @@ | ||
import angular from 'angular'; | ||
import scrollService from './scroll-service'; | ||
import scrollTopDirective from './scroll-directive'; | ||
|
||
const moduleName = 'ua.scroll'; | ||
|
||
angular | ||
.module(moduleName, ['ui.router']) | ||
.service('ScrollService', scrollService) | ||
.directive('ovhScrollTop', scrollTopDirective); | ||
|
||
export default moduleName; |
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 |
---|---|---|
|
@@ -3,6 +3,14 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.2.4](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-10) | ||
|
||
**Note:** Version bump only for package @ovh-ux/ng-shell-tracking | ||
|
||
|
||
|
||
|
||
|
||
## [0.2.3](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-07-24) | ||
|
||
**Note:** Version bump only for package @ovh-ux/ng-shell-tracking | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,17 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [1.2.0](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-17) | ||
|
||
|
||
### Features | ||
|
||
* fix old generator and add apiv2 generator ([#9844](https://github.com/ovh/manager/issues/9844)) ([60011de](https://github.com/ovh/manager/commit/60011de7ffff69d6ba2f228bd244f9d32b308908)) | ||
|
||
|
||
|
||
|
||
|
||
## [1.1.8](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-01-19) | ||
|
||
**Note:** Version bump only for package @ovh-ux/ng-ui-router-breadcrumb | ||
|
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
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 |
---|---|---|
|
@@ -3,6 +3,17 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [0.5.0](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-10) | ||
|
||
|
||
### Features | ||
|
||
* sms marketing consent ([#9797](https://github.com/ovh/manager/issues/9797)) ([5ca7626](https://github.com/ovh/manager/commit/5ca7626097dc31ef1b3565626ebc024cc816a150)) | ||
|
||
|
||
|
||
|
||
|
||
## [0.4.3](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-07-24) | ||
|
||
**Note:** Version bump only for package @ovh-ux/ovh-at-internet | ||
|
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
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 |
---|---|---|
|
@@ -3,6 +3,14 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [2.1.1](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-10) | ||
|
||
**Note:** Version bump only for package @ovh-ux/shell | ||
|
||
|
||
|
||
|
||
|
||
# [2.1.0](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-07-24) | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -3,6 +3,22 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.1.4](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-17) | ||
|
||
**Note:** Version bump only for package @ovh-ux/manager-carbon-calculator-app | ||
|
||
|
||
|
||
|
||
|
||
## [0.1.3](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-10) | ||
|
||
**Note:** Version bump only for package @ovh-ux/manager-carbon-calculator-app | ||
|
||
|
||
|
||
|
||
|
||
## [0.1.2](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-08) | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -3,6 +3,22 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [1.7.18](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-17) | ||
|
||
**Note:** Version bump only for package @ovh-ux/manager-cda-app | ||
|
||
|
||
|
||
|
||
|
||
## [1.7.17](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-10) | ||
|
||
**Note:** Version bump only for package @ovh-ux/manager-cda-app | ||
|
||
|
||
|
||
|
||
|
||
## [1.7.16](https://github.com/ovh/manager/compare/@ovh-ux/[email protected]...@ovh-ux/[email protected]) (2023-08-01) | ||
|
||
**Note:** Version bump only for package @ovh-ux/manager-cda-app | ||
|
Oops, something went wrong.