@splunk/react-ui 4.14.0 → 4.15.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.
Files changed (126) hide show
  1. package/.dockerignore +2 -0
  2. package/Accordion.js +41 -16
  3. package/Anchor.js +9 -9
  4. package/Animation.js +6 -6
  5. package/AnimationToggle.js +2 -2
  6. package/Box.js +9 -9
  7. package/Button.js +35 -34
  8. package/ButtonGroup.js +9 -9
  9. package/ButtonSimple.js +14 -14
  10. package/CHANGELOG.md +30 -0
  11. package/Calendar.js +124 -106
  12. package/Card.js +68 -68
  13. package/CardLayout.js +9 -9
  14. package/Chip.js +23 -23
  15. package/Clickable.js +38 -14
  16. package/CloseButton.js +23 -23
  17. package/Code.js +484 -436
  18. package/CollapsiblePanel.js +59 -34
  19. package/Color.js +297 -187
  20. package/ColumnLayout.js +18 -17
  21. package/ComboBox.js +81 -32
  22. package/Concertina.js +88 -27
  23. package/ControlGroup.js +81 -24
  24. package/Date.js +44 -31
  25. package/DefinitionList.js +14 -8
  26. package/Divider.d.ts +2 -0
  27. package/Divider.js +9 -9
  28. package/Dockerfile.enterprise.storybook +7 -0
  29. package/Dockerfile.prisma.storybook +7 -0
  30. package/Dockerfile.visual +10 -0
  31. package/Dropdown.js +78 -18
  32. package/EventListener.js +17 -17
  33. package/File.js +96 -43
  34. package/FormRows.js +38 -37
  35. package/Heading.js +83 -55
  36. package/Image.js +67 -42
  37. package/JSONTree.js +106 -21
  38. package/Layer.js +59 -34
  39. package/Link.js +17 -17
  40. package/List.js +3 -3
  41. package/Markdown.js +71 -65
  42. package/Menu.js +155 -121
  43. package/Message.js +129 -129
  44. package/MessageBar.js +136 -136
  45. package/Modal.js +57 -32
  46. package/ModalLayer.js +15 -15
  47. package/Monogram.js +18 -17
  48. package/Multiselect.js +2793 -2315
  49. package/Number.js +74 -37
  50. package/Paginator.js +99 -86
  51. package/Paragraph.js +10 -10
  52. package/Popover.js +191 -54
  53. package/Progress.js +23 -22
  54. package/RadioBar.js +32 -14
  55. package/RadioList.js +17 -11
  56. package/Resize.js +33 -20
  57. package/ResultsMenu.js +36 -23
  58. package/ScreenReaderContent.js +9 -9
  59. package/Scroll.js +50 -25
  60. package/ScrollContainerContext.js +48 -48
  61. package/Search.js +68 -31
  62. package/Select.js +347 -69
  63. package/SidePanel.js +37 -24
  64. package/Slider.js +54 -24
  65. package/SlidingPanels.js +52 -14
  66. package/SplitButton.js +23 -22
  67. package/StaticContent.js +9 -9
  68. package/StepBar.js +22 -22
  69. package/Switch.js +18 -13
  70. package/TabBar.js +22 -22
  71. package/TabLayout.js +43 -18
  72. package/Table.js +371 -162
  73. package/Text.js +91 -49
  74. package/TextArea.d.ts +2 -0
  75. package/TextArea.js +127 -49
  76. package/Tooltip.js +236 -59
  77. package/TransitionOpen.js +39 -26
  78. package/Typography.d.ts +2 -0
  79. package/Typography.js +17 -16
  80. package/WaitSpinner.js +15 -15
  81. package/docker-compose.yml +42 -0
  82. package/package.json +12 -10
  83. package/test-runner-jest.config.js +11 -6
  84. package/types/src/Accordion/AccordionContext.d.ts +1 -0
  85. package/types/src/Button/docs/examples/Selected.d.ts +2 -2
  86. package/types/src/ButtonGroup/ButtonGroupContext.d.ts +1 -0
  87. package/types/src/Calendar/Calendar.d.ts +2 -0
  88. package/types/src/CardLayout/CardLayoutContext.d.ts +1 -0
  89. package/types/src/Concertina/ConcertinaContext.d.ts +1 -0
  90. package/types/src/ControlGroup/ControlGroup.d.ts +15 -8
  91. package/types/src/ControlGroup/docs/examples/HelpWithErrorText.d.ts +2 -0
  92. package/types/src/ControlGroup/docs/examples/Required.d.ts +2 -0
  93. package/types/src/File/File.d.ts +4 -2
  94. package/types/src/File/FileContext.d.ts +1 -0
  95. package/types/src/FormRows/FormRowsContext.d.ts +1 -0
  96. package/types/src/Markdown/renderers/MarkdownLink.d.ts +1 -1
  97. package/types/src/Menu/MenuContext.d.ts +1 -0
  98. package/types/src/Modal/ModalContext.d.ts +1 -0
  99. package/types/src/Multiselect/Compact.d.ts +10 -1
  100. package/types/src/Multiselect/Multiselect.d.ts +12 -1
  101. package/types/src/Multiselect/Normal.d.ts +2 -0
  102. package/types/src/Popover/Popover.d.ts +25 -5
  103. package/types/src/Popover/PopoverContext.d.ts +1 -0
  104. package/types/src/RadioBar/RadioBar.d.ts +5 -3
  105. package/types/src/RadioBar/RadioBarContext.d.ts +1 -0
  106. package/types/src/RadioList/RadioList.d.ts +5 -1
  107. package/types/src/RadioList/RadioListContext.d.ts +1 -0
  108. package/types/src/Select/SelectBase.d.ts +2 -0
  109. package/types/src/Slider/Slider.d.ts +5 -3
  110. package/types/src/StepBar/StepBarContext.d.ts +1 -0
  111. package/types/src/Switch/Switch.d.ts +2 -0
  112. package/types/src/TabBar/TabBarContext.d.ts +1 -0
  113. package/types/src/Table/Head.d.ts +2 -0
  114. package/types/src/Table/TableContext.d.ts +1 -0
  115. package/types/src/Text/Text.d.ts +5 -3
  116. package/types/src/TextArea/TextArea.d.ts +5 -3
  117. package/types/src/Tooltip/Tooltip.d.ts +16 -4
  118. package/types/src/useForceUpdate/useForceUpdate.d.ts +1 -0
  119. package/useForceUpdate.js +9 -9
  120. package/useKeyPress.js +2 -2
  121. package/usePrevious.js +9 -9
  122. package/.storybook-visual/config/snapshotResolver.js +0 -29
  123. package/.storybook-visual/main.js +0 -22
  124. package/.storybook-visual/preview.jsx +0 -31
  125. package/.storybook-visual/scripts/test.sh +0 -108
  126. package/.storybook-visual/test-runner.js +0 -108
package/Typography.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 186);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 235);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -94,7 +94,14 @@ module.exports = require("prop-types");
94
94
 
95
95
  /***/ }),
96
96
 
97
- /***/ 186:
97
+ /***/ 2:
98
+ /***/ (function(module, exports) {
99
+
100
+ module.exports = require("react");
101
+
102
+ /***/ }),
103
+
104
+ /***/ 235:
98
105
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
99
106
 
100
107
  "use strict";
@@ -113,11 +120,12 @@ var external_react_default = /*#__PURE__*/__webpack_require__.n(external_react_)
113
120
  var external_prop_types_ = __webpack_require__(1);
114
121
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
115
122
 
116
- // EXTERNAL MODULE: external "lodash"
117
- var external_lodash_ = __webpack_require__(4);
123
+ // EXTERNAL MODULE: external "lodash/pick"
124
+ var pick_ = __webpack_require__(34);
125
+ var pick_default = /*#__PURE__*/__webpack_require__.n(pick_);
118
126
 
119
127
  // EXTERNAL MODULE: external "@splunk/themes/mixins"
120
- var mixins_ = __webpack_require__(59);
128
+ var mixins_ = __webpack_require__(80);
121
129
  var mixins_default = /*#__PURE__*/__webpack_require__.n(mixins_);
122
130
 
123
131
  // EXTERNAL MODULE: external "styled-components"
@@ -177,7 +185,7 @@ function Typography(_ref2) {
177
185
 
178
186
  // @docs-props-type TypographyPropsBase
179
187
  var variant = otherProps.variant;
180
- var typographyParams = Object(external_lodash_["pick"])(otherProps, keys);
188
+ var typographyParams = pick_default()(otherProps, keys);
181
189
  return /*#__PURE__*/external_react_default.a.createElement(StyledTypography, _extends({
182
190
  as: as,
183
191
  ref: elementRef,
@@ -192,13 +200,6 @@ Typography.propTypes = propTypes;
192
200
 
193
201
 
194
202
 
195
- /***/ }),
196
-
197
- /***/ 2:
198
- /***/ (function(module, exports) {
199
-
200
- module.exports = require("react");
201
-
202
203
  /***/ }),
203
204
 
204
205
  /***/ 3:
@@ -208,14 +209,14 @@ module.exports = require("styled-components");
208
209
 
209
210
  /***/ }),
210
211
 
211
- /***/ 4:
212
+ /***/ 34:
212
213
  /***/ (function(module, exports) {
213
214
 
214
- module.exports = require("lodash");
215
+ module.exports = require("lodash/pick");
215
216
 
216
217
  /***/ }),
217
218
 
218
- /***/ 59:
219
+ /***/ 80:
219
220
  /***/ (function(module, exports) {
220
221
 
221
222
  module.exports = require("@splunk/themes/mixins");
package/WaitSpinner.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 181);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 230);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -101,7 +101,14 @@ module.exports = require("prop-types");
101
101
 
102
102
  /***/ }),
103
103
 
104
- /***/ 181:
104
+ /***/ 2:
105
+ /***/ (function(module, exports) {
106
+
107
+ module.exports = require("react");
108
+
109
+ /***/ }),
110
+
111
+ /***/ 230:
105
112
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
106
113
 
107
114
  "use strict";
@@ -120,13 +127,13 @@ var external_prop_types_ = __webpack_require__(1);
120
127
  var external_prop_types_default = /*#__PURE__*/__webpack_require__.n(external_prop_types_);
121
128
 
122
129
  // EXTERNAL MODULE: external "@splunk/react-ui/AnimationToggle"
123
- var AnimationToggle_ = __webpack_require__(38);
130
+ var AnimationToggle_ = __webpack_require__(47);
124
131
 
125
132
  // EXTERNAL MODULE: external "@splunk/themes"
126
133
  var themes_ = __webpack_require__(0);
127
134
 
128
135
  // EXTERNAL MODULE: external "@splunk/ui-utils/i18n"
129
- var i18n_ = __webpack_require__(5);
136
+ var i18n_ = __webpack_require__(4);
130
137
 
131
138
  // EXTERNAL MODULE: external "styled-components"
132
139
  var external_styled_components_ = __webpack_require__(3);
@@ -265,13 +272,6 @@ WaitSpinner.propTypes = propTypes;
265
272
  // CONCATENATED MODULE: ./src/WaitSpinner/index.ts
266
273
 
267
274
 
268
- /***/ }),
269
-
270
- /***/ 2:
271
- /***/ (function(module, exports) {
272
-
273
- module.exports = require("react");
274
-
275
275
  /***/ }),
276
276
 
277
277
  /***/ 3:
@@ -281,17 +281,17 @@ module.exports = require("styled-components");
281
281
 
282
282
  /***/ }),
283
283
 
284
- /***/ 38:
284
+ /***/ 4:
285
285
  /***/ (function(module, exports) {
286
286
 
287
- module.exports = require("@splunk/react-ui/AnimationToggle");
287
+ module.exports = require("@splunk/ui-utils/i18n");
288
288
 
289
289
  /***/ }),
290
290
 
291
- /***/ 5:
291
+ /***/ 47:
292
292
  /***/ (function(module, exports) {
293
293
 
294
- module.exports = require("@splunk/ui-utils/i18n");
294
+ module.exports = require("@splunk/react-ui/AnimationToggle");
295
295
 
296
296
  /***/ })
297
297
 
@@ -0,0 +1,42 @@
1
+ version: "3.9"
2
+ services:
3
+ prisma-storybook:
4
+ build:
5
+ context: .
6
+ dockerfile: Dockerfile.prisma.storybook
7
+ command: npx http-server storybook-static-visual --port 6007
8
+ ports:
9
+ - "6007:6007"
10
+ enterprise-storybook:
11
+ build:
12
+ context: .
13
+ dockerfile: Dockerfile.enterprise.storybook
14
+ command: npx http-server storybook-static-visual-enterprise --port 6008
15
+ ports:
16
+ - "6008:6008"
17
+ prisma-visual-test:
18
+ build:
19
+ context: .
20
+ dockerfile: Dockerfile.visual
21
+ env_file:
22
+ - ./.storybook-visual/config/.env.visual
23
+ working_dir: /react-ui
24
+ volumes:
25
+ - "./src:/react-ui/src"
26
+ - "./test-reports:/react-ui/test-reports"
27
+ depends_on:
28
+ - prisma-storybook
29
+ command: /bin/sh -c "npx wait-on http://prisma-storybook:6007 && yarn cache clean && yarn test-storybook -c .storybook-visual --browsers $${STORYBOOK_BROWSER} $${STORYBOOK_UPDATE_SNAPSHOT} --url http://prisma-storybook:6007 --no-index-json"
30
+ enterprise-visual-test:
31
+ build:
32
+ context: .
33
+ dockerfile: Dockerfile.visual
34
+ env_file:
35
+ - ./.storybook-visual/config/.env.visual
36
+ working_dir: /react-ui
37
+ volumes:
38
+ - "./src:/react-ui/src"
39
+ - "./test-reports:/react-ui/test-reports"
40
+ depends_on:
41
+ - enterprise-storybook
42
+ command: /bin/sh -c "npx wait-on http://enterprise-storybook:6008 && yarn cache clean && yarn test-storybook -c .storybook-visual --browsers $${STORYBOOK_BROWSER} $${STORYBOOK_UPDATE_SNAPSHOT} --url http://enterprise-storybook:6008 --no-index-json"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splunk/react-ui",
3
- "version": "4.14.0",
3
+ "version": "4.15.0",
4
4
  "description": "Library of React components that implement the Splunk design language",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Splunk Inc.",
@@ -9,7 +9,8 @@
9
9
  "docs": "NODE_ENV=production webpack --config docs.gen.webpack.config.js",
10
10
  "docs:publish": "cicd-publish-docs docs --force",
11
11
  "docs:publish:external": "cicd-publish-docs docs-external --force --suffix=public",
12
- "docs:start": "webpack serve --config docs.gen.webpack.config.js",
12
+ "docs:start": "INTERNAL=true webpack serve --config docs.gen.webpack.config.js",
13
+ "docs:start:external": "webpack serve --config docs.gen.webpack.config.js",
13
14
  "eslint": "eslint src .storybook --ext \".ts,.tsx,.js,.jsx\"",
14
15
  "eslint:fix": "yarn run eslint --fix",
15
16
  "eslint:ci": "yarn run eslint -f junit -o test-reports/lint-results.xml",
@@ -37,9 +38,9 @@
37
38
  "styled-components": "5.1.1"
38
39
  },
39
40
  "dependencies": {
40
- "@splunk/react-icons": "^3.3.0",
41
- "@splunk/themes": "^0.13.0",
42
- "@splunk/ui-utils": "^1.5.1",
41
+ "@splunk/react-icons": "^3.3.1",
42
+ "@splunk/themes": "^0.13.1",
43
+ "@splunk/ui-utils": "^1.5.2",
43
44
  "@types/commonmark": "^0.27.0",
44
45
  "@types/lodash": "^4.14.156",
45
46
  "@types/react": "^16.9.38",
@@ -52,11 +53,11 @@
52
53
  "commonmark-react-renderer": "^4.3.2",
53
54
  "decimal.js-light": "^2.2.3",
54
55
  "lodash": "^4.17.14",
55
- "moment": "^2.22.2",
56
+ "moment": "^2.29.4",
56
57
  "prop-types": "^15.6.2",
57
58
  "react-resize-detector": "^3.2.1",
58
59
  "react-sortable-hoc": "^1.11.0",
59
- "react-spring": "^9.2.4",
60
+ "react-spring": "9.2.4",
60
61
  "tinycolor2": "^1.4.1",
61
62
  "use-typed-event-listener": "^3.0.0"
62
63
  },
@@ -67,13 +68,13 @@
67
68
  "@cypress/webpack-dev-server": "^1.8.2",
68
69
  "@splunk/babel-preset": "^3.0.0",
69
70
  "@splunk/cicd-tools": "^0.5.0",
70
- "@splunk/docs-gen": "^0.11.2",
71
+ "@splunk/docs-gen": "1.0.0-beta.1",
71
72
  "@splunk/eslint-config": "^4.0.0",
72
- "@splunk/react-docs": "^0.11.0",
73
+ "@splunk/react-docs": "1.0.0-beta.1",
73
74
  "@splunk/stylelint-config": "^4.0.0",
74
75
  "@splunk/test-runner-utils": "^0.4.0",
75
76
  "@splunk/wdio-functional-test-runner": "^10.1.0",
76
- "@splunk/webpack-configs": "^5.0.0",
77
+ "@splunk/webpack-configs": "^6.0.0",
77
78
  "@storybook/addon-a11y": "^6.5.9",
78
79
  "@storybook/addon-essentials": "^6.5.9",
79
80
  "@storybook/addon-interactions": "^6.5.9",
@@ -100,6 +101,7 @@
100
101
  "babel-loader": "^8.0.4",
101
102
  "babel-plugin-istanbul": "^5.1.0",
102
103
  "babel-plugin-styled-components": "^1.10.7",
104
+ "babel-plugin-transform-imports": "^2.0.0",
103
105
  "babel-plugin-transform-require-context": "^0.1.1",
104
106
  "chai": "^3.5.0",
105
107
  "core-js": "^3.6.4",
@@ -1,4 +1,5 @@
1
1
  /* eslint-disable no-undef */
2
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
2
3
  const { getJestConfig } = require('@storybook/test-runner');
3
4
 
4
5
  // if component is passed to storybook:test then test will run for only that component
@@ -18,24 +19,28 @@ module.exports = {
18
19
  '^.+\\.examples\\.[jt]sx?$': '@storybook/test-runner/playwright/transform',
19
20
  '^.+\\.tsx?$': 'babel-jest',
20
21
  },
21
- snapshotResolver: '<rootDir>/.storybook-visual/config/snapshotResolver.js',
22
+ // used for a11y DOM snapshots, currently disabled
23
+ // snapshotResolver: '<rootDir>/.storybook-visual/config/snapshotResolver.js',
22
24
  reporters: [
23
25
  'default',
26
+ 'jest-junit',
24
27
  [
25
28
  'jest-stare',
26
29
  {
27
30
  resultDir: `./test-reports/${
28
31
  process.env.STORYBOOK_TEST_A11Y === 'false' ? 'visual' : 'a11y'
29
- }/${process.env.STORYBOOK_TEST_BROWSER}-${process.env.STORYBOOK_THEME_FAMILY}`,
32
+ }/${process.env.STORYBOOK_THEME_FAMILY}${
33
+ process.env.JOB_BROWSER ? `-${process.env.JOB_BROWSER}` : ''
34
+ }`,
30
35
  reportTitle: `${
31
36
  process.env.STORYBOOK_TEST_A11Y === 'false' ? 'Visual' : 'A11y'
32
- } Test Report - ${process.env.STORYBOOK_TEST_BROWSER} ${
33
- process.env.STORYBOOK_THEME_FAMILY
37
+ } Test Report - ${process.env.STORYBOOK_THEME_FAMILY}${
38
+ process.env.JOB_BROWSER ? `-${process.env.JOB_BROWSER}` : ''
34
39
  }`,
35
40
  reportHeadline: `${
36
41
  process.env.STORYBOOK_TEST_A11Y === 'false' ? 'Visual' : 'A11y'
37
- } Test Report - ${process.env.STORYBOOK_TEST_BROWSER} ${
38
- process.env.STORYBOOK_THEME_FAMILY
42
+ } Test Report - ${process.env.STORYBOOK_THEME_FAMILY}${
43
+ process.env.JOB_BROWSER ? `-${process.env.JOB_BROWSER}` : ''
39
44
  }`,
40
45
  hidePending: true,
41
46
  resultHtml:
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { CollapsiblePanelRequestCloseHandler, CollapsiblePanelRequestOpenHandler } from '@splunk/react-ui/CollapsiblePanel';
2
3
  export interface AccordionContext {
3
4
  onRequestClose?: CollapsiblePanelRequestCloseHandler;
@@ -1,2 +1,2 @@
1
- declare function Buttons(): JSX.Element;
2
- export default Buttons;
1
+ declare function Selected(): JSX.Element;
2
+ export default Selected;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface ButtonGroupContext {
2
3
  inline?: boolean;
3
4
  role?: string;
@@ -26,6 +26,8 @@ interface CalendarPropsBase {
26
26
  * Called when a date is selected from the Calendar.
27
27
  */
28
28
  onChange?: CalendarChangeHandler;
29
+ /** @private. */
30
+ required?: boolean;
29
31
  /**
30
32
  * The current date value formatted 'YYYY-MM-DD'.
31
33
  */
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface CardLayoutContext {
2
3
  minWidth?: number | string;
3
4
  maxWidth?: number | string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { PanelClickHandler, PanelChangeHandler } from './Panel';
2
3
  export interface ConcertinaContext {
3
4
  onHeadingClick?: PanelClickHandler;
@@ -15,10 +15,12 @@ interface ControlGroupPropsBase {
15
15
  */
16
16
  elementRef?: React.Ref<HTMLDivElement>;
17
17
  /**
18
- * Highlight the control group as having an error. The label and help text will turn red,
19
- * but the children are not affected.
18
+ * Highlight the control group as having an error and optionally provide error text.
19
+ * If error text is provided, displays it below the control.
20
+ * The label will turn red, and the help text will turn red if error text was not provided.
21
+ * Child components will not turn red.
20
22
  */
21
- error?: boolean;
23
+ error?: boolean | string;
22
24
  help?: React.ReactNode;
23
25
  /**
24
26
  * Hide the `label` visually but still render it for screen readers.
@@ -36,6 +38,10 @@ interface ControlGroupPropsBase {
36
38
  * When labelPosition is left, the width of the label in pixels or a value with a unit.
37
39
  */
38
40
  labelWidth?: number | string;
41
+ /**
42
+ * Sets the control required and adds an asterisk before the `label`.
43
+ */
44
+ required?: boolean;
39
45
  /** The size of the text label.
40
46
  * @themeNotes Supported by the `enterprise` theme only. */
41
47
  size?: 'small' | 'medium';
@@ -50,7 +56,7 @@ interface ControlGroupPropsBase {
50
56
  */
51
57
  tooltipDefaultPlacement?: 'above' | 'below' | 'left' | 'right' | 'theme';
52
58
  }
53
- declare const defaultProps: Required<Pick<ControlGroupPropsBase, 'controlsLayout' | 'error' | 'hideLabel' | 'labelPosition' | 'labelWidth' | 'size'>>;
59
+ declare const defaultProps: Required<Pick<ControlGroupPropsBase, 'controlsLayout' | 'error' | 'hideLabel' | 'labelPosition' | 'labelWidth' | 'required' | 'size'>>;
54
60
  declare type ControlGroupProps = ClassComponentProps<ControlGroupPropsBase, typeof defaultProps, 'div'>;
55
61
  /**
56
62
  * `ControlGroup` places a label and optional help text around one or more controls. The `ControlGroup`
@@ -71,13 +77,14 @@ declare type ControlGroupProps = ClassComponentProps<ControlGroupPropsBase, type
71
77
  * supported `id` is used. The `labelFor` prop may be used to override the `for` attribute.
72
78
  */
73
79
  declare class ControlGroup extends Component<ControlGroupProps, {}> {
80
+ private errorId;
74
81
  private helpId;
75
82
  private labelId;
76
83
  private contextValue;
77
84
  private childIds;
78
85
  private stackLayoutChildStyle;
79
- static propTypes: React.WeakValidationMap<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>>;
80
- static defaultProps: Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>;
86
+ static propTypes: React.WeakValidationMap<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>>;
87
+ static defaultProps: Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>;
81
88
  constructor(props: Readonly<ControlGroupProps>);
82
89
  shouldComponentUpdate(nextProps: Readonly<ControlGroupProps>): boolean;
83
90
  private getChildID;
@@ -88,9 +95,9 @@ declare class ControlGroup extends Component<ControlGroupProps, {}> {
88
95
  private getLinkedId;
89
96
  render(): JSX.Element;
90
97
  }
91
- declare const ControlGroupWithTheme: React.ForwardRefExoticComponent<Pick<Pick<Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "help" | "tooltip" | "elementRef" | "error" | "splunkTheme" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth" | "labelFor" | "tooltipDefaultPlacement"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, never>, "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "help" | "tooltip" | "elementRef" | "splunkTheme" | "labelFor" | "tooltipDefaultPlacement"> & Partial<Pick<Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "help" | "tooltip" | "elementRef" | "error" | "splunkTheme" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth" | "labelFor" | "tooltipDefaultPlacement"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, never>, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">> & Partial<Pick<Required<Pick<ControlGroupPropsBase, "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, never>> & {
98
+ declare const ControlGroupWithTheme: React.ForwardRefExoticComponent<Pick<Pick<Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "required" | "size" | "help" | "tooltip" | "elementRef" | "error" | "splunkTheme" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth" | "labelFor" | "tooltipDefaultPlacement"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, never>, "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "help" | "tooltip" | "elementRef" | "splunkTheme" | "labelFor" | "tooltipDefaultPlacement"> & Partial<Pick<Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "required" | "size" | "help" | "tooltip" | "elementRef" | "error" | "splunkTheme" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth" | "labelFor" | "tooltipDefaultPlacement"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<ControlGroupPropsBase, Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, "div", never>, never>, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">> & Partial<Pick<Required<Pick<ControlGroupPropsBase, "required" | "size" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth">>, never>> & {
92
99
  ref?: ((instance: ControlGroup | null) => void) | React.RefObject<ControlGroup> | null | undefined;
93
- }, "ref" | "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "help" | "tooltip" | "elementRef" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth" | "labelFor" | "tooltipDefaultPlacement">>;
100
+ }, "ref" | "label" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "required" | "size" | "help" | "tooltip" | "elementRef" | "error" | "controlsLayout" | "hideLabel" | "labelPosition" | "labelWidth" | "labelFor" | "tooltipDefaultPlacement">>;
94
101
  export default ControlGroupWithTheme;
95
102
  export { ControlGroupContext };
96
103
  export type { ControlGroup as ControlGroupWithoutTheme };
@@ -0,0 +1,2 @@
1
+ declare function HelpWithErrorText(): JSX.Element;
2
+ export default HelpWithErrorText;
@@ -0,0 +1,2 @@
1
+ declare function Required(): JSX.Element;
2
+ export default Required;