@carbon/ibm-products 2.78.0 → 2.79.0-rc.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/carbon.css +1762 -1036
- package/css/carbon.css.map +1 -1
- package/css/index-full-carbon.css +2342 -1239
- 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 +450 -98
- 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 +624 -247
- 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 +1759 -873
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +111 -108
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +1 -1
- package/es/components/InterstitialScreen/InterstitialScreenBody.js +15 -8
- package/es/components/InterstitialScreen/InterstitialScreenFooter.js +6 -1
- package/es/components/InterstitialScreen/InterstitialScreenHeader.d.ts +1 -1
- package/es/components/InterstitialScreen/InterstitialScreenHeader.js +1 -1
- package/es/components/InterstitialScreen/{_story-assets/InterstitialScreenView/InterstitialScreenView.d.ts → InterstitialScreenView.d.ts} +2 -3
- package/es/components/InterstitialScreen/InterstitialScreenView.js +60 -0
- package/es/components/InterstitialScreen/index.d.ts +1 -0
- package/es/components/Tearsheet/next/Tearsheet.d.ts +85 -0
- package/es/components/Tearsheet/next/Tearsheet.js +129 -0
- package/es/components/Tearsheet/next/TearsheetBody.d.ts +67 -0
- package/es/components/Tearsheet/next/TearsheetBody.js +121 -0
- package/es/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
- package/es/components/Tearsheet/next/TearsheetHeader.js +121 -0
- package/es/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
- package/es/components/Tearsheet/next/TearsheetHeaderActions.js +101 -0
- package/es/components/Tearsheet/next/TearsheetHeaderContent.d.ts +28 -0
- package/es/components/Tearsheet/next/TearsheetHeaderContent.js +67 -0
- package/es/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +22 -0
- package/es/components/Tearsheet/next/context.d.ts +26 -0
- package/es/components/Tearsheet/next/context.js +26 -0
- package/es/components/Tearsheet/next/index.d.ts +12 -0
- package/es/components/Tearsheet/next/index.js +8 -0
- package/es/components/Toolbar/Toolbar.js +1 -5
- package/es/components/TruncatedText/TruncatedText.d.ts +2 -3
- package/es/components/TruncatedText/TruncatedText.js +1 -2
- package/es/components/TruncatedText/index.d.ts +1 -0
- package/es/components/index.d.ts +2 -1
- package/es/global/js/hooks/useCollapsible.d.ts +19 -0
- package/es/global/js/hooks/useCollapsible.js +68 -0
- package/es/global/js/hooks/useMatchMedia.d.ts +13 -0
- package/es/global/js/hooks/useMatchMedia.js +33 -0
- package/es/index.js +4 -1
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-10.js +845 -805
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +476 -476
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +111 -108
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +1 -1
- package/lib/components/InterstitialScreen/InterstitialScreenBody.js +15 -8
- package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +6 -1
- package/lib/components/InterstitialScreen/InterstitialScreenHeader.d.ts +1 -1
- package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +1 -1
- package/lib/components/InterstitialScreen/{_story-assets/InterstitialScreenView/InterstitialScreenView.d.ts → InterstitialScreenView.d.ts} +2 -3
- package/lib/components/InterstitialScreen/InterstitialScreenView.js +62 -0
- package/lib/components/InterstitialScreen/index.d.ts +1 -0
- package/lib/components/Tearsheet/next/Tearsheet.d.ts +85 -0
- package/lib/components/Tearsheet/next/Tearsheet.js +131 -0
- package/lib/components/Tearsheet/next/TearsheetBody.d.ts +67 -0
- package/lib/components/Tearsheet/next/TearsheetBody.js +128 -0
- package/lib/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
- package/lib/components/Tearsheet/next/TearsheetHeader.js +127 -0
- package/lib/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
- package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +104 -0
- package/lib/components/Tearsheet/next/TearsheetHeaderContent.d.ts +28 -0
- package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +71 -0
- package/lib/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +22 -0
- package/lib/components/Tearsheet/next/context.d.ts +26 -0
- package/lib/components/Tearsheet/next/context.js +29 -0
- package/lib/components/Tearsheet/next/index.d.ts +12 -0
- package/lib/components/Tearsheet/next/index.js +14 -0
- package/lib/components/Toolbar/Toolbar.js +1 -5
- package/lib/components/TruncatedText/TruncatedText.d.ts +2 -3
- package/lib/components/TruncatedText/TruncatedText.js +4 -3
- package/lib/components/TruncatedText/index.d.ts +1 -0
- package/lib/components/index.d.ts +2 -1
- package/lib/global/js/hooks/useCollapsible.d.ts +19 -0
- package/lib/global/js/hooks/useCollapsible.js +70 -0
- package/lib/global/js/hooks/useMatchMedia.d.ts +13 -0
- package/lib/global/js/hooks/useMatchMedia.js +35 -0
- package/lib/index.js +15 -14
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-10.js +863 -823
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-3.js +477 -477
- package/package.json +16 -15
- package/scss/components/FilterSummary/_filter-summary.scss +1 -1
- package/scss/components/PageHeader/_page-header.scss +4 -0
- package/scss/components/SidePanel/_side-panel.scss +5 -5
- package/scss/components/TagOverflow/_tag-overflow.scss +38 -38
- package/scss/components/TagSet/_tag-set.scss +28 -12
- package/scss/components/Tearsheet/_tearsheet.scss +8 -1
- package/scss/components/Tearsheet/_tearsheet_next.scss +408 -0
- package/telemetry.yml +32 -6
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2020, 2025
|
|
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
|
+
'use strict';
|
|
9
|
+
|
|
10
|
+
var React = require('react');
|
|
11
|
+
var settings = require('../../../settings.js');
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* -------------
|
|
15
|
+
* Context setup
|
|
16
|
+
* -------------
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
const TearsheetContext = /*#__PURE__*/React.createContext({
|
|
20
|
+
hasCloseIcon: true,
|
|
21
|
+
fullyCollapsed: false,
|
|
22
|
+
disableHeaderCollapse: false,
|
|
23
|
+
variant: 'wide',
|
|
24
|
+
isSm: false
|
|
25
|
+
});
|
|
26
|
+
const blockClass = `${settings.pkg.prefix}--tearsheet__next`;
|
|
27
|
+
|
|
28
|
+
exports.TearsheetContext = TearsheetContext;
|
|
29
|
+
exports.blockClass = blockClass;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2025, 2025
|
|
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
|
+
export { Tearsheet } from './Tearsheet';
|
|
8
|
+
export type { TearsheetProps, TearsheetComponentType, FooterProps, } from './Tearsheet';
|
|
9
|
+
export type { MainContentProps, SummaryContentProps, TearsheetBodyProps, InfluencerProps, } from './TearsheetBody';
|
|
10
|
+
export type { TearsheetHeaderProps, TearsheetNavigationBarProps, TearsheetScrollButtonProps, } from './TearsheetHeader';
|
|
11
|
+
export type { TearsheetHeaderActionItemProps, TearsheetHeaderActionsProps, } from './TearsheetHeaderActions';
|
|
12
|
+
export type { TearsheetHeaderContentProps } from './TearsheetHeaderContent';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2020, 2025
|
|
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
|
+
'use strict';
|
|
9
|
+
|
|
10
|
+
var Tearsheet = require('./Tearsheet.js');
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
exports.Tearsheet = Tearsheet.Tearsheet;
|
|
@@ -15,11 +15,7 @@ var cx = require('classnames');
|
|
|
15
15
|
var devtools = require('../../global/js/utils/devtools.js');
|
|
16
16
|
var settings = require('../../settings.js');
|
|
17
17
|
|
|
18
|
-
const {
|
|
19
|
-
checkComponentEnabled,
|
|
20
|
-
prefix
|
|
21
|
-
} = settings.pkg;
|
|
22
|
-
const blockClass = `${prefix}--toolbar`;
|
|
18
|
+
const blockClass = `${settings.pkg.prefix}--toolbar`;
|
|
23
19
|
const ToolbarContext = /*#__PURE__*/React.createContext({});
|
|
24
20
|
|
|
25
21
|
/** Toolbars are a collection of action items that organize a program’s interaction patterns into a series of closely related commands. */
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import React from 'react';
|
|
8
8
|
import { PopoverAlignment } from '@carbon/react';
|
|
9
|
-
interface TruncatedTextProps {
|
|
9
|
+
export interface TruncatedTextProps {
|
|
10
10
|
/**
|
|
11
11
|
* Specify how the tooltip should align with the content in tooltip variant. Refer to Carbon tooltip docs for additional information.
|
|
12
12
|
*/
|
|
@@ -44,5 +44,4 @@ interface TruncatedTextProps {
|
|
|
44
44
|
*/
|
|
45
45
|
value?: string;
|
|
46
46
|
}
|
|
47
|
-
export declare
|
|
48
|
-
export {};
|
|
47
|
+
export declare const TruncatedText: React.ForwardRefExoticComponent<TruncatedTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -17,7 +17,7 @@ var useTruncatedText = require('./useTruncatedText.js');
|
|
|
17
17
|
|
|
18
18
|
const blockClass = `${settings.pkg.prefix}--truncated-text`;
|
|
19
19
|
const componentName = 'TruncatedText';
|
|
20
|
-
|
|
20
|
+
const TruncatedText = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
21
21
|
const {
|
|
22
22
|
align = 'top',
|
|
23
23
|
autoAlign = false,
|
|
@@ -84,5 +84,6 @@ exports.TruncatedText = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
|
84
84
|
ref: ref
|
|
85
85
|
}, devtools.getDevtoolsProps(componentName)), truncated ? truncatedBody : valueBody);
|
|
86
86
|
});
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
TruncatedText.displayName = componentName;
|
|
88
|
+
|
|
89
|
+
exports.TruncatedText = TruncatedText;
|
|
@@ -34,7 +34,6 @@ export * from './StringFormatter';
|
|
|
34
34
|
export * from './TagOverflow';
|
|
35
35
|
export * from './TagSet';
|
|
36
36
|
export * from './Tearsheet';
|
|
37
|
-
export * from './TruncatedText';
|
|
38
37
|
export * from './UserAvatar';
|
|
39
38
|
export * from './WebTerminal';
|
|
40
39
|
/**
|
|
@@ -44,8 +43,10 @@ export * from './WebTerminal';
|
|
|
44
43
|
export * as preview__Coachmark from './Coachmark/next/Coachmark';
|
|
45
44
|
export * as preview__CoachmarkTagline from './Coachmark/next/Coachmark/CoachmarkTagline';
|
|
46
45
|
export * as preview__CoachmarkBeacon from './Coachmark/next/Coachmark/CoachmarkBeacon';
|
|
46
|
+
export { TruncatedText as preview__TruncatedText, type TruncatedTextProps, } from './TruncatedText';
|
|
47
47
|
export { FeatureFlags as preview__FeatureFlags, useFeatureFlag as preview__useFeatureFlag, useFeatureFlags as preview__useFeatureFlags, } from './FeatureFlags';
|
|
48
48
|
export * as preview__PageHeader from './PageHeader/next';
|
|
49
|
+
export * as preview__Tearsheet from './Tearsheet/next';
|
|
49
50
|
export { BigNumber as previewCandidate__BigNumber, type BigNumberProps, } from './BigNumber';
|
|
50
51
|
export { Coachmark as previewCandidate__Coachmark, BEACON_KIND, COACHMARK_OVERLAY_KIND, COACHMARK_ALIGNMENT, useCoachmark, type CoachmarkProps, } from './Coachmark';
|
|
51
52
|
export { CoachmarkBeacon as previewCandidate__CoachmarkBeacon, type CoachmarkBeaconProps, } from './CoachmarkBeacon';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2025, 2025
|
|
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
|
+
interface UseCollapsibleHeaderOptions {
|
|
8
|
+
container: HTMLDivElement | null;
|
|
9
|
+
triggerCollapse: (collapsed: boolean) => void;
|
|
10
|
+
disableHeaderCollapse?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Custom hook to manage collapsible header behavior based on scroll and drag gestures.
|
|
14
|
+
*
|
|
15
|
+
* This avoids relying solely on scroll events because collapsing the header can
|
|
16
|
+
* remove scrollable space, preventing further scroll events from firing.
|
|
17
|
+
*/
|
|
18
|
+
export declare function useCollapsible({ container, triggerCollapse, disableHeaderCollapse, }: UseCollapsibleHeaderOptions): void;
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2020, 2025
|
|
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
|
+
'use strict';
|
|
9
|
+
|
|
10
|
+
var React = require('react');
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Custom hook to manage collapsible header behavior based on scroll and drag gestures.
|
|
14
|
+
*
|
|
15
|
+
* This avoids relying solely on scroll events because collapsing the header can
|
|
16
|
+
* remove scrollable space, preventing further scroll events from firing.
|
|
17
|
+
*/
|
|
18
|
+
function useCollapsible(_ref) {
|
|
19
|
+
let {
|
|
20
|
+
container,
|
|
21
|
+
triggerCollapse,
|
|
22
|
+
disableHeaderCollapse = false
|
|
23
|
+
} = _ref;
|
|
24
|
+
React.useEffect(() => {
|
|
25
|
+
if (!container || disableHeaderCollapse) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
let startY = null;
|
|
29
|
+
let isDragging = false;
|
|
30
|
+
const onPointerDown = e => {
|
|
31
|
+
startY = e.clientY;
|
|
32
|
+
isDragging = true;
|
|
33
|
+
};
|
|
34
|
+
const onPointerMove = e => {
|
|
35
|
+
if (!isDragging || startY === null) {
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
const diffY = startY - e.clientY;
|
|
39
|
+
if (diffY > 5) {
|
|
40
|
+
triggerCollapse(true);
|
|
41
|
+
} else if (diffY < -5) {
|
|
42
|
+
triggerCollapse(false);
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
const onPointerUp = () => {
|
|
46
|
+
isDragging = false;
|
|
47
|
+
startY = null;
|
|
48
|
+
document.body.style.cursor = 'default';
|
|
49
|
+
};
|
|
50
|
+
const onWheel = e => {
|
|
51
|
+
if (e.deltaY > 0) {
|
|
52
|
+
triggerCollapse(true);
|
|
53
|
+
} else if (e.deltaY < 0) {
|
|
54
|
+
triggerCollapse(false);
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
container.addEventListener('pointerdown', onPointerDown);
|
|
58
|
+
container.addEventListener('pointermove', onPointerMove);
|
|
59
|
+
container.addEventListener('pointerup', onPointerUp);
|
|
60
|
+
container.addEventListener('wheel', onWheel);
|
|
61
|
+
return () => {
|
|
62
|
+
container.removeEventListener('pointerdown', onPointerDown);
|
|
63
|
+
container.removeEventListener('pointermove', onPointerMove);
|
|
64
|
+
container.removeEventListener('pointerup', onPointerUp);
|
|
65
|
+
container.removeEventListener('wheel', onWheel);
|
|
66
|
+
};
|
|
67
|
+
}, [container, triggerCollapse, disableHeaderCollapse]);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
exports.useCollapsible = useCollapsible;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2025, 2025
|
|
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
|
+
* Listens to changes in a media query and returns whether it matches.
|
|
9
|
+
* @param mediaQuery - The media query to listen to. For example, `(min-width: 600px)`.
|
|
10
|
+
* @param defaultState - The initial state to return before the media query is evaluated. Defaults to `false`.
|
|
11
|
+
* @returns Whether the media query matches.
|
|
12
|
+
*/
|
|
13
|
+
export declare const useMatchMedia: (mediaQuery: string, defaultState?: boolean) => boolean;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2020, 2025
|
|
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
|
+
'use strict';
|
|
9
|
+
|
|
10
|
+
var React = require('react');
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Listens to changes in a media query and returns whether it matches.
|
|
14
|
+
* @param mediaQuery - The media query to listen to. For example, `(min-width: 600px)`.
|
|
15
|
+
* @param defaultState - The initial state to return before the media query is evaluated. Defaults to `false`.
|
|
16
|
+
* @returns Whether the media query matches.
|
|
17
|
+
*/
|
|
18
|
+
const useMatchMedia = function (mediaQuery) {
|
|
19
|
+
let defaultState = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
20
|
+
const [matches, setMatches] = React.useState(defaultState);
|
|
21
|
+
React.useEffect(() => {
|
|
22
|
+
const listener = event => {
|
|
23
|
+
setMatches(event.matches);
|
|
24
|
+
};
|
|
25
|
+
const mediaQueryList = window.matchMedia(mediaQuery);
|
|
26
|
+
mediaQueryList.addEventListener('change', listener);
|
|
27
|
+
setMatches(mediaQueryList.matches);
|
|
28
|
+
return () => {
|
|
29
|
+
mediaQueryList.removeEventListener('change', listener);
|
|
30
|
+
};
|
|
31
|
+
}, [mediaQuery]);
|
|
32
|
+
return matches;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
exports.useMatchMedia = useMatchMedia;
|
package/lib/index.js
CHANGED
|
@@ -36,6 +36,7 @@ var ExpressiveCard = require('./components/ExpressiveCard/ExpressiveCard.js');
|
|
|
36
36
|
var FullPageError = require('./components/FullPageError/FullPageError.js');
|
|
37
37
|
var ImportModal = require('./components/ImportModal/ImportModal.js');
|
|
38
38
|
var InterstitialScreen = require('./components/InterstitialScreen/InterstitialScreen.js');
|
|
39
|
+
var InterstitialScreenView = require('./components/InterstitialScreen/InterstitialScreenView.js');
|
|
39
40
|
var MultiAddSelect = require('./components/MultiAddSelect/MultiAddSelect.js');
|
|
40
41
|
var NotificationsPanel = require('./components/NotificationsPanel/NotificationsPanel.js');
|
|
41
42
|
var OptionsTile = require('./components/OptionsTile/OptionsTile.js');
|
|
@@ -50,15 +51,16 @@ var TagOverflow = require('./components/TagOverflow/TagOverflow.js');
|
|
|
50
51
|
var TagSet = require('./components/TagSet/TagSet.js');
|
|
51
52
|
var Tearsheet = require('./components/Tearsheet/Tearsheet.js');
|
|
52
53
|
var TearsheetNarrow = require('./components/Tearsheet/TearsheetNarrow.js');
|
|
53
|
-
var TruncatedText = require('./components/TruncatedText/TruncatedText.js');
|
|
54
54
|
var WebTerminal = require('./components/WebTerminal/WebTerminal.js');
|
|
55
55
|
var WebTerminalContentWrapper = require('./components/WebTerminal/WebTerminalContentWrapper.js');
|
|
56
|
-
var index$
|
|
56
|
+
var index$6 = require('./components/WebTerminal/hooks/index.js');
|
|
57
57
|
var index = require('./components/Coachmark/next/Coachmark/index.js');
|
|
58
58
|
var index$1 = require('./components/Coachmark/next/Coachmark/CoachmarkTagline/index.js');
|
|
59
59
|
var index$2 = require('./components/Coachmark/next/Coachmark/CoachmarkBeacon/index.js');
|
|
60
|
-
var
|
|
60
|
+
var TruncatedText = require('./components/TruncatedText/TruncatedText.js');
|
|
61
|
+
var index$5 = require('./components/FeatureFlags/index.js');
|
|
61
62
|
var index$3 = require('./components/PageHeader/next/index.js');
|
|
63
|
+
var index$4 = require('./components/Tearsheet/next/index.js');
|
|
62
64
|
var BigNumber = require('./components/BigNumber/BigNumber.js');
|
|
63
65
|
var Coachmark = require('./components/Coachmark/Coachmark.js');
|
|
64
66
|
var enums = require('./components/Coachmark/utils/enums.js');
|
|
@@ -87,7 +89,7 @@ var ToolbarButton = require('./components/Toolbar/ToolbarButton.js');
|
|
|
87
89
|
var ToolbarGroup = require('./components/Toolbar/ToolbarGroup.js');
|
|
88
90
|
var TruncatedList = require('./components/TruncatedList/TruncatedList.js');
|
|
89
91
|
var ComboButton = require('./components/ComboButton/ComboButton.js');
|
|
90
|
-
var index$
|
|
92
|
+
var index$7 = require('./components/ComboButton/ComboButtonItem/index.js');
|
|
91
93
|
var Datagrid = require('./components/Datagrid/Datagrid/Datagrid.js');
|
|
92
94
|
var useDatagrid = require('./components/Datagrid/useDatagrid.js');
|
|
93
95
|
var useInfiniteScroll = require('./components/Datagrid/useInfiniteScroll.js');
|
|
@@ -177,6 +179,7 @@ exports.ExpressiveCard = ExpressiveCard.ExpressiveCard;
|
|
|
177
179
|
exports.FullPageError = FullPageError.FullPageError;
|
|
178
180
|
exports.ImportModal = ImportModal.ImportModal;
|
|
179
181
|
exports.InterstitialScreen = InterstitialScreen.InterstitialScreen;
|
|
182
|
+
exports.InterstitialScreenView = InterstitialScreenView.InterstitialScreenView;
|
|
180
183
|
exports.MultiAddSelect = MultiAddSelect.MultiAddSelect;
|
|
181
184
|
exports.NotificationsPanel = NotificationsPanel.NotificationsPanel;
|
|
182
185
|
exports.OptionsTile = OptionsTile.OptionsTile;
|
|
@@ -191,21 +194,19 @@ exports.TagOverflow = TagOverflow.TagOverflow;
|
|
|
191
194
|
exports.TagSet = TagSet.TagSet;
|
|
192
195
|
exports.Tearsheet = Tearsheet.Tearsheet;
|
|
193
196
|
exports.TearsheetNarrow = TearsheetNarrow.TearsheetNarrow;
|
|
194
|
-
Object.defineProperty(exports, "TruncatedText", {
|
|
195
|
-
enumerable: true,
|
|
196
|
-
get: function () { return TruncatedText.TruncatedText; }
|
|
197
|
-
});
|
|
198
197
|
exports.WebTerminal = WebTerminal.WebTerminal;
|
|
199
198
|
exports.WebTerminalContentWrapper = WebTerminalContentWrapper.WebTerminalContentWrapper;
|
|
200
|
-
exports.WebTerminalProvider = index$
|
|
201
|
-
exports.useWebTerminal = index$
|
|
199
|
+
exports.WebTerminalProvider = index$6.WebTerminalProvider;
|
|
200
|
+
exports.useWebTerminal = index$6.useWebTerminal;
|
|
202
201
|
exports.preview__Coachmark = index;
|
|
203
202
|
exports.preview__CoachmarkTagline = index$1;
|
|
204
203
|
exports.preview__CoachmarkBeacon = index$2;
|
|
205
|
-
exports.
|
|
206
|
-
exports.
|
|
207
|
-
exports.
|
|
204
|
+
exports.preview__TruncatedText = TruncatedText.TruncatedText;
|
|
205
|
+
exports.preview__FeatureFlags = index$5.FeatureFlags;
|
|
206
|
+
exports.preview__useFeatureFlag = index$5.useFeatureFlag;
|
|
207
|
+
exports.preview__useFeatureFlags = index$5.useFeatureFlags;
|
|
208
208
|
exports.preview__PageHeader = index$3;
|
|
209
|
+
exports.preview__Tearsheet = index$4;
|
|
209
210
|
exports.previewCandidate__BigNumber = BigNumber.BigNumber;
|
|
210
211
|
exports.previewCandidate__Coachmark = Coachmark.Coachmark;
|
|
211
212
|
exports.BEACON_KIND = enums.BEACON_KIND;
|
|
@@ -235,7 +236,7 @@ exports.previewCandidate__ToolbarButton = ToolbarButton.ToolbarButton;
|
|
|
235
236
|
exports.previewCandidate__ToolbarGroup = ToolbarGroup.ToolbarGroup;
|
|
236
237
|
exports.previewCandidate__TruncatedList = TruncatedList.TruncatedList;
|
|
237
238
|
exports.ComboButton = ComboButton.ComboButton;
|
|
238
|
-
exports.ComboButtonItem = index$
|
|
239
|
+
exports.ComboButtonItem = index$7.ComboButtonItem;
|
|
239
240
|
exports.Datagrid = Datagrid.Datagrid;
|
|
240
241
|
exports.useDatagrid = useDatagrid.default;
|
|
241
242
|
exports.useInfiniteScroll = useInfiniteScroll.default;
|