Skip to content

Commit

Permalink
MINOR: chore: post migration cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Jul 5, 2023
1 parent c85a50c commit 1477e1d
Show file tree
Hide file tree
Showing 140 changed files with 219 additions and 1,491 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"linebreak-style": ["error", "unix"],
"quotes": ["error", "double", "avoid-escape"],
"semi": ["error", "always"],
"vue/multi-word-component-names": "off",
"vue/order-in-components": [
"error",
{
Expand Down
3 changes: 0 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
# ignore test files
src/**/__test__/

# ignore design system app files
src/web/
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"src/BIMDataDirectives",
"src/BIMDataSmartComponents",
"design-system.png",
"index.js",
"vue3-plugin.js"
],
"scripts": {
Expand Down Expand Up @@ -41,4 +40,4 @@
"vue-router": "^4.2.2",
"vue3-clipboard": "^1.0.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,4 @@ export default {
};
</script>

<style lang="scss">
@import "./_keyframes.scss";
@import "./_BIMDataBigSpinner.scss";
</style>
<style scoped lang="scss" src="./_BIMDataBigSpinner.scss"></style>
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "./_keyframes.scss";

.animate-draw {
opacity: 1;
animation: 0.5s ease-in-out 0s infinite alternate fadeInOut;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default {
};
</script>

<style lang="scss">
<style scoped lang="scss">
.bimdata-breadcrumb {
display: flex;
align-items: center;
Expand Down
14 changes: 0 additions & 14 deletions src/BIMDataComponents/BIMDataBurgerMenu/BIMDataBurgerMenu.vue

This file was deleted.

7 changes: 1 addition & 6 deletions src/BIMDataComponents/BIMDataButton/BIMDataButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,4 @@ export default {
};
</script>

<style lang="scss" scoped>
@import "../../assets/css/variables.css";
@import "../../assets/css/utilities/_text.css";
</style>

<style lang="scss" src="./_BIMDataButton.scss"></style>
<style scoped lang="scss" src="./_BIMDataButton.scss"></style>
1 change: 1 addition & 0 deletions src/BIMDataComponents/BIMDataButton/_BIMDataButton.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import "../../assets/scss/mixins/_font-size.scss";

.bimdata-btn {
padding: 0 var(--spacing-unit);
height: fit-content;
Expand Down

This file was deleted.

This file was deleted.

7 changes: 1 addition & 6 deletions src/BIMDataComponents/BIMDataCard/BIMDataCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,4 @@ export default {
};
</script>

<style lang="scss" scoped>
@import "../../assets/css/variables.css";
@import "../../assets/css/utilities/_text.css";
</style>

<style lang="scss" src="./_BIMDataCard.scss"></style>
<style scoped lang="scss" src="./_BIMDataCard.scss"></style>
4 changes: 1 addition & 3 deletions src/BIMDataComponents/BIMDataCard/BIMDataCardBand.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,4 @@ export default {
};
</script>

<style lang="scss" scoped src="../../assets/css/variables.css"></style>

<style lang="scss" src="./_BIMDataCardBrand.scss"></style>
<style scoped lang="scss" src="./_BIMDataCardBrand.scss"></style>
1 change: 1 addition & 0 deletions src/BIMDataComponents/BIMDataCard/_BIMDataCard.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import "../../assets/scss/mixins/_font-size.scss";

.bimdata-card {
background-color: var(--color-white);
box-shadow: var(--box-shadow);
Expand Down
81 changes: 0 additions & 81 deletions src/BIMDataComponents/BIMDataCard/__tests__/BIMDataCard.test.js

This file was deleted.

This file was deleted.

7 changes: 1 addition & 6 deletions src/BIMDataComponents/BIMDataCheckbox/BIMDataCheckbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,4 @@ export default {
};
</script>

<style lang="scss" scoped>
@import "../../assets/css/variables.css";
@import "../../assets/css/utilities/_text.css";
</style>

<style lang="scss" src="./_BIMDataCheckbox.scss"></style>
<style scoped lang="scss" src="./_BIMDataCheckbox.scss"></style>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import BIMDATA MIXINS
@import "../../assets/scss/mixins/_font-size.scss";

//custom LABEL
.bimdata-checkbox {
position: relative;
Expand Down
Loading

0 comments on commit 1477e1d

Please sign in to comment.