@updevs/components 1.0.0-alpha.6 → 1.0.0-alpha.61
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 +1 -11
- package/assets/styles/_bootstrap-components.scss +18 -1
- package/assets/styles/_core.scss +9 -0
- package/assets/styles/_debug.scss +49 -0
- package/assets/styles/_props.scss +91 -0
- package/assets/styles/_seven-columns.scss +73 -0
- package/assets/styles/_updevs.scss +16 -0
- package/assets/styles/_utilities-marketing.scss +209 -0
- package/assets/styles/_utilities.scss +127 -92
- package/assets/styles/_variables-dark.scss +8 -6
- package/assets/styles/_variables.scss +325 -256
- package/assets/styles/helpers/_index.scss +143 -0
- package/assets/styles/layout/_core.scss +3 -2
- package/assets/styles/layout/_dark.scss +40 -35
- package/assets/styles/layout/_footer.scss +1 -1
- package/assets/styles/layout/_navbar.scss +31 -19
- package/assets/styles/layout/_page.scss +6 -5
- package/assets/styles/layout/_root.scss +26 -34
- package/assets/styles/marketing/_browser.scss +67 -0
- package/assets/styles/marketing/_core.scss +8 -0
- package/assets/styles/marketing/_filters.scss +0 -0
- package/assets/styles/marketing/_hero.scss +70 -0
- package/assets/styles/marketing/_pricing.scss +111 -0
- package/assets/styles/marketing/_sections.scss +124 -0
- package/assets/styles/marketing/_shape.scss +31 -0
- package/assets/styles/mixins/_functions.scss +53 -0
- package/assets/styles/mixins/_mixins.scss +9 -9
- package/assets/styles/ui/_accordion.scss +165 -11
- package/assets/styles/ui/_alerts.scss +80 -38
- package/assets/styles/ui/_avatars.scss +36 -9
- package/assets/styles/ui/_badges.scss +47 -13
- package/assets/styles/ui/_button-group.scss +1 -1
- package/assets/styles/ui/_buttons.scss +33 -37
- package/assets/styles/ui/_calendars.scss +2 -2
- package/assets/styles/ui/_cards.scss +9 -0
- package/assets/styles/ui/_carousel.scss +1 -1
- package/assets/styles/ui/_charts.scss +1 -1
- package/assets/styles/ui/_chat.scss +38 -0
- package/assets/styles/ui/_close.scss +54 -1
- package/assets/styles/ui/_datagrid.scss +1 -1
- package/assets/styles/ui/_dropdowns.scss +3 -0
- package/assets/styles/ui/_empty.scss +0 -5
- package/assets/styles/ui/_flags.scss +2 -2
- package/assets/styles/ui/_forms.scss +33 -7
- package/assets/styles/ui/_grid.scss +1 -1
- package/assets/styles/ui/_icons.scss +1 -1
- package/assets/styles/ui/_images.scss +4 -0
- package/assets/styles/ui/_lists.scss +12 -16
- package/assets/styles/ui/_loaders.scss +1 -1
- package/assets/styles/ui/_markdown.scss +15 -4
- package/assets/styles/ui/_modals.scss +2 -2
- package/assets/styles/ui/_nav.scss +17 -3
- package/assets/styles/ui/_offcanvas.scss +2 -2
- package/assets/styles/ui/_pagination.scss +2 -0
- package/assets/styles/ui/_payments.scss +1 -1
- package/assets/styles/ui/_placeholder.scss +1 -1
- package/assets/styles/ui/_progress.scss +1 -1
- package/assets/styles/ui/_ribbons.scss +1 -0
- package/assets/styles/ui/_segmented.scss +101 -0
- package/assets/styles/ui/_signature.scss +15 -0
- package/assets/styles/ui/_social.scss +52 -0
- package/assets/styles/ui/_status.scss +1 -1
- package/assets/styles/ui/_steps.scss +5 -1
- package/assets/styles/ui/_switch-icon.scss +1 -1
- package/assets/styles/ui/_tables.scss +27 -1
- package/assets/styles/ui/_tags.scss +1 -1
- package/assets/styles/ui/_timeline.scss +1 -1
- package/assets/styles/ui/_toasts.scss +0 -1
- package/assets/styles/ui/_tracking.scss +1 -1
- package/assets/styles/ui/_type.scss +169 -8
- package/assets/styles/ui/forms/_form-check.scss +1 -1
- package/assets/styles/ui/forms/_form-colorinput.scss +1 -1
- package/assets/styles/ui/forms/_form-custom.scss +1 -1
- package/assets/styles/ui/forms/_form-imagecheck.scss +6 -5
- package/assets/styles/ui/forms/_form-selectgroup.scss +2 -2
- package/assets/styles/ui/typo/_hr.scss +4 -2
- package/assets/styles/utils/_colors.scss +72 -11
- package/assets/styles/utils/_opacity.scss +1 -1
- package/assets/styles/utils/_scroll.scss +0 -2
- package/assets/styles/utils/_sizing.scss +1 -1
- package/assets/styles/utils/_text.scss +1 -2
- package/assets/styles/vendor/_apexcharts.scss +52 -0
- package/assets/styles/vendor/_coloris.scss +72 -0
- package/assets/styles/vendor/_dropzone.scss +27 -0
- package/assets/styles/vendor/_fslightbox.scss +13 -0
- package/assets/styles/vendor/_jsvectormap.scss +47 -0
- package/assets/styles/vendor/_litepicker.scss +69 -0
- package/assets/styles/vendor/_nouislider.scss +49 -0
- package/assets/styles/vendor/_plyr.scss +3 -0
- package/assets/styles/vendor/_stars-rating.scss +22 -0
- package/assets/styles/vendor/_tom-select.scss +81 -0
- package/assets/styles/vendor/_turbo.scss +3 -0
- package/assets/styles/vendor/_typed.scss +4 -0
- package/assets/styles/vendor/_wysiwyg.scss +46 -0
- package/badge/badge-config.model.d.ts +14 -0
- package/badge/badge.component.d.ts +23 -0
- package/badge/badge.config.d.ts +12 -0
- package/badge/index.d.ts +1 -0
- package/badge/public-api.d.ts +3 -0
- package/badge/upd-badge.module.d.ts +8 -0
- package/button/button.component.d.ts +51 -33
- package/button/upd-button.module.d.ts +3 -1
- package/calendar/calendar.component.d.ts +63 -0
- package/calendar/index.d.ts +1 -0
- package/calendar/models/calendar-date.model.d.ts +10 -0
- package/calendar/models/calendar-month.model.d.ts +7 -0
- package/calendar/models/calendar-selected.model.d.ts +5 -0
- package/calendar/models/calendar-user-event.model.d.ts +4 -0
- package/calendar/models/calendar-year.model.d.ts +6 -0
- package/calendar/models/date-range.model.d.ts +22 -0
- package/calendar/models/enums/calendar-view.enum.d.ts +5 -0
- package/calendar/models/public-api.d.ts +7 -0
- package/calendar/public-api.d.ts +5 -0
- package/calendar/services/calendar-range-strategy.service.d.ts +35 -0
- package/calendar/services/calendar-signals.service.d.ts +24 -0
- package/calendar/services/public-api.d.ts +1 -0
- package/calendar/types/calendar-view.type.d.ts +1 -0
- package/calendar/types/public-api.d.ts +1 -0
- package/calendar/upd-calendar.module.d.ts +13 -0
- package/card/card.component.d.ts +2 -2
- package/card/directives/card-actions.directive.d.ts +1 -2
- package/card/directives/card-footer.directive.d.ts +1 -2
- package/card/directives/card-header.directive.d.ts +1 -2
- package/card/directives/card-image.directive.d.ts +1 -2
- package/card/public-api.d.ts +1 -0
- package/card/types/public-api.d.ts +5 -0
- package/drag-and-drop/drag-and-drop.component.d.ts +26 -0
- package/drag-and-drop/index.d.ts +1 -0
- package/drag-and-drop/models/drag-and-drop-column.config.d.ts +8 -0
- package/drag-and-drop/models/drag-and-drop-column.model.d.ts +10 -0
- package/drag-and-drop/models/drag-and-drop-item.d.ts +7 -0
- package/drag-and-drop/models/drag-and-drop-item.model.d.ts +13 -0
- package/drag-and-drop/models/drag-and-drop.config.d.ts +6 -0
- package/drag-and-drop/models/public-api.d.ts +4 -0
- package/drag-and-drop/public-api.d.ts +3 -0
- package/drag-and-drop/upd-drag-and-drop.module.d.ts +9 -0
- package/dropdown/dropdown.component.d.ts +23 -6
- package/dropdown/models/dropdown-action-clicked.model.d.ts +6 -0
- package/dropdown/models/dropdown-item.d.ts +7 -2
- package/dropdown/models/dropdown-item.type.d.ts +1 -1
- package/dropdown/models/public-api.d.ts +2 -0
- package/dropdown/models/toolbar.type.d.ts +1 -0
- package/esm2022/badge/badge-config.model.mjs +14 -0
- package/esm2022/badge/badge.component.mjs +48 -0
- package/esm2022/badge/badge.config.mjs +2 -0
- package/esm2022/badge/index.mjs +2 -0
- package/esm2022/badge/public-api.mjs +4 -0
- package/esm2022/badge/upd-badge.module.mjs +24 -0
- package/esm2022/badge/updevs-components-badge.mjs +5 -0
- package/esm2022/button/button.component.mjs +126 -132
- package/esm2022/button/index.mjs +1 -1
- package/esm2022/button/public-api.mjs +1 -1
- package/esm2022/button/upd-button.module.mjs +14 -6
- package/esm2022/button/updevs-components-button.mjs +1 -1
- package/esm2022/calendar/assets/i18n/en.json +16 -0
- package/esm2022/calendar/assets/i18n/pt.json +16 -0
- package/esm2022/calendar/calendar.component.mjs +318 -0
- package/esm2022/calendar/index.mjs +2 -0
- package/esm2022/calendar/models/calendar-date.model.mjs +2 -0
- package/esm2022/calendar/models/calendar-month.model.mjs +2 -0
- package/esm2022/calendar/models/calendar-selected.model.mjs +2 -0
- package/esm2022/calendar/models/calendar-user-event.model.mjs +2 -0
- package/esm2022/calendar/models/calendar-year.model.mjs +2 -0
- package/esm2022/calendar/models/date-range.model.mjs +18 -0
- package/esm2022/calendar/models/enums/calendar-view.enum.mjs +7 -0
- package/esm2022/calendar/models/public-api.mjs +8 -0
- package/esm2022/calendar/public-api.mjs +6 -0
- package/esm2022/calendar/services/calendar-range-strategy.service.mjs +99 -0
- package/esm2022/calendar/services/calendar-signals.service.mjs +47 -0
- package/esm2022/calendar/services/public-api.mjs +2 -0
- package/esm2022/calendar/types/calendar-view.type.mjs +2 -0
- package/esm2022/calendar/types/public-api.mjs +2 -0
- package/esm2022/calendar/upd-calendar.module.mjs +52 -0
- package/esm2022/calendar/updevs-components-calendar.mjs +5 -0
- package/esm2022/card/card.component.mjs +4 -4
- package/esm2022/card/directives/card-actions.directive.mjs +8 -8
- package/esm2022/card/directives/card-footer.directive.mjs +8 -8
- package/esm2022/card/directives/card-header.directive.mjs +8 -8
- package/esm2022/card/directives/card-image.directive.mjs +8 -8
- package/esm2022/card/directives/public-api.mjs +1 -1
- package/esm2022/card/index.mjs +1 -1
- package/esm2022/card/public-api.mjs +2 -1
- package/esm2022/card/types/card-state.type.mjs +1 -1
- package/esm2022/card/types/card-style.type.mjs +1 -1
- package/esm2022/card/types/hover-effect.type.mjs +1 -1
- package/esm2022/card/types/public-api.mjs +6 -0
- package/esm2022/card/types/ribbon-style.type.mjs +1 -1
- package/esm2022/card/types/status-position.type.mjs +1 -1
- package/esm2022/card/upd-card.module.mjs +5 -5
- package/esm2022/card/updevs-components-card.mjs +1 -1
- package/esm2022/drag-and-drop/drag-and-drop.component.mjs +134 -0
- package/esm2022/drag-and-drop/index.mjs +2 -0
- package/esm2022/drag-and-drop/models/drag-and-drop-column.config.mjs +2 -0
- package/esm2022/drag-and-drop/models/drag-and-drop-column.model.mjs +9 -0
- package/esm2022/drag-and-drop/models/drag-and-drop-item.mjs +2 -0
- package/esm2022/drag-and-drop/models/drag-and-drop-item.model.mjs +14 -0
- package/esm2022/drag-and-drop/models/drag-and-drop.config.mjs +2 -0
- package/esm2022/drag-and-drop/models/public-api.mjs +5 -0
- package/esm2022/drag-and-drop/public-api.mjs +4 -0
- package/esm2022/drag-and-drop/upd-drag-and-drop.module.mjs +28 -0
- package/esm2022/drag-and-drop/updevs-components-drag-and-drop.mjs +5 -0
- package/esm2022/dropdown/dropdown.component.mjs +75 -18
- package/esm2022/dropdown/index.mjs +1 -1
- package/esm2022/dropdown/models/dropdown-action-clicked.model.mjs +2 -0
- package/esm2022/dropdown/models/dropdown-item.mjs +1 -1
- package/esm2022/dropdown/models/dropdown-item.type.mjs +1 -1
- package/esm2022/dropdown/models/public-api.mjs +3 -1
- package/esm2022/dropdown/models/toolbar.type.mjs +2 -0
- package/esm2022/dropdown/public-api.mjs +1 -1
- package/esm2022/dropdown/upd-dropdown.module.mjs +5 -5
- package/esm2022/dropdown/updevs-components-dropdown.mjs +1 -1
- package/esm2022/form/assets/i18n/en.json +17 -0
- package/esm2022/form/assets/i18n/pt.json +17 -0
- package/esm2022/form/components/dynamic-field/dynamic-field.component.mjs +174 -0
- package/esm2022/form/form.component.mjs +180 -0
- package/esm2022/form/index.mjs +1 -1
- package/esm2022/form/models/attachment-rule.model.mjs +2 -0
- package/esm2022/form/models/button-field.model.mjs +2 -0
- package/esm2022/form/models/button-group-field.model.mjs +2 -0
- package/esm2022/form/models/checkbox-field.model.mjs +2 -0
- package/esm2022/form/models/checkbox-group-field.model.mjs +2 -0
- package/esm2022/form/models/dynamic-field.model.mjs +2 -0
- package/esm2022/form/models/enums/attachment-type.enum.mjs +15 -0
- package/esm2022/form/models/enums/dynamic-field.type.mjs +17 -0
- package/esm2022/form/models/enums/public-api.mjs +3 -0
- package/esm2022/form/models/file-upload-field.model.mjs +2 -0
- package/esm2022/form/models/form-config.mjs +2 -0
- package/esm2022/form/models/form-row.model.mjs +2 -0
- package/esm2022/form/models/form-update-on.type.mjs +2 -0
- package/esm2022/form/models/input-field.model.mjs +2 -0
- package/esm2022/form/models/masked-input-field.model.mjs +2 -0
- package/esm2022/form/models/public-api.mjs +19 -0
- package/esm2022/form/models/radio-field.model.mjs +2 -0
- package/esm2022/form/models/radio-group-field.model.mjs +2 -0
- package/esm2022/form/models/select-field.model.mjs +2 -0
- package/esm2022/form/models/single-select-field.model.mjs +2 -0
- package/esm2022/form/models/textarea-field.model.mjs +2 -0
- package/esm2022/form/models/validator-config.mjs +2 -0
- package/esm2022/form/public-api.mjs +4 -2
- package/esm2022/form/tools/errors-helper.mjs +54 -0
- package/esm2022/form/upd-form.module.mjs +84 -0
- package/esm2022/form/updevs-components-form.mjs +1 -1
- package/esm2022/form-controls/abstractions/base-control.mjs +46 -0
- package/esm2022/form-controls/abstractions/index.mjs +2 -0
- package/esm2022/form-controls/abstractions/public-api.mjs +2 -0
- package/esm2022/form-controls/abstractions/updevs-components-form-controls-abstractions.mjs +5 -0
- package/esm2022/form-controls/checkbox/checkbox.component.mjs +37 -51
- package/esm2022/form-controls/checkbox/index.mjs +1 -1
- package/esm2022/form-controls/checkbox/public-api.mjs +1 -1
- package/esm2022/form-controls/checkbox/upd-checkbox.module.mjs +12 -8
- package/esm2022/form-controls/checkbox/updevs-components-form-controls-checkbox.mjs +1 -1
- package/esm2022/form-controls/date-picker/date-picker.component.mjs +132 -0
- package/esm2022/form-controls/date-picker/index.mjs +2 -0
- package/esm2022/form-controls/date-picker/public-api.mjs +3 -0
- package/esm2022/form-controls/date-picker/upd-date-picker.module.mjs +40 -0
- package/esm2022/form-controls/date-picker/updevs-components-form-controls-date-picker.mjs +5 -0
- package/esm2022/form-controls/file-upload/assets/i18n/en.json +15 -0
- package/esm2022/form-controls/file-upload/assets/i18n/pt.json +15 -0
- package/esm2022/form-controls/file-upload/file-upload-changed.event.mjs +2 -0
- package/esm2022/form-controls/file-upload/file-upload.component.mjs +169 -0
- package/esm2022/form-controls/file-upload/index.mjs +2 -0
- package/esm2022/form-controls/file-upload/public-api.mjs +4 -0
- package/esm2022/form-controls/file-upload/upd-file-upload.module.mjs +48 -0
- package/esm2022/form-controls/file-upload/updevs-components-form-controls-file-upload.mjs +5 -0
- package/esm2022/form-controls/input/directives/input-append.directive.mjs +8 -8
- package/esm2022/form-controls/input/directives/input-prepend.directive.mjs +8 -8
- package/esm2022/form-controls/input/directives/public-api.mjs +1 -1
- package/esm2022/form-controls/input/index.mjs +1 -1
- package/esm2022/form-controls/input/input.component.mjs +64 -34
- package/esm2022/form-controls/input/public-api.mjs +1 -1
- package/esm2022/form-controls/input/types/input.type.mjs +1 -1
- package/esm2022/form-controls/input/types/loader-position.type.mjs +1 -1
- package/esm2022/form-controls/input/types/public-api.mjs +1 -1
- package/esm2022/form-controls/input/upd-input.module.mjs +5 -5
- package/esm2022/form-controls/input/updevs-components-form-controls-input.mjs +1 -1
- package/esm2022/form-controls/radio/index.mjs +1 -1
- package/esm2022/form-controls/radio/public-api.mjs +1 -1
- package/esm2022/form-controls/radio/radio.component.mjs +12 -25
- package/esm2022/form-controls/radio/upd-radio.module.mjs +14 -6
- package/esm2022/form-controls/radio/updevs-components-form-controls-radio.mjs +1 -1
- package/esm2022/form-controls/select/components/multiple/select-multiple.component.mjs +33 -10
- package/esm2022/form-controls/select/components/single/select.component.mjs +31 -8
- package/esm2022/form-controls/select/index.mjs +1 -1
- package/esm2022/form-controls/select/models/abstractions/base-select.component.mjs +109 -88
- package/esm2022/form-controls/select/models/defaults.mjs +8 -0
- package/esm2022/form-controls/select/models/public-api.mjs +2 -1
- package/esm2022/form-controls/select/models/select-item.mjs +1 -1
- package/esm2022/form-controls/select/public-api.mjs +1 -1
- package/esm2022/form-controls/select/upd-select.module.mjs +10 -6
- package/esm2022/form-controls/select/updevs-components-form-controls-select.mjs +1 -1
- package/esm2022/form-controls/textarea/index.mjs +1 -1
- package/esm2022/form-controls/textarea/public-api.mjs +1 -1
- package/esm2022/form-controls/textarea/textarea.component.mjs +18 -36
- package/esm2022/form-controls/textarea/upd-textarea.module.mjs +5 -5
- package/esm2022/form-controls/textarea/updevs-components-form-controls-textarea.mjs +1 -1
- package/esm2022/form-controls/time-picker/index.mjs +1 -1
- package/esm2022/form-controls/time-picker/public-api.mjs +1 -1
- package/esm2022/form-controls/time-picker/time-picker.component.mjs +4 -4
- package/esm2022/form-controls/time-picker/time-selector/time-selector.component.mjs +7 -8
- package/esm2022/form-controls/time-picker/upd-time-picker.module.mjs +9 -8
- package/esm2022/form-controls/time-picker/updevs-components-form-controls-time-picker.mjs +1 -1
- package/esm2022/index.mjs +2 -0
- package/esm2022/layout/abstractions/base-page.component.mjs +8 -9
- package/esm2022/layout/abstractions/base.layout.mjs +31 -0
- package/esm2022/layout/abstractions/public-api.mjs +1 -1
- package/esm2022/layout/assets/i18n/en.json +24 -2
- package/esm2022/layout/assets/i18n/pt.json +24 -2
- package/esm2022/layout/index.mjs +1 -1
- package/esm2022/layout/layouts/blank-layout/blank-layout.component.mjs +18 -7
- package/esm2022/layout/layouts/blank-layout/blank-layout.module.mjs +32 -6
- package/esm2022/layout/layouts/public-api.mjs +1 -1
- package/esm2022/layout/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.mjs +13 -29
- package/esm2022/layout/layouts/vertical-sidebar-layout/vertical-sidebar-layout.module.mjs +25 -28
- package/esm2022/layout/models/login-page-config.model.mjs +20 -0
- package/esm2022/layout/models/login-page.config.mjs +2 -0
- package/esm2022/layout/models/public-api.mjs +2 -1
- package/esm2022/layout/models/security-layout-config.model.mjs +10 -0
- package/esm2022/layout/models/security-layout.config.mjs +2 -0
- package/esm2022/layout/models/upd-layout-config.model.mjs +11 -17
- package/esm2022/layout/models/upd-layout.config.mjs +1 -1
- package/esm2022/layout/pages/auth-flow/auth-flow-routing.module.mjs +5 -5
- package/esm2022/layout/pages/auth-flow/auth-flow.module.mjs +36 -9
- package/esm2022/layout/pages/auth-flow/logged-out/logged-out.component.mjs +4 -4
- package/esm2022/layout/pages/auth-flow/login/login.component.mjs +95 -12
- package/esm2022/layout/pages/auth-flow/oauth-callback/oauth-callback.component.mjs +4 -4
- package/esm2022/layout/pages/auth-flow/public-api.mjs +1 -1
- package/esm2022/layout/pages/public-api.mjs +1 -1
- package/esm2022/layout/partials/footer/footer.component.mjs +13 -27
- package/esm2022/layout/partials/footer/footer.module.mjs +28 -0
- package/esm2022/layout/partials/footer/public-api.mjs +2 -2
- package/esm2022/layout/partials/header/header-style.type.mjs +1 -1
- package/esm2022/layout/partials/header/header.component.mjs +121 -60
- package/esm2022/layout/partials/header/header.module.mjs +40 -0
- package/esm2022/layout/partials/header/public-api.mjs +2 -1
- package/esm2022/layout/partials/page-header/page-header.component.mjs +11 -11
- package/esm2022/layout/partials/page-header/public-api.mjs +1 -1
- package/esm2022/layout/partials/public-api.mjs +1 -1
- package/esm2022/layout/partials/sidebar/public-api.mjs +1 -1
- package/esm2022/layout/partials/sidebar/sidebar.component.mjs +185 -95
- package/esm2022/layout/public-api.mjs +1 -1
- package/esm2022/layout/services/public-api.mjs +1 -1
- package/esm2022/layout/services/upd-layout-config.service.mjs +6 -6
- package/esm2022/layout/tools/layout.constants.mjs +1 -1
- package/esm2022/layout/upd-layout.module.mjs +12 -8
- package/esm2022/layout/updevs-components-layout.mjs +1 -1
- package/esm2022/lib/index.mjs +1 -1
- package/esm2022/lib/models/public-api.mjs +2 -0
- package/esm2022/lib/models/row-column-size.mjs +2 -0
- package/esm2022/lib/public-api.mjs +3 -1
- package/esm2022/lib/tools/column-size.helper.mjs +12 -0
- package/esm2022/lib/tools/public-api.mjs +2 -0
- package/esm2022/lib/types/component-size.type.mjs +1 -1
- package/esm2022/lib/types/horizontal-vertical.type.mjs +2 -0
- package/esm2022/lib/types/public-api.mjs +2 -1
- package/esm2022/lib/types/validation-status.type.mjs +1 -1
- package/esm2022/lib/upd-components.module.mjs +5 -5
- package/esm2022/link/index.mjs +1 -1
- package/esm2022/link/link.component.mjs +4 -4
- package/esm2022/link/public-api.mjs +1 -1
- package/esm2022/link/target.type.mjs +1 -1
- package/esm2022/link/upd-link.module.mjs +5 -5
- package/esm2022/link/updevs-components-link.mjs +1 -1
- package/esm2022/list/assets/i18n/en.json +7 -3
- package/esm2022/list/assets/i18n/pt.json +7 -3
- package/esm2022/list/index.mjs +1 -1
- package/esm2022/list/list.component.mjs +14 -34
- package/esm2022/list/models/badge-position.type.mjs +1 -1
- package/esm2022/list/models/list-item.mjs +1 -1
- package/esm2022/list/models/list-item.model.mjs +7 -2
- package/esm2022/list/models/public-api.mjs +1 -1
- package/esm2022/list/public-api.mjs +1 -1
- package/esm2022/list/upd-list.module.mjs +9 -8
- package/esm2022/list/updevs-components-list.mjs +1 -1
- package/esm2022/modal/assets/i18n/en.json +17 -0
- package/esm2022/modal/assets/i18n/pt.json +17 -0
- package/esm2022/modal/components/modal-container/modal-container.component.mjs +216 -0
- package/esm2022/modal/index.mjs +2 -0
- package/esm2022/modal/models/base.modal.mjs +14 -0
- package/esm2022/modal/models/modal-config.model.mjs +20 -0
- package/esm2022/modal/models/modal-ref.mjs +2 -0
- package/esm2022/modal/models/modal.config.mjs +2 -0
- package/esm2022/modal/models/public-api.mjs +4 -0
- package/esm2022/modal/public-api.mjs +4 -0
- package/esm2022/modal/services/modal-alert.service.mjs +99 -0
- package/esm2022/modal/services/modal.service.mjs +30 -0
- package/esm2022/modal/services/public-api.mjs +3 -0
- package/esm2022/modal/types/modal-footer-style.type.mjs +2 -0
- package/esm2022/modal/types/modal-size.type.mjs +2 -0
- package/esm2022/modal/upd-modal.module.mjs +90 -0
- package/esm2022/modal/updevs-components-modal.mjs +5 -0
- package/esm2022/paginator/assets/i18n/en.json +15 -0
- package/esm2022/paginator/assets/i18n/pt.json +15 -0
- package/esm2022/paginator/index.mjs +2 -0
- package/esm2022/paginator/paginator.component.mjs +66 -0
- package/esm2022/paginator/public-api.mjs +3 -0
- package/esm2022/paginator/upd-paginator.module.mjs +47 -0
- package/esm2022/paginator/updevs-components-paginator.mjs +5 -0
- package/esm2022/popover/index.mjs +1 -1
- package/esm2022/popover/popover.component.mjs +7 -7
- package/esm2022/popover/popover.directive.mjs +33 -42
- package/esm2022/popover/public-api.mjs +1 -1
- package/esm2022/popover/upd-popover.module.mjs +5 -5
- package/esm2022/popover/updevs-components-popover.mjs +1 -1
- package/esm2022/pricing-cards/index.mjs +2 -0
- package/esm2022/pricing-cards/models/price-item-feature.model.mjs +2 -0
- package/esm2022/pricing-cards/models/price-item-features-group.model.mjs +2 -0
- package/esm2022/pricing-cards/models/price-item-tag.model.mjs +2 -0
- package/esm2022/pricing-cards/models/price-item.model.mjs +2 -0
- package/esm2022/pricing-cards/models/public-api.mjs +5 -0
- package/esm2022/pricing-cards/pricing-cards.component.mjs +25 -0
- package/esm2022/pricing-cards/public-api.mjs +4 -0
- package/esm2022/pricing-cards/upd-pricing-cards.module.mjs +40 -0
- package/esm2022/pricing-cards/updevs-components-pricing-cards.mjs +5 -0
- package/esm2022/public-api.mjs +1 -1
- package/esm2022/table/abstractions/base-column.model.mjs +52 -0
- package/esm2022/table/abstractions/base.column.mjs +84 -0
- package/esm2022/table/abstractions/filters-operands.service.mjs +3 -0
- package/esm2022/table/abstractions/public-api.mjs +3 -0
- package/esm2022/table/assets/i18n/en.json +74 -0
- package/esm2022/table/assets/i18n/pt.json +74 -0
- package/esm2022/table/components/columns/boolean-column/boolean-column.component.mjs +26 -0
- package/esm2022/table/components/columns/date-time-column/date-time-column.component.mjs +13 -0
- package/esm2022/table/components/columns/number-column/number-column.component.mjs +13 -0
- package/esm2022/table/components/columns/text-column/text-column.component.mjs +31 -0
- package/esm2022/table/components/columns-manager/columns-manager.component.mjs +36 -0
- package/esm2022/table/components/filter-row/filter-row.component.mjs +114 -0
- package/esm2022/table/components/save-search/save-search.component.mjs +72 -0
- package/esm2022/table/components/search-section/search-section.component.mjs +93 -0
- package/esm2022/table/directives/public-api.mjs +2 -0
- package/esm2022/table/directives/table-column.directive.mjs +52 -0
- package/esm2022/table/index.mjs +2 -0
- package/esm2022/table/models/columns/boolean-column.model.mjs +22 -0
- package/esm2022/table/models/columns/date-time-column.model.mjs +16 -0
- package/esm2022/table/models/columns/guid-column.model.mjs +13 -0
- package/esm2022/table/models/columns/image-column.model.mjs +11 -0
- package/esm2022/table/models/columns/number-column.model.mjs +17 -0
- package/esm2022/table/models/columns/public-api.mjs +7 -0
- package/esm2022/table/models/columns/text-column.model.mjs +11 -0
- package/esm2022/table/models/enums/column-type.enum.mjs +15 -0
- package/esm2022/table/models/enums/public-api.mjs +2 -0
- package/esm2022/table/models/filter-item.model.mjs +2 -0
- package/esm2022/table/models/filter-operand.config.mjs +2 -0
- package/esm2022/table/models/operands-lists/boolean-filter-operands-list.model.mjs +25 -0
- package/esm2022/table/models/operands-lists/date-filter-operands-list.model.mjs +25 -0
- package/esm2022/table/models/operands-lists/date-or-number-operands-list.config.mjs +31 -0
- package/esm2022/table/models/operands-lists/filter-operands-list.config.mjs +31 -0
- package/esm2022/table/models/operands-lists/guid-filter-operands-list.model.mjs +16 -0
- package/esm2022/table/models/operands-lists/number-filter-operands-list.model.mjs +25 -0
- package/esm2022/table/models/operands-lists/string-filter-operands-list.model.mjs +45 -0
- package/esm2022/table/models/public-api.mjs +5 -0
- package/esm2022/table/models/saved-view.model.mjs +2 -0
- package/esm2022/table/models/table-config.model.mjs +29 -0
- package/esm2022/table/models/table.config.mjs +2 -0
- package/esm2022/table/models/upd-table-config.model.mjs +9 -0
- package/esm2022/table/models/upd-table.config.mjs +2 -0
- package/esm2022/table/public-api.mjs +6 -0
- package/esm2022/table/services/default-filters-operands.service.mjs +60 -0
- package/esm2022/table/services/storages/saved-views.storage.mjs +56 -0
- package/esm2022/table/services/stores/filters-operands.store.mjs +19 -0
- package/esm2022/table/services/upd-table-config.service.mjs +18 -0
- package/esm2022/table/table.component.mjs +439 -0
- package/esm2022/table/tools/filters.tools.mjs +48 -0
- package/esm2022/table/tools/table.constants.mjs +15 -0
- package/esm2022/table/upd-table.module.mjs +150 -0
- package/esm2022/table/updevs-components-table.mjs +5 -0
- package/esm2022/updevs-components.mjs +2 -2
- package/fesm2022/updevs-components-badge.mjs +89 -0
- package/fesm2022/updevs-components-badge.mjs.map +1 -0
- package/fesm2022/updevs-components-button.mjs +138 -136
- package/fesm2022/updevs-components-button.mjs.map +1 -1
- package/fesm2022/updevs-components-calendar.mjs +582 -0
- package/fesm2022/updevs-components-calendar.mjs.map +1 -0
- package/fesm2022/updevs-components-card.mjs +32 -32
- package/fesm2022/updevs-components-card.mjs.map +1 -1
- package/fesm2022/updevs-components-drag-and-drop.mjs +185 -0
- package/fesm2022/updevs-components-drag-and-drop.mjs.map +1 -0
- package/fesm2022/updevs-components-dropdown.mjs +78 -21
- package/fesm2022/updevs-components-dropdown.mjs.map +1 -1
- package/fesm2022/updevs-components-form-controls-abstractions.mjs +53 -0
- package/fesm2022/updevs-components-form-controls-abstractions.mjs.map +1 -0
- package/fesm2022/updevs-components-form-controls-checkbox.mjs +47 -57
- package/fesm2022/updevs-components-form-controls-checkbox.mjs.map +1 -1
- package/fesm2022/updevs-components-form-controls-date-picker.mjs +175 -0
- package/fesm2022/updevs-components-form-controls-date-picker.mjs.map +1 -0
- package/fesm2022/updevs-components-form-controls-file-upload.mjs +264 -0
- package/fesm2022/updevs-components-form-controls-file-upload.mjs.map +1 -0
- package/fesm2022/updevs-components-form-controls-input.mjs +80 -50
- package/fesm2022/updevs-components-form-controls-input.mjs.map +1 -1
- package/fesm2022/updevs-components-form-controls-radio.mjs +25 -30
- package/fesm2022/updevs-components-form-controls-radio.mjs.map +1 -1
- package/fesm2022/updevs-components-form-controls-select.mjs +185 -108
- package/fesm2022/updevs-components-form-controls-select.mjs.map +1 -1
- package/fesm2022/updevs-components-form-controls-textarea.mjs +21 -39
- package/fesm2022/updevs-components-form-controls-textarea.mjs.map +1 -1
- package/fesm2022/updevs-components-form-controls-time-picker.mjs +18 -18
- package/fesm2022/updevs-components-form-controls-time-picker.mjs.map +1 -1
- package/fesm2022/updevs-components-form.mjs +541 -10
- package/fesm2022/updevs-components-form.mjs.map +1 -1
- package/fesm2022/updevs-components-layout.mjs +774 -395
- package/fesm2022/updevs-components-layout.mjs.map +1 -1
- package/fesm2022/updevs-components-link.mjs +8 -8
- package/fesm2022/updevs-components-link.mjs.map +1 -1
- package/fesm2022/updevs-components-list.mjs +44 -58
- package/fesm2022/updevs-components-list.mjs.map +1 -1
- package/fesm2022/updevs-components-modal.mjs +504 -0
- package/fesm2022/updevs-components-modal.mjs.map +1 -0
- package/fesm2022/updevs-components-paginator.mjs +160 -0
- package/fesm2022/updevs-components-paginator.mjs.map +1 -0
- package/fesm2022/updevs-components-popover.mjs +41 -50
- package/fesm2022/updevs-components-popover.mjs.map +1 -1
- package/fesm2022/updevs-components-pricing-cards.mjs +69 -0
- package/fesm2022/updevs-components-pricing-cards.mjs.map +1 -0
- package/fesm2022/updevs-components-table.mjs +1754 -0
- package/fesm2022/updevs-components-table.mjs.map +1 -0
- package/fesm2022/updevs-components.mjs +17 -5
- package/fesm2022/updevs-components.mjs.map +1 -1
- package/form/components/dynamic-field/dynamic-field.component.d.ts +63 -0
- package/form/form.component.d.ts +64 -0
- package/form/models/attachment-rule.model.d.ts +35 -0
- package/form/models/button-field.model.d.ts +5 -0
- package/form/models/button-group-field.model.d.ts +5 -0
- package/form/models/checkbox-field.model.d.ts +4 -0
- package/form/models/checkbox-group-field.model.d.ts +6 -0
- package/form/models/dynamic-field.model.d.ts +50 -0
- package/form/models/enums/attachment-type.enum.d.ts +13 -0
- package/form/models/enums/dynamic-field.type.d.ts +15 -0
- package/form/models/enums/public-api.d.ts +2 -0
- package/form/models/file-upload-field.model.d.ts +16 -0
- package/form/models/form-config.d.ts +2 -0
- package/form/models/form-row.model.d.ts +10 -0
- package/form/models/form-update-on.type.d.ts +1 -0
- package/form/models/input-field.model.d.ts +9 -0
- package/form/models/masked-input-field.model.d.ts +6 -0
- package/form/models/public-api.d.ts +18 -0
- package/form/models/radio-field.model.d.ts +4 -0
- package/form/models/radio-group-field.model.d.ts +6 -0
- package/form/models/select-field.model.d.ts +29 -0
- package/form/models/single-select-field.model.d.ts +4 -0
- package/form/models/textarea-field.model.d.ts +10 -0
- package/form/models/validator-config.d.ts +5 -0
- package/form/public-api.d.ts +3 -1
- package/form/tools/errors-helper.d.ts +11 -0
- package/form/upd-form.module.d.ts +22 -0
- package/form-controls/abstractions/base-control.d.ts +29 -0
- package/form-controls/abstractions/index.d.ts +2 -0
- package/form-controls/abstractions/public-api.d.ts +2 -0
- package/form-controls/checkbox/checkbox.component.d.ts +14 -20
- package/form-controls/checkbox/upd-checkbox.module.d.ts +2 -1
- package/form-controls/date-picker/date-picker.component.d.ts +66 -0
- package/form-controls/date-picker/index.d.ts +1 -0
- package/form-controls/date-picker/public-api.d.ts +2 -0
- package/form-controls/date-picker/upd-date-picker.module.d.ts +12 -0
- package/form-controls/file-upload/file-upload-changed.event.d.ts +4 -0
- package/form-controls/file-upload/file-upload.component.d.ts +46 -0
- package/form-controls/file-upload/index.d.ts +1 -0
- package/form-controls/file-upload/public-api.d.ts +3 -0
- package/form-controls/file-upload/upd-file-upload.module.d.ts +14 -0
- package/form-controls/input/directives/input-append.directive.d.ts +1 -2
- package/form-controls/input/directives/input-prepend.directive.d.ts +1 -2
- package/form-controls/input/input.component.d.ts +24 -14
- package/form-controls/radio/radio.component.d.ts +5 -12
- package/form-controls/radio/upd-radio.module.d.ts +3 -1
- package/form-controls/select/components/multiple/select-multiple.component.d.ts +13 -2
- package/form-controls/select/components/single/select.component.d.ts +10 -2
- package/form-controls/select/models/abstractions/base-select.component.d.ts +35 -31
- package/form-controls/select/models/defaults.d.ts +8 -0
- package/form-controls/select/models/public-api.d.ts +1 -0
- package/form-controls/select/upd-select.module.d.ts +3 -2
- package/form-controls/textarea/textarea.component.d.ts +11 -15
- package/form-controls/time-picker/upd-time-picker.module.d.ts +2 -2
- package/index.d.ts +1 -4
- package/layout/abstractions/base-page.component.d.ts +1 -2
- package/layout/abstractions/base.layout.d.ts +15 -0
- package/layout/layouts/blank-layout/blank-layout.component.d.ts +5 -1
- package/layout/layouts/blank-layout/blank-layout.module.d.ts +8 -1
- package/layout/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.d.ts +2 -9
- package/layout/layouts/vertical-sidebar-layout/vertical-sidebar-layout.module.d.ts +14 -13
- package/layout/models/login-page-config.model.d.ts +46 -0
- package/layout/models/login-page.config.d.ts +44 -0
- package/layout/models/public-api.d.ts +1 -0
- package/layout/models/security-layout-config.model.d.ts +12 -0
- package/layout/models/security-layout.config.d.ts +10 -0
- package/layout/models/upd-layout-config.model.d.ts +9 -0
- package/layout/models/upd-layout.config.d.ts +9 -0
- package/layout/pages/auth-flow/auth-flow.module.d.ts +9 -2
- package/layout/pages/auth-flow/login/login.component.d.ts +20 -6
- package/layout/partials/footer/footer.component.d.ts +4 -15
- package/layout/partials/footer/footer.module.d.ts +9 -0
- package/layout/partials/footer/public-api.d.ts +1 -1
- package/layout/partials/header/header.component.d.ts +44 -26
- package/layout/partials/header/header.module.d.ts +12 -0
- package/layout/partials/header/public-api.d.ts +1 -0
- package/layout/partials/page-header/page-header.component.d.ts +2 -2
- package/layout/partials/sidebar/sidebar.component.d.ts +29 -4
- package/layout/upd-layout.module.d.ts +2 -1
- package/lib/index.d.ts +1 -0
- package/lib/models/public-api.d.ts +2 -0
- package/lib/models/row-column-size.d.ts +23 -0
- package/lib/public-api.d.ts +3 -0
- package/lib/tools/column-size.helper.d.ts +6 -0
- package/lib/tools/public-api.d.ts +2 -0
- package/lib/types/component-size.type.d.ts +1 -0
- package/lib/types/horizontal-vertical.type.d.ts +2 -0
- package/lib/types/public-api.d.ts +2 -0
- package/lib/types/validation-status.type.d.ts +1 -0
- package/lib/upd-components.module.d.ts +1 -0
- package/list/list.component.d.ts +4 -20
- package/list/models/list-item.d.ts +4 -2
- package/list/models/list-item.model.d.ts +4 -2
- package/list/upd-list.module.d.ts +2 -2
- package/modal/components/modal-container/modal-container.component.d.ts +74 -0
- package/modal/index.d.ts +1 -0
- package/modal/models/base.modal.d.ts +8 -0
- package/modal/models/modal-config.model.d.ts +32 -0
- package/modal/models/modal-ref.d.ts +6 -0
- package/modal/models/modal.config.d.ts +30 -0
- package/modal/models/public-api.d.ts +3 -0
- package/modal/public-api.d.ts +3 -0
- package/modal/services/modal-alert.service.d.ts +22 -0
- package/modal/services/modal.service.d.ts +12 -0
- package/modal/services/public-api.d.ts +2 -0
- package/modal/types/modal-footer-style.type.d.ts +1 -0
- package/modal/types/modal-size.type.d.ts +1 -0
- package/modal/upd-modal.module.d.ts +18 -0
- package/package.json +72 -11
- package/paginator/index.d.ts +1 -0
- package/paginator/paginator.component.d.ts +42 -0
- package/paginator/public-api.d.ts +2 -0
- package/paginator/upd-paginator.module.d.ts +14 -0
- package/popover/popover.component.d.ts +2 -2
- package/popover/popover.directive.d.ts +8 -10
- package/pricing-cards/index.d.ts +1 -0
- package/pricing-cards/models/price-item-feature.model.d.ts +5 -0
- package/pricing-cards/models/price-item-features-group.model.d.ts +5 -0
- package/pricing-cards/models/price-item-tag.model.d.ts +6 -0
- package/pricing-cards/models/price-item.model.d.ts +20 -0
- package/pricing-cards/models/public-api.d.ts +4 -0
- package/pricing-cards/pricing-cards.component.d.ts +11 -0
- package/pricing-cards/public-api.d.ts +3 -0
- package/pricing-cards/upd-pricing-cards.module.d.ts +12 -0
- package/public-api.d.ts +1 -0
- package/table/abstractions/base-column.model.d.ts +31 -0
- package/table/abstractions/base.column.d.ts +26 -0
- package/table/abstractions/filters-operands.service.d.ts +8 -0
- package/table/abstractions/public-api.d.ts +2 -0
- package/table/components/columns/boolean-column/boolean-column.component.d.ts +9 -0
- package/table/components/columns/date-time-column/date-time-column.component.d.ts +7 -0
- package/table/components/columns/number-column/number-column.component.d.ts +7 -0
- package/table/components/columns/text-column/text-column.component.d.ts +9 -0
- package/table/components/columns-manager/columns-manager.component.d.ts +15 -0
- package/table/components/filter-row/filter-row.component.d.ts +40 -0
- package/table/components/save-search/save-search.component.d.ts +17 -0
- package/table/components/search-section/search-section.component.d.ts +36 -0
- package/table/directives/public-api.d.ts +1 -0
- package/table/directives/table-column.directive.d.ts +14 -0
- package/table/index.d.ts +1 -0
- package/table/models/columns/boolean-column.model.d.ts +15 -0
- package/table/models/columns/date-time-column.model.d.ts +8 -0
- package/table/models/columns/guid-column.model.d.ts +4 -0
- package/table/models/columns/image-column.model.d.ts +6 -0
- package/table/models/columns/number-column.model.d.ts +8 -0
- package/table/models/columns/public-api.d.ts +6 -0
- package/table/models/columns/text-column.model.d.ts +6 -0
- package/table/models/enums/column-type.enum.d.ts +13 -0
- package/table/models/enums/public-api.d.ts +1 -0
- package/table/models/filter-item.model.d.ts +6 -0
- package/table/models/filter-operand.config.d.ts +9 -0
- package/table/models/operands-lists/boolean-filter-operands-list.model.d.ts +6 -0
- package/table/models/operands-lists/date-filter-operands-list.model.d.ts +6 -0
- package/table/models/operands-lists/date-or-number-operands-list.config.d.ts +5 -0
- package/table/models/operands-lists/filter-operands-list.config.d.ts +5 -0
- package/table/models/operands-lists/guid-filter-operands-list.model.d.ts +6 -0
- package/table/models/operands-lists/number-filter-operands-list.model.d.ts +6 -0
- package/table/models/operands-lists/string-filter-operands-list.model.d.ts +6 -0
- package/table/models/public-api.d.ts +4 -0
- package/table/models/saved-view.model.d.ts +11 -0
- package/table/models/table-config.model.d.ts +33 -0
- package/table/models/table.config.d.ts +31 -0
- package/table/models/upd-table-config.model.d.ts +6 -0
- package/table/models/upd-table.config.d.ts +6 -0
- package/table/public-api.d.ts +5 -0
- package/table/services/default-filters-operands.service.d.ts +17 -0
- package/table/services/storages/saved-views.storage.d.ts +19 -0
- package/table/services/stores/filters-operands.store.d.ts +11 -0
- package/table/services/upd-table-config.service.d.ts +12 -0
- package/table/table.component.d.ts +81 -0
- package/table/tools/filters.tools.d.ts +9 -0
- package/table/tools/table.constants.d.ts +15 -0
- package/table/upd-table.module.d.ts +40 -0
- package/esm2022/form/form.module.mjs +0 -18
- package/esm2022/layout/partials/footer/footer-copyright.directive.mjs +0 -15
- package/form/form.module.d.ts +0 -7
- package/layout/partials/footer/footer-copyright.directive.d.ts +0 -6
|
@@ -7,7 +7,7 @@ $enable-gradients: false !default;
|
|
|
7
7
|
$enable-shadows: true !default;
|
|
8
8
|
$enable-navbar-vertical: true !default;
|
|
9
9
|
$enable-dark-mode: true !default;
|
|
10
|
-
$enable-negative-margins:
|
|
10
|
+
$enable-negative-margins: true !default;
|
|
11
11
|
$enable-rfs: false !default;
|
|
12
12
|
$enable-cssgrid: true !default;
|
|
13
13
|
|
|
@@ -23,11 +23,10 @@ $font-google-monospaced: null !default;
|
|
|
23
23
|
$font-local: null !default;
|
|
24
24
|
$font-icons: () !default;
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
$font-family-
|
|
28
|
-
/* prettier-ignore */
|
|
29
|
-
$font-family-monospace: unquote("#{if($font-google-monospaced, "#{$font-google-monospaced}, ", '')}") Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
|
26
|
+
$font-family-sans-serif: unquote("#{if($font-local, "#{$font-local}, ", ' ')}#{if($font-google, "#{$font-google}, ", ' ')}") 'Inter Var', Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif !default;
|
|
27
|
+
$font-family-monospace: unquote("#{if($font-google-monospaced, "#{$font-google-monospaced}, ", '')}") Monaco, Consolas, Liberation Mono, Courier New, monospace !default;
|
|
30
28
|
$font-family-serif: "Georgia", "Times New Roman", times, serif !default;
|
|
29
|
+
$font-family-comic: "Comic Sans MS", "Comic Sans", 'Chalkboard SE', 'Comic Neue', sans-serif, cursive !default;
|
|
31
30
|
|
|
32
31
|
//Icons
|
|
33
32
|
$icon-stroke-width: 1.5 !default;
|
|
@@ -52,27 +51,35 @@ $line-height-600: 2.5rem !default;
|
|
|
52
51
|
$line-height-700: 3rem !default;
|
|
53
52
|
|
|
54
53
|
$font-size-base: 0.875rem !default;
|
|
54
|
+
|
|
55
|
+
$spacing-wide: .04em !default;
|
|
56
|
+
$spacing-normal: 0 !default;
|
|
57
|
+
$spacing-tight: -.04em !default;
|
|
58
|
+
|
|
55
59
|
$body-letter-spacing: 0 !default;
|
|
56
60
|
|
|
57
61
|
$font-weight-light: 300 !default;
|
|
58
62
|
$font-weight-normal: 400 !default;
|
|
59
63
|
$font-weight-medium: 500 !default;
|
|
60
64
|
$font-weight-bold: 600 !default;
|
|
65
|
+
$font-weight-black: 700 !default;
|
|
61
66
|
|
|
62
67
|
$headings-font-weight: var(--#{$prefix}font-weight-bold) !default;
|
|
63
68
|
$headings-margin-bottom: var(--#{$prefix}spacer) !default;
|
|
64
69
|
|
|
65
70
|
$font-weights: (
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
+
'light': $font-weight-light,
|
|
72
|
+
'normal': $font-weight-normal,
|
|
73
|
+
'medium': $font-weight-medium,
|
|
74
|
+
'bold': $font-weight-bold,
|
|
75
|
+
'black': $font-weight-black,
|
|
76
|
+
'headings': $headings-font-weight,
|
|
71
77
|
) !default;
|
|
72
78
|
|
|
73
79
|
$line-height-base: divide(1.25rem, $font-size-base) !default;
|
|
74
80
|
$line-height-sm: divide(1rem, $font-size-base) !default;
|
|
75
81
|
$line-height-lg: divide(1.5rem, $font-size-base) !default;
|
|
82
|
+
$line-height-xl: divide(1.75rem, $font-size-base) !default;
|
|
76
83
|
|
|
77
84
|
$h1-font-size: 1.5rem !default;
|
|
78
85
|
$h1-line-height: 2rem !default;
|
|
@@ -92,33 +99,35 @@ $h5-line-height: 1rem !default;
|
|
|
92
99
|
$h6-font-size: 0.625rem !default;
|
|
93
100
|
$h6-line-height: 1rem !default;
|
|
94
101
|
|
|
95
|
-
$
|
|
102
|
+
$font-size-reative-xs: .71428571em !default;
|
|
103
|
+
$font-size-reative-sm: .85714285em !default;
|
|
104
|
+
$font-size-reative-md: 1em !default;
|
|
96
105
|
|
|
97
106
|
$font-sizes: (
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
107
|
+
1: $h1-font-size,
|
|
108
|
+
2: $h2-font-size,
|
|
109
|
+
3: $h3-font-size,
|
|
110
|
+
4: $h4-font-size,
|
|
111
|
+
5: $h5-font-size,
|
|
112
|
+
6: $h6-font-size,
|
|
104
113
|
) !default;
|
|
105
114
|
|
|
106
115
|
$line-heights: (
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
116
|
+
h1: $h1-line-height,
|
|
117
|
+
h2: $h2-line-height,
|
|
118
|
+
h3: $h3-line-height,
|
|
119
|
+
h4: $h4-line-height,
|
|
120
|
+
h5: $h5-line-height,
|
|
121
|
+
h6: $h6-line-height,
|
|
113
122
|
) !default;
|
|
114
123
|
|
|
115
124
|
$display-font-sizes: (
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
125
|
+
1: 5rem,
|
|
126
|
+
2: 4.5rem,
|
|
127
|
+
3: 4rem,
|
|
128
|
+
4: 3.5rem,
|
|
129
|
+
5: 3rem,
|
|
130
|
+
6: 2rem,
|
|
122
131
|
) !default;
|
|
123
132
|
|
|
124
133
|
$lead-font-size: $font-size-base !default;
|
|
@@ -135,18 +144,19 @@ $text-secondary-dark-opacity: 0.8 !default;
|
|
|
135
144
|
$border-opacity: 0.16 !default;
|
|
136
145
|
$border-light-opacity: 0.08 !default;
|
|
137
146
|
$border-dark-opacity: 0.24 !default;
|
|
138
|
-
$border-active-opacity: 0.
|
|
139
|
-
|
|
140
|
-
$gray-50: #
|
|
141
|
-
$gray-100: #
|
|
142
|
-
$gray-200: #
|
|
143
|
-
$gray-300: #
|
|
144
|
-
$gray-400: #
|
|
145
|
-
$gray-500: #
|
|
146
|
-
$gray-600: #
|
|
147
|
-
$gray-700: #
|
|
148
|
-
$gray-800: #
|
|
149
|
-
$gray-900: #
|
|
147
|
+
$border-active-opacity: 0.58 !default;
|
|
148
|
+
|
|
149
|
+
$gray-50: #f9fafb !default;
|
|
150
|
+
$gray-100: #f3f4f6 !default;
|
|
151
|
+
$gray-200: #e5e7eb !default;
|
|
152
|
+
$gray-300: #d1d5db !default;
|
|
153
|
+
$gray-400: #9ca3af !default;
|
|
154
|
+
$gray-500: #6b7280 !default;
|
|
155
|
+
$gray-600: #4b5563 !default;
|
|
156
|
+
$gray-700: #374151 !default;
|
|
157
|
+
$gray-800: #1f2937 !default;
|
|
158
|
+
$gray-900: #111827 !default;
|
|
159
|
+
$gray-950: #030712 !default;
|
|
150
160
|
|
|
151
161
|
$black: #000000 !default;
|
|
152
162
|
$white: #ffffff !default;
|
|
@@ -159,14 +169,14 @@ $bg-surface-secondary: var(--#{$prefix}gray-100) !default;
|
|
|
159
169
|
$bg-surface-tertiary: var(--#{$prefix}gray-50) !default;
|
|
160
170
|
$bg-surface-dark: var(--#{$prefix}dark) !default;
|
|
161
171
|
|
|
162
|
-
$body-bg: $gray-
|
|
172
|
+
$body-bg: $gray-50 !default;
|
|
163
173
|
$body-color: $dark !default;
|
|
164
|
-
$body-emphasis-color: $
|
|
174
|
+
$body-emphasis-color: $gray-700 !default;
|
|
165
175
|
|
|
166
176
|
$color-contrast-dark: $body-color !default;
|
|
167
177
|
$color-contrast-light: $light !default;
|
|
168
178
|
|
|
169
|
-
$blue: #
|
|
179
|
+
$blue: #066fd1 !default;
|
|
170
180
|
$azure: #4299e1 !default;
|
|
171
181
|
$indigo: #4263eb !default;
|
|
172
182
|
$purple: #ae3ec9 !default;
|
|
@@ -179,25 +189,13 @@ $green: #2fb344 !default;
|
|
|
179
189
|
$teal: #0ca678 !default;
|
|
180
190
|
$cyan: #17a2b8 !default;
|
|
181
191
|
|
|
182
|
-
$
|
|
183
|
-
$
|
|
184
|
-
$
|
|
185
|
-
$
|
|
186
|
-
|
|
187
|
-
$color
|
|
188
|
-
$color-
|
|
189
|
-
$color-yellow: #f59f00;
|
|
190
|
-
$color-lime: #74b816;
|
|
191
|
-
$color-green: #2fb344;
|
|
192
|
-
$color-teal: #0ca678;
|
|
193
|
-
$color-cyan: #17a2b8;
|
|
194
|
-
|
|
195
|
-
$text-secondary: $gray-600 !default;
|
|
196
|
-
$text-secondary-light: $gray-500 !default;
|
|
197
|
-
$text-secondary-dark: $gray-700 !default;
|
|
198
|
-
|
|
199
|
-
$border-color: $gray-300 !default;
|
|
200
|
-
$border-color-translucent: rgba(4, 32, 69, 0.14);
|
|
192
|
+
$text-muted: $gray-500 !default;
|
|
193
|
+
$text-secondary: $gray-500 !default;
|
|
194
|
+
$text-secondary-light: $gray-400 !default;
|
|
195
|
+
$text-secondary-dark: $gray-600 !default;
|
|
196
|
+
|
|
197
|
+
$border-color: $gray-200 !default;
|
|
198
|
+
$border-color-translucent: rgba(4, 32, 69, 0.1);
|
|
201
199
|
|
|
202
200
|
$border-dark-color: $gray-400 !default;
|
|
203
201
|
$border-dark-color-translucent: rgba(4, 32, 69, 0.27);
|
|
@@ -209,97 +207,124 @@ $active-bg: rgba(var(--#{$prefix}primary-rgb), 0.04) !default;
|
|
|
209
207
|
$active-color: var(--#{$prefix}primary) !default;
|
|
210
208
|
$active-border-color: var(--#{$prefix}primary) !default;
|
|
211
209
|
|
|
212
|
-
$hover-bg: rgba(var(--#{$prefix}
|
|
210
|
+
$hover-bg: rgba(var(--#{$prefix}secondary-rgb), 0.08) !default;
|
|
213
211
|
|
|
214
212
|
$disabled-bg: var(--#{$prefix}bg-surface-secondary) !default;
|
|
215
|
-
$disabled-color: var(--#{$prefix}
|
|
213
|
+
$disabled-color: color-transparent(var(--#{$prefix}body-color), .4) !default;
|
|
216
214
|
|
|
217
215
|
$primary: $blue !default;
|
|
218
216
|
$secondary: $text-secondary !default;
|
|
217
|
+
$muted: $text-secondary !default;
|
|
219
218
|
$success: $green !default;
|
|
220
219
|
$info: $azure !default;
|
|
221
|
-
$warning: $
|
|
220
|
+
$warning: $yellow !default;
|
|
222
221
|
$danger: $red !default;
|
|
223
222
|
|
|
224
223
|
$link-color: $primary !default;
|
|
225
224
|
|
|
226
225
|
$theme-colors: (
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
226
|
+
"primary": $primary,
|
|
227
|
+
"secondary": $secondary,
|
|
228
|
+
"success": $success,
|
|
229
|
+
"info": $info,
|
|
230
|
+
"warning": $warning,
|
|
231
|
+
"danger": $danger,
|
|
232
|
+
"light": $light,
|
|
233
|
+
"dark": $dark,
|
|
234
|
+
"muted": $muted,
|
|
236
235
|
) !default;
|
|
237
236
|
|
|
238
237
|
$extra-colors: (
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
238
|
+
"blue": $blue,
|
|
239
|
+
"azure": $azure,
|
|
240
|
+
"indigo": $indigo,
|
|
241
|
+
"purple": $purple,
|
|
242
|
+
"pink": $pink,
|
|
243
|
+
"red": $red,
|
|
244
|
+
"orange": $orange,
|
|
245
|
+
"yellow": $yellow,
|
|
246
|
+
"lime": $lime,
|
|
247
|
+
"green": $green,
|
|
248
|
+
"teal": $teal,
|
|
249
|
+
"cyan": $cyan,
|
|
251
250
|
) !default;
|
|
252
251
|
|
|
253
252
|
$social-colors: (
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
253
|
+
"x": #000000,
|
|
254
|
+
"facebook": #1877f2,
|
|
255
|
+
"twitter": #1da1f2,
|
|
256
|
+
"linkedin": #0a66c2,
|
|
257
|
+
"google": #dc4e41,
|
|
258
|
+
"youtube": #ff0000,
|
|
259
|
+
"vimeo": #1ab7ea,
|
|
260
|
+
"dribbble": #ea4c89,
|
|
261
|
+
"github": #181717,
|
|
262
|
+
"instagram": #e4405f,
|
|
263
|
+
"pinterest": #bd081c,
|
|
264
|
+
"vk": #6383a8,
|
|
265
|
+
"rss": #ffa500,
|
|
266
|
+
"flickr": #0063dc,
|
|
267
|
+
"bitbucket": #0052cc,
|
|
268
|
+
"tabler": #066fd1,
|
|
269
269
|
) !default;
|
|
270
270
|
|
|
271
271
|
$gray-colors: (
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
272
|
+
gray-50: $gray-50,
|
|
273
|
+
gray-100: $gray-100,
|
|
274
|
+
gray-200: $gray-200,
|
|
275
|
+
gray-300: $gray-300,
|
|
276
|
+
gray-400: $gray-400,
|
|
277
|
+
gray-500: $gray-500,
|
|
278
|
+
gray-600: $gray-600,
|
|
279
|
+
gray-700: $gray-700,
|
|
280
|
+
gray-800: $gray-800,
|
|
281
|
+
gray-900: $gray-900,
|
|
282
|
+
gray-950: $gray-950,
|
|
282
283
|
) !default;
|
|
283
284
|
|
|
284
|
-
$theme-colors: map-merge($theme-colors, map-merge($extra-colors,
|
|
285
|
+
$theme-colors: map-merge($theme-colors, map-merge($extra-colors, ()));
|
|
286
|
+
|
|
287
|
+
// BACKDROPS
|
|
288
|
+
$backdrop-opacity: 24% !default;
|
|
289
|
+
$backdrop-blur: 4px !default;
|
|
290
|
+
$backdrop-bg: var(--#{$prefix}gray-800) !default;
|
|
291
|
+
$backdrops: (
|
|
292
|
+
dark: color-mix(in srgb, var(--#{$prefix}color-dark), transparent var(--#{$prefix}backdrop-opacity)),
|
|
293
|
+
light: color-mix(in srgb, var(--#{$prefix}color-light), transparent var(--#{$prefix}backdrop-opacity)),
|
|
294
|
+
) !default;
|
|
285
295
|
|
|
286
296
|
// Borders
|
|
287
297
|
$border-width: 1px !default;
|
|
288
298
|
$border-width-wide: 2px !default;
|
|
289
299
|
|
|
290
|
-
$border-radius-sm:
|
|
291
|
-
$border-radius:
|
|
300
|
+
$border-radius-sm: 4px !default;
|
|
301
|
+
$border-radius: 6px !default;
|
|
292
302
|
$border-radius-lg: 8px !default;
|
|
293
303
|
$border-radius-pill: 100rem !default;
|
|
294
304
|
|
|
305
|
+
$border-radiuses: (
|
|
306
|
+
0: 0,
|
|
307
|
+
sm: $border-radius-sm,
|
|
308
|
+
md: $border-radius,
|
|
309
|
+
lg: $border-radius-lg,
|
|
310
|
+
pill: $border-radius-pill,
|
|
311
|
+
null: var(--#{$prefix}border-radius-md),
|
|
312
|
+
) !default;
|
|
313
|
+
|
|
314
|
+
$border-values: (
|
|
315
|
+
null: var(--#{$prefix}border-width) var(--#{$prefix}border-style) $border-color-translucent,
|
|
316
|
+
wide: $border-width-wide var(--#{$prefix}border-style) $border-color-translucent,
|
|
317
|
+
0: 0,
|
|
318
|
+
);
|
|
319
|
+
|
|
295
320
|
// Icons
|
|
296
|
-
$icon-color: var(--#{$prefix}gray-
|
|
321
|
+
$icon-color: var(--#{$prefix}gray-400) !default;
|
|
297
322
|
|
|
298
323
|
// Code
|
|
299
|
-
$code-color: var(--#{$prefix}
|
|
300
|
-
$code-font-size: $
|
|
324
|
+
$code-color: var(--#{$prefix}primary) !default;
|
|
325
|
+
$code-font-size: $font-size-reative-sm !default;
|
|
301
326
|
$code-line-height: 1.25rem !default;
|
|
302
|
-
$code-bg: var(--#{$prefix}
|
|
327
|
+
$code-bg: var(--#{$prefix}primary-lt) !default;
|
|
303
328
|
|
|
304
329
|
$pre-padding: 1rem !default;
|
|
305
330
|
$pre-bg: var(--#{$prefix}bg-surface-dark) !default;
|
|
@@ -319,54 +344,62 @@ $avatar-size: 2.5rem !default;
|
|
|
319
344
|
$avatar-status-size: .75rem !default;
|
|
320
345
|
$avatar-font-size: 1rem !default;
|
|
321
346
|
$avatar-icon-size: 1.5rem !default;
|
|
347
|
+
$avatar-brand-size: 1.25rem !default;
|
|
322
348
|
$avatar-bg: var(--#{$prefix}bg-surface-secondary) !default;
|
|
323
349
|
$avatar-sizes: (
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
350
|
+
"xxs": (
|
|
351
|
+
size: 1rem,
|
|
352
|
+
font-size: .5rem,
|
|
353
|
+
icon-size: .5rem,
|
|
354
|
+
status-size: .25rem,
|
|
355
|
+
brand-size: .5rem
|
|
356
|
+
),
|
|
357
|
+
"xs": (
|
|
358
|
+
size: 1.25rem,
|
|
359
|
+
font-size: $h6-font-size,
|
|
360
|
+
icon-size: .75rem,
|
|
361
|
+
status-size: .375rem,
|
|
362
|
+
brand-size: .75rem
|
|
363
|
+
),
|
|
364
|
+
"sm": (
|
|
365
|
+
size: 2rem,
|
|
366
|
+
font-size: $h5-font-size,
|
|
367
|
+
icon-size: 1.5rem,
|
|
368
|
+
status-size: .5rem,
|
|
369
|
+
brand-size: 1rem
|
|
370
|
+
),
|
|
371
|
+
"md": (
|
|
372
|
+
size: 2.5rem,
|
|
373
|
+
font-size: $h4-font-size,
|
|
374
|
+
icon-size: 1.5rem,
|
|
375
|
+
status-size: .75rem,
|
|
376
|
+
brand-size: 1.25rem
|
|
377
|
+
),
|
|
378
|
+
"lg": (
|
|
379
|
+
size: 3rem,
|
|
380
|
+
font-size: $h2-font-size,
|
|
381
|
+
icon-size: 2rem,
|
|
382
|
+
status-size: .75rem,
|
|
383
|
+
brand-size: 1.25rem
|
|
384
|
+
),
|
|
385
|
+
"xl": (
|
|
386
|
+
size: 5rem,
|
|
387
|
+
font-size: 2rem,
|
|
388
|
+
icon-size: 3rem,
|
|
389
|
+
status-size: 1rem,
|
|
390
|
+
brand-size: 1.25rem
|
|
391
|
+
),
|
|
392
|
+
"2xl": (
|
|
393
|
+
size: 7rem,
|
|
394
|
+
font-size: 3rem,
|
|
395
|
+
icon-size: 5rem,
|
|
396
|
+
status-size: 1rem,
|
|
397
|
+
brand-size: 2rem
|
|
398
|
+
),
|
|
366
399
|
) !default;
|
|
367
400
|
$avatar-border-radius: var(--#{$prefix}border-radius) !default;
|
|
368
401
|
$avatar-font-size: $h4-font-size !default;
|
|
369
|
-
$avatar-box-shadow: var(--#{$prefix}
|
|
402
|
+
$avatar-box-shadow: var(--#{$prefix}shadow-border) !default;
|
|
370
403
|
$avatar-list-spacing: -0.5;
|
|
371
404
|
|
|
372
405
|
$link-decoration: none !default;
|
|
@@ -393,9 +426,9 @@ $grid-gutter-width: var(--#{$prefix}page-padding) !default;
|
|
|
393
426
|
$grid-gutter-width: 1rem !default;
|
|
394
427
|
|
|
395
428
|
$container-variations: (
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
429
|
+
slim: 16rem,
|
|
430
|
+
tight: 30rem,
|
|
431
|
+
narrow: 61.875rem,
|
|
399
432
|
) !default;
|
|
400
433
|
|
|
401
434
|
// Spacers
|
|
@@ -405,59 +438,73 @@ $spacer-2: 0.5rem !default;
|
|
|
405
438
|
$spacer-3: 1rem !default;
|
|
406
439
|
$spacer-4: 1.5rem !default;
|
|
407
440
|
$spacer-5: 2rem !default;
|
|
408
|
-
$spacer-6:
|
|
409
|
-
|
|
410
|
-
$spacer-
|
|
441
|
+
$spacer-6: 2.5rem !default;
|
|
442
|
+
|
|
443
|
+
$spacer-7: 3rem !default;
|
|
444
|
+
$spacer-8: 4rem !default;
|
|
445
|
+
$spacer-9: 5rem !default;
|
|
446
|
+
$spacer-10: 6rem !default;
|
|
447
|
+
$spacer-11: 7rem !default;
|
|
448
|
+
$spacer-12: 8rem !default;
|
|
411
449
|
|
|
412
450
|
$spacer: $spacer-3 !default;
|
|
413
451
|
|
|
414
452
|
$spacers: (
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
453
|
+
0: 0,
|
|
454
|
+
1: $spacer-1,
|
|
455
|
+
2: $spacer-2,
|
|
456
|
+
3: $spacer-3,
|
|
457
|
+
4: $spacer-4,
|
|
458
|
+
5: $spacer-5,
|
|
459
|
+
6: $spacer-6,
|
|
460
|
+
) !default;
|
|
461
|
+
|
|
462
|
+
$spacers-extra: (
|
|
463
|
+
7: $spacer-7,
|
|
464
|
+
8: $spacer-8,
|
|
465
|
+
9: $spacer-9,
|
|
466
|
+
10: $spacer-10,
|
|
467
|
+
11: $spacer-11,
|
|
468
|
+
12: $spacer-12,
|
|
424
469
|
) !default;
|
|
425
470
|
|
|
426
|
-
$negative-spacers:
|
|
471
|
+
$negative-spacers: null !default;
|
|
427
472
|
|
|
428
473
|
// Sizes
|
|
429
474
|
$size-spacers: (
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
475
|
+
auto: auto,
|
|
476
|
+
px: 1px,
|
|
477
|
+
full: 100%,
|
|
433
478
|
) !default;
|
|
434
479
|
|
|
435
480
|
$size-values: map-merge(
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
481
|
+
$spacers,
|
|
482
|
+
(
|
|
483
|
+
25: 25%,
|
|
484
|
+
33: 33.33333%,
|
|
485
|
+
50: 50%,
|
|
486
|
+
66: 66.66666%,
|
|
487
|
+
75: 75%,
|
|
488
|
+
100: 100%,
|
|
489
|
+
auto: auto,
|
|
490
|
+
)
|
|
446
491
|
) !default;
|
|
447
492
|
|
|
448
493
|
// Aspect ratios
|
|
449
494
|
$aspect-ratios: (
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
495
|
+
"1x1": 100%,
|
|
496
|
+
"2x1": calc(1 / 2 * 100%),
|
|
497
|
+
"1x2": calc(2 / 1 * 100%),
|
|
498
|
+
"3x1": calc(1 / 3 * 100%),
|
|
499
|
+
"1x3": calc(3 / 1 * 100%),
|
|
500
|
+
"4x1": calc(1 / 4 * 100%),
|
|
501
|
+
"1x4": calc(4 / 1 * 100%),
|
|
502
|
+
"4x3": calc(3 / 4 * 100%),
|
|
503
|
+
"3x4": calc(4 / 3 * 100%),
|
|
504
|
+
"16x9": calc(9 / 16 * 100%),
|
|
505
|
+
"9x16": calc(16 / 9 * 100%),
|
|
506
|
+
"21x9": calc(9 / 21 * 100%),
|
|
507
|
+
"9x21": calc(21 / 9 * 100%),
|
|
461
508
|
) !default;
|
|
462
509
|
|
|
463
510
|
// Shadows
|
|
@@ -467,16 +514,16 @@ $box-shadow-border: inset 0 0 0 1px var(--#{$prefix}border-color-translucent) !d
|
|
|
467
514
|
$box-shadow-input: 0 1px 1px rgba(var(--#{$prefix}body-color-rgb), 0.06) !default;
|
|
468
515
|
$box-shadow-card: 0 0 4px rgba(var(--#{$prefix}body-color-rgb), 0.04) !default;
|
|
469
516
|
$box-shadow-card-hover: rgba(var(--#{$prefix}body-color-rgb), 0.16) 0 2px 16px 0 !default;
|
|
470
|
-
$box-shadow-dropdown: 0 16px 24px 2px
|
|
517
|
+
$box-shadow-dropdown: 0 16px 24px 2px rgba(0, 0, 0, 0.07), 0 6px 30px 5px rgba(0, 0, 0, 0.06), 0 8px 10px -5px rgba(0, 0, 0, 0.1) !default;
|
|
471
518
|
|
|
472
519
|
$box-shadows: (
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
520
|
+
null: $box-shadow,
|
|
521
|
+
border: $box-shadow-border,
|
|
522
|
+
transparent: $box-shadow-transparent,
|
|
523
|
+
input: $box-shadow-input,
|
|
524
|
+
card: $box-shadow-card,
|
|
525
|
+
card-hover: $box-shadow-card-hover,
|
|
526
|
+
dropdown: $box-shadow-dropdown,
|
|
480
527
|
) !default;
|
|
481
528
|
|
|
482
529
|
$box-shadow-inset: 0 0 transparent !default;
|
|
@@ -486,8 +533,6 @@ $focus-ring-width: 0.25rem !default;
|
|
|
486
533
|
$focus-ring-opacity: 0.25 !default;
|
|
487
534
|
$focus-ring-color: rgba(var(--#{$prefix}primary-rgb), $focus-ring-opacity) !default;
|
|
488
535
|
$focus-ring-blur: 0 !default;
|
|
489
|
-
$focus-ring-border-color: rgba(var(--#{$prefix}primary-rgb), 50%) !default;
|
|
490
|
-
$focus-ring-box-shadow: 0 0 $focus-ring-blur $focus-ring-width $focus-ring-color !default;
|
|
491
536
|
|
|
492
537
|
// Transitions
|
|
493
538
|
$transition-time: 0.3s !default;
|
|
@@ -516,41 +561,48 @@ $alert-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
|
516
561
|
$alert-shadow: rgba($dark, 0.04) 0 2px 4px 0 !default;
|
|
517
562
|
|
|
518
563
|
// Breadcrumb
|
|
519
|
-
$breadcrumb-divider-color: var(--#{$prefix}
|
|
564
|
+
$breadcrumb-divider-color: var(--#{$prefix}gray-500) !default;
|
|
520
565
|
$breadcrumb-link-color: var(--#{$prefix}link-color) !default;
|
|
521
566
|
$breadcrumb-active-color: inherit !default;
|
|
522
567
|
$breadcrumb-active-font-weight: var(--#{$prefix}font-weight-bold) !default;
|
|
523
568
|
$breadcrumb-disabled-color: var(--#{$prefix}disabled-color) !default;
|
|
524
569
|
|
|
525
570
|
$breadcrumb-variants: (
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
571
|
+
dots: "·",
|
|
572
|
+
arrows: "›",
|
|
573
|
+
bullets: "\02022",
|
|
529
574
|
) !default;
|
|
530
575
|
|
|
531
576
|
// Badges
|
|
532
|
-
$badge-font-size: $
|
|
577
|
+
$badge-font-size: $font-size-reative-sm !default;
|
|
578
|
+
$badge-font-size-sm: $font-size-reative-xs !default;
|
|
579
|
+
$badge-font-size-lg: $font-size-reative-md !default;
|
|
533
580
|
$badge-line-height: $code-line-height !default;
|
|
534
581
|
$badge-font-weight: var(--#{$prefix}font-weight-medium) !default;
|
|
535
582
|
$badge-padding-y: 0.25em !default;
|
|
536
583
|
$badge-padding-x: 0.5em !default;
|
|
537
|
-
$badge-empty-size:
|
|
584
|
+
$badge-empty-size: 10px !default;
|
|
538
585
|
$badge-color: var(--#{$prefix}secondary) !default;
|
|
539
586
|
$badge-bg-color: var(--#{$prefix}bg-surface-secondary) !default;
|
|
540
587
|
|
|
541
588
|
// Buttons
|
|
542
589
|
$input-btn-line-height: $line-height-base !default;
|
|
543
590
|
$input-btn-font-size: $font-size-base !default;
|
|
544
|
-
$input-btn-font-family: var(--#{$prefix}font-
|
|
545
|
-
$input-btn-padding-y: 0.
|
|
591
|
+
$input-btn-font-family: var(--#{$prefix}body-font-face) !default;
|
|
592
|
+
$input-btn-padding-y: 0.5rem - 0.0625rem !default;
|
|
593
|
+
$input-btn-icon-size: $icon-size !default;
|
|
546
594
|
|
|
547
595
|
$input-btn-font-size-sm: $h5-font-size !default;
|
|
548
596
|
$input-btn-padding-x-sm: 0.25rem !default;
|
|
549
|
-
$input-btn-padding-y-sm: 0.125rem !default;
|
|
597
|
+
$input-btn-padding-y-sm: 0.125rem - 0.0625rem !default;
|
|
598
|
+
$input-btn-line-height-sm: 1rem !default;
|
|
599
|
+
$input-btn-icon-size-sm: 1rem !default;
|
|
550
600
|
|
|
551
601
|
$input-btn-font-size-lg: $h2-font-size !default;
|
|
552
|
-
$input-btn-padding-x-lg:
|
|
553
|
-
$input-btn-padding-y-lg: 0.
|
|
602
|
+
$input-btn-padding-x-lg: 1.5rem !default;
|
|
603
|
+
$input-btn-padding-y-lg: 0.75rem - 0.0625rem !default;
|
|
604
|
+
$input-btn-line-height-lg: 2rem !default;
|
|
605
|
+
$input-btn-icon-size-lg: 2rem !default;
|
|
554
606
|
|
|
555
607
|
$input-btn-focus-width: 0.25rem !default;
|
|
556
608
|
|
|
@@ -561,15 +613,18 @@ $input-height-lg: null !default;
|
|
|
561
613
|
$input-border-radius: var(--#{$prefix}border-radius) !default;
|
|
562
614
|
$input-color: var(--#{$prefix}body-color) !default;
|
|
563
615
|
$input-focus-color: var(--#{$prefix}body-color) !default;
|
|
564
|
-
$input-box-shadow: var(--#{$prefix}
|
|
616
|
+
$input-box-shadow: var(--#{$prefix}shadow-input) !default;
|
|
565
617
|
|
|
566
618
|
// Buttons
|
|
567
|
-
$btn-
|
|
619
|
+
$btn-border-radius-sm: var(--#{$prefix}border-radius-sm) !default;
|
|
620
|
+
$btn-border-radius-lg: var(--#{$prefix}border-radius-lg) !default;
|
|
621
|
+
|
|
622
|
+
$btn-disabled-opacity: .4 !default;
|
|
568
623
|
$btn-padding-x: 1rem !default;
|
|
569
624
|
$btn-font-weight: var(--#{$prefix}font-weight-medium) !default;
|
|
570
625
|
$btn-border-color: var(--#{$prefix}border-color) !default;
|
|
571
626
|
$btn-border-radius: var(--#{$prefix}border-radius) !default;
|
|
572
|
-
$btn-box-shadow: var(--#{$prefix}
|
|
627
|
+
$btn-box-shadow: var(--#{$prefix}shadow-input) !default;
|
|
573
628
|
|
|
574
629
|
// Cards
|
|
575
630
|
$card-title-spacer-y: 1.25rem !default;
|
|
@@ -582,10 +637,10 @@ $card-color: inherit !default;
|
|
|
582
637
|
|
|
583
638
|
$card-border-width: var(--#{$prefix}border-width) !default;
|
|
584
639
|
$card-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
585
|
-
$card-border-radius: var(--#{$prefix}border-radius) !default;
|
|
640
|
+
$card-border-radius: var(--#{$prefix}border-radius-lg) !default;
|
|
586
641
|
|
|
587
642
|
$card-spacer-x: 1.25rem !default;
|
|
588
|
-
$card-spacer-y:
|
|
643
|
+
$card-spacer-y: 1rem !default;
|
|
589
644
|
|
|
590
645
|
$card-cap-bg: var(--#{$prefix}bg-surface-tertiary) !default;
|
|
591
646
|
$card-cap-color: inherit !default;
|
|
@@ -641,23 +696,23 @@ $dropdown-max-width: 25rem !default;
|
|
|
641
696
|
$dropdown-scrollable-height: 13rem !default;
|
|
642
697
|
$dropdown-link-active-color: var(--#{$prefix}primary) !default;
|
|
643
698
|
$dropdown-link-active-bg: var(--#{$prefix}active-bg) !default;
|
|
644
|
-
$dropdown-box-shadow: var(--#{$prefix}
|
|
699
|
+
$dropdown-box-shadow: var(--#{$prefix}shadow-dropdown) !default;
|
|
645
700
|
|
|
646
701
|
$dropdown-divider-bg: $dropdown-border-color !default;
|
|
647
|
-
$dropdown-divider-margin-y: var(--#{$prefix}spacer) !default;
|
|
702
|
+
$dropdown-divider-margin-y: var(--#{$prefix}spacer-2) !default;
|
|
648
703
|
|
|
649
704
|
// Tooltip
|
|
650
|
-
$tooltip-bg: var(--#{$prefix}bg-surface-
|
|
651
|
-
$tooltip-color: var(--#{$prefix}
|
|
652
|
-
$tooltip-padding-y: var(--#{$prefix}spacer-
|
|
653
|
-
$tooltip-padding-x: var(--#{$prefix}spacer-
|
|
705
|
+
$tooltip-bg: var(--#{$prefix}bg-surface-inverted) !default;
|
|
706
|
+
$tooltip-color: var(--#{$prefix}text-inverted) !default;
|
|
707
|
+
$tooltip-padding-y: var(--#{$prefix}spacer-1) !default;
|
|
708
|
+
$tooltip-padding-x: var(--#{$prefix}spacer-3) !default;
|
|
654
709
|
|
|
655
710
|
// Loader
|
|
656
711
|
$loader-size: 2.5rem !default;
|
|
657
712
|
|
|
658
713
|
// Lists
|
|
659
714
|
$list-group-header-bg: var(--#{$prefix}bg-surface-tertiary) !default;
|
|
660
|
-
$list-group-header-color: var(--#{$prefix}
|
|
715
|
+
$list-group-header-color: var(--#{$prefix}gray-500) !default;
|
|
661
716
|
|
|
662
717
|
$list-group-border-color: var(--#{$prefix}border-color) !default;
|
|
663
718
|
$list-group-item-padding-y: $card-cap-padding-y !default;
|
|
@@ -665,7 +720,7 @@ $list-group-item-padding-x: $card-cap-padding-x !default;
|
|
|
665
720
|
|
|
666
721
|
// Modals
|
|
667
722
|
$modal-backdrop-opacity: 0.24 !default;
|
|
668
|
-
$modal-backdrop-bg: $
|
|
723
|
+
$modal-backdrop-bg: $backdrop-bg !default;
|
|
669
724
|
$modal-backdrop-blur: 4px !default;
|
|
670
725
|
|
|
671
726
|
$modal-fade-transform: translate(0, -1rem) !default;
|
|
@@ -696,10 +751,11 @@ $modal-sm: 380px !default;
|
|
|
696
751
|
// Nav
|
|
697
752
|
$nav-link-padding-y: 0.5rem !default;
|
|
698
753
|
$nav-link-padding-x: 0.75rem !default;
|
|
699
|
-
$nav-link-color: var(--#{$prefix}
|
|
754
|
+
$nav-link-color: var(--#{$prefix}gray-500) !default;
|
|
755
|
+
$nav-link-active-color: var(--#{$prefix}body-color) !default;
|
|
700
756
|
$nav-link-disabled-color: var(--#{$prefix}disabled-color) !default;
|
|
701
757
|
$nav-link-icon-size: $icon-size !default;
|
|
702
|
-
$nav-link-icon-color:
|
|
758
|
+
$nav-link-icon-color: inherit !default;
|
|
703
759
|
|
|
704
760
|
$nav-pills-link-active-color: var(--#{$prefix}primary) !default;
|
|
705
761
|
$nav-pills-link-active-bg: var(--#{$prefix}active-bg) !default;
|
|
@@ -721,15 +777,19 @@ $nav-tabs-bg: var(--#{$prefix}bg-surface-tertiary) !default;
|
|
|
721
777
|
// Navbar
|
|
722
778
|
$navbar-height: 3.5rem !default;
|
|
723
779
|
$navbar-padding-y: 0.25rem !default;
|
|
780
|
+
$navbar-light-color: var(--#{$prefix}secondary) !default;
|
|
781
|
+
|
|
782
|
+
$navbar-hover-color: var(--#{$prefix}body-color) !default;
|
|
724
783
|
|
|
725
784
|
$navbar-border-width: var(--#{$prefix}border-width) !default;
|
|
726
785
|
$navbar-border-color: var(--#{$prefix}border-color) !default;
|
|
727
786
|
|
|
728
787
|
$navbar-light-color: var(--#{$prefix}body-color) !default;
|
|
729
788
|
$navbar-light-brand-color: var(--#{$prefix}body-color) !default;
|
|
730
|
-
$navbar-light-active-color: var(--#{$prefix}body-color)
|
|
789
|
+
$navbar-light-active-color: var(--#{$prefix}body-color) !default;
|
|
790
|
+
$navbar-light-hover-color: var(--#{$prefix}body-color) !default;
|
|
731
791
|
$navbar-light-disabled-color: var(--#{$prefix}disabled-color) !default;
|
|
732
|
-
$navbar-light-active-bg: rgba(0, 0, 0, 0.
|
|
792
|
+
$navbar-light-active-bg: rgba(0, 0, 0, 0.2) !default;
|
|
733
793
|
|
|
734
794
|
$navbar-dark-color: rgba($white, $text-secondary-opacity) !default;
|
|
735
795
|
$navbar-dark-brand-color: $white !default;
|
|
@@ -751,6 +811,7 @@ $navbar-toggler-focus-width: 0 !default;
|
|
|
751
811
|
$navbar-overlap-height: 9rem !default;
|
|
752
812
|
|
|
753
813
|
$navbar-nav-link-padding-x: $nav-link-padding-x !default;
|
|
814
|
+
$navbar-nav-link-hover-bg: rgba(0, 0, 0, .04) !default;
|
|
754
815
|
|
|
755
816
|
$navbar-active-border-color: var(--#{$prefix}primary) !default;
|
|
756
817
|
|
|
@@ -759,7 +820,7 @@ $sidebar-width: 15rem !default;
|
|
|
759
820
|
|
|
760
821
|
// Page
|
|
761
822
|
$page-title-font-size: var(--#{$prefix}font-size-h2) !default;
|
|
762
|
-
$page-title-line-height: var(--#{$prefix}line-height-
|
|
823
|
+
$page-title-line-height: var(--#{$prefix}line-height-h2) !default;
|
|
763
824
|
$page-title-font-weight: var(--#{$prefix}font-weight-headings) !default;
|
|
764
825
|
|
|
765
826
|
// Popover
|
|
@@ -767,18 +828,21 @@ $popover-bg: var(--#{$prefix}bg-surface) !default;
|
|
|
767
828
|
$popover-header-bg: transparent !default;
|
|
768
829
|
$popover-border-color: var(--#{$prefix}border-color) !default;
|
|
769
830
|
$popover-body-color: inherit !default;
|
|
831
|
+
$popover-body-padding-x: .5rem !default;
|
|
832
|
+
$popover-body-padding-y: .5rem !default;
|
|
833
|
+
$popover-box-shadow: var(--#{$prefix}shadow-lg) !default;
|
|
770
834
|
|
|
771
835
|
// Footer
|
|
772
836
|
$footer-padding-y: 2rem !default;
|
|
773
|
-
$footer-bg: $
|
|
837
|
+
$footer-bg: var(--#{$prefix}bg-surface) !default;
|
|
774
838
|
$footer-border-color: var(--#{$prefix}border-color) !default;
|
|
775
|
-
$footer-color: var(--#{$prefix}
|
|
839
|
+
$footer-color: var(--#{$prefix}gray-500) !default;
|
|
776
840
|
|
|
777
841
|
// Pagination
|
|
778
842
|
$pagination-border-width: 0 !default;
|
|
779
843
|
$pagination-padding-y: 0.25rem !default;
|
|
780
844
|
$pagination-padding-x: 0.25rem !default;
|
|
781
|
-
$pagination-color: var(--#{$prefix}
|
|
845
|
+
$pagination-color: var(--#{$prefix}gray-500) !default;
|
|
782
846
|
$pagination-bg: transparent !default;
|
|
783
847
|
$pagination-disabled-bg: transparent !default;
|
|
784
848
|
$pagination-disabled-color: var(--#{$prefix}disabled-color) !default;
|
|
@@ -814,11 +878,12 @@ $table-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
|
814
878
|
$table-th-border-color: var(--#{$prefix}border-color-translucent) !default;
|
|
815
879
|
$table-th-padding-x: $table-cell-padding-x !default;
|
|
816
880
|
$table-th-padding-y: 0.5rem !default;
|
|
817
|
-
$table-th-color: var(--#{$prefix}
|
|
881
|
+
$table-th-color: var(--#{$prefix}gray-500) !default;
|
|
818
882
|
$table-th-bg: var(--#{$prefix}bg-surface-tertiary) !default;
|
|
819
883
|
$table-striped-order: even !default;
|
|
820
884
|
$table-striped-bg: var(--#{$prefix}bg-surface-tertiary) !default;
|
|
821
885
|
$table-group-separator-color: var(--#{$prefix}border-color-translucent) !default;
|
|
886
|
+
$table-active-bg: var(--#{$prefix}active-bg) !default;
|
|
822
887
|
|
|
823
888
|
$table-sort-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'><path d='M5 7l3 -3l3 3'/><path d='M5 10l3 3l3 -3'/></svg>") !default;
|
|
824
889
|
$table-sort-asc-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M5 7l3 3l3 -3'/></svg>") !default;
|
|
@@ -826,7 +891,8 @@ $table-sort-desc-bg-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org
|
|
|
826
891
|
|
|
827
892
|
// Toasts
|
|
828
893
|
$toast-border-color: var(--#{$prefix}border-color) !default;
|
|
829
|
-
$toast-header-color: var(--#{$prefix}
|
|
894
|
+
$toast-header-color: var(--#{$prefix}gray-500) !default;
|
|
895
|
+
$toast-background-color: var(--#{$prefix}bg-surface) !default;
|
|
830
896
|
|
|
831
897
|
// Tracking
|
|
832
898
|
$tracking-height: 1.5rem !default;
|
|
@@ -852,10 +918,10 @@ $input-bg: var(--#{$prefix}bg-forms) !default;
|
|
|
852
918
|
$input-disabled-bg: $disabled-bg !default;
|
|
853
919
|
$input-border-color: var(--#{$prefix}border-color) !default;
|
|
854
920
|
$input-border-color-translucent: var(--#{$prefix}border-color-translucent) !default;
|
|
855
|
-
$input-placeholder-color: $
|
|
921
|
+
$input-placeholder-color: var(--#{$prefix}tertiary) !default;
|
|
856
922
|
|
|
857
923
|
$input-group-addon-bg: var(--#{$prefix}bg-surface-secondary) !default;
|
|
858
|
-
$input-group-addon-color: var(--#{$prefix}
|
|
924
|
+
$input-group-addon-color: var(--#{$prefix}gray-500) !default;
|
|
859
925
|
|
|
860
926
|
$input-border-radius: var(--#{$prefix}border-radius) !default;
|
|
861
927
|
|
|
@@ -883,7 +949,7 @@ $form-check-radio-checked-bg-image: url("data:image/svg+xml,<svg xmlns='http://w
|
|
|
883
949
|
$form-check-label-disabled-opacity: $text-secondary-opacity;
|
|
884
950
|
|
|
885
951
|
$form-select-indicator-color: $text-secondary-light !default;
|
|
886
|
-
$form-select-box-shadow: var(--#{$prefix}
|
|
952
|
+
$form-select-box-shadow: var(--#{$prefix}shadow-input) !default;
|
|
887
953
|
|
|
888
954
|
$form-switch-width: 2rem !default;
|
|
889
955
|
$form-switch-height: 1.25rem !default;
|
|
@@ -899,26 +965,28 @@ $form-range-thumb-height: 1rem !default;
|
|
|
899
965
|
$form-range-thumb-focus-box-shadow-width: 0.125rem !default;
|
|
900
966
|
|
|
901
967
|
$form-feedback-icon-valid: str-replace(
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
968
|
+
url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='" + $green + "' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>"),
|
|
969
|
+
"#",
|
|
970
|
+
"%23"
|
|
905
971
|
) !default;
|
|
906
972
|
$form-feedback-icon-invalid: str-replace(
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
973
|
+
url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='" + $red + "' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'></line><line x1='6' y1='6' x2='18' y2='18'></line></svg>"),
|
|
974
|
+
"#",
|
|
975
|
+
"%23"
|
|
910
976
|
) !default;
|
|
911
977
|
|
|
912
978
|
$form-label-font-size: $h4-font-size !default;
|
|
913
979
|
$form-label-font-weight: var(--#{$prefix}font-weight-medium) !default;
|
|
914
980
|
|
|
981
|
+
$form-secondary-color: var(--#{$prefix}secondary) !default;
|
|
982
|
+
|
|
915
983
|
// Legend
|
|
916
984
|
$legend-bg: var(--#{$prefix}border-color) !default;
|
|
917
985
|
$legend-size: 0.75em !default;
|
|
918
986
|
$legend-border-radius: var(--#{$prefix}border-radius-sm) !default;
|
|
919
987
|
|
|
920
988
|
// Flags
|
|
921
|
-
$flag-box-shadow: var(--#{$prefix}
|
|
989
|
+
$flag-box-shadow: var(--#{$prefix}shadow-border) !default;
|
|
922
990
|
$flag-border-radius: var(--#{$prefix}border-radius) !default;
|
|
923
991
|
$flag-sizes: $avatar-sizes !default;
|
|
924
992
|
|
|
@@ -928,6 +996,7 @@ $payment-sizes: $avatar-sizes !default;
|
|
|
928
996
|
// Offcanvas
|
|
929
997
|
$offcanvas-bg-color: var(--#{$prefix}bg-surface) !default;
|
|
930
998
|
$offcanvas-border-color: var(--#{$prefix}border-color) !default;
|
|
999
|
+
$offcanvas-backdrop-bg: $backdrop-bg !default;
|
|
931
1000
|
|
|
932
1001
|
// Placeholder
|
|
933
1002
|
$placeholder-opacity-min: 0.1 !default;
|