@verisoft/ui-govcz 18.4.0 → 18.6.0
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/esm2022/index.mjs +2 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +34 -0
- package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
- package/esm2022/lib/components/button/button.component.mjs +87 -0
- package/esm2022/lib/components/button/index.mjs +2 -0
- package/esm2022/lib/components/calendar/calendar.component.mjs +87 -0
- package/esm2022/lib/components/calendar/index.mjs +2 -0
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +62 -0
- package/esm2022/lib/components/checkbox/index.mjs +2 -0
- package/esm2022/lib/components/confirm-dialog/confirm-dialog.component.mjs +72 -0
- package/esm2022/lib/components/confirm-dialog/index.mjs +2 -0
- package/esm2022/lib/components/dropdown/dropdown-item.component.mjs +14 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +280 -0
- package/esm2022/lib/components/dropdown/dropdown.model.mjs +2 -0
- package/esm2022/lib/components/dropdown/index.mjs +2 -0
- package/esm2022/lib/components/errors/error.component.mjs +34 -0
- package/esm2022/lib/components/errors/index.mjs +2 -0
- package/esm2022/lib/components/form-field/form-field.component.mjs +92 -0
- package/esm2022/lib/components/form-field/index.mjs +2 -0
- package/esm2022/lib/components/header/header.component.mjs +85 -0
- package/esm2022/lib/components/header/index.mjs +2 -0
- package/esm2022/lib/components/index.mjs +34 -0
- package/esm2022/lib/components/input-group/index.mjs +2 -0
- package/esm2022/lib/components/input-group/input-group.component.mjs +89 -0
- package/esm2022/lib/components/loader/index.mjs +2 -0
- package/esm2022/lib/components/loader/loader.component.mjs +34 -0
- package/esm2022/lib/components/multiselect/index.mjs +2 -0
- package/esm2022/lib/components/multiselect/multiselect.component.mjs +121 -0
- package/esm2022/lib/components/number-input/index.mjs +2 -0
- package/esm2022/lib/components/number-input/number-input.component.mjs +104 -0
- package/esm2022/lib/components/page-header/index.mjs +2 -0
- package/esm2022/lib/components/page-header/page-header.component.mjs +28 -0
- package/esm2022/lib/components/password/index.mjs +2 -0
- package/esm2022/lib/components/password/password.component.mjs +94 -0
- package/esm2022/lib/components/radiobutton/index.mjs +2 -0
- package/esm2022/lib/components/radiobutton/radiobutton.component.mjs +50 -0
- package/esm2022/lib/components/search/index.mjs +2 -0
- package/esm2022/lib/components/search/search.component.mjs +40 -0
- package/esm2022/lib/components/section/index.mjs +2 -0
- package/esm2022/lib/components/section/section.component.mjs +70 -0
- package/esm2022/lib/components/shared-components/action-button-group/action-button-group.component.mjs +97 -0
- package/esm2022/lib/components/shared-components/action-button-group/components/action-button/action-button.component.mjs +64 -0
- package/esm2022/lib/components/shared-components/action-button-group/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.mjs +91 -0
- package/esm2022/lib/components/shared-components/dynamic-component/dynamic-component.component.mjs +42 -0
- package/esm2022/lib/components/shared-components/dynamic-component/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-column.directive.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-filter.pipe.mjs +24 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.component.mjs +43 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list-page.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/feature-list/feature-list.component.mjs +285 -0
- package/esm2022/lib/components/shared-components/feature-list/index.mjs +6 -0
- package/esm2022/lib/components/shared-components/filter/directives/filter-field.directive.mjs +53 -0
- package/esm2022/lib/components/shared-components/filter/filter.component.mjs +195 -0
- package/esm2022/lib/components/shared-components/filter/filter.model.mjs +16 -0
- package/esm2022/lib/components/shared-components/filter/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/generic-field/generic-field.component.mjs +98 -0
- package/esm2022/lib/components/shared-components/generic-field/index.mjs +2 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.component.mjs +46 -0
- package/esm2022/lib/components/shared-components/generic-form/generic-form.model.mjs +50 -0
- package/esm2022/lib/components/shared-components/generic-form/index.mjs +3 -0
- package/esm2022/lib/components/shared-components/index.mjs +7 -0
- package/esm2022/lib/components/side-menu/index.mjs +3 -0
- package/esm2022/lib/components/side-menu/side-menu.component.mjs +48 -0
- package/esm2022/lib/components/side-menu/side-menu.module.mjs +59 -0
- package/esm2022/lib/components/snackbar/index.mjs +3 -0
- package/esm2022/lib/components/snackbar/services/snackbar.service.mjs +75 -0
- package/esm2022/lib/components/snackbar/snackbar.component.mjs +61 -0
- package/esm2022/lib/components/snackbar/snackbar.model.mjs +2 -0
- package/esm2022/lib/components/stepper/index.mjs +2 -0
- package/esm2022/lib/components/stepper/stepper.component.mjs +66 -0
- package/esm2022/lib/components/switch/index.mjs +2 -0
- package/esm2022/lib/components/switch/switch.component.mjs +45 -0
- package/esm2022/lib/components/tab-view/index.mjs +4 -0
- package/esm2022/lib/components/tab-view/tab-view-item.component.mjs +41 -0
- package/esm2022/lib/components/tab-view/tab-view.component.mjs +56 -0
- package/esm2022/lib/components/tab-view/tab-view.module.mjs +41 -0
- package/esm2022/lib/components/table/index.mjs +2 -0
- package/esm2022/lib/components/table/table-pagination-info.component.mjs +32 -0
- package/esm2022/lib/components/table/table.component.mjs +359 -0
- package/esm2022/lib/components/table/table.model.mjs +14 -0
- package/esm2022/lib/components/textarea/index.mjs +2 -0
- package/esm2022/lib/components/textarea/textarea.component.mjs +95 -0
- package/esm2022/lib/components/textfield/index.mjs +2 -0
- package/esm2022/lib/components/textfield/textfield.component.mjs +124 -0
- package/esm2022/lib/components/tooltip/index.mjs +2 -0
- package/esm2022/lib/components/tooltip/tooltip.component.mjs +66 -0
- package/esm2022/lib/components/tristatecheckbox/index.mjs +2 -0
- package/esm2022/lib/components/tristatecheckbox/tristatecheckbox.component.mjs +89 -0
- package/esm2022/lib/icons.mjs +35 -0
- package/esm2022/lib/index.mjs +6 -0
- package/esm2022/lib/init.service.mjs +17 -0
- package/esm2022/lib/pages/index.mjs +4 -0
- package/esm2022/lib/pages/not-authenticated/index.mjs +2 -0
- package/esm2022/lib/pages/not-authenticated/not-authenticated.component.mjs +17 -0
- package/esm2022/lib/pages/not-authorized/index.mjs +2 -0
- package/esm2022/lib/pages/not-authorized/not-authorized.component.mjs +20 -0
- package/esm2022/lib/pages/not-found/index.mjs +2 -0
- package/esm2022/lib/pages/not-found/not-found.component.mjs +20 -0
- package/esm2022/lib/pipes/color/color.pipe.mjs +27 -0
- package/esm2022/lib/pipes/index.mjs +4 -0
- package/esm2022/lib/pipes/multiselect/multiselect-options.pipe.mjs +52 -0
- package/esm2022/lib/pipes/size/size.pipe.mjs +23 -0
- package/esm2022/verisoft-ui-govcz.mjs +5 -0
- package/fesm2022/verisoft-ui-govcz.mjs +3728 -0
- package/fesm2022/verisoft-ui-govcz.mjs.map +1 -0
- package/{src/index.ts → index.d.ts} +1 -1
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +7 -0
- package/{src/lib/components/breadcrumb/index.ts → lib/components/breadcrumb/index.d.ts} +1 -1
- package/lib/components/button/button.component.d.ts +26 -0
- package/lib/components/button/index.d.ts +1 -0
- package/lib/components/calendar/calendar.component.d.ts +23 -0
- package/lib/components/calendar/index.d.ts +1 -0
- package/lib/components/checkbox/checkbox.component.d.ts +15 -0
- package/lib/components/checkbox/index.d.ts +1 -0
- package/lib/components/confirm-dialog/confirm-dialog.component.d.ts +15 -0
- package/{src/lib/components/confirm-dialog/index.ts → lib/components/confirm-dialog/index.d.ts} +1 -1
- package/lib/components/dropdown/dropdown-item.component.d.ts +7 -0
- package/lib/components/dropdown/dropdown.component.d.ts +65 -0
- package/{src/lib/components/dropdown/dropdown.model.ts → lib/components/dropdown/dropdown.model.d.ts} +6 -6
- package/{src/lib/components/dropdown/index.ts → lib/components/dropdown/index.d.ts} +1 -1
- package/lib/components/errors/error.component.d.ts +14 -0
- package/lib/components/errors/index.d.ts +1 -0
- package/lib/components/form-field/form-field.component.d.ts +25 -0
- package/{src/lib/components/form-field/index.ts → lib/components/form-field/index.d.ts} +1 -1
- package/lib/components/header/header.component.d.ts +25 -0
- package/lib/components/header/index.d.ts +1 -0
- package/{src/lib/components/index.ts → lib/components/index.d.ts} +33 -33
- package/lib/components/input-group/index.d.ts +1 -0
- package/lib/components/input-group/input-group.component.d.ts +24 -0
- package/lib/components/loader/index.d.ts +1 -0
- package/lib/components/loader/loader.component.d.ts +8 -0
- package/lib/components/multiselect/index.d.ts +1 -0
- package/lib/components/multiselect/multiselect.component.d.ts +35 -0
- package/lib/components/number-input/index.d.ts +1 -0
- package/lib/components/number-input/number-input.component.d.ts +29 -0
- package/lib/components/page-header/index.d.ts +1 -0
- package/lib/components/page-header/page-header.component.d.ts +9 -0
- package/{src/lib/components/password/index.ts → lib/components/password/index.d.ts} +1 -1
- package/lib/components/password/password.component.d.ts +23 -0
- package/lib/components/radiobutton/index.d.ts +1 -0
- package/lib/components/radiobutton/radiobutton.component.d.ts +12 -0
- package/lib/components/search/index.d.ts +1 -0
- package/lib/components/search/search.component.d.ts +14 -0
- package/lib/components/section/index.d.ts +1 -0
- package/lib/components/section/section.component.d.ts +18 -0
- package/lib/components/shared-components/action-button-group/action-button-group.component.d.ts +29 -0
- package/lib/components/shared-components/action-button-group/components/action-button/action-button.component.d.ts +24 -0
- package/{src/lib/components/shared-components/action-button-group/index.ts → lib/components/shared-components/action-button-group/index.d.ts} +2 -2
- package/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.d.ts +17 -0
- package/lib/components/shared-components/dynamic-component/dynamic-component.component.d.ts +16 -0
- package/{src/lib/components/shared-components/dynamic-component/index.ts → lib/components/shared-components/dynamic-component/index.d.ts} +2 -2
- package/lib/components/shared-components/feature-list/directives/feature-list-column.directive.d.ts +10 -0
- package/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.d.ts +6 -0
- package/lib/components/shared-components/feature-list/feature-list-filter.pipe.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.component.d.ts +9 -0
- package/lib/components/shared-components/feature-list/feature-list-page.model.d.ts +23 -0
- package/lib/components/shared-components/feature-list/feature-list.component.d.ts +62 -0
- package/{src/lib/components/shared-components/feature-list/index.ts → lib/components/shared-components/feature-list/index.d.ts} +5 -5
- package/lib/components/shared-components/filter/directives/filter-field.directive.d.ts +20 -0
- package/lib/components/shared-components/filter/filter.component.d.ts +53 -0
- package/lib/components/shared-components/filter/filter.model.d.ts +2 -0
- package/{src/lib/components/shared-components/filter/index.ts → lib/components/shared-components/filter/index.d.ts} +2 -2
- package/lib/components/shared-components/generic-field/generic-field.component.d.ts +28 -0
- package/{src/lib/components/shared-components/generic-field/index.ts → lib/components/shared-components/generic-field/index.d.ts} +1 -1
- package/lib/components/shared-components/generic-form/generic-form.component.d.ts +15 -0
- package/lib/components/shared-components/generic-form/generic-form.model.d.ts +4 -0
- package/{src/lib/components/shared-components/generic-form/index.ts → lib/components/shared-components/generic-form/index.d.ts} +2 -2
- package/{src/lib/components/shared-components/index.ts → lib/components/shared-components/index.d.ts} +6 -6
- package/{src/lib/components/side-menu/index.ts → lib/components/side-menu/index.d.ts} +2 -2
- package/lib/components/side-menu/side-menu.component.d.ts +15 -0
- package/lib/components/side-menu/side-menu.module.d.ts +12 -0
- package/{src/lib/components/snackbar/index.ts → lib/components/snackbar/index.d.ts} +2 -2
- package/lib/components/snackbar/services/snackbar.service.d.ts +18 -0
- package/lib/components/snackbar/snackbar.component.d.ts +18 -0
- package/{src/lib/components/snackbar/snackbar.model.ts → lib/components/snackbar/snackbar.model.d.ts} +10 -10
- package/lib/components/stepper/index.d.ts +1 -0
- package/lib/components/stepper/stepper.component.d.ts +20 -0
- package/lib/components/switch/index.d.ts +1 -0
- package/lib/components/switch/switch.component.d.ts +12 -0
- package/{src/lib/components/tab-view/index.ts → lib/components/tab-view/index.d.ts} +3 -3
- package/lib/components/tab-view/tab-view-item.component.d.ts +14 -0
- package/lib/components/tab-view/tab-view.component.d.ts +19 -0
- package/lib/components/tab-view/tab-view.module.d.ts +12 -0
- package/{src/lib/components/table/index.ts → lib/components/table/index.d.ts} +1 -1
- package/lib/components/table/table-pagination-info.component.d.ts +12 -0
- package/lib/components/table/table.component.d.ts +91 -0
- package/lib/components/table/table.model.d.ts +3 -0
- package/lib/components/textarea/index.d.ts +1 -0
- package/lib/components/textarea/textarea.component.d.ts +25 -0
- package/lib/components/textfield/index.d.ts +1 -0
- package/lib/components/textfield/textfield.component.d.ts +28 -0
- package/lib/components/tooltip/index.d.ts +1 -0
- package/lib/components/tooltip/tooltip.component.d.ts +18 -0
- package/{src/lib/components/tristatecheckbox/index.ts → lib/components/tristatecheckbox/index.d.ts} +1 -1
- package/lib/components/tristatecheckbox/tristatecheckbox.component.d.ts +27 -0
- package/lib/icons.d.ts +2 -0
- package/{src/lib/index.ts → lib/index.d.ts} +5 -5
- package/lib/init.service.d.ts +6 -0
- package/{src/lib/pages/index.ts → lib/pages/index.d.ts} +3 -3
- package/{src/lib/pages/not-authenticated/index.ts → lib/pages/not-authenticated/index.d.ts} +1 -1
- package/lib/pages/not-authenticated/not-authenticated.component.d.ts +5 -0
- package/{src/lib/pages/not-authorized/index.ts → lib/pages/not-authorized/index.d.ts} +1 -1
- package/lib/pages/not-authorized/not-authorized.component.d.ts +6 -0
- package/{src/lib/pages/not-found/index.ts → lib/pages/not-found/index.d.ts} +1 -1
- package/lib/pages/not-found/not-found.component.d.ts +6 -0
- package/lib/pipes/color/color.pipe.d.ts +8 -0
- package/{src/lib/pipes/index.ts → lib/pipes/index.d.ts} +3 -3
- package/lib/pipes/multiselect/multiselect-options.pipe.d.ts +9 -0
- package/lib/pipes/size/size.pipe.d.ts +8 -0
- package/package.json +37 -21
- package/.eslintrc.json +0 -48
- package/assets/i18n/cs.json +0 -9
- package/assets/i18n/en.json +0 -9
- package/assets/icons/components/24-7.svg +0 -12
- package/assets/icons/components/NO-ICON.svg +0 -2
- package/assets/icons/components/add.svg +0 -6
- package/assets/icons/components/all.svg +0 -3
- package/assets/icons/components/arrival.svg +0 -12
- package/assets/icons/components/arrow-left.svg +0 -3
- package/assets/icons/components/arrow-right.svg +0 -3
- package/assets/icons/components/bars.svg +0 -3
- package/assets/icons/components/bell.svg +0 -4
- package/assets/icons/components/big-help.svg +0 -12
- package/assets/icons/components/book.svg +0 -10
- package/assets/icons/components/bookmarks.svg +0 -11
- package/assets/icons/components/box-arrow-up-right.svg +0 -11
- package/assets/icons/components/business-file.svg +0 -14
- package/assets/icons/components/businessman.svg +0 -3
- package/assets/icons/components/cactus.svg +0 -14
- package/assets/icons/components/calendar.svg +0 -3
- package/assets/icons/components/camera.svg +0 -5
- package/assets/icons/components/car.svg +0 -5
- package/assets/icons/components/card-400.svg +0 -11
- package/assets/icons/components/card-401.svg +0 -11
- package/assets/icons/components/card-403.svg +0 -11
- package/assets/icons/components/card-404.svg +0 -11
- package/assets/icons/components/card-500.svg +0 -11
- package/assets/icons/components/card-502.svg +0 -11
- package/assets/icons/components/card-503.svg +0 -12
- package/assets/icons/components/card-504.svg +0 -15
- package/assets/icons/components/caret-right-fill.svg +0 -3
- package/assets/icons/components/certification.svg +0 -14
- package/assets/icons/components/chamber-deputies-cr.svg +0 -11
- package/assets/icons/components/chamber-deputies.svg +0 -13
- package/assets/icons/components/chat.svg +0 -11
- package/assets/icons/components/check-circle.svg +0 -4
- package/assets/icons/components/check-lg.svg +0 -3
- package/assets/icons/components/chevron-double-left.svg +0 -4
- package/assets/icons/components/chevron-double-right.svg +0 -4
- package/assets/icons/components/chevron-down.svg +0 -3
- package/assets/icons/components/chevron-left.svg +0 -3
- package/assets/icons/components/chevron-right.svg +0 -3
- package/assets/icons/components/chevron-up.svg +0 -3
- package/assets/icons/components/cities.svg +0 -17
- package/assets/icons/components/city-office.svg +0 -17
- package/assets/icons/components/coins.svg +0 -14
- package/assets/icons/components/communication.svg +0 -4
- package/assets/icons/components/confusion.svg +0 -8
- package/assets/icons/components/contact.svg +0 -6
- package/assets/icons/components/copy.svg +0 -10
- package/assets/icons/components/court.svg +0 -5
- package/assets/icons/components/covid.svg +0 -5
- package/assets/icons/components/czech-lion.svg +0 -134
- package/assets/icons/components/dash-lg.svg +0 -3
- package/assets/icons/components/diagram.svg +0 -3
- package/assets/icons/components/digital.svg +0 -10
- package/assets/icons/components/disability.svg +0 -5
- package/assets/icons/components/doc-agreement.svg +0 -7
- package/assets/icons/components/doc-basic-info.svg +0 -18
- package/assets/icons/components/doc-business.svg +0 -8
- package/assets/icons/components/doc-car-point-list.svg +0 -16
- package/assets/icons/components/doc-diploma.svg +0 -17
- package/assets/icons/components/doc-driver-info.svg +0 -8
- package/assets/icons/components/doc-election.svg +0 -13
- package/assets/icons/components/doc-filled.svg +0 -16
- package/assets/icons/components/doc-health.svg +0 -3
- package/assets/icons/components/doc-judgment.svg +0 -8
- package/assets/icons/components/doc-patient.svg +0 -8
- package/assets/icons/components/doc-personal-info.svg +0 -11
- package/assets/icons/components/doc-petition.svg +0 -8
- package/assets/icons/components/doc-registers.svg +0 -7
- package/assets/icons/components/doc-review.svg +0 -20
- package/assets/icons/components/doc-search.svg +0 -8
- package/assets/icons/components/doc-stamp.svg +0 -15
- package/assets/icons/components/doc-state.svg +0 -13
- package/assets/icons/components/doc-taxes.svg +0 -16
- package/assets/icons/components/doc-universal.svg +0 -13
- package/assets/icons/components/doc-visa.svg +0 -14
- package/assets/icons/components/documents.svg +0 -11
- package/assets/icons/components/download.svg +0 -4
- package/assets/icons/components/driver-file.svg +0 -14
- package/assets/icons/components/driver.svg +0 -7
- package/assets/icons/components/driving-licence.svg +0 -7
- package/assets/icons/components/email-notification.svg +0 -12
- package/assets/icons/components/empty-file.svg +0 -13
- package/assets/icons/components/energy.svg +0 -11
- package/assets/icons/components/envelope-fill.svg +0 -3
- package/assets/icons/components/envelope.svg +0 -3
- package/assets/icons/components/error.svg +0 -12
- package/assets/icons/components/european-parliament.svg +0 -11
- package/assets/icons/components/exclamation-lg.svg +0 -3
- package/assets/icons/components/exclamation-triangle-fill.svg +0 -10
- package/assets/icons/components/export.svg +0 -13
- package/assets/icons/components/eye.svg +0 -4
- package/assets/icons/components/family.svg +0 -12
- package/assets/icons/components/fast-forward.svg +0 -1
- package/assets/icons/components/filter.svg +0 -3
- package/assets/icons/components/gear.svg +0 -11
- package/assets/icons/components/geo-alt-fill.svg +0 -10
- package/assets/icons/components/globe.svg +0 -12
- package/assets/icons/components/graduate.svg +0 -4
- package/assets/icons/components/group.svg +0 -3
- package/assets/icons/components/hand-503.svg +0 -10
- package/assets/icons/components/hand-504.svg +0 -7
- package/assets/icons/components/hand.svg +0 -14
- package/assets/icons/components/health.svg +0 -5
- package/assets/icons/components/help.svg +0 -4
- package/assets/icons/components/history.svg +0 -4
- package/assets/icons/components/holiday.svg +0 -13
- package/assets/icons/components/hourglass.svg +0 -4
- package/assets/icons/components/house-door-fill.svg +0 -3
- package/assets/icons/components/house.svg +0 -13
- package/assets/icons/components/id-card.svg +0 -6
- package/assets/icons/components/id-info.svg +0 -9
- package/assets/icons/components/id.svg +0 -6
- package/assets/icons/components/illness.svg +0 -9
- package/assets/icons/components/info-circle-fill.svg +0 -10
- package/assets/icons/components/info-circle.svg +0 -11
- package/assets/icons/components/info-list.svg +0 -14
- package/assets/icons/components/info.svg +0 -3
- package/assets/icons/components/institute-file.svg +0 -23
- package/assets/icons/components/institution.svg +0 -10
- package/assets/icons/components/job-loss.svg +0 -4
- package/assets/icons/components/job.svg +0 -3
- package/assets/icons/components/lightbulb-fill.svg +0 -10
- package/assets/icons/components/list.svg +0 -3
- package/assets/icons/components/loader.svg +0 -3
- package/assets/icons/components/login.svg +0 -11
- package/assets/icons/components/logout.svg +0 -13
- package/assets/icons/components/map.svg +0 -11
- package/assets/icons/components/mobile-phone.svg +0 -13
- package/assets/icons/components/moon.svg +0 -10
- package/assets/icons/components/mouse.svg +0 -3
- package/assets/icons/components/my-filing.svg +0 -15
- package/assets/icons/components/my-state-data.svg +0 -19
- package/assets/icons/components/new-comments.svg +0 -6
- package/assets/icons/components/newborn.svg +0 -16
- package/assets/icons/components/news.svg +0 -20
- package/assets/icons/components/packet.svg +0 -11
- package/assets/icons/components/passport.svg +0 -7
- package/assets/icons/components/pencil.svg +0 -3
- package/assets/icons/components/personal-file.svg +0 -14
- package/assets/icons/components/pet.svg +0 -10
- package/assets/icons/components/petrol-station.svg +0 -14
- package/assets/icons/components/pills.svg +0 -4
- package/assets/icons/components/plus-lg.svg +0 -3
- package/assets/icons/components/population-register.svg +0 -12
- package/assets/icons/components/port-card.svg +0 -8
- package/assets/icons/components/portal.svg +0 -8
- package/assets/icons/components/pregnant.svg +0 -11
- package/assets/icons/components/president.svg +0 -13
- package/assets/icons/components/presidential-election.svg +0 -12
- package/assets/icons/components/print-fill.svg +0 -4
- package/assets/icons/components/profile-settings.svg +0 -13
- package/assets/icons/components/property.svg +0 -4
- package/assets/icons/components/question-circle.svg +0 -4
- package/assets/icons/components/queue.svg +0 -13
- package/assets/icons/components/quotes.svg +0 -6
- package/assets/icons/components/region.svg +0 -11
- package/assets/icons/components/regional-elections-clear.svg +0 -11
- package/assets/icons/components/regional-elections.svg +0 -12
- package/assets/icons/components/register-of-persons.svg +0 -7
- package/assets/icons/components/retiree.svg +0 -8
- package/assets/icons/components/rings.svg +0 -5
- package/assets/icons/components/search.svg +0 -10
- package/assets/icons/components/senate.svg +0 -11
- package/assets/icons/components/senior.svg +0 -4
- package/assets/icons/components/settings.svg +0 -13
- package/assets/icons/components/simple-envelope.svg +0 -3
- package/assets/icons/components/sms-notification.svg +0 -7
- package/assets/icons/components/sos.svg +0 -6
- package/assets/icons/components/star-fill.svg +0 -10
- package/assets/icons/components/state-file.svg +0 -8
- package/assets/icons/components/sun.svg +0 -10
- package/assets/icons/components/telephone.svg +0 -10
- package/assets/icons/components/three-dots-vertical.svg +0 -3
- package/assets/icons/components/time.svg +0 -4
- package/assets/icons/components/tombstone.svg +0 -7
- package/assets/icons/components/trash.svg +0 -6
- package/assets/icons/components/twitter-x.svg +0 -10
- package/assets/icons/components/upload.svg +0 -4
- package/assets/icons/components/user-login.svg +0 -13
- package/assets/icons/components/user.svg +0 -3
- package/assets/icons/components/vaccine.svg +0 -11
- package/assets/icons/components/x-circle.svg +0 -4
- package/assets/icons/components/x-lg.svg +0 -3
- package/assets/icons/components/x.svg +0 -3
- package/assets/logos/v-logo.svg +0 -4
- package/jest.config.ts +0 -21
- package/ng-package.json +0 -10
- package/project.json +0 -49
- package/src/config.d.ts +0 -10
- package/src/lib/components/breadcrumb/breadcrumb.component.html +0 -23
- package/src/lib/components/breadcrumb/breadcrumb.component.scss +0 -0
- package/src/lib/components/breadcrumb/breadcrumb.component.spec.ts +0 -21
- package/src/lib/components/breadcrumb/breadcrumb.component.ts +0 -30
- package/src/lib/components/button/button.component.html +0 -26
- package/src/lib/components/button/button.component.scss +0 -0
- package/src/lib/components/button/button.component.ts +0 -72
- package/src/lib/components/button/index.ts +0 -1
- package/src/lib/components/calendar/calendar.component.html +0 -28
- package/src/lib/components/calendar/calendar.component.scss +0 -0
- package/src/lib/components/calendar/calendar.component.ts +0 -79
- package/src/lib/components/calendar/index.ts +0 -1
- package/src/lib/components/checkbox/checkbox.component.html +0 -23
- package/src/lib/components/checkbox/checkbox.component.scss +0 -0
- package/src/lib/components/checkbox/checkbox.component.ts +0 -62
- package/src/lib/components/checkbox/index.ts +0 -1
- package/src/lib/components/confirm-dialog/confirm-dialog.component.html +0 -50
- package/src/lib/components/confirm-dialog/confirm-dialog.component.scss +0 -4
- package/src/lib/components/confirm-dialog/confirm-dialog.component.ts +0 -80
- package/src/lib/components/dropdown/dropdown-item.component.html +0 -8
- package/src/lib/components/dropdown/dropdown-item.component.ts +0 -18
- package/src/lib/components/dropdown/dropdown.component.html +0 -90
- package/src/lib/components/dropdown/dropdown.component.scss +0 -108
- package/src/lib/components/dropdown/dropdown.component.spec.ts +0 -21
- package/src/lib/components/dropdown/dropdown.component.ts +0 -297
- package/src/lib/components/errors/error.component.html +0 -11
- package/src/lib/components/errors/error.component.scss +0 -0
- package/src/lib/components/errors/error.component.spec.ts +0 -19
- package/src/lib/components/errors/error.component.ts +0 -30
- package/src/lib/components/errors/index.ts +0 -1
- package/src/lib/components/form-field/form-field.component.html +0 -14
- package/src/lib/components/form-field/form-field.component.scss +0 -0
- package/src/lib/components/form-field/form-field.component.spec.ts +0 -21
- package/src/lib/components/form-field/form-field.component.ts +0 -78
- package/src/lib/components/header/header.component.html +0 -122
- package/src/lib/components/header/header.component.scss +0 -0
- package/src/lib/components/header/header.component.ts +0 -91
- package/src/lib/components/header/index.ts +0 -1
- package/src/lib/components/input-group/index.ts +0 -1
- package/src/lib/components/input-group/input-group.component.html +0 -41
- package/src/lib/components/input-group/input-group.component.scss +0 -0
- package/src/lib/components/input-group/input-group.component.ts +0 -77
- package/src/lib/components/loader/index.ts +0 -1
- package/src/lib/components/loader/loader.component.html +0 -7
- package/src/lib/components/loader/loader.component.scss +0 -0
- package/src/lib/components/loader/loader.component.spec.ts +0 -21
- package/src/lib/components/loader/loader.component.ts +0 -33
- package/src/lib/components/multiselect/index.ts +0 -1
- package/src/lib/components/multiselect/multiselect.component.html +0 -21
- package/src/lib/components/multiselect/multiselect.component.scss +0 -0
- package/src/lib/components/multiselect/multiselect.component.spec.ts +0 -21
- package/src/lib/components/multiselect/multiselect.component.ts +0 -119
- package/src/lib/components/number-input/index.ts +0 -1
- package/src/lib/components/number-input/number-input.component.html +0 -48
- package/src/lib/components/number-input/number-input.component.scss +0 -0
- package/src/lib/components/number-input/number-input.component.ts +0 -82
- package/src/lib/components/page-header/index.ts +0 -1
- package/src/lib/components/page-header/page-header.component.html +0 -3
- package/src/lib/components/page-header/page-header.component.scss +0 -11
- package/src/lib/components/page-header/page-header.component.spec.ts +0 -21
- package/src/lib/components/page-header/page-header.component.ts +0 -29
- package/src/lib/components/password/password.component.html +0 -31
- package/src/lib/components/password/password.component.scss +0 -0
- package/src/lib/components/password/password.component.spec.ts +0 -21
- package/src/lib/components/password/password.component.ts +0 -85
- package/src/lib/components/radiobutton/index.ts +0 -1
- package/src/lib/components/radiobutton/radiobutton.component.html +0 -23
- package/src/lib/components/radiobutton/radiobutton.component.scss +0 -0
- package/src/lib/components/radiobutton/radiobutton.component.ts +0 -58
- package/src/lib/components/search/index.ts +0 -1
- package/src/lib/components/search/search.component.html +0 -23
- package/src/lib/components/search/search.component.scss +0 -0
- package/src/lib/components/search/search.component.ts +0 -47
- package/src/lib/components/section/index.ts +0 -1
- package/src/lib/components/section/section.component.html +0 -26
- package/src/lib/components/section/section.component.scss +0 -0
- package/src/lib/components/section/section.component.ts +0 -57
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.html +0 -27
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/action-button-group.component.ts +0 -114
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.html +0 -11
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.scss +0 -0
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.spec.ts +0 -21
- package/src/lib/components/shared-components/action-button-group/components/action-button/action-button.component.ts +0 -71
- package/src/lib/components/shared-components/dynamic-component/dynamic-component-factory.service.ts +0 -142
- package/src/lib/components/shared-components/dynamic-component/dynamic-component.component.ts +0 -56
- package/src/lib/components/shared-components/feature-list/directives/feature-list-column.directive.ts +0 -32
- package/src/lib/components/shared-components/feature-list/directives/feature-list-filter-field.directive.ts +0 -8
- package/src/lib/components/shared-components/feature-list/feature-list-filter.pipe.ts +0 -21
- package/src/lib/components/shared-components/feature-list/feature-list-page.component.ts +0 -31
- package/src/lib/components/shared-components/feature-list/feature-list-page.model.ts +0 -42
- package/src/lib/components/shared-components/feature-list/feature-list.component.html +0 -59
- package/src/lib/components/shared-components/feature-list/feature-list.component.scss +0 -10
- package/src/lib/components/shared-components/feature-list/feature-list.component.ts +0 -342
- package/src/lib/components/shared-components/filter/directives/filter-field.directive.ts +0 -35
- package/src/lib/components/shared-components/filter/filter.component.html +0 -68
- package/src/lib/components/shared-components/filter/filter.component.scss +0 -0
- package/src/lib/components/shared-components/filter/filter.component.spec.ts +0 -21
- package/src/lib/components/shared-components/filter/filter.component.stories.ts +0 -23
- package/src/lib/components/shared-components/filter/filter.component.ts +0 -284
- package/src/lib/components/shared-components/filter/filter.model.ts +0 -18
- package/src/lib/components/shared-components/generic-field/generic-field.component.html +0 -97
- package/src/lib/components/shared-components/generic-field/generic-field.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-field/generic-field.component.ts +0 -94
- package/src/lib/components/shared-components/generic-form/generic-form.component.html +0 -46
- package/src/lib/components/shared-components/generic-form/generic-form.component.spec.ts +0 -21
- package/src/lib/components/shared-components/generic-form/generic-form.component.ts +0 -57
- package/src/lib/components/shared-components/generic-form/generic-form.model.spec.ts +0 -82
- package/src/lib/components/shared-components/generic-form/generic-form.model.ts +0 -68
- package/src/lib/components/side-menu/side-menu.component.html +0 -25
- package/src/lib/components/side-menu/side-menu.component.scss +0 -23
- package/src/lib/components/side-menu/side-menu.component.ts +0 -42
- package/src/lib/components/side-menu/side-menu.module.ts +0 -56
- package/src/lib/components/sidemenu/index.ts +0 -2
- package/src/lib/components/snackbar/services/snackbar.service.ts +0 -73
- package/src/lib/components/snackbar/snackbar.component.html +0 -14
- package/src/lib/components/snackbar/snackbar.component.scss +0 -0
- package/src/lib/components/snackbar/snackbar.component.spec.ts +0 -21
- package/src/lib/components/snackbar/snackbar.component.ts +0 -45
- package/src/lib/components/stepper/index.ts +0 -1
- package/src/lib/components/stepper/stepper.component.html +0 -35
- package/src/lib/components/stepper/stepper.component.scss +0 -9
- package/src/lib/components/stepper/stepper.component.ts +0 -61
- package/src/lib/components/switch/index.ts +0 -1
- package/src/lib/components/switch/switch.component.html +0 -16
- package/src/lib/components/switch/switch.component.scss +0 -0
- package/src/lib/components/switch/switch.component.ts +0 -37
- package/src/lib/components/tab-view/tab-view-item.component.ts +0 -23
- package/src/lib/components/tab-view/tab-view.component.html +0 -51
- package/src/lib/components/tab-view/tab-view.component.scss +0 -43
- package/src/lib/components/tab-view/tab-view.component.ts +0 -61
- package/src/lib/components/tab-view/tab-view.module.ts +0 -25
- package/src/lib/components/table/table-pagination-info.component.html +0 -9
- package/src/lib/components/table/table-pagination-info.component.ts +0 -22
- package/src/lib/components/table/table.component.html +0 -198
- package/src/lib/components/table/table.component.scss +0 -193
- package/src/lib/components/table/table.component.ts +0 -387
- package/src/lib/components/table/table.model.ts +0 -17
- package/src/lib/components/table/table.models.ts +0 -12
- package/src/lib/components/textarea/index.ts +0 -1
- package/src/lib/components/textarea/textarea.component.html +0 -50
- package/src/lib/components/textarea/textarea.component.scss +0 -0
- package/src/lib/components/textarea/textarea.component.ts +0 -78
- package/src/lib/components/textfield/index.ts +0 -1
- package/src/lib/components/textfield/textfield.component.html +0 -56
- package/src/lib/components/textfield/textfield.component.scss +0 -0
- package/src/lib/components/textfield/textfield.component.ts +0 -114
- package/src/lib/components/tooltip/index.ts +0 -1
- package/src/lib/components/tooltip/tooltip.component.html +0 -10
- package/src/lib/components/tooltip/tooltip.component.scss +0 -0
- package/src/lib/components/tooltip/tooltip.component.ts +0 -57
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.html +0 -23
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.scss +0 -0
- package/src/lib/components/tristatecheckbox/tristatecheckbox.component.ts +0 -103
- package/src/lib/icons.ts +0 -36
- package/src/lib/init.service.ts +0 -11
- package/src/lib/interceptors/http-error-message.interceptor.ts +0 -45
- package/src/lib/pages/bad-request-page/bad-request-page.component.html +0 -5
- package/src/lib/pages/bad-request-page/bad-request-page.component.scss +0 -0
- package/src/lib/pages/bad-request-page/bad-request-page.component.ts +0 -15
- package/src/lib/pages/error-page/error-page.component.html +0 -5
- package/src/lib/pages/error-page/error-page.component.scss +0 -0
- package/src/lib/pages/error-page/error-page.component.ts +0 -32
- package/src/lib/pages/error-page/error-page.constants.ts +0 -19
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.html +0 -5
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.scss +0 -0
- package/src/lib/pages/internal-server-error-page/internal-server-error-page.component.ts +0 -16
- package/src/lib/pages/not-authenticated/not-authenticated.component.html +0 -5
- package/src/lib/pages/not-authenticated/not-authenticated.component.ts +0 -14
- package/src/lib/pages/not-authorized/not-authorized.component.html +0 -5
- package/src/lib/pages/not-authorized/not-authorized.component.ts +0 -18
- package/src/lib/pages/not-found/not-found.component.html +0 -5
- package/src/lib/pages/not-found/not-found.component.ts +0 -18
- package/src/lib/pages/not-found-page/not-found-page.component.html +0 -6
- package/src/lib/pages/not-found-page/not-found-page.component.scss +0 -0
- package/src/lib/pages/not-found-page/not-found-page.component.ts +0 -16
- package/src/lib/pipes/color/color.pipe.ts +0 -24
- package/src/lib/pipes/multiselect/multiselect-options.pipe.ts +0 -61
- package/src/lib/pipes/size/size.pipe.ts +0 -20
- package/src/sass/header.css +0 -526
- package/src/sass/header.scss +0 -480
- package/src/sass/main.scss +0 -246
- package/src/sass/scrollbar.scss +0 -22
- package/src/sass/sidemenu.css +0 -205
- package/src/sass/vendors/_bootstrap.scss +0 -2
- package/src/test-setup.ts +0 -8
- package/tsconfig.json +0 -32
- package/tsconfig.lib.json +0 -17
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -16
package/src/sass/header.scss
DELETED
|
@@ -1,480 +0,0 @@
|
|
|
1
|
-
.gov-header {
|
|
2
|
-
background-color: var(--component-nav-background)
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.gov-header__content {
|
|
6
|
-
display: flex;
|
|
7
|
-
flex-direction: column;
|
|
8
|
-
gap: var(--templates-margin-m);
|
|
9
|
-
padding: var(--templates-margin-l)
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.gov-header__navigation {
|
|
13
|
-
position: relative;
|
|
14
|
-
z-index: 10;
|
|
15
|
-
padding: var(--templates-margin-s) 0;
|
|
16
|
-
border-top: 1px solid var(--border-primary)
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.gov-header__logo {
|
|
20
|
-
color: var(--icon-on-subtle);
|
|
21
|
-
font-size: var(--font-size-body-m);
|
|
22
|
-
line-height: 150%;
|
|
23
|
-
font-weight: 400;
|
|
24
|
-
text-decoration: none
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.gov-header__action {
|
|
28
|
-
display: none
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.gov-header__search-bar {
|
|
32
|
-
display: none !important;
|
|
33
|
-
position: absolute !important;
|
|
34
|
-
top: 0;
|
|
35
|
-
left: 0;
|
|
36
|
-
right: 0;
|
|
37
|
-
width: 100%;
|
|
38
|
-
background-color: var(--component-nav-background)
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.gov-header__search-bar>* {
|
|
42
|
-
width: 100%;
|
|
43
|
-
padding: var(--templates-margin-l) 0
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.gov-header .gov-logo {
|
|
47
|
-
color: var(--icon-on-subtle)
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.gov-header__lang ::ng-deep gov-form-control {
|
|
51
|
-
margin-bottom: 0 !important;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
@media(min-width: 48em) {
|
|
55
|
-
.gov-header__content {
|
|
56
|
-
display: flex;
|
|
57
|
-
flex-direction: row;
|
|
58
|
-
justify-content: space-between;
|
|
59
|
-
align-items: center;
|
|
60
|
-
padding: 0 var(--templates-margin-m)
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.gov-header__divider {
|
|
64
|
-
max-height: 4.5rem;
|
|
65
|
-
padding: var(--templates-margin-m) 0;
|
|
66
|
-
border-bottom: 1px solid var(--component-nav-separator)
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.gov-header__navigation {
|
|
70
|
-
max-width: 100%;
|
|
71
|
-
max-height: 4rem;
|
|
72
|
-
margin: 0 auto;
|
|
73
|
-
padding: var(--templates-margin-s) 0;
|
|
74
|
-
border: none;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.gov-header__logo {
|
|
78
|
-
font-size: var(--font-size-body-l);
|
|
79
|
-
line-height: 150%;
|
|
80
|
-
font-weight: 400
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.gov-header__action {
|
|
84
|
-
display: flex
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.gov-header__search-bar .gov-search {
|
|
88
|
-
width: 31.25rem
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.gov-header__mobile {
|
|
92
|
-
display: none
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.gov-header--small .gov-header__content {
|
|
97
|
-
position: relative;
|
|
98
|
-
z-index: 10;
|
|
99
|
-
padding: 0;
|
|
100
|
-
gap: 0
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.gov-header--small .gov-header__content>.gov-header__navigation {
|
|
104
|
-
position: static
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.gov-header--small .gov-header__left {
|
|
108
|
-
padding: var(--templates-margin-m)
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
@media(min-width: 48em) {
|
|
112
|
-
.gov-header--small {
|
|
113
|
-
padding: var(--templates-margin-m) 0
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.gov-header--small .gov-header__content {
|
|
117
|
-
padding: 0 var(--templates-margin-m);
|
|
118
|
-
gap: var(--templates-margin-l)
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.gov-header--small .gov-header__left {
|
|
122
|
-
padding: 0
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.gov-header--small .gov-header__navigation {
|
|
126
|
-
max-width: none;
|
|
127
|
-
margin: 0 auto 0 0
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.gov-navigation {
|
|
132
|
-
background-color: var(--component-nav-background)
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.gov-navigation ul {
|
|
136
|
-
margin: 0
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.gov-navigation ul li {
|
|
140
|
-
margin: 0
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.gov-navigation ul li:before {
|
|
144
|
-
content: none
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.gov-navigation>ul {
|
|
148
|
-
display: flex;
|
|
149
|
-
flex-direction: column;
|
|
150
|
-
justify-content: center;
|
|
151
|
-
gap: var(--templates-margin-s);
|
|
152
|
-
margin: 0;
|
|
153
|
-
padding: 0
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.gov-navigation>ul>li {
|
|
157
|
-
width: 100%
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.gov-navigation>ul>li>a {
|
|
161
|
-
display: flex;
|
|
162
|
-
align-items: center;
|
|
163
|
-
height: var(--height-component-l);
|
|
164
|
-
padding: 0 var(--spacing-m-nudge);
|
|
165
|
-
text-decoration: none;
|
|
166
|
-
font-size: var(--font-size-body-l);
|
|
167
|
-
line-height: 150%;
|
|
168
|
-
font-weight: 400;
|
|
169
|
-
font-weight: 500;
|
|
170
|
-
color: var(--text-primary-color);
|
|
171
|
-
white-space: nowrap;
|
|
172
|
-
border-radius: var(--corner-radius-s)
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.gov-navigation>ul>li>a:hover {
|
|
176
|
-
background-color: var(--button-outlined-primary-hover);
|
|
177
|
-
color: var(--text-primary-color);
|
|
178
|
-
text-decoration: none
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.gov-navigation>ul>li>a:active {
|
|
182
|
-
background-color: var(--button-outlined-primary-active)
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.gov-navigation>ul>li>gov-button,
|
|
186
|
-
.gov-navigation>ul>li>.gov-button {
|
|
187
|
-
width: 100%
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.gov-navigation>ul>li>gov-button .element,
|
|
191
|
-
.gov-navigation>ul>li>.gov-button .element {
|
|
192
|
-
display: flex;
|
|
193
|
-
justify-content: space-between;
|
|
194
|
-
align-items: center;
|
|
195
|
-
gap: var(--spacing-m);
|
|
196
|
-
width: calc(100% + var(--spacing-m-nudge)*2);
|
|
197
|
-
font-weight: 500 !important
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.gov-navigation__item {
|
|
201
|
-
width: calc(100% - var(--spacing-m-nudge)*2);
|
|
202
|
-
height: var(--height-component-l);
|
|
203
|
-
padding: 0 var(--spacing-m-nudge)
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.gov-navigation--has-megamenu {
|
|
207
|
-
position: static !important
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
@media(min-width: 48em) {
|
|
211
|
-
.gov-navigation {
|
|
212
|
-
background-color: rgba(0, 0, 0, 0)
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.gov-navigation>ul {
|
|
216
|
-
display: flex;
|
|
217
|
-
flex-direction: row;
|
|
218
|
-
justify-content: space-between;
|
|
219
|
-
align-items: center;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.gov-navigation>ul>li {
|
|
223
|
-
position: relative;
|
|
224
|
-
display: flex;
|
|
225
|
-
width: auto
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
.gov-navigation>ul>li:last-child .gov-deferred-navigation,
|
|
229
|
-
.gov-navigation>ul>li:nth-last-child(3) .gov-subnavigation {
|
|
230
|
-
left: initial;
|
|
231
|
-
right: 0
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.gov-navigation>ul>li>a {
|
|
235
|
-
justify-content: center;
|
|
236
|
-
width: 100%
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
@media(max-width: 47.99em) {
|
|
241
|
-
|
|
242
|
-
.gov-navigation gov-button,
|
|
243
|
-
.gov-navigation .gov-button {
|
|
244
|
-
width: 100%;
|
|
245
|
-
max-width: 100%
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.gov-navigation gov-button .element,
|
|
249
|
-
.gov-navigation .gov-button .element {
|
|
250
|
-
width: calc(100% + var(--spacing-m-nudge)*2);
|
|
251
|
-
justify-content: space-between
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.gov-subnavigation {
|
|
256
|
-
display: flex;
|
|
257
|
-
flex-direction: column;
|
|
258
|
-
gap: var(--spacing-xs);
|
|
259
|
-
padding: var(--spacing-s) var(--spacing-m);
|
|
260
|
-
min-width: 280px;
|
|
261
|
-
background-color: var(--background-page)
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.gov-subnavigation li {
|
|
265
|
-
margin-bottom: 0
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.gov-subnavigation li a {
|
|
269
|
-
display: flex;
|
|
270
|
-
align-items: center;
|
|
271
|
-
font-size: var(--font-size-body-s);
|
|
272
|
-
line-height: 150%;
|
|
273
|
-
font-weight: 400;
|
|
274
|
-
min-height: var(--height-2xl);
|
|
275
|
-
padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-xs);
|
|
276
|
-
color: var(--text-secondary);
|
|
277
|
-
text-decoration: none
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.gov-subnavigation li a:hover {
|
|
281
|
-
color: var(--text-primary);
|
|
282
|
-
text-decoration: underline
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
@media(min-width: 48em) {
|
|
286
|
-
.gov-subnavigation {
|
|
287
|
-
position: absolute;
|
|
288
|
-
top: var(--height-component-l);
|
|
289
|
-
left: 0;
|
|
290
|
-
background-color: var(--background-block-primary);
|
|
291
|
-
border-bottom-left-radius: var(--corner-radius-m);
|
|
292
|
-
border-bottom-right-radius: var(--corner-radius-m)
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.gov-subnavigation>li a {
|
|
296
|
-
min-height: auto
|
|
297
|
-
}
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.gov-mega-menu {
|
|
301
|
-
max-width: 100%;
|
|
302
|
-
width: 100%;
|
|
303
|
-
padding: var(--spacing-s) 0;
|
|
304
|
-
background-color: var(--background-page);
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.gov-mega-menu>li ul {
|
|
308
|
-
display: flex;
|
|
309
|
-
flex-direction: column;
|
|
310
|
-
gap: var(--spacing-xs);
|
|
311
|
-
padding: 0 var(--spacing-m)
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
.gov-mega-menu>li ul li {
|
|
315
|
-
margin-bottom: 0
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.gov-mega-menu>li ul li a {
|
|
319
|
-
display: flex;
|
|
320
|
-
align-items: center;
|
|
321
|
-
font-size: var(--font-size-body-s);
|
|
322
|
-
line-height: 150%;
|
|
323
|
-
font-weight: 400;
|
|
324
|
-
min-height: var(--height-2xl);
|
|
325
|
-
padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-xs);
|
|
326
|
-
color: var(--text-secondary);
|
|
327
|
-
text-decoration: none
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
.gov-mega-menu>li ul li a:hover {
|
|
331
|
-
color: var(--text-primary);
|
|
332
|
-
text-decoration: underline
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
.gov-mega-menu__heading {
|
|
336
|
-
margin: 0
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
.gov-mega-menu__heading span {
|
|
340
|
-
display: flex;
|
|
341
|
-
align-items: center;
|
|
342
|
-
gap: var(--spacing-s-nudge);
|
|
343
|
-
padding: var(--spacing-s) var(--spacing-m);
|
|
344
|
-
font-size: var(--font-size-body-m);
|
|
345
|
-
line-height: 150%;
|
|
346
|
-
font-weight: 400;
|
|
347
|
-
font-weight: 700;
|
|
348
|
-
line-height: var(--height-line-m);
|
|
349
|
-
color: var(--text-primary-color)
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.gov-mega-menu__heading a {
|
|
353
|
-
display: block;
|
|
354
|
-
text-decoration: none
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.gov-mega-menu__heading a:hover {
|
|
358
|
-
color: var(--interactive-timer-primary-solid);
|
|
359
|
-
text-decoration: underline
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.gov-mega-menu li a {
|
|
363
|
-
min-height: auto
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.gov-mega-menu__more a {
|
|
367
|
-
color: var(--text-tertiary) !important
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
@media(min-width: 48em) {
|
|
371
|
-
.gov-mega-menu {
|
|
372
|
-
position: absolute;
|
|
373
|
-
top: var(--spacing-5xl);
|
|
374
|
-
left: 0;
|
|
375
|
-
width: 100vw;
|
|
376
|
-
display: grid;
|
|
377
|
-
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
378
|
-
gap: var(--templates-margin-m) var(--templates-margin-l);
|
|
379
|
-
background-color: var(--background-block-primary);
|
|
380
|
-
border-bottom-left-radius: var(--corner-radius-m);
|
|
381
|
-
border-bottom-right-radius: var(--corner-radius-m)
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.gov-mega-menu>li ul {
|
|
385
|
-
padding-left: var(--spacing-2xl);
|
|
386
|
-
padding-right: var(--spacing-m)
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.gov-mega-menu>li ul>li a {
|
|
390
|
-
min-height: auto
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
@media(min-width: 48em) {
|
|
395
|
-
.gov-deferred-navigation {
|
|
396
|
-
display: flex;
|
|
397
|
-
flex-direction: column;
|
|
398
|
-
gap: var(--spacing-xs);
|
|
399
|
-
padding: var(--spacing-s) var(--spacing-m);
|
|
400
|
-
min-width: 280px;
|
|
401
|
-
background-color: var(--background-page);
|
|
402
|
-
position: absolute;
|
|
403
|
-
top: var(--height-component-l);
|
|
404
|
-
left: 0;
|
|
405
|
-
background-color: var(--background-block-primary);
|
|
406
|
-
border-bottom-left-radius: var(--corner-radius-m);
|
|
407
|
-
border-bottom-right-radius: var(--corner-radius-m)
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.gov-deferred-navigation li {
|
|
411
|
-
margin-bottom: 0
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.gov-deferred-navigation li a {
|
|
415
|
-
display: flex;
|
|
416
|
-
align-items: center;
|
|
417
|
-
font-size: var(--font-size-body-s);
|
|
418
|
-
line-height: 150%;
|
|
419
|
-
font-weight: 400;
|
|
420
|
-
min-height: var(--height-2xl);
|
|
421
|
-
padding: var(--spacing-xs) 0 var(--spacing-xs) var(--spacing-xs);
|
|
422
|
-
color: var(--text-secondary);
|
|
423
|
-
text-decoration: none
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.gov-deferred-navigation li a:hover {
|
|
427
|
-
color: var(--text-primary);
|
|
428
|
-
text-decoration: underline
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
.gov-deferred-navigation>li a {
|
|
432
|
-
min-height: auto;
|
|
433
|
-
display: flex;
|
|
434
|
-
align-items: center;
|
|
435
|
-
height: var(--height-component-l);
|
|
436
|
-
padding: 0 var(--spacing-m-nudge);
|
|
437
|
-
text-decoration: none;
|
|
438
|
-
font-size: var(--font-size-body-l);
|
|
439
|
-
line-height: 150%;
|
|
440
|
-
font-weight: 400;
|
|
441
|
-
font-weight: 500;
|
|
442
|
-
color: var(--text-primary-color);
|
|
443
|
-
white-space: nowrap;
|
|
444
|
-
border-radius: var(--corner-radius-s)
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
.gov-deferred-navigation>li a:hover {
|
|
448
|
-
background-color: var(--button-outlined-primary-hover);
|
|
449
|
-
color: var(--text-primary-color);
|
|
450
|
-
text-decoration: none
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.gov-deferred-navigation>li a:active {
|
|
454
|
-
background-color: var(--button-outlined-primary-active)
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.gov-deferred-navigation>li ul {
|
|
458
|
-
display: none
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.gov-deferred-navigation gov-button,
|
|
462
|
-
.gov-deferred-navigation .gov-button {
|
|
463
|
-
width: 100%;
|
|
464
|
-
max-width: 100%
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
.gov-deferred-navigation gov-button .element,
|
|
468
|
-
.gov-deferred-navigation .gov-button .element {
|
|
469
|
-
width: calc(100% + var(--spacing-m-nudge)*2);
|
|
470
|
-
justify-content: space-between;
|
|
471
|
-
font-weight: 500
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.gov-deferred-navigation gov-button gov-icon,
|
|
475
|
-
.gov-deferred-navigation gov-button .gov-icon,
|
|
476
|
-
.gov-deferred-navigation .gov-button gov-icon,
|
|
477
|
-
.gov-deferred-navigation .gov-button .gov-icon {
|
|
478
|
-
display: none
|
|
479
|
-
}
|
|
480
|
-
}
|
package/src/sass/main.scss
DELETED
|
@@ -1,246 +0,0 @@
|
|
|
1
|
-
$version: '0.0.1';
|
|
2
|
-
|
|
3
|
-
@import './vendors/bootstrap';
|
|
4
|
-
|
|
5
|
-
@import '@gov-design-system-ce/styles/lib/tokens.css';
|
|
6
|
-
|
|
7
|
-
@import './header.scss';
|
|
8
|
-
@import './scrollbar.scss';
|
|
9
|
-
|
|
10
|
-
@import '@gov-design-system-ce/styles/lib/styles.css';
|
|
11
|
-
@import '@gov-design-system-ce/styles/lib/layout.css';
|
|
12
|
-
@import '@gov-design-system-ce/styles/lib/components.css';
|
|
13
|
-
|
|
14
|
-
@import '@gov-design-system-ce/fonts/lib/roboto.css';
|
|
15
|
-
|
|
16
|
-
:root {
|
|
17
|
-
--color-primary-600: var(--color-primary-700);
|
|
18
|
-
--gov-color-blue: var(--color-primary-700);
|
|
19
|
-
--color-evaluatin-pink: #e7877891;
|
|
20
|
-
--gov-app-max-width: 100%;
|
|
21
|
-
--layout-gap: var(--templates-margin-l);
|
|
22
|
-
--container-width: var(--templates-layout-page-limit-max);
|
|
23
|
-
--container-padding-horizontal: var(--templates-margin-l);
|
|
24
|
-
--container-padding-top: var(--templates-margin-l);
|
|
25
|
-
--container-padding-bottom: var(--templates-margin-8xl);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@media (max-width: 29.99em) {
|
|
29
|
-
:root {
|
|
30
|
-
--templates-layout-image-highlighted-height: 17.5rem;
|
|
31
|
-
--templates-layout-image-small-height: 17.5rem;
|
|
32
|
-
--templates-layout-page-limit-max: 40rem;
|
|
33
|
-
--templates-margin-none: 0rem;
|
|
34
|
-
--templates-margin-s: 0.375rem;
|
|
35
|
-
--templates-margin-m: 0.75rem;
|
|
36
|
-
--templates-margin-l: 1rem;
|
|
37
|
-
--templates-margin-xl: 1.75rem;
|
|
38
|
-
--templates-margin-2xl: 2.25rem;
|
|
39
|
-
--templates-margin-3xl: 2.625rem;
|
|
40
|
-
--templates-margin-4xl: 3rem;
|
|
41
|
-
--templates-margin-5xl: 3.625rem;
|
|
42
|
-
--templates-margin-6xl: 4rem;
|
|
43
|
-
--templates-margin-7xl: 4.5rem;
|
|
44
|
-
--templates-margin-8xl: 6.25rem;
|
|
45
|
-
--templates-margin-9xl: 9.25rem;
|
|
46
|
-
--templates-viewport-min: 18.75rem;
|
|
47
|
-
--templates-viewport-default: 22.5rem;
|
|
48
|
-
--templates-viewport-max: 50rem;
|
|
49
|
-
--templates-width-max-xs: 6.25rem;
|
|
50
|
-
--templates-width-max-s: 12.5rem;
|
|
51
|
-
--templates-width-max-m: 18.75rem;
|
|
52
|
-
--templates-width-max-l: 25rem;
|
|
53
|
-
--templates-width-max-xl: 31.25rem;
|
|
54
|
-
--templates-width-max-2xl: 37.5rem;
|
|
55
|
-
--templates-width-max-3xl: 43.75rem;
|
|
56
|
-
--templates-width-max-4xl: 50rem;
|
|
57
|
-
--templates-width-max-5xl: 50rem;
|
|
58
|
-
--templates-width-max-6xl: 50rem;
|
|
59
|
-
--templates-width-max-7xl: 50rem;
|
|
60
|
-
--templates-width-max-8xl: 50rem;
|
|
61
|
-
--templates-width-min-xs: 6.25rem;
|
|
62
|
-
--templates-width-min-s: 12.5rem;
|
|
63
|
-
--templates-width-min-m: 18.75rem;
|
|
64
|
-
--templates-width-min-l: 18.75rem;
|
|
65
|
-
--templates-width-min-2xl: 18.75rem;
|
|
66
|
-
--templates-width-min-3xl: 18.75rem;
|
|
67
|
-
--templates-width-min-4xl: 18.75rem;
|
|
68
|
-
--templates-width-min-5xl: 18.75rem;
|
|
69
|
-
--templates-width-min-6xl: 18.75rem;
|
|
70
|
-
--templates-width-min-7xl: 18.75rem;
|
|
71
|
-
--templates-width-min-8xl: 18.75rem;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
@media (min-width: 30em) and (max-width: 63.99em) {
|
|
76
|
-
:root {
|
|
77
|
-
--templates-layout-image-small-height: 11.75rem;
|
|
78
|
-
--templates-layout-image-highlighted-height: 35.75rem;
|
|
79
|
-
--templates-layout-page-limit-max: 75rem;
|
|
80
|
-
--templates-margin-none: 0rem;
|
|
81
|
-
--templates-margin-s: 0.5rem;
|
|
82
|
-
--templates-margin-m: 1rem;
|
|
83
|
-
--templates-margin-l: 1.5rem;
|
|
84
|
-
--templates-margin-xl: 2rem;
|
|
85
|
-
--templates-margin-2xl: 2.5rem;
|
|
86
|
-
--templates-margin-3xl: 3rem;
|
|
87
|
-
--templates-margin-4xl: 3.5rem;
|
|
88
|
-
--templates-margin-5xl: 4rem;
|
|
89
|
-
--templates-margin-6xl: 4.5rem;
|
|
90
|
-
--templates-margin-7xl: 5rem;
|
|
91
|
-
--templates-margin-8xl: 7.5rem;
|
|
92
|
-
--templates-margin-9xl: 10rem;
|
|
93
|
-
--templates-viewport-min: 40rem;
|
|
94
|
-
--templates-viewport-default: 64rem;
|
|
95
|
-
--templates-viewport-max: 90rem;
|
|
96
|
-
--templates-width-max-xs: 6.25rem;
|
|
97
|
-
--templates-width-max-s: 12.5rem;
|
|
98
|
-
--templates-width-max-m: 18.75rem;
|
|
99
|
-
--templates-width-max-l: 25rem;
|
|
100
|
-
--templates-width-max-xl: 31.25rem;
|
|
101
|
-
--templates-width-max-2xl: 37.5rem;
|
|
102
|
-
--templates-width-max-3xl: 43.75rem;
|
|
103
|
-
--templates-width-max-4xl: 50rem;
|
|
104
|
-
--templates-width-max-5xl: 56.25rem;
|
|
105
|
-
--templates-width-max-6xl: 62.5rem;
|
|
106
|
-
--templates-width-max-7xl: 68.75rem;
|
|
107
|
-
--templates-width-max-8xl: 75rem;
|
|
108
|
-
--templates-width-min-xs: 6.25rem;
|
|
109
|
-
--templates-width-min-s: 12.5rem;
|
|
110
|
-
--templates-width-min-m: 18.75rem;
|
|
111
|
-
--templates-width-min-l: 25rem;
|
|
112
|
-
--templates-width-min-xl: 31.25rem;
|
|
113
|
-
--templates-width-min-2xl: 37.5rem;
|
|
114
|
-
--templates-width-min-3xl: 43.75rem;
|
|
115
|
-
--templates-width-min-4xl: 50rem;
|
|
116
|
-
--templates-width-min-5xl: 56.25rem;
|
|
117
|
-
--templates-width-min-6xl: 62.5rem;
|
|
118
|
-
--templates-width-min-7xl: 68.75rem;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
@media (min-width: 64em) {
|
|
123
|
-
:root {
|
|
124
|
-
--templates-layout-image-small-height: 11.75rem;
|
|
125
|
-
--templates-layout-image-highlighted-height: 35.75rem;
|
|
126
|
-
--templates-layout-page-limit-max: 75rem;
|
|
127
|
-
--templates-margin-none: 0rem;
|
|
128
|
-
--templates-margin-s: 0.5rem;
|
|
129
|
-
--templates-margin-m: 1rem;
|
|
130
|
-
--templates-margin-l: 1.5rem;
|
|
131
|
-
--templates-margin-xl: 2rem;
|
|
132
|
-
--templates-margin-2xl: 2.5rem;
|
|
133
|
-
--templates-margin-3xl: 3rem;
|
|
134
|
-
--templates-margin-4xl: 3.5rem;
|
|
135
|
-
--templates-margin-5xl: 4rem;
|
|
136
|
-
--templates-margin-6xl: 4.5rem;
|
|
137
|
-
--templates-margin-7xl: 5rem;
|
|
138
|
-
--templates-margin-8xl: 7.5rem;
|
|
139
|
-
--templates-margin-9xl: 10rem;
|
|
140
|
-
--templates-viewport-min: 50rem;
|
|
141
|
-
--templates-viewport-default: 90rem;
|
|
142
|
-
--templates-viewport-max: 128.75rem;
|
|
143
|
-
--templates-width-max-xs: 6.25rem;
|
|
144
|
-
--templates-width-max-s: 12.5rem;
|
|
145
|
-
--templates-width-max-m: 18.75rem;
|
|
146
|
-
--templates-width-max-l: 25rem;
|
|
147
|
-
--templates-width-max-xl: 31.25rem;
|
|
148
|
-
--templates-width-max-2xl: 37.5rem;
|
|
149
|
-
--templates-width-max-3xl: 43.75rem;
|
|
150
|
-
--templates-width-max-4xl: 50rem;
|
|
151
|
-
--templates-width-max-5xl: 56.25rem;
|
|
152
|
-
--templates-width-max-6xl: 62.5rem;
|
|
153
|
-
--templates-width-max-7xl: 68.75rem;
|
|
154
|
-
--templates-width-max-8xl: 75rem;
|
|
155
|
-
--templates-width-min-xs: 6.25rem;
|
|
156
|
-
--templates-width-min-s: 12.5rem;
|
|
157
|
-
--templates-width-min-m: 18.75rem;
|
|
158
|
-
--templates-width-min-l: 25rem;
|
|
159
|
-
--templates-width-min-xl: 31.25rem;
|
|
160
|
-
--templates-width-min-2xl: 37.5rem;
|
|
161
|
-
--templates-width-min-3xl: 43.75rem;
|
|
162
|
-
--templates-width-min-4xl: 50rem;
|
|
163
|
-
--templates-width-min-5xl: 56.25rem;
|
|
164
|
-
--templates-width-min-6xl: 62.5rem;
|
|
165
|
-
--templates-width-min-7xl: 68.75rem;
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.gov-header {
|
|
170
|
-
max-height: 8.5rem;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.gov-header,
|
|
174
|
-
.gov-header__submenu {
|
|
175
|
-
box-shadow: 0 1px 1px hsla(0deg 0% 0% / 0.075), 0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075), 0 8px 8px hsl(0deg 0% 0% / 0.075);
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
body {
|
|
179
|
-
overflow: hidden;
|
|
180
|
-
max-height: 100vh;
|
|
181
|
-
background-color: var(--background-page-white);
|
|
182
|
-
font-family: 'Roboto', sans-serif;
|
|
183
|
-
font-size: 0.9375rem;
|
|
184
|
-
font-weight: 400;
|
|
185
|
-
letter-spacing: 0.0125em;
|
|
186
|
-
-webkit-font-smoothing: antialiased;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
.gov-main-container {
|
|
190
|
-
max-width: var(--gov-app-max-width);
|
|
191
|
-
margin: 0 auto;
|
|
192
|
-
flex-wrap: wrap;
|
|
193
|
-
|
|
194
|
-
&-content {
|
|
195
|
-
overflow: auto;
|
|
196
|
-
overflow-x: hidden;
|
|
197
|
-
height: calc(100vh - 12rem);
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.gov-sidemenu {
|
|
202
|
-
max-width: 12rem;
|
|
203
|
-
overflow: auto;
|
|
204
|
-
height: calc(100vh - 8.5rem);
|
|
205
|
-
box-shadow: 1px 4px 1px hsla(0deg 0% 0% / 0.075), 2px 4px 2px hsl(0deg 0% 0% / 0.075), 4px 4px 4px hsl(0deg 0% 0% / 0.075),
|
|
206
|
-
8px 4px 8px hsl(0deg 0% 0% / 0.075);
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.gov-breadcrums {
|
|
210
|
-
height: 1.5rem;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.gov-accordion-item__summary {
|
|
214
|
-
background-color: var(--color-primary-200);
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.gov-clickable {
|
|
218
|
-
cursor: pointer;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
.bg-primary {
|
|
222
|
-
background-color: var(--color-primary-600) !important;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.v-filter h2 {
|
|
226
|
-
font-size: var(--font-size-1xl);
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.v-filter_action-buttons button {
|
|
230
|
-
background-color: var(--color-primary-50) !important;
|
|
231
|
-
border: 1px solid var(--border-primary);
|
|
232
|
-
color: var(--color-primary-600) !important;
|
|
233
|
-
|
|
234
|
-
&:hover {
|
|
235
|
-
background-color: var(--color-primary-200) !important;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.v-action-button-group button {
|
|
240
|
-
background-color: var(--color-primary-50) !important;
|
|
241
|
-
color: var(--color-primary-600) !important;
|
|
242
|
-
|
|
243
|
-
&:hover {
|
|
244
|
-
background-color: var(--color-primary-200) !important;
|
|
245
|
-
}
|
|
246
|
-
}
|