Skip to content

Commit 182668b

Browse files
committed
releases 4.17.18
1 parent 2de9c44 commit 182668b

File tree

26 files changed

+652
-56
lines changed

26 files changed

+652
-56
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vxe-table",
3-
"version": "4.17.17",
3+
"version": "4.17.18",
44
"description": "A PC-end table component based on Vxe UI, supporting copy-paste, data pivot table, and high-performance virtual list table solution.",
55
"scripts": {
66
"update": "npm install --legacy-peer-deps",

packages/locale/lang/ar-EG.ts

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,8 @@ export default {
665665
fixedRight: 'تجميد الحق',
666666
clearFilter: 'مرشح واضح',
667667
textOption: 'مرشح النص',
668-
numberOption: 'مرشح عددي'
668+
numberOption: 'مرشح عددي',
669+
dateOption: '日期筛选'
669670
},
670671
popup: {
671672
title: 'طرق التصفية المخصصة',
@@ -688,6 +689,28 @@ export default {
688689
include: 'يشمل',
689690
exclude: 'غير مدرج',
690691
between: 'بين',
692+
isAfter: '在以下日期之后',
693+
eqAfter: '在以下日期之后或与之相同',
694+
isBefore: '在以下日期之前',
695+
eqBefore: '在以下日期之前或与之相同',
696+
top10: '前10项',
697+
aboveAverage: '高于平均值',
698+
belowAverage: '低于平均值',
699+
before: '之前',
700+
after: '之后',
701+
tomorrow: '明天',
702+
today: '今天',
703+
yesterday: '昨天',
704+
nextWeek: '下周',
705+
thisWeek: '本周',
706+
lastWeek: '上周',
707+
nextMonth: '下月',
708+
thisMonth: '本月',
709+
lastMonth: '上月',
710+
nextYear: '明年',
711+
thisYear: '今年',
712+
lastYear: '去年',
713+
yearToDate: '本年度截止到现在',
691714
custom: 'مرشح مخصص',
692715
insensitive: 'حالة غير حساسة',
693716
isSensitive: 'حساسية الموضوع'
@@ -753,6 +776,9 @@ export default {
753776
include: 'يشمل',
754777
exclude: 'غير مدرج',
755778
between: 'بين',
779+
top10: '前10项',
780+
aboveAverage: '高于平均值',
781+
belowAverage: '低于平均值',
756782
custom: 'مرشح مخصص',
757783
insensitive: 'حالة غير حساسة',
758784
isSensitive: 'حساسية الموضوع'
@@ -770,7 +796,8 @@ export default {
770796
fixedRight: 'تجميد الحق',
771797
clearFilter: 'مرشح واضح',
772798
textOption: 'تصفية النص',
773-
numberOption: 'تصفية عددية'
799+
numberOption: 'تصفية عددية',
800+
dateOption: '日期筛选'
774801
},
775802
popup: {
776803
title: 'طرق التصفية المخصصة',

packages/locale/lang/de-DE.ts

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,8 @@ export default {
665665
fixedRight: 'Die rechte Seite einfrieren',
666666
clearFilter: 'Klaren Filter',
667667
textOption: 'Textfilterung',
668-
numberOption: 'Numerische Filterung'
668+
numberOption: 'Numerische Filterung',
669+
dateOption: '日期筛选'
669670
},
670671
popup: {
671672
title: 'Benutzerdefinierte Filtermethoden',
@@ -688,6 +689,28 @@ export default {
688689
include: 'Enthalten',
689690
exclude: 'Nicht enthalten',
690691
between: 'Zwischen',
692+
isAfter: '在以下日期之后',
693+
eqAfter: '在以下日期之后或与之相同',
694+
isBefore: '在以下日期之前',
695+
eqBefore: '在以下日期之前或与之相同',
696+
top10: '前10项',
697+
aboveAverage: '高于平均值',
698+
belowAverage: '低于平均值',
699+
before: '之前',
700+
after: '之后',
701+
tomorrow: '明天',
702+
today: '今天',
703+
yesterday: '昨天',
704+
nextWeek: '下周',
705+
thisWeek: '本周',
706+
lastWeek: '上周',
707+
nextMonth: '下月',
708+
thisMonth: '本月',
709+
lastMonth: '上月',
710+
nextYear: '明年',
711+
thisYear: '今年',
712+
lastYear: '去年',
713+
yearToDate: '本年度截止到现在',
691714
custom: 'Benutzerdefinierte Filterung',
692715
insensitive: 'Fall unempfindlich',
693716
isSensitive: 'Fallempfindlichkeit'
@@ -753,6 +776,9 @@ export default {
753776
include: 'Enthalten',
754777
exclude: 'Nicht enthalten',
755778
between: 'Zwischen',
779+
top10: '前10项',
780+
aboveAverage: '高于平均值',
781+
belowAverage: '低于平均值',
756782
custom: 'Benutzerdefinierte Filterung',
757783
insensitive: 'Fall unempfindlich',
758784
isSensitive: 'Fallempfindlichkeit'
@@ -770,7 +796,8 @@ export default {
770796
fixedRight: 'Nach rechts einfrieren',
771797
clearFilter: 'Klaren Filter',
772798
textOption: 'Textfilterung',
773-
numberOption: 'Numerische Filterung'
799+
numberOption: 'Numerische Filterung',
800+
dateOption: '日期筛选'
774801
},
775802
popup: {
776803
title: 'Benutzerdefinierte Filtermethoden',

packages/locale/lang/en-US.ts

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -664,12 +664,13 @@ export default {
664664
fixedLeft: 'Freeze left',
665665
fixedRight: 'Freeze right',
666666
clearFilter: 'Clear Filter',
667-
textOption: 'Text filter',
668-
numberOption: 'Numerical filter'
667+
textOption: 'Text filters',
668+
numberOption: 'Number filters',
669+
dateOption: 'Date filters'
669670
},
670671
popup: {
671672
title: 'Custom filtering methods',
672-
currColumnTitle: 'Current column:',
673+
currColumnTitle: 'Show rows where:',
673674
and: 'and',
674675
or: 'or',
675676
describeHtml: 'Available? Represents a single character<br/>Use * Represents any multiple characters'
@@ -688,6 +689,28 @@ export default {
688689
include: 'Include',
689690
exclude: 'Not included',
690691
between: 'Between',
692+
isAfter: 'Is after',
693+
eqAfter: 'Is after or equal to',
694+
isBefore: 'Is before',
695+
eqBefore: 'Is before or equal to',
696+
top10: 'Top 10',
697+
aboveAverage: 'Above average',
698+
belowAverage: 'Below average',
699+
before: 'Before',
700+
after: 'After',
701+
tomorrow: 'Tomorrow',
702+
today: 'Today',
703+
yesterday: 'Yesterday',
704+
nextWeek: 'Next Week',
705+
thisWeek: 'This Week',
706+
lastWeek: 'Last Week',
707+
nextMonth: 'Next Month',
708+
thisMonth: 'This Month',
709+
lastMonth: 'Last Month',
710+
nextYear: 'Next Year',
711+
thisYear: 'This Year',
712+
lastYear: 'Last Year',
713+
yearToDate: 'Year to Date',
691714
custom: 'Custom filter',
692715
insensitive: 'Case insensitive',
693716
isSensitive: 'case sensitive'
@@ -753,6 +776,9 @@ export default {
753776
include: 'Include',
754777
exclude: 'Not included',
755778
between: 'Between',
779+
top10: 'Top 10',
780+
aboveAverage: 'Above average',
781+
belowAverage: 'Below average',
756782
custom: 'Custom filter',
757783
insensitive: 'Case insensitive',
758784
isSensitive: 'case sensitive'
@@ -769,12 +795,13 @@ export default {
769795
fixedLeft: 'Freeze left',
770796
fixedRight: 'Freeze right',
771797
clearFilter: 'Clear Filter',
772-
textOption: 'Text filtering',
773-
numberOption: 'Numerical filtering'
798+
textOption: 'Text filters',
799+
numberOption: 'Number filters',
800+
dateOption: 'Date filters'
774801
},
775802
popup: {
776803
title: 'Custom filtering methods',
777-
currColumnTitle: 'Current column:',
804+
currColumnTitle: 'Show rows where:',
778805
and: 'and',
779806
or: 'or',
780807
describeHtml: 'Available? Represents a single character<br/>Use * Represents any multiple characters'

packages/locale/lang/es-ES.ts

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,8 @@ export default {
665665
fixedRight: 'Congelar el lado derecho',
666666
clearFilter: 'Filtro claro',
667667
textOption: 'Filtrado de texto',
668-
numberOption: 'Filtrado numérico'
668+
numberOption: 'Filtrado numérico',
669+
dateOption: '日期筛选'
669670
},
670671
popup: {
671672
title: 'Métodos de filtrado personalizados',
@@ -688,6 +689,28 @@ export default {
688689
include: 'Incluir',
689690
exclude: 'No incluido',
690691
between: 'Entre',
692+
isAfter: '在以下日期之后',
693+
eqAfter: '在以下日期之后或与之相同',
694+
isBefore: '在以下日期之前',
695+
eqBefore: '在以下日期之前或与之相同',
696+
top10: '前10项',
697+
aboveAverage: '高于平均值',
698+
belowAverage: '低于平均值',
699+
before: '之前',
700+
after: '之后',
701+
tomorrow: '明天',
702+
today: '今天',
703+
yesterday: '昨天',
704+
nextWeek: '下周',
705+
thisWeek: '本周',
706+
lastWeek: '上周',
707+
nextMonth: '下月',
708+
thisMonth: '本月',
709+
lastMonth: '上月',
710+
nextYear: '明年',
711+
thisYear: '今年',
712+
lastYear: '去年',
713+
yearToDate: '本年度截止到现在',
691714
custom: 'Filtrado personalizado',
692715
insensitive: 'Caso insensible',
693716
isSensitive: 'distingue mayúsculas y minúsculas'
@@ -753,6 +776,9 @@ export default {
753776
include: 'Incluir',
754777
exclude: 'No incluido',
755778
between: 'Entre',
779+
top10: '前10项',
780+
aboveAverage: '高于平均值',
781+
belowAverage: '低于平均值',
756782
custom: 'Filtrado personalizado',
757783
insensitive: 'Caso insensible',
758784
isSensitive: 'distingue mayúsculas y minúsculas'
@@ -770,7 +796,8 @@ export default {
770796
fixedRight: 'Congelarse a la derecha',
771797
clearFilter: 'Filtro claro',
772798
textOption: 'Filtrado de texto',
773-
numberOption: 'Filtrado numérico'
799+
numberOption: 'Filtrado numérico',
800+
dateOption: '日期筛选'
774801
},
775802
popup: {
776803
title: 'Métodos de filtrado personalizados',

packages/locale/lang/fr-FR.ts

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,8 @@ export default {
665665
fixedRight: 'Geler à droite',
666666
clearFilter: 'Filtre effacer',
667667
textOption: 'Filtre à texte',
668-
numberOption: 'Filtre numérique'
668+
numberOption: 'Filtre numérique',
669+
dateOption: '日期筛选'
669670
},
670671
popup: {
671672
title: 'Méthodes de filtrage personnalisées',
@@ -688,6 +689,28 @@ export default {
688689
include: 'Inclure',
689690
exclude: 'Pas inclus',
690691
between: 'Entre',
692+
isAfter: '在以下日期之后',
693+
eqAfter: '在以下日期之后或与之相同',
694+
isBefore: '在以下日期之前',
695+
eqBefore: '在以下日期之前或与之相同',
696+
top10: '前10项',
697+
aboveAverage: '高于平均值',
698+
belowAverage: '低于平均值',
699+
before: '之前',
700+
after: '之后',
701+
tomorrow: '明天',
702+
today: '今天',
703+
yesterday: '昨天',
704+
nextWeek: '下周',
705+
thisWeek: '本周',
706+
lastWeek: '上周',
707+
nextMonth: '下月',
708+
thisMonth: '本月',
709+
lastMonth: '上月',
710+
nextYear: '明年',
711+
thisYear: '今年',
712+
lastYear: '去年',
713+
yearToDate: '本年度截止到现在',
691714
custom: 'Filtre personnalisé',
692715
insensitive: 'Cas insensible au cas',
693716
isSensitive: 'sensible aux majuscules et minuscules'
@@ -753,6 +776,9 @@ export default {
753776
include: 'Inclure',
754777
exclude: 'Pas inclus',
755778
between: 'Entre',
779+
top10: '前10项',
780+
aboveAverage: '高于平均值',
781+
belowAverage: '低于平均值',
756782
custom: 'Filtre personnalisé',
757783
insensitive: 'Cas insensible au cas',
758784
isSensitive: 'sensible aux majuscules et minuscules'
@@ -770,7 +796,8 @@ export default {
770796
fixedRight: 'Geler à droite',
771797
clearFilter: 'Filtre effacer',
772798
textOption: 'Filtrage de texte',
773-
numberOption: 'Filtrage numérique'
799+
numberOption: 'Filtrage numérique',
800+
dateOption: '日期筛选'
774801
},
775802
popup: {
776803
title: 'Méthodes de filtrage personnalisées',

packages/locale/lang/hu-HU.ts

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,8 @@ export default {
665665
fixedRight: 'Jobbra fagy',
666666
clearFilter: 'Átlátszó szűrő',
667667
textOption: 'Szöveges szűrő',
668-
numberOption: 'Numerikus szűrő'
668+
numberOption: 'Numerikus szűrő',
669+
dateOption: '日期筛选'
669670
},
670671
popup: {
671672
title: 'Egyedi szűrési módszerek',
@@ -688,6 +689,28 @@ export default {
688689
include: 'Tartalmaz',
689690
exclude: 'Nem tartozik bele',
690691
between: 'Között',
692+
isAfter: '在以下日期之后',
693+
eqAfter: '在以下日期之后或与之相同',
694+
isBefore: '在以下日期之前',
695+
eqBefore: '在以下日期之前或与之相同',
696+
top10: '前10项',
697+
aboveAverage: '高于平均值',
698+
belowAverage: '低于平均值',
699+
before: '之前',
700+
after: '之后',
701+
tomorrow: '明天',
702+
today: '今天',
703+
yesterday: '昨天',
704+
nextWeek: '下周',
705+
thisWeek: '本周',
706+
lastWeek: '上周',
707+
nextMonth: '下月',
708+
thisMonth: '本月',
709+
lastMonth: '上月',
710+
nextYear: '明年',
711+
thisYear: '今年',
712+
lastYear: '去年',
713+
yearToDate: '本年度截止到现在',
691714
custom: 'Egyedi szűrő',
692715
insensitive: 'Esettanulmány',
693716
isSensitive: 'tokos érzékeny'
@@ -753,6 +776,9 @@ export default {
753776
include: 'Tartalmaz',
754777
exclude: 'Nem tartozik bele',
755778
between: 'Között',
779+
top10: '前10项',
780+
aboveAverage: '高于平均值',
781+
belowAverage: '低于平均值',
756782
custom: 'Egyedi szűrő',
757783
insensitive: 'Esettanulmány',
758784
isSensitive: 'tokos érzékeny'
@@ -770,7 +796,8 @@ export default {
770796
fixedRight: 'Jobbra fagy',
771797
clearFilter: 'Átlátszó szűrő',
772798
textOption: 'Szöveges szűrés',
773-
numberOption: 'Numerikus szűrés'
799+
numberOption: 'Numerikus szűrés',
800+
dateOption: '日期筛选'
774801
},
775802
popup: {
776803
title: 'Egyedi szűrési módszerek',

0 commit comments

Comments
 (0)