Blame view

天文台pc/tianwentai-ui/node_modules/@mui/system/esm/sizing/sizing.js 1.75 KB
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  import style from "../style/index.js";
  import compose from "../compose/index.js";
  import { handleBreakpoints, values as breakpointsValues } from "../breakpoints/index.js";
  export function sizingTransform(value) {
    return value <= 1 && value !== 0 ? `${value * 100}%` : value;
  }
  export const width = style({
    prop: 'width',
    transform: sizingTransform
  });
  export const maxWidth = props => {
    if (props.maxWidth !== undefined && props.maxWidth !== null) {
      const styleFromPropValue = propValue => {
        const breakpoint = props.theme?.breakpoints?.values?.[propValue] || breakpointsValues[propValue];
        if (!breakpoint) {
          return {
            maxWidth: sizingTransform(propValue)
          };
        }
        if (props.theme?.breakpoints?.unit !== 'px') {
          return {
            maxWidth: `${breakpoint}${props.theme.breakpoints.unit}`
          };
        }
        return {
          maxWidth: breakpoint
        };
      };
      return handleBreakpoints(props, props.maxWidth, styleFromPropValue);
    }
    return null;
  };
  maxWidth.filterProps = ['maxWidth'];
  export const minWidth = style({
    prop: 'minWidth',
    transform: sizingTransform
  });
  export const height = style({
    prop: 'height',
    transform: sizingTransform
  });
  export const maxHeight = style({
    prop: 'maxHeight',
    transform: sizingTransform
  });
  export const minHeight = style({
    prop: 'minHeight',
    transform: sizingTransform
  });
  export const sizeWidth = style({
    prop: 'size',
    cssProperty: 'width',
    transform: sizingTransform
  });
  export const sizeHeight = style({
    prop: 'size',
    cssProperty: 'height',
    transform: sizingTransform
  });
  export const boxSizing = style({
    prop: 'boxSizing'
  });
  const sizing = compose(width, maxWidth, minWidth, height, maxHeight, minHeight, boxSizing);
  export default sizing;