@zohodesk/components 1.0.0-temp-190.2 → 1.0.0-temp-192
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/.cli/PropLessFiles.html +1 -1
- package/.cli/propValidation_report.html +1 -1
- package/README.md +16 -5
- package/es/Avatar/Avatar.module.css +0 -12
- package/es/AvatarTeam/AvatarTeam.module.css +0 -4
- package/es/Button/css/Button.module.css +0 -6
- package/es/Buttongroup/Buttongroup.module.css +0 -2
- package/es/CheckBox/CheckBox.js +10 -0
- package/es/CheckBox/CheckBox.module.css +0 -2
- package/es/CheckBox/props/propTypes.js +1 -0
- package/es/DateTime/DateTime.module.css +0 -1
- package/es/DropBox/DropBoxElement/css/DropBoxElement.module.css +0 -7
- package/es/DropBox/css/DropBox.module.css +0 -1
- package/es/DropDown/DropDownHeading.module.css +0 -6
- package/es/DropDown/DropDownItem.module.css +0 -3
- package/es/Label/Label.module.css +0 -1
- package/es/ListItem/ListItem.js +2 -2
- package/es/ListItem/ListItem.module.css +85 -39
- package/es/ListItem/ListItemWithAvatar.js +3 -3
- package/es/ListItem/ListItemWithIcon.js +2 -2
- package/es/MultiSelect/AdvancedGroupMultiSelect.js +9 -3
- package/es/MultiSelect/MultiSelect.js +9 -3
- package/es/MultiSelect/MultiSelectWithAvatar.js +3 -1
- package/es/MultiSelect/Suggestions.js +8 -4
- package/es/MultiSelect/props/defaultProps.js +9 -3
- package/es/MultiSelect/props/propTypes.js +7 -3
- package/es/PopOver/PopOver.module.css +3 -3
- package/es/Radio/Radio.js +26 -7
- package/es/Radio/Radio.module.css +3 -1
- package/es/Radio/__tests__/__snapshots__/Radio.spec.js.snap +3 -3
- package/es/Radio/props/defaultProps.js +1 -0
- package/es/Radio/props/propTypes.js +7 -0
- package/es/Ribbon/Ribbon.module.css +0 -4
- package/es/Select/GroupSelect.js +9 -3
- package/es/Select/SelectWithAvatar.js +9 -3
- package/es/Select/SelectWithIcon.js +9 -3
- package/es/Select/props/defaultProps.js +6 -3
- package/es/Select/props/propTypes.js +6 -3
- package/es/Switch/Switch.module.css +0 -2
- package/es/Tag/Tag.module.css +0 -6
- package/es/TextBox/TextBox.module.css +1 -21
- package/es/TextBoxIcon/TextBoxIcon.module.css +0 -5
- package/es/Textarea/Textarea.module.css +0 -6
- package/es/common/customscroll.module.css +27 -3
- package/es/v1/Animation/Animation.js +1 -1
- package/es/v1/Card/Card.js +1 -1
- package/es/v1/CheckBox/CheckBox.js +7 -1
- package/es/v1/CheckBox/props/propTypes.js +1 -0
- package/es/v1/DropBox/utils/isMobilePopover.js +1 -1
- package/es/v1/ListItem/ListContainer.js +1 -1
- package/es/v1/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/es/v1/MultiSelect/AdvancedMultiSelect.js +1 -1
- package/es/v1/MultiSelect/MultiSelectWithAvatar.js +1 -1
- package/es/v1/MultiSelect/props/defaultProps.js +5 -3
- package/es/v1/Radio/Radio.js +22 -7
- package/es/v1/Radio/props/defaultProps.js +1 -0
- package/es/v1/Radio/props/propTypes.js +7 -0
- package/es/v1/ResponsiveDropBox/ResponsiveDropBox.js +1 -1
- package/es/v1/Select/GroupSelect.js +1 -1
- package/es/v1/Select/Select.js +1 -1
- package/es/v1/Select/SelectWithAvatar.js +5 -7
- package/es/v1/Select/SelectWithIcon.js +1 -1
- package/es/v1/Select/props/defaultProps.js +1 -1
- package/es/v1/Select/props/propTypes.js +1 -3
- package/es/v1/Tab/Tabs.js +2 -2
- package/es/v1/Tooltip/Tooltip.js +1 -1
- package/lib/Avatar/Avatar.module.css +0 -12
- package/lib/AvatarTeam/AvatarTeam.module.css +0 -4
- package/lib/Button/css/Button.module.css +0 -6
- package/lib/Buttongroup/Buttongroup.module.css +0 -2
- package/lib/CheckBox/CheckBox.js +34 -24
- package/lib/CheckBox/CheckBox.module.css +0 -2
- package/lib/CheckBox/props/propTypes.js +1 -0
- package/lib/DateTime/DateTime.module.css +0 -1
- package/lib/DropBox/DropBoxElement/css/DropBoxElement.module.css +0 -7
- package/lib/DropBox/css/DropBox.module.css +0 -1
- package/lib/DropDown/DropDownHeading.module.css +0 -6
- package/lib/DropDown/DropDownItem.module.css +0 -3
- package/lib/Label/Label.module.css +0 -1
- package/lib/ListItem/ListItem.js +2 -2
- package/lib/ListItem/ListItem.module.css +85 -39
- package/lib/ListItem/ListItemWithAvatar.js +3 -3
- package/lib/ListItem/ListItemWithIcon.js +2 -2
- package/lib/MultiSelect/AdvancedGroupMultiSelect.js +7 -3
- package/lib/MultiSelect/MultiSelect.js +8 -3
- package/lib/MultiSelect/MultiSelectWithAvatar.js +3 -1
- package/lib/MultiSelect/Suggestions.js +8 -4
- package/lib/MultiSelect/props/defaultProps.js +9 -3
- package/lib/MultiSelect/props/propTypes.js +9 -6
- package/lib/PopOver/PopOver.module.css +3 -3
- package/lib/Radio/Radio.js +45 -26
- package/lib/Radio/Radio.module.css +3 -1
- package/lib/Radio/__tests__/__snapshots__/Radio.spec.js.snap +3 -3
- package/lib/Radio/props/defaultProps.js +1 -0
- package/lib/Radio/props/propTypes.js +7 -0
- package/lib/Ribbon/Ribbon.module.css +0 -4
- package/lib/Select/GroupSelect.js +8 -3
- package/lib/Select/SelectWithAvatar.js +8 -3
- package/lib/Select/SelectWithIcon.js +8 -3
- package/lib/Select/props/defaultProps.js +5 -3
- package/lib/Select/props/propTypes.js +6 -3
- package/lib/Switch/Switch.module.css +0 -2
- package/lib/Tag/Tag.module.css +0 -6
- package/lib/TextBox/TextBox.module.css +1 -21
- package/lib/TextBoxIcon/TextBoxIcon.module.css +0 -5
- package/lib/Textarea/Textarea.module.css +0 -6
- package/lib/common/customscroll.module.css +27 -3
- package/lib/v1/Animation/Animation.js +1 -1
- package/lib/v1/Card/Card.js +1 -1
- package/lib/v1/CheckBox/CheckBox.js +7 -1
- package/lib/v1/CheckBox/props/propTypes.js +1 -0
- package/lib/v1/DropBox/utils/isMobilePopover.js +1 -1
- package/lib/v1/ListItem/ListContainer.js +1 -1
- package/lib/v1/MultiSelect/AdvancedGroupMultiSelect.js +1 -1
- package/lib/v1/MultiSelect/AdvancedMultiSelect.js +1 -1
- package/lib/v1/MultiSelect/props/defaultProps.js +5 -3
- package/lib/v1/Radio/Radio.js +22 -7
- package/lib/v1/Radio/props/defaultProps.js +1 -0
- package/lib/v1/Radio/props/propTypes.js +7 -0
- package/lib/v1/ResponsiveDropBox/ResponsiveDropBox.js +1 -1
- package/lib/v1/Select/GroupSelect.js +1 -1
- package/lib/v1/Select/Select.js +1 -1
- package/lib/v1/Select/SelectWithAvatar.js +4 -6
- package/lib/v1/Select/SelectWithIcon.js +1 -1
- package/lib/v1/Select/props/defaultProps.js +1 -1
- package/lib/v1/Select/props/propTypes.js +1 -3
- package/lib/v1/Tab/Tabs.js +2 -2
- package/lib/v1/Tooltip/Tooltip.js +1 -1
- package/package.json +10 -10
- package/result.json +1 -1
- package/es/v1/Provider/AvatarSize.js +0 -13
- package/es/v1/Provider/Config.js +0 -18
- package/es/v1/Provider/CssProvider.js +0 -16
- package/es/v1/Provider/IdProvider.js +0 -66
- package/es/v1/Provider/LibraryContext.js +0 -37
- package/es/v1/Provider/LibraryContextInit.js +0 -3
- package/es/v1/Provider/NumberGenerator/NumberGenerator.js +0 -136
- package/es/v1/Provider/ZindexProvider.js +0 -57
- package/es/v1/Provider/index.js +0 -4
- package/es/v1/Responsive/CustomResponsive.js +0 -195
- package/es/v1/Responsive/RefWrapper.js +0 -39
- package/es/v1/Responsive/ResizeComponent.js +0 -197
- package/es/v1/Responsive/ResizeObserver.js +0 -140
- package/es/v1/Responsive/Responsive.js +0 -194
- package/es/v1/Responsive/index.js +0 -9
- package/es/v1/Responsive/props/defaultProps.js +0 -13
- package/es/v1/Responsive/props/propTypes.js +0 -25
- package/lib/v1/Provider/AvatarSize.js +0 -24
- package/lib/v1/Provider/Config.js +0 -27
- package/lib/v1/Provider/CssProvider.js +0 -27
- package/lib/v1/Provider/IdProvider.js +0 -79
- package/lib/v1/Provider/LibraryContext.js +0 -76
- package/lib/v1/Provider/LibraryContextInit.js +0 -15
- package/lib/v1/Provider/NumberGenerator/NumberGenerator.js +0 -174
- package/lib/v1/Provider/ZindexProvider.js +0 -69
- package/lib/v1/Provider/index.js +0 -81
- package/lib/v1/Responsive/CustomResponsive.js +0 -242
- package/lib/v1/Responsive/RefWrapper.js +0 -57
- package/lib/v1/Responsive/ResizeComponent.js +0 -268
- package/lib/v1/Responsive/ResizeObserver.js +0 -168
- package/lib/v1/Responsive/Responsive.js +0 -274
- package/lib/v1/Responsive/index.js +0 -55
- package/lib/v1/Responsive/props/defaultProps.js +0 -23
- package/lib/v1/Responsive/props/propTypes.js +0 -39
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
const hasResizeObserver = !!window.ResizeObserver;
|
|
2
|
-
const mutationObserverOptions = {
|
|
3
|
-
//NOTE: we donot consider child Count
|
|
4
|
-
// childList: true,
|
|
5
|
-
attributes: true
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
function getSize(element) {
|
|
9
|
-
let {
|
|
10
|
-
offsetHeight,
|
|
11
|
-
offsetWidth
|
|
12
|
-
} = element; // const { height, width } = element.getBoundingClientRect();
|
|
13
|
-
|
|
14
|
-
return {
|
|
15
|
-
height: offsetHeight,
|
|
16
|
-
width: offsetWidth
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
function dispatch() {
|
|
21
|
-
let resizeResponsive = new Event('resizeResponsive');
|
|
22
|
-
window.dispatchEvent(resizeResponsive);
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
if (!hasResizeObserver) {
|
|
26
|
-
let interval = null;
|
|
27
|
-
window.addEventListener('resize', () => {
|
|
28
|
-
clearTimeout(interval);
|
|
29
|
-
interval = setTimeout(dispatch, 100);
|
|
30
|
-
});
|
|
31
|
-
} // NOTE: this is not full polyfill , we just wrote what types of changes wlli
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
export default class ResizeObserverPolyfill {
|
|
35
|
-
constructor(onResize) {
|
|
36
|
-
// method finding
|
|
37
|
-
this.transitionEndHandler = this.transitionEndHandler.bind(this);
|
|
38
|
-
this.resizeHandlerDispatch = this.resizeHandlerDispatch.bind(this);
|
|
39
|
-
this.resizeHandler = this.resizeHandler.bind(this);
|
|
40
|
-
this.replaceResizeHandler = this.replaceResizeHandler.bind(this);
|
|
41
|
-
this.debounce = this.debounce.bind(this);
|
|
42
|
-
this.onResize = onResize;
|
|
43
|
-
this.targetNode = null;
|
|
44
|
-
this.size = {
|
|
45
|
-
height: 0,
|
|
46
|
-
width: 0
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
if (hasResizeObserver) {
|
|
50
|
-
this.resizeObserverInstance = new window.ResizeObserver(this.resizeHandlerDispatch);
|
|
51
|
-
} else {
|
|
52
|
-
this.mutationObserverInstance = new window.MutationObserver(this.resizeHandlerDispatch);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
replaceResizeHandler(onResize) {
|
|
57
|
-
this.onResize = onResize;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
resizeHandler() {
|
|
61
|
-
if (!this.targetNode) {
|
|
62
|
-
return;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
const currentSize = getSize(this.targetNode); // if (this.size && shallowCompare(currentSize, this.size)) {
|
|
66
|
-
|
|
67
|
-
if (this.size && currentSize.height === this.size.height && currentSize.width === this.size.width) {
|
|
68
|
-
return;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
this.size = currentSize;
|
|
72
|
-
this.onResize(this.size, this.targetNode);
|
|
73
|
-
return true;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
resizeHandlerDispatch() {
|
|
77
|
-
if (!this.resizeHandler() || hasResizeObserver) {
|
|
78
|
-
return;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
dispatch();
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
debounce() {
|
|
85
|
-
clearTimeout(this.interval);
|
|
86
|
-
this.interval = setTimeout(this.resizeHandler, 100);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
transitionEndHandler(event) {
|
|
90
|
-
if (event.propertyName.indexOf('color') === -1) {
|
|
91
|
-
this.resizeHandlerDispatch();
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
addEventListeners(targetNode) {
|
|
96
|
-
targetNode.addEventListener('transitionend', this.transitionEndHandler);
|
|
97
|
-
window.addEventListener('resizeResponsive', this.debounce);
|
|
98
|
-
targetNode.addEventListener('animationend', this.resizeHandlerDispatch);
|
|
99
|
-
targetNode.addEventListener('webkitAnimationEnd', this.resizeHandlerDispatch);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
removeEventListeners(targetNode) {
|
|
103
|
-
targetNode.removeEventListener('transitionend', this.transitionEndHandler);
|
|
104
|
-
window.removeEventListener('resizeResponsive', this.debounce);
|
|
105
|
-
targetNode.removeEventListener('animationend', this.resizeHandlerDispatch);
|
|
106
|
-
targetNode.removeEventListener('webkitAnimationEnd', this.resizeHandlerDispatch);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
observe(targetNode) {
|
|
110
|
-
this.targetNode = targetNode;
|
|
111
|
-
|
|
112
|
-
if (hasResizeObserver) {
|
|
113
|
-
this.resizeObserverInstance.observe(targetNode);
|
|
114
|
-
} else {
|
|
115
|
-
this.addEventListeners(targetNode);
|
|
116
|
-
this.mutationObserverInstance.observe(targetNode, mutationObserverOptions);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
replaceObservationElement(targetNode) {
|
|
121
|
-
if (this.targetNode === targetNode) {
|
|
122
|
-
return;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
this.targetNode && this.disconnect();
|
|
126
|
-
targetNode && this.observe(targetNode);
|
|
127
|
-
targetNode && this.resizeHandlerDispatch();
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
disconnect() {
|
|
131
|
-
this.targetNode && this.removeEventListeners(this.targetNode);
|
|
132
|
-
hasResizeObserver ? this.resizeObserverInstance.disconnect() : this.mutationObserverInstance.disconnect();
|
|
133
|
-
this.targetNode = null;
|
|
134
|
-
this.size = {
|
|
135
|
-
height: 0,
|
|
136
|
-
width: 0
|
|
137
|
-
};
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
}
|
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
import React, { useContext, useEffect, useState, useMemo } from 'react'; // import React, { useState, useMemo, useCallback, useContext } from 'react';
|
|
2
|
-
|
|
3
|
-
import { ResponsiveSender_defaultProps, ResponsiveReceiver_defaultProps } from './props/defaultProps';
|
|
4
|
-
import { ResponsiveSender_propTypes, ResponsiveReceiver_propTypes } from './props/propTypes';
|
|
5
|
-
import ResizeObserver from './ResizeObserver';
|
|
6
|
-
import DOMRefWrapper from './RefWrapper';
|
|
7
|
-
import { windowResizeObserver } from '../../Responsive/windowResizeObserver';
|
|
8
|
-
import { getBreakPointValue, defaultMatcher } from '../../Responsive/utils/'; // const sortedBreackPointKey = [ 'MOBILE_XS', 'MOBILE_S', 'MOBILE_M', 'MOBILE', 'TABLET_S', 'TABLET_M', 'TABLET', 'LAPTOP_S', 'LAPTOP_M', 'LAPTOP', 'MONITOR_M', 'MONITOR'];
|
|
9
|
-
|
|
10
|
-
export const ResponsiveContext = /*#__PURE__*/React.createContext({});
|
|
11
|
-
const defaultResponsiveId = 'parentReceiver';
|
|
12
|
-
export class ResponsiveSender extends React.Component {
|
|
13
|
-
constructor(props) {
|
|
14
|
-
super(props); // method binding
|
|
15
|
-
|
|
16
|
-
this.onResize = this.onResize.bind(this);
|
|
17
|
-
this.containerRef = this.containerRef.bind(this);
|
|
18
|
-
this.getWidth = this.getWidth.bind(this);
|
|
19
|
-
this.state = {
|
|
20
|
-
breakPoint: null,
|
|
21
|
-
getWidth: this.getWidth
|
|
22
|
-
}; // variables
|
|
23
|
-
|
|
24
|
-
this.observer = new ResizeObserver(this.onResize);
|
|
25
|
-
this.size = null;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
getWidth() {
|
|
29
|
-
if (!this.size) {
|
|
30
|
-
return 0;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
const {
|
|
34
|
-
width
|
|
35
|
-
} = this.size;
|
|
36
|
-
return width;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
onResize(size) {
|
|
40
|
-
// const { matcher } = this.props;
|
|
41
|
-
const {
|
|
42
|
-
breakPoint
|
|
43
|
-
} = this.state;
|
|
44
|
-
const newBreakPoint = defaultMatcher(size);
|
|
45
|
-
this.size = size;
|
|
46
|
-
|
|
47
|
-
if (breakPoint !== newBreakPoint) {
|
|
48
|
-
this.setState({
|
|
49
|
-
breakPoint: newBreakPoint
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
containerRef(node) {
|
|
55
|
-
this.observer.replaceObservationElement(node);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
isChanged(data, key) {
|
|
59
|
-
this.memo = this.memo || {};
|
|
60
|
-
const changed = this.memo[key] !== data;
|
|
61
|
-
this.memo[key] = data;
|
|
62
|
-
return changed;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
render() {
|
|
66
|
-
const parentContext = this.context;
|
|
67
|
-
const {
|
|
68
|
-
children,
|
|
69
|
-
domRefKey,
|
|
70
|
-
responsiveId
|
|
71
|
-
} = this.props;
|
|
72
|
-
let {
|
|
73
|
-
childContext
|
|
74
|
-
} = this; // NOTE: this method called here ,Because of we must update local memo.
|
|
75
|
-
|
|
76
|
-
const isStateChanged = this.isChanged(this.state, 'state');
|
|
77
|
-
|
|
78
|
-
if (this.isChanged(this.context, 'context') || isStateChanged) {
|
|
79
|
-
childContext = Object.assign({}, parentContext);
|
|
80
|
-
childContext[responsiveId] = this.state;
|
|
81
|
-
childContext[defaultResponsiveId] = this.state; // NOTE: this for fallback of if responsive receiver id wrong
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
this.childContext = childContext;
|
|
85
|
-
return /*#__PURE__*/React.createElement(ResponsiveContext.Provider, {
|
|
86
|
-
value: childContext
|
|
87
|
-
}, /*#__PURE__*/React.createElement(DOMRefWrapper, {
|
|
88
|
-
domRefKey: domRefKey,
|
|
89
|
-
ref: this.containerRef
|
|
90
|
-
}, children));
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
}
|
|
94
|
-
ResponsiveSender.defaultProps = { ...ResponsiveSender_defaultProps,
|
|
95
|
-
responsiveId: defaultResponsiveId
|
|
96
|
-
};
|
|
97
|
-
ResponsiveSender.contextType = ResponsiveContext;
|
|
98
|
-
ResponsiveSender.propTypes = ResponsiveSender_propTypes;
|
|
99
|
-
export function useResponsiveReceiver() {
|
|
100
|
-
let responsiveId = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultResponsiveId;
|
|
101
|
-
const [_, forceUpdate] = useState();
|
|
102
|
-
let totalContextData = useContext(ResponsiveContext);
|
|
103
|
-
let contextData = totalContextData[responsiveId] || totalContextData[defaultResponsiveId]; // NOTE: this for fallback of if responsive receiver id wrong
|
|
104
|
-
|
|
105
|
-
let data = contextData;
|
|
106
|
-
useEffect(() => {
|
|
107
|
-
!contextData && windowResizeObserver.observe(forceUpdate);
|
|
108
|
-
return () => !contextData && windowResizeObserver.unobserve(forceUpdate);
|
|
109
|
-
}, [!!contextData]);
|
|
110
|
-
|
|
111
|
-
if (!contextData) {
|
|
112
|
-
data = {
|
|
113
|
-
breakPoint: windowResizeObserver.getBreackPoint(),
|
|
114
|
-
getWidth: () => windowResizeObserver.getSize().width
|
|
115
|
-
};
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
const {
|
|
119
|
-
breakPoint,
|
|
120
|
-
getWidth
|
|
121
|
-
} = data;
|
|
122
|
-
const childArg = useMemo(() => {
|
|
123
|
-
const isTouchDevice = 'ontouchstart' in window && navigator.userAgent.match(/mobi/i) ? true : false;
|
|
124
|
-
return {
|
|
125
|
-
breakPoint,
|
|
126
|
-
isTouchDevice,
|
|
127
|
-
|
|
128
|
-
deviceBetween(breakPoint1, breakPoint2) {
|
|
129
|
-
const width = getWidth();
|
|
130
|
-
|
|
131
|
-
if (!width) {
|
|
132
|
-
return false;
|
|
133
|
-
} // const smallBreakPointIndex = sortedBreackPointKey.indexOf(breakPoint1);
|
|
134
|
-
// const value1 = smallBreakPointIndex < 1 ? 0 : getBreakPointValue(sortedBreackPointKey[smallBreakPointIndex-1]);
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
const value1 = getBreakPointValue(breakPoint1);
|
|
138
|
-
const value2 = getBreakPointValue(breakPoint2);
|
|
139
|
-
|
|
140
|
-
if (value1 > value2) {
|
|
141
|
-
return this.deviceBetween(breakPoint2, breakPoint1);
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
return value1 <= width && value2 >= width || breakPoint1 === breakPoint || breakPoint2 === breakPoint;
|
|
145
|
-
},
|
|
146
|
-
|
|
147
|
-
deviceOnly() {
|
|
148
|
-
let breakPoints = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
149
|
-
return breakPoints.includes(breakPoint);
|
|
150
|
-
},
|
|
151
|
-
|
|
152
|
-
deviceUpto(breakPoint) {
|
|
153
|
-
const width = getWidth();
|
|
154
|
-
|
|
155
|
-
if (!width) {
|
|
156
|
-
return false;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
return width <= getBreakPointValue(breakPoint);
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
};
|
|
163
|
-
}, [breakPoint, getWidth]);
|
|
164
|
-
return childArg;
|
|
165
|
-
} // function ResponsiveReceiverFunc({ children, hiddenSizes }, ref) {
|
|
166
|
-
// const { breakPoint, methods } = useResponsiveReceiver();
|
|
167
|
-
// console.log(hiddenSizes);
|
|
168
|
-
// return hiddenSizes.indexOf(breakPoint) === -1 ? (
|
|
169
|
-
// <RefWrapper ref={ref}>{children(breakPoint, methods)}</RefWrapper>
|
|
170
|
-
// ) : null;
|
|
171
|
-
// }
|
|
172
|
-
|
|
173
|
-
export function ResponsiveReceiver(_ref) {
|
|
174
|
-
let {
|
|
175
|
-
children,
|
|
176
|
-
responsiveId,
|
|
177
|
-
hiddenSizes,
|
|
178
|
-
eleRef,
|
|
179
|
-
domRefKey
|
|
180
|
-
} = _ref;
|
|
181
|
-
const data = useResponsiveReceiver(responsiveId);
|
|
182
|
-
const {
|
|
183
|
-
breakPoint
|
|
184
|
-
} = data;
|
|
185
|
-
const child = children(data);
|
|
186
|
-
return !hiddenSizes.includes(breakPoint) ? eleRef ? /*#__PURE__*/React.createElement(DOMRefWrapper, {
|
|
187
|
-
domRefKey: domRefKey,
|
|
188
|
-
ref: eleRef
|
|
189
|
-
}, child) : child : null;
|
|
190
|
-
}
|
|
191
|
-
ResponsiveReceiver.defaultProps = { ...ResponsiveReceiver_defaultProps,
|
|
192
|
-
responsiveId: defaultResponsiveId
|
|
193
|
-
};
|
|
194
|
-
ResponsiveReceiver.propTypes = ResponsiveReceiver_propTypes;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export { ResponsiveSender as CustomResponsiveSender, ResponsiveReceiver as CustomResponsiveReceiver, useResponsiveReceiver as useCustomResponsiveReceiver } from './CustomResponsive';
|
|
2
|
-
export { ResponsiveSender, ResponsiveReceiver, useResponsiveReceiver } from './Responsive';
|
|
3
|
-
export { default as ResizeComponent } from './ResizeComponent'; // let Responsive = {
|
|
4
|
-
// docs: {
|
|
5
|
-
// componentGroup: 'Layout',
|
|
6
|
-
// folderName: 'Style Guide'
|
|
7
|
-
// }
|
|
8
|
-
// };
|
|
9
|
-
// export { Responsive };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export const CustomResponsiveSender_defaultProps = {
|
|
2
|
-
domRefKey: 'eleRef'
|
|
3
|
-
};
|
|
4
|
-
export const CustomResponsiveReceiver_defaultProps = {
|
|
5
|
-
domRefKey: 'eleRef'
|
|
6
|
-
};
|
|
7
|
-
export const ResponsiveSender_defaultProps = {
|
|
8
|
-
domRefKey: 'eleRef'
|
|
9
|
-
};
|
|
10
|
-
export const ResponsiveReceiver_defaultProps = {
|
|
11
|
-
domRefKey: 'eleRef',
|
|
12
|
-
hiddenSizes: []
|
|
13
|
-
};
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import PropTypes from 'prop-types';
|
|
2
|
-
export const CustomResponsiveSender_propTypes = {
|
|
3
|
-
children: PropTypes.any.isRequired,
|
|
4
|
-
domRefKey: PropTypes.string,
|
|
5
|
-
responsiveId: PropTypes.string
|
|
6
|
-
};
|
|
7
|
-
export const CustomResponsiveReceiver_propTypes = {
|
|
8
|
-
children: PropTypes.func,
|
|
9
|
-
domRefKey: PropTypes.string,
|
|
10
|
-
eleRef: PropTypes.func,
|
|
11
|
-
query: PropTypes.func,
|
|
12
|
-
responsiveId: PropTypes.string
|
|
13
|
-
};
|
|
14
|
-
export const ResponsiveSender_propTypes = {
|
|
15
|
-
children: PropTypes.any.isRequired,
|
|
16
|
-
domRefKey: PropTypes.string,
|
|
17
|
-
responsiveId: PropTypes.string
|
|
18
|
-
};
|
|
19
|
-
export const ResponsiveReceiver_propTypes = {
|
|
20
|
-
children: PropTypes.func,
|
|
21
|
-
domRefKey: PropTypes.string,
|
|
22
|
-
eleRef: PropTypes.func,
|
|
23
|
-
hiddenSizes: PropTypes.array,
|
|
24
|
-
responsiveId: PropTypes.string
|
|
25
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = CssProvider;
|
|
7
|
-
|
|
8
|
-
var _avatarsizesModule = _interopRequireDefault(require("../../common/avatarsizes.module.css"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
-
|
|
12
|
-
var styleList = {
|
|
13
|
-
small: _avatarsizesModule["default"].small,
|
|
14
|
-
xsmall: _avatarsizesModule["default"].xsmall,
|
|
15
|
-
xxsmall: _avatarsizesModule["default"].xxsmall,
|
|
16
|
-
medium: _avatarsizesModule["default"].medium,
|
|
17
|
-
xmedium: _avatarsizesModule["default"].xmedium,
|
|
18
|
-
large: _avatarsizesModule["default"].large,
|
|
19
|
-
xlarge: _avatarsizesModule["default"].xlarge
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
function CssProvider(name) {
|
|
23
|
-
return styleList[name] || '';
|
|
24
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.getLibraryConfig = getLibraryConfig;
|
|
7
|
-
exports.setLibraryConfig = setLibraryConfig;
|
|
8
|
-
var id = {
|
|
9
|
-
mobileWidth: 640,
|
|
10
|
-
zindexCounter: 3,
|
|
11
|
-
idCounter: 0,
|
|
12
|
-
idPrefix: 'ZD',
|
|
13
|
-
scrollFetchLimit: 80,
|
|
14
|
-
isReducedMotion: false,
|
|
15
|
-
direction: 'ltr',
|
|
16
|
-
tooltipDebounce: 175,
|
|
17
|
-
getTooltipContainer: function getTooltipContainer() {},
|
|
18
|
-
autoComplete: false
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
function getLibraryConfig(key) {
|
|
22
|
-
return id[key];
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
function setLibraryConfig(configObj) {
|
|
26
|
-
id = Object.assign({}, id, configObj);
|
|
27
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = CssProvider;
|
|
7
|
-
|
|
8
|
-
var _commonModule = _interopRequireDefault(require("../../common/common.module.css"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
-
|
|
12
|
-
var styleList = {
|
|
13
|
-
hide: _commonModule["default"].hide,
|
|
14
|
-
isDisabled: _commonModule["default"].disabled,
|
|
15
|
-
isDisable: _commonModule["default"].disable,
|
|
16
|
-
isBlock: _commonModule["default"].blockEvent,
|
|
17
|
-
isFlexible: _commonModule["default"].flexgrow,
|
|
18
|
-
dotted: _commonModule["default"].dotted,
|
|
19
|
-
vMiddle: _commonModule["default"].yMiddle,
|
|
20
|
-
hMiddle: _commonModule["default"].xMiddle,
|
|
21
|
-
smooth: _commonModule["default"].ftsmooth,
|
|
22
|
-
clamp: _commonModule["default"].clamp
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
function CssProvider(name) {
|
|
26
|
-
return styleList[name] || '';
|
|
27
|
-
}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.getUniqueId = getUniqueId;
|
|
7
|
-
exports.removeGlobalIdPrefix = removeGlobalIdPrefix;
|
|
8
|
-
exports.setGlobalIdPrefix = setGlobalIdPrefix;
|
|
9
|
-
exports.useUniqueId = useUniqueId;
|
|
10
|
-
|
|
11
|
-
var _NumberGenerator = require("./NumberGenerator/NumberGenerator");
|
|
12
|
-
|
|
13
|
-
var _Config = require("./Config");
|
|
14
|
-
|
|
15
|
-
var globalId = (0, _Config.getLibraryConfig)('idCounter'),
|
|
16
|
-
deletedIndexes = [],
|
|
17
|
-
globalPrefix;
|
|
18
|
-
|
|
19
|
-
function setGlobalIdPrefix(value) {
|
|
20
|
-
globalPrefix = value;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
function removeGlobalIdPrefix() {
|
|
24
|
-
globalPrefix = undefined;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
function getGlobalIdPrefix() {
|
|
28
|
-
return globalPrefix;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
function setGlobalId(id) {
|
|
32
|
-
globalId = id;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
function getGlobalId() {
|
|
36
|
-
return globalId;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
function setDeletedIndexes(array) {
|
|
40
|
-
deletedIndexes = array;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
function getDeletedIndexes() {
|
|
44
|
-
return deletedIndexes;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
function callback(_ref) {
|
|
48
|
-
var globalId = _ref.globalId,
|
|
49
|
-
deletedIndexes = _ref.deletedIndexes;
|
|
50
|
-
setGlobalId(globalId);
|
|
51
|
-
setDeletedIndexes(deletedIndexes);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
function useUniqueId(prefix) {
|
|
55
|
-
return (0, _NumberGenerator.useNumberGenerator)({
|
|
56
|
-
getGlobalId: getGlobalId,
|
|
57
|
-
prefix: prefix,
|
|
58
|
-
getGlobalPrefix: getGlobalIdPrefix,
|
|
59
|
-
getDeletedIndexes: getDeletedIndexes,
|
|
60
|
-
callback: callback
|
|
61
|
-
});
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
function getUniqueId(Component, prefix) {
|
|
65
|
-
return (0, _NumberGenerator.getNumberGenerators)({
|
|
66
|
-
Component: Component,
|
|
67
|
-
prefix: prefix,
|
|
68
|
-
getGlobalPrefix: getGlobalIdPrefix,
|
|
69
|
-
getGlobalId: getGlobalId,
|
|
70
|
-
getDeletedIndexes: getDeletedIndexes,
|
|
71
|
-
callback: callback
|
|
72
|
-
});
|
|
73
|
-
} // let Provider = {
|
|
74
|
-
// docs: {
|
|
75
|
-
// componentGroup: 'Provider',
|
|
76
|
-
// folderName: 'Functions'
|
|
77
|
-
// }
|
|
78
|
-
// };
|
|
79
|
-
// export { Provider };
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = void 0;
|
|
9
|
-
|
|
10
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
-
|
|
12
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
13
|
-
|
|
14
|
-
var _LibraryContextInit = _interopRequireDefault(require("./LibraryContextInit"));
|
|
15
|
-
|
|
16
|
-
var _Config = require("./Config");
|
|
17
|
-
|
|
18
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
19
|
-
|
|
20
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
-
|
|
22
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
-
|
|
24
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
25
|
-
|
|
26
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
27
|
-
|
|
28
|
-
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; }
|
|
29
|
-
|
|
30
|
-
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
31
|
-
|
|
32
|
-
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."); }
|
|
33
|
-
|
|
34
|
-
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(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
35
|
-
|
|
36
|
-
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; }
|
|
37
|
-
|
|
38
|
-
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_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; }
|
|
39
|
-
|
|
40
|
-
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
41
|
-
|
|
42
|
-
var LibraryContextProvider = function LibraryContextProvider(_ref) {
|
|
43
|
-
var _ref$isReducedMotion = _ref.isReducedMotion,
|
|
44
|
-
isReducedMotion = _ref$isReducedMotion === void 0 ? (0, _Config.getLibraryConfig)('isReducedMotion') : _ref$isReducedMotion,
|
|
45
|
-
_ref$direction = _ref.direction,
|
|
46
|
-
direction = _ref$direction === void 0 ? (0, _Config.getLibraryConfig)('direction') : _ref$direction,
|
|
47
|
-
children = _ref.children;
|
|
48
|
-
|
|
49
|
-
var _useState = (0, _react.useState)({
|
|
50
|
-
isReducedMotion: isReducedMotion,
|
|
51
|
-
direction: direction
|
|
52
|
-
}),
|
|
53
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
54
|
-
value = _useState2[0],
|
|
55
|
-
setValue = _useState2[1];
|
|
56
|
-
|
|
57
|
-
function setGlobalContext(key, data) {
|
|
58
|
-
if (value[key] != data) {
|
|
59
|
-
setValue(_objectSpread(_objectSpread({}, value), {}, _defineProperty({}, key, data)));
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
return /*#__PURE__*/_react["default"].createElement(_LibraryContextInit["default"].Provider, {
|
|
64
|
-
value: _objectSpread(_objectSpread({}, value), {}, {
|
|
65
|
-
setGlobalContext: setGlobalContext
|
|
66
|
-
})
|
|
67
|
-
}, children);
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
LibraryContextProvider.propTypes = {
|
|
71
|
-
children: _propTypes["default"].node.isRequired,
|
|
72
|
-
isReducedMotion: _propTypes["default"].bool,
|
|
73
|
-
direction: _propTypes["default"].string
|
|
74
|
-
};
|
|
75
|
-
var _default = LibraryContextProvider;
|
|
76
|
-
exports["default"] = _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports["default"] = void 0;
|
|
7
|
-
|
|
8
|
-
var _react = _interopRequireDefault(require("react"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
-
|
|
12
|
-
var LibraryContext = /*#__PURE__*/_react["default"].createContext();
|
|
13
|
-
|
|
14
|
-
var _default = LibraryContext;
|
|
15
|
-
exports["default"] = _default;
|