@indico-data/design-system 1.0.46 → 1.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/jest.config.js +15 -0
- package/lib/components/Accordion/Accordion.d.ts +1 -1
- package/lib/components/Accordion/Accordion.stories.d.ts +2 -2
- package/lib/components/Accordion/Accordion.styles.d.ts +1 -1
- package/lib/components/Icon/Icon.stories.d.ts +3 -4
- package/lib/components/Icon/indicons.d.ts +143 -124
- package/lib/components/Icon/storyHelpers.d.ts +3 -3
- package/lib/components/ListTable/Header/Header.d.ts +1 -1
- package/lib/components/ListTable/Header/Header.styles.d.ts +1 -1
- package/lib/components/ListTable/ListTable.d.ts +1 -1
- package/lib/components/ListTable/ListTable.stories.d.ts +1 -1
- package/lib/components/ListTable/ListTable.styles.d.ts +1 -1
- package/lib/components/LoadingAwareContainer/LoadingAwareContainer.d.ts +15 -0
- package/lib/components/LoadingAwareContainer/LoadingAwareContainer.stories.d.ts +22 -0
- package/lib/components/LoadingAwareContainer/LoadingAwareContainer.styles.d.ts +544 -0
- package/lib/components/LoadingAwareContainer/index.d.ts +1 -0
- package/lib/components/Navigation/Drawer/Drawer.d.ts +15 -0
- package/lib/components/Navigation/Drawer/Drawer.stories.d.ts +6 -0
- package/lib/components/Navigation/Drawer/Drawer.styles.d.ts +7 -0
- package/lib/components/Navigation/Drawer/DrawerLinkList.d.ts +9 -0
- package/lib/components/Navigation/Drawer/DrawerLinkList.styles.d.ts +273 -0
- package/lib/components/Navigation/Drawer/__mocks__/mocks.d.ts +3 -0
- package/lib/components/Navigation/Drawer/__tests__/Drawer.test.d.ts +1 -0
- package/lib/components/Navigation/Drawer/__tests__/DrawerLinkList.test.d.ts +1 -0
- package/lib/components/Navigation/Drawer/constants.d.ts +3 -0
- package/lib/components/Navigation/Drawer/index.d.ts +1 -0
- package/lib/components/Navigation/Drawer/types.d.ts +7 -0
- package/lib/components/Navigation/index.d.ts +1 -0
- package/lib/components/Pagination/Pagination.d.ts +1 -2
- package/lib/components/Pagination/Pagination.styles.d.ts +1 -1
- package/lib/components/Wizard/Wizard.d.ts +48 -0
- package/lib/components/Wizard/Wizard.stories.d.ts +29 -0
- package/lib/components/Wizard/Wizard.styles.d.ts +815 -0
- package/lib/components/Wizard/index.d.ts +2 -0
- package/lib/components/WizardWithSidebar/WizardWithSidebar.d.ts +58 -0
- package/lib/components/WizardWithSidebar/WizardWithSidebar.stories.d.ts +46 -0
- package/lib/components/WizardWithSidebar/WizardWithSidebar.styles.d.ts +9 -0
- package/lib/components/WizardWithSidebar/index.d.ts +2 -0
- package/lib/components/basic-section/Section/Section.d.ts +1 -1
- package/lib/components/basic-section/Section/Section.stories.d.ts +1 -1
- package/lib/components/basic-section/Section/Section.styles.d.ts +1 -1
- package/lib/components/basic-section/SectionBlock/SectionBlock.d.ts +1 -1
- package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -1
- package/lib/components/basic-section/SectionBody/SectionBody.d.ts +1 -1
- package/lib/components/basic-section/SectionBody/SectionBody.stories.d.ts +1 -2
- package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -1
- package/lib/components/basic-section/SectionHeader/SectionHeader.d.ts +1 -1
- package/lib/components/basic-section/SectionHeader/SectionHeader.stories.d.ts +1 -1
- package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -1
- package/lib/components/basic-section/SectionTable/SectionTable.d.ts +1 -2
- package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -1
- package/lib/components/buttons/Button/Button.styles.d.ts +1 -1
- package/lib/components/buttons/IconButton/IconButton.d.ts +4 -5
- package/lib/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
- package/lib/components/buttons/IconButton/IconButton.styles.d.ts +5 -5
- package/lib/components/buttons/types.d.ts +2 -1
- package/lib/components/dropdowns/BorderSelect/BorderSelect.d.ts +1 -1
- package/lib/components/dropdowns/BorderSelect/BorderSelect.stories.d.ts +1 -1
- package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -2
- package/lib/components/dropdowns/Select/Select.d.ts +1 -1
- package/lib/components/dropdowns/Select/Select.stories.d.ts +1 -1
- package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -1
- package/lib/components/dropdowns/utils.d.ts +1 -2
- package/lib/components/index.d.ts +6 -1
- package/lib/components/inputs/EditableInput/EditableInput.d.ts +1 -1
- package/lib/components/inputs/EditableInput/EditableInput.stories.d.ts +1 -2
- package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -1
- package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -1
- package/lib/components/inputs/SearchInput/SearchInput.d.ts +1 -1
- package/lib/components/inputs/SearchInput/SearchInput.stories.d.ts +2 -1
- package/lib/components/inputs/SearchInput/SearchInput.styles.d.ts +272 -5
- package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -2
- package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -1
- package/lib/components/loading-indicators/CirclePulse/CirclePulse.styles.d.ts +3 -3
- package/lib/components/loading-indicators/LoadingIndicator/LoadingIndicator.d.ts +10 -0
- package/lib/components/loading-indicators/LoadingIndicator/LoadingIndicator.stories.d.ts +11 -0
- package/lib/components/loading-indicators/LoadingIndicator/LoadingIndicator.styles.d.ts +8 -0
- package/lib/components/loading-indicators/LoadingIndicator/index.d.ts +1 -0
- package/lib/components/loading-indicators/LoadingList/LoadingList.d.ts +1 -2
- package/lib/components/loading-indicators/LoadingList/LoadingList.stories.d.ts +1 -2
- package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -1
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.d.ts +1 -2
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -1
- package/lib/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.d.ts +1 -2
- package/lib/components/loading-indicators/RandomLoadingMessage/RandomLoadingMessage.stories.d.ts +1 -2
- package/lib/components/loading-indicators/index.d.ts +1 -0
- package/lib/components/modals/ConfirmModal/ConfirmModal.d.ts +17 -0
- package/lib/components/modals/ConfirmModal/ConfirmModal.stories.d.ts +44 -0
- package/lib/components/modals/ConfirmModal/ConfirmModal.styles.d.ts +273 -0
- package/lib/components/modals/ConfirmModal/index.d.ts +1 -0
- package/lib/components/modals/ModalBase/ModalBase.d.ts +27 -0
- package/lib/components/modals/ModalBase/ModalBase.stories.d.ts +9 -0
- package/lib/components/modals/ModalBase/ModalBase.styles.d.ts +6 -0
- package/lib/components/modals/ModalBase/index.d.ts +2 -0
- package/lib/components/modals/index.d.ts +2 -0
- package/lib/components/user-feedback/Shrug/Shrug.stories.d.ts +1 -1
- package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -1
- package/lib/index.d.ts +1293 -269
- package/lib/index.esm.js +4082 -610
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +4131 -649
- package/lib/index.js.map +1 -1
- package/lib/setupTests.d.ts +1 -0
- package/lib/styles/globals/index.d.ts +1 -2
- package/lib/tokens/colors.d.ts +7 -0
- package/lib/tokens/typography.d.ts +12 -0
- package/lib/types.d.ts +147 -124
- package/package.json +18 -3
- package/src/components/Icon/Icon.tsx +1 -0
- package/src/components/Icon/indicons.tsx +138 -15
- package/src/components/ListTable/ListTable.stories.tsx +1 -1
- package/src/components/LoadingAwareContainer/LoadingAwareContainer.stories.tsx +45 -0
- package/src/components/LoadingAwareContainer/LoadingAwareContainer.styles.ts +16 -0
- package/src/components/LoadingAwareContainer/LoadingAwareContainer.tsx +36 -0
- package/src/components/LoadingAwareContainer/index.ts +1 -0
- package/src/components/Navigation/Drawer/Drawer.stories.tsx +44 -0
- package/src/components/Navigation/Drawer/Drawer.styles.ts +75 -0
- package/src/components/Navigation/Drawer/Drawer.tsx +108 -0
- package/src/components/Navigation/Drawer/DrawerLinkList.styles.ts +66 -0
- package/src/components/Navigation/Drawer/DrawerLinkList.tsx +64 -0
- package/src/components/Navigation/Drawer/__mocks__/mocks.ts +49 -0
- package/src/components/Navigation/Drawer/__tests__/Drawer.test.tsx +175 -0
- package/src/components/Navigation/Drawer/__tests__/DrawerLinkList.test.tsx +66 -0
- package/src/components/Navigation/Drawer/index.ts +1 -0
- package/src/components/Navigation/Drawer/types.ts +8 -0
- package/src/components/Navigation/index.ts +1 -0
- package/src/components/Wizard/Wizard.stories.tsx +180 -0
- package/src/components/Wizard/Wizard.styles.ts +72 -0
- package/src/components/Wizard/Wizard.tsx +212 -0
- package/src/components/Wizard/index.ts +2 -0
- package/src/components/WizardWithSidebar/WizardWithSidebar.stories.tsx +143 -0
- package/src/components/WizardWithSidebar/WizardWithSidebar.styles.ts +123 -0
- package/src/components/WizardWithSidebar/WizardWithSidebar.tsx +261 -0
- package/src/components/WizardWithSidebar/index.ts +2 -0
- package/src/components/buttons/IconButton/IconButton.styles.ts +31 -0
- package/src/components/buttons/IconButton/IconButton.tsx +8 -6
- package/src/components/buttons/types.ts +2 -1
- package/src/components/index.ts +6 -0
- package/src/components/inputs/SearchInput/SearchInput.styles.ts +27 -41
- package/src/components/inputs/SearchInput/SearchInput.tsx +6 -4
- package/src/components/loading-indicators/CirclePulse/CirclePulse.styles.ts +7 -7
- package/src/components/loading-indicators/CirclePulse/CirclePulse.tsx +3 -3
- package/src/components/loading-indicators/LoadingIndicator/LoadingIndicator.stories.tsx +23 -0
- package/src/components/loading-indicators/LoadingIndicator/LoadingIndicator.styles.ts +81 -0
- package/src/components/loading-indicators/LoadingIndicator/LoadingIndicator.tsx +61 -0
- package/src/components/loading-indicators/LoadingIndicator/index.ts +1 -0
- package/src/components/loading-indicators/index.ts +1 -0
- package/src/components/modals/ConfirmModal/ConfirmModal.stories.tsx +76 -0
- package/src/components/modals/ConfirmModal/ConfirmModal.styles.ts +30 -0
- package/src/components/modals/ConfirmModal/ConfirmModal.tsx +84 -0
- package/src/components/modals/ConfirmModal/index.ts +1 -0
- package/src/components/modals/ModalBase/ModalBase.stories.tsx +47 -0
- package/src/components/modals/ModalBase/ModalBase.styles.tsx +73 -0
- package/src/components/modals/ModalBase/ModalBase.tsx +72 -0
- package/src/components/modals/ModalBase/index.ts +2 -0
- package/src/components/modals/index.ts +2 -0
- package/src/index.ts +9 -0
- package/src/setupTests.ts +4 -0
- package/src/tokens/colors.ts +7 -0
- package/src/tokens/typography.ts +7 -1
- package/src/types.ts +8 -0
- package/tsconfig.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,210 +1,232 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
import * as react from 'react';
|
|
4
|
+
import react__default, { ChangeEvent } from 'react';
|
|
3
5
|
import * as styled_components from 'styled-components';
|
|
4
6
|
import { PermafrostComponent, IconName } from '@/types';
|
|
5
7
|
import { AriaButtonProps } from '@react-types/button';
|
|
6
8
|
|
|
7
|
-
declare const GlobalStyles: () =>
|
|
9
|
+
declare const GlobalStyles: () => react_jsx_runtime.JSX.Element;
|
|
8
10
|
|
|
9
11
|
declare const faIcons: {
|
|
10
|
-
'fa-dot-circle':
|
|
11
|
-
'fa-file':
|
|
12
|
-
'fa-file-alt':
|
|
13
|
-
'fa-file-pdf':
|
|
14
|
-
'fa-file-word':
|
|
15
|
-
'fa-check-square':
|
|
16
|
-
'fa-square':
|
|
17
|
-
'fa-angle-double-left':
|
|
18
|
-
'fa-arrow-circle-right':
|
|
19
|
-
'fa-arrow-down':
|
|
20
|
-
'fa-arrow-left':
|
|
21
|
-
'fa-arrow-right':
|
|
22
|
-
'fa-arrow-up':
|
|
23
|
-
'fa-ban':
|
|
24
|
-
'fa-caret-down':
|
|
25
|
-
'fa-caret-up':
|
|
26
|
-
'fa-chart-bar':
|
|
27
|
-
'fa-check':
|
|
28
|
-
'fa-check-circle':
|
|
29
|
-
'fa-circle-notch':
|
|
30
|
-
'fa-clipboard':
|
|
31
|
-
'fa-clock':
|
|
32
|
-
'fa-clone':
|
|
33
|
-
'fa-cloud':
|
|
34
|
-
'fa-cog':
|
|
35
|
-
'fa-cogs':
|
|
36
|
-
'fa-coins':
|
|
37
|
-
'fa-cube':
|
|
38
|
-
'fa-cut':
|
|
39
|
-
'fa-download':
|
|
40
|
-
'fa-exclamation-circle':
|
|
41
|
-
'fa-exclamation-triangle':
|
|
42
|
-
'fa-external-link-alt':
|
|
43
|
-
'fa-eye-dropper':
|
|
44
|
-
'fa-file-download':
|
|
45
|
-
'fa-file-export':
|
|
46
|
-
'fa-file-upload':
|
|
47
|
-
'fa-filter':
|
|
48
|
-
'fa-ghost':
|
|
49
|
-
'fa-hat-wizard':
|
|
50
|
-
'fa-info-circle':
|
|
51
|
-
'fa-key':
|
|
52
|
-
'fa-keyboard':
|
|
53
|
-
'fa-layer-group':
|
|
54
|
-
'fa-pencil-alt':
|
|
55
|
-
'fa-plus':
|
|
56
|
-
'fa-plus-square':
|
|
57
|
-
'fa-question-circle':
|
|
58
|
-
'fa-robot':
|
|
59
|
-
'fa-search':
|
|
60
|
-
'fa-sign-out-alt':
|
|
61
|
-
'fa-sliders-h':
|
|
62
|
-
'fa-sync-alt':
|
|
63
|
-
'fa-tag':
|
|
64
|
-
'fa-times':
|
|
65
|
-
'fa-times-circle':
|
|
66
|
-
'fa-tint':
|
|
67
|
-
'fa-toggle-off':
|
|
68
|
-
'fa-toggle-on':
|
|
69
|
-
'fa-trash':
|
|
70
|
-
'fa-trash-alt':
|
|
71
|
-
'fa-undo':
|
|
72
|
-
'fa-user':
|
|
73
|
-
'fa-users':
|
|
74
|
-
'fa-mouse-pointer':
|
|
75
|
-
'fa-step-forward':
|
|
76
|
-
'fa-search-minus':
|
|
77
|
-
'fa-search-plus':
|
|
78
|
-
'fa-table':
|
|
79
|
-
'fa-image':
|
|
80
|
-
'fa-link':
|
|
81
|
-
'fa-list':
|
|
12
|
+
'fa-dot-circle': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
13
|
+
'fa-file': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
14
|
+
'fa-file-alt': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
15
|
+
'fa-file-pdf': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
16
|
+
'fa-file-word': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
17
|
+
'fa-check-square': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
18
|
+
'fa-square': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
19
|
+
'fa-angle-double-left': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
20
|
+
'fa-arrow-circle-right': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
21
|
+
'fa-arrow-down': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
22
|
+
'fa-arrow-left': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
23
|
+
'fa-arrow-right': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
24
|
+
'fa-arrow-up': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
25
|
+
'fa-ban': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
26
|
+
'fa-caret-down': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
27
|
+
'fa-caret-up': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
28
|
+
'fa-chart-bar': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
29
|
+
'fa-check': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
30
|
+
'fa-check-circle': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
31
|
+
'fa-circle-notch': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
32
|
+
'fa-clipboard': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
33
|
+
'fa-clock': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
34
|
+
'fa-clone': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
35
|
+
'fa-cloud': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
36
|
+
'fa-cog': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
37
|
+
'fa-cogs': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
38
|
+
'fa-coins': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
39
|
+
'fa-cube': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
40
|
+
'fa-cut': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
41
|
+
'fa-download': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
42
|
+
'fa-exclamation-circle': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
43
|
+
'fa-exclamation-triangle': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
44
|
+
'fa-external-link-alt': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
45
|
+
'fa-eye-dropper': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
46
|
+
'fa-file-download': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
47
|
+
'fa-file-export': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
48
|
+
'fa-file-upload': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
49
|
+
'fa-filter': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
50
|
+
'fa-ghost': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
51
|
+
'fa-hat-wizard': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
52
|
+
'fa-info-circle': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
53
|
+
'fa-key': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
54
|
+
'fa-keyboard': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
55
|
+
'fa-layer-group': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
56
|
+
'fa-pencil-alt': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
57
|
+
'fa-plus': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
58
|
+
'fa-plus-square': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
59
|
+
'fa-question-circle': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
60
|
+
'fa-robot': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
61
|
+
'fa-search': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
62
|
+
'fa-sign-out-alt': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
63
|
+
'fa-sliders-h': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
64
|
+
'fa-sync-alt': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
65
|
+
'fa-tag': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
66
|
+
'fa-times': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
67
|
+
'fa-times-circle': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
68
|
+
'fa-tint': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
69
|
+
'fa-toggle-off': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
70
|
+
'fa-toggle-on': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
71
|
+
'fa-trash': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
72
|
+
'fa-trash-alt': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
73
|
+
'fa-undo': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
74
|
+
'fa-user': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
75
|
+
'fa-users': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
76
|
+
'fa-mouse-pointer': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
77
|
+
'fa-step-forward': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
78
|
+
'fa-search-minus': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
79
|
+
'fa-search-plus': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
80
|
+
'fa-table': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
81
|
+
'fa-image': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
82
|
+
'fa-link': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
83
|
+
'fa-list': react__default.ReactElement<any, string | react__default.JSXElementConstructor<any>>;
|
|
82
84
|
};
|
|
83
85
|
|
|
84
86
|
declare const indicons: {
|
|
85
|
-
'indico-o-white':
|
|
86
|
-
account:
|
|
87
|
-
address:
|
|
88
|
-
'api-doc':
|
|
89
|
-
'arrow-dots':
|
|
90
|
-
'arrow-down':
|
|
91
|
-
'arrow-up-circle':
|
|
92
|
-
'arrows-cursor':
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
'
|
|
98
|
-
'
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
'
|
|
102
|
-
'
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
|
|
106
|
-
'
|
|
107
|
-
'
|
|
108
|
-
'
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
'
|
|
112
|
-
'
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
'
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
'
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
'
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
'
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
'
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
'
|
|
159
|
-
'
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
'
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
'
|
|
207
|
-
|
|
87
|
+
'indico-o-white': react_jsx_runtime.JSX.Element;
|
|
88
|
+
account: react_jsx_runtime.JSX.Element;
|
|
89
|
+
address: react_jsx_runtime.JSX.Element;
|
|
90
|
+
'api-doc': react_jsx_runtime.JSX.Element;
|
|
91
|
+
'arrow-dots': react_jsx_runtime.JSX.Element;
|
|
92
|
+
'arrow-down': react_jsx_runtime.JSX.Element;
|
|
93
|
+
'arrow-up-circle': react_jsx_runtime.JSX.Element;
|
|
94
|
+
'arrows-cursor': react_jsx_runtime.JSX.Element;
|
|
95
|
+
bookmark: react_jsx_runtime.JSX.Element;
|
|
96
|
+
bookmarks: react_jsx_runtime.JSX.Element;
|
|
97
|
+
'bookmark-saved': react_jsx_runtime.JSX.Element;
|
|
98
|
+
branch: react_jsx_runtime.JSX.Element;
|
|
99
|
+
'check-circle': react_jsx_runtime.JSX.Element;
|
|
100
|
+
'circle-help': react_jsx_runtime.JSX.Element;
|
|
101
|
+
check: react_jsx_runtime.JSX.Element;
|
|
102
|
+
checkbox: react_jsx_runtime.JSX.Element;
|
|
103
|
+
'chevron-down': react_jsx_runtime.JSX.Element;
|
|
104
|
+
'chevron-left': react_jsx_runtime.JSX.Element;
|
|
105
|
+
'chevron-right': react_jsx_runtime.JSX.Element;
|
|
106
|
+
'chevron-up': react_jsx_runtime.JSX.Element;
|
|
107
|
+
'classification-document': react_jsx_runtime.JSX.Element;
|
|
108
|
+
'classification-image': react_jsx_runtime.JSX.Element;
|
|
109
|
+
'classification-page': react_jsx_runtime.JSX.Element;
|
|
110
|
+
'classify-and-unbundle': react_jsx_runtime.JSX.Element;
|
|
111
|
+
clipboard: react_jsx_runtime.JSX.Element;
|
|
112
|
+
'coffee-1': react_jsx_runtime.JSX.Element;
|
|
113
|
+
'coffee-2': react_jsx_runtime.JSX.Element;
|
|
114
|
+
'coffee-fail': react_jsx_runtime.JSX.Element;
|
|
115
|
+
coffeecup: react_jsx_runtime.JSX.Element;
|
|
116
|
+
coffeesteam: react_jsx_runtime.JSX.Element;
|
|
117
|
+
cog: react_jsx_runtime.JSX.Element;
|
|
118
|
+
collection: react_jsx_runtime.JSX.Element;
|
|
119
|
+
compare: react_jsx_runtime.JSX.Element;
|
|
120
|
+
'company-name': react_jsx_runtime.JSX.Element;
|
|
121
|
+
'confidence-bar-1': react_jsx_runtime.JSX.Element;
|
|
122
|
+
'confidence-bar-2': react_jsx_runtime.JSX.Element;
|
|
123
|
+
'confidence-bar-3': react_jsx_runtime.JSX.Element;
|
|
124
|
+
'confidence-bar-4': react_jsx_runtime.JSX.Element;
|
|
125
|
+
'confidence-bars': react_jsx_runtime.JSX.Element;
|
|
126
|
+
configure: react_jsx_runtime.JSX.Element;
|
|
127
|
+
'choose-library': react_jsx_runtime.JSX.Element;
|
|
128
|
+
crowdlabel: react_jsx_runtime.JSX.Element;
|
|
129
|
+
currency: react_jsx_runtime.JSX.Element;
|
|
130
|
+
dashboard: react_jsx_runtime.JSX.Element;
|
|
131
|
+
'data-and-access': react_jsx_runtime.JSX.Element;
|
|
132
|
+
database: react_jsx_runtime.JSX.Element;
|
|
133
|
+
date: react_jsx_runtime.JSX.Element;
|
|
134
|
+
draggable: react_jsx_runtime.JSX.Element;
|
|
135
|
+
droplet: react_jsx_runtime.JSX.Element;
|
|
136
|
+
edit: react_jsx_runtime.JSX.Element;
|
|
137
|
+
education: react_jsx_runtime.JSX.Element;
|
|
138
|
+
ellipsis: react_jsx_runtime.JSX.Element;
|
|
139
|
+
'elmos-fire': react_jsx_runtime.JSX.Element;
|
|
140
|
+
email: react_jsx_runtime.JSX.Element;
|
|
141
|
+
enterprise: react_jsx_runtime.JSX.Element;
|
|
142
|
+
'exclamation-circle-stroke': react_jsx_runtime.JSX.Element;
|
|
143
|
+
extraction: react_jsx_runtime.JSX.Element;
|
|
144
|
+
eye: react_jsx_runtime.JSX.Element;
|
|
145
|
+
file: react_jsx_runtime.JSX.Element;
|
|
146
|
+
fileHappy: react_jsx_runtime.JSX.Element;
|
|
147
|
+
filter: react_jsx_runtime.JSX.Element;
|
|
148
|
+
'filter-outline': react_jsx_runtime.JSX.Element;
|
|
149
|
+
folder: react_jsx_runtime.JSX.Element;
|
|
150
|
+
form: react_jsx_runtime.JSX.Element;
|
|
151
|
+
gallery: react_jsx_runtime.JSX.Element;
|
|
152
|
+
'find-documents': react_jsx_runtime.JSX.Element;
|
|
153
|
+
graphiql: react_jsx_runtime.JSX.Element;
|
|
154
|
+
'grid-view': react_jsx_runtime.JSX.Element;
|
|
155
|
+
happy: react_jsx_runtime.JSX.Element;
|
|
156
|
+
'help-solid': react_jsx_runtime.JSX.Element;
|
|
157
|
+
help: react_jsx_runtime.JSX.Element;
|
|
158
|
+
highlight: react_jsx_runtime.JSX.Element;
|
|
159
|
+
'highlight-outline': react_jsx_runtime.JSX.Element;
|
|
160
|
+
'indico-logo-white': react_jsx_runtime.JSX.Element;
|
|
161
|
+
'indico-o': react_jsx_runtime.JSX.Element;
|
|
162
|
+
info: react_jsx_runtime.JSX.Element;
|
|
163
|
+
kabob: react_jsx_runtime.JSX.Element;
|
|
164
|
+
key: react_jsx_runtime.JSX.Element;
|
|
165
|
+
label: react_jsx_runtime.JSX.Element;
|
|
166
|
+
'layout-complex': react_jsx_runtime.JSX.Element;
|
|
167
|
+
'layout-simple': react_jsx_runtime.JSX.Element;
|
|
168
|
+
'list-view': react_jsx_runtime.JSX.Element;
|
|
169
|
+
libraries: react_jsx_runtime.JSX.Element;
|
|
170
|
+
location: react_jsx_runtime.JSX.Element;
|
|
171
|
+
logout: react_jsx_runtime.JSX.Element;
|
|
172
|
+
lock: react_jsx_runtime.JSX.Element;
|
|
173
|
+
menu: react_jsx_runtime.JSX.Element;
|
|
174
|
+
'model-import': react_jsx_runtime.JSX.Element;
|
|
175
|
+
'model-starter': react_jsx_runtime.JSX.Element;
|
|
176
|
+
moon: react_jsx_runtime.JSX.Element;
|
|
177
|
+
moonbow: react_jsx_runtime.JSX.Element;
|
|
178
|
+
'no-collections': react_jsx_runtime.JSX.Element;
|
|
179
|
+
'no-libraries': react_jsx_runtime.JSX.Element;
|
|
180
|
+
no_results: react_jsx_runtime.JSX.Element;
|
|
181
|
+
'no-format': react_jsx_runtime.JSX.Element;
|
|
182
|
+
'object-detection': react_jsx_runtime.JSX.Element;
|
|
183
|
+
organizations: react_jsx_runtime.JSX.Element;
|
|
184
|
+
output: react_jsx_runtime.JSX.Element;
|
|
185
|
+
'page-thumbnail': react_jsx_runtime.JSX.Element;
|
|
186
|
+
'pay-as-you-go': react_jsx_runtime.JSX.Element;
|
|
187
|
+
person: react_jsx_runtime.JSX.Element;
|
|
188
|
+
phone: react_jsx_runtime.JSX.Element;
|
|
189
|
+
pin: react_jsx_runtime.JSX.Element;
|
|
190
|
+
plus: react_jsx_runtime.JSX.Element;
|
|
191
|
+
pointer: react_jsx_runtime.JSX.Element;
|
|
192
|
+
popup: react_jsx_runtime.JSX.Element;
|
|
193
|
+
price: react_jsx_runtime.JSX.Element;
|
|
194
|
+
'preview-view': react_jsx_runtime.JSX.Element;
|
|
195
|
+
'radio-button': react_jsx_runtime.JSX.Element;
|
|
196
|
+
recruiter: react_jsx_runtime.JSX.Element;
|
|
197
|
+
regex: react_jsx_runtime.JSX.Element;
|
|
198
|
+
reject: react_jsx_runtime.JSX.Element;
|
|
199
|
+
repair: react_jsx_runtime.JSX.Element;
|
|
200
|
+
research: react_jsx_runtime.JSX.Element;
|
|
201
|
+
reset: react_jsx_runtime.JSX.Element;
|
|
202
|
+
retrain: react_jsx_runtime.JSX.Element;
|
|
203
|
+
sad: react_jsx_runtime.JSX.Element;
|
|
204
|
+
search: react_jsx_runtime.JSX.Element;
|
|
205
|
+
'search-thin': react_jsx_runtime.JSX.Element;
|
|
206
|
+
shrug: react_jsx_runtime.JSX.Element;
|
|
207
|
+
signature: react_jsx_runtime.JSX.Element;
|
|
208
|
+
'sort-down': react_jsx_runtime.JSX.Element;
|
|
209
|
+
split: react_jsx_runtime.JSX.Element;
|
|
210
|
+
'step-forward': react_jsx_runtime.JSX.Element;
|
|
211
|
+
sun: react_jsx_runtime.JSX.Element;
|
|
212
|
+
surround: react_jsx_runtime.JSX.Element;
|
|
213
|
+
'surround-outline': react_jsx_runtime.JSX.Element;
|
|
214
|
+
text: react_jsx_runtime.JSX.Element;
|
|
215
|
+
'thumbs-down': react_jsx_runtime.JSX.Element;
|
|
216
|
+
'thumbs-up': react_jsx_runtime.JSX.Element;
|
|
217
|
+
time: react_jsx_runtime.JSX.Element;
|
|
218
|
+
trash: react_jsx_runtime.JSX.Element;
|
|
219
|
+
unlock: react_jsx_runtime.JSX.Element;
|
|
220
|
+
upload: react_jsx_runtime.JSX.Element;
|
|
221
|
+
url: react_jsx_runtime.JSX.Element;
|
|
222
|
+
user: react_jsx_runtime.JSX.Element;
|
|
223
|
+
wand: react_jsx_runtime.JSX.Element;
|
|
224
|
+
warning: react_jsx_runtime.JSX.Element;
|
|
225
|
+
'warning-stroke': react_jsx_runtime.JSX.Element;
|
|
226
|
+
workflows: react_jsx_runtime.JSX.Element;
|
|
227
|
+
'x-close': react_jsx_runtime.JSX.Element;
|
|
228
|
+
'zoom-in': react_jsx_runtime.JSX.Element;
|
|
229
|
+
'zoom-out': react_jsx_runtime.JSX.Element;
|
|
208
230
|
};
|
|
209
231
|
|
|
210
232
|
declare const animation: {
|
|
@@ -247,6 +269,12 @@ declare const typography: {
|
|
|
247
269
|
third: string;
|
|
248
270
|
};
|
|
249
271
|
ellipsis: styled_components.RuleSet<object>;
|
|
272
|
+
weight: {
|
|
273
|
+
light: number;
|
|
274
|
+
regular: number;
|
|
275
|
+
semibold: number;
|
|
276
|
+
bold: number;
|
|
277
|
+
};
|
|
250
278
|
};
|
|
251
279
|
|
|
252
280
|
declare const padding: {
|
|
@@ -278,6 +306,7 @@ declare namespace MATH {
|
|
|
278
306
|
|
|
279
307
|
declare const allColors: {
|
|
280
308
|
readonly akaroa: "#cbc98f";
|
|
309
|
+
readonly alizarin: "#E72326";
|
|
281
310
|
readonly amber: "#f4c401";
|
|
282
311
|
readonly amethyst: "#8e57b3";
|
|
283
312
|
readonly aqua: "#10e4fe";
|
|
@@ -311,17 +340,20 @@ declare const allColors: {
|
|
|
311
340
|
readonly crimson: "#e53126";
|
|
312
341
|
readonly curiousBlue: "#178ee0";
|
|
313
342
|
readonly cyan: "#0cf";
|
|
343
|
+
readonly daisyBush: "#431B92";
|
|
314
344
|
readonly darkFontColor: "#0d151d";
|
|
315
345
|
readonly darkGray: "#333";
|
|
316
346
|
readonly darkPurple: "#6f3eae";
|
|
317
347
|
readonly darkRed: "#b30000";
|
|
318
348
|
readonly defaultFontColor: "#bbbfc5";
|
|
319
349
|
readonly dodgerBlue: "#1774ff";
|
|
350
|
+
readonly dusty: "#999999";
|
|
320
351
|
readonly eagleGreen: "#005557";
|
|
321
352
|
readonly ebony: "#101a26";
|
|
322
353
|
readonly eggplant: "#7a0074";
|
|
323
354
|
readonly electricGreen: "#00ff0a";
|
|
324
355
|
readonly emerald: "#09c199";
|
|
356
|
+
readonly endeavor: "#0055B9";
|
|
325
357
|
readonly espresso: "#5a3627";
|
|
326
358
|
readonly fieldPromptError: "#fd9693";
|
|
327
359
|
readonly fieldPromptInfo: "#00bfff";
|
|
@@ -333,6 +365,7 @@ declare const allColors: {
|
|
|
333
365
|
readonly green: "#4caf50";
|
|
334
366
|
readonly harlequin: "#20cb00";
|
|
335
367
|
readonly harvestGold: "#e6c079";
|
|
368
|
+
readonly hawkes: "#DCEAFD";
|
|
336
369
|
readonly hemlock: "#626740";
|
|
337
370
|
readonly imperial: "#4b0134";
|
|
338
371
|
readonly iron: "#d9dee0";
|
|
@@ -378,12 +411,14 @@ declare const allColors: {
|
|
|
378
411
|
readonly seaGreen: "#0b8a51";
|
|
379
412
|
readonly seance: "#7f1f82";
|
|
380
413
|
readonly shiraz: "#c61021";
|
|
414
|
+
readonly silverChalice: "#aaaaaa";
|
|
381
415
|
readonly sinopia: "#D14200";
|
|
382
416
|
readonly slaaneshGrey: "#dbd5e6";
|
|
383
417
|
readonly tangerine: "#ff9900";
|
|
384
418
|
readonly teal: "#008285";
|
|
385
419
|
readonly toast: "#997862";
|
|
386
420
|
readonly trueBlue: "#066CC6";
|
|
421
|
+
readonly tundora: "#444444";
|
|
387
422
|
readonly turquoise: "#00b5b6";
|
|
388
423
|
readonly vermilion: "#b95555";
|
|
389
424
|
readonly viking: "#59cfe0";
|
|
@@ -401,70 +436,70 @@ declare const allColors: {
|
|
|
401
436
|
readonly backgroundColor: "#182432";
|
|
402
437
|
};
|
|
403
438
|
|
|
404
|
-
type Props$
|
|
405
|
-
content:
|
|
406
|
-
header?:
|
|
439
|
+
type Props$n = PermafrostComponent & {
|
|
440
|
+
content: react__default.ReactNode;
|
|
441
|
+
header?: react__default.ReactNode | string;
|
|
407
442
|
open?: boolean;
|
|
408
443
|
};
|
|
409
|
-
declare const Accordion: (props: Props$
|
|
444
|
+
declare const Accordion: (props: Props$n) => react_jsx_runtime.JSX.Element;
|
|
410
445
|
|
|
411
|
-
type Props$
|
|
446
|
+
type Props$m = PermafrostComponent & {
|
|
412
447
|
style?: object;
|
|
413
|
-
children:
|
|
448
|
+
children: react__default.ReactNode;
|
|
414
449
|
};
|
|
415
|
-
declare const Section: (props: Props$
|
|
450
|
+
declare const Section: (props: Props$m) => react_jsx_runtime.JSX.Element;
|
|
416
451
|
|
|
417
|
-
type Props$
|
|
452
|
+
type Props$l = PermafrostComponent & {
|
|
418
453
|
title?: string;
|
|
419
454
|
style?: object;
|
|
420
|
-
children:
|
|
455
|
+
children: react__default.ReactNode;
|
|
421
456
|
};
|
|
422
|
-
declare const SectionBlock: (props: Props$
|
|
457
|
+
declare const SectionBlock: (props: Props$l) => react_jsx_runtime.JSX.Element;
|
|
423
458
|
|
|
424
459
|
type SectionBodyProps = PermafrostComponent & {
|
|
425
460
|
style?: object;
|
|
426
|
-
children:
|
|
461
|
+
children: react__default.ReactNode;
|
|
427
462
|
};
|
|
428
|
-
declare const SectionBody: (props: SectionBodyProps) =>
|
|
463
|
+
declare const SectionBody: (props: SectionBodyProps) => react_jsx_runtime.JSX.Element;
|
|
429
464
|
|
|
430
|
-
type Props$
|
|
465
|
+
type Props$k = PermafrostComponent & {
|
|
431
466
|
style?: object;
|
|
432
|
-
children?:
|
|
467
|
+
children?: react__default.ReactNode;
|
|
433
468
|
};
|
|
434
469
|
declare const SectionHeader: {
|
|
435
|
-
(props: Props$
|
|
470
|
+
(props: Props$k): react_jsx_runtime.JSX.Element;
|
|
436
471
|
defaultProps: {
|
|
437
472
|
className: string;
|
|
438
473
|
style: {};
|
|
439
474
|
};
|
|
440
475
|
};
|
|
441
476
|
|
|
442
|
-
declare const SectionTable: (props: any) =>
|
|
477
|
+
declare const SectionTable: (props: any) => react_jsx_runtime.JSX.Element;
|
|
443
478
|
|
|
444
|
-
type ButtonVariant
|
|
479
|
+
type ButtonVariant = 'primary' | 'cta' | 'normal' | 'link-style' | 'no-style' | 'outline';
|
|
445
480
|
type ButtonProps = PermafrostComponent & {
|
|
446
481
|
'aria-label'?: string;
|
|
447
482
|
'aria-pressed'?: boolean;
|
|
448
483
|
'aria-selected'?: boolean;
|
|
449
484
|
busy?: boolean;
|
|
450
|
-
children:
|
|
485
|
+
children: react__default.ReactNode | react__default.ReactNode[];
|
|
451
486
|
disabled?: boolean;
|
|
452
487
|
onClick: (...args: any[]) => void;
|
|
453
488
|
onFocus?: () => void;
|
|
454
489
|
role?: string;
|
|
455
|
-
style?:
|
|
490
|
+
style?: react__default.CSSProperties;
|
|
456
491
|
tabindex?: 0 | -1;
|
|
457
492
|
type?: 'submit' | 'button' | 'reset';
|
|
458
|
-
variant?: ButtonVariant
|
|
493
|
+
variant?: ButtonVariant;
|
|
459
494
|
onMouseEnter?: () => void;
|
|
460
495
|
onMouseLeave?: () => void;
|
|
461
496
|
};
|
|
462
|
-
declare function Button(props: ButtonProps):
|
|
497
|
+
declare function Button(props: ButtonProps): react__default.ReactElement;
|
|
463
498
|
|
|
464
|
-
type
|
|
499
|
+
type IconButtonVariant = 'default' | 'primary' | 'destructive' | 'outline';
|
|
465
500
|
type ButtonSize = 'normal' | 'large';
|
|
466
501
|
|
|
467
|
-
type Props$
|
|
502
|
+
type Props$j = PermafrostComponent & {
|
|
468
503
|
/**
|
|
469
504
|
* Adjusts vertical alignment of the text label, in relation to the icon
|
|
470
505
|
*/
|
|
@@ -479,8 +514,8 @@ type Props$e = PermafrostComponent & {
|
|
|
479
514
|
isLink?: string;
|
|
480
515
|
label?: string;
|
|
481
516
|
size?: ButtonSize;
|
|
482
|
-
style?:
|
|
483
|
-
variant?:
|
|
517
|
+
style?: react__default.CSSProperties;
|
|
518
|
+
variant?: IconButtonVariant;
|
|
484
519
|
} & AriaButtonProps;
|
|
485
520
|
/**
|
|
486
521
|
* General utility “button with an icon” component. May also be used for links that _look_
|
|
@@ -490,15 +525,15 @@ type Props$e = PermafrostComponent & {
|
|
|
490
525
|
*
|
|
491
526
|
* @see {@link https://react-spectrum.adobe.com/blog/building-a-button-part-1.html}
|
|
492
527
|
*/
|
|
493
|
-
declare function IconButton(props: Props$
|
|
528
|
+
declare function IconButton(props: Props$j): react_jsx_runtime.JSX.Element;
|
|
494
529
|
|
|
495
|
-
type Props$
|
|
530
|
+
type Props$i = PermafrostComponent & {
|
|
496
531
|
defaultValue?: string;
|
|
497
532
|
disabled?: boolean;
|
|
498
533
|
horizontal?: boolean;
|
|
499
534
|
initialText?: string;
|
|
500
535
|
label?: string;
|
|
501
|
-
onChange(e:
|
|
536
|
+
onChange(e: react__default.ChangeEvent<HTMLSelectElement>): void;
|
|
502
537
|
options: {
|
|
503
538
|
name: string;
|
|
504
539
|
value: string | number;
|
|
@@ -507,7 +542,7 @@ type Props$d = PermafrostComponent & {
|
|
|
507
542
|
value?: string | number;
|
|
508
543
|
validationErrors?: string[];
|
|
509
544
|
};
|
|
510
|
-
declare const BorderSelect: (props: Props$
|
|
545
|
+
declare const BorderSelect: (props: Props$i) => react_jsx_runtime.JSX.Element;
|
|
511
546
|
|
|
512
547
|
type ComboboxProps = {
|
|
513
548
|
'aria-label'?: string;
|
|
@@ -555,7 +590,7 @@ type ComboboxOption = {
|
|
|
555
590
|
type ComboboxSize = 'small' | 'medium';
|
|
556
591
|
type ComboboxVariant = 'default' | 'light';
|
|
557
592
|
|
|
558
|
-
type Props$
|
|
593
|
+
type Props$h = PermafrostComponent & {
|
|
559
594
|
disabled?: boolean;
|
|
560
595
|
initialText?: string;
|
|
561
596
|
options: {
|
|
@@ -566,10 +601,10 @@ type Props$c = PermafrostComponent & {
|
|
|
566
601
|
style?: object;
|
|
567
602
|
value?: string | number;
|
|
568
603
|
variant?: ComboboxVariant;
|
|
569
|
-
onChange(e:
|
|
570
|
-
onClick?(e:
|
|
604
|
+
onChange(e: react__default.ChangeEvent<HTMLSelectElement>): void;
|
|
605
|
+
onClick?(e: react__default.MouseEvent<HTMLDivElement, MouseEvent>): void;
|
|
571
606
|
};
|
|
572
|
-
declare const Select: (props: Props$
|
|
607
|
+
declare const Select: (props: Props$h) => react_jsx_runtime.JSX.Element;
|
|
573
608
|
|
|
574
609
|
/**
|
|
575
610
|
* Multiselect combobox component. If selections are not bound to outside state
|
|
@@ -578,7 +613,7 @@ declare const Select: (props: Props$c) => React.JSX.Element;
|
|
|
578
613
|
*
|
|
579
614
|
* @see [useCombobox]{@link import('useCombobox').useCombobox}
|
|
580
615
|
*/
|
|
581
|
-
declare const MultiCombobox:
|
|
616
|
+
declare const MultiCombobox: react__default.ForwardRefExoticComponent<PermafrostComponent & ComboboxProps & {
|
|
582
617
|
/**
|
|
583
618
|
* MultiValue is a selected option in the input area
|
|
584
619
|
*/
|
|
@@ -590,7 +625,7 @@ declare const MultiCombobox: React.ForwardRefExoticComponent<PermafrostComponent
|
|
|
590
625
|
} | undefined;
|
|
591
626
|
values?: ComboboxOption[] | undefined;
|
|
592
627
|
onChange: (selectedOption: ComboboxOption[]) => void;
|
|
593
|
-
} &
|
|
628
|
+
} & react__default.RefAttributes<unknown>>;
|
|
594
629
|
|
|
595
630
|
/**
|
|
596
631
|
* Combobox component to select a single option. If selections are not bound to
|
|
@@ -599,7 +634,7 @@ declare const MultiCombobox: React.ForwardRefExoticComponent<PermafrostComponent
|
|
|
599
634
|
*
|
|
600
635
|
* @see [useCombobox]{@link import('useCombobox').useCombobox}
|
|
601
636
|
*/
|
|
602
|
-
declare const SingleCombobox:
|
|
637
|
+
declare const SingleCombobox: react__default.ForwardRefExoticComponent<PermafrostComponent & ComboboxProps & {
|
|
603
638
|
dropdownIndicatorProps?: {
|
|
604
639
|
'data-cy': string;
|
|
605
640
|
} | undefined;
|
|
@@ -608,9 +643,9 @@ declare const SingleCombobox: React.ForwardRefExoticComponent<PermafrostComponen
|
|
|
608
643
|
} | undefined;
|
|
609
644
|
value?: ComboboxOption | undefined;
|
|
610
645
|
onChange: (selectedOption: ComboboxOption) => void;
|
|
611
|
-
} &
|
|
646
|
+
} & react__default.RefAttributes<unknown>>;
|
|
612
647
|
|
|
613
|
-
type Props$
|
|
648
|
+
type Props$g = PermafrostComponent & {
|
|
614
649
|
ariaLabel?: string;
|
|
615
650
|
fill?: string;
|
|
616
651
|
name: IconName;
|
|
@@ -622,10 +657,10 @@ type Props$b = PermafrostComponent & {
|
|
|
622
657
|
* Generic icon component, hidden from Assistive Technology by default.
|
|
623
658
|
* If icon should be available to AT, pass the desired name into the `ariaLabel` prop.
|
|
624
659
|
*/
|
|
625
|
-
declare function Icon({ style, ...props }: Props$
|
|
660
|
+
declare function Icon({ style, ...props }: Props$g): react__default.ReactElement | null;
|
|
626
661
|
|
|
627
|
-
type Props$
|
|
628
|
-
children:
|
|
662
|
+
type Props$f = PermafrostComponent & {
|
|
663
|
+
children: react__default.ReactNode | string;
|
|
629
664
|
minLength?: number;
|
|
630
665
|
onUpdate?(newValue: string): void;
|
|
631
666
|
};
|
|
@@ -633,9 +668,9 @@ type Props$a = PermafrostComponent & {
|
|
|
633
668
|
* Wrapper component which enables text editing in place directly on a child component,
|
|
634
669
|
* element, or plain text.
|
|
635
670
|
*/
|
|
636
|
-
declare function EditableInput(props: Props$
|
|
671
|
+
declare function EditableInput(props: Props$f): react_jsx_runtime.JSX.Element;
|
|
637
672
|
|
|
638
|
-
type Props$
|
|
673
|
+
type Props$e = PermafrostComponent & {
|
|
639
674
|
autoFocus?: boolean;
|
|
640
675
|
decrement?(): void;
|
|
641
676
|
disabled?: boolean;
|
|
@@ -655,29 +690,29 @@ type Props$9 = PermafrostComponent & {
|
|
|
655
690
|
* Basic numeric input field. A label is required, but may be visually hidden
|
|
656
691
|
* using the `hiddenLabel` property.
|
|
657
692
|
*/
|
|
658
|
-
declare function NumberInput(props: Props$
|
|
693
|
+
declare function NumberInput(props: Props$e): react__default.ReactElement;
|
|
659
694
|
|
|
660
|
-
type Props$
|
|
695
|
+
type Props$d = PermafrostComponent & {
|
|
661
696
|
border?: boolean;
|
|
662
697
|
showClearInputIcon?: boolean;
|
|
663
698
|
showSearchIcon?: boolean;
|
|
664
699
|
inputProps?: {
|
|
665
700
|
[key: string]: string;
|
|
666
701
|
};
|
|
667
|
-
onChange?: (e:
|
|
702
|
+
onChange?: (e: react__default.ChangeEvent<HTMLInputElement>) => void;
|
|
668
703
|
onClear?(): void;
|
|
669
|
-
onKeyUp?: (e:
|
|
704
|
+
onKeyUp?: (e: react__default.KeyboardEvent<HTMLInputElement>) => void;
|
|
670
705
|
placeholder?: string;
|
|
671
706
|
value?: string;
|
|
672
707
|
};
|
|
673
708
|
declare const SearchInput: {
|
|
674
|
-
(props: Props$
|
|
709
|
+
(props: Props$d): react_jsx_runtime.JSX.Element;
|
|
675
710
|
defaultProps: {
|
|
676
711
|
className: string;
|
|
677
712
|
};
|
|
678
713
|
};
|
|
679
714
|
|
|
680
|
-
type Props$
|
|
715
|
+
type Props$c = PermafrostComponent & {
|
|
681
716
|
autoComplete?: 'email' | 'current-password' | 'new-password' | string;
|
|
682
717
|
autoFocus?: boolean;
|
|
683
718
|
defaultValue?: string;
|
|
@@ -698,9 +733,9 @@ type Props$7 = PermafrostComponent & {
|
|
|
698
733
|
value?: string;
|
|
699
734
|
readOnly?: boolean;
|
|
700
735
|
};
|
|
701
|
-
declare function TextInput(props: Props$
|
|
736
|
+
declare function TextInput(props: Props$c): react__default.ReactElement;
|
|
702
737
|
|
|
703
|
-
type Props$
|
|
738
|
+
type Props$b = PermafrostComponent & {
|
|
704
739
|
ariaLabel?: string;
|
|
705
740
|
size?: string;
|
|
706
741
|
style?: {
|
|
@@ -708,24 +743,24 @@ type Props$6 = PermafrostComponent & {
|
|
|
708
743
|
};
|
|
709
744
|
fill?: string;
|
|
710
745
|
};
|
|
711
|
-
declare function CircleSpinner(props: Props$
|
|
746
|
+
declare function CircleSpinner(props: Props$b): react__default.ReactElement;
|
|
712
747
|
|
|
713
|
-
type Props$
|
|
748
|
+
type Props$a = PermafrostComponent & {
|
|
714
749
|
width?: string;
|
|
715
750
|
};
|
|
716
|
-
declare function BarSpinner(props: Props$
|
|
751
|
+
declare function BarSpinner(props: Props$a): react__default.ReactElement;
|
|
717
752
|
|
|
718
|
-
type Props$
|
|
753
|
+
type Props$9 = PermafrostComponent & {
|
|
719
754
|
color?: string;
|
|
720
755
|
overallSize?: string | number;
|
|
721
756
|
rippleSize?: string | number;
|
|
722
757
|
showRandomMessage?: boolean;
|
|
723
758
|
};
|
|
724
|
-
declare function CirclePulse(props: Props$
|
|
759
|
+
declare function CirclePulse(props: Props$9): react__default.ReactElement;
|
|
725
760
|
|
|
726
|
-
declare const RandomLoadingMessage: () =>
|
|
761
|
+
declare const RandomLoadingMessage: () => react_jsx_runtime.JSX.Element;
|
|
727
762
|
|
|
728
|
-
type Props$
|
|
763
|
+
type Props$8 = PermafrostComponent & {
|
|
729
764
|
backgroundColor?: string;
|
|
730
765
|
foregroundColor?: string;
|
|
731
766
|
ringRadius?: number;
|
|
@@ -734,19 +769,19 @@ type Props$3 = PermafrostComponent & {
|
|
|
734
769
|
value: number;
|
|
735
770
|
valueFontSize?: number;
|
|
736
771
|
};
|
|
737
|
-
declare function PercentageRing(props: Props$
|
|
772
|
+
declare function PercentageRing(props: Props$8): react_jsx_runtime.JSX.Element;
|
|
738
773
|
|
|
739
|
-
declare const LoadingList: () =>
|
|
774
|
+
declare const LoadingList: () => react_jsx_runtime.JSX.Element;
|
|
740
775
|
|
|
741
|
-
type Props$
|
|
776
|
+
type Props$7 = PermafrostComponent & {
|
|
742
777
|
accordion?: boolean;
|
|
743
778
|
accordionDefaultOpen?: boolean;
|
|
744
779
|
emptyListMessage?: string;
|
|
745
780
|
error?: any;
|
|
746
781
|
errorMessage?: any;
|
|
747
|
-
headerComponent?:
|
|
748
|
-
listHeader:
|
|
749
|
-
listItems:
|
|
782
|
+
headerComponent?: react__default.ReactNode;
|
|
783
|
+
listHeader: react__default.ReactNode;
|
|
784
|
+
listItems: react__default.ReactNode[];
|
|
750
785
|
loading?: any;
|
|
751
786
|
pagination?: {
|
|
752
787
|
currentPage: number;
|
|
@@ -771,13 +806,13 @@ type Props$2 = PermafrostComponent & {
|
|
|
771
806
|
onSort: (value: string) => void;
|
|
772
807
|
updateDescending: () => void;
|
|
773
808
|
};
|
|
774
|
-
subTitle?: string |
|
|
809
|
+
subTitle?: string | react__default.ReactNode;
|
|
775
810
|
title: string;
|
|
776
811
|
totalCount?: number;
|
|
777
812
|
};
|
|
778
|
-
declare const ListTable: (props: Props$
|
|
813
|
+
declare const ListTable: (props: Props$7) => react_jsx_runtime.JSX.Element;
|
|
779
814
|
|
|
780
|
-
type Props$
|
|
815
|
+
type Props$6 = PermafrostComponent & {
|
|
781
816
|
currentPage: number;
|
|
782
817
|
limit: number;
|
|
783
818
|
pageInfo: {
|
|
@@ -792,18 +827,1007 @@ type Props$1 = PermafrostComponent & {
|
|
|
792
827
|
getNextPage(cursor: number): void;
|
|
793
828
|
getPreviousPage(cursor: number): void;
|
|
794
829
|
};
|
|
795
|
-
declare function Pagination(props: Props$
|
|
830
|
+
declare function Pagination(props: Props$6): react_jsx_runtime.JSX.Element;
|
|
796
831
|
|
|
797
|
-
type Props = PermafrostComponent & {
|
|
832
|
+
type Props$5 = PermafrostComponent & {
|
|
798
833
|
actionLink?: string;
|
|
799
834
|
actionText?: string;
|
|
800
835
|
buttonAction?(): void;
|
|
801
836
|
buttonText?: string;
|
|
802
|
-
message?: string |
|
|
837
|
+
message?: string | react__default.ReactNode;
|
|
803
838
|
messageProps?: {
|
|
804
839
|
'data-cy': string;
|
|
805
840
|
};
|
|
806
841
|
};
|
|
807
|
-
declare function Shrug(props: Props):
|
|
842
|
+
declare function Shrug(props: Props$5): react__default.ReactElement;
|
|
843
|
+
|
|
844
|
+
type ModalBaseProps = PermafrostComponent & {
|
|
845
|
+
children: react__default.ReactNode | react__default.ReactNode[];
|
|
846
|
+
clickToDismiss?(): void;
|
|
847
|
+
describedBy?: string;
|
|
848
|
+
/** a selector representing the desired parent; defaults to `#root` */
|
|
849
|
+
node?: string;
|
|
850
|
+
open: boolean;
|
|
851
|
+
preventEscDismiss?: boolean;
|
|
852
|
+
preventReturnFocus?: boolean;
|
|
853
|
+
maxWidth?: string;
|
|
854
|
+
} & ({
|
|
855
|
+
labelElement: string;
|
|
856
|
+
} | {
|
|
857
|
+
labelText: string;
|
|
858
|
+
});
|
|
859
|
+
/**
|
|
860
|
+
* Base modal component, powered by [react-modal](http://reactcommunity.org/react-modal/#usage)
|
|
861
|
+
*
|
|
862
|
+
* (Also see `ModalAdapter` in the styles file)
|
|
863
|
+
*
|
|
864
|
+
* Accessible element label must be included either as a string passed to `labelText`, or
|
|
865
|
+
* the id of one of the children passed to `labelElement`. If a description is available,
|
|
866
|
+
* pass that element’s id to the `describedBy` prop.
|
|
867
|
+
*/
|
|
868
|
+
declare function ModalBase(props: ModalBaseProps): react_jsx_runtime.JSX.Element;
|
|
869
|
+
|
|
870
|
+
type Props$4 = PermafrostComponent & Pick<ModalBaseProps, 'open'> & {
|
|
871
|
+
describedBy?: string;
|
|
872
|
+
clickOutsideHandler(e?: react__default.SyntheticEvent): void;
|
|
873
|
+
confirmText?: string;
|
|
874
|
+
message?: string | react__default.ReactNode;
|
|
875
|
+
modalNode?: string;
|
|
876
|
+
processing?: boolean;
|
|
877
|
+
rejectText?: string;
|
|
878
|
+
responseHandler(response: boolean, event: react__default.SyntheticEvent): void;
|
|
879
|
+
title?: string | react__default.ReactNode;
|
|
880
|
+
width?: number;
|
|
881
|
+
};
|
|
882
|
+
declare function ConfirmModal(props: Props$4): react_jsx_runtime.JSX.Element;
|
|
883
|
+
|
|
884
|
+
type Props$3 = {
|
|
885
|
+
children: react__default.ReactNode | react__default.ReactNode[];
|
|
886
|
+
className?: string;
|
|
887
|
+
isLoading?: boolean;
|
|
888
|
+
style?: react__default.CSSProperties;
|
|
889
|
+
};
|
|
890
|
+
/**
|
|
891
|
+
* A functional container for content that is yet to load or will change; displays a loading indicator and announces
|
|
892
|
+
* to Assistive Technology as needed.
|
|
893
|
+
*
|
|
894
|
+
* todo: this is an extremely simple version of this component; as I get more familiar with LoadingIndicator use cases, this will be refactored. - jm 9/1/2020
|
|
895
|
+
*/
|
|
896
|
+
declare function LoadingAwareContainer(props: Props$3): react__default.ReactElement;
|
|
897
|
+
|
|
898
|
+
type CancelText$1 = {
|
|
899
|
+
confirmText: string;
|
|
900
|
+
message?: string;
|
|
901
|
+
rejectText: string;
|
|
902
|
+
title: string;
|
|
903
|
+
};
|
|
904
|
+
type Props$2 = PermafrostComponent & {
|
|
905
|
+
children: react__default.ReactNode;
|
|
906
|
+
/**
|
|
907
|
+
* text for the cancel confirmation modal
|
|
908
|
+
*/
|
|
909
|
+
confirmCancel: CancelText$1;
|
|
910
|
+
disableNextStep?: boolean;
|
|
911
|
+
disablePrevStep?: boolean;
|
|
912
|
+
disableSubmit?: boolean;
|
|
913
|
+
isLastStep?: boolean;
|
|
914
|
+
/**
|
|
915
|
+
* for testing/mocking purposes
|
|
916
|
+
*/
|
|
917
|
+
startingStep?: string;
|
|
918
|
+
steps: string[];
|
|
919
|
+
/**
|
|
920
|
+
* the text to appear on the submit button
|
|
921
|
+
*/
|
|
922
|
+
submitButtonLabel: string;
|
|
923
|
+
/**
|
|
924
|
+
* Puts button in "busy" mode, and replaces button label with this text
|
|
925
|
+
*/
|
|
926
|
+
submitProcessing?: string;
|
|
927
|
+
wizardTitle: string;
|
|
928
|
+
onCancel?(): void;
|
|
929
|
+
onNextPress?(): boolean;
|
|
930
|
+
/**
|
|
931
|
+
* returns the current step name to the parent component
|
|
932
|
+
*/
|
|
933
|
+
onStepChange(stepName: string): void;
|
|
934
|
+
onSubmit(): void;
|
|
935
|
+
/**
|
|
936
|
+
* Allows for any custom attribute to be added directly to "next button" in wizard
|
|
937
|
+
*/
|
|
938
|
+
nextButtonProps?: {
|
|
939
|
+
'data-cy': string;
|
|
940
|
+
};
|
|
941
|
+
};
|
|
942
|
+
declare function Wizard(props: Props$2): react_jsx_runtime.JSX.Element;
|
|
943
|
+
|
|
944
|
+
declare const StyledWizard: styled_components.IStyledComponent<"web", {
|
|
945
|
+
ref?: react.LegacyRef<HTMLDivElement> | undefined;
|
|
946
|
+
key?: react.Key | null | undefined;
|
|
947
|
+
defaultChecked?: boolean | undefined;
|
|
948
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
949
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
950
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
951
|
+
accessKey?: string | undefined;
|
|
952
|
+
autoFocus?: boolean | undefined;
|
|
953
|
+
className?: string | undefined;
|
|
954
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
955
|
+
contextMenu?: string | undefined;
|
|
956
|
+
dir?: string | undefined;
|
|
957
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
958
|
+
hidden?: boolean | undefined;
|
|
959
|
+
id?: string | undefined;
|
|
960
|
+
lang?: string | undefined;
|
|
961
|
+
nonce?: string | undefined;
|
|
962
|
+
slot?: string | undefined;
|
|
963
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
964
|
+
style?: react.CSSProperties | undefined;
|
|
965
|
+
tabIndex?: number | undefined;
|
|
966
|
+
title?: string | undefined;
|
|
967
|
+
translate?: "yes" | "no" | undefined;
|
|
968
|
+
radioGroup?: string | undefined;
|
|
969
|
+
role?: react.AriaRole | undefined;
|
|
970
|
+
about?: string | undefined;
|
|
971
|
+
content?: string | undefined;
|
|
972
|
+
datatype?: string | undefined;
|
|
973
|
+
inlist?: any;
|
|
974
|
+
prefix?: string | undefined;
|
|
975
|
+
property?: string | undefined;
|
|
976
|
+
rel?: string | undefined;
|
|
977
|
+
resource?: string | undefined;
|
|
978
|
+
rev?: string | undefined;
|
|
979
|
+
typeof?: string | undefined;
|
|
980
|
+
vocab?: string | undefined;
|
|
981
|
+
autoCapitalize?: string | undefined;
|
|
982
|
+
autoCorrect?: string | undefined;
|
|
983
|
+
autoSave?: string | undefined;
|
|
984
|
+
color?: string | undefined;
|
|
985
|
+
itemProp?: string | undefined;
|
|
986
|
+
itemScope?: boolean | undefined;
|
|
987
|
+
itemType?: string | undefined;
|
|
988
|
+
itemID?: string | undefined;
|
|
989
|
+
itemRef?: string | undefined;
|
|
990
|
+
results?: number | undefined;
|
|
991
|
+
security?: string | undefined;
|
|
992
|
+
unselectable?: "off" | "on" | undefined;
|
|
993
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
994
|
+
is?: string | undefined;
|
|
995
|
+
"aria-activedescendant"?: string | undefined;
|
|
996
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
997
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
998
|
+
"aria-braillelabel"?: string | undefined;
|
|
999
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1000
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
1001
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
1002
|
+
"aria-colcount"?: number | undefined;
|
|
1003
|
+
"aria-colindex"?: number | undefined;
|
|
1004
|
+
"aria-colindextext"?: string | undefined;
|
|
1005
|
+
"aria-colspan"?: number | undefined;
|
|
1006
|
+
"aria-controls"?: string | undefined;
|
|
1007
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "date" | "location" | "time" | "step" | undefined;
|
|
1008
|
+
"aria-describedby"?: string | undefined;
|
|
1009
|
+
"aria-description"?: string | undefined;
|
|
1010
|
+
"aria-details"?: string | undefined;
|
|
1011
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
1012
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
1013
|
+
"aria-errormessage"?: string | undefined;
|
|
1014
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
1015
|
+
"aria-flowto"?: string | undefined;
|
|
1016
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
1017
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
1018
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
1019
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
1020
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1021
|
+
"aria-label"?: string | undefined;
|
|
1022
|
+
"aria-labelledby"?: string | undefined;
|
|
1023
|
+
"aria-level"?: number | undefined;
|
|
1024
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1025
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
1026
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
1027
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
1028
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1029
|
+
"aria-owns"?: string | undefined;
|
|
1030
|
+
"aria-placeholder"?: string | undefined;
|
|
1031
|
+
"aria-posinset"?: number | undefined;
|
|
1032
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
1033
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
1034
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1035
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
1036
|
+
"aria-roledescription"?: string | undefined;
|
|
1037
|
+
"aria-rowcount"?: number | undefined;
|
|
1038
|
+
"aria-rowindex"?: number | undefined;
|
|
1039
|
+
"aria-rowindextext"?: string | undefined;
|
|
1040
|
+
"aria-rowspan"?: number | undefined;
|
|
1041
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
1042
|
+
"aria-setsize"?: number | undefined;
|
|
1043
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1044
|
+
"aria-valuemax"?: number | undefined;
|
|
1045
|
+
"aria-valuemin"?: number | undefined;
|
|
1046
|
+
"aria-valuenow"?: number | undefined;
|
|
1047
|
+
"aria-valuetext"?: string | undefined;
|
|
1048
|
+
children?: react.ReactNode;
|
|
1049
|
+
dangerouslySetInnerHTML?: {
|
|
1050
|
+
__html: string | TrustedHTML;
|
|
1051
|
+
} | undefined;
|
|
1052
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1053
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1054
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1055
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1056
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1057
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1058
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1059
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1060
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1061
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1062
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1063
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1064
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1065
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1066
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1067
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1068
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1069
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1070
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1071
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1072
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1073
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1074
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1075
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1076
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1077
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1078
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1079
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1080
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1081
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1082
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1083
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1084
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1085
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1086
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1087
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1088
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1089
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1090
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1091
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1092
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1093
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1094
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1095
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1096
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1097
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1098
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1099
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1100
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1101
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1102
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1103
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1104
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1105
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1106
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1107
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1108
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1109
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1110
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1111
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1112
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1113
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1114
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1115
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1116
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1117
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1118
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1119
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1120
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1121
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1122
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1123
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1124
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1125
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1126
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1127
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1128
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1129
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1130
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1131
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1132
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1133
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1134
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1135
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1136
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1137
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1138
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1139
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1140
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1141
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1142
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1143
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1144
|
+
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1145
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1146
|
+
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1147
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1148
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1149
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1150
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1151
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1152
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1153
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1154
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1155
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1156
|
+
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1157
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1158
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1159
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1160
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1161
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1162
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1163
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1164
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1165
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1166
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1167
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1168
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1169
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1170
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1171
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1172
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1173
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1174
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1175
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1176
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1177
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1178
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1179
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1180
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1181
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1182
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1183
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1184
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1185
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1186
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1187
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1188
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1189
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1190
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1191
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1192
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1193
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1194
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1195
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1196
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1197
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1198
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1199
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1200
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1201
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1202
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1203
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1204
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1205
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1206
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1207
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1208
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1209
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1210
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1211
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1212
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1213
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1214
|
+
}>;
|
|
1215
|
+
declare const WizardCard: styled_components.IStyledComponent<"web", {
|
|
1216
|
+
ref?: react.LegacyRef<HTMLDivElement> | undefined;
|
|
1217
|
+
key?: react.Key | null | undefined;
|
|
1218
|
+
defaultChecked?: boolean | undefined;
|
|
1219
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1220
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1221
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1222
|
+
accessKey?: string | undefined;
|
|
1223
|
+
autoFocus?: boolean | undefined;
|
|
1224
|
+
className?: string | undefined;
|
|
1225
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
1226
|
+
contextMenu?: string | undefined;
|
|
1227
|
+
dir?: string | undefined;
|
|
1228
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
1229
|
+
hidden?: boolean | undefined;
|
|
1230
|
+
id?: string | undefined;
|
|
1231
|
+
lang?: string | undefined;
|
|
1232
|
+
nonce?: string | undefined;
|
|
1233
|
+
slot?: string | undefined;
|
|
1234
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
1235
|
+
style?: react.CSSProperties | undefined;
|
|
1236
|
+
tabIndex?: number | undefined;
|
|
1237
|
+
title?: string | undefined;
|
|
1238
|
+
translate?: "yes" | "no" | undefined;
|
|
1239
|
+
radioGroup?: string | undefined;
|
|
1240
|
+
role?: react.AriaRole | undefined;
|
|
1241
|
+
about?: string | undefined;
|
|
1242
|
+
content?: string | undefined;
|
|
1243
|
+
datatype?: string | undefined;
|
|
1244
|
+
inlist?: any;
|
|
1245
|
+
prefix?: string | undefined;
|
|
1246
|
+
property?: string | undefined;
|
|
1247
|
+
rel?: string | undefined;
|
|
1248
|
+
resource?: string | undefined;
|
|
1249
|
+
rev?: string | undefined;
|
|
1250
|
+
typeof?: string | undefined;
|
|
1251
|
+
vocab?: string | undefined;
|
|
1252
|
+
autoCapitalize?: string | undefined;
|
|
1253
|
+
autoCorrect?: string | undefined;
|
|
1254
|
+
autoSave?: string | undefined;
|
|
1255
|
+
color?: string | undefined;
|
|
1256
|
+
itemProp?: string | undefined;
|
|
1257
|
+
itemScope?: boolean | undefined;
|
|
1258
|
+
itemType?: string | undefined;
|
|
1259
|
+
itemID?: string | undefined;
|
|
1260
|
+
itemRef?: string | undefined;
|
|
1261
|
+
results?: number | undefined;
|
|
1262
|
+
security?: string | undefined;
|
|
1263
|
+
unselectable?: "off" | "on" | undefined;
|
|
1264
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
1265
|
+
is?: string | undefined;
|
|
1266
|
+
"aria-activedescendant"?: string | undefined;
|
|
1267
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
1268
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
1269
|
+
"aria-braillelabel"?: string | undefined;
|
|
1270
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1271
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
1272
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
1273
|
+
"aria-colcount"?: number | undefined;
|
|
1274
|
+
"aria-colindex"?: number | undefined;
|
|
1275
|
+
"aria-colindextext"?: string | undefined;
|
|
1276
|
+
"aria-colspan"?: number | undefined;
|
|
1277
|
+
"aria-controls"?: string | undefined;
|
|
1278
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "date" | "location" | "time" | "step" | undefined;
|
|
1279
|
+
"aria-describedby"?: string | undefined;
|
|
1280
|
+
"aria-description"?: string | undefined;
|
|
1281
|
+
"aria-details"?: string | undefined;
|
|
1282
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
1283
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
1284
|
+
"aria-errormessage"?: string | undefined;
|
|
1285
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
1286
|
+
"aria-flowto"?: string | undefined;
|
|
1287
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
1288
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
1289
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
1290
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
1291
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1292
|
+
"aria-label"?: string | undefined;
|
|
1293
|
+
"aria-labelledby"?: string | undefined;
|
|
1294
|
+
"aria-level"?: number | undefined;
|
|
1295
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1296
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
1297
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
1298
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
1299
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1300
|
+
"aria-owns"?: string | undefined;
|
|
1301
|
+
"aria-placeholder"?: string | undefined;
|
|
1302
|
+
"aria-posinset"?: number | undefined;
|
|
1303
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
1304
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
1305
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1306
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
1307
|
+
"aria-roledescription"?: string | undefined;
|
|
1308
|
+
"aria-rowcount"?: number | undefined;
|
|
1309
|
+
"aria-rowindex"?: number | undefined;
|
|
1310
|
+
"aria-rowindextext"?: string | undefined;
|
|
1311
|
+
"aria-rowspan"?: number | undefined;
|
|
1312
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
1313
|
+
"aria-setsize"?: number | undefined;
|
|
1314
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1315
|
+
"aria-valuemax"?: number | undefined;
|
|
1316
|
+
"aria-valuemin"?: number | undefined;
|
|
1317
|
+
"aria-valuenow"?: number | undefined;
|
|
1318
|
+
"aria-valuetext"?: string | undefined;
|
|
1319
|
+
children?: react.ReactNode;
|
|
1320
|
+
dangerouslySetInnerHTML?: {
|
|
1321
|
+
__html: string | TrustedHTML;
|
|
1322
|
+
} | undefined;
|
|
1323
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1324
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1325
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1326
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1327
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1328
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1329
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1330
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1331
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1332
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1333
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1334
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1335
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1336
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1337
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1338
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1339
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1340
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1341
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1342
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1343
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1344
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1345
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1346
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1347
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1348
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1349
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1350
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1351
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1352
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1353
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1354
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1355
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1356
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1357
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1358
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1359
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1360
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1361
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1362
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1363
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1364
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1365
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1366
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1367
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1368
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1369
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1370
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1371
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1372
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1373
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1374
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1375
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1376
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1377
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1378
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1379
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1380
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1381
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1382
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1383
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1384
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1385
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1386
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1387
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1388
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1389
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1390
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1391
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1392
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1393
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1394
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1395
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1396
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1397
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1398
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1399
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1400
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1401
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1402
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1403
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1404
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1405
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1406
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1407
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1408
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1409
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1410
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1411
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1412
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1413
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1414
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1415
|
+
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1416
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1417
|
+
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1418
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1419
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1420
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1421
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1422
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1423
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1424
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1425
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1426
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1427
|
+
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1428
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1429
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1430
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1431
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1432
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1433
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1434
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1435
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1436
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1437
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1438
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1439
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1440
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1441
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1442
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1443
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1444
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1445
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1446
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1447
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1448
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1449
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1450
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1451
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1452
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1453
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1454
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1455
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1456
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1457
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1458
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1459
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1460
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1461
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1462
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1463
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1464
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1465
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1466
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1467
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1468
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1469
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1470
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1471
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1472
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1473
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1474
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1475
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1476
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1477
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1478
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1479
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1480
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1481
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1482
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1483
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1484
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1485
|
+
}>;
|
|
1486
|
+
declare const WizardSection: styled_components.IStyledComponent<"web", {
|
|
1487
|
+
ref?: react.LegacyRef<HTMLDivElement> | undefined;
|
|
1488
|
+
key?: react.Key | null | undefined;
|
|
1489
|
+
defaultChecked?: boolean | undefined;
|
|
1490
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
1491
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
1492
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
1493
|
+
accessKey?: string | undefined;
|
|
1494
|
+
autoFocus?: boolean | undefined;
|
|
1495
|
+
className?: string | undefined;
|
|
1496
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
1497
|
+
contextMenu?: string | undefined;
|
|
1498
|
+
dir?: string | undefined;
|
|
1499
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
1500
|
+
hidden?: boolean | undefined;
|
|
1501
|
+
id?: string | undefined;
|
|
1502
|
+
lang?: string | undefined;
|
|
1503
|
+
nonce?: string | undefined;
|
|
1504
|
+
slot?: string | undefined;
|
|
1505
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
1506
|
+
style?: react.CSSProperties | undefined;
|
|
1507
|
+
tabIndex?: number | undefined;
|
|
1508
|
+
title?: string | undefined;
|
|
1509
|
+
translate?: "yes" | "no" | undefined;
|
|
1510
|
+
radioGroup?: string | undefined;
|
|
1511
|
+
role?: react.AriaRole | undefined;
|
|
1512
|
+
about?: string | undefined;
|
|
1513
|
+
content?: string | undefined;
|
|
1514
|
+
datatype?: string | undefined;
|
|
1515
|
+
inlist?: any;
|
|
1516
|
+
prefix?: string | undefined;
|
|
1517
|
+
property?: string | undefined;
|
|
1518
|
+
rel?: string | undefined;
|
|
1519
|
+
resource?: string | undefined;
|
|
1520
|
+
rev?: string | undefined;
|
|
1521
|
+
typeof?: string | undefined;
|
|
1522
|
+
vocab?: string | undefined;
|
|
1523
|
+
autoCapitalize?: string | undefined;
|
|
1524
|
+
autoCorrect?: string | undefined;
|
|
1525
|
+
autoSave?: string | undefined;
|
|
1526
|
+
color?: string | undefined;
|
|
1527
|
+
itemProp?: string | undefined;
|
|
1528
|
+
itemScope?: boolean | undefined;
|
|
1529
|
+
itemType?: string | undefined;
|
|
1530
|
+
itemID?: string | undefined;
|
|
1531
|
+
itemRef?: string | undefined;
|
|
1532
|
+
results?: number | undefined;
|
|
1533
|
+
security?: string | undefined;
|
|
1534
|
+
unselectable?: "off" | "on" | undefined;
|
|
1535
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
1536
|
+
is?: string | undefined;
|
|
1537
|
+
"aria-activedescendant"?: string | undefined;
|
|
1538
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
1539
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
1540
|
+
"aria-braillelabel"?: string | undefined;
|
|
1541
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1542
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
1543
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
1544
|
+
"aria-colcount"?: number | undefined;
|
|
1545
|
+
"aria-colindex"?: number | undefined;
|
|
1546
|
+
"aria-colindextext"?: string | undefined;
|
|
1547
|
+
"aria-colspan"?: number | undefined;
|
|
1548
|
+
"aria-controls"?: string | undefined;
|
|
1549
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "date" | "location" | "time" | "step" | undefined;
|
|
1550
|
+
"aria-describedby"?: string | undefined;
|
|
1551
|
+
"aria-description"?: string | undefined;
|
|
1552
|
+
"aria-details"?: string | undefined;
|
|
1553
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
1554
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
1555
|
+
"aria-errormessage"?: string | undefined;
|
|
1556
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
1557
|
+
"aria-flowto"?: string | undefined;
|
|
1558
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
1559
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
1560
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
1561
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
1562
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1563
|
+
"aria-label"?: string | undefined;
|
|
1564
|
+
"aria-labelledby"?: string | undefined;
|
|
1565
|
+
"aria-level"?: number | undefined;
|
|
1566
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1567
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
1568
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
1569
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
1570
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1571
|
+
"aria-owns"?: string | undefined;
|
|
1572
|
+
"aria-placeholder"?: string | undefined;
|
|
1573
|
+
"aria-posinset"?: number | undefined;
|
|
1574
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
1575
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
1576
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1577
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
1578
|
+
"aria-roledescription"?: string | undefined;
|
|
1579
|
+
"aria-rowcount"?: number | undefined;
|
|
1580
|
+
"aria-rowindex"?: number | undefined;
|
|
1581
|
+
"aria-rowindextext"?: string | undefined;
|
|
1582
|
+
"aria-rowspan"?: number | undefined;
|
|
1583
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
1584
|
+
"aria-setsize"?: number | undefined;
|
|
1585
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1586
|
+
"aria-valuemax"?: number | undefined;
|
|
1587
|
+
"aria-valuemin"?: number | undefined;
|
|
1588
|
+
"aria-valuenow"?: number | undefined;
|
|
1589
|
+
"aria-valuetext"?: string | undefined;
|
|
1590
|
+
children?: react.ReactNode;
|
|
1591
|
+
dangerouslySetInnerHTML?: {
|
|
1592
|
+
__html: string | TrustedHTML;
|
|
1593
|
+
} | undefined;
|
|
1594
|
+
onCopy?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1595
|
+
onCopyCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1596
|
+
onCut?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1597
|
+
onCutCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1598
|
+
onPaste?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1599
|
+
onPasteCapture?: react.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
1600
|
+
onCompositionEnd?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1601
|
+
onCompositionEndCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1602
|
+
onCompositionStart?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1603
|
+
onCompositionStartCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1604
|
+
onCompositionUpdate?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1605
|
+
onCompositionUpdateCapture?: react.CompositionEventHandler<HTMLDivElement> | undefined;
|
|
1606
|
+
onFocus?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1607
|
+
onFocusCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1608
|
+
onBlur?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1609
|
+
onBlurCapture?: react.FocusEventHandler<HTMLDivElement> | undefined;
|
|
1610
|
+
onChange?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1611
|
+
onChangeCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1612
|
+
onBeforeInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1613
|
+
onBeforeInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1614
|
+
onInput?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1615
|
+
onInputCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1616
|
+
onReset?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1617
|
+
onResetCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1618
|
+
onSubmit?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1619
|
+
onSubmitCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1620
|
+
onInvalid?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1621
|
+
onInvalidCapture?: react.FormEventHandler<HTMLDivElement> | undefined;
|
|
1622
|
+
onLoad?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1623
|
+
onLoadCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1624
|
+
onError?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1625
|
+
onErrorCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1626
|
+
onKeyDown?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1627
|
+
onKeyDownCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1628
|
+
onKeyPress?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1629
|
+
onKeyPressCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1630
|
+
onKeyUp?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1631
|
+
onKeyUpCapture?: react.KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
1632
|
+
onAbort?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1633
|
+
onAbortCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1634
|
+
onCanPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1635
|
+
onCanPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1636
|
+
onCanPlayThrough?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1637
|
+
onCanPlayThroughCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1638
|
+
onDurationChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1639
|
+
onDurationChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1640
|
+
onEmptied?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1641
|
+
onEmptiedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1642
|
+
onEncrypted?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1643
|
+
onEncryptedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1644
|
+
onEnded?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1645
|
+
onEndedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1646
|
+
onLoadedData?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1647
|
+
onLoadedDataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1648
|
+
onLoadedMetadata?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1649
|
+
onLoadedMetadataCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1650
|
+
onLoadStart?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1651
|
+
onLoadStartCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1652
|
+
onPause?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1653
|
+
onPauseCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1654
|
+
onPlay?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1655
|
+
onPlayCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1656
|
+
onPlaying?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1657
|
+
onPlayingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1658
|
+
onProgress?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1659
|
+
onProgressCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1660
|
+
onRateChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1661
|
+
onRateChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1662
|
+
onResize?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1663
|
+
onResizeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1664
|
+
onSeeked?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1665
|
+
onSeekedCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1666
|
+
onSeeking?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1667
|
+
onSeekingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1668
|
+
onStalled?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1669
|
+
onStalledCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1670
|
+
onSuspend?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1671
|
+
onSuspendCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1672
|
+
onTimeUpdate?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1673
|
+
onTimeUpdateCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1674
|
+
onVolumeChange?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1675
|
+
onVolumeChangeCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1676
|
+
onWaiting?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1677
|
+
onWaitingCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1678
|
+
onAuxClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1679
|
+
onAuxClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1680
|
+
onClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1681
|
+
onClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1682
|
+
onContextMenu?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1683
|
+
onContextMenuCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1684
|
+
onDoubleClick?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1685
|
+
onDoubleClickCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1686
|
+
onDrag?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1687
|
+
onDragCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1688
|
+
onDragEnd?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1689
|
+
onDragEndCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1690
|
+
onDragEnter?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1691
|
+
onDragEnterCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1692
|
+
onDragExit?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1693
|
+
onDragExitCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1694
|
+
onDragLeave?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1695
|
+
onDragLeaveCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1696
|
+
onDragOver?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1697
|
+
onDragOverCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1698
|
+
onDragStart?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1699
|
+
onDragStartCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1700
|
+
onDrop?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1701
|
+
onDropCapture?: react.DragEventHandler<HTMLDivElement> | undefined;
|
|
1702
|
+
onMouseDown?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1703
|
+
onMouseDownCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1704
|
+
onMouseEnter?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1705
|
+
onMouseLeave?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1706
|
+
onMouseMove?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1707
|
+
onMouseMoveCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1708
|
+
onMouseOut?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1709
|
+
onMouseOutCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1710
|
+
onMouseOver?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1711
|
+
onMouseOverCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1712
|
+
onMouseUp?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1713
|
+
onMouseUpCapture?: react.MouseEventHandler<HTMLDivElement> | undefined;
|
|
1714
|
+
onSelect?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1715
|
+
onSelectCapture?: react.ReactEventHandler<HTMLDivElement> | undefined;
|
|
1716
|
+
onTouchCancel?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1717
|
+
onTouchCancelCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1718
|
+
onTouchEnd?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1719
|
+
onTouchEndCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1720
|
+
onTouchMove?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1721
|
+
onTouchMoveCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1722
|
+
onTouchStart?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1723
|
+
onTouchStartCapture?: react.TouchEventHandler<HTMLDivElement> | undefined;
|
|
1724
|
+
onPointerDown?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1725
|
+
onPointerDownCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1726
|
+
onPointerMove?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1727
|
+
onPointerMoveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1728
|
+
onPointerUp?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1729
|
+
onPointerUpCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1730
|
+
onPointerCancel?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1731
|
+
onPointerCancelCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1732
|
+
onPointerEnter?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1733
|
+
onPointerEnterCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1734
|
+
onPointerLeave?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1735
|
+
onPointerLeaveCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1736
|
+
onPointerOver?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1737
|
+
onPointerOverCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1738
|
+
onPointerOut?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1739
|
+
onPointerOutCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1740
|
+
onGotPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1741
|
+
onGotPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1742
|
+
onLostPointerCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1743
|
+
onLostPointerCaptureCapture?: react.PointerEventHandler<HTMLDivElement> | undefined;
|
|
1744
|
+
onScroll?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1745
|
+
onScrollCapture?: react.UIEventHandler<HTMLDivElement> | undefined;
|
|
1746
|
+
onWheel?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1747
|
+
onWheelCapture?: react.WheelEventHandler<HTMLDivElement> | undefined;
|
|
1748
|
+
onAnimationStart?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1749
|
+
onAnimationStartCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1750
|
+
onAnimationEnd?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1751
|
+
onAnimationEndCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1752
|
+
onAnimationIteration?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1753
|
+
onAnimationIterationCapture?: react.AnimationEventHandler<HTMLDivElement> | undefined;
|
|
1754
|
+
onTransitionEnd?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1755
|
+
onTransitionEndCapture?: react.TransitionEventHandler<HTMLDivElement> | undefined;
|
|
1756
|
+
}>;
|
|
1757
|
+
|
|
1758
|
+
type CancelText = {
|
|
1759
|
+
confirmText: string;
|
|
1760
|
+
message?: string;
|
|
1761
|
+
rejectText: string;
|
|
1762
|
+
title: string;
|
|
1763
|
+
};
|
|
1764
|
+
type Props$1 = PermafrostComponent & {
|
|
1765
|
+
children: react__default.ReactNode;
|
|
1766
|
+
/**
|
|
1767
|
+
* text for the cancel confirmation modal
|
|
1768
|
+
*/
|
|
1769
|
+
confirmCancel: CancelText;
|
|
1770
|
+
disableNextStep?: boolean;
|
|
1771
|
+
disablePrevStep?: boolean;
|
|
1772
|
+
disableSubmit?: boolean;
|
|
1773
|
+
isLastStep?: boolean;
|
|
1774
|
+
/**
|
|
1775
|
+
* for testing/mocking purposes
|
|
1776
|
+
*/
|
|
1777
|
+
startingStep?: string;
|
|
1778
|
+
stepSchema: {
|
|
1779
|
+
[key: string]: {
|
|
1780
|
+
inputsRequiringValidation: string[];
|
|
1781
|
+
description: string[];
|
|
1782
|
+
};
|
|
1783
|
+
};
|
|
1784
|
+
/**
|
|
1785
|
+
* the text to appear on the submit button
|
|
1786
|
+
*/
|
|
1787
|
+
submitButtonLabel: string;
|
|
1788
|
+
/**
|
|
1789
|
+
* Puts button in "busy" mode, and replaces button label with this text
|
|
1790
|
+
*/
|
|
1791
|
+
submitProcessing?: string;
|
|
1792
|
+
wizardTitle: string;
|
|
1793
|
+
onCancel?(): void;
|
|
1794
|
+
onNextPress?(): boolean;
|
|
1795
|
+
/**
|
|
1796
|
+
* returns the current step name to the parent component
|
|
1797
|
+
*/
|
|
1798
|
+
onStepChange(stepName: string): void;
|
|
1799
|
+
onSubmit(): void;
|
|
1800
|
+
/**
|
|
1801
|
+
* Allows for any custom attribute to be added directly to "next button" in wizard
|
|
1802
|
+
*/
|
|
1803
|
+
nextButtonProps?: {
|
|
1804
|
+
'data-cy': string;
|
|
1805
|
+
};
|
|
1806
|
+
bottomNav?: boolean;
|
|
1807
|
+
validationErrors?: any;
|
|
1808
|
+
backgroundColor?: string;
|
|
1809
|
+
color?: string;
|
|
1810
|
+
buttonColor?: string;
|
|
1811
|
+
};
|
|
1812
|
+
declare function WizardWithSidebar(props: Props$1): react_jsx_runtime.JSX.Element;
|
|
1813
|
+
|
|
1814
|
+
type ListItem = {
|
|
1815
|
+
id: string;
|
|
1816
|
+
icon: IconName;
|
|
1817
|
+
label: string;
|
|
1818
|
+
path: string;
|
|
1819
|
+
};
|
|
1820
|
+
|
|
1821
|
+
type Props = PermafrostComponent & {
|
|
1822
|
+
style?: react__default.CSSProperties;
|
|
1823
|
+
logoText?: string;
|
|
1824
|
+
logoIcon?: IconName;
|
|
1825
|
+
headerComponent?: react__default.ReactNode;
|
|
1826
|
+
navigationItems?: ListItem[];
|
|
1827
|
+
footerItems?: ListItem[];
|
|
1828
|
+
$expandedWidth?: string;
|
|
1829
|
+
$collapsedWidth?: string;
|
|
1830
|
+
};
|
|
1831
|
+
declare const Drawer: (props: Props) => react_jsx_runtime.JSX.Element;
|
|
808
1832
|
|
|
809
|
-
export { animation as ANIMATION, Accordion, breakpoints as BREAKPOINT, BarSpinner, BorderSelect, Button, allColors as COLORS, CirclePulse, CircleSpinner, EditableInput, GlobalStyles, Icon, IconButton, ListTable, LoadingList, margin as MARGINS, MATH, mediaQueries as MEDIA_QUERIES, MultiCombobox, NumberInput, padding as PADDINGS, Pagination, PercentageRing, RandomLoadingMessage, spacings as SPACING, SearchInput, Section, SectionBlock, SectionBody, SectionHeader, SectionTable, Select, Shrug, SingleCombobox, typography as TYPOGRAPHY, TextInput, faIcons, indicons };
|
|
1833
|
+
export { animation as ANIMATION, Accordion, breakpoints as BREAKPOINT, BarSpinner, BorderSelect, Button, allColors as COLORS, CirclePulse, CircleSpinner, ConfirmModal, Drawer, EditableInput, GlobalStyles, Icon, IconButton, ListTable, LoadingAwareContainer, LoadingList, margin as MARGINS, MATH, mediaQueries as MEDIA_QUERIES, ModalBase, MultiCombobox, NumberInput, padding as PADDINGS, Pagination, PercentageRing, RandomLoadingMessage, spacings as SPACING, SearchInput, Section, SectionBlock, SectionBody, SectionHeader, SectionTable, Select, Shrug, SingleCombobox, StyledWizard, typography as TYPOGRAPHY, TextInput, Wizard, WizardCard, WizardSection, WizardWithSidebar, faIcons, indicons };
|