@elliemae/ds-stepper 2.2.0-next.4 → 2.2.0-next.8
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/cjs/Stepper.js +3 -2
- package/cjs/StepperButton.js +5 -3
- package/cjs/props.js +21 -8
- package/cjs/styled.js +1 -1
- package/esm/Stepper.js +4 -3
- package/esm/StepperButton.js +6 -4
- package/esm/props.js +17 -8
- package/esm/styled.js +1 -1
- package/package.json +5 -5
- package/types/Stepper.d.ts +362 -1
- package/types/StepperButton.d.ts +365 -19
- package/types/props.d.ts +725 -18
- package/types/tests/Stepper.global-attributes.test.d.ts +1 -0
- package/types/tests/StepperButton.global-attributes.test.d.ts +1 -0
package/cjs/Stepper.js
CHANGED
|
@@ -38,11 +38,12 @@ const DSStepper = props$1 => {
|
|
|
38
38
|
visited
|
|
39
39
|
} = propsWithDefaults;
|
|
40
40
|
const stepsArray = React__default["default"].useMemo(() => new Array(steps).fill(1), [steps]);
|
|
41
|
-
|
|
41
|
+
const globalAttributes = dsPropsHelpers.useGetGlobalAttributes(propsWithDefaults);
|
|
42
|
+
return /*#__PURE__*/jsxRuntime.jsx(styled.StepperWrapper, _objectSpread(_objectSpread({
|
|
42
43
|
steps: steps,
|
|
43
44
|
current: current,
|
|
44
45
|
visited: visited
|
|
45
|
-
},
|
|
46
|
+
}, globalAttributes), {}, {
|
|
46
47
|
children: stepsArray.map((item, index) => /*#__PURE__*/_jsx__default["default"](styled.Step // eslint-disable-next-line react/no-array-index-key
|
|
47
48
|
, {
|
|
48
49
|
active: current === index,
|
package/cjs/StepperButton.js
CHANGED
|
@@ -40,13 +40,15 @@ const DSStepperButton = props$1 => {
|
|
|
40
40
|
onClick,
|
|
41
41
|
innerRef
|
|
42
42
|
} = propsWithDefaults;
|
|
43
|
-
|
|
43
|
+
const globalAttributes = dsPropsHelpers.useGetGlobalAttributes(propsWithDefaults);
|
|
44
|
+
return /*#__PURE__*/jsxRuntime.jsxs(styled.StyledButton, _objectSpread(_objectSpread({
|
|
44
45
|
disabled: disabled,
|
|
45
46
|
onClick: onClick,
|
|
46
47
|
innerRef: innerRef,
|
|
47
48
|
buttonType: dsButton.BUTTON_TYPES.TEXT,
|
|
48
|
-
fontSize: fontSize
|
|
49
|
-
|
|
49
|
+
fontSize: fontSize,
|
|
50
|
+
"data-testid": "ds-stepper-btn"
|
|
51
|
+
}, globalAttributes), {}, {
|
|
50
52
|
children: [chevron === 'left' ? _ChevronLeft || (_ChevronLeft = /*#__PURE__*/_jsx__default["default"](dsIcons.ChevronLeft, {})) : null, /*#__PURE__*/_jsx__default["default"](styled.Label, {
|
|
51
53
|
value: label
|
|
52
54
|
}), chevron === 'right' ? _ChevronRight || (_ChevronRight = /*#__PURE__*/_jsx__default["default"](dsIcons.ChevronRight, {})) : null]
|
package/cjs/props.js
CHANGED
|
@@ -2,9 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
8
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
9
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
10
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
5
11
|
var lodash = require('lodash');
|
|
6
12
|
var reactDesc = require('react-desc');
|
|
13
|
+
var dsPropsHelpers = require('@elliemae/ds-props-helpers');
|
|
7
14
|
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
16
|
+
|
|
17
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
18
|
+
|
|
19
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
20
|
+
|
|
21
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
8
22
|
const BUTTON_SIZES = {
|
|
9
23
|
normal: 'normal',
|
|
10
24
|
large: 'large'
|
|
@@ -14,27 +28,26 @@ const defaultProps = {
|
|
|
14
28
|
current: undefined,
|
|
15
29
|
visited: []
|
|
16
30
|
};
|
|
17
|
-
const dsStepperProps = {
|
|
31
|
+
const dsStepperProps = _objectSpread({
|
|
18
32
|
steps: reactDesc.PropTypes.number.description('Number of steps').isRequired,
|
|
19
33
|
current: reactDesc.PropTypes.number.description('Index of active step'),
|
|
20
34
|
visited: reactDesc.PropTypes.arrayOf(reactDesc.PropTypes.number).description('Array of visited steps').isRequired
|
|
21
|
-
};
|
|
35
|
+
}, dsPropsHelpers.globalAttributesPropTypes);
|
|
22
36
|
const defaultButtonProps = {
|
|
23
37
|
chevron: undefined,
|
|
24
38
|
fontSize: BUTTON_SIZES.normal,
|
|
25
39
|
disabled: false,
|
|
26
40
|
onClick: lodash.noop
|
|
27
41
|
};
|
|
28
|
-
const dsStepperButtonProps = {
|
|
42
|
+
const dsStepperButtonProps = _objectSpread(_objectSpread({
|
|
29
43
|
chevron: reactDesc.PropTypes.oneOf(['left', 'right', null]).description('Chevron icon position, if null/undefined no chevron will be shown').defaultValue(null),
|
|
30
44
|
fontSize: reactDesc.PropTypes.oneOf(['normal', 'large']).description('Label size, used for marking last step').defaultValue('normal'),
|
|
31
|
-
|
|
45
|
+
innerRef: reactDesc.PropTypes.oneOfType([reactDesc.PropTypes.object, reactDesc.PropTypes.func]).description('Inner ref to button component.')
|
|
46
|
+
}, dsPropsHelpers.globalAttributesPropTypes), {}, {
|
|
32
47
|
disabled: reactDesc.PropTypes.bool.description('Adds disabled state.'),
|
|
33
48
|
onClick: reactDesc.PropTypes.func.description('OnClick callback handler.').defaultValue('()=>{}'),
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
'data-': reactDesc.PropTypes.oneOfType([reactDesc.PropTypes.string, reactDesc.PropTypes.bool]).description('accept all the data-* props')
|
|
37
|
-
};
|
|
49
|
+
label: reactDesc.PropTypes.string.description('Text Label, this only accepts text, no custom JSX').isRequired
|
|
50
|
+
});
|
|
38
51
|
|
|
39
52
|
exports.defaultButtonProps = defaultButtonProps;
|
|
40
53
|
exports.defaultProps = defaultProps;
|
package/cjs/styled.js
CHANGED
|
@@ -12,7 +12,7 @@ var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled);
|
|
|
12
12
|
|
|
13
13
|
const StepperWrapper = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
14
14
|
componentId: "sc-fgtqnq-0"
|
|
15
|
-
})(["display:grid;align-items:
|
|
15
|
+
})(["display:grid;align-items:center;grid-template-columns repeat(", ",1fr);column-gap:", ";"], props => props.steps, props => props.steps >= 8 ? props.theme.space.xxxs : props.theme.space.xxs);
|
|
16
16
|
const Step = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
17
17
|
componentId: "sc-fgtqnq-1"
|
|
18
18
|
})(["display:grid;border-radius:1px;height:", ";background:", ";"], props => props.active ? '5px' : '3px', props => props.active || props.visited ? props.theme.colors.brand[700] : '#A9B1BE');
|
package/esm/Stepper.js
CHANGED
|
@@ -10,7 +10,7 @@ import 'core-js/modules/esnext.iterator.for-each.js';
|
|
|
10
10
|
import React from 'react';
|
|
11
11
|
import { uid } from 'uid';
|
|
12
12
|
import { describe } from 'react-desc';
|
|
13
|
-
import { useMemoMergePropsWithDefault, useValidateTypescriptPropTypes,
|
|
13
|
+
import { useMemoMergePropsWithDefault, useValidateTypescriptPropTypes, useGetGlobalAttributes } from '@elliemae/ds-props-helpers';
|
|
14
14
|
import { dsStepperProps, defaultProps } from './props.js';
|
|
15
15
|
import { StepperWrapper, Step } from './styled.js';
|
|
16
16
|
import { jsx } from 'react/jsx-runtime';
|
|
@@ -28,11 +28,12 @@ const DSStepper = props => {
|
|
|
28
28
|
visited
|
|
29
29
|
} = propsWithDefaults;
|
|
30
30
|
const stepsArray = React.useMemo(() => new Array(steps).fill(1), [steps]);
|
|
31
|
-
|
|
31
|
+
const globalAttributes = useGetGlobalAttributes(propsWithDefaults);
|
|
32
|
+
return /*#__PURE__*/jsx(StepperWrapper, _objectSpread(_objectSpread({
|
|
32
33
|
steps: steps,
|
|
33
34
|
current: current,
|
|
34
35
|
visited: visited
|
|
35
|
-
},
|
|
36
|
+
}, globalAttributes), {}, {
|
|
36
37
|
children: stepsArray.map((item, index) => /*#__PURE__*/_jsx(Step // eslint-disable-next-line react/no-array-index-key
|
|
37
38
|
, {
|
|
38
39
|
active: current === index,
|
package/esm/StepperButton.js
CHANGED
|
@@ -7,7 +7,7 @@ import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
|
7
7
|
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
8
8
|
import 'react';
|
|
9
9
|
import { describe } from 'react-desc';
|
|
10
|
-
import { useMemoMergePropsWithDefault, useValidateTypescriptPropTypes,
|
|
10
|
+
import { useMemoMergePropsWithDefault, useValidateTypescriptPropTypes, useGetGlobalAttributes } from '@elliemae/ds-props-helpers';
|
|
11
11
|
import { BUTTON_TYPES } from '@elliemae/ds-button';
|
|
12
12
|
import { ChevronLeft, ChevronRight } from '@elliemae/ds-icons';
|
|
13
13
|
import { dsStepperButtonProps, defaultButtonProps } from './props.js';
|
|
@@ -31,13 +31,15 @@ const DSStepperButton = props => {
|
|
|
31
31
|
onClick,
|
|
32
32
|
innerRef
|
|
33
33
|
} = propsWithDefaults;
|
|
34
|
-
|
|
34
|
+
const globalAttributes = useGetGlobalAttributes(propsWithDefaults);
|
|
35
|
+
return /*#__PURE__*/jsxs(StyledButton, _objectSpread(_objectSpread({
|
|
35
36
|
disabled: disabled,
|
|
36
37
|
onClick: onClick,
|
|
37
38
|
innerRef: innerRef,
|
|
38
39
|
buttonType: BUTTON_TYPES.TEXT,
|
|
39
|
-
fontSize: fontSize
|
|
40
|
-
|
|
40
|
+
fontSize: fontSize,
|
|
41
|
+
"data-testid": "ds-stepper-btn"
|
|
42
|
+
}, globalAttributes), {}, {
|
|
41
43
|
children: [chevron === 'left' ? _ChevronLeft || (_ChevronLeft = /*#__PURE__*/_jsx(ChevronLeft, {})) : null, /*#__PURE__*/_jsx(Label, {
|
|
42
44
|
value: label
|
|
43
45
|
}), chevron === 'right' ? _ChevronRight || (_ChevronRight = /*#__PURE__*/_jsx(ChevronRight, {})) : null]
|
package/esm/props.js
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
1
7
|
import { noop } from 'lodash';
|
|
2
8
|
import { PropTypes } from 'react-desc';
|
|
9
|
+
import { globalAttributesPropTypes } from '@elliemae/ds-props-helpers';
|
|
3
10
|
|
|
11
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
12
|
+
|
|
13
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
14
|
const BUTTON_SIZES = {
|
|
5
15
|
normal: 'normal',
|
|
6
16
|
large: 'large'
|
|
@@ -10,26 +20,25 @@ const defaultProps = {
|
|
|
10
20
|
current: undefined,
|
|
11
21
|
visited: []
|
|
12
22
|
};
|
|
13
|
-
const dsStepperProps = {
|
|
23
|
+
const dsStepperProps = _objectSpread({
|
|
14
24
|
steps: PropTypes.number.description('Number of steps').isRequired,
|
|
15
25
|
current: PropTypes.number.description('Index of active step'),
|
|
16
26
|
visited: PropTypes.arrayOf(PropTypes.number).description('Array of visited steps').isRequired
|
|
17
|
-
};
|
|
27
|
+
}, globalAttributesPropTypes);
|
|
18
28
|
const defaultButtonProps = {
|
|
19
29
|
chevron: undefined,
|
|
20
30
|
fontSize: BUTTON_SIZES.normal,
|
|
21
31
|
disabled: false,
|
|
22
32
|
onClick: noop
|
|
23
33
|
};
|
|
24
|
-
const dsStepperButtonProps = {
|
|
34
|
+
const dsStepperButtonProps = _objectSpread(_objectSpread({
|
|
25
35
|
chevron: PropTypes.oneOf(['left', 'right', null]).description('Chevron icon position, if null/undefined no chevron will be shown').defaultValue(null),
|
|
26
36
|
fontSize: PropTypes.oneOf(['normal', 'large']).description('Label size, used for marking last step').defaultValue('normal'),
|
|
27
|
-
|
|
37
|
+
innerRef: PropTypes.oneOfType([PropTypes.object, PropTypes.func]).description('Inner ref to button component.')
|
|
38
|
+
}, globalAttributesPropTypes), {}, {
|
|
28
39
|
disabled: PropTypes.bool.description('Adds disabled state.'),
|
|
29
40
|
onClick: PropTypes.func.description('OnClick callback handler.').defaultValue('()=>{}'),
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
'data-': PropTypes.oneOfType([PropTypes.string, PropTypes.bool]).description('accept all the data-* props')
|
|
33
|
-
};
|
|
41
|
+
label: PropTypes.string.description('Text Label, this only accepts text, no custom JSX').isRequired
|
|
42
|
+
});
|
|
34
43
|
|
|
35
44
|
export { defaultButtonProps, defaultProps, dsStepperButtonProps, dsStepperProps };
|
package/esm/styled.js
CHANGED
|
@@ -4,7 +4,7 @@ import { SimpleTruncatedTooltipText } from '@elliemae/ds-truncated-tooltip-text'
|
|
|
4
4
|
|
|
5
5
|
const StepperWrapper = /*#__PURE__*/styled.div.withConfig({
|
|
6
6
|
componentId: "sc-fgtqnq-0"
|
|
7
|
-
})(["display:grid;align-items:
|
|
7
|
+
})(["display:grid;align-items:center;grid-template-columns repeat(", ",1fr);column-gap:", ";"], props => props.steps, props => props.steps >= 8 ? props.theme.space.xxxs : props.theme.space.xxs);
|
|
8
8
|
const Step = /*#__PURE__*/styled.div.withConfig({
|
|
9
9
|
componentId: "sc-fgtqnq-1"
|
|
10
10
|
})(["display:grid;border-radius:1px;height:", ";background:", ";"], props => props.active ? '5px' : '3px', props => props.active || props.visited ? props.theme.colors.brand[700] : '#A9B1BE');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-stepper",
|
|
3
|
-
"version": "2.2.0-next.
|
|
3
|
+
"version": "2.2.0-next.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Stepper",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"build": "node ../../scripts/build/build.js"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@elliemae/ds-button": "2.2.0-next.
|
|
52
|
-
"@elliemae/ds-icons": "2.2.0-next.
|
|
53
|
-
"@elliemae/ds-props-helpers": "2.2.0-next.
|
|
54
|
-
"@elliemae/ds-truncated-tooltip-text": "2.2.0-next.
|
|
51
|
+
"@elliemae/ds-button": "2.2.0-next.8",
|
|
52
|
+
"@elliemae/ds-icons": "2.2.0-next.8",
|
|
53
|
+
"@elliemae/ds-props-helpers": "2.2.0-next.8",
|
|
54
|
+
"@elliemae/ds-truncated-tooltip-text": "2.2.0-next.8",
|
|
55
55
|
"react-desc": "~4.1.3",
|
|
56
56
|
"uid": "~2.0.0"
|
|
57
57
|
},
|
package/types/Stepper.d.ts
CHANGED
|
@@ -4,6 +4,367 @@ import { DSStepperInternalsT } from './props';
|
|
|
4
4
|
declare const DSStepper: {
|
|
5
5
|
(props: DSStepperInternalsT.StepperPropsT): JSX.Element;
|
|
6
6
|
propTypes: {
|
|
7
|
+
'aria-*': any;
|
|
8
|
+
'on-*': any;
|
|
9
|
+
'data-*': any;
|
|
10
|
+
'all HTML attributes': any;
|
|
11
|
+
about: any;
|
|
12
|
+
accept: any;
|
|
13
|
+
acceptCharset: any;
|
|
14
|
+
accessKey: any;
|
|
15
|
+
action: any;
|
|
16
|
+
allowFullScreen: any;
|
|
17
|
+
allowTransparency: any;
|
|
18
|
+
alt: any;
|
|
19
|
+
'aria-activedescendant': any;
|
|
20
|
+
'aria-atomic': any;
|
|
21
|
+
'aria-autocomplete': any;
|
|
22
|
+
'aria-busy': any;
|
|
23
|
+
'aria-checked': any;
|
|
24
|
+
'aria-colcount': any;
|
|
25
|
+
'aria-colindex': any;
|
|
26
|
+
'aria-colspan': any;
|
|
27
|
+
'aria-controls': any;
|
|
28
|
+
'aria-current': any;
|
|
29
|
+
'aria-describedby': any;
|
|
30
|
+
'aria-details': any;
|
|
31
|
+
'aria-disabled': any;
|
|
32
|
+
'aria-dropeffect': any;
|
|
33
|
+
'aria-errormessage': any;
|
|
34
|
+
'aria-expanded': any;
|
|
35
|
+
'aria-flowto': any;
|
|
36
|
+
'aria-grabbed': any;
|
|
37
|
+
'aria-haspopup': any;
|
|
38
|
+
'aria-hidden': any;
|
|
39
|
+
'aria-invalid': any;
|
|
40
|
+
'aria-keyshortcuts': any;
|
|
41
|
+
'aria-label': any;
|
|
42
|
+
'aria-labelledby': any;
|
|
43
|
+
'aria-level': any;
|
|
44
|
+
'aria-live': any;
|
|
45
|
+
'aria-modal': any;
|
|
46
|
+
'aria-multiline': any;
|
|
47
|
+
'aria-multiselectable': any;
|
|
48
|
+
'aria-orientation': any;
|
|
49
|
+
'aria-owns': any;
|
|
50
|
+
'aria-placeholder': any;
|
|
51
|
+
'aria-posinset': any;
|
|
52
|
+
'aria-pressed': any;
|
|
53
|
+
'aria-readonly': any;
|
|
54
|
+
'aria-relevant': any;
|
|
55
|
+
'aria-required': any;
|
|
56
|
+
'aria-roledescription': any;
|
|
57
|
+
'aria-rowcount': any;
|
|
58
|
+
'aria-rowindex': any;
|
|
59
|
+
'aria-rowspan': any;
|
|
60
|
+
'aria-selected': any;
|
|
61
|
+
'aria-setsize': any;
|
|
62
|
+
'aria-sort': any;
|
|
63
|
+
'aria-valuemax': any;
|
|
64
|
+
'aria-valuemin': any;
|
|
65
|
+
'aria-valuenow': any;
|
|
66
|
+
'aria-valuetext': any;
|
|
67
|
+
as: any;
|
|
68
|
+
async: any;
|
|
69
|
+
autoCapitalize: any;
|
|
70
|
+
autoComplete: any;
|
|
71
|
+
autoCorrect: any;
|
|
72
|
+
autoFocus: any;
|
|
73
|
+
autoPlay: any;
|
|
74
|
+
autoSave: any;
|
|
75
|
+
capture: any;
|
|
76
|
+
cellPadding: any;
|
|
77
|
+
cellSpacing: any;
|
|
78
|
+
challenge: any;
|
|
79
|
+
charSet: any;
|
|
80
|
+
checked: any;
|
|
81
|
+
cite: any;
|
|
82
|
+
classID: any;
|
|
83
|
+
className: any;
|
|
84
|
+
color: any;
|
|
85
|
+
cols: any;
|
|
86
|
+
colSpan: any;
|
|
87
|
+
content: any;
|
|
88
|
+
contentEditable: any;
|
|
89
|
+
contextMenu: any;
|
|
90
|
+
controls: any;
|
|
91
|
+
coords: any;
|
|
92
|
+
crossOrigin: any;
|
|
93
|
+
data: any;
|
|
94
|
+
datatype: any;
|
|
95
|
+
dateTime: any;
|
|
96
|
+
default: any;
|
|
97
|
+
defaultChecked: any;
|
|
98
|
+
defaultValue: any;
|
|
99
|
+
defer: any;
|
|
100
|
+
dir: any;
|
|
101
|
+
disabled: any;
|
|
102
|
+
download: any;
|
|
103
|
+
draggable: any;
|
|
104
|
+
encType: any;
|
|
105
|
+
form: any;
|
|
106
|
+
formAction: any;
|
|
107
|
+
formEncType: any;
|
|
108
|
+
formMethod: any;
|
|
109
|
+
formNoValidate: any;
|
|
110
|
+
formTarget: any;
|
|
111
|
+
frameBorder: any;
|
|
112
|
+
headers: any;
|
|
113
|
+
height: any;
|
|
114
|
+
hidden: any;
|
|
115
|
+
high: any;
|
|
116
|
+
href: any;
|
|
117
|
+
hrefLang: any;
|
|
118
|
+
htmlFor: any;
|
|
119
|
+
httpEquiv: any;
|
|
120
|
+
id: any;
|
|
121
|
+
inlist: any;
|
|
122
|
+
inputMode: any;
|
|
123
|
+
integrity: any;
|
|
124
|
+
is: any;
|
|
125
|
+
itemID: any;
|
|
126
|
+
itemProp: any;
|
|
127
|
+
itemRef: any;
|
|
128
|
+
itemScope: any;
|
|
129
|
+
itemType: any;
|
|
130
|
+
keyParams: any;
|
|
131
|
+
keyType: any;
|
|
132
|
+
kind: any;
|
|
133
|
+
label: any;
|
|
134
|
+
lang: any;
|
|
135
|
+
list: any;
|
|
136
|
+
loop: any;
|
|
137
|
+
low: any;
|
|
138
|
+
manifest: any;
|
|
139
|
+
marginHeight: any;
|
|
140
|
+
marginWidth: any;
|
|
141
|
+
max: any;
|
|
142
|
+
maxLength: any;
|
|
143
|
+
media: any;
|
|
144
|
+
mediaGroup: any;
|
|
145
|
+
method: any;
|
|
146
|
+
min: any;
|
|
147
|
+
minLength: any;
|
|
148
|
+
multiple: any;
|
|
149
|
+
muted: any;
|
|
150
|
+
name: any;
|
|
151
|
+
nonce: any;
|
|
152
|
+
noValidate: any;
|
|
153
|
+
onAbort: any;
|
|
154
|
+
onAbortCapture: any;
|
|
155
|
+
onAnimationEnd: any;
|
|
156
|
+
onAnimationEndCapture: any;
|
|
157
|
+
onAnimationIteration: any;
|
|
158
|
+
onAnimationIterationCapture: any;
|
|
159
|
+
onAnimationStart: any;
|
|
160
|
+
onAnimationStartCapture: any;
|
|
161
|
+
onAuxClick: any;
|
|
162
|
+
onAuxClickCapture: any;
|
|
163
|
+
onBeforeInput: any;
|
|
164
|
+
onBeforeInputCapture: any;
|
|
165
|
+
onBlur: any;
|
|
166
|
+
onBlurCapture: any;
|
|
167
|
+
onCanPlay: any;
|
|
168
|
+
onCanPlayCapture: any;
|
|
169
|
+
onCanPlayThrough: any;
|
|
170
|
+
onCanPlayThroughCapture: any;
|
|
171
|
+
onChange: any;
|
|
172
|
+
onChangeCapture: any;
|
|
173
|
+
onClick: any;
|
|
174
|
+
onClickCapture: any;
|
|
175
|
+
onCompositionEnd: any;
|
|
176
|
+
onCompositionEndCapture: any;
|
|
177
|
+
onCompositionStart: any;
|
|
178
|
+
onCompositionStartCapture: any;
|
|
179
|
+
onCompositionUpdate: any;
|
|
180
|
+
onCompositionUpdateCapture: any;
|
|
181
|
+
onContextMenu: any;
|
|
182
|
+
onContextMenuCapture: any;
|
|
183
|
+
onCopy: any;
|
|
184
|
+
onCopyCapture: any;
|
|
185
|
+
onCut: any;
|
|
186
|
+
onCutCapture: any;
|
|
187
|
+
onDoubleClick: any;
|
|
188
|
+
onDoubleClickCapture: any;
|
|
189
|
+
onDrag: any;
|
|
190
|
+
onDragCapture: any;
|
|
191
|
+
onDragEnd: any;
|
|
192
|
+
onDragEndCapture: any;
|
|
193
|
+
onDragEnter: any;
|
|
194
|
+
onDragEnterCapture: any;
|
|
195
|
+
onDragExit: any;
|
|
196
|
+
onDragExitCapture: any;
|
|
197
|
+
onDragLeave: any;
|
|
198
|
+
onDragLeaveCapture: any;
|
|
199
|
+
onDragOver: any;
|
|
200
|
+
onDragOverCapture: any;
|
|
201
|
+
onDragStart: any;
|
|
202
|
+
onDragStartCapture: any;
|
|
203
|
+
onDrop: any;
|
|
204
|
+
onDropCapture: any;
|
|
205
|
+
onDurationChange: any;
|
|
206
|
+
onDurationChangeCapture: any;
|
|
207
|
+
onEmptied: any;
|
|
208
|
+
onEmptiedCapture: any;
|
|
209
|
+
onEncrypted: any;
|
|
210
|
+
onEncryptedCapture: any;
|
|
211
|
+
onEnded: any;
|
|
212
|
+
onEndedCapture: any;
|
|
213
|
+
onError: any;
|
|
214
|
+
onErrorCapture: any;
|
|
215
|
+
onFocus: any;
|
|
216
|
+
onFocusCapture: any;
|
|
217
|
+
onGotPointerCapture: any;
|
|
218
|
+
onGotPointerCaptureCapture: any;
|
|
219
|
+
onInput: any;
|
|
220
|
+
onInputCapture: any;
|
|
221
|
+
onInvalid: any;
|
|
222
|
+
onInvalidCapture: any;
|
|
223
|
+
onKeyDown: any;
|
|
224
|
+
onKeyDownCapture: any;
|
|
225
|
+
onKeyPress: any;
|
|
226
|
+
onKeyPressCapture: any;
|
|
227
|
+
onKeyUp: any;
|
|
228
|
+
onKeyUpCapture: any;
|
|
229
|
+
onLoad: any;
|
|
230
|
+
onLoadCapture: any;
|
|
231
|
+
onLoadedData: any;
|
|
232
|
+
onLoadedDataCapture: any;
|
|
233
|
+
onLoadedMetadata: any;
|
|
234
|
+
onLoadedMetadataCapture: any;
|
|
235
|
+
onLoadStart: any;
|
|
236
|
+
onLoadStartCapture: any;
|
|
237
|
+
onLostPointerCapture: any;
|
|
238
|
+
onLostPointerCaptureCapture: any;
|
|
239
|
+
onMouseDown: any;
|
|
240
|
+
onMouseDownCapture: any;
|
|
241
|
+
onMouseEnter: any;
|
|
242
|
+
onMouseLeave: any;
|
|
243
|
+
onMouseMove: any;
|
|
244
|
+
onMouseMoveCapture: any;
|
|
245
|
+
onMouseOut: any;
|
|
246
|
+
onMouseOutCapture: any;
|
|
247
|
+
onMouseOver: any;
|
|
248
|
+
onMouseOverCapture: any;
|
|
249
|
+
onMouseUp: any;
|
|
250
|
+
onMouseUpCapture: any;
|
|
251
|
+
onPaste: any;
|
|
252
|
+
onPasteCapture: any;
|
|
253
|
+
onPause: any;
|
|
254
|
+
onPauseCapture: any;
|
|
255
|
+
onPlay: any;
|
|
256
|
+
onPlayCapture: any;
|
|
257
|
+
onPlaying: any;
|
|
258
|
+
onPlayingCapture: any;
|
|
259
|
+
onPointerCancel: any;
|
|
260
|
+
onPointerCancelCapture: any;
|
|
261
|
+
onPointerDown: any;
|
|
262
|
+
onPointerDownCapture: any;
|
|
263
|
+
onPointerEnter: any;
|
|
264
|
+
onPointerEnterCapture: any;
|
|
265
|
+
onPointerLeave: any;
|
|
266
|
+
onPointerLeaveCapture: any;
|
|
267
|
+
onPointerMove: any;
|
|
268
|
+
onPointerMoveCapture: any;
|
|
269
|
+
onPointerOut: any;
|
|
270
|
+
onPointerOutCapture: any;
|
|
271
|
+
onPointerOver: any;
|
|
272
|
+
onPointerOverCapture: any;
|
|
273
|
+
onPointerUp: any;
|
|
274
|
+
onPointerUpCapture: any;
|
|
275
|
+
onProgress: any;
|
|
276
|
+
onProgressCapture: any;
|
|
277
|
+
onRateChange: any;
|
|
278
|
+
onRateChangeCapture: any;
|
|
279
|
+
onReset: any;
|
|
280
|
+
onResetCapture: any;
|
|
281
|
+
onScroll: any;
|
|
282
|
+
onScrollCapture: any;
|
|
283
|
+
onSeeked: any;
|
|
284
|
+
onSeekedCapture: any;
|
|
285
|
+
onSeeking: any;
|
|
286
|
+
onSeekingCapture: any;
|
|
287
|
+
onSelect: any;
|
|
288
|
+
onSelectCapture: any;
|
|
289
|
+
onStalled: any;
|
|
290
|
+
onStalledCapture: any;
|
|
291
|
+
onSubmit: any;
|
|
292
|
+
onSubmitCapture: any;
|
|
293
|
+
onSuspend: any;
|
|
294
|
+
onSuspendCapture: any;
|
|
295
|
+
onTimeUpdate: any;
|
|
296
|
+
onTimeUpdateCapture: any;
|
|
297
|
+
onTouchCancel: any;
|
|
298
|
+
onTouchCancelCapture: any;
|
|
299
|
+
onTouchEnd: any;
|
|
300
|
+
onTouchEndCapture: any;
|
|
301
|
+
onTouchMove: any;
|
|
302
|
+
onTouchMoveCapture: any;
|
|
303
|
+
onTouchStart: any;
|
|
304
|
+
onTouchStartCapture: any;
|
|
305
|
+
onTransitionEnd: any;
|
|
306
|
+
onTransitionEndCapture: any;
|
|
307
|
+
onVolumeChange: any;
|
|
308
|
+
onVolumeChangeCapture: any;
|
|
309
|
+
onWaiting: any;
|
|
310
|
+
onWaitingCapture: any;
|
|
311
|
+
onWheel: any;
|
|
312
|
+
onWheelCapture: any;
|
|
313
|
+
open: any;
|
|
314
|
+
optimum: any;
|
|
315
|
+
pattern: any;
|
|
316
|
+
placeholder: any;
|
|
317
|
+
playsInline: any;
|
|
318
|
+
poster: any;
|
|
319
|
+
prefix: any;
|
|
320
|
+
preload: any;
|
|
321
|
+
property: any;
|
|
322
|
+
radioGroup: any;
|
|
323
|
+
readOnly: any;
|
|
324
|
+
rel: any;
|
|
325
|
+
required: any;
|
|
326
|
+
resource: any;
|
|
327
|
+
results: any;
|
|
328
|
+
reversed: any;
|
|
329
|
+
role: any;
|
|
330
|
+
rows: any;
|
|
331
|
+
rowSpan: any;
|
|
332
|
+
sandbox: any;
|
|
333
|
+
scope: any;
|
|
334
|
+
scoped: any;
|
|
335
|
+
scrolling: any;
|
|
336
|
+
seamless: any;
|
|
337
|
+
security: any;
|
|
338
|
+
selected: any;
|
|
339
|
+
shape: any;
|
|
340
|
+
size: any;
|
|
341
|
+
sizes: any;
|
|
342
|
+
slot: any;
|
|
343
|
+
span: any;
|
|
344
|
+
spellCheck: any;
|
|
345
|
+
src: any;
|
|
346
|
+
srcDoc: any;
|
|
347
|
+
srcLang: any;
|
|
348
|
+
srcSet: any;
|
|
349
|
+
start: any;
|
|
350
|
+
step: any;
|
|
351
|
+
style: any;
|
|
352
|
+
summary: any;
|
|
353
|
+
suppressContentEditableWarning: any;
|
|
354
|
+
suppressHydrationWarning: any;
|
|
355
|
+
tabIndex: any;
|
|
356
|
+
target: any;
|
|
357
|
+
title: any;
|
|
358
|
+
translate: any;
|
|
359
|
+
type: any;
|
|
360
|
+
typeof: any;
|
|
361
|
+
unselectable: any;
|
|
362
|
+
useMap: any;
|
|
363
|
+
value: any;
|
|
364
|
+
vocab: any;
|
|
365
|
+
width: any;
|
|
366
|
+
wmode: any;
|
|
367
|
+
wrap: any;
|
|
7
368
|
steps: import("react-desc").PropTypesDescValue;
|
|
8
369
|
current: {
|
|
9
370
|
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
@@ -15,7 +376,7 @@ declare const DSStepper: {
|
|
|
15
376
|
};
|
|
16
377
|
};
|
|
17
378
|
declare const StepperWithSchema: {
|
|
18
|
-
(props?:
|
|
379
|
+
(props?: unknown): JSX.Element;
|
|
19
380
|
propTypes: unknown;
|
|
20
381
|
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
21
382
|
};
|