@carbon/ibm-products 1.70.0 → 1.72.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. package/README.md +8 -4
  2. package/css/index-full-carbon.css +1 -8
  3. package/css/index-full-carbon.css.map +1 -1
  4. package/css/index-full-carbon.min.css +1 -1
  5. package/css/index-full-carbon.min.css.map +1 -1
  6. package/css/index-without-carbon-released-only.css +1 -8
  7. package/css/index-without-carbon-released-only.css.map +1 -1
  8. package/css/index-without-carbon-released-only.min.css +1 -1
  9. package/css/index-without-carbon-released-only.min.css.map +1 -1
  10. package/css/index-without-carbon.css +1 -8
  11. package/css/index-without-carbon.css.map +1 -1
  12. package/css/index-without-carbon.min.css +1 -1
  13. package/css/index-without-carbon.min.css.map +1 -1
  14. package/css/index.css +1 -8
  15. package/css/index.css.map +1 -1
  16. package/css/index.min.css +1 -1
  17. package/css/index.min.css.map +1 -1
  18. package/es/components/CoachmarkStack/CoachmarkStack.js +11 -11
  19. package/es/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +6 -3
  20. package/es/components/Datagrid/Datagrid/Datagrid.js +10 -3
  21. package/es/components/Datagrid/Datagrid/DatagridContent.js +6 -2
  22. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +1 -1
  23. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -3
  24. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +1 -1
  25. package/es/components/Datagrid/Datagrid/DatagridRow.js +2 -2
  26. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +5 -3
  27. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -1
  28. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +26 -7
  29. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -1
  30. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +4 -0
  31. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +0 -1
  32. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +41 -17
  33. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +7 -2
  34. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +7 -0
  35. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +103 -5
  36. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +1 -0
  37. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -0
  38. package/es/components/Datagrid/Datagrid/addons/Filtering/index.js +1 -0
  39. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +12 -1
  40. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +4 -7
  41. package/es/components/Datagrid/useDisableSelectRows.js +1 -1
  42. package/es/components/Datagrid/useFiltering.js +49 -52
  43. package/es/components/Datagrid/useInfiniteScroll.js +7 -3
  44. package/es/components/Datagrid/useInitialColumnSort.js +39 -0
  45. package/es/components/Datagrid/useSelectAllToggle.js +11 -10
  46. package/es/components/Datagrid/useSelectRows.js +4 -4
  47. package/es/components/Datagrid/useSortableColumns.js +16 -16
  48. package/es/components/Tearsheet/TearsheetShell.js +6 -4
  49. package/es/global/js/hooks/index.js +3 -2
  50. package/es/global/js/hooks/useFocus.js +72 -0
  51. package/es/global/js/hooks/useIsomorphicEffect.js +12 -0
  52. package/es/global/js/package-settings.js +0 -1
  53. package/lib/components/CoachmarkStack/CoachmarkStack.js +11 -11
  54. package/lib/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +6 -3
  55. package/lib/components/Datagrid/Datagrid/Datagrid.js +10 -3
  56. package/lib/components/Datagrid/Datagrid/DatagridContent.js +6 -2
  57. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +1 -1
  58. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -3
  59. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +1 -1
  60. package/lib/components/Datagrid/Datagrid/DatagridRow.js +2 -2
  61. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +4 -2
  62. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -1
  63. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +26 -14
  64. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -1
  65. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +4 -0
  66. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +0 -1
  67. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +37 -14
  68. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +11 -4
  69. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +7 -0
  70. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +99 -2
  71. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +1 -0
  72. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +11 -0
  73. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +4 -7
  74. package/lib/components/Datagrid/useDisableSelectRows.js +1 -1
  75. package/lib/components/Datagrid/useFiltering.js +47 -50
  76. package/lib/components/Datagrid/useInfiniteScroll.js +7 -3
  77. package/lib/components/Datagrid/useInitialColumnSort.js +47 -0
  78. package/lib/components/Datagrid/useSelectAllToggle.js +9 -9
  79. package/lib/components/Datagrid/useSelectRows.js +3 -3
  80. package/lib/components/Datagrid/useSortableColumns.js +18 -17
  81. package/lib/components/Tearsheet/TearsheetShell.js +6 -4
  82. package/lib/global/js/hooks/index.js +8 -1
  83. package/lib/global/js/hooks/useFocus.js +79 -0
  84. package/lib/global/js/hooks/useIsomorphicEffect.js +18 -0
  85. package/lib/global/js/package-settings.js +0 -1
  86. package/package.json +9 -8
  87. package/scss/components/Datagrid/styles/addons/_FilterPanel.scss +7 -8
  88. package/telemetry.yml +816 -0
package/telemetry.yml ADDED
@@ -0,0 +1,816 @@
1
+ # yaml-language-server: $schema=https://unpkg.com/@ibm/telemetry-config-schema@v1/dist/config.schema.json
2
+
3
+ version: 1
4
+ projectId: 495342db-5046-4ecf-85ea-9ffceb6f8cdf
5
+ endpoint: https://collector-prod.1am6wm210aow.us-south.codeengine.appdomain.cloud/v1/metrics
6
+ collect:
7
+ jsx:
8
+ elements:
9
+ allowedAttributeNames:
10
+ # General
11
+ - action
12
+ - actionIcons
13
+ - actions
14
+ - actionsPlacement
15
+ - activeCellCoordinates
16
+ - align
17
+ - allTagsModalSearchLabel
18
+ - allTagsModalSearchPlaceholderText
19
+ - allTagsModalTitle
20
+ - alt
21
+ - apiKey
22
+ - appliedModifiers
23
+ - assistiveTextDisabledInstructionsLabel
24
+ - assistiveTextInstructionsLabel
25
+ - backButtonText
26
+ - body
27
+ - breadcrumbs
28
+ - button
29
+ - cancelButtonText
30
+ - cellSize
31
+ - children
32
+ - className
33
+ - clearFiltersText
34
+ - clickZone
35
+ - closeButtonLabel
36
+ - closeIconDescription
37
+ - collapseButtonLabel
38
+ - collapsible
39
+ - columnInputPlaceholder
40
+ - columns
41
+ - currentMatcher
42
+ - currentStep
43
+ - data
44
+ - datagridName
45
+ - datagridState
46
+ - defaultColumn
47
+ - defaultEmptyRowCount
48
+ - description
49
+ - disabled
50
+ - disableSubmit
51
+ - displayMetalPanel
52
+ - editAlwaysVisible
53
+ - error
54
+ - errorCodeLabel
55
+ - expandButtonLabel
56
+ - fieldsetLegendText
57
+ - filters
58
+ - filterString
59
+ - findColumnPlaceholderLabel
60
+ - firstFocusElement
61
+ - formDescription
62
+ - formTitle
63
+ - globalFilters
64
+ - globalFiltersIconDescription
65
+ - globalFiltersLabel
66
+ - globalFiltersPlaceholderText
67
+ - globalFiltersPrimaryButtonText
68
+ - globalFiltersSecondaryButtonText
69
+ - globalSearchLabel
70
+ - globalSearchPlaceholder
71
+ - globalSortBy
72
+ - hasActions
73
+ - hasCloseIcon
74
+ - hasFieldset
75
+ - headerGroups
76
+ - iconDescription
77
+ - id
78
+ - illustrationDescription
79
+ - illustrationTheme
80
+ - includeStep
81
+ - influencer
82
+ - influencerPosition
83
+ - influencerTitle
84
+ - influencerWidth
85
+ - initialStep
86
+ - inputLabel
87
+ - inputPlaceholder
88
+ - instance
89
+ - instructionsLabel
90
+ - introStep
91
+ - invalid
92
+ - invalidText
93
+ - isFetching
94
+ - isOpen
95
+ - items
96
+ - itemsLabel
97
+ - kind
98
+ - label
99
+ - labelText
100
+ - legendText
101
+ - light
102
+ - link
103
+ - links
104
+ - loading
105
+ - maxVisible
106
+ - media
107
+ - mediaPosition
108
+ - menuOptionsClass
109
+ - metaIconDescription
110
+ - metaPanelTitle
111
+ - modifiers
112
+ - multi
113
+ - multiSelection
114
+ - navIconDescription
115
+ - navigation
116
+ - navLinkLabels
117
+ - nextButtonText
118
+ - nonEditCell
119
+ - noResultsDescription
120
+ - noResultsTitle
121
+ - noSelectionDescription
122
+ - noSelectionTitle
123
+ - onActiveCellChange
124
+ - onApply
125
+ - onCancel
126
+ - onChange
127
+ - onClick
128
+ - onClose
129
+ - onCloseButtonText
130
+ - onDataUpdate
131
+ - onMount
132
+ - onNext
133
+ - onPrimaryButtonClick
134
+ - onRequestClose
135
+ - onRequestSubmit
136
+ - onSave
137
+ - onSecondaryButtonClick
138
+ - onSelectColumn
139
+ - onSelectionAreaChange
140
+ - onSubmit
141
+ - onSubmitButtonText
142
+ - onToggle
143
+ - onWidthChange
144
+ - open
145
+ - originalColumnDefinitions
146
+ - overflowActions
147
+ - overflowAlign
148
+ - overflowAriaLabel
149
+ - overflowDirection
150
+ - overflowType
151
+ - parentId
152
+ - path
153
+ - pictogram
154
+ - placeholder
155
+ - placement
156
+ - portalTarget
157
+ - preventCloseOnClickOutside
158
+ - previousButtonLabel
159
+ - primaryActionLabel
160
+ - primaryButtonHref
161
+ - primaryButtonIcon
162
+ - primaryButtonKind
163
+ - primaryButtonPlacement
164
+ - primaryButtonText
165
+ - productive
166
+ - reactTableFiltersState
167
+ - renderIcon
168
+ - resetToDefaultLabel
169
+ - rightAlign
170
+ - rows
171
+ - scrollBarSize
172
+ - searchPlaceholder
173
+ - searchResultsTitle
174
+ - secondaryActionLabel
175
+ - secondaryButtonHref
176
+ - secondaryButtonIcon
177
+ - secondaryButtonKind
178
+ - secondaryButtonText
179
+ - secondaryLabel
180
+ - selectAllAriaLabel
181
+ - selectAllLabel
182
+ - selectedOption
183
+ - selectionAreas
184
+ - selectorPageContent
185
+ - selectorPrimaryFocus
186
+ - setActiveCellCoordinates
187
+ - setAllFilters
188
+ - setColumnsObject
189
+ - setCurrentMatcher
190
+ - setDisplayMetaPanel
191
+ - setHeaderCellHoldActive
192
+ - setIsTearsheetOpen
193
+ - setMultiSelection
194
+ - setSelectionAreaData
195
+ - setSelectionAreas
196
+ - showAllTagsLabel
197
+ - showCloseButton
198
+ - size
199
+ - slideIn
200
+ - story
201
+ - storyInitiallyOpen
202
+ - submitButtonText
203
+ - subtitle
204
+ - tagline
205
+ - tags
206
+ - theme
207
+ - title
208
+ - titleSize
209
+ - totalVisibleColumns
210
+ - type
211
+ - updateMethod
212
+ - v2
213
+ - value
214
+ - verticalPosition
215
+ - viewAllLabel
216
+ - visibleColumns
217
+ - withLeftGutter
218
+ # AboutModal
219
+ - additionalInfo
220
+ - content
221
+ - copyrightText
222
+ - legalText
223
+ - logo
224
+ # ActionBar
225
+ - overflowItems
226
+ # Actions
227
+ - searchText
228
+ - setSearchText
229
+ # ActionSet
230
+ - buttonSize
231
+ # AddSelectBody
232
+ - defaultModifiers
233
+ - globalFilterOpts
234
+ - normalizedItems
235
+ - useNormalizedItems
236
+ # AddSelectColumn
237
+ - header
238
+ - setPath
239
+ # AddSelectFilter
240
+ - appliedFilters
241
+ - filterOpts
242
+ - filtersLabel
243
+ - handleFilter
244
+ - handleSearch
245
+ - hasFiltersApplied
246
+ - searchTerm
247
+ # AddSelectList
248
+ - filteredItems
249
+ - setAppliedModifiers
250
+ - setParentSelected
251
+ - setSingleSelection
252
+ - singleSelection
253
+ # AddSelectMetaPanel
254
+ - meta
255
+ # AddSelectSort
256
+ - setSortAttribute
257
+ - setSortDirection
258
+ - sortBy
259
+ # APIKeyDownloader
260
+ - fileName
261
+ - fileType
262
+ - linkText
263
+ # APIKeyModal
264
+ - apiKeyLabel
265
+ - apiKeyName
266
+ - closeButtonText
267
+ - copyButtonText
268
+ - copyErrorText
269
+ - copyIconDescription
270
+ - customSteps
271
+ - downloadBodyText
272
+ - downloadFileName
273
+ - downloadFileType
274
+ - downloadLinkText
275
+ - editButtonText
276
+ - editing
277
+ - editSuccess
278
+ - editSuccessTitle
279
+ - errorText
280
+ - generateButtonText
281
+ - generateSuccessBody
282
+ - generateSuccessTitle
283
+ - generateTitle
284
+ - hasAPIKeyVisibilityToggle
285
+ - hasDownloadLink
286
+ - hideAPIKeyLabel
287
+ - loadingText
288
+ - modalLabel
289
+ - nameHelperText
290
+ - nameLabel
291
+ - namePlaceholder
292
+ - nameRequired
293
+ - nextStepButtonText
294
+ - onCopy
295
+ - onRequestEdit
296
+ - onRequestGenerate
297
+ - previousStepButtonText
298
+ - showAPIKeyLabel
299
+ # BreadcrumbWithOverflow
300
+ - noTrailingSlash
301
+ # ButtonMenu
302
+ - menuAriaLabel
303
+ # ButtonSetWithOverflow
304
+ - buttons
305
+ - buttonSetOverflowLabel
306
+ # ButtonWrapper
307
+ - iconTooltipLabel
308
+ - isTearsheetOpen
309
+ - tooltipPosition
310
+ # Canary
311
+ - componentName
312
+ # Card
313
+ - onKeyDown
314
+ # CardFooter
315
+ - hasButton
316
+ # CardHeader
317
+ - noActionIcons
318
+ # Carousel
319
+ - disableArrowScroll
320
+ - fadedEdgeColor
321
+ - onChangeIsScrollable
322
+ - onScroll
323
+ # Cascade
324
+ - grid
325
+ # Checklist
326
+ - chartLabel
327
+ - chartValue
328
+ - checklistAriaLabel
329
+ - checklistToggleAriaLabel
330
+ - onClickViewAll
331
+ - showToggle
332
+ - taskLists
333
+ # Coachmark
334
+ - overlayClassName
335
+ - overlayKind
336
+ - overlayRef
337
+ - positionTune
338
+ - target
339
+ # CoachmarkDragbar
340
+ - a11yKeyboardHandler
341
+ - onDrag
342
+ # CoachmarkOverlay
343
+ - fixedIsVisible
344
+ # CoachmarkOverlayElements
345
+ - isVisible
346
+ # CoachmarkStackHome
347
+ - onClickNavItem
348
+ # Columns
349
+ - disabledInstructionsLabel
350
+ - getVisibleColumnsCount
351
+ - setColumnStatus
352
+ # ComboButton
353
+ - overflowMenu
354
+ # ComboButtonItem
355
+ - href
356
+ # CreateFullPage
357
+ - modalDangerButtonText
358
+ - modalDescription
359
+ - modalSecondaryButtonText
360
+ - modalTitle
361
+ - sideNavAriaLabel
362
+ # CreateInfluencer
363
+ - stepData
364
+ # CustomizeColumnsTearsheet
365
+ - columnDefinitions
366
+ - customizeTearsheetHeadingLabel
367
+ - onSaveColumnPrefs
368
+ - primaryButtonTextLabel
369
+ - secondaryButtonTextLabel
370
+ # DataSpreadsheet
371
+ - spreadsheetAriaLabel
372
+ # DataSpreadsheetBody
373
+ - clickAndHoldActive
374
+ - getTableBodyProps
375
+ - prepareRow
376
+ - selectionAreaData
377
+ - setActiveCellInsideSelectionArea
378
+ - setClickAndHoldActive
379
+ - setColumnOrder
380
+ - setContainerHasFocus
381
+ - totalColumnsWidth
382
+ # DataSpreadsheetHeader
383
+ - headerCellHoldActive
384
+ - updateActiveCellCoordinates
385
+ # DraggableElement
386
+ - ariaLabel
387
+ - classList
388
+ - isSticky
389
+ - selected
390
+ # DraggableItemsList
391
+ - moveElement
392
+ - setAriaRegionText
393
+ # EditTearsheet
394
+ - onHandleModalClick
395
+ # EditUpdateCards
396
+ - editChildren
397
+ - editMode
398
+ - previewChildren
399
+ # EmptyState
400
+ - illustration
401
+ # ExampleComponent
402
+ - borderColor
403
+ - boxedBorder
404
+ - onPrimaryClick
405
+ - onSecondaryClick
406
+ - primaryButtonLabel
407
+ - primaryKind
408
+ - secondaryButtonLabel
409
+ - secondaryIcon
410
+ - secondaryKind
411
+ - style
412
+ - usesExampleHook
413
+ # ExportModal
414
+ - errorMessage
415
+ - filename
416
+ - hidePasswordLabel
417
+ - inputType
418
+ - invalidInputText
419
+ - loadingMessage
420
+ - preformattedExtensions
421
+ - preformattedExtensionsLabel
422
+ - showPasswordLabel
423
+ - successful
424
+ - successMessage
425
+ - validExtensions
426
+ # FilterFlyout
427
+ - flyoutIconDescription
428
+ - onFlyoutClose
429
+ - onFlyoutOpen
430
+ # FilterPanel
431
+ - filterPanelMinHeight
432
+ - filterSections
433
+ - onPanelClose
434
+ - onPanelOpen
435
+ - searchLabelText
436
+ - showFilterSearch
437
+ # FilterProvider
438
+ - filterProps
439
+ # FilterSummary
440
+ - clearButtonInline
441
+ - clearFilters
442
+ - renderLabel
443
+ # Guidebanner
444
+ - nextIconDescription
445
+ - previousIconDescription
446
+ # ImportModal
447
+ - accept
448
+ - defaultErrorBody
449
+ - defaultErrorHeader
450
+ - fetchErrorBody
451
+ - fetchErrorHeader
452
+ - fileDropHeader
453
+ - fileDropLabel
454
+ - fileUploadLabel
455
+ - inputButtonIcon
456
+ - inputButtonText
457
+ - inputId
458
+ - invalidFileTypeErrorBody
459
+ - invalidFileTypeErrorHeader
460
+ - invalidIconDescription
461
+ - maxFileSize
462
+ - maxFileSizeErrorBody
463
+ - maxFileSizeErrorHeader
464
+ # InlineEditButton
465
+ - columnConfig
466
+ - isActiveCell
467
+ - labelIcon
468
+ # InlineEditCell
469
+ - cell
470
+ - config
471
+ - tabIndex
472
+ # InlineEditV1
473
+ - buttonTooltipAlignment
474
+ - buttonTooltipPosition
475
+ - cancelDescription
476
+ - editDescription
477
+ - saveDescription
478
+ # InlineEditV2
479
+ - cancelLabel
480
+ - editLabel
481
+ - inheritTypography
482
+ - invalidLabel
483
+ - saveLabel
484
+ # InlineTip
485
+ - narrow
486
+ - tertiaryButtonLabel
487
+ # InterstitialScreen
488
+ - domainName
489
+ - headerClassName
490
+ - headerTitle
491
+ - hideProgressIndicator
492
+ - interstitialAriaLabel
493
+ - isFullScreen
494
+ - nextButtonLabel
495
+ - productName
496
+ - skipButtonLabel
497
+ - startButtonLabel
498
+ # InterstitialScreenView
499
+ - stepTitle
500
+ # ModifiedTabLabelWithClose
501
+ - unsavedContent
502
+ # ModifiedTabs
503
+ - newTabContent
504
+ - newTabLabel
505
+ - onCloseTab
506
+ - onNewTab
507
+ - tabs
508
+ # NonLinearReading
509
+ - definition
510
+ # NotificationsPanel
511
+ - daysAgoText
512
+ - dismissAllLabel
513
+ - dismissSingleNotificationIconDescription
514
+ - doNotDisturbDefaultToggled
515
+ - doNotDisturbLabel
516
+ - emptyStateLabel
517
+ - hourAgoText
518
+ - hoursAgoText
519
+ - minuteAgoText
520
+ - minutesAgoText
521
+ - monthAgoText
522
+ - monthsAgoText
523
+ - nowText
524
+ - onClickOutside
525
+ - onDismissAllNotifications
526
+ - onDismissSingleNotification
527
+ - onDoNotDisturbChange
528
+ - onSettingsClick
529
+ - onViewAllClick
530
+ - previousLabel
531
+ - readLessLabel
532
+ - readMoreLabel
533
+ - secondsAgoText
534
+ - settingsIconDescription
535
+ - todayLabel
536
+ - yearAgoText
537
+ - yearsAgoText
538
+ - yesterdayAtText
539
+ - yesterdayLabel
540
+ # OptionsTile
541
+ - enabled
542
+ - locked
543
+ - lockedText
544
+ - summary
545
+ - titleId
546
+ - warn
547
+ - warnText
548
+ # PageHeader
549
+ - actionBarItems
550
+ - actionBarMenuOptionsClass
551
+ - actionBarOverflowAriaLabel
552
+ - breadcrumbOverflowAriaLabel
553
+ - collapseHeader
554
+ - collapseHeaderIconDescription
555
+ - collapseTitle
556
+ - disableBreadcrumbScroll
557
+ - enableBreadcrumbScroll
558
+ - expandHeaderIconDescription
559
+ - fullWidthGrid
560
+ - hasBackgroundAlways
561
+ - hasCollapseHeaderToggle
562
+ - narrowGrid
563
+ - pageActions
564
+ - pageActionsMenuOptionsClass
565
+ - pageActionsOverflowLabel
566
+ - withoutBackground
567
+ # PageHeaderTitle
568
+ - blockClass
569
+ - hasBreadcrumbRow
570
+ # RemoveModal
571
+ - inputInvalidText
572
+ - inputLabelText
573
+ - inputPlaceholderText
574
+ - primaryButtonDisabled
575
+ - resourceName
576
+ - textConfirmation
577
+ # RowSizeRadioGroup
578
+ - buttonRef
579
+ - rowSizeLabels
580
+ - rowSizes
581
+ # Saving
582
+ - defaultIconDescription
583
+ - defaultText
584
+ - failIconDescription
585
+ - failText
586
+ - inProgressIconDescription
587
+ - inProgressText
588
+ - onRequestCancel
589
+ - onRequestSave
590
+ - status
591
+ - successIconDescription
592
+ - successText
593
+ # SelectAllWithToggle
594
+ - allPageRowsLabel
595
+ - allRowsLabel
596
+ - getToggleAllPageRowsSelectedProps
597
+ - getToggleAllRowsSelectedProps
598
+ - isAllRowsSelected
599
+ - selectAllToggle
600
+ - tableId
601
+ - withStickyColumn
602
+ # SidePanel
603
+ - actionToolbarButtons
604
+ - animateTitle
605
+ - condensedActions
606
+ - includeOverlay
607
+ - navigationBackIconDescription
608
+ - onNavigationBack
609
+ - onUnmount
610
+ # SteppedAnimatedMedia
611
+ - filePaths
612
+ - playStep
613
+ # TagSet
614
+ - allTagsModalTarget
615
+ - containingElementRef
616
+ - measurementOffset
617
+ - multiline
618
+ - overflowClassName
619
+ # TagSetModal
620
+ - allTags
621
+ - searchLabel
622
+ # TagSetOverflow
623
+ - allTagsModalSearchThreshold
624
+ - onShowAllClick
625
+ - overflowTags
626
+ # TearsheetShell
627
+ - headerActions
628
+ # Toolbar
629
+ - vertical
630
+ # ToolbarButton
631
+ - caret
632
+ # UserProfileImage
633
+ - backgroundColor
634
+ - icon
635
+ - image
636
+ - imageDescription
637
+ - initials
638
+ - tooltipText
639
+ # WebTerminal
640
+ - documentationLinks
641
+ - documentationLinksIconDescription
642
+ - isInitiallyOpen
643
+ # React
644
+ - key
645
+ - ref
646
+ allowedAttributeStringValues:
647
+ # General - actionsPlacement
648
+ - bottom
649
+ - top
650
+ # General - align
651
+ - bottom
652
+ - bottom-left
653
+ - bottom-right
654
+ - center
655
+ - end
656
+ - left
657
+ - left-bottom
658
+ - left-top
659
+ - right
660
+ - right-bottom
661
+ - right-top
662
+ - start
663
+ - top
664
+ - top-left
665
+ - top-right
666
+ # General - cellSize
667
+ - lg
668
+ - md
669
+ - sm
670
+ - xs
671
+ # General - clickZone
672
+ - one
673
+ - three
674
+ - two
675
+ # General - illustrationTheme
676
+ - dark
677
+ - light
678
+ # General - influencerPosition
679
+ - left
680
+ - right
681
+ # General - influencerWidth
682
+ - narrow
683
+ - wide
684
+ # General - kind
685
+ - '"fixed"'
686
+ - '"floating"'
687
+ - '"stacked"'
688
+ - '"tooltip"'
689
+ - checked
690
+ - critical
691
+ - default
692
+ - disabled
693
+ - error
694
+ - fatal
695
+ - ghost
696
+ - group
697
+ - in-progress
698
+ - indeterminate
699
+ - info
700
+ - major-warning
701
+ - minor-warning
702
+ - normal
703
+ - pending
704
+ - primary
705
+ - running
706
+ - tertiary
707
+ - unchecked
708
+ - undefined
709
+ - unknown
710
+ - user
711
+ # General - mediaPosition
712
+ - left
713
+ - top
714
+ # General - overflowAlign
715
+ - center
716
+ - end
717
+ - start
718
+ # General - overflowDirection
719
+ - bottom
720
+ - left
721
+ - right
722
+ - top
723
+ # General - overflowType
724
+ - default
725
+ - tag
726
+ # General - placement
727
+ - left
728
+ - right
729
+ # General - primaryButtonKind
730
+ - ghost
731
+ - primary
732
+ # General - primaryButtonPlacement
733
+ - bottom
734
+ - top
735
+ # General - secondaryButtonKind
736
+ - ghost
737
+ - secondary
738
+ # General - size
739
+ - default
740
+ - field
741
+ - lg
742
+ - max
743
+ - md
744
+ - narrow
745
+ - sm
746
+ - small
747
+ - wide
748
+ - xl
749
+ - xlg
750
+ - xs
751
+ # General - theme
752
+ - dark
753
+ - light
754
+ # General - titleSize
755
+ - default
756
+ - large
757
+ # General - type
758
+ - auto
759
+ - date
760
+ - manual
761
+ - number
762
+ - selection
763
+ - text
764
+ # General - updateMethod
765
+ - batch
766
+ - instant
767
+ # General - verticalPosition
768
+ - lower
769
+ - normal
770
+ # APIKeyDownloader - fileType
771
+ - json
772
+ - txt
773
+ # Coachmark - overlayKind
774
+ - floating
775
+ - stacked
776
+ - tooltip
777
+ # ExampleComponent - primaryKind
778
+ - danger
779
+ - primary
780
+ # ExampleComponent - secondaryKind
781
+ - secondary
782
+ - tertiary
783
+ # ExportModal - inputType
784
+ - password
785
+ - text
786
+ # InlineEditV1 - buttonTooltipAlignment
787
+ - center
788
+ - end
789
+ - start
790
+ # InlineEditV1 - buttonTooltipPosition
791
+ - bottom
792
+ - left
793
+ - right
794
+ - top
795
+ # PageHeader - fullWidthGrid
796
+ - xl
797
+ # Saving - status
798
+ - default
799
+ - fail
800
+ - in-progress
801
+ - success
802
+ # UserProfileImage - backgroundColor
803
+ - dark-cyan
804
+ - dark-gray
805
+ - dark-green
806
+ - dark-magenta
807
+ - dark-purple
808
+ - dark-teal
809
+ - light-cyan
810
+ - light-gray
811
+ - light-green
812
+ - light-magenta
813
+ - light-purple
814
+ - light-teal
815
+ npm:
816
+ dependencies: null