@ringcentral/juno 2.36.2 → 2.36.4
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/components/Downshift/Downshift.js +1 -1
- package/components/Downshift/utils/index.d.ts +0 -1
- package/components/Downshift/utils/index.js +0 -1
- package/components/Popper/Popper.js +3 -2
- package/components/Popper/modifiers/index.d.ts +1 -0
- package/components/Popper/modifiers/index.js +4 -0
- package/components/Popper/modifiers/package.json +5 -0
- package/es6/components/Downshift/Downshift.js +2 -2
- package/es6/components/Downshift/utils/index.js +0 -1
- package/es6/components/Popper/Popper.js +3 -2
- package/es6/components/Popper/modifiers/index.js +1 -0
- package/es6/foundation/styles/typography.js +12 -1
- package/foundation/styles/typography.js +12 -1
- package/package.json +1 -1
- /package/components/{Downshift/utils → Popper/modifiers}/fixOffsetsModifer.d.ts +0 -0
- /package/components/{Downshift/utils → Popper/modifiers}/fixOffsetsModifer.js +0 -0
- /package/es6/components/{Downshift/utils → Popper/modifiers}/fixOffsetsModifer.js +0 -0
|
@@ -307,7 +307,7 @@ var _RcDownshift = react_1.memo(react_1.forwardRef(function (inProps, ref) {
|
|
|
307
307
|
maxLength: maxLength, containerRef: inputContainerRef }, getInputAriaProps(TextFieldProps === null || TextFieldProps === void 0 ? void 0 : TextFieldProps.inputProps)),
|
|
308
308
|
}, rest), { value: inputValue, clearBtn: false })),
|
|
309
309
|
!helperText && screenReaderText && (react_1.default.createElement(VisuallyHidden_1.RcVisuallyHidden, { id: describedbyId }, screenReaderText)),
|
|
310
|
-
react_1.default.createElement(styles_1.StyledPopper, tslib_1.__assign({ ref: popperElementRef, open: open, position: position, component: PopperComponent, placement: "bottom-start", anchorEl: anchorElRef.current, "data-test-automation-id": "suggestions-list", popperRef: popperRef,
|
|
310
|
+
react_1.default.createElement(styles_1.StyledPopper, tslib_1.__assign({ ref: popperElementRef, open: open, position: position, component: PopperComponent, placement: "bottom-start", anchorEl: anchorElRef.current, "data-test-automation-id": "suggestions-list", popperRef: popperRef,
|
|
311
311
|
// * view type in popper.js
|
|
312
312
|
popperOptions: {
|
|
313
313
|
onUpdate: function (e) {
|
|
@@ -6,4 +6,3 @@ tslib_1.__exportStar(require("./useDownshift"), exports);
|
|
|
6
6
|
tslib_1.__exportStar(require("./useDownshiftError"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./useDownshiftGroup"), exports);
|
|
8
8
|
tslib_1.__exportStar(require("./useDownshiftTag"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./fixOffsetsModifer"), exports);
|
|
@@ -5,11 +5,12 @@ var react_1 = tslib_1.__importStar(require("react"));
|
|
|
5
5
|
var Popper_1 = tslib_1.__importDefault(require("@material-ui/core/Popper"));
|
|
6
6
|
var foundation_1 = require("../../foundation");
|
|
7
7
|
var styles_1 = require("./styles");
|
|
8
|
+
var modifiers_1 = require("./modifiers");
|
|
8
9
|
var _RcPopper = react_1.forwardRef(function (inProps, ref) {
|
|
9
10
|
var props = foundation_1.useThemeProps({ props: inProps, name: 'RcPopper' });
|
|
10
|
-
var children = props.children, rest = tslib_1.__rest(props, ["children"]);
|
|
11
|
+
var children = props.children, modifiers = props.modifiers, rest = tslib_1.__rest(props, ["children", "modifiers"]);
|
|
11
12
|
var externalWindow = foundation_1.useRcPortalWindowContext().externalWindow;
|
|
12
|
-
return (react_1.default.createElement(Popper_1.default, tslib_1.__assign({ container: externalWindow === null || externalWindow === void 0 ? void 0 : externalWindow.document.body }, rest, { ref: ref }), children));
|
|
13
|
+
return (react_1.default.createElement(Popper_1.default, tslib_1.__assign({ container: externalWindow === null || externalWindow === void 0 ? void 0 : externalWindow.document.body }, rest, { modifiers: tslib_1.__assign({ fixOffsets: modifiers_1.fixOffsetsModifer }, modifiers), ref: ref }), children));
|
|
13
14
|
});
|
|
14
15
|
var RcPopper = foundation_1.styled(_RcPopper)(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["\n ", ";\n"], ["\n ", ";\n"])), styles_1.PopperStyle);
|
|
15
16
|
exports.RcPopper = RcPopper;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './fixOffsetsModifer';
|
|
@@ -9,7 +9,7 @@ import { ClearIconButton } from '../Forms/TextField/styles/ClearIconButton';
|
|
|
9
9
|
import { RcVisuallyHidden } from '../VisuallyHidden';
|
|
10
10
|
import { ArrowDownButton, DownshiftStyle, EndAdornment, RcDownshiftInput, StyledPopper, StyledTextField, } from './styles';
|
|
11
11
|
import { RcSuggestionList } from './SuggestionList';
|
|
12
|
-
import { DEFAULT_GET_OPTION_LABEL, DEFAULT_KEY_TO_CHIPS, DEFAULT_LIMIT_CHIPS,
|
|
12
|
+
import { DEFAULT_GET_OPTION_LABEL, DEFAULT_KEY_TO_CHIPS, DEFAULT_LIMIT_CHIPS, RcDownshiftDefaultFilterOptions, RcDownshiftInputClasses, useDownshift, useDownshiftError, } from './utils';
|
|
13
13
|
/**
|
|
14
14
|
* default transition style for grow when not virtualize
|
|
15
15
|
*/
|
|
@@ -303,7 +303,7 @@ var _RcDownshift = memo(forwardRef(function (inProps, ref) {
|
|
|
303
303
|
maxLength: maxLength, containerRef: inputContainerRef }, getInputAriaProps(TextFieldProps === null || TextFieldProps === void 0 ? void 0 : TextFieldProps.inputProps)),
|
|
304
304
|
}, rest), { value: inputValue, clearBtn: false })),
|
|
305
305
|
!helperText && screenReaderText && (React.createElement(RcVisuallyHidden, { id: describedbyId }, screenReaderText)),
|
|
306
|
-
React.createElement(StyledPopper, __assign({ ref: popperElementRef, open: open, position: position, component: PopperComponent, placement: "bottom-start", anchorEl: anchorElRef.current, "data-test-automation-id": "suggestions-list", popperRef: popperRef,
|
|
306
|
+
React.createElement(StyledPopper, __assign({ ref: popperElementRef, open: open, position: position, component: PopperComponent, placement: "bottom-start", anchorEl: anchorElRef.current, "data-test-automation-id": "suggestions-list", popperRef: popperRef,
|
|
307
307
|
// * view type in popper.js
|
|
308
308
|
popperOptions: {
|
|
309
309
|
onUpdate: function (e) {
|
|
@@ -3,11 +3,12 @@ import React, { forwardRef } from 'react';
|
|
|
3
3
|
import MuiPopper from '@material-ui/core/Popper';
|
|
4
4
|
import { styled, useRcPortalWindowContext, useThemeProps, } from '../../foundation';
|
|
5
5
|
import { PopperStyle } from './styles';
|
|
6
|
+
import { fixOffsetsModifer } from './modifiers';
|
|
6
7
|
var _RcPopper = forwardRef(function (inProps, ref) {
|
|
7
8
|
var props = useThemeProps({ props: inProps, name: 'RcPopper' });
|
|
8
|
-
var children = props.children, rest = __rest(props, ["children"]);
|
|
9
|
+
var children = props.children, modifiers = props.modifiers, rest = __rest(props, ["children", "modifiers"]);
|
|
9
10
|
var externalWindow = useRcPortalWindowContext().externalWindow;
|
|
10
|
-
return (React.createElement(MuiPopper, __assign({ container: externalWindow === null || externalWindow === void 0 ? void 0 : externalWindow.document.body }, rest, { ref: ref }), children));
|
|
11
|
+
return (React.createElement(MuiPopper, __assign({ container: externalWindow === null || externalWindow === void 0 ? void 0 : externalWindow.document.body }, rest, { modifiers: __assign({ fixOffsets: fixOffsetsModifer }, modifiers), ref: ref }), children));
|
|
11
12
|
});
|
|
12
13
|
var RcPopper = styled(_RcPopper)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n ", ";\n"], ["\n ", ";\n"])), PopperStyle);
|
|
13
14
|
RcPopper.defaultProps = {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './fixOffsetsModifer';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { __makeTemplateObject } from "tslib";
|
|
2
2
|
import { css } from '../styled-components';
|
|
3
|
+
import { logInDev } from '../utils';
|
|
3
4
|
/**
|
|
4
5
|
* get typography key value with token
|
|
5
6
|
*
|
|
@@ -16,7 +17,17 @@ function typographyProp(name, key) {
|
|
|
16
17
|
var theme = _a.theme;
|
|
17
18
|
var themeOfTypography = theme.typography[name];
|
|
18
19
|
if (typeof themeOfTypography !== 'object') {
|
|
19
|
-
|
|
20
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
21
|
+
throw new Error("Unexpected typography name: " + name);
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
logInDev({
|
|
25
|
+
message: "Unexpected typography name: " + name,
|
|
26
|
+
component: 'typographyProp',
|
|
27
|
+
level: 'warn',
|
|
28
|
+
});
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
20
31
|
}
|
|
21
32
|
return themeOfTypography[key];
|
|
22
33
|
};
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
var tslib_1 = require("tslib");
|
|
4
4
|
var styled_components_1 = require("../styled-components");
|
|
5
|
+
var utils_1 = require("../utils");
|
|
5
6
|
/**
|
|
6
7
|
* get typography key value with token
|
|
7
8
|
*
|
|
@@ -18,7 +19,17 @@ function typographyProp(name, key) {
|
|
|
18
19
|
var theme = _a.theme;
|
|
19
20
|
var themeOfTypography = theme.typography[name];
|
|
20
21
|
if (typeof themeOfTypography !== 'object') {
|
|
21
|
-
|
|
22
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
23
|
+
throw new Error("Unexpected typography name: " + name);
|
|
24
|
+
}
|
|
25
|
+
else {
|
|
26
|
+
utils_1.logInDev({
|
|
27
|
+
message: "Unexpected typography name: " + name,
|
|
28
|
+
component: 'typographyProp',
|
|
29
|
+
level: 'warn',
|
|
30
|
+
});
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
22
33
|
}
|
|
23
34
|
return themeOfTypography[key];
|
|
24
35
|
};
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|