Skip to content

Commit

Permalink
Pull request #1319: Release/patch 11.0.1
Browse files Browse the repository at this point in the history
Merge in OUI/oblique from release/patch_11.0.1 to master

* commit '0643f33c72ac7ed060d154ec8655ad84e778d85c': (52 commits)
  chore(toolchain): release version 11.0.1
  chore(toolchain): update dependencies and refactor accordingly
  fix(oblique/styles): make sure `ob-media-breakpoint-up` and `ob-media-breakpoint-down` don't overlap
  fix(sds/material): ensure that badges are not overlapping text
  fix(oblique/material): make sure badges are displayed above any following element
  feat(sandbox/material): add an example where a badge overlaps with the next element
  fix(sandbox/material): make the badge examples work
  refactor(sandbox/material): remove `mat-list` from the badge example
  fix(sds/tabbed-page): ensure that material components have enough time to load
  fix(sds/tabbed-page): keep fragment in URL when navigating to a tab and then in the body
  refactor(sds/input-clear): remove redundant `role=button` attributes
  refactor(sandbox/input-clear): remove redundant `role=button` attributes
  refactor(oblique/input-clear): remove redundant `role=button` attributes
  fix(oblique/schematics): add SSR check
  fix(oblique): inject `window` for ssr compatibility
  refactor(oblique/autocomplete): eliminate redundancy
  fix(oblique/autocomplete): ensure that results are vertically aligned
  fix(oblique/material): ensure hint and error are displayed right below their form element
  fix(oblique/material): ensure hint and error don't move when hovered
  refactor(oblique/material): remove form elements CSS code that had no effect
  ...
  • Loading branch information
nina-egger authored and gillerr committed Apr 2, 2024
2 parents c0a70a5 + 0643f33 commit 9fc7240
Show file tree
Hide file tree
Showing 46 changed files with 2,952 additions and 2,973 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ overrides:
- ignoreDeclarationSort: true

# rules that need some refactoring to be enabled
"@angular-eslint/consistent-component-styles": off
"@angular-eslint/prefer-standalone": off
"@angular-eslint/prefer-standalone-component": off
"@typescript-eslint/max-params": off
"@typescript-eslint/no-explicit-any": off
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# [11.0.1](https://github.com/oblique-bit/oblique/compare/11.0.0...11.0.1) (2024-04-02)

## Bug Fixes

- **autocomplete:** ensure that results are vertically aligned ([d2edee9](https://github.com/oblique-bit/oblique/commit/d2edee96a55430950f0aa253b16ac0fcfa3c81a1))
- **material:** ensure hint and error are displayed right below their form element ([421f4a9](https://github.com/oblique-bit/oblique/commit/421f4a96cf3c2f07bd5e9060512ed110c98df8c9))
- **material:** ensure hint and error don't move when hovered ([b25a9dc](https://github.com/oblique-bit/oblique/commit/b25a9dca87bd2994be6d28a93d21e8c7d7eb9218))
- **material:** keep font-size constant for stepper label ([646960f](https://github.com/oblique-bit/oblique/commit/646960f3318d0e68be43b52e96f1cf4d195b5f48))
- **material:** make sure badges are displayed above any following element ([1896545](https://github.com/oblique-bit/oblique/commit/18965451b7e91914231fd417a8e8f37b9e619cfe))
- **material:** reduce top padding for horizontal stepper label ([0c9679e](https://github.com/oblique-bit/oblique/commit/0c9679e9df2eddde4ebfa3104d90afa49971bbbc))
- **popover:** add support for `cdkFocusInitial` ([c15e624](https://github.com/oblique-bit/oblique/commit/c15e624474e83b053f4342d8be3f4b212cc8b2a6))
- **schematics:** add SSR check ([8003621](https://github.com/oblique-bit/oblique/commit/800362132a2f0470a8806fcba7cbd63d7c7cd43d))
- **schematics:** correct `jest-preset-angular` import in the `setupJest` file ([c481fea](https://github.com/oblique-bit/oblique/commit/c481fea5a45d742c20a22ea20baa13ed0e79d61a))
- **schematics:** correct link to changelog ([4ad1161](https://github.com/oblique-bit/oblique/commit/4ad11614aeb48386bf53e429f59402f0254e3513))
- **styles:** make sure `ob-media-breakpoint-up` and `ob-media-breakpoint-down` don't overlap ([ef18834](https://github.com/oblique-bit/oblique/commit/ef188340684a8923c2f46a7b9eb5ee84c4f1ac5d))
- **oblique:** inject `window` for ssr compatibility ([3fdbf89](https://github.com/oblique-bit/oblique/commit/3fdbf89fc6b212f27131ed8c7da66727b12fa8cc))

# [11.0.0](https://github.com/oblique-bit/oblique/compare/10.3.1...11.0.0) (2024-02-22)

## Bug Fixes
Expand Down
11 changes: 11 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ nodejsPipelineTemplate {
['project': 'sandbox', 'space': 'dev']
]
],
'release/minor_*': [
'cloudFoundry': [
['project': 'sds', 'space': 'dev'],
['project': 'sandbox', 'space': 'dev']
]
],
'release/patch_*': [
'cloudFoundry': [
['project': 'sandbox', 'space': 'patch']
]
],
master: [
'publish': [
'./dist/oblique',
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.deploy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@Library('jeap-pipelinelibrary@feature/oblique6') _
@Library('jeap-pipelinelibrary@feature/oblique7') _
nodejsPipelineReleaseTemplate {
nodeJsVersion = 20
}
Loading

0 comments on commit 9fc7240

Please sign in to comment.