Skip to content

build(deps-dev): bump @storybook/test from 8.6.4 to 8.6.12 #1071

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

Closed
Closed
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
61 changes: 51 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@
"@storybook/blocks": "8.6.4",
"@storybook/manager-api": "8.6.4",
"@storybook/preview-api": "8.6.4",
"@storybook/test": "8.6.4",
"@storybook/test": "8.6.12",
"@storybook/theming": "8.6.4",
"@storybook/web-components": "8.6.4",
"@storybook/web-components-vite": "8.6.4",

Unchanged files with check annotations Beta

type Constructor<T = {}> = new (...args: any[]) => T;
export declare class SelectableMixinInterface extends LitElement {

Check warning on line 8 in packages/uui-base/lib/mixins/SelectableMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Enable the ability to select this element.
* @attr
* @fires {UUISelectableEvent} selected - fires when the media card is selected
* @fires {UUISelectableEvent} deselected - fires when the media card is deselected
*/
class SelectableMixinClass extends superClass {

Check warning on line 42 in packages/uui-base/lib/mixins/SelectableMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
private _selectable = false;
/**
* Enable the ability to select this element.
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class SelectOnlyMixinInterface extends SelectableMixinInterface {

Check warning on line 6 in packages/uui-base/lib/mixins/SelectOnlyMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
selectOnly: boolean;
}
>(
superClass: T,
) => {
class SelectOnlyMixinClass extends superClass {

Check warning on line 22 in packages/uui-base/lib/mixins/SelectOnlyMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
private _selectOnly = false;
/**
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class PopoverTargetMixinInterface {

Check warning on line 7 in packages/uui-base/lib/mixins/PopoverTargetMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set a popovertarget.
* @type {string}
/**
* Popover target mixin class containing the popover target functionality.
*/
class PopoverTargetMixinClass extends superClass {

Check warning on line 34 in packages/uui-base/lib/mixins/PopoverTargetMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set a popovertarget.
* @type {string}
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class LabelMixinInterface {

Check warning on line 6 in packages/uui-base/lib/mixins/LabelMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Label to be used for aria-label and potentially as visual label for some components
* @type {string}
/**
* Label mixin class containing the label functionality.
*/
class LabelMixinClass extends superClass {

Check warning on line 31 in packages/uui-base/lib/mixins/LabelMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Label to be used for aria-label and potentially as visual label for some components
* @type {string}
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class ActiveMixinInterface {

Check warning on line 6 in packages/uui-base/lib/mixins/ActiveMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set this boolean to true for then the related composition is sorted.
* @type {boolean}
export const ActiveMixin = <T extends Constructor<LitElement>>(
superClass: T,
) => {
class ActiveMixinClass extends superClass {

Check warning on line 25 in packages/uui-base/lib/mixins/ActiveMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set this boolean to true for then the related composition is sorted.
* @type {boolean}