@wx-design/components 1.2.2 → 1.3.0-alpha.10
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/es/core/ConfigProvider/index.d.ts +8 -3
- package/es/core/ConfigProvider/index.vue.d.ts +12 -16
- package/es/core/Modal/index.vue.d.ts +61 -110
- package/es/core/Select/index.vue.d.ts +25 -44
- package/es/core/Table/components/CellEditors/Boolean.d.ts +133 -33
- package/es/core/Table/components/CellEditors/Cascader.d.ts +8 -11
- package/es/core/Table/components/CellEditors/Color.d.ts +4 -7
- package/es/core/Table/components/CellEditors/DatePicker.d.ts +3 -8
- package/es/core/Table/components/CellEditors/DynamicCell.d.ts +1 -4
- package/es/core/Table/components/CellEditors/Image.d.ts +5 -8
- package/es/core/Table/components/CellEditors/Input.d.ts +3 -6
- package/es/core/Table/components/CellEditors/InputNumber.d.ts +3 -8
- package/es/core/Table/components/CellEditors/PopOver.d.ts +2 -5
- package/es/core/Table/components/CellEditors/Select.d.ts +9 -12
- package/es/core/Table/components/CellEditors/utils.d.ts +1 -1
- package/es/core/Table/components/CellRender.d.ts +2 -21
- package/es/core/Table/components/FilterTagsDisplay/index.vue.d.ts +37 -0
- package/es/core/Table/components/HeaderRender/index.d.ts +10 -8
- package/es/core/Table/components/TableSet/ColumnSet.vue.d.ts +487 -26
- package/es/core/Table/components/TableSet/index.vue.d.ts +6 -15
- package/es/core/Table/components/TableSet/utils.d.ts +1 -1
- package/es/core/Table/components/Toolbar/index.vue.d.ts +20 -0
- package/es/core/Table/configs/column.d.ts +2 -2
- package/es/core/Table/configs/table.d.ts +1 -1
- package/es/core/Table/hooks/index.d.ts +4 -0
- package/es/core/Table/hooks/useTableCore.d.ts +16 -0
- package/es/core/Table/hooks/useTableData.d.ts +16 -0
- package/es/core/Table/hooks/useTableEvents.d.ts +14 -10
- package/es/core/Table/hooks/useTableFilters.d.ts +19 -0
- package/es/core/Table/index.d.ts +3 -2
- package/es/core/Table/index.vue.d.ts +134 -132
- package/es/core/Table/renderer/FilterRender/index.vue.d.ts +14 -11
- package/es/core/Table/utils/autoColumnWidth.d.ts +1 -1
- package/es/core/Table/utils/footer.d.ts +2 -2
- package/es/core/Table/utils/tree-helper.d.ts +1 -1
- package/es/index.d.ts +7 -7
- package/es/index.mjs +31068 -31560
- package/es/locales/lang/bn.d.ts +6 -0
- package/es/locales/lang/en.d.ts +6 -0
- package/es/locales/lang/vi.d.ts +6 -0
- package/es/locales/lang/zh-cn.d.ts +6 -0
- package/es/locales/useLocale.d.ts +8 -2
- package/es/style.css +1 -1
- package/lib/core/ConfigProvider/index.d.ts +8 -3
- package/lib/core/ConfigProvider/index.vue.d.ts +12 -16
- package/lib/core/Modal/index.vue.d.ts +61 -110
- package/lib/core/Select/index.vue.d.ts +25 -44
- package/lib/core/Table/components/CellEditors/Boolean.d.ts +133 -33
- package/lib/core/Table/components/CellEditors/Cascader.d.ts +8 -11
- package/lib/core/Table/components/CellEditors/Color.d.ts +4 -7
- package/lib/core/Table/components/CellEditors/DatePicker.d.ts +3 -8
- package/lib/core/Table/components/CellEditors/DynamicCell.d.ts +1 -4
- package/lib/core/Table/components/CellEditors/Image.d.ts +5 -8
- package/lib/core/Table/components/CellEditors/Input.d.ts +3 -6
- package/lib/core/Table/components/CellEditors/InputNumber.d.ts +3 -8
- package/lib/core/Table/components/CellEditors/PopOver.d.ts +2 -5
- package/lib/core/Table/components/CellEditors/Select.d.ts +9 -12
- package/lib/core/Table/components/CellEditors/utils.d.ts +1 -1
- package/lib/core/Table/components/CellRender.d.ts +2 -21
- package/lib/core/Table/components/FilterTagsDisplay/index.vue.d.ts +37 -0
- package/lib/core/Table/components/HeaderRender/index.d.ts +10 -8
- package/lib/core/Table/components/TableSet/ColumnSet.vue.d.ts +487 -26
- package/lib/core/Table/components/TableSet/index.vue.d.ts +6 -15
- package/lib/core/Table/components/TableSet/utils.d.ts +1 -1
- package/lib/core/Table/components/Toolbar/index.vue.d.ts +20 -0
- package/lib/core/Table/configs/column.d.ts +2 -2
- package/lib/core/Table/configs/table.d.ts +1 -1
- package/lib/core/Table/hooks/index.d.ts +4 -0
- package/lib/core/Table/hooks/useTableCore.d.ts +16 -0
- package/lib/core/Table/hooks/useTableData.d.ts +16 -0
- package/lib/core/Table/hooks/useTableEvents.d.ts +14 -10
- package/lib/core/Table/hooks/useTableFilters.d.ts +19 -0
- package/lib/core/Table/index.d.ts +3 -2
- package/lib/core/Table/index.vue.d.ts +134 -132
- package/lib/core/Table/renderer/FilterRender/index.vue.d.ts +14 -11
- package/lib/core/Table/utils/autoColumnWidth.d.ts +1 -1
- package/lib/core/Table/utils/footer.d.ts +2 -2
- package/lib/core/Table/utils/tree-helper.d.ts +1 -1
- package/lib/index.d.ts +7 -7
- package/lib/index.js +5 -7
- package/lib/locales/lang/bn.d.ts +6 -0
- package/lib/locales/lang/en.d.ts +6 -0
- package/lib/locales/lang/vi.d.ts +6 -0
- package/lib/locales/lang/zh-cn.d.ts +6 -0
- package/lib/locales/useLocale.d.ts +8 -2
- package/lib/style.css +1 -1
- package/package.json +3 -3
- package/types/table/table.d.ts +6 -0
package/es/locales/lang/bn.d.ts
CHANGED
package/es/locales/lang/en.d.ts
CHANGED
package/es/locales/lang/vi.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Ref } from
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
2
|
declare const useLocale: (lang: Ref<string>) => {
|
|
3
|
-
locale: import(
|
|
3
|
+
locale: import('vue').ComputedRef<{
|
|
4
4
|
sabDesign: {
|
|
5
5
|
table: {
|
|
6
6
|
set: {
|
|
@@ -17,6 +17,12 @@ declare const useLocale: (lang: Ref<string>) => {
|
|
|
17
17
|
filter: string;
|
|
18
18
|
reset: string;
|
|
19
19
|
};
|
|
20
|
+
filterTags: {
|
|
21
|
+
label: string;
|
|
22
|
+
clearAll: string;
|
|
23
|
+
booleanTrue: string;
|
|
24
|
+
booleanFalse: string;
|
|
25
|
+
};
|
|
20
26
|
loadingText: string;
|
|
21
27
|
emptyText: string;
|
|
22
28
|
total: string;
|