Latest updates from IceHrmPro
This commit is contained in:
6
web/node_modules/antd/es/grid/RowContext.d.ts
generated
vendored
Normal file
6
web/node_modules/antd/es/grid/RowContext.d.ts
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { Context } from 'react';
|
||||
export interface RowContextState {
|
||||
gutter?: [number, number];
|
||||
}
|
||||
declare const RowContext: Context<RowContextState>;
|
||||
export default RowContext;
|
||||
3
web/node_modules/antd/es/grid/RowContext.js
generated
vendored
Normal file
3
web/node_modules/antd/es/grid/RowContext.js
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import { createContext } from 'react';
|
||||
var RowContext = createContext({});
|
||||
export default RowContext;
|
||||
31
web/node_modules/antd/es/grid/col.d.ts
generated
vendored
Normal file
31
web/node_modules/antd/es/grid/col.d.ts
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
import * as React from 'react';
|
||||
import { ConfigConsumerProps } from '../config-provider';
|
||||
declare type ColSpanType = number | string;
|
||||
declare type FlexType = number | 'none' | 'auto' | string;
|
||||
export interface ColSize {
|
||||
span?: ColSpanType;
|
||||
order?: ColSpanType;
|
||||
offset?: ColSpanType;
|
||||
push?: ColSpanType;
|
||||
pull?: ColSpanType;
|
||||
}
|
||||
export interface ColProps extends React.HTMLAttributes<HTMLDivElement> {
|
||||
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;
|
||||
}
|
||||
export default class Col extends React.Component<ColProps, {}> {
|
||||
renderCol: ({ getPrefixCls, direction }: ConfigConsumerProps) => JSX.Element;
|
||||
render(): JSX.Element;
|
||||
}
|
||||
export {};
|
||||
147
web/node_modules/antd/es/grid/col.js
generated
vendored
Normal file
147
web/node_modules/antd/es/grid/col.js
generated
vendored
Normal file
@@ -0,0 +1,147 @@
|
||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
|
||||
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
||||
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
||||
|
||||
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
||||
|
||||
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
||||
|
||||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
||||
|
||||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
||||
|
||||
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
||||
|
||||
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
||||
|
||||
var __rest = this && this.__rest || function (s, e) {
|
||||
var t = {};
|
||||
|
||||
for (var p in s) {
|
||||
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
}
|
||||
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
import * as React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import RowContext from './RowContext';
|
||||
import { ConfigConsumer } from '../config-provider';
|
||||
|
||||
function parseFlex(flex) {
|
||||
if (typeof flex === 'number') {
|
||||
return "".concat(flex, " ").concat(flex, " auto");
|
||||
}
|
||||
|
||||
if (/^\d+(\.\d+)?(px|em|rem|%)$/.test(flex)) {
|
||||
return "0 0 ".concat(flex);
|
||||
}
|
||||
|
||||
return flex;
|
||||
}
|
||||
|
||||
var Col = /*#__PURE__*/function (_React$Component) {
|
||||
_inherits(Col, _React$Component);
|
||||
|
||||
var _super = _createSuper(Col);
|
||||
|
||||
function Col() {
|
||||
var _this;
|
||||
|
||||
_classCallCheck(this, Col);
|
||||
|
||||
_this = _super.apply(this, arguments);
|
||||
|
||||
_this.renderCol = function (_ref) {
|
||||
var _classNames;
|
||||
|
||||
var getPrefixCls = _ref.getPrefixCls,
|
||||
direction = _ref.direction;
|
||||
|
||||
var _assertThisInitialize = _assertThisInitialized(_this),
|
||||
props = _assertThisInitialize.props;
|
||||
|
||||
var customizePrefixCls = props.prefixCls,
|
||||
span = props.span,
|
||||
order = props.order,
|
||||
offset = props.offset,
|
||||
push = props.push,
|
||||
pull = props.pull,
|
||||
className = props.className,
|
||||
children = props.children,
|
||||
flex = props.flex,
|
||||
style = props.style,
|
||||
others = __rest(props, ["prefixCls", "span", "order", "offset", "push", "pull", "className", "children", "flex", "style"]);
|
||||
|
||||
var prefixCls = getPrefixCls('col', customizePrefixCls);
|
||||
var sizeClassObj = {};
|
||||
['xs', 'sm', 'md', 'lg', 'xl', 'xxl'].forEach(function (size) {
|
||||
var _extends2;
|
||||
|
||||
var sizeProps = {};
|
||||
var propSize = props[size];
|
||||
|
||||
if (typeof propSize === 'number') {
|
||||
sizeProps.span = propSize;
|
||||
} else if (_typeof(propSize) === 'object') {
|
||||
sizeProps = propSize || {};
|
||||
}
|
||||
|
||||
delete others[size];
|
||||
sizeClassObj = _extends(_extends({}, sizeClassObj), (_extends2 = {}, _defineProperty(_extends2, "".concat(prefixCls, "-").concat(size, "-").concat(sizeProps.span), sizeProps.span !== undefined), _defineProperty(_extends2, "".concat(prefixCls, "-").concat(size, "-order-").concat(sizeProps.order), sizeProps.order || sizeProps.order === 0), _defineProperty(_extends2, "".concat(prefixCls, "-").concat(size, "-offset-").concat(sizeProps.offset), sizeProps.offset || sizeProps.offset === 0), _defineProperty(_extends2, "".concat(prefixCls, "-").concat(size, "-push-").concat(sizeProps.push), sizeProps.push || sizeProps.push === 0), _defineProperty(_extends2, "".concat(prefixCls, "-").concat(size, "-pull-").concat(sizeProps.pull), sizeProps.pull || sizeProps.pull === 0), _defineProperty(_extends2, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _extends2));
|
||||
});
|
||||
var classes = classNames(prefixCls, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-").concat(span), span !== undefined), _defineProperty(_classNames, "".concat(prefixCls, "-order-").concat(order), order), _defineProperty(_classNames, "".concat(prefixCls, "-offset-").concat(offset), offset), _defineProperty(_classNames, "".concat(prefixCls, "-push-").concat(push), push), _defineProperty(_classNames, "".concat(prefixCls, "-pull-").concat(pull), pull), _classNames), className, sizeClassObj);
|
||||
return /*#__PURE__*/React.createElement(RowContext.Consumer, null, function (_ref2) {
|
||||
var gutter = _ref2.gutter;
|
||||
|
||||
var mergedStyle = _extends({}, style);
|
||||
|
||||
if (gutter) {
|
||||
mergedStyle = _extends(_extends(_extends({}, gutter[0] > 0 ? {
|
||||
paddingLeft: gutter[0] / 2,
|
||||
paddingRight: gutter[0] / 2
|
||||
} : {}), gutter[1] > 0 ? {
|
||||
paddingTop: gutter[1] / 2,
|
||||
paddingBottom: gutter[1] / 2
|
||||
} : {}), mergedStyle);
|
||||
}
|
||||
|
||||
if (flex) {
|
||||
mergedStyle.flex = parseFlex(flex);
|
||||
}
|
||||
|
||||
return /*#__PURE__*/React.createElement("div", _extends({}, others, {
|
||||
style: mergedStyle,
|
||||
className: classes
|
||||
}), children);
|
||||
});
|
||||
};
|
||||
|
||||
return _this;
|
||||
}
|
||||
|
||||
_createClass(Col, [{
|
||||
key: "render",
|
||||
value: function render() {
|
||||
return /*#__PURE__*/React.createElement(ConfigConsumer, null, this.renderCol);
|
||||
}
|
||||
}]);
|
||||
|
||||
return Col;
|
||||
}(React.Component);
|
||||
|
||||
export { Col as default };
|
||||
3
web/node_modules/antd/es/grid/hooks/useBreakpoint.d.ts
generated
vendored
Normal file
3
web/node_modules/antd/es/grid/hooks/useBreakpoint.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import { ScreenMap } from '../../_util/responsiveObserve';
|
||||
declare function useBreakpoint(): ScreenMap;
|
||||
export default useBreakpoint;
|
||||
33
web/node_modules/antd/es/grid/hooks/useBreakpoint.js
generated
vendored
Normal file
33
web/node_modules/antd/es/grid/hooks/useBreakpoint.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
||||
|
||||
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
||||
|
||||
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(n); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
||||
|
||||
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
||||
|
||||
function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
||||
|
||||
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
||||
|
||||
import { useEffect, useState } from 'react';
|
||||
import ResponsiveObserve from '../../_util/responsiveObserve';
|
||||
|
||||
function useBreakpoint() {
|
||||
var _useState = useState({}),
|
||||
_useState2 = _slicedToArray(_useState, 2),
|
||||
screens = _useState2[0],
|
||||
setScreens = _useState2[1];
|
||||
|
||||
useEffect(function () {
|
||||
var token = ResponsiveObserve.subscribe(function (supportScreens) {
|
||||
setScreens(supportScreens);
|
||||
});
|
||||
return function () {
|
||||
return ResponsiveObserve.unsubscribe(token);
|
||||
};
|
||||
}, []);
|
||||
return screens;
|
||||
}
|
||||
|
||||
export default useBreakpoint;
|
||||
10
web/node_modules/antd/es/grid/index.d.ts
generated
vendored
Normal file
10
web/node_modules/antd/es/grid/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import Row from './row';
|
||||
import Col from './col';
|
||||
import useBreakpoint from './hooks/useBreakpoint';
|
||||
export { RowProps } from './row';
|
||||
export { ColProps, ColSize } from './col';
|
||||
export { Row, Col };
|
||||
declare const _default: {
|
||||
useBreakpoint: typeof useBreakpoint;
|
||||
};
|
||||
export default _default;
|
||||
7
web/node_modules/antd/es/grid/index.js
generated
vendored
Normal file
7
web/node_modules/antd/es/grid/index.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import Row from './row';
|
||||
import Col from './col';
|
||||
import useBreakpoint from './hooks/useBreakpoint';
|
||||
export { Row, Col };
|
||||
export default {
|
||||
useBreakpoint: useBreakpoint
|
||||
};
|
||||
28
web/node_modules/antd/es/grid/row.d.ts
generated
vendored
Normal file
28
web/node_modules/antd/es/grid/row.d.ts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import * as React from 'react';
|
||||
import { ConfigConsumerProps } from '../config-provider';
|
||||
import { Breakpoint, ScreenMap } from '../_util/responsiveObserve';
|
||||
declare const RowAligns: ["top", "middle", "bottom", "stretch"];
|
||||
declare const RowJustify: ["start", "end", "center", "space-around", "space-between"];
|
||||
export declare type Gutter = number | Partial<Record<Breakpoint, number>>;
|
||||
export interface RowProps extends React.HTMLAttributes<HTMLDivElement> {
|
||||
gutter?: Gutter | [Gutter, Gutter];
|
||||
align?: typeof RowAligns[number];
|
||||
justify?: typeof RowJustify[number];
|
||||
prefixCls?: string;
|
||||
}
|
||||
export interface RowState {
|
||||
screens: ScreenMap;
|
||||
}
|
||||
export default class Row extends React.Component<RowProps, RowState> {
|
||||
static defaultProps: {
|
||||
gutter: number;
|
||||
};
|
||||
state: RowState;
|
||||
token: string;
|
||||
componentDidMount(): void;
|
||||
componentWillUnmount(): void;
|
||||
getGutter(): [number, number];
|
||||
renderRow: ({ getPrefixCls, direction }: ConfigConsumerProps) => JSX.Element;
|
||||
render(): JSX.Element;
|
||||
}
|
||||
export {};
|
||||
172
web/node_modules/antd/es/grid/row.js
generated
vendored
Normal file
172
web/node_modules/antd/es/grid/row.js
generated
vendored
Normal file
@@ -0,0 +1,172 @@
|
||||
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||
|
||||
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
||||
|
||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
||||
|
||||
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
||||
|
||||
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
||||
|
||||
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
||||
|
||||
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
||||
|
||||
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
||||
|
||||
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
||||
|
||||
var __rest = this && this.__rest || function (s, e) {
|
||||
var t = {};
|
||||
|
||||
for (var p in s) {
|
||||
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
||||
}
|
||||
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
import * as React from 'react';
|
||||
import classNames from 'classnames';
|
||||
import { ConfigConsumer } from '../config-provider';
|
||||
import RowContext from './RowContext';
|
||||
import { tuple } from '../_util/type';
|
||||
import ResponsiveObserve, { responsiveArray } from '../_util/responsiveObserve';
|
||||
var RowAligns = tuple('top', 'middle', 'bottom', 'stretch');
|
||||
var RowJustify = tuple('start', 'end', 'center', 'space-around', 'space-between');
|
||||
|
||||
var Row = /*#__PURE__*/function (_React$Component) {
|
||||
_inherits(Row, _React$Component);
|
||||
|
||||
var _super = _createSuper(Row);
|
||||
|
||||
function Row() {
|
||||
var _this;
|
||||
|
||||
_classCallCheck(this, Row);
|
||||
|
||||
_this = _super.apply(this, arguments);
|
||||
_this.state = {
|
||||
screens: {
|
||||
xs: true,
|
||||
sm: true,
|
||||
md: true,
|
||||
lg: true,
|
||||
xl: true,
|
||||
xxl: true
|
||||
}
|
||||
};
|
||||
|
||||
_this.renderRow = function (_ref) {
|
||||
var _classNames;
|
||||
|
||||
var getPrefixCls = _ref.getPrefixCls,
|
||||
direction = _ref.direction;
|
||||
|
||||
var _a = _this.props,
|
||||
customizePrefixCls = _a.prefixCls,
|
||||
justify = _a.justify,
|
||||
align = _a.align,
|
||||
className = _a.className,
|
||||
style = _a.style,
|
||||
children = _a.children,
|
||||
others = __rest(_a, ["prefixCls", "justify", "align", "className", "style", "children"]);
|
||||
|
||||
var prefixCls = getPrefixCls('row', customizePrefixCls);
|
||||
|
||||
var gutter = _this.getGutter();
|
||||
|
||||
var classes = classNames(prefixCls, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-").concat(justify), justify), _defineProperty(_classNames, "".concat(prefixCls, "-").concat(align), align), _defineProperty(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className);
|
||||
|
||||
var rowStyle = _extends(_extends(_extends({}, gutter[0] > 0 ? {
|
||||
marginLeft: gutter[0] / -2,
|
||||
marginRight: gutter[0] / -2
|
||||
} : {}), gutter[1] > 0 ? {
|
||||
marginTop: gutter[1] / -2,
|
||||
marginBottom: gutter[1] / 2
|
||||
} : {}), style);
|
||||
|
||||
var otherProps = _extends({}, others);
|
||||
|
||||
delete otherProps.gutter;
|
||||
return /*#__PURE__*/React.createElement(RowContext.Provider, {
|
||||
value: {
|
||||
gutter: gutter
|
||||
}
|
||||
}, /*#__PURE__*/React.createElement("div", _extends({}, otherProps, {
|
||||
className: classes,
|
||||
style: rowStyle
|
||||
}), children));
|
||||
};
|
||||
|
||||
return _this;
|
||||
}
|
||||
|
||||
_createClass(Row, [{
|
||||
key: "componentDidMount",
|
||||
value: function componentDidMount() {
|
||||
var _this2 = this;
|
||||
|
||||
this.token = ResponsiveObserve.subscribe(function (screens) {
|
||||
var gutter = _this2.props.gutter;
|
||||
|
||||
if (!Array.isArray(gutter) && _typeof(gutter) === 'object' || Array.isArray(gutter) && (_typeof(gutter[0]) === 'object' || _typeof(gutter[1]) === 'object')) {
|
||||
_this2.setState({
|
||||
screens: screens
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}, {
|
||||
key: "componentWillUnmount",
|
||||
value: function componentWillUnmount() {
|
||||
ResponsiveObserve.unsubscribe(this.token);
|
||||
}
|
||||
}, {
|
||||
key: "getGutter",
|
||||
value: function getGutter() {
|
||||
var results = [0, 0];
|
||||
var gutter = this.props.gutter;
|
||||
var screens = this.state.screens;
|
||||
var normalizedGutter = Array.isArray(gutter) ? gutter : [gutter, 0];
|
||||
normalizedGutter.forEach(function (g, index) {
|
||||
if (_typeof(g) === 'object') {
|
||||
for (var i = 0; i < responsiveArray.length; i++) {
|
||||
var breakpoint = responsiveArray[i];
|
||||
|
||||
if (screens[breakpoint] && g[breakpoint] !== undefined) {
|
||||
results[index] = g[breakpoint];
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
results[index] = g || 0;
|
||||
}
|
||||
});
|
||||
return results;
|
||||
}
|
||||
}, {
|
||||
key: "render",
|
||||
value: function render() {
|
||||
return /*#__PURE__*/React.createElement(ConfigConsumer, null, this.renderRow);
|
||||
}
|
||||
}]);
|
||||
|
||||
return Row;
|
||||
}(React.Component);
|
||||
|
||||
export { Row as default };
|
||||
Row.defaultProps = {
|
||||
gutter: 0
|
||||
};
|
||||
2
web/node_modules/antd/es/grid/style/css.js
generated
vendored
Normal file
2
web/node_modules/antd/es/grid/style/css.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import '../../style/index.css';
|
||||
import './index.css';
|
||||
5889
web/node_modules/antd/es/grid/style/index.css
generated
vendored
Normal file
5889
web/node_modules/antd/es/grid/style/index.css
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2
web/node_modules/antd/es/grid/style/index.d.ts
generated
vendored
Normal file
2
web/node_modules/antd/es/grid/style/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import '../../style/index.less';
|
||||
import './index.less';
|
||||
2
web/node_modules/antd/es/grid/style/index.js
generated
vendored
Normal file
2
web/node_modules/antd/es/grid/style/index.js
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import '../../style/index.less';
|
||||
import './index.less';
|
||||
113
web/node_modules/antd/es/grid/style/index.less
generated
vendored
Normal file
113
web/node_modules/antd/es/grid/style/index.less
generated
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
@import '../../style/themes/index';
|
||||
@import '../../style/mixins/index';
|
||||
@import './mixin';
|
||||
|
||||
// Grid system
|
||||
.@{ant-prefix}-row {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
|
||||
&::before,
|
||||
&::after {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
// x轴原点
|
||||
.@{ant-prefix}-row-start {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
// x轴居中
|
||||
.@{ant-prefix}-row-center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
// x轴反方向
|
||||
.@{ant-prefix}-row-end {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
// x轴平分
|
||||
.@{ant-prefix}-row-space-between {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
// x轴有间隔地平分
|
||||
.@{ant-prefix}-row-space-around {
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
// 顶部对齐
|
||||
.@{ant-prefix}-row-top {
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
// 居中对齐
|
||||
.@{ant-prefix}-row-middle {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
// 底部对齐
|
||||
.@{ant-prefix}-row-bottom {
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col {
|
||||
position: relative;
|
||||
max-width: 100%;
|
||||
// Prevent columns from collapsing when empty
|
||||
min-height: 1px;
|
||||
}
|
||||
|
||||
.make-grid();
|
||||
|
||||
// Extra small grid
|
||||
//
|
||||
// Columns, offsets, pushes, and pulls for extra small devices like
|
||||
// smartphones.
|
||||
|
||||
.make-grid(-xs);
|
||||
|
||||
// Small grid
|
||||
//
|
||||
// Columns, offsets, pushes, and pulls for the small device range, from phones
|
||||
// to tablets.
|
||||
|
||||
@media (min-width: @screen-sm-min) {
|
||||
.make-grid(-sm);
|
||||
}
|
||||
|
||||
// Medium grid
|
||||
//
|
||||
// Columns, offsets, pushes, and pulls for the desktop device range.
|
||||
|
||||
@media (min-width: @screen-md-min) {
|
||||
.make-grid(-md);
|
||||
}
|
||||
|
||||
// Large grid
|
||||
//
|
||||
// Columns, offsets, pushes, and pulls for the large desktop device range.
|
||||
|
||||
@media (min-width: @screen-lg-min) {
|
||||
.make-grid(-lg);
|
||||
}
|
||||
|
||||
// Extra Large grid
|
||||
//
|
||||
// Columns, offsets, pushes, and pulls for the full hd device range.
|
||||
|
||||
@media (min-width: @screen-xl-min) {
|
||||
.make-grid(-xl);
|
||||
}
|
||||
|
||||
// Extra Extra Large grid
|
||||
//
|
||||
// Columns, offsets, pushes, and pulls for the full hd device range.
|
||||
|
||||
@media (min-width: @screen-xxl-min) {
|
||||
.make-grid(-xxl);
|
||||
}
|
||||
|
||||
@import './rtl';
|
||||
53
web/node_modules/antd/es/grid/style/mixin.less
generated
vendored
Normal file
53
web/node_modules/antd/es/grid/style/mixin.less
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
@import '../../style/mixins/index';
|
||||
|
||||
// mixins for grid system
|
||||
// ------------------------
|
||||
|
||||
.loop-grid-columns(@index, @class) when (@index > 0) {
|
||||
.@{ant-prefix}-col@{class}-@{index} {
|
||||
display: block;
|
||||
flex: 0 0 percentage((@index / @grid-columns));
|
||||
max-width: percentage((@index / @grid-columns));
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-push-@{index} {
|
||||
left: percentage((@index / @grid-columns));
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-pull-@{index} {
|
||||
right: percentage((@index / @grid-columns));
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-offset-@{index} {
|
||||
margin-left: percentage((@index / @grid-columns));
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-order-@{index} {
|
||||
order: @index;
|
||||
}
|
||||
.loop-grid-columns((@index - 1), @class);
|
||||
}
|
||||
|
||||
.loop-grid-columns(@index, @class) when (@index = 0) {
|
||||
.@{ant-prefix}-col@{class}-@{index} {
|
||||
display: none;
|
||||
}
|
||||
.@{ant-prefix}-col-push-@{index} {
|
||||
left: auto;
|
||||
}
|
||||
.@{ant-prefix}-col-pull-@{index} {
|
||||
right: auto;
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-push-@{index} {
|
||||
left: auto;
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-pull-@{index} {
|
||||
right: auto;
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-offset-@{index} {
|
||||
margin-left: 0;
|
||||
}
|
||||
.@{ant-prefix}-col@{class}-order-@{index} {
|
||||
order: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.make-grid(@class: ~'') {
|
||||
.loop-grid-columns(@grid-columns, @class);
|
||||
}
|
||||
74
web/node_modules/antd/es/grid/style/rtl.less
generated
vendored
Normal file
74
web/node_modules/antd/es/grid/style/rtl.less
generated
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
@import '../../style/themes/index';
|
||||
@import '../../style/mixins/index';
|
||||
|
||||
.@{ant-prefix}-row {
|
||||
&-rtl {
|
||||
direction: rtl;
|
||||
}
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col {
|
||||
&&-rtl {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
|
||||
// mixin
|
||||
.loop-grid-columns(@index, @class) when (@index > 0) {
|
||||
.@{ant-prefix}-col@{class}-push-@{index} {
|
||||
// reset property in RTL direction
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
right: percentage((@index / @grid-columns));
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col@{class}-pull-@{index} {
|
||||
// reset property in RTL direction
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
right: auto;
|
||||
left: percentage((@index / @grid-columns));
|
||||
}
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col@{class}-offset-@{index} {
|
||||
// reset property in RTL direction
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
margin-right: percentage((@index / @grid-columns));
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.loop-grid-columns(@index, @class) when (@index = 0) {
|
||||
.@{ant-prefix}-col-push-@{index} {
|
||||
// reset property in RTL direction
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
right: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col-pull-@{index} {
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col@{class}-push-@{index} {
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
right: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col@{class}-pull-@{index} {
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.@{ant-prefix}-col@{class}-offset-@{index} {
|
||||
&.@{ant-prefix}-col-rtl {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user