diff --git a/src/assets/targo_building.png b/src/assets/targo_building.png index 42e9927..8f4fafc 100644 Binary files a/src/assets/targo_building.png and b/src/assets/targo_building.png differ diff --git a/src/i18n/en-ca/index.ts b/src/i18n/en-ca/index.ts index 73f56ed..85bf7a6 100644 --- a/src/i18n/en-ca/index.ts +++ b/src/i18n/en-ca/index.ts @@ -353,8 +353,20 @@ export default { verified: "approved", unverified: "pending", inactive: "inactive", + regular: "regular", + evening: "evening", + emergency: "emergency", + overtime: "overtime", + holiday: "holiday", + vacation: "vacation", + sick: "sick", + remote: "remote work", + weekly_hours_1: "1st week hours", + weekly_hours_2: "2nd week hours", + total_hours: "total hours", filter_active: "show only active employees", filter_team: "show my team only", + filter_columns: "Information displayed", }, tooltip: { button_detailed_view: "detailed view", diff --git a/src/i18n/fr-ca/index.ts b/src/i18n/fr-ca/index.ts index 4fda852..ea06f72 100644 --- a/src/i18n/fr-ca/index.ts +++ b/src/i18n/fr-ca/index.ts @@ -354,8 +354,20 @@ export default { verified: "approuvé", unverified: "à vérifier", inactive: "inactif", + regular: "régulier", + evening: "soir", + emergency: "urgence", + overtime: "supplémentaire", + holiday: "férié", + vacation: "vacances", + sick: "maladie", + remote: "télétravail", + weekly_hours_1: "heures semaine 1", + weekly_hours_2: "heures semaine 2", + total_hours: "heures totales", filter_active: "montrer les employés inactifs", filter_team: "montrer mon équipe seulement", + filter_columns: "informations affichés", }, tooltip: { button_detailed_view: "vue détaillée", diff --git a/src/layouts/components/main-layout-footer-bar.vue b/src/layouts/components/main-layout-footer-bar.vue index 8df6af4..80cc340 100644 --- a/src/layouts/components/main-layout-footer-bar.vue +++ b/src/layouts/components/main-layout-footer-bar.vue @@ -1,7 +1,20 @@ + + \ No newline at end of file diff --git a/src/modules/auth/components/login-connection-panel.vue b/src/modules/auth/components/login-connection-panel.vue index f5b1513..0dd7755 100644 --- a/src/modules/auth/components/login-connection-panel.vue +++ b/src/modules/auth/components/login-connection-panel.vue @@ -76,7 +76,7 @@ rounded disabled type="submit" - color="accent" + color="grey-5" :label="$t('login.button.connect')" class="full-width q-mt-lg" /> @@ -108,7 +108,7 @@ rounded push disabled - color="fb-blue" + color="blue-grey-7" icon="img:src/assets/Facebook-f_Logo-White-Logo.wine.svg" :label="$t('login.button.facebook')" class="full-width row q-mb-sm" diff --git a/src/modules/help/models/help-module.model.ts b/src/modules/help/models/help-module.model.ts index 2a09d25..261fc5e 100644 --- a/src/modules/help/models/help-module.model.ts +++ b/src/modules/help/models/help-module.model.ts @@ -99,7 +99,6 @@ const schedule_preset_desc = "descriptions.employee_management.schedule_preset"; export const employee_list_options: HelpModuleOptions[] = [ - { label: 'help.tutorial.employee_list.terminated_employees', path: terminated_employee_display, description: terminated_employee_desc, icon: 'work_off' }, { label: 'help.tutorial.shared.display', path: employee_list_card, description: display_desc, icon: 'display_settings' }, { label: 'help.tutorial.shared.search', path: search_bar, description: search_bar_desc, icon: 'search' }, ]; diff --git a/src/modules/shared/components/page-header-template.vue b/src/modules/shared/components/page-header-template.vue index e58704c..15a71ba 100644 --- a/src/modules/shared/components/page-header-template.vue +++ b/src/modules/shared/components/page-header-template.vue @@ -2,8 +2,9 @@ setup lang="ts" > + /* eslint-disable */ import { date, useQuasar } from 'quasar'; - import { computed } from 'vue'; + import { computed, onMounted, onUpdated, ref } from 'vue'; const { title, startDate = "", endDate = "" } = defineProps<{ title: string; @@ -13,17 +14,36 @@ const q = useQuasar(); + const emit = defineEmits<{ 'onGetComponentHeight': [value: number] }>(); + + const selfRef = ref(null); + const date_format_options = computed(() => q.platform.is.mobile ? { day: 'numeric', month: 'short', year: 'numeric' } : { day: 'numeric', month: 'long', year: 'numeric', }); + + onUpdated(() => { + if (selfRef.value) { + emit('onGetComponentHeight', selfRef.value.offsetHeight); + } + }); + + onMounted(() => { + if (selfRef.value) { + emit('onGetComponentHeight', selfRef.value.offsetHeight); + } + })