@carbon/ibm-products 2.43.2-canary.131 → 2.43.2-canary.138

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. package/es/components/ComboButton/ComboButton.js +1 -1
  2. package/es/components/CreateFullPage/CreateFullPage.js +1 -1
  3. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +4 -4
  4. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.d.ts +3 -1
  5. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +9 -2
  6. package/es/components/Datagrid/useFiltering.js +1 -1
  7. package/es/components/EditInPlace/EditInPlace.js +1 -1
  8. package/es/components/Nav/NavItem.js +4 -1
  9. package/es/components/Nav/NavList.js +3 -0
  10. package/es/components/OptionsTile/OptionsTile.d.ts +1 -1
  11. package/es/components/OptionsTile/OptionsTile.js +0 -1
  12. package/es/components/PageHeader/PageHeader.js +3 -3
  13. package/es/components/Saving/Saving.js +1 -1
  14. package/es/components/SearchBar/SearchBar.js +1 -1
  15. package/es/components/SidePanel/SidePanel.js +1 -1
  16. package/es/components/TagSet/TagSet.js +1 -1
  17. package/es/components/Tearsheet/Tearsheet.js +2 -2
  18. package/es/components/Tearsheet/TearsheetNarrow.js +3 -3
  19. package/es/components/WebTerminal/WebTerminal.js +2 -2
  20. package/es/components/index.d.ts +73 -72
  21. package/es/global/js/package-settings.d.ts +2 -0
  22. package/es/global/js/package-settings.js +2 -0
  23. package/es/index.js +46 -44
  24. package/es/settings.d.ts +2 -0
  25. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +4 -4
  26. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.d.ts +3 -1
  27. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +9 -2
  28. package/lib/components/Guidebanner/Guidebanner.js +14 -14
  29. package/lib/components/Nav/NavItem.js +9 -7
  30. package/lib/components/Nav/NavList.js +8 -6
  31. package/lib/components/OptionsTile/OptionsTile.d.ts +1 -1
  32. package/lib/components/OptionsTile/OptionsTile.js +0 -1
  33. package/lib/components/WebTerminal/WebTerminal.js +14 -14
  34. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +4 -4
  35. package/lib/components/index.d.ts +73 -72
  36. package/lib/global/js/package-settings.d.ts +2 -0
  37. package/lib/global/js/package-settings.js +2 -0
  38. package/lib/index.js +169 -159
  39. package/lib/settings.d.ts +2 -0
  40. package/package.json +2 -2
@@ -169,10 +169,10 @@ var DraggableItemsList = function DraggableItemsList(_ref) {
169
169
  strategy: sortable.verticalListSortingStrategy
170
170
  }, visibleCols.map(function (colDef) {
171
171
  var colHeaderTitle = getNodeTextContent.getNodeTextContent(colDef.Header);
172
- var searchString = new RegExp('(' + filterString + ')');
173
- var res = filterString.length ? colHeaderTitle.toLowerCase().split(searchString) : null;
174
- var firstWord = res !== null ? res[0] === '' ? res[1].charAt(0).toUpperCase() + res[1].substring(1) : res[0].charAt(0).toUpperCase() + res[0].substring(1) : null;
175
- var highlightedText = res !== null ? res[0] === '' ? "<strong>".concat(firstWord, "</strong>") + res[2] : firstWord + "<strong>".concat(res[1], "</strong>") + res[2] : colHeaderTitle;
172
+ var parts = colHeaderTitle.split(new RegExp("(".concat(filterString, ")"), 'gi'));
173
+ var highlightedText = parts.map(function (part) {
174
+ return part.toLowerCase() === filterString.toLowerCase() ? "<strong>".concat(part, "</strong>") : part;
175
+ }).join('');
176
176
  var isFrozenColumn = !!colDef.sticky;
177
177
  var isDisabled = colDef.disabled;
178
178
  var listContents = /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement(react.Checkbox, {
@@ -1,7 +1,8 @@
1
1
  export default FilterFlyout;
2
- declare function FilterFlyout({ updateMethod, flyoutIconDescription, filters, title, primaryActionLabel, onFlyoutOpen, onFlyoutClose, onApply, onCancel, secondaryActionLabel, setAllFilters, data, reactTableFiltersState, }: {
2
+ declare function FilterFlyout({ updateMethod, flyoutIconDescription, align, filters, title, primaryActionLabel, onFlyoutOpen, onFlyoutClose, onApply, onCancel, secondaryActionLabel, setAllFilters, data, reactTableFiltersState, }: {
3
3
  updateMethod: any;
4
4
  flyoutIconDescription?: string | undefined;
5
+ align?: string | undefined;
5
6
  filters?: any[] | undefined;
6
7
  title?: string | undefined;
7
8
  primaryActionLabel?: string | undefined;
@@ -16,6 +17,7 @@ declare function FilterFlyout({ updateMethod, flyoutIconDescription, filters, ti
16
17
  }): import("react/jsx-runtime").JSX.Element;
17
18
  declare namespace FilterFlyout {
18
19
  namespace propTypes {
20
+ let align: PropTypes.Requireable<string>;
19
21
  let data: PropTypes.Validator<any[]>;
20
22
  let filters: PropTypes.Validator<(PropTypes.InferProps<{
21
23
  type: PropTypes.Validator<string>;
@@ -37,12 +37,15 @@ var defaults = {
37
37
  flyoutIconDescription: 'Open filters',
38
38
  title: 'Filter',
39
39
  primaryActionLabel: 'Apply',
40
- secondaryActionLabel: 'Cancel'
40
+ secondaryActionLabel: 'Cancel',
41
+ align: 'bottom'
41
42
  };
42
43
  var FilterFlyout = function FilterFlyout(_ref) {
43
44
  var updateMethod = _ref.updateMethod,
44
45
  _ref$flyoutIconDescri = _ref.flyoutIconDescription,
45
46
  flyoutIconDescription = _ref$flyoutIconDescri === void 0 ? defaults.flyoutIconDescription : _ref$flyoutIconDescri,
47
+ _ref$align = _ref.align,
48
+ align = _ref$align === void 0 ? defaults.align : _ref$align,
46
49
  _ref$filters = _ref.filters,
47
50
  filters = _ref$filters === void 0 ? [] : _ref$filters,
48
51
  _ref$title = _ref.title,
@@ -233,7 +236,7 @@ var FilterFlyout = function FilterFlyout(_ref) {
233
236
  }, /*#__PURE__*/React__default["default"].createElement(react.IconButton, {
234
237
  label: flyoutIconDescription,
235
238
  kind: "ghost",
236
- align: "bottom",
239
+ align: align,
237
240
  onClick: open ? closeFlyout : openFlyout,
238
241
  className: cx__default["default"]("".concat(componentClass, "__trigger"), _rollupPluginBabelHelpers.defineProperty({}, "".concat(componentClass, "__trigger--open"), open)),
239
242
  disabled: data.length === 0
@@ -250,6 +253,10 @@ var FilterFlyout = function FilterFlyout(_ref) {
250
253
  }, renderFilters())), renderActionSet()));
251
254
  };
252
255
  FilterFlyout.propTypes = {
256
+ /**
257
+ * Tooltip alignment for the filter button
258
+ */
259
+ align: index["default"].string,
253
260
  /**
254
261
  * All data rows in the table
255
262
  */
@@ -13,10 +13,10 @@ var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelper
13
13
  var react = require('@carbon/react');
14
14
  var icons = require('@carbon/react/icons');
15
15
  var React = require('react');
16
- var index = require('../../node_modules/@carbon/colors/es/index.js');
16
+ var index$1 = require('../../node_modules/@carbon/colors/es/index.js');
17
17
  var Carousel = require('../Carousel/Carousel.js');
18
18
  require('../Carousel/CarouselItem.js');
19
- var index$1 = require('../../node_modules/prop-types/index.js');
19
+ var index = require('../../node_modules/prop-types/index.js');
20
20
  var cx = require('classnames');
21
21
  var devtools = require('../../global/js/utils/devtools.js');
22
22
  var settings = require('../../settings.js');
@@ -104,8 +104,8 @@ exports.Guidebanner = /*#__PURE__*/React__default["default"].forwardRef(function
104
104
  // against the Guidebanner's gradient background.
105
105
  ,
106
106
  fadedEdgeColor: {
107
- left: index.blue90,
108
- right: index.purple70
107
+ left: index$1.blue90,
108
+ right: index$1.purple70
109
109
  },
110
110
  ref: scrollRef,
111
111
  onChangeIsScrollable: function onChangeIsScrollable(value) {
@@ -199,47 +199,47 @@ exports.Guidebanner.propTypes = {
199
199
  /**
200
200
  * Provide an optional class to be applied to the containing node.
201
201
  */
202
- className: index$1["default"].string,
202
+ className: index["default"].string,
203
203
  /**
204
204
  * Tooltip text and aria label for the Close button icon.
205
205
  */
206
- closeIconDescription: index$1["default"].string,
206
+ closeIconDescription: index["default"].string,
207
207
  /**
208
208
  * Text label for the Collapse button.
209
209
  */
210
- collapseButtonLabel: index$1["default"].string,
210
+ collapseButtonLabel: index["default"].string,
211
211
  /**
212
212
  * When true, the Guidebanner will initialize in a collapsed state,
213
213
  * showing the title and the Expand button.
214
214
  *
215
215
  * When expanded, it will show the GuidebannerElement child components and the Collapse button.
216
216
  */
217
- collapsible: index$1["default"].bool,
217
+ collapsible: index["default"].bool,
218
218
  /**
219
219
  * Text label for the Expand button.
220
220
  */
221
- expandButtonLabel: index$1["default"].string,
221
+ expandButtonLabel: index["default"].string,
222
222
  /**
223
223
  * Tooltip text and aria label for the Next button icon.
224
224
  */
225
- nextIconDescription: index$1["default"].string,
225
+ nextIconDescription: index["default"].string,
226
226
  /**
227
227
  * If defined, a Close button will render in the top-right corner and a
228
228
  * callback function will be triggered when button is clicked.
229
229
  */
230
- onClose: index$1["default"].func,
230
+ onClose: index["default"].func,
231
231
  /**
232
232
  * Tooltip text and aria label for the Back button icon.
233
233
  */
234
- previousIconDescription: index$1["default"].string,
234
+ previousIconDescription: index["default"].string,
235
235
  /**
236
236
  * Title text.
237
237
  */
238
- title: index$1["default"].string.isRequired,
238
+ title: index["default"].string.isRequired,
239
239
  /**
240
240
  * If true, insert 1 rem of "space" on the left of the component.
241
241
  * This will allow the component's content to line up with other
242
242
  * content on the page under special circumstances.
243
243
  */
244
- withLeftGutter: index$1["default"].bool
244
+ withLeftGutter: index["default"].bool
245
245
  };
@@ -41,7 +41,7 @@ var defaults = {
41
41
  /**
42
42
  * Navigation item component.
43
43
  */
44
- var NavItem = function NavItem(_ref) {
44
+ exports.NavItem = function NavItem(_ref) {
45
45
  var _ref$activeHref = _ref.activeHref,
46
46
  activeHref = _ref$activeHref === void 0 ? defaults.activeHref : _ref$activeHref,
47
47
  _ref$children = _ref.children,
@@ -65,7 +65,7 @@ var NavItem = function NavItem(_ref) {
65
65
  hrefHasDifferentHost = _useState2[0],
66
66
  setHrefHasDifferentHost = _useState2[1];
67
67
  React.useEffect(function () {
68
- if (href.indexOf(window.location.host) === -1) {
68
+ if ((href === null || href === void 0 ? void 0 : href.indexOf(window.location.host)) === -1) {
69
69
  setHrefHasDifferentHost(true);
70
70
  }
71
71
  }, [href]);
@@ -107,12 +107,12 @@ var NavItem = function NavItem(_ref) {
107
107
 
108
108
  // The display name of the component, used by React. Note that displayName
109
109
  // is used in preference to relying on function.name.
110
- NavItem.displayName = componentName;
110
+ exports.NavItem.displayName = componentName;
111
111
 
112
112
  // The types and DocGen commentary for the component props,
113
113
  // in alphabetical order (for consistency).
114
114
  // See https://www.npmjs.com/package/prop-types#usage.
115
- NavItem.propTypes = {
115
+ exports.NavItem.propTypes = {
116
116
  /**
117
117
  * Hypertext reference for active page.
118
118
  */
@@ -162,8 +162,10 @@ NavItem.propTypes = {
162
162
  */
163
163
  tabIndex: index["default"].number
164
164
  };
165
- var NavItem$1 = NavItem;
166
165
 
167
- exports.NavItem = NavItem;
166
+ // Return a placeholder if not released and not enabled by feature flag
167
+ exports.NavItem = settings.pkg.checkComponentEnabled(exports.NavItem, componentName);
168
+ var NavItem = exports.NavItem;
169
+
168
170
  exports.blockClass = blockClass;
169
- exports["default"] = NavItem$1;
171
+ exports["default"] = NavItem;
@@ -39,7 +39,7 @@ var defaults = {
39
39
  icon: '',
40
40
  navigationItemTitle: ''
41
41
  };
42
- var NavList = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
42
+ exports.NavList = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
43
43
  var _ref$activeHref = _ref.activeHref,
44
44
  activeHref = _ref$activeHref === void 0 ? defaults.activeHref : _ref$activeHref,
45
45
  _ref$children = _ref.children,
@@ -147,7 +147,7 @@ var NavList = /*#__PURE__*/React__default["default"].forwardRef(function (_ref,
147
147
  role: "menu"
148
148
  }, newChildren));
149
149
  });
150
- NavList.propTypes = {
150
+ exports.NavList.propTypes = {
151
151
  /** @type {string} Hypertext reference for active page. */
152
152
  activeHref: index.propTypesExports.string,
153
153
  /** @type {Node} Child elements. */
@@ -171,9 +171,11 @@ NavList.propTypes = {
171
171
  /** @type {string} Label of the list. */
172
172
  title: index.propTypesExports.string
173
173
  };
174
- NavList.displayName = componentName;
175
- var NavList$1 = NavList;
174
+ exports.NavList.displayName = componentName;
175
+
176
+ // Return a placeholder if not released and not enabled by feature flag
177
+ exports.NavList = settings.pkg.checkComponentEnabled(exports.NavList, componentName);
178
+ var NavList = exports.NavList;
176
179
 
177
- exports.NavList = NavList;
178
180
  exports.blockClass = blockClass;
179
- exports["default"] = NavList$1;
181
+ exports["default"] = NavList;
@@ -53,7 +53,7 @@ export interface OptionsTileProps {
53
53
  /**
54
54
  * Define the size of the OptionsTile.
55
55
  */
56
- size: 'lg' | 'xl';
56
+ size?: 'lg' | 'xl';
57
57
  /**
58
58
  * Optionally provide a text summarizing the current state of the content.
59
59
  */
@@ -332,7 +332,6 @@ exports.OptionsTile.propTypes = {
332
332
  /**
333
333
  * Define the size of the OptionsTile.
334
334
  */
335
- /**@ts-ignore*/
336
335
  size: index["default"].oneOf(['lg', 'xl']),
337
336
  /**
338
337
  * Optionally provide a text summarizing the current state of the content.
@@ -13,13 +13,13 @@ var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelper
13
13
  var react = require('@carbon/react');
14
14
  var icons = require('@carbon/react/icons');
15
15
  var React = require('react');
16
- var index$1 = require('../../node_modules/prop-types/index.js');
16
+ var index = require('../../node_modules/prop-types/index.js');
17
17
  var cx = require('classnames');
18
18
  var devtools = require('../../global/js/utils/devtools.js');
19
19
  var carbonMotion = require('@carbon/motion');
20
20
  var settings = require('../../settings.js');
21
21
  var usePrefersReducedMotion = require('../../global/js/hooks/usePrefersReducedMotion.js');
22
- var index = require('./hooks/index.js');
22
+ var index$1 = require('./hooks/index.js');
23
23
 
24
24
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
25
25
 
@@ -58,7 +58,7 @@ exports.WebTerminal = /*#__PURE__*/React__default["default"].forwardRef(function
58
58
  _ref$webTerminalAriaL = _ref.webTerminalAriaLabel,
59
59
  webTerminalAriaLabel = _ref$webTerminalAriaL === void 0 ? defaults.webTerminalAriaLabel : _ref$webTerminalAriaL,
60
60
  rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
61
- var _useWebTerminal = index.useWebTerminal(),
61
+ var _useWebTerminal = index$1.useWebTerminal(),
62
62
  open = _useWebTerminal.open,
63
63
  closeWebTerminal = _useWebTerminal.closeWebTerminal,
64
64
  openWebTerminal = _useWebTerminal.openWebTerminal;
@@ -179,37 +179,37 @@ exports.WebTerminal.propTypes = {
179
179
  * An array of actions to be displayed in the web terminal header bar
180
180
  */
181
181
  /**@ts-ignore */
182
- actions: index$1["default"].arrayOf(index$1["default"].shape({
183
- renderIcon: index$1["default"].func.isRequired,
184
- onClick: index$1["default"].func.isRequired,
185
- iconDescription: index$1["default"].string.isRequired
182
+ actions: index["default"].arrayOf(index["default"].shape({
183
+ renderIcon: index["default"].func.isRequired,
184
+ onClick: index["default"].func.isRequired,
185
+ iconDescription: index["default"].string.isRequired
186
186
  })),
187
187
  /**
188
188
  * Provide your own terminal component as children to show up in the web terminal
189
189
  */
190
- children: index$1["default"].oneOfType([index$1["default"].arrayOf(index$1["default"].node), index$1["default"].node]).isRequired,
190
+ children: index["default"].oneOfType([index["default"].arrayOf(index["default"].node), index["default"].node]).isRequired,
191
191
  /**
192
192
  * Custom classname for additional styling of the web terminal
193
193
  */
194
- className: index$1["default"].string,
194
+ className: index["default"].string,
195
195
  /**
196
196
  * Icon description for the close button
197
197
  */
198
- closeIconDescription: index$1["default"].string.isRequired,
198
+ closeIconDescription: index["default"].string.isRequired,
199
199
  /**
200
200
  * 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
201
201
  */
202
- documentationLinks: index$1["default"].arrayOf(index$1["default"].shape(_rollupPluginBabelHelpers.objectSpread2({}, react.OverflowMenuItem.propTypes))),
202
+ documentationLinks: index["default"].arrayOf(index["default"].shape(_rollupPluginBabelHelpers.objectSpread2({}, react.OverflowMenuItem.propTypes))),
203
203
  /**
204
204
  * Description for the documentation link overflow menu tooltip
205
205
  */
206
- documentationLinksIconDescription: index$1["default"].string,
206
+ documentationLinksIconDescription: index["default"].string,
207
207
  /**
208
208
  * Optionally pass if the web terminal should be open by default
209
209
  */
210
- isInitiallyOpen: index$1["default"].bool,
210
+ isInitiallyOpen: index["default"].bool,
211
211
  /**
212
212
  * Specifies aria label for Web terminal
213
213
  */
214
- webTerminalAriaLabel: index$1["default"].string
214
+ webTerminalAriaLabel: index["default"].string
215
215
  };
@@ -11,10 +11,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
11
11
 
12
12
  var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelpers.js');
13
13
  var React = require('react');
14
- var index$1 = require('../../node_modules/prop-types/index.js');
14
+ var index = require('../../node_modules/prop-types/index.js');
15
15
  var cx = require('classnames');
16
16
  var settings = require('../../settings.js');
17
- var index = require('./hooks/index.js');
17
+ var index$1 = require('./hooks/index.js');
18
18
 
19
19
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
20
20
 
@@ -29,7 +29,7 @@ var blockClass = "".concat(settings.pkg.prefix, "--web-terminal-content-wrapper"
29
29
  exports.WebTerminalContentWrapper = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, ref) {
30
30
  var children = _ref.children,
31
31
  rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
32
- var _useWebTerminal = index.useWebTerminal(),
32
+ var _useWebTerminal = index$1.useWebTerminal(),
33
33
  open = _useWebTerminal.open;
34
34
  return /*#__PURE__*/React__default["default"].createElement("div", _rollupPluginBabelHelpers["extends"]({
35
35
  ref: ref,
@@ -51,5 +51,5 @@ exports.WebTerminalContentWrapper.propTypes = {
51
51
  /**
52
52
  * Pass in content as children.
53
53
  */
54
- children: index$1["default"].oneOfType([index$1["default"].arrayOf(index$1["default"].node), index$1["default"].node]).isRequired
54
+ children: index["default"].oneOfType([index["default"].arrayOf(index["default"].node), index["default"].node]).isRequired
55
55
  };
@@ -1,72 +1,73 @@
1
- export { AboutModal } from "./AboutModal";
2
- export { APIKeyModal } from "./APIKeyModal";
3
- export { Cascade } from "./Cascade";
4
- export { CreateModal } from "./CreateModal";
5
- export { CreateSidePanel } from "./CreateSidePanel";
6
- export { CreateTearsheetNarrow } from "./CreateTearsheetNarrow";
7
- export { ExportModal } from "./ExportModal";
8
- export { ExpressiveCard } from "./ExpressiveCard";
9
- export { ImportModal } from "./ImportModal";
10
- export { MultiAddSelect } from "./MultiAddSelect";
11
- export { NotificationsPanel } from "./NotificationsPanel";
12
- export { PageHeader } from "./PageHeader";
13
- export { ProductiveCard } from "./ProductiveCard";
14
- export { RemoveModal } from "./RemoveModal";
15
- export { Saving } from "./Saving";
16
- export { SidePanel } from "./SidePanel";
17
- export { SingleAddSelect } from "./SingleAddSelect";
18
- export { StatusIcon } from "./StatusIcon";
19
- export { TagSet } from "./TagSet";
20
- export { UserProfileImage } from "./UserProfileImage";
21
- export { EditSidePanel } from "./EditSidePanel";
22
- export { OptionsTile } from "./OptionsTile";
23
- export { EditInPlace } from "./EditInPlace";
24
- export { DataSpreadsheet } from "./DataSpreadsheet";
25
- export { EditTearsheetNarrow } from "./EditTearsheetNarrow";
26
- export { EditFullPage } from "./EditFullPage";
27
- export { EditUpdateCards } from "./EditUpdateCards";
28
- export { Checklist } from "./Checklist";
29
- export { Coachmark } from "./Coachmark";
30
- export { CoachmarkBeacon } from "./CoachmarkBeacon";
31
- export { CoachmarkButton } from "./CoachmarkButton";
32
- export { CoachmarkFixed } from "./CoachmarkFixed";
33
- export { CoachmarkOverlayElement } from "./CoachmarkOverlayElement";
34
- export { CoachmarkOverlayElements } from "./CoachmarkOverlayElements";
35
- export { CoachmarkStack } from "./CoachmarkStack";
36
- export { NonLinearReading } from "./NonLinearReading";
37
- export { BigNumbers } from "./BigNumbers";
38
- export { TruncatedList } from "./TruncatedList";
39
- export { InterstitialScreen } from "./InterstitialScreen";
40
- export { InterstitialScreenView } from "./InterstitialScreenView";
41
- export { InterstitialScreenViewModule } from "./InterstitialScreenViewModule";
42
- export { DelimitedList } from "./DelimitedList";
43
- export { Decorator } from "./Decorator";
44
- export { DecoratorLink } from "./DecoratorLink";
45
- export { DecoratorSingleButton } from "./DecoratorSingleButton";
46
- export { DecoratorDualButton } from "./DecoratorDualButton";
47
- export { FullPageError } from "./FullPageError";
48
- export { SearchBar } from "./SearchBar";
49
- export { Nav } from "./Nav";
50
- export { StringFormatter } from "./StringFormatter";
51
- export { UserAvatar } from "./UserAvatar";
52
- export { ScrollGradient } from "./ScrollGradient";
53
- export { TagOverflow } from "./TagOverflow";
54
- export { ActionBar } from "./ActionBar";
55
- export { ConditionBuilder } from "./ConditionBuilder";
56
- export { GetStartedCard } from "./GetStartedCard";
57
- export { ComboButton, ComboButtonItem } from "./ComboButton";
58
- export { CreateFullPage, CreateFullPageStep } from "./CreateFullPage";
59
- export { CreateTearsheet, CreateTearsheetStep, CreateTearsheetDivider } from "./CreateTearsheet";
60
- export { EmptyState, EmptyStateV2, ErrorEmptyState, NoDataEmptyState, NoTagsEmptyState, NotFoundEmptyState, NotificationsEmptyState, UnauthorizedEmptyState } from "./EmptyStates";
61
- export { HTTPError403, HTTPError404, HTTPErrorOther } from "./HTTPErrors";
62
- export { Tearsheet, TearsheetNarrow } from "./Tearsheet";
63
- export { Toolbar, ToolbarButton, ToolbarGroup } from "./Toolbar";
64
- export { WebTerminal, WebTerminalContentWrapper, useWebTerminal, WebTerminalProvider } from "./WebTerminal";
65
- export { Datagrid, useDatagrid, useInfiniteScroll, useNestedRows, useSelectRows, useExpandedRow, useOnRowClick, useSortableColumns, useRowIsMouseOver, useColumnCenterAlign, useColumnRightAlign, useDisableSelectRows, useStickyColumn, useActionsColumn, useCustomizeColumns, useSelectAllWithToggle, useColumnOrder, useInlineEdit, useFiltering, getAutoSizedColumnWidth, useFilterContext, useEditableCell } from "./Datagrid";
66
- export { EditTearsheet, EditTearsheetForm } from "./EditTearsheet";
67
- export { Guidebanner, GuidebannerElement, GuidebannerElementButton, GuidebannerElementLink } from "./Guidebanner";
68
- export { InlineTip, InlineTipButton, InlineTipLink } from "./InlineTip";
69
- export { DescriptionList, DescriptionListBody, DescriptionListCell, DescriptionListRow } from "./DescriptionList";
70
- export { StatusIndicator, StatusIndicatorStep } from "./StatusIndicator";
71
- export { FilterPanel, FilterPanelAccordion, FilterPanelAccordionItem, FilterPanelCheckbox, FilterPanelCheckboxWithOverflow, FilterPanelGroup, FilterPanelLabel, FilterPanelSearch } from "./FilterPanel";
72
- export { FeatureFlags as unstable_FeatureFlags, useFeatureFlag as unstable_useFeatureFlag, useFeatureFlags as unstable_useFeatureFlags } from "./FeatureFlags";
1
+ import '../feature-flags';
2
+ export * from './AboutModal';
3
+ export * from './APIKeyModal';
4
+ export * from './Cascade';
5
+ export * from './ComboButton';
6
+ export * from './CreateFullPage';
7
+ export * from './CreateModal';
8
+ export * from './CreateSidePanel';
9
+ export * from './CreateTearsheet';
10
+ export * from './CreateTearsheetNarrow';
11
+ export * from './EmptyStates';
12
+ export * from './ExportModal';
13
+ export * from './ExpressiveCard';
14
+ export * from './HTTPErrors';
15
+ export * from './ImportModal';
16
+ export * from './MultiAddSelect';
17
+ export * from './NotificationsPanel';
18
+ export * from './PageHeader';
19
+ export * from './ProductiveCard';
20
+ export * from './RemoveModal';
21
+ export * from './Saving';
22
+ export * from './SidePanel';
23
+ export * from './SingleAddSelect';
24
+ export * from './StatusIcon';
25
+ export * from './TagSet';
26
+ export * from './Tearsheet';
27
+ export * from './Toolbar';
28
+ export * from './UserProfileImage';
29
+ export * from './WebTerminal';
30
+ export * from './EditSidePanel';
31
+ export * from './OptionsTile';
32
+ export * from './EditInPlace';
33
+ export * from './DataSpreadsheet';
34
+ export * from './Datagrid';
35
+ export * from './EditTearsheet';
36
+ export * from './EditTearsheetNarrow';
37
+ export * from './EditFullPage';
38
+ export * from './EditUpdateCards';
39
+ export * from './Checklist';
40
+ export { Coachmark } from './Coachmark';
41
+ export * from './CoachmarkBeacon';
42
+ export * from './CoachmarkButton';
43
+ export * from './CoachmarkFixed';
44
+ export * from './CoachmarkOverlayElement';
45
+ export * from './CoachmarkOverlayElements';
46
+ export * from './CoachmarkStack';
47
+ export * from './Guidebanner';
48
+ export * from './InlineTip';
49
+ export * from './NonLinearReading';
50
+ export * from './BigNumbers';
51
+ export * from './TruncatedList';
52
+ export * from './InterstitialScreen';
53
+ export * from './InterstitialScreenView';
54
+ export * from './InterstitialScreenViewModule';
55
+ export * from './DelimitedList';
56
+ export * from './Decorator';
57
+ export * from './DecoratorLink';
58
+ export * from './DecoratorSingleButton';
59
+ export * from './DecoratorDualButton';
60
+ export * from './DescriptionList';
61
+ export * from './FullPageError';
62
+ export * from './SearchBar';
63
+ export * from './Nav';
64
+ export * from './StringFormatter';
65
+ export * from './UserAvatar';
66
+ export * from './ScrollGradient';
67
+ export * from './StatusIndicator';
68
+ export * from './TagOverflow';
69
+ export { ActionBar } from './ActionBar';
70
+ export * from './FilterPanel';
71
+ export * from './ConditionBuilder';
72
+ export * from './GetStartedCard';
73
+ export { FeatureFlags as unstable_FeatureFlags, useFeatureFlag as unstable_useFeatureFlag, useFeatureFlags as unstable_useFeatureFlags, } from './FeatureFlags';
@@ -78,6 +78,8 @@ declare namespace defaults {
78
78
  let EditFullPage: boolean;
79
79
  let EditUpdateCards: boolean;
80
80
  let Nav: boolean;
81
+ let NavItem: boolean;
82
+ let NavList: boolean;
81
83
  let BigNumbers: boolean;
82
84
  let TruncatedList: boolean;
83
85
  let DelimitedList: boolean;
@@ -81,6 +81,8 @@ var defaults = {
81
81
  EditFullPage: false,
82
82
  EditUpdateCards: false,
83
83
  Nav: false,
84
+ NavItem: false,
85
+ NavList: false,
84
86
  BigNumbers: false,
85
87
  TruncatedList: false,
86
88
  DelimitedList: false,