Skip to content

Commit 9433523

Browse files
text color reset &&update components.d.ts
1 parent 5484e73 commit 9433523

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

components.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ export {}
77
/* prettier-ignore */
88
declare module 'vue' {
99
export interface GlobalComponents {
10+
Badge: typeof import('./src/components/common/Badge.vue')['default']
1011
BasicSetting: typeof import('./src/components/function/BasicSetting.vue')['default']
1112
CellEdit: typeof import('./src/components/function/CellEdit.vue')['default']
1213
ColumnResize: typeof import('./src/components/function/ColumnResize.vue')['default']
1314
ColumnShowSetting: typeof import('./src/components/function/ColumnShowSetting.vue')['default']
1415
ContextMenu: typeof import('./src/components/function/ContextMenu.vue')['default']
15-
DictSelect: typeof import('./src/components/function/DictSelect.vue')['default']
16+
DictSelect: typeof import('./src/components/base/DictSelect.vue')['default']
1617
FilterSetting: typeof import('./src/components/function/FilterSetting.vue')['default']
1718
Gantt: typeof import('./src/components/layout/gantt/Gantt.vue')['default']
1819
GanttTimelineHeader: typeof import('./src/components/layout/gantt/GanttTimelineHeader.vue')['default']
@@ -28,7 +29,9 @@ declare module 'vue' {
2829
ListRows: typeof import('./src/components/layout/list/ListRows.vue')['default']
2930
ListRowSelect: typeof import('./src/components/layout/list/ListRowSelect.vue')['default']
3031
Menu: typeof import('./src/components/common/Menu.vue')['default']
32+
MenuSelect: typeof import('./src/components/base/MenuSelect/index.vue')['default']
3133
MenuTree: typeof import('./src/components/base/MenuTree/index.vue')['default']
34+
MInput: typeof import('./src/components/base/MInput/index.vue')['default']
3235
Pagination: typeof import('./src/components/function/Pagination.vue')['default']
3336
QuickSearch: typeof import('./src/components/function/QuickSearch.vue')['default']
3437
RowSortSetting: typeof import('./src/components/function/RowSortSetting.vue')['default']
@@ -42,5 +45,6 @@ declare module 'vue' {
4245
TableSetCommon: typeof import('./src/components/common/TableSetCommon.vue')['default']
4346
TableSetting: typeof import('./src/components/function/TableSetting.vue')['default']
4447
TableThemeSetting: typeof import('./src/components/function/TableThemeSetting.vue')['default']
48+
TreeSelect: typeof import('./src/components/base/TreeSelect.vue')['default']
4549
}
4650
}

src/assets/reset.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,8 @@
4646
border-color: var(--sys-primary);
4747
}
4848
/* badge end */
49+
/* text start */
50+
.iw-tt .text-primary {
51+
color: var(--sys-primary);
52+
}
53+
/* text end */

0 commit comments

Comments
 (0)