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

test: fix by adapting the year #2924

Merged
merged 3 commits into from
Jan 5, 2025
Merged
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
2 changes: 1 addition & 1 deletion e2e/cypress/e2e/02-0-navigation/db-footer.cy.js
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ context('db-footer', () => {
it('Standard footer exists', function () {
cy.get(selector).eq(0).should('have.class', 'has-border');
cy.get(selector).eq(0);
cy.get(`${selector} > span`).contains('Copyright 2024 DB Systel');
cy.get(`${selector} > span`).contains('Copyright 2025 DB Systel');
});

it('Custom footer exists', function () {

Unchanged files with check annotations Beta

/**
* an optional [`aria-label`-attribute](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label)
*/
@Prop({ reflect: true }) arialabel: string;

Check warning on line 27 in packages/db-ui-elements-stencil/src/components/db-breadcrumb/db-breadcrumb.tsx

GitHub Actions / validate / Lint

The @prop name "arialabel conflicts with a key in the HTMLElement prototype. Please choose a different name
private compData: DbLinkType[];
private hasItemsWrapper: boolean;
/**
* If the button controls a grouping of other elements, the ariaexpanded state indicates whether the controlled grouping is currently expanded or collapsed.
*/
@Prop({ reflect: true }) ariaexpanded?: 'true' | 'false' = null;

Check warning on line 11 in packages/db-ui-elements-stencil/src/components/db-button/db-button.tsx

GitHub Actions / validate / Lint

The @prop name "ariaexpanded conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* Defines the button as a toggle button. The value of aria-pressed describes the state of the button.
*/
@Prop({ reflect: true }) ariapressed?: 'true' | 'false' = null;

Check warning on line 16 in packages/db-ui-elements-stencil/src/components/db-button/db-button.tsx

GitHub Actions / validate / Lint

The @prop name "ariapressed conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* The disabled attribute can be set to keep a user from clicking on the button.
/**
* The autofocus content attribute allows the author to indicate that a control is to be focused as soon as the page is loaded, allowing the user to just start typing without having to manually focus the main control.
*/
@Prop({ reflect: true }) autofocus: boolean;

Check warning on line 16 in packages/db-ui-elements-stencil/src/components/db-checkbox/db-checkbox.tsx

GitHub Actions / validate / Lint

The @prop name "autofocus conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* The checked content attribute is a boolean attribute that gives the default checkedness of the input element.
/**
* The ariainvalid attribute is used to indicate that the value entered into an input field does not conform to the format expected by the application.
*/
@Prop({ reflect: true }) ariainvalid?:

Check warning on line 17 in packages/db-ui-elements-stencil/src/components/db-input/db-input.tsx

GitHub Actions / validate / Lint

The @prop name "ariainvalid conflicts with a key in the HTMLElement prototype. Please choose a different name
| 'false'
| 'grammar'
| 'spelling'
/**
* The ariarequired attribute can be applied to a form element, to indicate to an AT that it is required to complete the form.
*/
@Prop({ reflect: true }) ariarequired?: 'false' | 'true' = null;

Check warning on line 26 in packages/db-ui-elements-stencil/src/components/db-input/db-input.tsx

GitHub Actions / validate / Lint

The @prop name "ariarequired conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* User agents sometimes have features for helping users fill forms in, for example prefilling the user's address based on earlier user input.
/**
* The autofocus content attribute allows the author to indicate that a control is to be focused as soon as the page is loaded, allowing the user to just start typing without having to manually focus the main control.
*/
@Prop({ reflect: true }) autofocus = false;

Check warning on line 36 in packages/db-ui-elements-stencil/src/components/db-input/db-input.tsx

GitHub Actions / validate / Lint

The @prop name "autofocus conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* The description attribute specifies the description/hint of the input.
* out the notification if set to "assertive", while it will wait for the
* user's idleness when set to "polite"
*/
@Prop({ reflect: true }) arialive: 'assertive' | 'polite' = 'polite';

Check warning on line 14 in packages/db-ui-elements-stencil/src/components/db-notification/db-notifications.tsx

GitHub Actions / validate / Lint

The @prop name "arialive conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* Notifications have two variants ("hovering" and "alert") which change the styling.
* The arialabel attribute is a string attribute and defines the text
* content of the aria-label in the pagination.
*/
@Prop({ reflect: true }) arialabel = 'Pagination';

Check warning on line 86 in packages/db-ui-elements-stencil/src/components/db-pagination/db-pagination.tsx

GitHub Actions / validate / Lint

The @prop name "arialabel conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* Optional id for the caption aria label - otherwise random id will be set
/**
* The autofocus content attribute allows the author to indicate that a control is to be focused as soon as the page is loaded, allowing the user to just start typing without having to manually focus the main control.
*/
@Prop({ reflect: true }) autofocus: boolean;

Check warning on line 12 in packages/db-ui-elements-stencil/src/components/db-radio/db-radio.tsx

GitHub Actions / validate / Lint

The @prop name "autofocus conflicts with a key in the HTMLElement prototype. Please choose a different name
/**
* The checked content attribute is a boolean attribute that gives the default checkedness of the input element.