ordering-ui-admin-external 1.43.4 → 1.43.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_bundles/{ordering-ui-admin.a892e4637ccf1cb6d200.js → ordering-ui-admin.301569d12f697941483d.js} +2 -2
- package/_modules/components/Orders/OrdersCards/styles.js +3 -3
- package/package.json +2 -2
- package/src/components/Orders/OrdersCards/styles.js +3 -3
- /package/_bundles/{ordering-ui-admin.a892e4637ccf1cb6d200.js.LICENSE.txt → ordering-ui-admin.301569d12f697941483d.js.LICENSE.txt} +0 -0
|
@@ -17,9 +17,9 @@ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _ty
|
|
|
17
17
|
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
18
18
|
var calculateHeight = function calculateHeight(matchingFilterOptions, customMappings) {
|
|
19
19
|
var defaultMapping = {
|
|
20
|
-
3: 'calc(100% -
|
|
21
|
-
2: 'calc(100% -
|
|
22
|
-
1: 'calc(100% -
|
|
20
|
+
3: 'calc(100% - 410px)',
|
|
21
|
+
2: 'calc(100% - 350px)',
|
|
22
|
+
1: 'calc(100% - 280px)',
|
|
23
23
|
default: 'calc(100% - 200px)'
|
|
24
24
|
};
|
|
25
25
|
var mappings = _objectSpread(_objectSpread({}, defaultMapping), customMappings);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ordering-ui-admin-external",
|
|
3
|
-
"version": "1.43.
|
|
3
|
+
"version": "1.43.6",
|
|
4
4
|
"description": "Ordering UI Admin Components",
|
|
5
5
|
"main": "./_modules/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"lodash": "^4.17.20",
|
|
84
84
|
"moment": "^2.29.1",
|
|
85
85
|
"moment-range": "^4.0.2",
|
|
86
|
-
"ordering-components-admin-external": "1.43.
|
|
86
|
+
"ordering-components-admin-external": "1.43.2",
|
|
87
87
|
"polished": "^3.6.7",
|
|
88
88
|
"prop-types": "^15.7.2",
|
|
89
89
|
"react-big-calendar": "^1.4.2",
|
|
@@ -2,9 +2,9 @@ import styled, { css } from 'styled-components'
|
|
|
2
2
|
|
|
3
3
|
const calculateHeight = (matchingFilterOptions, customMappings) => {
|
|
4
4
|
const defaultMapping = {
|
|
5
|
-
3: 'calc(100% -
|
|
6
|
-
2: 'calc(100% -
|
|
7
|
-
1: 'calc(100% -
|
|
5
|
+
3: 'calc(100% - 410px)',
|
|
6
|
+
2: 'calc(100% - 350px)',
|
|
7
|
+
1: 'calc(100% - 280px)',
|
|
8
8
|
default: 'calc(100% - 200px)'
|
|
9
9
|
}
|
|
10
10
|
|