From b6fcd3c186fc2f5c5cc1e66a0b0469da3c884114 Mon Sep 17 00:00:00 2001 From: tristan Date: Fri, 19 Jun 2026 13:22:12 +0000 Subject: [PATCH] fix: component style (#80) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié --------- Co-authored-by: admin malio Co-authored-by: THOLOT DECHENE Matthieu Co-authored-by: matthieu Reviewed-on: https://gitea.malio.fr/MALIO-DEV/malio-layer-ui/pulls/80 Co-authored-by: tristan Co-committed-by: tristan --- .../pages/composant/divers/disabled.vue | 294 ++++++++++++++++++ .playground/pages/composant/tab/tabList.vue | 90 +++++- .playground/playground.nav.ts | 1 + CHANGELOG.md | 6 + COMPONENTS.md | 7 +- app/components/malio/date/Date.test.ts | 79 ++++- app/components/malio/date/DateTime.test.ts | 34 +- .../date/composables/maskTemplate.test.ts | 44 +++ .../malio/date/composables/maskTemplate.ts | 91 ++++++ .../malio/date/internal/CalendarField.vue | 32 +- .../malio/input/InputAutocomplete.test.ts | 6 + .../malio/input/InputAutocomplete.vue | 2 +- app/components/malio/input/InputEmail.test.ts | 12 +- app/components/malio/input/InputEmail.vue | 3 +- app/components/malio/input/InputNumber.vue | 2 +- .../malio/input/InputPassword.test.ts | 6 + app/components/malio/input/InputPassword.vue | 2 +- app/components/malio/input/InputPhone.test.ts | 12 +- app/components/malio/input/InputPhone.vue | 3 +- app/components/malio/select/Select.test.ts | 13 +- app/components/malio/select/Select.vue | 21 +- .../malio/select/SelectCheckbox.test.ts | 15 +- .../malio/select/SelectCheckbox.vue | 24 +- app/components/malio/sidebar/Sidebar.test.ts | 25 +- app/components/malio/sidebar/Sidebar.vue | 7 +- app/components/malio/tab/TabList.test.ts | 22 +- app/components/malio/tab/TabList.vue | 98 +++++- app/components/malio/tab/tabFit.test.ts | 43 +++ app/components/malio/tab/tabFit.ts | 49 +++ app/components/malio/time/TimePicker.test.ts | 8 + app/components/malio/time/TimePicker.vue | 13 +- 31 files changed, 939 insertions(+), 125 deletions(-) create mode 100644 .playground/pages/composant/divers/disabled.vue create mode 100644 app/components/malio/date/composables/maskTemplate.test.ts create mode 100644 app/components/malio/date/composables/maskTemplate.ts create mode 100644 app/components/malio/tab/tabFit.test.ts create mode 100644 app/components/malio/tab/tabFit.ts diff --git a/.playground/pages/composant/divers/disabled.vue b/.playground/pages/composant/divers/disabled.vue new file mode 100644 index 0000000..47c2896 --- /dev/null +++ b/.playground/pages/composant/divers/disabled.vue @@ -0,0 +1,294 @@ + + + diff --git a/.playground/pages/composant/tab/tabList.vue b/.playground/pages/composant/tab/tabList.vue index ae19ca7..9ecd87e 100644 --- a/.playground/pages/composant/tab/tabList.vue +++ b/.playground/pages/composant/tab/tabList.vue @@ -1,5 +1,65 @@