@sapphire-ion/framework 0.30.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/README.md +24 -0
- package/esm2022/lib/classes/comparison/comparison-operator.mjs +18 -0
- package/esm2022/lib/classes/comparison/comparison-value-type.mjs +25 -0
- package/esm2022/lib/classes/comparison/comparison.mjs +41 -0
- package/esm2022/lib/classes/comparison/properties/bool-property.mjs +15 -0
- package/esm2022/lib/classes/comparison/properties/date-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/datetime-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/decimal-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/enum-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/implicit-property.mjs +12 -0
- package/esm2022/lib/classes/comparison/properties/int-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/long-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/string-property.mjs +15 -0
- package/esm2022/lib/classes/comparison/properties/time-property.mjs +27 -0
- package/esm2022/lib/classes/credentials.mjs +2 -0
- package/esm2022/lib/classes/environment.mjs +32 -0
- package/esm2022/lib/classes/filters/view-filtros.mjs +18 -0
- package/esm2022/lib/classes/inputs/table-field-form-builder.mjs +10 -0
- package/esm2022/lib/classes/inputs/table-field.mjs +63 -0
- package/esm2022/lib/classes/page-option.mjs +2 -0
- package/esm2022/lib/classes/routes/default-routing-factory.mjs +23 -0
- package/esm2022/lib/classes/routes/id-preloader-configuration.mjs +22 -0
- package/esm2022/lib/classes/routes/route-data.mjs +9 -0
- package/esm2022/lib/components/carousel/carousel-image/carousel-image.component.mjs +18 -0
- package/esm2022/lib/components/carousel/carousel-item/carousel-item.component.mjs +15 -0
- package/esm2022/lib/components/carousel/carousel.component.mjs +79 -0
- package/esm2022/lib/components/carousel/carousel.module.mjs +31 -0
- package/esm2022/lib/components/carousel/i-carousel-item.component.mjs +16 -0
- package/esm2022/lib/components/content-block/content-block.component.mjs +27 -0
- package/esm2022/lib/components/default/default-list/abstract-list.mjs +49 -0
- package/esm2022/lib/components/default/default-list/default-list.component.mjs +94 -0
- package/esm2022/lib/components/default/default-list/header-list/header-list.component.mjs +98 -0
- package/esm2022/lib/components/default/default-list/list.mjs +110 -0
- package/esm2022/lib/components/default/default-pagination/default-pagination.component.mjs +123 -0
- package/esm2022/lib/components/default/default-table/default-table.component.mjs +206 -0
- package/esm2022/lib/components/default/default-table/th-filter/th-filter.component.mjs +182 -0
- package/esm2022/lib/components/default/default-view/abstract-view.mjs +18 -0
- package/esm2022/lib/components/default/default-view/default-view.component.mjs +51 -0
- package/esm2022/lib/components/default/default-view/header-view/header-view.component.mjs +72 -0
- package/esm2022/lib/components/default/default-view/view.mjs +170 -0
- package/esm2022/lib/components/default/default.module.mjs +87 -0
- package/esm2022/lib/components/default-page/default.page.mjs +73 -0
- package/esm2022/lib/components/drag-drop-file/drag-drop-file.directive.mjs +60 -0
- package/esm2022/lib/components/drag-drop-file/drag-drop-file.module.mjs +31 -0
- package/esm2022/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.mjs +15 -0
- package/esm2022/lib/components/drawer/default-drawer-end/default-drawer-end.component.mjs +34 -0
- package/esm2022/lib/components/drawer/drawer-group/drawer-group.component.mjs +49 -0
- package/esm2022/lib/components/drawer/drawer.component.mjs +117 -0
- package/esm2022/lib/components/drawer/menu.mjs +15 -0
- package/esm2022/lib/components/filter/filter.component.mjs +124 -0
- package/esm2022/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.mjs +17 -0
- package/esm2022/lib/components/image/image.component.mjs +91 -0
- package/esm2022/lib/components/info-popover/info-popover.component.mjs +91 -0
- package/esm2022/lib/components/inputs/custom-input.mjs +77 -0
- package/esm2022/lib/components/inputs/custom-signal-input.mjs +74 -0
- package/esm2022/lib/components/inputs/input-bool/input-bool.component.mjs +43 -0
- package/esm2022/lib/components/inputs/input-bool/input-bool.configuration.mjs +16 -0
- package/esm2022/lib/components/inputs/input-color/input-color.component.mjs +487 -0
- package/esm2022/lib/components/inputs/input-configuration.mjs +2 -0
- package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.mjs +93 -0
- package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.mjs +6 -0
- package/esm2022/lib/components/inputs/input-date/input-date.component.mjs +119 -0
- package/esm2022/lib/components/inputs/input-date/input-date.configuration.mjs +8 -0
- package/esm2022/lib/components/inputs/input-decimal/input-decimal.component.mjs +269 -0
- package/esm2022/lib/components/inputs/input-decimal/input-decimal.configuration.mjs +45 -0
- package/esm2022/lib/components/inputs/input-default-configurations.mjs +14 -0
- package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +91 -0
- package/esm2022/lib/components/inputs/input-file/input-file.component.mjs +128 -0
- package/esm2022/lib/components/inputs/input-file/input-file.configuration.mjs +11 -0
- package/esm2022/lib/components/inputs/input-loading/input-loading.component.mjs +16 -0
- package/esm2022/lib/components/inputs/input-provider-factory.mjs +15 -0
- package/esm2022/lib/components/inputs/input-select/ISelect.mjs +11 -0
- package/esm2022/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.mjs +42 -0
- package/esm2022/lib/components/inputs/input-select/input-select-option/input-select-option.component.mjs +46 -0
- package/esm2022/lib/components/inputs/input-select/input-select-template.directive.mjs +16 -0
- package/esm2022/lib/components/inputs/input-select/input-select.component.mjs +322 -0
- package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +164 -0
- package/esm2022/lib/components/inputs/input-string/input-string.component.mjs +50 -0
- package/esm2022/lib/components/inputs/input-string/input-string.configuration.mjs +18 -0
- package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +47 -0
- package/esm2022/lib/components/inputs/input-type.mjs +18 -0
- package/esm2022/lib/components/inputs/input-validators.mjs +90 -0
- package/esm2022/lib/components/inputs/inputs.module.mjs +101 -0
- package/esm2022/lib/components/loading/loading.component.mjs +34 -0
- package/esm2022/lib/components/login/login-admin/login-admin.component.mjs +52 -0
- package/esm2022/lib/components/login/login.component.mjs +93 -0
- package/esm2022/lib/components/main-content/main-content.component.mjs +62 -0
- package/esm2022/lib/components/stepper/step/step.component.mjs +43 -0
- package/esm2022/lib/components/stepper/stepper.component.mjs +36 -0
- package/esm2022/lib/components/stepper/stepper.module.mjs +25 -0
- package/esm2022/lib/components/tabs/tab/tab.component.mjs +41 -0
- package/esm2022/lib/components/tabs/tabs/tabs.component.mjs +56 -0
- package/esm2022/lib/components/tabs/tabs.module.mjs +22 -0
- package/esm2022/lib/components/text-tooltip/text-tooltip.component.mjs +51 -0
- package/esm2022/lib/components/tooltip/tooltip.component.mjs +21 -0
- package/esm2022/lib/core.module.mjs +29 -0
- package/esm2022/lib/directives/ng-var.directive.mjs +29 -0
- package/esm2022/lib/guards/auth.guard.mjs +26 -0
- package/esm2022/lib/guards/error.interceptor.mjs +106 -0
- package/esm2022/lib/guards/token.interceptor.mjs +25 -0
- package/esm2022/lib/index.mjs +172 -0
- package/esm2022/lib/pipes/secure.pipe.mjs +42 -0
- package/esm2022/lib/services/auth.service.mjs +149 -0
- package/esm2022/lib/services/environment.service.mjs +26 -0
- package/esm2022/lib/services/generics.service.mjs +84 -0
- package/esm2022/lib/services/route/route.cache.service.mjs +15 -0
- package/esm2022/lib/services/route/route.provider.service.mjs +42 -0
- package/esm2022/lib/services/usuario.service.mjs +49 -0
- package/esm2022/lib/services/utils.service.mjs +149 -0
- package/esm2022/lib/services/web/api-url-provider.service.mjs +29 -0
- package/esm2022/lib/services/web/http.ativo.service.mjs +55 -0
- package/esm2022/lib/services/web/http.service.mjs +175 -0
- package/esm2022/lib/services/web/storage.service.mjs +115 -0
- package/esm2022/public-api.mjs +5 -0
- package/esm2022/sapphire-ion-framework.mjs +5 -0
- package/fesm2022/sapphire-ion-framework.mjs +6080 -0
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/classes/comparison/comparison-operator.d.ts +9 -0
- package/lib/classes/comparison/comparison-value-type.d.ts +23 -0
- package/lib/classes/comparison/comparison.d.ts +25 -0
- package/lib/classes/comparison/properties/bool-property.d.ts +7 -0
- package/lib/classes/comparison/properties/date-property.d.ts +11 -0
- package/lib/classes/comparison/properties/datetime-property.d.ts +11 -0
- package/lib/classes/comparison/properties/decimal-property.d.ts +11 -0
- package/lib/classes/comparison/properties/enum-property.d.ts +11 -0
- package/lib/classes/comparison/properties/implicit-property.d.ts +6 -0
- package/lib/classes/comparison/properties/int-property.d.ts +11 -0
- package/lib/classes/comparison/properties/long-property.d.ts +11 -0
- package/lib/classes/comparison/properties/string-property.d.ts +7 -0
- package/lib/classes/comparison/properties/time-property.d.ts +11 -0
- package/lib/classes/credentials.d.ts +5 -0
- package/lib/classes/environment.d.ts +13 -0
- package/lib/classes/filters/view-filtros.d.ts +10 -0
- package/lib/classes/inputs/table-field-form-builder.d.ts +5 -0
- package/lib/classes/inputs/table-field.d.ts +19 -0
- package/lib/classes/page-option.d.ts +7 -0
- package/lib/classes/routes/default-routing-factory.d.ts +8 -0
- package/lib/classes/routes/id-preloader-configuration.d.ts +28 -0
- package/lib/classes/routes/route-data.d.ts +5 -0
- package/lib/components/carousel/carousel-image/carousel-image.component.d.ts +10 -0
- package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +9 -0
- package/lib/components/carousel/carousel.component.d.ts +32 -0
- package/lib/components/carousel/carousel.module.d.ts +12 -0
- package/lib/components/carousel/i-carousel-item.component.d.ts +9 -0
- package/lib/components/content-block/content-block.component.d.ts +15 -0
- package/lib/components/default/default-list/abstract-list.d.ts +21 -0
- package/lib/components/default/default-list/default-list.component.d.ts +42 -0
- package/lib/components/default/default-list/header-list/header-list.component.d.ts +45 -0
- package/lib/components/default/default-list/list.d.ts +37 -0
- package/lib/components/default/default-pagination/default-pagination.component.d.ts +36 -0
- package/lib/components/default/default-table/default-table.component.d.ts +71 -0
- package/lib/components/default/default-table/th-filter/th-filter.component.d.ts +20 -0
- package/lib/components/default/default-view/abstract-view.d.ts +16 -0
- package/lib/components/default/default-view/default-view.component.d.ts +26 -0
- package/lib/components/default/default-view/header-view/header-view.component.d.ts +25 -0
- package/lib/components/default/default-view/view.d.ts +55 -0
- package/lib/components/default/default.module.d.ts +28 -0
- package/lib/components/default-page/default.page.d.ts +35 -0
- package/lib/components/drag-drop-file/drag-drop-file.directive.d.ts +14 -0
- package/lib/components/drag-drop-file/drag-drop-file.module.d.ts +10 -0
- package/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.d.ts +9 -0
- package/lib/components/drawer/default-drawer-end/default-drawer-end.component.d.ts +13 -0
- package/lib/components/drawer/drawer-group/drawer-group.component.d.ts +22 -0
- package/lib/components/drawer/drawer.component.d.ts +23 -0
- package/lib/components/drawer/menu.d.ts +9 -0
- package/lib/components/filter/filter.component.d.ts +29 -0
- package/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.d.ts +8 -0
- package/lib/components/image/image.component.d.ts +23 -0
- package/lib/components/info-popover/info-popover.component.d.ts +15 -0
- package/lib/components/inputs/custom-input.d.ts +36 -0
- package/lib/components/inputs/custom-signal-input.d.ts +38 -0
- package/lib/components/inputs/input-bool/input-bool.component.d.ts +19 -0
- package/lib/components/inputs/input-bool/input-bool.configuration.d.ts +17 -0
- package/lib/components/inputs/input-color/input-color.component.d.ts +80 -0
- package/lib/components/inputs/input-configuration.d.ts +8 -0
- package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.d.ts +24 -0
- package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.d.ts +5 -0
- package/lib/components/inputs/input-date/input-date.component.d.ts +30 -0
- package/lib/components/inputs/input-date/input-date.configuration.d.ts +7 -0
- package/lib/components/inputs/input-decimal/input-decimal.component.d.ts +41 -0
- package/lib/components/inputs/input-decimal/input-decimal.configuration.d.ts +25 -0
- package/lib/components/inputs/input-default-configurations.d.ts +13 -0
- package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +36 -0
- package/lib/components/inputs/input-file/input-file.component.d.ts +39 -0
- package/lib/components/inputs/input-file/input-file.configuration.d.ts +11 -0
- package/lib/components/inputs/input-loading/input-loading.component.d.ts +7 -0
- package/lib/components/inputs/input-provider-factory.d.ts +4 -0
- package/lib/components/inputs/input-select/ISelect.d.ts +21 -0
- package/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.d.ts +18 -0
- package/lib/components/inputs/input-select/input-select-option/input-select-option.component.d.ts +24 -0
- package/lib/components/inputs/input-select/input-select-template.directive.d.ts +8 -0
- package/lib/components/inputs/input-select/input-select.component.d.ts +66 -0
- package/lib/components/inputs/input-select/input.select.configuration.d.ts +87 -0
- package/lib/components/inputs/input-string/input-string.component.d.ts +19 -0
- package/lib/components/inputs/input-string/input-string.configuration.d.ts +14 -0
- package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +18 -0
- package/lib/components/inputs/input-type.d.ts +16 -0
- package/lib/components/inputs/input-validators.d.ts +19 -0
- package/lib/components/inputs/inputs.module.d.ts +28 -0
- package/lib/components/loading/loading.component.d.ts +18 -0
- package/lib/components/login/login-admin/login-admin.component.d.ts +20 -0
- package/lib/components/login/login.component.d.ts +28 -0
- package/lib/components/main-content/main-content.component.d.ts +17 -0
- package/lib/components/stepper/step/step.component.d.ts +15 -0
- package/lib/components/stepper/stepper.component.d.ts +17 -0
- package/lib/components/stepper/stepper.module.d.ts +10 -0
- package/lib/components/tabs/tab/tab.component.d.ts +19 -0
- package/lib/components/tabs/tabs/tabs.component.d.ts +18 -0
- package/lib/components/tabs/tabs.module.d.ts +12 -0
- package/lib/components/text-tooltip/text-tooltip.component.d.ts +16 -0
- package/lib/components/tooltip/tooltip.component.d.ts +7 -0
- package/lib/core.module.d.ts +11 -0
- package/lib/directives/ng-var.directive.d.ts +12 -0
- package/lib/guards/auth.guard.d.ts +11 -0
- package/lib/guards/error.interceptor.d.ts +32 -0
- package/lib/guards/token.interceptor.d.ts +11 -0
- package/lib/index.d.ts +108 -0
- package/lib/pipes/secure.pipe.d.ts +15 -0
- package/lib/services/auth.service.d.ts +47 -0
- package/lib/services/environment.service.d.ts +10 -0
- package/lib/services/generics.service.d.ts +22 -0
- package/lib/services/route/route.cache.service.d.ts +7 -0
- package/lib/services/route/route.provider.service.d.ts +13 -0
- package/lib/services/usuario.service.d.ts +21 -0
- package/lib/services/utils.service.d.ts +36 -0
- package/lib/services/web/api-url-provider.service.d.ts +13 -0
- package/lib/services/web/http.ativo.service.d.ts +31 -0
- package/lib/services/web/http.service.d.ts +51 -0
- package/lib/services/web/storage.service.d.ts +25 -0
- package/package.json +41 -0
- package/public-api.d.ts +1 -0
- package/themes/compiled-styles.scss +2291 -0
- package/themes/components/_inputs_new/input-string/input-string.component.scss +0 -0
- package/themes/components/_inputs_new/inputs.scss +15 -0
- package/themes/components/carousel/carousel-image/carousel-image.component.scss +0 -0
- package/themes/components/carousel/carousel-item/carousel-item.component.scss +0 -0
- package/themes/components/carousel/carousel.component.scss +9 -0
- package/themes/components/content-block/content-block.component.scss +0 -0
- package/themes/components/default/default-list/default-list.component.scss +0 -0
- package/themes/components/default/default-list/header-list/header-list.component.scss +0 -0
- package/themes/components/default/default-pagination/default-pagination.component.scss +22 -0
- package/themes/components/default/default-table/default-table.component.scss +33 -0
- package/themes/components/default/default-table/th-filter/th-filter.component.scss +24 -0
- package/themes/components/default/default-view/default-view.component.scss +5 -0
- package/themes/components/default/default-view/header-view/header-view.component.scss +7 -0
- package/themes/components/default-page/default.page.scss +4 -0
- package/themes/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.scss +9 -0
- package/themes/components/drawer/default-drawer-end/default-drawer-end.component.scss +0 -0
- package/themes/components/drawer/drawer-group/drawer-group.component.scss +22 -0
- package/themes/components/drawer/drawer.component.scss +46 -0
- package/themes/components/filter/filter.component.scss +0 -0
- package/themes/components/http-responses-pages/forbidden-403/forbidden-403.component.scss +19 -0
- package/themes/components/image/image.component.scss +0 -0
- package/themes/components/info-popover/info-popover.component.scss +3 -0
- package/themes/components/inputs/input-bool/input-bool.component.scss +14 -0
- package/themes/components/inputs/input-color/input-color.component.scss +48 -0
- package/themes/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss +0 -0
- package/themes/components/inputs/input-date/input-date.component.scss +41 -0
- package/themes/components/inputs/input-decimal/input-decimal.component.scss +44 -0
- package/themes/components/inputs/input-file/download-button/download-button.component.scss +3 -0
- package/themes/components/inputs/input-file/input-file.component.scss +3 -0
- package/themes/components/inputs/input-loading/input-loading.component.scss +0 -0
- package/themes/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.scss +0 -0
- package/themes/components/inputs/input-select/input-select-option/input-select-option.component.scss +0 -0
- package/themes/components/inputs/input-select/input-select.component.scss +28 -0
- package/themes/components/inputs/input-string/input-string.component.scss +0 -0
- package/themes/components/inputs/input-textarea/input-textarea.component.scss +0 -0
- package/themes/components/inputs/inputs.scss +67 -0
- package/themes/components/loading/loading.component.scss +0 -0
- package/themes/components/login/login-admin/login-admin.component.scss +3 -0
- package/themes/components/login/login.component.scss +40 -0
- package/themes/components/main-content/main-content.component.scss +9 -0
- package/themes/components/stepper/step/step.component.scss +48 -0
- package/themes/components/stepper/stepper.component.scss +0 -0
- package/themes/components/tabs/tab/tab.component.scss +0 -0
- package/themes/components/tabs/tabs/tabs.component.scss +23 -0
- package/themes/components/text-tooltip/text-tooltip.component.scss +0 -0
- package/themes/components/tooltip/tooltip.component.scss +23 -0
- package/themes/styles/components.scss +52 -0
- package/themes/styles/core.styles.scss +409 -0
- package/themes/styles/ionic/ion-action-sheet.scss +8 -0
- package/themes/styles/ionic/ion-alert.scss +9 -0
- package/themes/styles/ionic/ion-button.scss +3 -0
- package/themes/styles/ionic/ion-card.scss +3 -0
- package/themes/styles/ionic/ion-content.scss +3 -0
- package/themes/styles/ionic/ion-datetime.scss +6 -0
- package/themes/styles/ionic/ion-item.scss +10 -0
- package/themes/styles/ionic/ion-list.scss +4 -0
- package/themes/styles/ionic/ion-modal.scss +8 -0
- package/themes/styles/ionic/ion-popover.scss +31 -0
- package/themes/styles/ionic/ion-progress-bar.scss +3 -0
- package/themes/styles/ionic/ion-searchbar.scss +4 -0
- package/themes/styles/ionic/ion-toast.scss +14 -0
- package/themes/styles/ionic.scss +13 -0
- package/themes/styles/login-default.scss +87 -0
- package/themes/styles/mixins.scss +467 -0
- package/themes/styles/styles.scss +1 -0
- package/themes/styles/translucid.scss +21 -0
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.input-container{
|
|
2
|
+
@apply rounded-lg flex flex-col pt-1 transition-all items-start justify-center border border-[var(--ion-color-step-250)];
|
|
3
|
+
background-color: color-mix(in srgb, var(--ion-color-dark) 3%, transparent);
|
|
4
|
+
.input-label{
|
|
5
|
+
@apply text-white text-sm mx-1.5;
|
|
6
|
+
}
|
|
7
|
+
input{
|
|
8
|
+
@apply outline-none rounded-md px-1.5;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
.input-container:focus-within{
|
|
12
|
+
@apply outline outline-1;
|
|
13
|
+
outline-color: color-mix(in srgb, var(--ion-color-primary) 30%, transparent);
|
|
14
|
+
box-shadow: 0 0 1px 2px color-mix(in srgb, var(--ion-color-primary) 50%, transparent);
|
|
15
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#pagination{
|
|
2
|
+
background-color: var(--ion-color-step-300);
|
|
3
|
+
color: var(--ion-color-step-700);
|
|
4
|
+
@media (prefers-color-scheme: light) {
|
|
5
|
+
background-color: var(--ion-framework-table-light);
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
button.page{
|
|
10
|
+
@apply flex min-w-6 h-6 px-1 border cursor-pointer rounded-md mx-1 text-center justify-center items-center;
|
|
11
|
+
border: var(--ion-color-dark) solid 1px;
|
|
12
|
+
color: var(--ion-color-dark);
|
|
13
|
+
transition: all .25s;
|
|
14
|
+
&:disabled{
|
|
15
|
+
opacity: .75;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.selected{
|
|
19
|
+
background-color: var(--ion-color-dark);
|
|
20
|
+
color: var(--ion-color-dark-contrast) !important;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
section{
|
|
2
|
+
transition: height 600ms;
|
|
3
|
+
transition-timing-function: ease-in-out;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#th-filter-select{
|
|
7
|
+
&:hover{
|
|
8
|
+
.order-switch{
|
|
9
|
+
background-color: var(--ion-color-step-200);
|
|
10
|
+
#up, #down{ opacity: 1 !important; color: var(--ion-color-step-700) !important }
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
.order-switch{
|
|
14
|
+
#up, #down{ opacity: 0; transition: all 300ms; }
|
|
15
|
+
transition: background-color 300ms;
|
|
16
|
+
&.ordering-asc{
|
|
17
|
+
#up { color: var(--ion-color-primary) !important; opacity: 1; }
|
|
18
|
+
#down{ color: var(--ion-color-step-800) !important; opacity: 1; }
|
|
19
|
+
}
|
|
20
|
+
&.ordering-desc{
|
|
21
|
+
#up { color: var(--ion-color-step-800) !important; opacity: 1; }
|
|
22
|
+
#down{ color: var(--ion-color-primary) !important; opacity: 1; }
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.unique-conteiner{
|
|
28
|
+
@apply min-h-10 w-full top-10 px-3 text-center my-10 absolute z-30 flex items-center justify-center translate-y-0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
#wrapper{
|
|
32
|
+
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 98%, rgba(0, 0, 0, 0) 100%);
|
|
33
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.th-select{
|
|
2
|
+
border-radius: 0 !important;
|
|
3
|
+
ion-card{
|
|
4
|
+
--border-radius: 0 !important;
|
|
5
|
+
--border-width: 0 !important;
|
|
6
|
+
border-radius: 0 !important;
|
|
7
|
+
border-width: 0 !important;
|
|
8
|
+
ion-item{
|
|
9
|
+
--border-radius: 0 !important;
|
|
10
|
+
--border-width: 0 !important;
|
|
11
|
+
border-radius: 0 !important;
|
|
12
|
+
border-width: 0 !important;
|
|
13
|
+
}
|
|
14
|
+
div.w-12{
|
|
15
|
+
ion-button{
|
|
16
|
+
--border-width: 1px !important;
|
|
17
|
+
--border-radius: 0rem 0rem 1rem 0rem !important;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
.popover-filter{
|
|
23
|
+
--width: 18rem
|
|
24
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
.bg-active{
|
|
3
|
+
--background: color-mix(in srgb, var(--ion-color-secondary) 70%, transparent 30%) !important;
|
|
4
|
+
}
|
|
5
|
+
.bg-inactive{
|
|
6
|
+
@apply cursor-pointer;
|
|
7
|
+
--border-radius: 1rem;
|
|
8
|
+
|
|
9
|
+
&::part(native){
|
|
10
|
+
@apply transition-all;
|
|
11
|
+
}
|
|
12
|
+
--background: color-mix(in srgb, var(--ion-color-light-shade) 50%, transparent 50%);
|
|
13
|
+
&:hover{
|
|
14
|
+
--background: color-mix(in srgb, var(--ion-color-light-shade) 70%, transparent 30%);
|
|
15
|
+
}
|
|
16
|
+
@media (prefers-color-scheme: dark) {
|
|
17
|
+
--background: color-mix(in srgb, var(--ion-color-light-tint) 70%, transparent 30%);
|
|
18
|
+
&:hover{
|
|
19
|
+
--background: var(--ion-color-light-tint);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
#drawer-button{
|
|
2
|
+
&:hover{
|
|
3
|
+
background-color: color-mix(in srgb, var(--ion-color-dark-tint) 50%, transparent 50%);
|
|
4
|
+
ion-icon{
|
|
5
|
+
color: var(--ion-color-light);
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
@apply rounded-full;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
#menu-conteiner{
|
|
12
|
+
@apply overflow-y-auto overflow-x-hidden size-full;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#group-menu{
|
|
16
|
+
--min-height: 3rem;
|
|
17
|
+
--min-width: 3rem;
|
|
18
|
+
@apply transition-all;
|
|
19
|
+
&:hover{
|
|
20
|
+
#tooltip{
|
|
21
|
+
@apply translate-x-0 opacity-100 w-fit #{!important};
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.bg-active{
|
|
27
|
+
--background: color-mix(in srgb, var(--ion-color-secondary) 70%, transparent 30%) !important;
|
|
28
|
+
}
|
|
29
|
+
.bg-inactive{
|
|
30
|
+
@apply cursor-pointer;
|
|
31
|
+
--border-radius: 1rem;
|
|
32
|
+
|
|
33
|
+
&::part(native){
|
|
34
|
+
@apply transition-all;
|
|
35
|
+
}
|
|
36
|
+
--background: color-mix(in srgb, var(--ion-color-light-shade) 50%, transparent 50%) ;
|
|
37
|
+
&:hover{
|
|
38
|
+
--background: color-mix(in srgb, var(--ion-color-light-shade) 70%, transparent 30%) ;
|
|
39
|
+
}
|
|
40
|
+
@media (prefers-color-scheme: dark) {
|
|
41
|
+
--background: color-mix(in srgb, var(--ion-color-light-tint) 70%, transparent 30%);
|
|
42
|
+
&:hover{
|
|
43
|
+
--background: var(--ion-color-light-tint);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
@keyframes gradientFade {
|
|
2
|
+
0% {
|
|
3
|
+
background-position: 0% 50%;
|
|
4
|
+
opacity: 1;
|
|
5
|
+
}
|
|
6
|
+
50% {
|
|
7
|
+
background-position: 100% 50%;
|
|
8
|
+
opacity: 0.7;
|
|
9
|
+
}
|
|
10
|
+
100% {
|
|
11
|
+
background-position: 0% 50%;
|
|
12
|
+
opacity: 1;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.animate-gradient-fade {
|
|
17
|
+
background-size: 200% 200%;
|
|
18
|
+
animation: gradientFade 8s ease 1;
|
|
19
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#content{
|
|
2
|
+
@apply rounded-2xl w-full h-full flex justify-center items-center transition-all ease-in-out duration-300 px-3;
|
|
3
|
+
// background: color-mix(in srgb, var(--ion-color-dark) 3%, transparent 97%);
|
|
4
|
+
// &:hover{
|
|
5
|
+
// background: color-mix(in srgb, var(--ion-color-dark) 15%, transparent 93%);
|
|
6
|
+
// }
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// ion-item{
|
|
10
|
+
// --background: color-mix(in srgb, var(--ion-color-dark) 3%, transparent 97%);
|
|
11
|
+
// &:hover{
|
|
12
|
+
// --background: color-mix(in srgb, var(--ion-color-dark) 15%, transparent 93%);
|
|
13
|
+
// }
|
|
14
|
+
// }
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
input:focus{
|
|
2
|
+
outline: solid 1px color-mix(in srgb, var(--ion-color-primary) 30%, transparent);
|
|
3
|
+
}
|
|
4
|
+
input{
|
|
5
|
+
@apply rounded h-5;
|
|
6
|
+
outline: 1px solid transparent;
|
|
7
|
+
transition-property: outline;
|
|
8
|
+
transition-duration: 0.2s;
|
|
9
|
+
}
|
|
10
|
+
input::-webkit-outer-spin-button,
|
|
11
|
+
input::-webkit-inner-spin-button {
|
|
12
|
+
-webkit-appearance: none;
|
|
13
|
+
}
|
|
14
|
+
input[type='number'] {
|
|
15
|
+
-moz-appearance:textfield;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
.color-indicator {
|
|
20
|
+
position: absolute;
|
|
21
|
+
width: 12px;
|
|
22
|
+
height: 12px;
|
|
23
|
+
border-radius: 50%;
|
|
24
|
+
border: 2px solid white;
|
|
25
|
+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
|
|
26
|
+
transform: translate(-50%, -50%);
|
|
27
|
+
pointer-events: none;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.indicator {
|
|
31
|
+
position: absolute;
|
|
32
|
+
top: 50%;
|
|
33
|
+
width: 6px;
|
|
34
|
+
height: 24px;
|
|
35
|
+
background-color: white;
|
|
36
|
+
border-radius: 3px;
|
|
37
|
+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
|
|
38
|
+
transform: translate(-50%, -50%);
|
|
39
|
+
pointer-events: none;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.quick-transition{
|
|
43
|
+
transition: all 0.075s;
|
|
44
|
+
}
|
|
45
|
+
ion-popover{
|
|
46
|
+
--width: fit-content;
|
|
47
|
+
--height: fit-content;
|
|
48
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
ion-input{
|
|
2
|
+
@apply text-center select-none whitespace-nowrap;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.rounded-2xl{
|
|
6
|
+
--border-radius: 1rem;
|
|
7
|
+
}
|
|
8
|
+
.\!rounded-2xl{
|
|
9
|
+
--border-radius: 1rem;
|
|
10
|
+
}
|
|
11
|
+
.rounded-r-2xl{
|
|
12
|
+
--border-radius: 0rem 1rem 1rem 0rem;
|
|
13
|
+
}
|
|
14
|
+
.\!rounded-r-2xl{
|
|
15
|
+
--border-radius: 0rem 1rem 1rem 0rem;
|
|
16
|
+
}
|
|
17
|
+
.rounded-l-2xl{
|
|
18
|
+
--border-radius: 1rem 0rem 0rem 1rem;
|
|
19
|
+
}
|
|
20
|
+
.\!rounded-l-2xl{
|
|
21
|
+
--border-radius: 1rem 0rem 0rem 1rem;
|
|
22
|
+
}
|
|
23
|
+
.rounded-tr-none{
|
|
24
|
+
--border-radius: 0rem 0rem 1rem 0rem;
|
|
25
|
+
}
|
|
26
|
+
.\!rounded-tr-none{
|
|
27
|
+
--border-radius: 0rem 0rem 1rem 0rem;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
.border-right-danger{
|
|
32
|
+
&::part(native){
|
|
33
|
+
border-right-color: var(--ion-color-danger) !important;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
.border-y-danger{
|
|
37
|
+
&::part(native){
|
|
38
|
+
border-top-color: var(--ion-color-danger) !important;
|
|
39
|
+
border-bottom-color: var(--ion-color-danger) !important;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
ion-input{
|
|
2
|
+
@apply text-right;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
ion-item{
|
|
6
|
+
&::part(native){
|
|
7
|
+
@apply transition-all ease-in-out duration-300;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
ion-card{
|
|
12
|
+
border-width: 1px 1px 2px 1px !important;
|
|
13
|
+
|
|
14
|
+
border-color : color-mix(in srgb, var(--ion-color-dark) 50%, transparent 50%);
|
|
15
|
+
border-right-color: color-mix(in srgb, var(--ion-color-medium) 30%, transparent 70%);
|
|
16
|
+
border-top-color : color-mix(in srgb, var(--ion-color-medium) 30%, transparent 70%);
|
|
17
|
+
border-left-color : color-mix(in srgb, var(--ion-color-medium) 30%, transparent 70%);
|
|
18
|
+
|
|
19
|
+
@apply border-solid transition-all;
|
|
20
|
+
&.submitted.invalid{
|
|
21
|
+
border-color : color-mix(in srgb, var(--ion-color-danger) 50%, transparent 50%) !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&:not(.required){
|
|
25
|
+
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
ion-text{
|
|
30
|
+
&.required{
|
|
31
|
+
&::after {
|
|
32
|
+
content: "*";
|
|
33
|
+
color: var(--ion-color-danger);
|
|
34
|
+
vertical-align: text-bottom;
|
|
35
|
+
font-size: small;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
&:not(.required)::after{
|
|
39
|
+
content: var(--input-opcional-label, "(Opcional)");
|
|
40
|
+
color: var(--ion-color-medium);
|
|
41
|
+
vertical-align: text-bottom;
|
|
42
|
+
font-size: small;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
File without changes
|
|
File without changes
|
package/themes/components/inputs/input-select/input-select-option/input-select-option.component.scss
ADDED
|
File without changes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.no-items-opacity{
|
|
2
|
+
--color: color-mix(in srgb, var(--ion-color-dark) 60%, transparent 40%);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.rounded-2xl{
|
|
6
|
+
--border-radius: 1rem;
|
|
7
|
+
}
|
|
8
|
+
.\!rounded-2xl{
|
|
9
|
+
--border-radius: 1rem;
|
|
10
|
+
}
|
|
11
|
+
.rounded-r-2xl{
|
|
12
|
+
--border-radius: 0rem 1rem 1rem 0rem;
|
|
13
|
+
}
|
|
14
|
+
.\!rounded-r-2xl{
|
|
15
|
+
--border-radius: 0rem 1rem 1rem 0rem;
|
|
16
|
+
}
|
|
17
|
+
.rounded-l-2xl{
|
|
18
|
+
--border-radius: 1rem 0rem 0rem 1rem;
|
|
19
|
+
}
|
|
20
|
+
.\!rounded-l-2xl{
|
|
21
|
+
--border-radius: 1rem 0rem 0rem 1rem;
|
|
22
|
+
}
|
|
23
|
+
.rounded-tr-none{
|
|
24
|
+
--border-radius: 0rem 0rem 1rem 0rem;
|
|
25
|
+
}
|
|
26
|
+
.\!rounded-tr-none{
|
|
27
|
+
--border-radius: 0rem 0rem 1rem 0rem;
|
|
28
|
+
}
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
$ion-border-base : color-mix(in srgb, var(--ion-color-medium) 30%, transparent 70%);
|
|
2
|
+
$ion-border-contrast : var(--ion-color-medium);
|
|
3
|
+
$ion-border-invalid : color-mix(in srgb, var(--ion-color-danger) 75%, transparent 25%);
|
|
4
|
+
|
|
5
|
+
$input-height: 58px;
|
|
6
|
+
|
|
7
|
+
.on-hover{
|
|
8
|
+
background: color-mix(in srgb, var(--ion-color-light) 97%, transparent 3%);
|
|
9
|
+
&:hover{
|
|
10
|
+
@apply transition-all ease-in-out duration-300;
|
|
11
|
+
background: color-mix(in srgb, var(--ion-color-dark) 15%, transparent 93%);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
ion-card.ion-card-input{
|
|
16
|
+
@apply rounded-2xl w-full h-full flex justify-center items-center transition-all ease-in-out duration-300 m-0 overflow-hidden shadow-none;
|
|
17
|
+
background: color-mix(in srgb, var(--ion-color-light) 97%, transparent 3%);
|
|
18
|
+
&:hover{
|
|
19
|
+
background: color-mix(in srgb, var(--ion-color-dark) 15%, transparent 93%);
|
|
20
|
+
}
|
|
21
|
+
border-bottom-color: $ion-border-contrast;
|
|
22
|
+
border-right-color : $ion-border-base;
|
|
23
|
+
border-top-color : $ion-border-base;
|
|
24
|
+
border-left-color : $ion-border-base;
|
|
25
|
+
|
|
26
|
+
border-width: 1px 1px 2px 1px;
|
|
27
|
+
&.submitted.invalid{
|
|
28
|
+
border-color: $ion-border-invalid !important;
|
|
29
|
+
}
|
|
30
|
+
&.disabled{
|
|
31
|
+
background-color: color-mix(in srgb, var(--ion-color-medium) 30%, transparent 70%) !important;
|
|
32
|
+
}
|
|
33
|
+
ion-card-content{ @apply size-full bg-transparent p-0; }
|
|
34
|
+
|
|
35
|
+
min-height: $input-height;
|
|
36
|
+
max-height: $input-height;
|
|
37
|
+
height: $input-height;
|
|
38
|
+
}
|
|
39
|
+
ion-item{
|
|
40
|
+
--background: transparent;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
ion-text#label{
|
|
44
|
+
&.required{
|
|
45
|
+
&::after {
|
|
46
|
+
content: "*";
|
|
47
|
+
color: var(--ion-color-danger);
|
|
48
|
+
vertical-align: text-bottom;
|
|
49
|
+
font-size: small;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
&:not(.required)::after{
|
|
53
|
+
content: var(--input-opcional-label, "(Opcional)");
|
|
54
|
+
color: var(--ion-color-medium);
|
|
55
|
+
vertical-align: text-bottom;
|
|
56
|
+
font-size: small;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.on-focus{
|
|
61
|
+
border-bottom-color: var(--ion-color-primary);
|
|
62
|
+
}
|
|
63
|
+
.focus-within\:on-focus{
|
|
64
|
+
&:focus-within{
|
|
65
|
+
border-bottom-color: var(--ion-color-primary);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
ion-button{
|
|
2
|
+
transition: all 1s;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
ion-item.ion-touched, ion-item.ion-pristine{
|
|
6
|
+
--border-width: 0;
|
|
7
|
+
--border-color: var(--ion-color-dark)
|
|
8
|
+
--background: transparent !important;
|
|
9
|
+
transition: border-color .5s;
|
|
10
|
+
border-radius: 1rem;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
$ion-border-base : color-mix(in srgb, var(--ion-color-medium) 30%, transparent 70%);
|
|
14
|
+
$ion-border-contrast : var(--ion-color-medium);
|
|
15
|
+
$ion-border-invalid : color-mix(in srgb, var(--ion-color-danger) 75%, transparent 25%);
|
|
16
|
+
|
|
17
|
+
ion-card{
|
|
18
|
+
@apply rounded-2xl flex justify-center items-center transition-all ease-in-out duration-300 m-0 my-2 overflow-hidden shadow-none;
|
|
19
|
+
ion-card-content{
|
|
20
|
+
@apply p-0;
|
|
21
|
+
}
|
|
22
|
+
background: color-mix(in srgb, var(--ion-color-light) 15%, transparent 93%);
|
|
23
|
+
&:hover{
|
|
24
|
+
background: color-mix(in srgb, var(--ion-color-dark) 15%, transparent 93%);
|
|
25
|
+
}
|
|
26
|
+
border-bottom-color: $ion-border-contrast;
|
|
27
|
+
border-right-color : $ion-border-base;
|
|
28
|
+
border-top-color : $ion-border-base;
|
|
29
|
+
border-left-color : $ion-border-base;
|
|
30
|
+
|
|
31
|
+
border-width: 1px 1px 2px 1px;
|
|
32
|
+
&.submitted.invalid{
|
|
33
|
+
border-color: $ion-border-invalid !important;
|
|
34
|
+
}
|
|
35
|
+
ion-card-content{ @apply size-full bg-transparent p-0; }
|
|
36
|
+
}
|
|
37
|
+
ion-item{
|
|
38
|
+
--background: transparent;
|
|
39
|
+
@apply m-0;
|
|
40
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
:host{
|
|
2
|
+
--stepper-selected-color: var(--ion-color-primary);
|
|
3
|
+
--stepper-color: var(--ion-color-light-shade);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.step{
|
|
7
|
+
background-color: var(--stepper-color);
|
|
8
|
+
color: var(--ion-color-dark);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.selected{
|
|
12
|
+
background-color: var(--stepper-selected-color);
|
|
13
|
+
color: var(--ion-color-light);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
ion-progress-bar{
|
|
17
|
+
&::part(progress){
|
|
18
|
+
transition: all ease-in-out .3s !important;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.wrapper:not(:empty) + .default {
|
|
23
|
+
display: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.wrapper:empty{
|
|
27
|
+
display: none;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.animated{
|
|
31
|
+
animation-name: slidein;
|
|
32
|
+
animation-duration: .3s;
|
|
33
|
+
animation-iteration-count: 1;
|
|
34
|
+
animation-timing-function: ease-in-out
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@keyframes slidein {
|
|
38
|
+
from {
|
|
39
|
+
opacity: 0;
|
|
40
|
+
transform: translateX(3rem);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
to {
|
|
45
|
+
opacity: 1;
|
|
46
|
+
transform: translateX();
|
|
47
|
+
}
|
|
48
|
+
}
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.tab-selector{
|
|
2
|
+
@apply cursor-pointer flex items-center justify-center px-2;
|
|
3
|
+
@apply h-full min-w-32 rounded-t-2xl overflow-hidden ;
|
|
4
|
+
@apply -mr-4 hover:mr-0 px-4;
|
|
5
|
+
&:hover{
|
|
6
|
+
border-color: var(--ion-color-secondary) !important;
|
|
7
|
+
}
|
|
8
|
+
&.selected{
|
|
9
|
+
@apply mx-2 ml-6;
|
|
10
|
+
border-color: var(--ion-color-primary);
|
|
11
|
+
background: color-mix(in srgb, var(--ion-color-primary) 30%, transparent 70%) !important;
|
|
12
|
+
}
|
|
13
|
+
&:first-of-type{
|
|
14
|
+
&.selected{
|
|
15
|
+
@apply ml-0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
.tab-content{
|
|
20
|
+
@apply size-full rounded-2xl overflow-hidden;
|
|
21
|
+
border-top-width: .5px;
|
|
22
|
+
border-top-color: color-mix(in srgb, var(--ion-color-primary) 50%, transparent 50%) !important;;
|
|
23
|
+
}
|
|
File without changes
|