refactor: grid
parent
a01be5cce4
commit
fe99051b55
|
@ -0,0 +1,5 @@
|
||||||
|
function canUseDom() {
|
||||||
|
return !!(typeof window !== 'undefined' && window.document && window.document.createElement);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default canUseDom;
|
|
@ -0,0 +1,11 @@
|
||||||
|
import { onMounted, ref } from 'vue';
|
||||||
|
import { detectFlexGapSupported } from '../styleChecker';
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
const flexible = ref(false);
|
||||||
|
onMounted(() => {
|
||||||
|
flexible.value = detectFlexGapSupported();
|
||||||
|
});
|
||||||
|
|
||||||
|
return flexible;
|
||||||
|
};
|
|
@ -1,5 +1,9 @@
|
||||||
const isStyleSupport = (styleName: string | Array<string>): boolean => {
|
import canUseDom from './canUseDom';
|
||||||
if (typeof window !== 'undefined' && window.document && window.document.documentElement) {
|
|
||||||
|
export const canUseDocElement = () => canUseDom() && window.document.documentElement;
|
||||||
|
|
||||||
|
export const isStyleSupport = (styleName: string | Array<string>): boolean => {
|
||||||
|
if (canUseDocElement()) {
|
||||||
const styleNameList = Array.isArray(styleName) ? styleName : [styleName];
|
const styleNameList = Array.isArray(styleName) ? styleName : [styleName];
|
||||||
const { documentElement } = window.document;
|
const { documentElement } = window.document;
|
||||||
|
|
||||||
|
@ -8,6 +12,32 @@ const isStyleSupport = (styleName: string | Array<string>): boolean => {
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const isFlexSupported = isStyleSupport(['flex', 'webkitFlex', 'Flex', 'msFlex']);
|
let flexGapSupported: boolean | undefined;
|
||||||
|
export const detectFlexGapSupported = () => {
|
||||||
|
if (!canUseDocElement()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (flexGapSupported !== undefined) {
|
||||||
|
return flexGapSupported;
|
||||||
|
}
|
||||||
|
|
||||||
|
// create flex container with row-gap set
|
||||||
|
const flex = document.createElement('div');
|
||||||
|
flex.style.display = 'flex';
|
||||||
|
flex.style.flexDirection = 'column';
|
||||||
|
flex.style.rowGap = '1px';
|
||||||
|
|
||||||
|
// create two, elements inside it
|
||||||
|
flex.appendChild(document.createElement('div'));
|
||||||
|
flex.appendChild(document.createElement('div'));
|
||||||
|
|
||||||
|
// append to the DOM (needed to obtain scrollHeight)
|
||||||
|
document.body.appendChild(flex);
|
||||||
|
flexGapSupported = flex.scrollHeight === 1; // flex container should be 1px high from the row-gap
|
||||||
|
document.body.removeChild(flex);
|
||||||
|
|
||||||
|
return flexGapSupported;
|
||||||
|
};
|
||||||
|
|
||||||
export default isStyleSupport;
|
export default isStyleSupport;
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
import { inject, defineComponent, HTMLAttributes, CSSProperties } from 'vue';
|
import { inject, defineComponent, CSSProperties, ExtractPropTypes, computed } from 'vue';
|
||||||
import classNames from '../_util/classNames';
|
import classNames from '../_util/classNames';
|
||||||
import PropTypes from '../_util/vue-types';
|
import PropTypes from '../_util/vue-types';
|
||||||
import { defaultConfigProvider } from '../config-provider';
|
|
||||||
import { rowContextState } from './Row';
|
import { rowContextState } from './Row';
|
||||||
|
import useConfigInject from '../_util/hooks/useConfigInject';
|
||||||
|
import { useInjectRow } from './context';
|
||||||
|
|
||||||
type ColSpanType = number | string;
|
type ColSpanType = number | string;
|
||||||
|
|
||||||
|
@ -16,22 +17,6 @@ export interface ColSize {
|
||||||
pull?: ColSpanType;
|
pull?: ColSpanType;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ColProps extends HTMLAttributes {
|
|
||||||
span?: ColSpanType;
|
|
||||||
order?: ColSpanType;
|
|
||||||
offset?: ColSpanType;
|
|
||||||
push?: ColSpanType;
|
|
||||||
pull?: ColSpanType;
|
|
||||||
xs?: ColSpanType | ColSize;
|
|
||||||
sm?: ColSpanType | ColSize;
|
|
||||||
md?: ColSpanType | ColSize;
|
|
||||||
lg?: ColSpanType | ColSize;
|
|
||||||
xl?: ColSpanType | ColSize;
|
|
||||||
xxl?: ColSpanType | ColSize;
|
|
||||||
prefixCls?: string;
|
|
||||||
flex?: FlexType;
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseFlex(flex: FlexType): string {
|
function parseFlex(flex: FlexType): string {
|
||||||
if (typeof flex === 'number') {
|
if (typeof flex === 'number') {
|
||||||
return `${flex} ${flex} auto`;
|
return `${flex} ${flex} auto`;
|
||||||
|
@ -44,92 +29,17 @@ function parseFlex(flex: FlexType): string {
|
||||||
return flex;
|
return flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
const ACol = defineComponent<ColProps>({
|
|
||||||
name: 'ACol',
|
|
||||||
setup(props, { slots }) {
|
|
||||||
const configProvider = inject('configProvider', defaultConfigProvider);
|
|
||||||
const rowContext = inject<rowContextState>('rowContext', {});
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
const { gutter } = rowContext;
|
|
||||||
const { prefixCls: customizePrefixCls, span, order, offset, push, pull, flex } = props;
|
|
||||||
const prefixCls = configProvider.getPrefixCls('col', customizePrefixCls);
|
|
||||||
let sizeClassObj = {};
|
|
||||||
['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].forEach(size => {
|
|
||||||
let sizeProps: ColSize = {};
|
|
||||||
const propSize = props[size];
|
|
||||||
if (typeof propSize === 'number') {
|
|
||||||
sizeProps.span = propSize;
|
|
||||||
} else if (typeof propSize === 'object') {
|
|
||||||
sizeProps = propSize || {};
|
|
||||||
}
|
|
||||||
|
|
||||||
sizeClassObj = {
|
|
||||||
...sizeClassObj,
|
|
||||||
[`${prefixCls}-${size}-${sizeProps.span}`]: sizeProps.span !== undefined,
|
|
||||||
[`${prefixCls}-${size}-order-${sizeProps.order}`]:
|
|
||||||
sizeProps.order || sizeProps.order === 0,
|
|
||||||
[`${prefixCls}-${size}-offset-${sizeProps.offset}`]:
|
|
||||||
sizeProps.offset || sizeProps.offset === 0,
|
|
||||||
[`${prefixCls}-${size}-push-${sizeProps.push}`]: sizeProps.push || sizeProps.push === 0,
|
|
||||||
[`${prefixCls}-${size}-pull-${sizeProps.pull}`]: sizeProps.pull || sizeProps.pull === 0,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
const classes = classNames(
|
|
||||||
prefixCls,
|
|
||||||
{
|
|
||||||
[`${prefixCls}-${span}`]: span !== undefined,
|
|
||||||
[`${prefixCls}-order-${order}`]: order,
|
|
||||||
[`${prefixCls}-offset-${offset}`]: offset,
|
|
||||||
[`${prefixCls}-push-${push}`]: push,
|
|
||||||
[`${prefixCls}-pull-${pull}`]: pull,
|
|
||||||
},
|
|
||||||
sizeClassObj,
|
|
||||||
);
|
|
||||||
let mergedStyle: CSSProperties = {};
|
|
||||||
if (gutter) {
|
|
||||||
mergedStyle = {
|
|
||||||
...(gutter[0] > 0
|
|
||||||
? {
|
|
||||||
paddingLeft: `${gutter[0] / 2}px`,
|
|
||||||
paddingRight: `${gutter[0] / 2}px`,
|
|
||||||
}
|
|
||||||
: {}),
|
|
||||||
...(gutter[1] > 0
|
|
||||||
? {
|
|
||||||
paddingTop: `${gutter[1] / 2}px`,
|
|
||||||
paddingBottom: `${gutter[1] / 2}px`,
|
|
||||||
}
|
|
||||||
: {}),
|
|
||||||
...mergedStyle,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (flex) {
|
|
||||||
mergedStyle.flex = parseFlex(flex);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div class={classes} style={mergedStyle}>
|
|
||||||
{slots.default?.()}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const stringOrNumber = PropTypes.oneOfType([PropTypes.string, PropTypes.number]);
|
const stringOrNumber = PropTypes.oneOfType([PropTypes.string, PropTypes.number]);
|
||||||
|
export const colSize = PropTypes.shape({
|
||||||
export const ColSize = PropTypes.shape({
|
|
||||||
span: stringOrNumber,
|
span: stringOrNumber,
|
||||||
order: stringOrNumber,
|
order: stringOrNumber,
|
||||||
offset: stringOrNumber,
|
offset: stringOrNumber,
|
||||||
push: stringOrNumber,
|
push: stringOrNumber,
|
||||||
pull: stringOrNumber,
|
pull: stringOrNumber,
|
||||||
}).loose;
|
}).loose;
|
||||||
|
const objectOrNumber = PropTypes.oneOfType([PropTypes.string, PropTypes.number, colSize]);
|
||||||
|
|
||||||
const objectOrNumber = PropTypes.oneOfType([PropTypes.string, PropTypes.number, ColSize]);
|
const colProps = {
|
||||||
|
|
||||||
ACol.props = {
|
|
||||||
span: stringOrNumber,
|
span: stringOrNumber,
|
||||||
order: stringOrNumber,
|
order: stringOrNumber,
|
||||||
offset: stringOrNumber,
|
offset: stringOrNumber,
|
||||||
|
@ -145,4 +55,85 @@ ACol.props = {
|
||||||
flex: stringOrNumber,
|
flex: stringOrNumber,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default ACol;
|
export type ColProps = Partial<ExtractPropTypes<typeof colProps>>;
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
name: 'ACol',
|
||||||
|
props: colProps,
|
||||||
|
setup(props, { slots }) {
|
||||||
|
const { gutter, supportFlexGap, wrap } = useInjectRow();
|
||||||
|
const { prefixCls, direction } = useConfigInject('col', props);
|
||||||
|
const classes = computed(() => {
|
||||||
|
const { span, order, offset, push, pull } = props;
|
||||||
|
const pre = prefixCls.value;
|
||||||
|
let sizeClassObj = {};
|
||||||
|
['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].forEach(size => {
|
||||||
|
let sizeProps: ColSize = {};
|
||||||
|
const propSize = props[size];
|
||||||
|
if (typeof propSize === 'number') {
|
||||||
|
sizeProps.span = propSize;
|
||||||
|
} else if (typeof propSize === 'object') {
|
||||||
|
sizeProps = propSize || {};
|
||||||
|
}
|
||||||
|
|
||||||
|
sizeClassObj = {
|
||||||
|
...sizeClassObj,
|
||||||
|
[`${pre}-${size}-${sizeProps.span}`]: sizeProps.span !== undefined,
|
||||||
|
[`${pre}-${size}-order-${sizeProps.order}`]: sizeProps.order || sizeProps.order === 0,
|
||||||
|
[`${pre}-${size}-offset-${sizeProps.offset}`]: sizeProps.offset || sizeProps.offset === 0,
|
||||||
|
[`${pre}-${size}-push-${sizeProps.push}`]: sizeProps.push || sizeProps.push === 0,
|
||||||
|
[`${pre}-${size}-pull-${sizeProps.pull}`]: sizeProps.pull || sizeProps.pull === 0,
|
||||||
|
[`${pre}-rtl`]: direction.value === 'rtl',
|
||||||
|
};
|
||||||
|
});
|
||||||
|
return classNames(
|
||||||
|
pre,
|
||||||
|
{
|
||||||
|
[`${pre}-${span}`]: span !== undefined,
|
||||||
|
[`${pre}-order-${order}`]: order,
|
||||||
|
[`${pre}-offset-${offset}`]: offset,
|
||||||
|
[`${pre}-push-${push}`]: push,
|
||||||
|
[`${pre}-pull-${pull}`]: pull,
|
||||||
|
},
|
||||||
|
sizeClassObj,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
const mergedStyle = computed(() => {
|
||||||
|
const { flex } = props;
|
||||||
|
const gutterVal = gutter.value;
|
||||||
|
let style: CSSProperties = {};
|
||||||
|
// Horizontal gutter use padding
|
||||||
|
if (gutterVal && gutterVal[0] > 0) {
|
||||||
|
const horizontalGutter = `${gutterVal[0] / 2}px`;
|
||||||
|
style.paddingLeft = horizontalGutter;
|
||||||
|
style.paddingRight = horizontalGutter;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Vertical gutter use padding when gap not support
|
||||||
|
if (gutterVal && gutterVal[1] > 0 && !supportFlexGap.value) {
|
||||||
|
const verticalGutter = `${gutterVal[1] / 2}px`;
|
||||||
|
style.paddingTop = verticalGutter;
|
||||||
|
style.paddingBottom = verticalGutter;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (flex) {
|
||||||
|
style.flex = parseFlex(flex);
|
||||||
|
|
||||||
|
// Hack for Firefox to avoid size issue
|
||||||
|
// https://github.com/ant-design/ant-design/pull/20023#issuecomment-564389553
|
||||||
|
if (flex === 'auto' && wrap.value === false && !style.minWidth) {
|
||||||
|
style.minWidth = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return style;
|
||||||
|
});
|
||||||
|
return () => {
|
||||||
|
return (
|
||||||
|
<div class={classes.value} style={mergedStyle.value}>
|
||||||
|
{slots.default?.()}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
|
@ -1,22 +1,23 @@
|
||||||
import {
|
import {
|
||||||
inject,
|
|
||||||
provide,
|
|
||||||
reactive,
|
|
||||||
defineComponent,
|
defineComponent,
|
||||||
HTMLAttributes,
|
|
||||||
ref,
|
ref,
|
||||||
onMounted,
|
onMounted,
|
||||||
onBeforeUnmount,
|
onBeforeUnmount,
|
||||||
|
ExtractPropTypes,
|
||||||
|
computed,
|
||||||
|
CSSProperties,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
import classNames from '../_util/classNames';
|
import classNames from '../_util/classNames';
|
||||||
import { tuple } from '../_util/type';
|
import { tuple } from '../_util/type';
|
||||||
import PropTypes from '../_util/vue-types';
|
import PropTypes from '../_util/vue-types';
|
||||||
import { defaultConfigProvider } from '../config-provider';
|
|
||||||
import ResponsiveObserve, {
|
import ResponsiveObserve, {
|
||||||
Breakpoint,
|
Breakpoint,
|
||||||
ScreenMap,
|
ScreenMap,
|
||||||
responsiveArray,
|
responsiveArray,
|
||||||
} from '../_util/responsiveObserve';
|
} from '../_util/responsiveObserve';
|
||||||
|
import useConfigInject from '../_util/hooks/useConfigInject';
|
||||||
|
import useFlexGapSupport from '../_util/hooks/useFlexGapSupport';
|
||||||
|
import useProvideRow from './context';
|
||||||
|
|
||||||
const RowAligns = tuple('top', 'middle', 'bottom', 'stretch');
|
const RowAligns = tuple('top', 'middle', 'bottom', 'stretch');
|
||||||
const RowJustify = tuple('start', 'end', 'center', 'space-around', 'space-between');
|
const RowJustify = tuple('start', 'end', 'center', 'space-around', 'space-between');
|
||||||
|
@ -27,24 +28,36 @@ export interface rowContextState {
|
||||||
gutter?: [number, number];
|
gutter?: [number, number];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface RowProps extends HTMLAttributes {
|
const rowProps = {
|
||||||
type?: 'flex';
|
type: PropTypes.oneOf(['flex']),
|
||||||
gutter?: Gutter | [Gutter, Gutter];
|
align: PropTypes.oneOf(RowAligns),
|
||||||
align?: typeof RowAligns[number];
|
justify: PropTypes.oneOf(RowJustify),
|
||||||
justify?: typeof RowJustify[number];
|
prefixCls: PropTypes.string,
|
||||||
prefixCls?: string;
|
gutter: PropTypes.oneOfType([PropTypes.object, PropTypes.number, PropTypes.array]).def(0),
|
||||||
}
|
wrap: PropTypes.looseBool,
|
||||||
|
};
|
||||||
|
|
||||||
const ARow = defineComponent<RowProps>({
|
export type RowProps = Partial<ExtractPropTypes<typeof rowProps>>;
|
||||||
|
|
||||||
|
const ARow = defineComponent({
|
||||||
name: 'ARow',
|
name: 'ARow',
|
||||||
|
props: rowProps,
|
||||||
setup(props, { slots }) {
|
setup(props, { slots }) {
|
||||||
const rowContext = reactive<rowContextState>({
|
const { prefixCls, direction } = useConfigInject('row', props);
|
||||||
gutter: undefined,
|
|
||||||
});
|
|
||||||
provide('rowContext', rowContext);
|
|
||||||
|
|
||||||
let token: number;
|
let token: number;
|
||||||
|
|
||||||
|
const screens = ref<ScreenMap>({
|
||||||
|
xs: true,
|
||||||
|
sm: true,
|
||||||
|
md: true,
|
||||||
|
lg: true,
|
||||||
|
xl: true,
|
||||||
|
xxl: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const supportFlexGap = useFlexGapSupport();
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
token = ResponsiveObserve.subscribe(screen => {
|
token = ResponsiveObserve.subscribe(screen => {
|
||||||
const currentGutter = props.gutter || 0;
|
const currentGutter = props.gutter || 0;
|
||||||
|
@ -62,18 +75,7 @@ const ARow = defineComponent<RowProps>({
|
||||||
ResponsiveObserve.unsubscribe(token);
|
ResponsiveObserve.unsubscribe(token);
|
||||||
});
|
});
|
||||||
|
|
||||||
const screens = ref<ScreenMap>({
|
const gutter = computed(() => {
|
||||||
xs: true,
|
|
||||||
sm: true,
|
|
||||||
md: true,
|
|
||||||
lg: true,
|
|
||||||
xl: true,
|
|
||||||
xxl: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
const { getPrefixCls } = inject('configProvider', defaultConfigProvider);
|
|
||||||
|
|
||||||
const getGutter = (): [number, number] => {
|
|
||||||
const results: [number, number] = [0, 0];
|
const results: [number, number] = [0, 0];
|
||||||
const { gutter = 0 } = props;
|
const { gutter = 0 } = props;
|
||||||
const normalizedGutter = Array.isArray(gutter) ? gutter : [gutter, 0];
|
const normalizedGutter = Array.isArray(gutter) ? gutter : [gutter, 0];
|
||||||
|
@ -91,34 +93,48 @@ const ARow = defineComponent<RowProps>({
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return results;
|
return results;
|
||||||
};
|
});
|
||||||
|
|
||||||
|
useProvideRow({
|
||||||
|
gutter,
|
||||||
|
supportFlexGap,
|
||||||
|
wrap: computed(() => props.wrap),
|
||||||
|
});
|
||||||
|
|
||||||
|
const classes = computed(() =>
|
||||||
|
classNames(prefixCls.value, {
|
||||||
|
[`${prefixCls.value}-no-wrap`]: props.wrap === false,
|
||||||
|
[`${prefixCls.value}-${props.justify}`]: props.justify,
|
||||||
|
[`${prefixCls.value}-${props.align}`]: props.align,
|
||||||
|
[`${prefixCls.value}-rtl`]: direction.value === 'rtl',
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
const rowStyle = computed(() => {
|
||||||
|
const gt = gutter.value;
|
||||||
|
// Add gutter related style
|
||||||
|
const style: CSSProperties = {};
|
||||||
|
const horizontalGutter = gt[0] > 0 ? `${gt[0] / -2}px` : undefined;
|
||||||
|
const verticalGutter = gt[1] > 0 ? `${gt[1] / -2}px` : undefined;
|
||||||
|
|
||||||
|
if (horizontalGutter) {
|
||||||
|
style.marginLeft = horizontalGutter;
|
||||||
|
style.marginRight = horizontalGutter;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (supportFlexGap.value) {
|
||||||
|
// Set gap direct if flex gap support
|
||||||
|
style.rowGap = `${gt[1]}px`;
|
||||||
|
} else if (verticalGutter) {
|
||||||
|
style.marginTop = verticalGutter;
|
||||||
|
style.marginBottom = verticalGutter;
|
||||||
|
}
|
||||||
|
return style;
|
||||||
|
});
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
const { prefixCls: customizePrefixCls, justify, align } = props;
|
|
||||||
const prefixCls = getPrefixCls('row', customizePrefixCls);
|
|
||||||
const gutter = getGutter();
|
|
||||||
const classes = classNames(prefixCls, {
|
|
||||||
[`${prefixCls}-${justify}`]: justify,
|
|
||||||
[`${prefixCls}-${align}`]: align,
|
|
||||||
});
|
|
||||||
const rowStyle = {
|
|
||||||
...(gutter[0] > 0
|
|
||||||
? {
|
|
||||||
marginLeft: `${gutter[0] / -2}px`,
|
|
||||||
marginRight: `${gutter[0] / -2}px`,
|
|
||||||
}
|
|
||||||
: {}),
|
|
||||||
...(gutter[1] > 0
|
|
||||||
? {
|
|
||||||
marginTop: `${gutter[1] / -2}px`,
|
|
||||||
marginBottom: `${gutter[1] / -2}px`,
|
|
||||||
}
|
|
||||||
: {}),
|
|
||||||
};
|
|
||||||
|
|
||||||
rowContext.gutter = gutter;
|
|
||||||
return (
|
return (
|
||||||
<div class={classes} style={rowStyle}>
|
<div class={classes.value} style={rowStyle.value}>
|
||||||
{slots.default?.()}
|
{slots.default?.()}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -126,12 +142,4 @@ const ARow = defineComponent<RowProps>({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
ARow.props = {
|
|
||||||
type: PropTypes.oneOf(['flex']),
|
|
||||||
align: PropTypes.oneOf(RowAligns),
|
|
||||||
justify: PropTypes.oneOf(RowJustify),
|
|
||||||
prefixCls: PropTypes.string,
|
|
||||||
gutter: PropTypes.oneOfType([PropTypes.object, PropTypes.number, PropTypes.array]).def(0),
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ARow;
|
export default ARow;
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
import { Ref, inject, InjectionKey, provide, ComputedRef } from 'vue';
|
||||||
|
|
||||||
|
export interface RowContext {
|
||||||
|
gutter: ComputedRef<[number, number]>;
|
||||||
|
wrap: ComputedRef<boolean>;
|
||||||
|
supportFlexGap: Ref<boolean>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const RowContextKey: InjectionKey<RowContext> = Symbol('rowContextKey');
|
||||||
|
|
||||||
|
const useProvideRow = (state: RowContext) => {
|
||||||
|
provide(RowContextKey, state);
|
||||||
|
};
|
||||||
|
|
||||||
|
const useInjectRow = () => {
|
||||||
|
return inject(RowContextKey);
|
||||||
|
};
|
||||||
|
|
||||||
|
export { useInjectRow, useProvideRow };
|
||||||
|
export default useProvideRow;
|
|
@ -1,4 +1,11 @@
|
||||||
import Row from './Row';
|
import Row from './Row';
|
||||||
import Col from './Col';
|
import Col from './Col';
|
||||||
|
import useBreakpoint from '../_util/hooks/useBreakpoint';
|
||||||
|
|
||||||
|
export { RowProps } from './Row';
|
||||||
|
|
||||||
|
export { ColProps, ColSize } from './Col';
|
||||||
|
|
||||||
export { Row, Col };
|
export { Row, Col };
|
||||||
|
|
||||||
|
export default { useBreakpoint };
|
||||||
|
|
|
@ -11,6 +11,11 @@
|
||||||
&::after {
|
&::after {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// No wrap of flex
|
||||||
|
&-no-wrap {
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// x轴原点
|
// x轴原点
|
||||||
|
|
2
v2-doc
2
v2-doc
|
@ -1 +1 @@
|
||||||
Subproject commit a7013ae87f69dcbcf547f4b023255b8a7a775557
|
Subproject commit 0f6d531d088d5283250c8cec1c7e8be0e0d36a36
|
|
@ -0,0 +1,3 @@
|
||||||
|
## grid
|
||||||
|
|
||||||
|
破坏性更新:row gutter 支持 row-wrap, 无需使用多个 row 划分 col
|
Loading…
Reference in New Issue