-
Notifications
You must be signed in to change notification settings - Fork 133
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
feat: ng 19 #12883
base: main
Are you sure you want to change the base?
feat: ng 19 #12883
Conversation
# Conflicts: # package.json # yarn.lock
✅ Deploy Preview for fundamental-ngx ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Visit the preview URL for this PR (updated for commit 9bb9e08): https://fundamental-ngx-gh--pr12883-feat-ng19-2-qqeq5363.web.app (expires Thu, 02 Jan 2025 21:30:16 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 41b993ee8e451bd7c6770b342ce142dc886eacff |
00a1186
to
c072000
Compare
@use '@sap-ui/common-css/dist/sass/_common-mixins.scss' as sap; | ||
@use 'fundamental-styles/dist/avatar-group.css'; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -22,7 +22,7 @@ export class CardCounterDirective implements OnInit, OnChanges, CssClassBuilder | |||
* the status represented by the Object Status. | |||
* can be one of the following: 'negative' | 'critical' | 'positive' | 'informative' | 'neutral' | |||
*/ | |||
statusInput = input<ObjectStatus>('neutral', { alias: 'status' }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need the alias
@use '@sap-ui/common-css/dist/sass/_common-mixins.scss' as sap; | ||
@use 'fundamental-styles/dist/link.css'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why @use ?
@use '@angular/cdk/overlay-prebuilt.css'; | ||
@use 'fundamental-styles/dist/message-toast.css'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why @use?
@use 'fundamental-styles/dist/popover.css'; | ||
@use '@angular/cdk/overlay-prebuilt.css'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why @use?
@@ -24,7 +24,8 @@ import { NestedListPopoverInterface } from './nested-list-popover.interface'; | |||
templateUrl: './nested-list-popover.component.html', | |||
styleUrl: './nested-list-popover.component.scss', | |||
encapsulation: ViewEncapsulation.None, | |||
changeDetection: ChangeDetectionStrategy.OnPush | |||
changeDetection: ChangeDetectionStrategy.OnPush, | |||
standalone: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be removed
@@ -31,7 +31,8 @@ import { NestedListInterface } from './nested-list.interface'; | |||
template: ` <ng-content></ng-content> `, | |||
// eslint-disable-next-line @angular-eslint/component-selector | |||
selector: '[cxNestedList], [fdx-nested-list], ul[fdx-nested-list]', | |||
providers: [contentDensityObserverProviders()] | |||
providers: [contentDensityObserverProviders()], | |||
standalone: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be removed
@@ -10,7 +10,8 @@ import { NestedListComponent } from '../nested-list/nested-list.component'; | |||
selector: 'fdx-prepared-nested-list', | |||
templateUrl: './prepared-nested-list.component.html', | |||
encapsulation: ViewEncapsulation.None, | |||
changeDetection: ChangeDetectionStrategy.OnPush | |||
changeDetection: ChangeDetectionStrategy.OnPush, | |||
standalone: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be removed
@@ -1,7 +1,8 @@ | |||
import { Directive, HostBinding } from '@angular/core'; | |||
|
|||
@Directive({ | |||
selector: '[cxSideNavButton], [fdx-side-nav-button]' | |||
selector: '[cxSideNavButton], [fdx-side-nav-button]', | |||
standalone: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be removed
@@ -3,7 +3,8 @@ import { NestedListComponent } from '@fundamental-ngx/cx/nested-list'; | |||
|
|||
@Directive({ | |||
// eslint-disable-next-line @angular-eslint/directive-selector | |||
selector: '[cxSideNavigationUtility], [fdx-side-nav-utility]' | |||
selector: '[cxSideNavigationUtility], [fdx-side-nav-utility]', | |||
standalone: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no it can't, in angular 19 default for standalone is true
closes #12741
BREAKING CHANGES: angular 19 support