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

Bump sass-embedded from 1.81.0 to 1.83.4 #3721

Merged
merged 1 commit into from
Feb 10, 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
Bump sass-embedded from 1.81.0 to 1.83.4
Bumps [sass-embedded](https://github.com/sass/embedded-host-node) from 1.81.0 to 1.83.4.
- [Changelog](https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md)
- [Commits](sass/embedded-host-node@1.81.0...1.83.4)

---
updated-dependencies:
- dependency-name: sass-embedded
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
dependabot[bot] authored Jan 20, 2025
commit 0a42c5082111ccd76a52d236f0998e92de551d59
168 changes: 84 additions & 84 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
@@ -177,7 +177,7 @@
"react": "18.3.1",
"react-dom": "18.3.1",
"react-svg-loader": "^3.0.1",
"sass-embedded": "^1.81.0",
"sass-embedded": "^1.83.4",
"sass-loader": "^14.2.1",
"sass-migrator": "^2.2.0",
"sassdoc": "^2.7.0",

Unchanged files with check annotations Beta

root = document?.querySelector(':root');
(root as HTMLElement).style.setProperty('font-size', fontSize);
} catch(e) {
console.error(e);

Check warning on line 43 in .storybook/preview.tsx

GitHub Actions / Build / Build

Unexpected console statement
}
return (
<div>
};
}
onChange = (e: SyntheticEvent<any>, { newValue }: { newValue: string }) => {

Check warning on line 151 in examples/bpk-component-autosuggest/examples.js

GitHub Actions / Build / Build

'SyntheticEvent' is not defined
this.setState({
value: newValue,
});
};
}
onBarClick = (e: SyntheticEvent<any>, { point }: { point: number }) => {

Check warning on line 42 in examples/bpk-component-barchart/hocs.js

GitHub Actions / Build / Build

'SyntheticEvent' is not defined
this.setState({
selectedPoint: point,
});
}
onChange = (
e: SyntheticInputEvent<HTMLElement>,

Check warning on line 141 in examples/bpk-component-fieldset/examples.js

GitHub Actions / Build / Build

'SyntheticInputEvent' is not defined
{ newValue }: { newValue: string },
) => {
this.setState({
}
type FieldsetProps = {
...$Exact<BpkFieldsetProps>,

Check warning on line 198 in examples/bpk-component-fieldset/examples.js

GitHub Actions / Build / Build

'$Exact' is not defined
validStates: Array<mixed>,
};
};
}
onChange = (e: SyntheticInputEvent<HTMLElement>) => {

Check warning on line 232 in examples/bpk-component-fieldset/examples.js

GitHub Actions / Build / Build

'SyntheticInputEvent' is not defined
this.setState({
value: e.target.value,
checked: e.target.checked,
<BpkInfoBannerExpandableState
message="Success alert"
type={ALERT_TYPES.SUCCESS}
action={{title: "Sample Action", callback: () => alert('Hello from action')}}

Check warning on line 200 in examples/bpk-component-info-banner/examples.js

GitHub Actions / Build / Build

Unexpected alert
toggleButtonLabel="View more"
>
{longMessage}
this.state = { dialingCode: '44_uk', value: '' };
}
onChange = (e: SyntheticInputEvent<HTMLElement>) => {

Check warning on line 72 in examples/bpk-component-phone-input/examples.js

GitHub Actions / Build / Build

'SyntheticInputEvent' is not defined
this.setState({ value: e.target.value });
};
onDialingCodeChange = (e: SyntheticInputEvent<HTMLElement>) => {

Check warning on line 76 in examples/bpk-component-phone-input/examples.js

GitHub Actions / Build / Build

'SyntheticInputEvent' is not defined
this.setState({ dialingCode: e.target.value });
};
library we use for it. At some point we plan to replace it, but for now
it won't pass the accessibility test.
*/
it.skip('should not have programmatically-detectable accessibility issues', async () => {

Check warning on line 44 in packages/bpk-component-autosuggest/src/accessibility-test.js

GitHub Actions / Build / Build

Disabled test
const { container } = render(
<BpkAutosuggest
suggestions={suggestions}