Skip to content

Commit 6ba09e7

Browse files
committedMar 20, 2025··
chore: fix SASS round function deprecation
Replace it with the correct math.round to keep using the SASS function.
1 parent c9834cf commit 6ba09e7

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed
 

‎packages/design-system/src/components/OcButton/OcButton.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export default defineComponent({
200200

201201
<style lang="scss">
202202
@mixin oc-button-gap($factor) {
203-
gap: round(calc($oc-space-small * $factor / 2)) * 2;
203+
gap: math.round(calc($oc-space-small * $factor / 2)) * 2;
204204
}
205205
206206
@mixin oc-button-line-height($factor) {

‎packages/design-system/src/components/OcSpinner/OcSpinner.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ export default defineComponent({
5656

5757
<style lang="scss">
5858
@mixin oc-spinner-size($factor) {
59-
height: round(calc($oc-size-icon-default * $factor / 2)) * 2;
60-
width: round(calc($oc-size-icon-default * $factor / 2)) * 2;
59+
height: math.round(calc($oc-size-icon-default * $factor / 2)) * 2;
60+
width: math.round(calc($oc-size-icon-default * $factor / 2)) * 2;
6161
}
6262
6363
.oc-spinner {

‎packages/design-system/vite.config.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ export default defineConfig({
1010
css: {
1111
preprocessorOptions: {
1212
scss: {
13-
additionalData: `@import "${projectRootDir}/packages/design-system/src/styles/styles";`,
13+
additionalData: `
14+
@use "sass:math";
15+
@import "${projectRootDir}/packages/design-system/src/styles/styles";
16+
`,
1417
silenceDeprecations: ['legacy-js-api', 'import']
1518
}
1619
}

‎packages/web-pkg/vite.config.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ export default defineConfig({
1717
css: {
1818
preprocessorOptions: {
1919
scss: {
20-
additionalData: `@import "${projectRootDir}/packages/design-system/src/styles/styles";`,
20+
additionalData: `
21+
@use "sass:math";
22+
@import "${projectRootDir}/packages/design-system/src/styles/styles";
23+
`,
2124
silenceDeprecations: ['legacy-js-api', 'import']
2225
}
2326
}

‎vite.config.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,10 @@ export default defineConfig(({ mode, command }) => {
174174
css: {
175175
preprocessorOptions: {
176176
scss: {
177-
additionalData: `@import "${projectRootDir}/packages/design-system/src/styles/styles";${stripScssMarker}`,
177+
additionalData: `
178+
@use "sass:math";
179+
@import "${projectRootDir}/packages/design-system/src/styles/styles";${stripScssMarker}
180+
`,
178181
silenceDeprecations: ['legacy-js-api', 'import']
179182
}
180183
}

0 commit comments

Comments
 (0)
Please sign in to comment.