Skip to content

Commit 2eed8e6

Browse files
committed
fix: type error
1 parent 61c0d0c commit 2eed8e6

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

components/_util/cssinjs/hooks/useStyleRegister/index.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ export type CSSProperties = Omit<CSS.PropertiesFallback<number | string>, 'anima
4242
export type CSSPropertiesWithMultiValues = {
4343
[K in keyof CSSProperties]:
4444
| CSSProperties[K]
45-
| Extract<CSSProperties[K], string>[]
45+
| readonly Extract<CSSProperties[K], string>[]
4646
| {
47-
[SKIP_CHECK]: boolean;
47+
[SKIP_CHECK]?: boolean;
4848
[MULTI_VALUE]?: boolean;
49-
value: CSSProperties[K] | Extract<CSSProperties[K], string>[];
49+
value: CSSProperties[K] | CSSProperties[K][];
5050
};
5151
};
5252

5353
export type CSSPseudos = { [K in CSS.Pseudos]?: CSSObject };
5454

55-
type ArrayCSSInterpolation = CSSInterpolation[];
55+
type ArrayCSSInterpolation = readonly CSSInterpolation[];
5656

5757
export type InterpolationPrimitive = null | undefined | boolean | number | string | CSSObject;
5858

components/_util/type.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface PropOptions<T = any, D = T> {
3333
declare type VNodeChildAtom = VNode | string | number | boolean | null | undefined | void;
3434

3535
// eslint-disable-next-line no-undef
36-
export type VueNode = VNodeChildAtom | VNodeChildAtom[] | JSX.Element;
36+
export type VueNode = VNodeChildAtom | VNodeChildAtom[] | VNode;
3737

3838
export const withInstall = <T>(comp: T) => {
3939
const c = comp as any;

components/menu/src/hooks/useMenuContext.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface MenuContextProps {
3232
inlineCollapsed: Ref<boolean>;
3333
theme?: ComputedRef<MenuTheme>;
3434

35-
siderCollapsed?: ComputedRef<boolean>;
35+
siderCollapsed?: Ref<boolean>;
3636

3737
// // Mode
3838
mode: Ref<MenuMode>;

components/vc-picker/panels/TimePanel/TimeUnitColumn.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { scrollTo, waitElementReady } from '../../utils/uiUtil';
22
import { useInjectPanel } from '../../PanelContext';
33
import classNames from '../../../_util/classNames';
4-
import { ref, onBeforeUnmount, watch, defineComponent, nextTick } from 'vue';
4+
import { ref, onBeforeUnmount, watch, defineComponent, nextTick, shallowRef } from 'vue';
55

66
export type Unit = {
77
label: any;
@@ -24,7 +24,7 @@ export default defineComponent<TimeUnitColumnProps>({
2424
setup(props) {
2525
const { open } = useInjectPanel();
2626

27-
const ulRef = ref<HTMLUListElement>(null);
27+
const ulRef = shallowRef<HTMLElement>(null);
2828
const liRefs = ref<Map<number, HTMLElement | null>>(new Map());
2929
const scrollRef = ref<Function>();
3030

@@ -33,7 +33,7 @@ export default defineComponent<TimeUnitColumnProps>({
3333
() => {
3434
const li = liRefs.value.get(props.value!);
3535
if (li && open.value !== false) {
36-
scrollTo(ulRef.value!, li.offsetTop, 120);
36+
scrollTo(ulRef.value, li.offsetTop, 120);
3737
}
3838
},
3939
);

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@
129129
"@vitejs/plugin-vue-jsx": "^2.0.0",
130130
"@vue/babel-plugin-jsx": "^1.0.0",
131131
"@vue/cli-plugin-eslint": "^5.0.0",
132-
"@vue/compiler-sfc": "^3.2.0",
133132
"@vue/eslint-config-prettier": "^8.0.0",
134133
"@vue/eslint-config-typescript": "^11.0.0",
135134
"@vue/test-utils": "^2.0.2",

0 commit comments

Comments
 (0)