@carbon/ibm-products 2.36.0-alpha.27 → 2.37.0
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/css/index-full-carbon.css +5404 -5117
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +4 -4
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +820 -61
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +329 -6
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/_virtual/_rollupPluginBabelHelpers.js +9 -10
- package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.d.ts +3 -1
- package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +8 -2
- package/es/components/Carousel/Carousel.d.ts +46 -2
- package/es/components/Carousel/Carousel.js +36 -21
- package/es/components/Carousel/CarouselItem.d.ts +19 -2
- package/es/components/Carousel/CarouselItem.js +0 -1
- package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +21 -0
- package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +261 -0
- package/es/components/ConditionBuilder/ConditionBuilder.js +45 -16
- package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +12 -0
- package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +40 -0
- package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +22 -0
- package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +74 -0
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +18 -1
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +90 -42
- package/es/components/ConditionBuilder/ConditionBuilderContext/{DataTreeContext.d.ts → ConditionBuilderProvider.d.ts} +5 -2
- package/es/components/ConditionBuilder/ConditionBuilderContext/{DataTreeContext.js → ConditionBuilderProvider.js} +27 -8
- package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +22 -0
- package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +112 -0
- package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +31 -0
- package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +40 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +28 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +151 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +11 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +59 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.d.ts +13 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +52 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ConditionBuilderItemOption.d.ts +13 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ConditionBuilderItemOption.js +162 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +11 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +40 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.d.ts +11 -0
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +82 -0
- package/es/components/ConditionBuilder/ConditionConnector/ConditionConnector.d.ts +15 -0
- package/es/components/ConditionBuilder/ConditionConnector/ConditionConnector.js +85 -0
- package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +24 -0
- package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +145 -0
- package/es/components/ConditionBuilder/utils/util.d.ts +4 -0
- package/es/components/ConditionBuilder/utils/util.js +16 -0
- package/es/components/CreateTearsheet/CreateTearsheet.d.ts +106 -4
- package/es/components/CreateTearsheet/CreateTearsheet.js +12 -32
- package/es/components/Datagrid/useParentDimensions.js +1 -1
- package/es/components/EditUpdateCards/EditUpdateCards.d.ts +104 -2
- package/es/components/EditUpdateCards/EditUpdateCards.js +3 -0
- package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +61 -2
- package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +1 -3
- package/es/components/ExpressiveCard/ExpressiveCard.d.ts +97 -2
- package/es/components/ExpressiveCard/ExpressiveCard.js +4 -0
- package/es/components/InlineTip/InlineTipButton.d.ts +21 -2
- package/es/components/InterstitialScreen/InterstitialScreen.d.ts +100 -2
- package/es/components/InterstitialScreen/InterstitialScreen.js +25 -14
- package/es/components/Nav/NavItem.js +1 -1
- package/es/components/NotificationsPanel/NotificationsPanel.js +5 -6
- package/es/components/PageHeader/PageHeader.js +12 -3
- package/es/components/SidePanel/SidePanel.js +1 -1
- package/es/components/SimpleHeader/SimpleHeader.d.ts +1 -5
- package/es/components/SimpleHeader/SimpleHeader.js +2 -4
- package/es/components/Tearsheet/TearsheetNarrow.d.ts +4 -13
- package/es/components/Tearsheet/TearsheetShell.d.ts +119 -10
- package/es/components/Tearsheet/TearsheetShell.js +18 -8
- package/es/components/UserProfileImage/UserProfileImage.d.ts +66 -2
- package/es/components/UserProfileImage/UserProfileImage.js +5 -3
- package/es/components/WebTerminal/WebTerminal.d.ts +46 -2
- package/es/components/WebTerminal/WebTerminal.js +2 -2
- package/es/global/js/hooks/usePrefersReducedMotion.d.ts +2 -0
- package/es/global/js/hooks/usePrefersReducedMotion.js +28 -0
- package/es/global/js/utils/Wrap.d.ts +31 -2
- package/es/global/js/utils/Wrap.js +7 -9
- package/es/global/js/utils/getNodeTextContent.d.ts +1 -1
- package/es/global/js/utils/getNodeTextContent.js +1 -1
- package/es/global/js/utils/window.d.ts +2 -0
- package/es/global/js/utils/window.js +12 -0
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-9.js +2780 -0
- package/lib/_virtual/_rollupPluginBabelHelpers.js +9 -10
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.d.ts +3 -1
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +8 -2
- package/lib/components/Carousel/Carousel.d.ts +46 -2
- package/lib/components/Carousel/Carousel.js +35 -20
- package/lib/components/Carousel/CarouselItem.d.ts +19 -2
- package/lib/components/Carousel/CarouselItem.js +0 -1
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +21 -0
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +270 -0
- package/lib/components/ConditionBuilder/ConditionBuilder.js +46 -17
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +12 -0
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +48 -0
- package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +22 -0
- package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +83 -0
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +18 -1
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +90 -42
- package/lib/components/ConditionBuilder/ConditionBuilderContext/{DataTreeContext.d.ts → ConditionBuilderProvider.d.ts} +5 -2
- package/lib/components/ConditionBuilder/ConditionBuilderContext/{DataTreeContext.js → ConditionBuilderProvider.js} +27 -8
- package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +22 -0
- package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +121 -0
- package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +31 -0
- package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +44 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +28 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +159 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +11 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +67 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.d.ts +13 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +60 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ConditionBuilderItemOption.d.ts +13 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ConditionBuilderItemOption.js +170 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +11 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +48 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.d.ts +11 -0
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +90 -0
- package/lib/components/ConditionBuilder/ConditionConnector/ConditionConnector.d.ts +15 -0
- package/lib/components/ConditionBuilder/ConditionConnector/ConditionConnector.js +93 -0
- package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +24 -0
- package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +153 -0
- package/lib/components/ConditionBuilder/utils/util.d.ts +4 -0
- package/lib/components/ConditionBuilder/utils/util.js +20 -0
- package/lib/components/CreateTearsheet/CreateTearsheet.d.ts +106 -4
- package/lib/components/CreateTearsheet/CreateTearsheet.js +12 -32
- package/lib/components/Datagrid/useParentDimensions.js +1 -1
- package/lib/components/EditUpdateCards/EditUpdateCards.d.ts +104 -2
- package/lib/components/EditUpdateCards/EditUpdateCards.js +3 -0
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +61 -2
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +1 -3
- package/lib/components/ExpressiveCard/ExpressiveCard.d.ts +97 -2
- package/lib/components/ExpressiveCard/ExpressiveCard.js +4 -0
- package/lib/components/InlineTip/InlineTipButton.d.ts +21 -2
- package/lib/components/InterstitialScreen/InterstitialScreen.d.ts +100 -2
- package/lib/components/InterstitialScreen/InterstitialScreen.js +24 -13
- package/lib/components/Nav/NavItem.js +2 -2
- package/lib/components/NotificationsPanel/NotificationsPanel.js +5 -6
- package/lib/components/PageHeader/PageHeader.js +11 -2
- package/lib/components/SidePanel/SidePanel.js +1 -1
- package/lib/components/SimpleHeader/SimpleHeader.d.ts +1 -5
- package/lib/components/SimpleHeader/SimpleHeader.js +2 -4
- package/lib/components/Tearsheet/TearsheetNarrow.d.ts +4 -13
- package/lib/components/Tearsheet/TearsheetShell.d.ts +119 -10
- package/lib/components/Tearsheet/TearsheetShell.js +16 -6
- package/lib/components/UserProfileImage/UserProfileImage.d.ts +66 -2
- package/lib/components/UserProfileImage/UserProfileImage.js +5 -3
- package/lib/components/WebTerminal/WebTerminal.d.ts +46 -2
- package/lib/components/WebTerminal/WebTerminal.js +2 -2
- package/lib/global/js/hooks/usePrefersReducedMotion.d.ts +2 -0
- package/lib/global/js/hooks/usePrefersReducedMotion.js +32 -0
- package/lib/global/js/utils/Wrap.d.ts +31 -2
- package/lib/global/js/utils/Wrap.js +7 -9
- package/lib/global/js/utils/getNodeTextContent.d.ts +1 -1
- package/lib/global/js/utils/getNodeTextContent.js +1 -1
- package/lib/global/js/utils/window.d.ts +2 -0
- package/lib/global/js/utils/window.js +16 -0
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +2912 -0
- package/package.json +5 -5
- package/scss/components/CoachmarkOverlayElements/_coachmark-overlay-elements.scss +1 -1
- package/scss/components/ConditionBuilder/_condition-builder.scss +26 -0
- package/scss/components/ConditionBuilder/styles/_conditionBuilderCondition.scss +46 -0
- package/scss/components/ConditionBuilder/styles/_conditionBuilderItem.scss +194 -0
- package/scss/components/ConditionBuilder/styles/_index.scss +2 -0
- package/scss/components/Guidebanner/_guidebanner.scss +3 -0
- package/scss/components/InterstitialScreen/_interstitial-screen.scss +1 -6
- package/scss/components/Tearsheet/_tearsheet.scss +3 -1
- package/telemetry.yml +3 -0
- package/es/components/ConditionBuilder/assets/sampleInput.d.ts +0 -58
- package/es/global/js/utils/keyboardNavigation.d.ts +0 -27
- package/es/global/js/utils/keyboardNavigation.js +0 -33
- package/es/global/js/utils/wrapFocus.d.ts +0 -25
- package/es/global/js/utils/wrapFocus.js +0 -68
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-8.js +0 -3004
- package/lib/components/ConditionBuilder/assets/sampleInput.d.ts +0 -58
- package/lib/global/js/utils/keyboardNavigation.d.ts +0 -27
- package/lib/global/js/utils/keyboardNavigation.js +0 -39
- package/lib/global/js/utils/wrapFocus.d.ts +0 -25
- package/lib/global/js/utils/wrapFocus.js +0 -73
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-8.js +0 -3136
|
@@ -17,7 +17,6 @@ import { usePrefix, Tooltip } from '@carbon/react';
|
|
|
17
17
|
import { TooltipTrigger } from '../TooltipTrigger/TooltipTrigger.js';
|
|
18
18
|
|
|
19
19
|
var _excluded = ["backgroundColor", "className", "kind", "icon", "initials", "image", "imageDescription", "size", "theme", "tooltipText", "tooltipAlignment"];
|
|
20
|
-
|
|
21
20
|
// The block part of our conventional BEM class names (blockClass__E--M).
|
|
22
21
|
var blockClass = "".concat(pkg.prefix, "--user-profile-image");
|
|
23
22
|
var componentName = 'UserProfileImage';
|
|
@@ -84,12 +83,13 @@ var UserProfileImage = /*#__PURE__*/React__default.forwardRef(function (_ref, re
|
|
|
84
83
|
}
|
|
85
84
|
};
|
|
86
85
|
var formatInitials = function formatInitials() {
|
|
87
|
-
|
|
86
|
+
var _match;
|
|
87
|
+
if (initials && initials.length === 2) {
|
|
88
88
|
return initials;
|
|
89
89
|
}
|
|
90
90
|
// RegEx takes in the display name and returns the first and last initials. Thomas Watson and Thomas J. Watson
|
|
91
91
|
// both return JW.
|
|
92
|
-
return initials.match(/(^\S\S?|\b\S)?/g).join('').match(/(^\S|\S$)?/g).join('').toUpperCase();
|
|
92
|
+
return ((_match = (initials || '').match(/(^\S\S?|\b\S)?/g)) === null || _match === void 0 || (_match = _match.join('').match(/(^\S|\S$)?/g)) === null || _match === void 0 ? void 0 : _match.join('').toUpperCase()) || '';
|
|
93
93
|
};
|
|
94
94
|
var getFillItem = function getFillItem() {
|
|
95
95
|
if (image) {
|
|
@@ -149,10 +149,12 @@ UserProfileImage.propTypes = {
|
|
|
149
149
|
/**
|
|
150
150
|
* When passing the image prop, supply a full path to the image to be displayed.
|
|
151
151
|
*/
|
|
152
|
+
/**@ts-ignore */
|
|
152
153
|
image: PropTypes.string,
|
|
153
154
|
/**
|
|
154
155
|
* When passing the image prop use the imageDescription prop to describe the image for screen reader.
|
|
155
156
|
*/
|
|
157
|
+
/**@ts-ignore */
|
|
156
158
|
imageDescription: PropTypes.string.isRequired.if(function (_ref2) {
|
|
157
159
|
var image = _ref2.image;
|
|
158
160
|
return !!image;
|
|
@@ -1,5 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2020, 2022
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
/// <reference path="../../../src/custom-typings/index.d.ts" />
|
|
8
|
+
import React, { PropsWithChildren, ReactNode } from 'react';
|
|
9
|
+
import { OverflowMenuItem } from '@carbon/react';
|
|
10
|
+
interface Action {
|
|
11
|
+
renderIcon: () => void;
|
|
12
|
+
onClick: () => void;
|
|
13
|
+
iconDescription: string;
|
|
14
|
+
}
|
|
15
|
+
interface WebTerminalProps extends PropsWithChildren {
|
|
16
|
+
/**
|
|
17
|
+
* Provide your own terminal component as children to show up in the web terminal
|
|
18
|
+
*/
|
|
19
|
+
children: ReactNode | ReactNode[];
|
|
20
|
+
/**
|
|
21
|
+
* An array of actions to be displayed in the web terminal header bar
|
|
22
|
+
*/
|
|
23
|
+
actions?: readonly Action[];
|
|
24
|
+
/**
|
|
25
|
+
* Custom classname for additional styling of the web terminal
|
|
26
|
+
*/
|
|
27
|
+
className?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Icon description for the close button
|
|
30
|
+
*/
|
|
31
|
+
closeIconDescription: string;
|
|
32
|
+
/**
|
|
33
|
+
* Array of objects for each documentation link. Each documentation link uses the prop types of OverflowMenuItems. See more: https://react.carbondesignsystem.com/?path=/docs/components-overflowmenu--default
|
|
34
|
+
*/
|
|
35
|
+
documentationLinks?: readonly OverflowMenuItem[];
|
|
36
|
+
/**
|
|
37
|
+
* Description for the documentation link overflow menu tooltip
|
|
38
|
+
*/
|
|
39
|
+
documentationLinksIconDescription?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Optionally pass if the web terminal should be open by default
|
|
42
|
+
*/
|
|
43
|
+
isInitiallyOpen?: boolean;
|
|
44
|
+
}
|
|
1
45
|
/**
|
|
2
46
|
* The `WebTerminal` is prompted by the user and is persistent until dismissed. The purpose of a web terminal is to provide users with the ability to type commands manually instead of using the GUI.
|
|
3
47
|
*/
|
|
4
|
-
export let WebTerminal: React.ForwardRefExoticComponent<React.RefAttributes<
|
|
5
|
-
|
|
48
|
+
export declare let WebTerminal: React.ForwardRefExoticComponent<WebTerminalProps & React.RefAttributes<HTMLDivElement>>;
|
|
49
|
+
export {};
|
|
@@ -29,7 +29,6 @@ var defaults = {
|
|
|
29
29
|
documentationLinksIconDescription: 'Show documentation links',
|
|
30
30
|
isInitiallyOpen: false
|
|
31
31
|
};
|
|
32
|
-
|
|
33
32
|
/**
|
|
34
33
|
* The `WebTerminal` is prompted by the user and is persistent until dismissed. The purpose of a web terminal is to provide users with the ability to type commands manually instead of using the GUI.
|
|
35
34
|
*/
|
|
@@ -99,7 +98,7 @@ var WebTerminal = /*#__PURE__*/React__default.forwardRef(function (_ref, ref) {
|
|
|
99
98
|
ref: ref,
|
|
100
99
|
className: cx([blockClass, className, _defineProperty(_defineProperty({}, "".concat(blockClass, "--open"), open), "".concat(blockClass, "--closed"), !open)]),
|
|
101
100
|
style: {
|
|
102
|
-
animation: !prefersReducedMotion
|
|
101
|
+
animation: !prefersReducedMotion ? webTerminalAnimationName : ''
|
|
103
102
|
},
|
|
104
103
|
onAnimationEnd: onAnimationEnd
|
|
105
104
|
}), /*#__PURE__*/React__default.createElement("header", {
|
|
@@ -168,6 +167,7 @@ WebTerminal.propTypes = {
|
|
|
168
167
|
/**
|
|
169
168
|
* An array of actions to be displayed in the web terminal header bar
|
|
170
169
|
*/
|
|
170
|
+
/**@ts-ignore */
|
|
171
171
|
actions: PropTypes.arrayOf(PropTypes.shape({
|
|
172
172
|
renderIcon: PropTypes.func.isRequired,
|
|
173
173
|
onClick: PropTypes.func.isRequired,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2020, 2024
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { slicedToArray as _slicedToArray } from '../../../_virtual/_rollupPluginBabelHelpers.js';
|
|
9
|
+
import { useState, useEffect } from 'react';
|
|
10
|
+
import { hasDocument } from '../utils/window.js';
|
|
11
|
+
|
|
12
|
+
var usePrefersReducedMotion = function usePrefersReducedMotion() {
|
|
13
|
+
var _useState = useState(false),
|
|
14
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
15
|
+
prefersReducedMotion = _useState2[0],
|
|
16
|
+
setPrefersReducedMotion = _useState2[1];
|
|
17
|
+
useEffect(function () {
|
|
18
|
+
if (hasDocument()) {
|
|
19
|
+
var _window$matchMedia = window.matchMedia('(prefers-reduced-motion: reduce)'),
|
|
20
|
+
matches = _window$matchMedia.matches;
|
|
21
|
+
setPrefersReducedMotion(matches);
|
|
22
|
+
}
|
|
23
|
+
}, []);
|
|
24
|
+
return prefersReducedMotion;
|
|
25
|
+
};
|
|
26
|
+
var usePrefersReducedMotion$1 = usePrefersReducedMotion;
|
|
27
|
+
|
|
28
|
+
export { usePrefersReducedMotion$1 as default };
|
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2021, 2024
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
import React, { ElementType, PropsWithChildren, ReactNode } from 'react';
|
|
8
|
+
interface WrapProps extends PropsWithChildren {
|
|
9
|
+
/**
|
|
10
|
+
* Specify whether the wrapper element should render even if there are no
|
|
11
|
+
* children or the children are themselves empty wrappers. Useful if there
|
|
12
|
+
* are some conditions in which the wrapper element is still required. Note
|
|
13
|
+
* that this prop takes precedence over neverRender if both are set to true.
|
|
14
|
+
*/
|
|
15
|
+
alwaysRender?: boolean | null;
|
|
16
|
+
/**
|
|
17
|
+
* The element name or component to use as a wrapper for the content.
|
|
18
|
+
*/
|
|
19
|
+
element?: (() => ReactNode) | string | ElementType;
|
|
20
|
+
/**
|
|
21
|
+
* Specify whether nothing should be rendered even if there are children
|
|
22
|
+
* in the content. Useful if there are some circumstances in which the
|
|
23
|
+
* component should not render at all. Note that if alwaysRender is also
|
|
24
|
+
* set to true then it will take precedence and the wrapper element and
|
|
25
|
+
* content will be rendered.
|
|
26
|
+
*/
|
|
27
|
+
neverRender?: boolean;
|
|
28
|
+
className?: string;
|
|
29
|
+
}
|
|
1
30
|
/**
|
|
2
31
|
* A simple conditional wrapper that encloses its children in a <div> (or other
|
|
3
32
|
* element if specified), passing any supplied attributes to the <div> (or other
|
|
@@ -8,5 +37,5 @@
|
|
|
8
37
|
* the ref.current will be set to the wrapper element if it renders, and will
|
|
9
38
|
* remain undefined if it does not render.
|
|
10
39
|
*/
|
|
11
|
-
export const Wrap: React.ForwardRefExoticComponent<React.RefAttributes<
|
|
12
|
-
|
|
40
|
+
export declare const Wrap: React.ForwardRefExoticComponent<WrapProps & React.RefAttributes<HTMLElement>>;
|
|
41
|
+
export {};
|
|
@@ -9,7 +9,7 @@ import { objectWithoutProperties as _objectWithoutProperties, extends as _extend
|
|
|
9
9
|
import React__default from 'react';
|
|
10
10
|
import PropTypes from '../../../node_modules/prop-types/index.js';
|
|
11
11
|
|
|
12
|
-
var _excluded = ["alwaysRender", "children", "element", "neverRender"];
|
|
12
|
+
var _excluded = ["alwaysRender", "children", "element", "neverRender", "className"];
|
|
13
13
|
|
|
14
14
|
// Examine a flat array of children to decide whether it is effectively empty.
|
|
15
15
|
// If there are no children, or all the children are falsy, or all the non-falsy
|
|
@@ -24,12 +24,6 @@ var isEmpty = function isEmpty(children) {
|
|
|
24
24
|
});
|
|
25
25
|
return result;
|
|
26
26
|
};
|
|
27
|
-
|
|
28
|
-
// Default values for props
|
|
29
|
-
var defaults = {
|
|
30
|
-
element: 'div'
|
|
31
|
-
};
|
|
32
|
-
|
|
33
27
|
/**
|
|
34
28
|
* A simple conditional wrapper that encloses its children in a <div> (or other
|
|
35
29
|
* element if specified), passing any supplied attributes to the <div> (or other
|
|
@@ -44,10 +38,13 @@ var Wrap = /*#__PURE__*/React__default.forwardRef(function (_ref, ref) {
|
|
|
44
38
|
var alwaysRender = _ref.alwaysRender,
|
|
45
39
|
children = _ref.children,
|
|
46
40
|
_ref$element = _ref.element,
|
|
47
|
-
Wrapper = _ref$element === void 0 ?
|
|
41
|
+
Wrapper = _ref$element === void 0 ? 'div' : _ref$element,
|
|
48
42
|
neverRender = _ref.neverRender,
|
|
43
|
+
className = _ref.className,
|
|
49
44
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
50
|
-
return (neverRender || isEmpty(children)) && !alwaysRender ? null : /*#__PURE__*/React__default.createElement(Wrapper, _extends({
|
|
45
|
+
return (neverRender || isEmpty(children)) && !alwaysRender ? null : /*#__PURE__*/React__default.createElement(Wrapper, _extends({
|
|
46
|
+
className: className
|
|
47
|
+
}, rest, {
|
|
51
48
|
ref: ref
|
|
52
49
|
}), children);
|
|
53
50
|
});
|
|
@@ -66,6 +63,7 @@ Wrap.propTypes = {
|
|
|
66
63
|
* components that decide not to render, nothing will be rendered in the DOM.
|
|
67
64
|
*/
|
|
68
65
|
children: PropTypes.node,
|
|
66
|
+
className: PropTypes.string,
|
|
69
67
|
/**
|
|
70
68
|
* The element name or component to use as a wrapper for the content.
|
|
71
69
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export function getNodeTextContent(node:
|
|
1
|
+
export function getNodeTextContent(node: ReactNode): string;
|
|
@@ -25,7 +25,7 @@ import { typeof as _typeof } from '../../../_virtual/_rollupPluginBabelHelpers.j
|
|
|
25
25
|
* <li>Item 3</li>
|
|
26
26
|
* </ul>
|
|
27
27
|
* --> "Item 1Item 2Item 3"
|
|
28
|
-
* @param {
|
|
28
|
+
* @param {ReactNode} node A React node
|
|
29
29
|
* @returns {string}
|
|
30
30
|
*/
|
|
31
31
|
var getNodeTextContent = function getNodeTextContent(node) {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2020, 2024
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
var hasDocument = function hasDocument() {
|
|
9
|
+
return typeof document !== 'undefined';
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export { hasDocument };
|