Skip to content

Commit

Permalink
refactor: remove scss file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 committed Sep 30, 2024
1 parent 0f38cb3 commit 3e65632
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 210 deletions.
199 changes: 2 additions & 197 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 src/color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// ---------------------------------------------------------------------

// Support for fallback values
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';

/* stylelint-disable no-descending-specificity */

Expand Down
12 changes: 6 additions & 6 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
@import './../node_modules/@aurodesignsystem/webcorestylesheets/src/core';

// Support for fallback values
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';

// Support for auroElement styles
@import './../node_modules/@aurodesignsystem/webcorestylesheets/dist/auroElement/auroElement';

@import './styles/notificationIcons.scss';
@import './styles/helpText.scss';
@import './styles/borders.scss';
@import './styles/label.scss';
@import './styles/notificationIcons';
@import './styles/helpText';
@import './styles/borders';
@import './styles/label';

// container styles - defines the look of the outer custom component
:host {
Expand All @@ -52,4 +52,4 @@
flex: 1;
}

@import './styles/input.scss';
@import './styles/input';
2 changes: 1 addition & 1 deletion src/styles/borders.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* stylelint-disable no-duplicate-selectors, max-nesting-depth, no-descending-specificity */

@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';
@import './../../node_modules/@aurodesignsystem/webcorestylesheets/src/breakpoints';

input {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/helpText.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';

.inputElement-helpText {
margin: var(--ds-size-50, $ds-size-50) 0;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/input.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Support for fallback values
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';

input {
flex: 1;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/label.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';

/* stylelint-disable no-duplicate-selectors, max-nesting-depth, no-descending-specificity, selector-max-combinators, selector-max-compound-selectors, selector-no-qualifying-type */

Expand Down
2 changes: 1 addition & 1 deletion src/styles/notificationIcons.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';

/* stylelint-disable selector-max-attribute, max-nesting-depth, selector-max-class, selector-max-combinators, selector-max-compound-selectors */

Expand Down
2 changes: 1 addition & 1 deletion src/tokens.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables.scss';
@import './../node_modules/@aurodesignsystem/design-tokens/dist/tokens/SCSSVariables';

:root {
--ds-auro-input-border-color: var(--ds-color-border-secondary-default, #{$ds-color-border-secondary-default});
Expand Down

0 comments on commit 3e65632

Please sign in to comment.