Skip to content

Commit

Permalink
chore(deps): update old deps [ci visual] (#5581)
Browse files Browse the repository at this point in the history
  • Loading branch information
droshev authored Aug 24, 2024
1 parent 480751e commit 2fa173e
Show file tree
Hide file tree
Showing 13 changed files with 105 additions and 108 deletions.
2 changes: 1 addition & 1 deletion .github/actions/nodejs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ runs:
- name: Install dependencies
if: inputs.frozen-lockfile != 'true' || steps.node_modules.outputs.cache-hit != 'true'
run: yarn install --immutable-cache
run: yarn install --immutable
shell: bash
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[build]
ignore = 'git log -1 --pretty=%B | grep dependabot'
environment = { NODE_VERSION = "20.15.1", YARN_FLAGS="--immutable-cache" }
environment = { NODE_VERSION = "20.15.1", YARN_FLAGS="--frozen-lockfile" }
publish = "storybook-static"
command = "yarn run storybook:static"

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@
"standard-version": "9.3.2",
"start-server-and-test": "1.14.0",
"storybook": "^8.2.4",
"stylelint": "16.2.1",
"stylelint-config-standard": "36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint": "16.8.2",
"stylelint-config-standard": "36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "6.1.0",
"through2": "4.0.2",
"tocbot": "4.12.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/src/_nested-list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ $button: #{$fd-namespace}-button;
}

&.has-child {
padding-inline: 0 0;
padding-inline: 0;
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/styles/src/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $fd-button-badge-spacing: 0.25rem;
position: absolute;
height: auto;
width: 100%;
inset: calc((var(--fdButton_Clickable_Height) - var(--fdButton_Height)) * -0.5) 0 calc((var(--fdButton_Clickable_Height) - var(--fdButton_Height)) * -0.5) 0;
inset: calc((var(--fdButton_Clickable_Height) - var(--fdButton_Height)) * -0.5) 0;
}

&__text {
Expand Down
4 changes: 2 additions & 2 deletions packages/styles/src/dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ $menu: #{$fd-namespace}-menu;
border-radius: $fd-dialog-content-border-radius;

&--no-vertical-padding {
padding-block: 0 0;
padding-block: 0;
}

&--no-horizontal-padding {
padding-inline: 0 0;
padding-inline: 0;
}

&:not(:first-child) {
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/src/form-layout-grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ $gridCol: #{$fd-namespace}-col;
.#{$gridCol} {
@include fd-ellipsis();

padding-block: 0 0;
padding-block: 0;

&:not(.#{$formGroup}) {
align-self: center;
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/src/layout-panel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ $fd-layout-panel-element-border: solid 0.0625rem var(--sapGroup_TitleBorderColor

&.is-hidden {
max-height: 0;
padding-block: 0 0;
padding-block: 0;
overflow: hidden;
}
}
Expand Down
4 changes: 2 additions & 2 deletions packages/styles/src/mixins/table/_table-pop-in.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

&--main {
.#{$block}__cell {
padding-block: 0.25rem 0.25rem;
padding-block: 0.25rem;
border-bottom-color: transparent;
}

Expand Down Expand Up @@ -96,7 +96,7 @@

&--secondary {
.#{$block}__cell {
padding-block: 0.5rem 0.5rem;
padding-block: 0.5rem;
}

@include fd-hover() {
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/src/numeric-content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $fd-numeric-content-elements-spacing-s: 0.5rem !default;
}

.#{$block}__scale-container {
padding-block: 0.25rem 0.25rem;
padding-block: 0.25rem;
}

.#{$block}__launch-icon {
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/src/quick-view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ $fd-quick-view-group-item-indent: 0.75rem;

.#{$fd-namespace}-dialog__body & {
&__content {
padding-block: 0 0;
padding-block: 0;
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/styles/src/slider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ $slider-side-padding: calc((var(--fdSlider_Handle_Width) * 0.5) + #{$handle-outl
}

@include fd-hover() {
border: var(--fdSlider_Hover_Handle_Border);
border-color: var(--fdSlider_Handle_Border_Hover_Color);
background-color: var(--fdSlider_Hover_Handle_Background);
border: var(--fdSlider_Hover_Handle_Border);

@include fd-focus() {
outline: none;
Expand Down
Loading

0 comments on commit 2fa173e

Please sign in to comment.