@updevs/components 1.0.0-alpha.1 → 1.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -22
- package/assets/styles/_bootstrap-components.scss +38 -0
- package/assets/styles/_bootstrap-config.scss +7 -0
- package/assets/styles/_bootstrap-override.scss +78 -0
- package/assets/styles/_config.scss +9 -0
- package/assets/styles/_core.scss +71 -0
- package/assets/styles/_mixins.scss +2 -0
- package/assets/styles/_updevs.scss +9 -0
- package/assets/styles/_utilities.scss +98 -0
- package/assets/styles/_variables-dark.scss +17 -0
- package/assets/styles/_variables.scss +934 -0
- package/assets/styles/fonts/_webfonts.scss +15 -0
- package/assets/styles/layout/_animations.scss +62 -0
- package/assets/styles/layout/_core.scss +61 -0
- package/assets/styles/layout/_dark.scss +72 -0
- package/assets/styles/layout/_footer.scss +12 -0
- package/assets/styles/layout/_navbar.scss +380 -0
- package/assets/styles/layout/_page.scss +169 -0
- package/assets/styles/layout/_root.scss +72 -0
- package/assets/styles/mixins/_functions.scss +43 -0
- package/assets/styles/mixins/_mixins.scss +68 -0
- package/assets/styles/ui/_accordion.scss +24 -0
- package/assets/styles/ui/_alerts.scss +59 -0
- package/assets/styles/ui/_avatars.scss +118 -0
- package/assets/styles/ui/_badges.scss +79 -0
- package/assets/styles/ui/_breadcrumbs.scss +50 -0
- package/assets/styles/ui/_button-group.scss +16 -0
- package/assets/styles/ui/_buttons.scss +265 -0
- package/assets/styles/ui/_calendars.scss +104 -0
- package/assets/styles/ui/_cards.scss +586 -0
- package/assets/styles/ui/_carousel.scss +68 -0
- package/assets/styles/ui/_charts.scss +61 -0
- package/assets/styles/ui/_chips.scss +0 -0
- package/assets/styles/ui/_close.scss +7 -0
- package/assets/styles/ui/_datagrid.scss +17 -0
- package/assets/styles/ui/_dropdowns.scss +117 -0
- package/assets/styles/ui/_empty.scss +65 -0
- package/assets/styles/ui/_flags.scss +31 -0
- package/assets/styles/ui/_forms.scss +224 -0
- package/assets/styles/ui/_grid.scss +115 -0
- package/assets/styles/ui/_icons.scss +72 -0
- package/assets/styles/ui/_images.scss +15 -0
- package/assets/styles/ui/_legend.scss +12 -0
- package/assets/styles/ui/_lists.scss +127 -0
- package/assets/styles/ui/_loaders.scss +72 -0
- package/assets/styles/ui/_login.scss +3 -0
- package/assets/styles/ui/_markdown.scss +42 -0
- package/assets/styles/ui/_modals.scss +67 -0
- package/assets/styles/ui/_nav.scss +92 -0
- package/assets/styles/ui/_offcanvas.scss +17 -0
- package/assets/styles/ui/_pagination.scss +56 -0
- package/assets/styles/ui/_payments.scss +28 -0
- package/assets/styles/ui/_placeholder.scss +9 -0
- package/assets/styles/ui/_popovers.scss +2 -0
- package/assets/styles/ui/_progress.scss +107 -0
- package/assets/styles/ui/_ribbons.scss +156 -0
- package/assets/styles/ui/_stars.scss +13 -0
- package/assets/styles/ui/_status.scss +163 -0
- package/assets/styles/ui/_steps.scss +152 -0
- package/assets/styles/ui/_switch-icon.scss +211 -0
- package/assets/styles/ui/_tables.scss +150 -0
- package/assets/styles/ui/_tags.scss +57 -0
- package/assets/styles/ui/_timeline.scss +61 -0
- package/assets/styles/ui/_toasts.scss +19 -0
- package/assets/styles/ui/_toolbar.scss +10 -0
- package/assets/styles/ui/_tracking.scss +29 -0
- package/assets/styles/ui/_type.scss +169 -0
- package/assets/styles/ui/forms/_form-check.scss +91 -0
- package/assets/styles/ui/forms/_form-colorinput.scss +54 -0
- package/assets/styles/ui/forms/_form-custom.scss +28 -0
- package/assets/styles/ui/forms/_form-icon.scss +35 -0
- package/assets/styles/ui/forms/_form-imagecheck.scss +104 -0
- package/assets/styles/ui/forms/_form-selectgroup.scss +153 -0
- package/assets/styles/ui/forms/_validation.scss +13 -0
- package/assets/styles/ui/typo/_hr.scss +74 -0
- package/assets/styles/utils/_background.scss +15 -0
- package/assets/styles/utils/_colors.scss +40 -0
- package/assets/styles/utils/_opacity.scss +7 -0
- package/assets/styles/utils/_scroll.scss +47 -0
- package/assets/styles/utils/_shadow.scss +17 -0
- package/assets/styles/utils/_sizing.scss +10 -0
- package/assets/styles/utils/_text.scss +15 -0
- package/button/ng-package.json +7 -0
- package/button/src/button.component.html +8 -0
- package/button/src/button.component.scss +5 -0
- package/button/src/button.component.spec.ts +23 -0
- package/button/src/button.component.ts +154 -0
- package/button/src/index.ts +1 -0
- package/button/src/public-api.ts +2 -0
- package/button/src/upd-button.module.ts +17 -0
- package/card/ng-package.json +7 -0
- package/card/src/card.component.html +105 -0
- package/card/src/card.component.scss +47 -0
- package/card/src/card.component.spec.ts +23 -0
- package/card/src/card.component.ts +112 -0
- package/card/src/directives/card-actions.directive.spec.ts +8 -0
- package/card/src/directives/card-actions.directive.ts +11 -0
- package/card/src/directives/card-footer.directive.spec.ts +8 -0
- package/card/src/directives/card-footer.directive.ts +11 -0
- package/card/src/directives/card-header.directive.spec.ts +8 -0
- package/card/src/directives/card-header.directive.ts +11 -0
- package/card/src/directives/card-image.directive.spec.ts +8 -0
- package/card/src/directives/card-image.directive.ts +11 -0
- package/card/src/directives/public-api.ts +4 -0
- package/card/src/index.ts +1 -0
- package/card/src/public-api.ts +3 -0
- package/card/src/types/card-state.type.ts +1 -0
- package/card/src/types/card-style.type.ts +1 -0
- package/card/src/types/hover-effect.type.ts +1 -0
- package/card/src/types/public-api.ts +5 -0
- package/card/src/types/ribbon-style.type.ts +1 -0
- package/card/src/types/status-position.type.ts +1 -0
- package/card/src/upd-card.module.ts +32 -0
- package/dropdown/ng-package.json +7 -0
- package/dropdown/src/dropdown.component.html +32 -0
- package/dropdown/src/dropdown.component.scss +19 -0
- package/dropdown/src/dropdown.component.spec.ts +23 -0
- package/dropdown/src/dropdown.component.ts +182 -0
- package/dropdown/src/index.ts +1 -0
- package/dropdown/src/models/dropdown-item.ts +22 -0
- package/dropdown/src/models/dropdown-item.type.ts +1 -0
- package/dropdown/src/models/public-api.ts +2 -0
- package/dropdown/src/public-api.ts +3 -0
- package/dropdown/src/upd-dropdown.module.ts +25 -0
- package/form/ng-package.json +7 -0
- package/form/src/form.module.ts +10 -0
- package/form/src/index.ts +1 -0
- package/form/src/public-api.ts +1 -0
- package/form-controls/checkbox/ng-package.json +7 -0
- package/form-controls/checkbox/src/checkbox.component.html +7 -0
- package/form-controls/checkbox/src/checkbox.component.scss +0 -0
- package/form-controls/checkbox/src/checkbox.component.spec.ts +23 -0
- package/form-controls/checkbox/src/checkbox.component.ts +48 -0
- package/form-controls/checkbox/src/index.ts +1 -0
- package/form-controls/checkbox/src/public-api.ts +3 -0
- package/form-controls/checkbox/src/upd-checkbox.module.ts +19 -0
- package/form-controls/input/ng-package.json +7 -0
- package/form-controls/input/src/directives/input-append.directive.spec.ts +8 -0
- package/form-controls/input/src/directives/input-append.directive.ts +11 -0
- package/form-controls/input/src/directives/input-prepend.directive.spec.ts +8 -0
- package/form-controls/input/src/directives/input-prepend.directive.ts +11 -0
- package/form-controls/input/src/directives/public-api.ts +2 -0
- package/form-controls/input/src/index.ts +1 -0
- package/form-controls/input/src/input.component.html +82 -0
- package/form-controls/input/src/input.component.scss +13 -0
- package/form-controls/input/src/input.component.spec.ts +23 -0
- package/form-controls/input/src/input.component.ts +124 -0
- package/form-controls/input/src/public-api.ts +4 -0
- package/form-controls/input/src/types/input.type.ts +1 -0
- package/form-controls/input/src/types/loader-position.type.ts +1 -0
- package/form-controls/input/src/types/public-api.ts +2 -0
- package/form-controls/input/src/upd-input.module.ts +29 -0
- package/form-controls/radio/ng-package.json +7 -0
- package/form-controls/radio/src/index.ts +1 -0
- package/form-controls/radio/src/public-api.ts +2 -0
- package/form-controls/radio/src/radio.component.html +7 -0
- package/form-controls/radio/src/radio.component.scss +0 -0
- package/form-controls/radio/src/radio.component.spec.ts +23 -0
- package/form-controls/radio/src/radio.component.ts +47 -0
- package/form-controls/radio/src/upd-radio.module.ts +17 -0
- package/form-controls/select/ng-package.json +7 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.html +41 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.scss +6 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.spec.ts +21 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.ts +69 -0
- package/form-controls/select/src/components/shared.scss +40 -0
- package/form-controls/select/src/components/single/select.component.html +53 -0
- package/form-controls/select/src/components/single/select.component.scss +3 -0
- package/form-controls/select/src/components/single/select.component.spec.ts +23 -0
- package/form-controls/select/src/components/single/select.component.ts +58 -0
- package/form-controls/select/src/index.ts +1 -0
- package/form-controls/select/src/models/abstractions/base-select.component.ts +259 -0
- package/form-controls/select/src/models/public-api.ts +1 -0
- package/form-controls/select/src/models/select-item.ts +26 -0
- package/form-controls/select/src/public-api.ts +4 -0
- package/form-controls/select/src/upd-select.module.ts +32 -0
- package/form-controls/textarea/ng-package.json +7 -0
- package/form-controls/textarea/src/index.ts +1 -0
- package/form-controls/textarea/src/public-api.ts +2 -0
- package/form-controls/textarea/src/textarea.component.html +8 -0
- package/form-controls/textarea/src/textarea.component.scss +0 -0
- package/form-controls/textarea/src/textarea.component.spec.ts +23 -0
- package/form-controls/textarea/src/textarea.component.ts +47 -0
- package/form-controls/textarea/src/upd-textarea.module.ts +17 -0
- package/form-controls/time-picker/ng-package.json +7 -0
- package/form-controls/time-picker/src/assets/i18n/en.json +5 -0
- package/form-controls/time-picker/src/assets/i18n/pt.json +5 -0
- package/form-controls/time-picker/src/index.ts +1 -0
- package/form-controls/time-picker/src/public-api.ts +3 -0
- package/form-controls/time-picker/src/time-picker.component.html +17 -0
- package/form-controls/time-picker/src/time-picker.component.scss +10 -0
- package/form-controls/time-picker/src/time-picker.component.spec.ts +21 -0
- package/form-controls/time-picker/src/time-picker.component.ts +110 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.html +44 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.scss +47 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.spec.ts +21 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.ts +107 -0
- package/form-controls/time-picker/src/upd-time-picker.module.ts +39 -0
- package/layout/ng-package.json +7 -0
- package/layout/src/abstractions/base-page.component.ts +21 -0
- package/layout/src/abstractions/public-api.ts +1 -0
- package/layout/src/assets/i18n/en.json +5 -0
- package/layout/src/assets/i18n/pt.json +5 -0
- package/layout/src/index.ts +1 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.html +1 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.scss +0 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.spec.ts +23 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.ts +10 -0
- package/layout/src/layouts/blank-layout/blank-layout.module.ts +17 -0
- package/layout/src/layouts/public-api.ts +4 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.html +14 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.scss +0 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.spec.ts +23 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.ts +31 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.module.ts +52 -0
- package/layout/src/models/public-api.ts +1 -0
- package/layout/src/models/upd-layout-config.model.ts +71 -0
- package/layout/src/models/upd-layout.config.ts +37 -0
- package/layout/src/pages/auth-flow/auth-flow-routing.module.ts +21 -0
- package/layout/src/pages/auth-flow/auth-flow.module.ts +29 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.html +1 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.scss +0 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.spec.ts +23 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.ts +10 -0
- package/layout/src/pages/auth-flow/login/login.component.html +96 -0
- package/layout/src/pages/auth-flow/login/login.component.scss +0 -0
- package/layout/src/pages/auth-flow/login/login.component.spec.ts +23 -0
- package/layout/src/pages/auth-flow/login/login.component.ts +26 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.html +1 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.scss +0 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.spec.ts +23 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.ts +10 -0
- package/layout/src/pages/auth-flow/public-api.ts +5 -0
- package/layout/src/pages/public-api.ts +1 -0
- package/layout/src/partials/footer/footer-copyright.directive.spec.ts +8 -0
- package/layout/src/partials/footer/footer-copyright.directive.ts +9 -0
- package/layout/src/partials/footer/footer.component.html +30 -0
- package/layout/src/partials/footer/footer.component.scss +0 -0
- package/{src/lib/components.component.spec.ts → layout/src/partials/footer/footer.component.spec.ts} +6 -6
- package/layout/src/partials/footer/footer.component.ts +73 -0
- package/layout/src/partials/footer/public-api.ts +2 -0
- package/layout/src/partials/header/header-style.type.ts +1 -0
- package/layout/src/partials/header/header.component.html +163 -0
- package/layout/src/partials/header/header.component.scss +0 -0
- package/layout/src/partials/header/header.component.spec.ts +23 -0
- package/layout/src/partials/header/header.component.ts +86 -0
- package/layout/src/partials/header/public-api.ts +2 -0
- package/layout/src/partials/page-header/page-header.component.html +19 -0
- package/layout/src/partials/page-header/page-header.component.scss +0 -0
- package/layout/src/partials/page-header/page-header.component.spec.ts +23 -0
- package/layout/src/partials/page-header/page-header.component.ts +11 -0
- package/layout/src/partials/page-header/public-api.ts +1 -0
- package/layout/src/partials/public-api.ts +4 -0
- package/layout/src/partials/sidebar/public-api.ts +1 -0
- package/layout/src/partials/sidebar/sidebar.component.html +62 -0
- package/layout/src/partials/sidebar/sidebar.component.scss +0 -0
- package/layout/src/partials/sidebar/sidebar.component.spec.ts +23 -0
- package/layout/src/partials/sidebar/sidebar.component.ts +161 -0
- package/layout/src/public-api.ts +7 -0
- package/layout/src/services/public-api.ts +1 -0
- package/{src/lib/components.service.spec.ts → layout/src/services/upd-layout-config.service.spec.ts} +4 -4
- package/layout/src/services/upd-layout-config.service.ts +20 -0
- package/layout/src/tools/layout.constants.ts +18 -0
- package/layout/src/upd-layout.module.ts +34 -0
- package/link/ng-package.json +7 -0
- package/link/src/index.ts +1 -0
- package/link/src/link.component.html +3 -0
- package/link/src/link.component.scss +3 -0
- package/link/src/link.component.spec.ts +23 -0
- package/link/src/link.component.ts +48 -0
- package/link/src/public-api.ts +3 -0
- package/link/src/target.type.ts +1 -0
- package/link/src/upd-link.module.ts +17 -0
- package/list/ng-package.json +7 -0
- package/list/src/assets/i18n/en.json +5 -0
- package/list/src/assets/i18n/pt.json +5 -0
- package/list/src/index.ts +1 -0
- package/list/src/list.component.html +58 -0
- package/list/src/list.component.scss +21 -0
- package/list/src/list.component.spec.ts +23 -0
- package/list/src/list.component.ts +147 -0
- package/list/src/models/badge-position.type.ts +1 -0
- package/list/src/models/list-item.model.ts +35 -0
- package/list/src/models/list-item.ts +21 -0
- package/list/src/models/public-api.ts +2 -0
- package/list/src/public-api.ts +3 -0
- package/list/src/upd-list.module.ts +30 -0
- package/ng-package.json +9 -6
- package/package.json +8 -5
- package/popover/ng-package.json +7 -0
- package/popover/src/index.ts +1 -0
- package/popover/src/popover.component.html +20 -0
- package/popover/src/popover.component.scss +8 -0
- package/popover/src/popover.component.spec.ts +23 -0
- package/popover/src/popover.component.ts +53 -0
- package/popover/src/popover.directive.spec.ts +8 -0
- package/popover/src/popover.directive.ts +128 -0
- package/popover/src/public-api.ts +3 -0
- package/popover/src/upd-popover.module.ts +20 -0
- package/src/lib/index.ts +1 -0
- package/src/lib/public-api.ts +2 -0
- package/src/lib/types/component-size.type.ts +1 -0
- package/src/lib/types/public-api.ts +2 -0
- package/src/lib/types/validation-status.type.ts +1 -0
- package/src/lib/upd-components.module.ts +6 -0
- package/src/public-api.ts +1 -7
- package/tsconfig.lib.json +11 -11
- package/src/lib/components.component.ts +0 -14
- package/src/lib/components.module.ts +0 -17
- package/src/lib/components.service.ts +0 -9
package/README.md
CHANGED
|
@@ -1,24 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
# After updating tabler
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Replace all "tblr" to "upd"
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
> Note: Don't forget to add `--project components` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build components` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build components`, go to the dist folder `cd dist/components` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test components` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
5
|
+
LOCAL:
|
|
6
|
+
"@updevs/icons": "file:../icons",
|
|
7
|
+
"@updevs/sdk": "file:../sdk",
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// Layout & components
|
|
2
|
+
@import "bootstrap/scss/root";
|
|
3
|
+
@import "bootstrap/scss/reboot";
|
|
4
|
+
@import "bootstrap/scss/type";
|
|
5
|
+
@import "bootstrap/scss/images";
|
|
6
|
+
@import "bootstrap/scss/containers";
|
|
7
|
+
@import "bootstrap/scss/grid";
|
|
8
|
+
@import "bootstrap/scss/tables";
|
|
9
|
+
@import "bootstrap/scss/forms";
|
|
10
|
+
@import "bootstrap/scss/buttons";
|
|
11
|
+
@import "bootstrap/scss/transitions";
|
|
12
|
+
@import "bootstrap/scss/dropdown";
|
|
13
|
+
@import "bootstrap/scss/button-group";
|
|
14
|
+
@import "bootstrap/scss/nav";
|
|
15
|
+
@import "bootstrap/scss/navbar";
|
|
16
|
+
@import "bootstrap/scss/card";
|
|
17
|
+
@import "bootstrap/scss/accordion";
|
|
18
|
+
@import "bootstrap/scss/breadcrumb";
|
|
19
|
+
@import "bootstrap/scss/pagination";
|
|
20
|
+
@import "bootstrap/scss/badge";
|
|
21
|
+
@import "bootstrap/scss/alert";
|
|
22
|
+
@import "bootstrap/scss/progress";
|
|
23
|
+
@import "bootstrap/scss/list-group";
|
|
24
|
+
@import "bootstrap/scss/close";
|
|
25
|
+
@import "bootstrap/scss/toasts";
|
|
26
|
+
@import "bootstrap/scss/modal";
|
|
27
|
+
@import "bootstrap/scss/tooltip";
|
|
28
|
+
@import "bootstrap/scss/popover";
|
|
29
|
+
@import "bootstrap/scss/carousel";
|
|
30
|
+
@import "bootstrap/scss/spinners";
|
|
31
|
+
@import "bootstrap/scss/offcanvas";
|
|
32
|
+
@import "bootstrap/scss/placeholders";
|
|
33
|
+
|
|
34
|
+
// Helpers
|
|
35
|
+
@import "bootstrap/scss/helpers";
|
|
36
|
+
|
|
37
|
+
// Utilities
|
|
38
|
+
@import "bootstrap/scss/utilities/api";
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
@mixin caret($direction: down) {
|
|
2
|
+
$selector: "after";
|
|
3
|
+
|
|
4
|
+
@if $direction == "left" {
|
|
5
|
+
$selector: "before";
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
&:#{$selector} {
|
|
9
|
+
content: "";
|
|
10
|
+
display: inline-block;
|
|
11
|
+
vertical-align: $caret-vertical-align;
|
|
12
|
+
width: $caret-width;
|
|
13
|
+
height: $caret-width;
|
|
14
|
+
border-bottom: 1px var(--#{$prefix}border-style);
|
|
15
|
+
border-left: 1px var(--#{$prefix}border-style);
|
|
16
|
+
margin-right: 0.1em;
|
|
17
|
+
|
|
18
|
+
@if $direction != "left" {
|
|
19
|
+
margin-left: $caret-spacing;
|
|
20
|
+
} @else {
|
|
21
|
+
margin-right: $caret-spacing;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@if $direction == down {
|
|
25
|
+
transform: rotate(-45deg);
|
|
26
|
+
} @else if $direction == up {
|
|
27
|
+
transform: rotate(135deg);
|
|
28
|
+
} @else if $direction == end {
|
|
29
|
+
transform: rotate(-135deg);
|
|
30
|
+
} @else {
|
|
31
|
+
transform: rotate(45deg);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
@if $direction == "left" {
|
|
36
|
+
&:after {
|
|
37
|
+
content: none;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@mixin alert-variant($background: null, $border: null, $color: null) {
|
|
43
|
+
// Override bootstrap core
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@mixin button-variant(
|
|
47
|
+
$background: null,
|
|
48
|
+
$border: null,
|
|
49
|
+
$color: null,
|
|
50
|
+
$hover-background: null,
|
|
51
|
+
$hover-border: null,
|
|
52
|
+
$hover-color: null,
|
|
53
|
+
$active-background: null,
|
|
54
|
+
$active-border: null,
|
|
55
|
+
$active-color: null,
|
|
56
|
+
$disabled-background: null,
|
|
57
|
+
$disabled-border: null,
|
|
58
|
+
$disabled-color: null
|
|
59
|
+
) {
|
|
60
|
+
// Override bootstrap core
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
@mixin button-outline-variant(
|
|
64
|
+
$color: null,
|
|
65
|
+
$color-hover: null,
|
|
66
|
+
$active-background: null,
|
|
67
|
+
$active-border: null,
|
|
68
|
+
$active-color: null
|
|
69
|
+
) {
|
|
70
|
+
// Override bootstrap core
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
//
|
|
74
|
+
// TODO: remove when https://github.com/twbs/bootstrap/pull/37425/ will be released
|
|
75
|
+
//
|
|
76
|
+
@function opaque($background, $foreground) {
|
|
77
|
+
@return mix(rgba($foreground, 1), $background, opacity($foreground) * 100%);
|
|
78
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
@import "config";
|
|
2
|
+
@import "bootstrap-components";
|
|
3
|
+
|
|
4
|
+
@import "fonts/webfonts";
|
|
5
|
+
|
|
6
|
+
@import "layout/root";
|
|
7
|
+
@import "layout/animations";
|
|
8
|
+
@import "layout/core";
|
|
9
|
+
@import "layout/navbar";
|
|
10
|
+
@import "layout/page";
|
|
11
|
+
@import "layout/footer";
|
|
12
|
+
@import "layout/dark";
|
|
13
|
+
|
|
14
|
+
@import "ui/accordion";
|
|
15
|
+
@import "ui/alerts";
|
|
16
|
+
@import "ui/avatars";
|
|
17
|
+
@import "ui/badges";
|
|
18
|
+
@import "ui/breadcrumbs";
|
|
19
|
+
@import "ui/buttons";
|
|
20
|
+
@import "ui/button-group";
|
|
21
|
+
@import "ui/calendars";
|
|
22
|
+
@import "ui/carousel";
|
|
23
|
+
@import "ui/cards";
|
|
24
|
+
@import "ui/close";
|
|
25
|
+
@import "ui/dropdowns";
|
|
26
|
+
@import "ui/datagrid";
|
|
27
|
+
@import "ui/empty";
|
|
28
|
+
@import "ui/grid";
|
|
29
|
+
@import "ui/icons";
|
|
30
|
+
@import "ui/images";
|
|
31
|
+
@import "ui/forms";
|
|
32
|
+
@import "ui/forms/form-icon";
|
|
33
|
+
@import "ui/forms/form-colorinput";
|
|
34
|
+
@import "ui/forms/form-imagecheck";
|
|
35
|
+
@import "ui/forms/form-selectgroup";
|
|
36
|
+
@import "ui/forms/form-custom";
|
|
37
|
+
@import "ui/forms/form-check";
|
|
38
|
+
@import "ui/forms/validation";
|
|
39
|
+
@import "ui/legend";
|
|
40
|
+
@import "ui/lists";
|
|
41
|
+
@import "ui/loaders";
|
|
42
|
+
@import "ui/login";
|
|
43
|
+
@import "ui/modals";
|
|
44
|
+
@import "ui/nav";
|
|
45
|
+
@import "ui/stars";
|
|
46
|
+
@import "ui/pagination";
|
|
47
|
+
@import "ui/popovers";
|
|
48
|
+
@import "ui/progress";
|
|
49
|
+
@import "ui/ribbons";
|
|
50
|
+
@import "ui/markdown";
|
|
51
|
+
@import "ui/placeholder";
|
|
52
|
+
@import "ui/steps";
|
|
53
|
+
@import "ui/status";
|
|
54
|
+
@import "ui/switch-icon";
|
|
55
|
+
@import "ui/tables";
|
|
56
|
+
@import "ui/tags";
|
|
57
|
+
@import "ui/toasts";
|
|
58
|
+
@import "ui/toolbar";
|
|
59
|
+
@import "ui/tracking";
|
|
60
|
+
@import "ui/timeline";
|
|
61
|
+
@import "ui/type";
|
|
62
|
+
@import "ui/charts";
|
|
63
|
+
@import "ui/offcanvas";
|
|
64
|
+
|
|
65
|
+
@import "utils/background";
|
|
66
|
+
@import "utils/colors";
|
|
67
|
+
@import "utils/scroll";
|
|
68
|
+
@import "utils/sizing";
|
|
69
|
+
@import "utils/opacity";
|
|
70
|
+
@import "utils/shadow";
|
|
71
|
+
@import "utils/text";
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
$border-values: (
|
|
2
|
+
null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) $border-color-translucent,
|
|
3
|
+
wide: $border-width-wide var(--#{$prefix}border-style) $border-color-translucent,
|
|
4
|
+
0: 0,
|
|
5
|
+
);
|
|
6
|
+
|
|
7
|
+
//Utilities
|
|
8
|
+
$utilities: (
|
|
9
|
+
"object": (
|
|
10
|
+
property: object-fit,
|
|
11
|
+
class: object,
|
|
12
|
+
values: (
|
|
13
|
+
contain: contain,
|
|
14
|
+
cover: cover,
|
|
15
|
+
fill: fill,
|
|
16
|
+
scale-down: scale-down,
|
|
17
|
+
none: none,
|
|
18
|
+
),
|
|
19
|
+
),
|
|
20
|
+
"spacing": (
|
|
21
|
+
property: letter-spacing,
|
|
22
|
+
class: tracking,
|
|
23
|
+
values: (
|
|
24
|
+
tight: -0.05em,
|
|
25
|
+
normal: 0,
|
|
26
|
+
wide: 0.05em,
|
|
27
|
+
),
|
|
28
|
+
),
|
|
29
|
+
"cursor": (
|
|
30
|
+
property: cursor,
|
|
31
|
+
class: cursor,
|
|
32
|
+
values: (
|
|
33
|
+
auto: auto,
|
|
34
|
+
pointer: pointer,
|
|
35
|
+
move: move,
|
|
36
|
+
not-allowed: not-allowed,
|
|
37
|
+
zoom-in: zoom-in,
|
|
38
|
+
zoom-out: zoom-out,
|
|
39
|
+
default: default,
|
|
40
|
+
none: none,
|
|
41
|
+
help: help,
|
|
42
|
+
progress: progress,
|
|
43
|
+
wait: wait,
|
|
44
|
+
text: text,
|
|
45
|
+
v-text: vertical-text,
|
|
46
|
+
grab: grab,
|
|
47
|
+
grabbing: grabbing,
|
|
48
|
+
),
|
|
49
|
+
),
|
|
50
|
+
"border": (
|
|
51
|
+
property: border,
|
|
52
|
+
values: $border-values,
|
|
53
|
+
),
|
|
54
|
+
"border-top": (
|
|
55
|
+
property: border-top,
|
|
56
|
+
values: $border-values,
|
|
57
|
+
),
|
|
58
|
+
"border-end": (
|
|
59
|
+
class: border-end,
|
|
60
|
+
property: border-right,
|
|
61
|
+
values: $border-values,
|
|
62
|
+
),
|
|
63
|
+
"border-bottom": (
|
|
64
|
+
property: border-bottom,
|
|
65
|
+
values: $border-values,
|
|
66
|
+
),
|
|
67
|
+
"border-start": (
|
|
68
|
+
class: border-start,
|
|
69
|
+
property: border-left,
|
|
70
|
+
values: $border-values,
|
|
71
|
+
),
|
|
72
|
+
"border-x": (
|
|
73
|
+
class: border-x,
|
|
74
|
+
property: border-left border-right,
|
|
75
|
+
values: $border-values,
|
|
76
|
+
),
|
|
77
|
+
"border-y": (
|
|
78
|
+
class: border-y,
|
|
79
|
+
property: border-top border-bottom,
|
|
80
|
+
values: $border-values,
|
|
81
|
+
),
|
|
82
|
+
"width": (
|
|
83
|
+
property: width,
|
|
84
|
+
class: w,
|
|
85
|
+
values: $size-values,
|
|
86
|
+
),
|
|
87
|
+
"height": (
|
|
88
|
+
property: height,
|
|
89
|
+
class: h,
|
|
90
|
+
values: $size-values,
|
|
91
|
+
),
|
|
92
|
+
"columns": (
|
|
93
|
+
property: columns,
|
|
94
|
+
class: columns,
|
|
95
|
+
responsive: true,
|
|
96
|
+
values: 2 3 4,
|
|
97
|
+
),
|
|
98
|
+
) !default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Dark mode
|
|
3
|
+
//
|
|
4
|
+
$darken-dark: darken($dark, 2%) !default;
|
|
5
|
+
$lighten-dark: lighten($dark, 2%) !default;
|
|
6
|
+
$border-color-dark: lighten($dark, 4%) !default;
|
|
7
|
+
$border-color-translucent-dark: rgba(72, 110, 149, .14) !default;
|
|
8
|
+
$border-dark-color-dark: lighten($dark, 4%) !default;
|
|
9
|
+
$border-color-active-dark: lighten($dark, 12%) !default;
|
|
10
|
+
|
|
11
|
+
//new bootsrap variables
|
|
12
|
+
$body-color-dark: $light !default;
|
|
13
|
+
$body-emphasis-color-dark: $white !default;
|
|
14
|
+
|
|
15
|
+
$code-color-dark: var(--#{$prefix}gray-300) !default;
|
|
16
|
+
$text-secondary-dark: rgba(153, 159, 164, 1) !default;
|
|
17
|
+
|