@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
|
@@ -10,7 +10,6 @@ import React__default, { forwardRef, useState, useRef, useEffect, createContext
|
|
|
10
10
|
import PropTypes from '../../node_modules/prop-types/index.js';
|
|
11
11
|
import cx from 'classnames';
|
|
12
12
|
import { Form } from '@carbon/react';
|
|
13
|
-
import wrapFocus from '../../global/js/utils/wrapFocus.js';
|
|
14
13
|
import { TearsheetShell } from '../Tearsheet/TearsheetShell.js';
|
|
15
14
|
import { pkg } from '../../settings.js';
|
|
16
15
|
import { getDevtoolsProps } from '../../global/js/utils/devtools.js';
|
|
@@ -30,17 +29,12 @@ var blockClass = "".concat(pkg.prefix, "--tearsheet-create");
|
|
|
30
29
|
// This is a general context for the steps container
|
|
31
30
|
// containing information about the state of the container
|
|
32
31
|
// and providing some callback methods for steps to use
|
|
32
|
+
|
|
33
33
|
var StepsContext = /*#__PURE__*/createContext(null);
|
|
34
34
|
|
|
35
35
|
// This is a context supplied separately to each step in the container
|
|
36
36
|
// to let it know what number it is in the sequence of steps
|
|
37
37
|
var StepNumberContext = /*#__PURE__*/createContext(-1);
|
|
38
|
-
|
|
39
|
-
// Default values for props
|
|
40
|
-
var defaults = {
|
|
41
|
-
verticalPosition: 'normal',
|
|
42
|
-
influencerWidth: 'narrow'
|
|
43
|
-
};
|
|
44
38
|
var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
45
39
|
var backButtonText = _ref.backButtonText,
|
|
46
40
|
cancelButtonText = _ref.cancelButtonText,
|
|
@@ -48,7 +42,7 @@ var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
48
42
|
className = _ref.className,
|
|
49
43
|
description = _ref.description,
|
|
50
44
|
_ref$influencerWidth = _ref.influencerWidth,
|
|
51
|
-
influencerWidth = _ref$influencerWidth === void 0 ?
|
|
45
|
+
influencerWidth = _ref$influencerWidth === void 0 ? 'narrow' : _ref$influencerWidth,
|
|
52
46
|
initialStep = _ref.initialStep,
|
|
53
47
|
label = _ref.label,
|
|
54
48
|
nextButtonText = _ref.nextButtonText,
|
|
@@ -60,7 +54,7 @@ var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
60
54
|
submitButtonText = _ref.submitButtonText,
|
|
61
55
|
title = _ref.title,
|
|
62
56
|
_ref$verticalPosition = _ref.verticalPosition,
|
|
63
|
-
verticalPosition = _ref$verticalPosition === void 0 ?
|
|
57
|
+
verticalPosition = _ref$verticalPosition === void 0 ? 'normal' : _ref$verticalPosition,
|
|
64
58
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
65
59
|
var _useState = useState([]),
|
|
66
60
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -106,7 +100,7 @@ var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
106
100
|
_useState22 = _slicedToArray(_useState21, 2),
|
|
107
101
|
firstIncludedStep = _useState22[0],
|
|
108
102
|
setFirstIncludedStep = _useState22[1];
|
|
109
|
-
var _useState23 = useState(
|
|
103
|
+
var _useState23 = useState(),
|
|
110
104
|
_useState24 = _slicedToArray(_useState23, 2),
|
|
111
105
|
lastIncludedStep = _useState24[0],
|
|
112
106
|
setLastIncludedStep = _useState24[1];
|
|
@@ -114,7 +108,7 @@ var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
114
108
|
currentStep: currentStep,
|
|
115
109
|
open: open
|
|
116
110
|
});
|
|
117
|
-
var contentRef = useRef();
|
|
111
|
+
var contentRef = useRef(null);
|
|
118
112
|
useEffect(function () {
|
|
119
113
|
var firstItem = stepData.findIndex(function (item) {
|
|
120
114
|
return item === null || item === void 0 ? void 0 : item.shouldIncludeStep;
|
|
@@ -144,9 +138,11 @@ var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
144
138
|
useResetCreateComponent({
|
|
145
139
|
firstIncludedStep: firstIncludedStep,
|
|
146
140
|
previousState: previousState,
|
|
141
|
+
/**@ts-ignore */
|
|
147
142
|
open: open,
|
|
148
143
|
setCurrentStep: setCurrentStep,
|
|
149
144
|
stepData: stepData,
|
|
145
|
+
/**@ts-ignore */
|
|
150
146
|
initialStep: initialStep,
|
|
151
147
|
totalSteps: stepData === null || stepData === void 0 ? void 0 : stepData.length,
|
|
152
148
|
componentName: componentName
|
|
@@ -161,6 +157,7 @@ var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
161
157
|
setCurrentStep: setCurrentStep,
|
|
162
158
|
setIsSubmitting: setIsSubmitting,
|
|
163
159
|
setShouldViewAll: setShouldViewAll,
|
|
160
|
+
/**@ts-ignore */
|
|
164
161
|
setLoadingPrevious: setLoadingPrevious,
|
|
165
162
|
loadingPrevious: loadingPrevious,
|
|
166
163
|
onClose: onClose,
|
|
@@ -176,43 +173,26 @@ var CreateTearsheet = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
176
173
|
componentBlockClass: blockClass,
|
|
177
174
|
setCreateComponentActions: setCreateTearsheetActions
|
|
178
175
|
});
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
/* istanbul ignore next */
|
|
182
|
-
var handleBlur = function handleBlur(_ref2) {
|
|
183
|
-
var oldActiveNode = _ref2.target,
|
|
184
|
-
currentActiveNode = _ref2.relatedTarget;
|
|
185
|
-
var visibleStepInnerContent = document.querySelector(".".concat(pkg.prefix, "--tearsheet__body"));
|
|
186
|
-
if (open && visibleStepInnerContent) {
|
|
187
|
-
wrapFocus({
|
|
188
|
-
bodyNode: visibleStepInnerContent,
|
|
189
|
-
currentActiveNode: currentActiveNode,
|
|
190
|
-
oldActiveNode: oldActiveNode
|
|
191
|
-
});
|
|
192
|
-
}
|
|
193
|
-
};
|
|
194
|
-
return /*#__PURE__*/React__default.createElement(TearsheetShell, _extends({}, rest, getDevtoolsProps(componentName), {
|
|
176
|
+
return /*#__PURE__*/React__default.createElement(TearsheetShell, _extends({}, getDevtoolsProps(componentName), rest, {
|
|
177
|
+
ref: ref,
|
|
195
178
|
actions: createTearsheetActions,
|
|
196
179
|
className: cx(blockClass, className),
|
|
197
180
|
description: description,
|
|
198
|
-
hasCloseIcon: false,
|
|
199
181
|
influencer: /*#__PURE__*/React__default.createElement(CreateInfluencer, {
|
|
200
182
|
currentStep: currentStep,
|
|
201
183
|
stepData: stepData
|
|
202
184
|
}),
|
|
203
|
-
influencerPosition: "left",
|
|
204
185
|
influencerWidth: influencerWidth,
|
|
205
186
|
label: label,
|
|
206
187
|
onClose: onClose,
|
|
207
188
|
open: open,
|
|
208
|
-
size:
|
|
189
|
+
size: 'wide',
|
|
209
190
|
slug: slug,
|
|
210
191
|
title: title,
|
|
211
192
|
verticalPosition: verticalPosition,
|
|
212
|
-
|
|
193
|
+
closeIconDescription: ''
|
|
213
194
|
}), /*#__PURE__*/React__default.createElement("div", {
|
|
214
195
|
className: "".concat(blockClass, "__content"),
|
|
215
|
-
onBlur: handleBlur,
|
|
216
196
|
ref: contentRef
|
|
217
197
|
}, /*#__PURE__*/React__default.createElement(Form, {
|
|
218
198
|
"aria-label": title
|
|
@@ -44,7 +44,7 @@ var useParentDimensions = function useParentDimensions(hooks) {
|
|
|
44
44
|
setTableHeight(newHeight);
|
|
45
45
|
};
|
|
46
46
|
Object.assign(instance, {
|
|
47
|
-
tableHeight: tableHeight,
|
|
47
|
+
tableHeight: tableHeight || instance.tableHeight,
|
|
48
48
|
rootRef: rootRef,
|
|
49
49
|
headRef: headRef,
|
|
50
50
|
innerListRef: innerListRef,
|
|
@@ -1,7 +1,109 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2022, 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
|
+
import React, { ReactNode } from 'react';
|
|
8
|
+
import { CarbonIconType } from '@carbon/icons-react/lib/CarbonIcon';
|
|
9
|
+
type ActionIcon = {
|
|
10
|
+
id: string;
|
|
11
|
+
icon: CarbonIconType;
|
|
12
|
+
onKeyDown?(): void;
|
|
13
|
+
onClick?(): void;
|
|
14
|
+
iconDescription: string;
|
|
15
|
+
href?: string;
|
|
16
|
+
};
|
|
17
|
+
interface EditUpdateCardsProps {
|
|
18
|
+
/**
|
|
19
|
+
* Icons that are displayed on card. Refer to design documentation for implementation guidelines
|
|
20
|
+
*/
|
|
21
|
+
actionIcons?: Array<ActionIcon>;
|
|
22
|
+
/**
|
|
23
|
+
* Determines if the action icons are on the top or bottom of the card
|
|
24
|
+
*/
|
|
25
|
+
actionsPlacement?: 'top' | 'bottom';
|
|
26
|
+
/**
|
|
27
|
+
* Optional label for the top of the card.
|
|
28
|
+
*/
|
|
29
|
+
className?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Optional header description
|
|
32
|
+
*/
|
|
33
|
+
description?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Edit mode children
|
|
36
|
+
*/
|
|
37
|
+
editChildren?: ReactNode;
|
|
38
|
+
/**
|
|
39
|
+
* Edit mode
|
|
40
|
+
*/
|
|
41
|
+
editMode?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* Optional label for the top of the card
|
|
44
|
+
*/
|
|
45
|
+
label?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Function that's called from the primary button or action icon
|
|
48
|
+
*/
|
|
49
|
+
onPrimaryButtonClick?(): void;
|
|
50
|
+
/**
|
|
51
|
+
* Function that's called from the secondary button or action icon
|
|
52
|
+
*/
|
|
53
|
+
onSecondaryButtonClick?(): void;
|
|
54
|
+
/**
|
|
55
|
+
* Preview mode children
|
|
56
|
+
*/
|
|
57
|
+
previewChildren?: ReactNode;
|
|
58
|
+
/**
|
|
59
|
+
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
60
|
+
*/
|
|
61
|
+
primaryButtonIcon?: CarbonIconType;
|
|
62
|
+
/**
|
|
63
|
+
* Establishes the kind of button displayed for the primary button
|
|
64
|
+
*/
|
|
65
|
+
primaryButtonKind?: 'primary' | 'ghost';
|
|
66
|
+
/**
|
|
67
|
+
* Determines if the primary button is on the top or bottom of the card
|
|
68
|
+
*/
|
|
69
|
+
primaryButtonPlacement?: 'top' | 'bottom';
|
|
70
|
+
/**
|
|
71
|
+
* The text that's displayed in the primary button
|
|
72
|
+
*/
|
|
73
|
+
primaryButtonText?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Optionally specify an href for your Button to become an <a> element
|
|
76
|
+
*/
|
|
77
|
+
secondaryButtonHref?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
80
|
+
*/
|
|
81
|
+
secondaryButtonIcon?: CarbonIconType;
|
|
82
|
+
/**
|
|
83
|
+
* Establishes the kind of button displayed for the secondary button
|
|
84
|
+
*/
|
|
85
|
+
secondaryButtonKind?: 'secondary' | 'ghost';
|
|
86
|
+
/**
|
|
87
|
+
* Determines if the secondary button is on the top or bottom of the card
|
|
88
|
+
*/
|
|
89
|
+
secondaryButtonPlacement?: 'top' | 'bottom';
|
|
90
|
+
/**
|
|
91
|
+
* The text that's displayed in the secondary button
|
|
92
|
+
*/
|
|
93
|
+
secondaryButtonText?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Title that's displayed at the top of the card
|
|
96
|
+
*/
|
|
97
|
+
title?: string;
|
|
98
|
+
/**
|
|
99
|
+
* Determines title size
|
|
100
|
+
*/
|
|
101
|
+
titleSize?: 'default' | 'large';
|
|
102
|
+
}
|
|
1
103
|
/**
|
|
2
104
|
Editable cards allow a user to view, modify, and save the content contained within the card.
|
|
3
105
|
These cards are generally used in instances where a user needs to make changes to a resource instances
|
|
4
106
|
(ex. configuration details), account plan, etc. Editable cards allow a user to edit something within context.
|
|
5
107
|
*/
|
|
6
|
-
export let EditUpdateCards: React.ForwardRefExoticComponent<React.RefAttributes<
|
|
7
|
-
|
|
108
|
+
export declare let EditUpdateCards: React.ForwardRefExoticComponent<EditUpdateCardsProps & React.RefAttributes<HTMLDivElement>>;
|
|
109
|
+
export {};
|
|
@@ -109,6 +109,7 @@ EditUpdateCards.propTypes = {
|
|
|
109
109
|
/**
|
|
110
110
|
* Icons that are displayed on card. Refer to design documentation for implementation guidelines
|
|
111
111
|
*/
|
|
112
|
+
/**@ts-ignore */
|
|
112
113
|
actionIcons: PropTypes.arrayOf(PropTypes.shape({
|
|
113
114
|
id: PropTypes.string,
|
|
114
115
|
icon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
@@ -156,6 +157,7 @@ EditUpdateCards.propTypes = {
|
|
|
156
157
|
/**
|
|
157
158
|
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
158
159
|
*/
|
|
160
|
+
/**@ts-ignore */
|
|
159
161
|
primaryButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
160
162
|
/**
|
|
161
163
|
* Establishes the kind of button displayed for the primary button
|
|
@@ -176,6 +178,7 @@ EditUpdateCards.propTypes = {
|
|
|
176
178
|
/**
|
|
177
179
|
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
178
180
|
*/
|
|
181
|
+
/**@ts-ignore */
|
|
179
182
|
secondaryButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
180
183
|
/**
|
|
181
184
|
* Establishes the kind of button displayed for the secondary button
|
|
@@ -1,5 +1,64 @@
|
|
|
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
|
+
/// <reference path="../../../../src/custom-typings/index.d.ts" />
|
|
8
|
+
import React, { ReactNode } from 'react';
|
|
9
|
+
import { ButtonProps } from '@carbon/react';
|
|
10
|
+
import { CarbonIconType } from '@carbon/icons-react/lib/CarbonIcon';
|
|
11
|
+
interface NotificationsEmptyStateProps {
|
|
12
|
+
/**
|
|
13
|
+
* Empty state action button
|
|
14
|
+
*/
|
|
15
|
+
action?: {
|
|
16
|
+
kind?: 'primary' | 'secondary' | 'tertiary';
|
|
17
|
+
renderIcon?: CarbonIconType;
|
|
18
|
+
onClick?: ButtonProps['onClick'];
|
|
19
|
+
text?: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Provide an optional class to be applied to the containing node.
|
|
23
|
+
*/
|
|
24
|
+
className?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The alt text for empty state svg images. If not provided , title will be used.
|
|
27
|
+
*/
|
|
28
|
+
illustrationDescription?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Designates the position of the illustration relative to the content
|
|
31
|
+
*/
|
|
32
|
+
illustrationPosition?: 'top' | 'right' | 'bottom' | 'left';
|
|
33
|
+
/**
|
|
34
|
+
* Empty state illustration theme variations.
|
|
35
|
+
* To ensure you use the correct themed illustrations, you can conditionally specify light or dark
|
|
36
|
+
* based on your app's current theme value. Example:
|
|
37
|
+
* `illustrationTheme={appTheme === ('carbon--g100' || 'carbon--g90') ? 'dark' : 'light'}`
|
|
38
|
+
*/
|
|
39
|
+
illustrationTheme?: 'light' | 'dark';
|
|
40
|
+
/**
|
|
41
|
+
* Empty state link object
|
|
42
|
+
*/
|
|
43
|
+
link?: {
|
|
44
|
+
text?: string | ReactNode;
|
|
45
|
+
href?: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Empty state size
|
|
49
|
+
*/
|
|
50
|
+
size?: 'lg' | 'sm';
|
|
51
|
+
/**
|
|
52
|
+
* Empty state subtitle
|
|
53
|
+
*/
|
|
54
|
+
subtitle: ReactNode;
|
|
55
|
+
/**
|
|
56
|
+
* Empty state title
|
|
57
|
+
*/
|
|
58
|
+
title: ReactNode;
|
|
59
|
+
}
|
|
1
60
|
/**
|
|
2
61
|
* The `EmptyState` component follows the Carbon guidelines for empty states with some added specifications around illustration usage. For additional usage guidelines and documentation please refer to the links above.
|
|
3
62
|
*/
|
|
4
|
-
export let NotificationsEmptyState: React.ForwardRefExoticComponent<React.RefAttributes<
|
|
5
|
-
|
|
63
|
+
export declare let NotificationsEmptyState: React.ForwardRefExoticComponent<NotificationsEmptyStateProps & React.RefAttributes<HTMLDivElement>>;
|
|
64
|
+
export {};
|
|
@@ -17,11 +17,9 @@ import NotificationsIllustration from '../assets/NotificationsIllustration.js';
|
|
|
17
17
|
import { defaults } from '../EmptyState.js';
|
|
18
18
|
|
|
19
19
|
var _excluded = ["action", "className", "illustrationPosition", "illustrationTheme", "illustrationDescription", "link", "size", "subtitle", "title"];
|
|
20
|
-
|
|
21
20
|
// The block part of our conventional BEM class names (blockClass__E--M).
|
|
22
21
|
var blockClass = "".concat(pkg.prefix, "--empty-state");
|
|
23
22
|
var componentName = 'NotificationsEmptyState';
|
|
24
|
-
|
|
25
23
|
/**
|
|
26
24
|
* The `EmptyState` component follows the Carbon guidelines for empty states with some added specifications around illustration usage. For additional usage guidelines and documentation please refer to the links above.
|
|
27
25
|
*/
|
|
@@ -50,7 +48,7 @@ var NotificationsEmptyState = /*#__PURE__*/React__default.forwardRef(function (_
|
|
|
50
48
|
link: link,
|
|
51
49
|
size: size,
|
|
52
50
|
subtitle: subtitle,
|
|
53
|
-
title: title
|
|
51
|
+
title: title || ''
|
|
54
52
|
}));
|
|
55
53
|
});
|
|
56
54
|
|
|
@@ -1,2 +1,97 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import React, { PropsWithChildren, ReactNode } from 'react';
|
|
2
|
+
type ActionIcon = {
|
|
3
|
+
id?: string;
|
|
4
|
+
icon?: () => void | object;
|
|
5
|
+
onKeydown?: () => void;
|
|
6
|
+
onClick?: () => void;
|
|
7
|
+
iconDescription?: string;
|
|
8
|
+
href?: string;
|
|
9
|
+
};
|
|
10
|
+
interface ExpressiveCardProps extends PropsWithChildren {
|
|
11
|
+
/**
|
|
12
|
+
* Icons that are displayed on card. Refer to design documentation for implementation guidelines. Note- href will supersede onClick
|
|
13
|
+
*/
|
|
14
|
+
actionIcons?: ActionIcon[];
|
|
15
|
+
/**
|
|
16
|
+
* Content that shows in the body of the card
|
|
17
|
+
*/
|
|
18
|
+
/**
|
|
19
|
+
* Optional user provided class
|
|
20
|
+
*/
|
|
21
|
+
className?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Optional header description
|
|
24
|
+
*/
|
|
25
|
+
description?: string | object | ReactNode;
|
|
26
|
+
/**
|
|
27
|
+
* Optional label for the top of the card
|
|
28
|
+
*/
|
|
29
|
+
label?: string | object | ReactNode;
|
|
30
|
+
/**
|
|
31
|
+
* Optional media content like an image to be placed in the card
|
|
32
|
+
*/
|
|
33
|
+
media?: ReactNode;
|
|
34
|
+
/**
|
|
35
|
+
* Establishes the position of the media in the card
|
|
36
|
+
*/
|
|
37
|
+
mediaPosition?: 'top' | 'left';
|
|
38
|
+
/**
|
|
39
|
+
* Provides the callback for a clickable card
|
|
40
|
+
*/
|
|
41
|
+
onClick?: () => void;
|
|
42
|
+
/**
|
|
43
|
+
* Function that's called from the primary button or action icon
|
|
44
|
+
*/
|
|
45
|
+
onPrimaryButtonClick?: () => void;
|
|
46
|
+
/**
|
|
47
|
+
* Function that's called from the secondary button
|
|
48
|
+
*/
|
|
49
|
+
onSecondaryButtonClick?: () => void;
|
|
50
|
+
/**
|
|
51
|
+
* Provides the icon that's displayed at the top of the card
|
|
52
|
+
*/
|
|
53
|
+
pictogram?: () => void | object;
|
|
54
|
+
/**
|
|
55
|
+
* Optionally specify an href for your Button to become an <a> element
|
|
56
|
+
*/
|
|
57
|
+
primaryButtonHref?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
60
|
+
*/
|
|
61
|
+
primaryButtonIcon?: () => void | object;
|
|
62
|
+
/**
|
|
63
|
+
* Establishes the kind of button displayed for the primary button
|
|
64
|
+
*/
|
|
65
|
+
primaryButtonKind?: 'primary' | 'ghost';
|
|
66
|
+
/**
|
|
67
|
+
* The text that's displayed in the primary button
|
|
68
|
+
*/
|
|
69
|
+
primaryButtonText?: string;
|
|
70
|
+
/**
|
|
71
|
+
* Optionally specify an href for your Button to become an <a> element
|
|
72
|
+
*/
|
|
73
|
+
secondaryButtonHref?: string;
|
|
74
|
+
/**
|
|
75
|
+
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
76
|
+
*/
|
|
77
|
+
secondaryButtonIcon?: () => void | object;
|
|
78
|
+
/**
|
|
79
|
+
* Establishes the kind of button displayed for the secondary button
|
|
80
|
+
*/
|
|
81
|
+
secondaryButtonKind?: 'secondary' | 'ghost';
|
|
82
|
+
/**
|
|
83
|
+
* The text that's displayed in the secondary button
|
|
84
|
+
*/
|
|
85
|
+
secondaryButtonText?: string;
|
|
86
|
+
/**
|
|
87
|
+
* **Experimental:** For all cases a `Slug` component can be provided.
|
|
88
|
+
* Clickable tiles only accept a boolean value of true and display a hollow slug.
|
|
89
|
+
*/
|
|
90
|
+
slug?: ReactNode | boolean;
|
|
91
|
+
/**
|
|
92
|
+
* Title that's displayed at the top of the card
|
|
93
|
+
*/
|
|
94
|
+
title?: string | object | ReactNode;
|
|
95
|
+
}
|
|
96
|
+
export declare let ExpressiveCard: React.ForwardRefExoticComponent<ExpressiveCardProps & React.RefAttributes<HTMLDivElement>>;
|
|
97
|
+
export {};
|
|
@@ -27,6 +27,7 @@ ExpressiveCard.propTypes = {
|
|
|
27
27
|
/**
|
|
28
28
|
* Icons that are displayed on card. Refer to design documentation for implementation guidelines. Note- href will supersede onClick
|
|
29
29
|
*/
|
|
30
|
+
/**@ts-ignore */
|
|
30
31
|
actionIcons: PropTypes.arrayOf(PropTypes.shape({
|
|
31
32
|
id: PropTypes.string,
|
|
32
33
|
icon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
@@ -74,6 +75,7 @@ ExpressiveCard.propTypes = {
|
|
|
74
75
|
/**
|
|
75
76
|
* Provides the icon that's displayed at the top of the card
|
|
76
77
|
*/
|
|
78
|
+
/**@ts-ignore */
|
|
77
79
|
pictogram: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
78
80
|
/**
|
|
79
81
|
* Optionally specify an href for your Button to become an <a> element
|
|
@@ -82,6 +84,7 @@ ExpressiveCard.propTypes = {
|
|
|
82
84
|
/**
|
|
83
85
|
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
84
86
|
*/
|
|
87
|
+
/**@ts-ignore */
|
|
85
88
|
primaryButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
86
89
|
/**
|
|
87
90
|
* Establishes the kind of button displayed for the primary button
|
|
@@ -98,6 +101,7 @@ ExpressiveCard.propTypes = {
|
|
|
98
101
|
/**
|
|
99
102
|
* Optional prop to allow overriding the icon rendering. Can be a React component class
|
|
100
103
|
*/
|
|
104
|
+
/**@ts-ignore */
|
|
101
105
|
secondaryButtonIcon: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
|
|
102
106
|
/**
|
|
103
107
|
* Establishes the kind of button displayed for the secondary button
|
|
@@ -1,5 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2023, 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, { ReactNode } from 'react';
|
|
8
|
+
interface InlineTipButtonProps {
|
|
9
|
+
/**
|
|
10
|
+
* Provide an optional class to be applied to the containing node.
|
|
11
|
+
*/
|
|
12
|
+
className?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Provide the contents of the InlineTip.
|
|
15
|
+
*/
|
|
16
|
+
children: ReactNode;
|
|
17
|
+
}
|
|
1
18
|
/**
|
|
2
19
|
* This is a standard Carbon button, styled specifically for use inside InlineTip.
|
|
3
20
|
*/
|
|
4
|
-
export let InlineTipButton: React.ForwardRefExoticComponent<
|
|
5
|
-
|
|
21
|
+
export declare let InlineTipButton: React.ForwardRefExoticComponent<InlineTipButtonProps & {
|
|
22
|
+
children?: React.ReactNode;
|
|
23
|
+
} & React.RefAttributes<HTMLButtonElement>>;
|
|
24
|
+
export {};
|
|
@@ -1,8 +1,106 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2024, 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, { PropsWithChildren, ReactNode } from 'react';
|
|
8
|
+
type Media = {
|
|
9
|
+
breakpoints?: {
|
|
10
|
+
xlg?: number;
|
|
11
|
+
lg?: number;
|
|
12
|
+
};
|
|
13
|
+
} & ({
|
|
14
|
+
render?: () => ReactNode;
|
|
15
|
+
filePaths?: never;
|
|
16
|
+
} | {
|
|
17
|
+
render?: never;
|
|
18
|
+
filePaths?: string[];
|
|
19
|
+
});
|
|
20
|
+
interface InterstitialScreenProps extends PropsWithChildren {
|
|
21
|
+
/**
|
|
22
|
+
* Provide the contents of the InterstitialScreen.
|
|
23
|
+
*/
|
|
24
|
+
children: ReactNode;
|
|
25
|
+
/**
|
|
26
|
+
* Provide an optional class to be applied to the containing node.
|
|
27
|
+
*/
|
|
28
|
+
className?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Tooltip text and aria label for the Close button icon.
|
|
31
|
+
*/
|
|
32
|
+
closeIconDescription?: string;
|
|
33
|
+
/**
|
|
34
|
+
* The domain this app belongs to, e.g. "IBM Cloud Pak".
|
|
35
|
+
*/
|
|
36
|
+
domainName?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Provide an optional class to be applied to the <header> element >.
|
|
39
|
+
*/
|
|
40
|
+
headerClassName?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Provide an optional class to be applied to the <header> element >.
|
|
43
|
+
*/
|
|
44
|
+
headerTitle?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Optional parameter to hide the progress indicator when multiple steps are used.
|
|
47
|
+
*/
|
|
48
|
+
hideProgressIndicator?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* The aria label applied to the Interstitial Screen component
|
|
51
|
+
*/
|
|
52
|
+
interstitialAriaLabel?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Specifies whether the component is shown as a full-screen
|
|
55
|
+
* experience, else it is shown as a modal by default.
|
|
56
|
+
*/
|
|
57
|
+
isFullScreen?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Specifies whether the component is currently open.
|
|
60
|
+
*/
|
|
61
|
+
isOpen?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* The object describing an image in one of two shapes.
|
|
64
|
+
*
|
|
65
|
+
* If a single media element is required, use `{render}`.
|
|
66
|
+
*
|
|
67
|
+
* If a stepped animation is required, use `{filePaths}`.
|
|
68
|
+
*
|
|
69
|
+
* Breakpoints are used to set the media content column size as well as the remainder for the main content areas column size.
|
|
70
|
+
* Medium and small breakpoints will be set to 0 internally to focus on the main content area.
|
|
71
|
+
* @see {@link MEDIA_PROP_TYPE}.
|
|
72
|
+
*/
|
|
73
|
+
media?: Media;
|
|
74
|
+
/**
|
|
75
|
+
* The label for the Next button.
|
|
76
|
+
*/
|
|
77
|
+
nextButtonLabel?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Function to call when the close button is clicked.
|
|
80
|
+
*/
|
|
81
|
+
onClose?: () => void;
|
|
82
|
+
/**
|
|
83
|
+
* The label for the Previous button.
|
|
84
|
+
*/
|
|
85
|
+
previousButtonLabel?: string;
|
|
86
|
+
/**
|
|
87
|
+
* The name of this app, e.g. "QRadar".
|
|
88
|
+
*/
|
|
89
|
+
productName?: string;
|
|
90
|
+
/**
|
|
91
|
+
* The label for the skip button.
|
|
92
|
+
*/
|
|
93
|
+
skipButtonLabel?: string;
|
|
94
|
+
/**
|
|
95
|
+
* The label for the start button.
|
|
96
|
+
*/
|
|
97
|
+
startButtonLabel?: string;
|
|
98
|
+
}
|
|
1
99
|
/**
|
|
2
100
|
* InterstitialScreen can be a full page or an overlay, and are
|
|
3
101
|
* shown on the first time a user accesses a new experience
|
|
4
102
|
* (e.g. upon first login or first time opening a page where a
|
|
5
103
|
* newly purchased capability is presented).
|
|
6
104
|
*/
|
|
7
|
-
export let InterstitialScreen: React.ForwardRefExoticComponent<React.RefAttributes<
|
|
8
|
-
|
|
105
|
+
export declare let InterstitialScreen: React.ForwardRefExoticComponent<InterstitialScreenProps & React.RefAttributes<HTMLDivElement>>;
|
|
106
|
+
export {};
|