-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libs(Vue_Bootstrap): include vue-runtime and bs-styles in entrypoint
- Loading branch information
Sohan Deshar
committed
Jan 16, 2024
1 parent
5c4e43d
commit b096e58
Showing
5 changed files
with
120 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// scss-docs-start import-stack | ||
// Configuration | ||
@import "bootstrap/scss/functions"; | ||
@import "bootstrap/scss/variables"; | ||
@import "bootstrap/scss/maps"; | ||
@import "bootstrap/scss/mixins"; | ||
@import "bootstrap/scss/utilities"; | ||
|
||
// Layoutbootstrap/scss/ & components | ||
@import "bootstrap/scss/root"; | ||
// @import "bootstrap/scss/reboot"; | ||
// @import "bootstrap/scss/type"; | ||
// @import "bootstrap/scss/images"; | ||
// @import "bootstrap/scss/containers"; | ||
// @import "bootstrap/scss/grid"; | ||
// @import "bootstrap/scss/tables"; | ||
// @import "bootstrap/scss/forms"; | ||
// @import "bootstrap/scss/buttons"; | ||
// @import "bootstrap/scss/transitions"; | ||
// @import "bootstrap/scss/dropdown"; | ||
// @import "bootstrap/scss/button-group"; | ||
// @import "bootstrap/scss/nav"; | ||
// @import "bootstrap/scss/navbar"; | ||
// @import "bootstrap/scss/card"; | ||
// @import "bootstrap/scss/accordion"; | ||
// @import "bootstrap/scss/breadcrumb"; | ||
// @import "bootstrap/scss/pagination"; | ||
// @import "bootstrap/scss/badge"; | ||
// @import "bootstrap/scss/alert"; | ||
// @import "bootstrap/scss/progress"; | ||
// @import "bootstrap/scss/list-group"; | ||
// @import "bootstrap/scss/close"; | ||
// @import "bootstrap/scss/toasts"; | ||
@import "bootstrap/scss/modal"; | ||
// @import "bootstrap/scss/tooltip"; | ||
// @import "bootstrap/scss/popover"; | ||
// @import "bootstrap/scss/carousel"; | ||
// @import "bootstrap/scss/spinners"; | ||
// @import "bootstrap/scss/offcanvas"; | ||
// @import "bootstrap/scss/placeholders"; | ||
|
||
// // Helperbootstrap/scss/s | ||
// @import "bootstrap/scss/helpers"; | ||
|
||
// // Utilitbootstrap/scss/ies | ||
// @import "bootstrap/scss/utilities/api"; | ||
// // scss-docs-end import-stack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// This file imports all the styles that can be scoped. | ||
// i.e. styles that need not be in the global scope | ||
// css-selector { | ||
// @import "<path_to_this_file>" | ||
// } | ||
|
||
// scss-docs-start import-stack | ||
// Configuration | ||
//@import "bootstrap/scss/functions"; | ||
//@import "bootstrap/scss/variables"; | ||
//@import "bootstrap/scss/maps"; | ||
//@import "bootstrap/scss/mixins"; | ||
//@import "bootstrap/scss/utilities"; | ||
|
||
// Layoutbootstrap/scss/ & components | ||
// @import "bootstrap/scss/root"; | ||
@import "bootstrap/scss/reboot"; | ||
@import "bootstrap/scss/type"; | ||
@import "bootstrap/scss/images"; | ||
@import "bootstrap/scss/containers"; | ||
@import "bootstrap/scss/grid"; | ||
@import "bootstrap/scss/tables"; | ||
@import "bootstrap/scss/forms"; | ||
@import "bootstrap/scss/buttons"; | ||
@import "bootstrap/scss/transitions"; | ||
@import "bootstrap/scss/dropdown"; | ||
@import "bootstrap/scss/button-group"; | ||
@import "bootstrap/scss/nav"; | ||
@import "bootstrap/scss/navbar"; | ||
@import "bootstrap/scss/card"; | ||
@import "bootstrap/scss/accordion"; | ||
@import "bootstrap/scss/breadcrumb"; | ||
@import "bootstrap/scss/pagination"; | ||
@import "bootstrap/scss/badge"; | ||
@import "bootstrap/scss/alert"; | ||
@import "bootstrap/scss/progress"; | ||
@import "bootstrap/scss/list-group"; | ||
@import "bootstrap/scss/close"; | ||
@import "bootstrap/scss/toasts"; | ||
// @import "bootstrap/scss/modal"; | ||
@import "bootstrap/scss/tooltip"; | ||
@import "bootstrap/scss/popover"; | ||
@import "bootstrap/scss/carousel"; | ||
@import "bootstrap/scss/spinners"; | ||
@import "bootstrap/scss/offcanvas"; | ||
@import "bootstrap/scss/placeholders"; | ||
|
||
// Helperbootstrap/scss/s | ||
@import "bootstrap/scss/helpers"; | ||
|
||
// Utilitbootstrap/scss/ies | ||
@import "bootstrap/scss/utilities/api"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$primary: #0062a7; // setting the primary color | ||
|
||
$alert-padding-y: 5px; | ||
$alert-margin-bottom: 2px; | ||
|
||
@import 'global_bs'; // global bs styles needed for modal | ||
@import 'bootstrap-vue-next/dist/bootstrap-vue-next.css'; // bs-Vue styles | ||
|
||
.bootstrap-scope{ | ||
@import './scopable_bs'; | ||
font-family: arial, tahoma, helvetica, sans-serif; | ||
font-size: 1.1em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,7 +90,6 @@ module.exports = { | |
}, | ||
externals: { | ||
fs: "fs", | ||
vue: "vue" | ||
}, | ||
externalsType: "window", | ||
output: { | ||
|