Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
anncwb committed Dec 1, 2021
1 parent cb1759b commit e024f6a
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 55 deletions.
4 changes: 0 additions & 4 deletions build/vite/plugin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { configVisualizerConfig } from './visualizer';
import { configThemePlugin } from './theme';
import { configImageminPlugin } from './imagemin';
import { configSvgIconsPlugin } from './svgSprite';
import { configHmrPlugin } from './hmr';

export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
const {
Expand All @@ -37,9 +36,6 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
// vite-plugin-windicss
vitePlugins.push(windiCSS());

// TODO
!isBuild && vitePlugins.push(configHmrPlugin());

// @vitejs/plugin-legacy
VITE_LEGACY && isBuild && vitePlugins.push(legacy());

Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
"@iconify/iconify": "^2.1.0",
"@logicflow/core": "^0.7.11",
"@logicflow/extension": "^0.7.11",
"@vue/runtime-core": "^3.2.23",
"@vue/shared": "^3.2.23",
"@vueuse/core": "^7.1.2",
"@vueuse/shared": "^7.1.2",
"@zxcvbn-ts/core": "^1.0.0",
Expand Down
4 changes: 4 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/components/Table/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export { default as BasicTable } from './src/BasicTable.vue';
export { default as TableAction } from './src/components/TableAction.vue';
export { default as EditTableHeaderIcon } from './src/components/EditTableHeaderIcon.vue';
export { default as TableImg } from './src/components/TableImg.vue';

export * from './src/types/table';
export * from './src/types/pagination';
export * from './src/types/tableAction';
Expand Down
26 changes: 13 additions & 13 deletions src/components/Table/src/props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import { DEFAULT_FILTER_FN, DEFAULT_SORT_FN, FETCH_SETTING, DEFAULT_SIZE } from
import { propTypes } from '/@/utils/propTypes';

export const basicProps = {
clickToRowSelect: propTypes.bool.def(true),
isTreeTable: propTypes.bool.def(false),
clickToRowSelect: { type: Boolean, default: true },
isTreeTable: Boolean,
tableSetting: propTypes.shape<TableSetting>({}),
inset: propTypes.bool,
inset: Boolean,
sortFn: {
type: Function as PropType<(sortInfo: SorterResult) => any>,
default: DEFAULT_SORT_FN,
Expand All @@ -27,10 +27,10 @@ export const basicProps = {
type: Function as PropType<(data: Partial<Recordable<string[]>>) => any>,
default: DEFAULT_FILTER_FN,
},
showTableSetting: propTypes.bool,
autoCreateKey: propTypes.bool.def(true),
striped: propTypes.bool.def(true),
showSummary: propTypes.bool,
showTableSetting: Boolean,
autoCreateKey: { type: Boolean, default: true },
striped: { type: Boolean, default: true },
showSummary: Boolean,
summaryFunc: {
type: [Function, Array] as PropType<(...arg: any[]) => any[]>,
default: null,
Expand All @@ -40,7 +40,7 @@ export const basicProps = {
default: null,
},
indentSize: propTypes.number.def(24),
canColDrag: propTypes.bool.def(true),
canColDrag: { type: Boolean, default: true },
api: {
type: Function as PropType<(...arg: any[]) => Promise<any>>,
default: null,
Expand All @@ -64,8 +64,8 @@ export const basicProps = {
},
},
// 立即请求接口
immediate: propTypes.bool.def(true),
emptyDataIsShowTable: propTypes.bool.def(true),
immediate: { type: Boolean, default: true },
emptyDataIsShowTable: { type: Boolean, default: true },
// 额外的请求参数
searchInfo: {
type: Object as PropType<Recordable>,
Expand All @@ -87,7 +87,7 @@ export const basicProps = {
type: [Array] as PropType<BasicColumn[]>,
default: () => [],
},
showIndexColumn: propTypes.bool.def(true),
showIndexColumn: { type: Boolean, default: true },
indexColumnProps: {
type: Object as PropType<BasicColumn>,
default: null,
Expand All @@ -96,8 +96,8 @@ export const basicProps = {
type: Object as PropType<BasicColumn>,
default: null,
},
ellipsis: propTypes.bool.def(true),
canResize: propTypes.bool.def(true),
ellipsis: { type: Boolean, default: true },
canResize: { type: Boolean, default: true },
clearSelectOnPageChange: propTypes.bool,
resizeHeightOffset: propTypes.number.def(0),
rowSelection: {
Expand Down
32 changes: 0 additions & 32 deletions src/design/ant/btn.less
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
// button reset
.ant-btn {
// display: inline-flex;
// justify-content: center;
// align-items: center;
// &.ant-btn-success:not(.ant-btn-link),
// &.ant-btn-error:not(.ant-btn-link),
// &.ant-btn-warning:not(.ant-btn-link),
// &.ant-btn-primary:not(.ant-btn-link) {
// box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08) !important;
// }
// &-group {
// .ant-btn:not(:first-child) {
// bottom: 1px;
// }
// }
&-link:hover,
&-link:focus,
&-link:active {
Expand All @@ -29,23 +15,12 @@
color: @white;
background-color: @button-primary-hover-color;
}
//
//&[disabled],
//&[disabled]:hover {
// color: fade(@button-cancel-color, 40%) !important;
// background-color: fade(@button-cancel-bg-color, 40%) !important;
// border-color: fade(@button-cancel-border-color, 40%) !important;
//}
}

&-primary:not(&-background-ghost):not([disabled]) {
color: @white;
}

//&-primary:not(&-background-ghost) {
// border-width: 0;
//}

&-default {
color: @button-cancel-color;
background-color: @button-cancel-bg-color;
Expand Down Expand Up @@ -127,13 +102,6 @@
background-color: @button-success-active-color;
border-color: @button-success-active-color;
}

//&[disabled],
//&[disabled]:hover {
// color: @white;
// background-color: fade(@button-success-color, 40%);
// border-color: fade(@button-success-color, 40%);
//}
}

&-warning.ant-btn-link:not([disabled='disabled']) {
Expand Down
6 changes: 0 additions & 6 deletions src/design/ant/index.less
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
@import './pagination.less';
@import './input.less';
@import './btn.less';
// @import './table.less';

// TODO beta.11 fix
.ant-col {
width: 100%;
}

.ant-image-preview-root {
img {
Expand Down
2 changes: 2 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
optimizeDeps: {
// @iconify/iconify: The dependency is dynamically and virtually loaded by @purge-icons/generated, so it needs to be specified explicitly
include: [
'@vue/runtime-core',
'@vue/shared',
'@iconify/iconify',
'ant-design-vue/es/locale/zh_CN',
'ant-design-vue/es/locale/en_US',
Expand Down

0 comments on commit e024f6a

Please sign in to comment.