@zendeskgarden/react-accordions 9.2.0 → 9.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/elements/stepper/components/Content.js +2 -1
- package/dist/esm/styled/accordion/StyledAccordion.js +1 -1
- package/dist/esm/styled/accordion/StyledButton.js +1 -1
- package/dist/esm/styled/accordion/StyledHeader.js +1 -1
- package/dist/esm/styled/accordion/StyledInnerPanel.js +1 -1
- package/dist/esm/styled/accordion/StyledPanel.js +1 -1
- package/dist/esm/styled/accordion/StyledRotateIcon.js +1 -1
- package/dist/esm/styled/accordion/StyledSection.js +1 -1
- package/dist/esm/styled/stepper/StyledContent.js +1 -1
- package/dist/esm/styled/stepper/StyledIcon.js +1 -1
- package/dist/esm/styled/stepper/StyledInnerContent.js +1 -1
- package/dist/esm/styled/stepper/StyledLabel.js +1 -1
- package/dist/esm/styled/stepper/StyledLabelText.js +1 -1
- package/dist/esm/styled/stepper/StyledLine.js +1 -1
- package/dist/esm/styled/stepper/StyledStep.js +1 -1
- package/dist/esm/styled/stepper/StyledStepper.js +1 -1
- package/dist/esm/styled/timeline/StyledContent.js +1 -1
- package/dist/esm/styled/timeline/StyledItem.js +1 -1
- package/dist/esm/styled/timeline/StyledItemIcon.js +1 -1
- package/dist/esm/styled/timeline/StyledOppositeContent.js +1 -1
- package/dist/esm/styled/timeline/StyledSeparator.js +1 -1
- package/dist/esm/styled/timeline/StyledTimeline.js +1 -1
- package/dist/index.cjs.js +23 -22
- package/dist/typings/styled/accordion/StyledAccordion.d.ts +3 -4
- package/dist/typings/styled/accordion/StyledButton.d.ts +3 -2
- package/dist/typings/styled/accordion/StyledHeader.d.ts +3 -1
- package/dist/typings/styled/accordion/StyledInnerPanel.d.ts +3 -4
- package/dist/typings/styled/accordion/StyledPanel.d.ts +3 -2
- package/dist/typings/styled/accordion/StyledRotateIcon.d.ts +2 -5
- package/dist/typings/styled/accordion/StyledSection.d.ts +3 -4
- package/dist/typings/styled/stepper/StyledContent.d.ts +3 -2
- package/dist/typings/styled/stepper/StyledIcon.d.ts +4 -3
- package/dist/typings/styled/stepper/StyledInnerContent.d.ts +8 -2
- package/dist/typings/styled/stepper/StyledLabel.d.ts +3 -1
- package/dist/typings/styled/stepper/StyledLabelText.d.ts +3 -1
- package/dist/typings/styled/stepper/StyledLine.d.ts +3 -4
- package/dist/typings/styled/stepper/StyledStep.d.ts +3 -1
- package/dist/typings/styled/stepper/StyledStepper.d.ts +3 -1
- package/dist/typings/styled/timeline/StyledContent.d.ts +3 -4
- package/dist/typings/styled/timeline/StyledItem.d.ts +3 -4
- package/dist/typings/styled/timeline/StyledItemIcon.d.ts +2 -5
- package/dist/typings/styled/timeline/StyledOppositeContent.d.ts +3 -4
- package/dist/typings/styled/timeline/StyledSeparator.d.ts +3 -4
- package/dist/typings/styled/timeline/StyledTimeline.d.ts +3 -4
- package/package.json +4 -4
|
@@ -43,7 +43,8 @@ const ContentComponent = forwardRef((props, ref) => {
|
|
|
43
43
|
ref: ref,
|
|
44
44
|
$isActive: isActive
|
|
45
45
|
}, props), React__default.createElement(StyledInnerContent, {
|
|
46
|
-
"aria-hidden": !isActive
|
|
46
|
+
"aria-hidden": !isActive,
|
|
47
|
+
inert: isActive ? undefined : ''
|
|
47
48
|
}, props.children)) : null;
|
|
48
49
|
});
|
|
49
50
|
ContentComponent.displayName = 'Stepper.Content';
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles } from '@zendeskgarden/react-theming';
|
|
|
10
10
|
const COMPONENT_ID = 'accordions.accordion';
|
|
11
11
|
const StyledAccordion = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledAccordion",
|
|
16
16
|
componentId: "sc-niv9ic-0"
|
|
@@ -24,7 +24,7 @@ const colorStyles = _ref => {
|
|
|
24
24
|
};
|
|
25
25
|
const StyledButton = styled.button.attrs({
|
|
26
26
|
'data-garden-id': COMPONENT_ID,
|
|
27
|
-
'data-garden-version': '9.
|
|
27
|
+
'data-garden-version': '9.4.0'
|
|
28
28
|
}).withConfig({
|
|
29
29
|
displayName: "StyledButton",
|
|
30
30
|
componentId: "sc-xj3hy7-0"
|
|
@@ -11,7 +11,7 @@ import { StyledButton } from './StyledButton.js';
|
|
|
11
11
|
const COMPONENT_ID = 'accordions.header';
|
|
12
12
|
const StyledHeader = styled.div.attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.
|
|
14
|
+
'data-garden-version': '9.4.0'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledHeader",
|
|
17
17
|
componentId: "sc-2c6rbr-0"
|
|
@@ -11,7 +11,7 @@ import { StyledPanel } from './StyledPanel.js';
|
|
|
11
11
|
const COMPONENT_ID = 'accordions.step_inner_panel';
|
|
12
12
|
const StyledInnerPanel = styled.div.attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.
|
|
14
|
+
'data-garden-version': '9.4.0'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledInnerPanel",
|
|
17
17
|
componentId: "sc-8nbueg-0"
|
|
@@ -43,7 +43,7 @@ const sizeStyles = props => {
|
|
|
43
43
|
};
|
|
44
44
|
const StyledPanel = styled.section.attrs({
|
|
45
45
|
'data-garden-id': COMPONENT_ID,
|
|
46
|
-
'data-garden-version': '9.
|
|
46
|
+
'data-garden-version': '9.4.0'
|
|
47
47
|
}).withConfig({
|
|
48
48
|
displayName: "StyledPanel",
|
|
49
49
|
componentId: "sc-1piryze-0"
|
|
@@ -24,7 +24,7 @@ const colorStyles = _ref => {
|
|
|
24
24
|
};
|
|
25
25
|
const StyledRotateIcon = styled(StyledBaseIcon).attrs({
|
|
26
26
|
'data-garden-id': COMPONENT_ID,
|
|
27
|
-
'data-garden-version': '9.
|
|
27
|
+
'data-garden-version': '9.4.0'
|
|
28
28
|
}).withConfig({
|
|
29
29
|
displayName: "StyledRotateIcon",
|
|
30
30
|
componentId: "sc-hp435q-0"
|
|
@@ -11,7 +11,7 @@ import { StyledPanel } from './StyledPanel.js';
|
|
|
11
11
|
const COMPONENT_ID = 'accordions.section';
|
|
12
12
|
const StyledSection = styled.div.attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.
|
|
14
|
+
'data-garden-version': '9.4.0'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledSection",
|
|
17
17
|
componentId: "sc-v2t9bd-0"
|
|
@@ -23,7 +23,7 @@ const sizeStyles = props => {
|
|
|
23
23
|
};
|
|
24
24
|
const StyledContent = styled.div.attrs({
|
|
25
25
|
'data-garden-id': COMPONENT_ID,
|
|
26
|
-
'data-garden-version': '9.
|
|
26
|
+
'data-garden-version': '9.4.0'
|
|
27
27
|
}).withConfig({
|
|
28
28
|
displayName: "StyledContent",
|
|
29
29
|
componentId: "sc-mazvvo-0"
|
|
@@ -10,7 +10,7 @@ import { getLineHeight, getColor, retrieveComponentStyles } from '@zendeskgarden
|
|
|
10
10
|
const COMPONENT_ID = 'accordions.step_inner_content';
|
|
11
11
|
const StyledInnerContent = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledInnerContent",
|
|
16
16
|
componentId: "sc-1xs9fh7-0"
|
|
@@ -10,7 +10,7 @@ import { getLineHeight, getColor, retrieveComponentStyles } from '@zendeskgarden
|
|
|
10
10
|
const COMPONENT_ID = 'accordions.step_label';
|
|
11
11
|
const StyledLabel = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledLabel",
|
|
16
16
|
componentId: "sc-1o82llj-0"
|
|
@@ -9,7 +9,7 @@ import styled from 'styled-components';
|
|
|
9
9
|
const COMPONENT_ID = 'accordions.step_label_text';
|
|
10
10
|
const StyledLabelText = styled.div.attrs({
|
|
11
11
|
'data-garden-id': COMPONENT_ID,
|
|
12
|
-
'data-garden-version': '9.
|
|
12
|
+
'data-garden-version': '9.4.0'
|
|
13
13
|
}).withConfig({
|
|
14
14
|
displayName: "StyledLabelText",
|
|
15
15
|
componentId: "sc-111m5zo-0"
|
|
@@ -10,7 +10,7 @@ import { getColor } from '@zendeskgarden/react-theming';
|
|
|
10
10
|
const COMPONENT_ID = 'accordions.step_line';
|
|
11
11
|
const StyledLine = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledLine",
|
|
16
16
|
componentId: "sc-1gkpjbr-0"
|
|
@@ -12,7 +12,7 @@ import { StyledLine } from './StyledLine.js';
|
|
|
12
12
|
const COMPONENT_ID = 'accordions.step';
|
|
13
13
|
const StyledStep = styled.li.attrs({
|
|
14
14
|
'data-garden-id': COMPONENT_ID,
|
|
15
|
-
'data-garden-version': '9.
|
|
15
|
+
'data-garden-version': '9.4.0'
|
|
16
16
|
}).withConfig({
|
|
17
17
|
displayName: "StyledStep",
|
|
18
18
|
componentId: "sc-12fiwtz-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles } from '@zendeskgarden/react-theming';
|
|
|
10
10
|
const COMPONENT_ID = 'accordions.stepper';
|
|
11
11
|
const StyledStepper = styled.ol.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledStepper",
|
|
16
16
|
componentId: "sc-dsxw0f-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles } from '@zendeskgarden/react-theming';
|
|
|
10
10
|
const COMPONENT_ID = 'timeline.content';
|
|
11
11
|
const StyledTimelineContent = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledContent__StyledTimelineContent",
|
|
16
16
|
componentId: "sc-19phgu1-0"
|
|
@@ -13,7 +13,7 @@ import { StyledOppositeContent } from './StyledOppositeContent.js';
|
|
|
13
13
|
const COMPONENT_ID = 'timeline.item';
|
|
14
14
|
const StyledTimelineItem = styled.li.attrs({
|
|
15
15
|
'data-garden-id': COMPONENT_ID,
|
|
16
|
-
'data-garden-version': '9.
|
|
16
|
+
'data-garden-version': '9.4.0'
|
|
17
17
|
}).withConfig({
|
|
18
18
|
displayName: "StyledItem__StyledTimelineItem",
|
|
19
19
|
componentId: "sc-5mcnzm-0"
|
|
@@ -34,7 +34,7 @@ const colorStyles = _ref => {
|
|
|
34
34
|
};
|
|
35
35
|
const StyledItemIcon = styled(StyledBaseIcon).attrs({
|
|
36
36
|
'data-garden-id': COMPONENT_ID,
|
|
37
|
-
'data-garden-version': '9.
|
|
37
|
+
'data-garden-version': '9.4.0'
|
|
38
38
|
}).withConfig({
|
|
39
39
|
displayName: "StyledItemIcon",
|
|
40
40
|
componentId: "sc-vz2l6e-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles } from '@zendeskgarden/react-theming';
|
|
|
10
10
|
const COMPONENT_ID = 'timeline.opposite.content';
|
|
11
11
|
const StyledOppositeContent = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledOppositeContent",
|
|
16
16
|
componentId: "sc-jurh2k-0"
|
|
@@ -10,7 +10,7 @@ import { getColor, retrieveComponentStyles } from '@zendeskgarden/react-theming'
|
|
|
10
10
|
const COMPONENT_ID = 'timeline.content.separator';
|
|
11
11
|
const StyledSeparator = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledSeparator",
|
|
16
16
|
componentId: "sc-fki51e-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles } from '@zendeskgarden/react-theming';
|
|
|
10
10
|
const COMPONENT_ID = 'timeline';
|
|
11
11
|
const StyledTimeline = styled.ol.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.
|
|
13
|
+
'data-garden-version': '9.4.0'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledTimeline",
|
|
16
16
|
componentId: "sc-pig5kv-0"
|
package/dist/index.cjs.js
CHANGED
|
@@ -54,7 +54,7 @@ const sizeStyles$2 = props => {
|
|
|
54
54
|
};
|
|
55
55
|
const StyledContent = styled__default.default.div.attrs({
|
|
56
56
|
'data-garden-id': COMPONENT_ID$k,
|
|
57
|
-
'data-garden-version': '9.
|
|
57
|
+
'data-garden-version': '9.4.0'
|
|
58
58
|
}).withConfig({
|
|
59
59
|
displayName: "StyledContent",
|
|
60
60
|
componentId: "sc-mazvvo-0"
|
|
@@ -63,7 +63,7 @@ const StyledContent = styled__default.default.div.attrs({
|
|
|
63
63
|
const COMPONENT_ID$j = 'accordions.step_line';
|
|
64
64
|
const StyledLine = styled__default.default.div.attrs({
|
|
65
65
|
'data-garden-id': COMPONENT_ID$j,
|
|
66
|
-
'data-garden-version': '9.
|
|
66
|
+
'data-garden-version': '9.4.0'
|
|
67
67
|
}).withConfig({
|
|
68
68
|
displayName: "StyledLine",
|
|
69
69
|
componentId: "sc-1gkpjbr-0"
|
|
@@ -80,7 +80,7 @@ const StyledLine = styled__default.default.div.attrs({
|
|
|
80
80
|
const COMPONENT_ID$i = 'accordions.step';
|
|
81
81
|
const StyledStep = styled__default.default.li.attrs({
|
|
82
82
|
'data-garden-id': COMPONENT_ID$i,
|
|
83
|
-
'data-garden-version': '9.
|
|
83
|
+
'data-garden-version': '9.4.0'
|
|
84
84
|
}).withConfig({
|
|
85
85
|
displayName: "StyledStep",
|
|
86
86
|
componentId: "sc-12fiwtz-0"
|
|
@@ -97,7 +97,7 @@ const StyledStep = styled__default.default.li.attrs({
|
|
|
97
97
|
const COMPONENT_ID$h = 'accordions.step_inner_content';
|
|
98
98
|
const StyledInnerContent = styled__default.default.div.attrs({
|
|
99
99
|
'data-garden-id': COMPONENT_ID$h,
|
|
100
|
-
'data-garden-version': '9.
|
|
100
|
+
'data-garden-version': '9.4.0'
|
|
101
101
|
}).withConfig({
|
|
102
102
|
displayName: "StyledInnerContent",
|
|
103
103
|
componentId: "sc-1xs9fh7-0"
|
|
@@ -114,7 +114,7 @@ const StyledInnerContent = styled__default.default.div.attrs({
|
|
|
114
114
|
const COMPONENT_ID$g = 'accordions.stepper';
|
|
115
115
|
const StyledStepper = styled__default.default.ol.attrs({
|
|
116
116
|
'data-garden-id': COMPONENT_ID$g,
|
|
117
|
-
'data-garden-version': '9.
|
|
117
|
+
'data-garden-version': '9.4.0'
|
|
118
118
|
}).withConfig({
|
|
119
119
|
displayName: "StyledStepper",
|
|
120
120
|
componentId: "sc-dsxw0f-0"
|
|
@@ -159,7 +159,7 @@ const colorStyles$4 = _ref => {
|
|
|
159
159
|
};
|
|
160
160
|
const StyledIcon = styled__default.default.div.attrs({
|
|
161
161
|
'data-garden-id': COMPONENT_ID$f,
|
|
162
|
-
'data-garden-version': '9.
|
|
162
|
+
'data-garden-version': '9.4.0'
|
|
163
163
|
}).withConfig({
|
|
164
164
|
displayName: "StyledIcon",
|
|
165
165
|
componentId: "sc-v20nz9-1"
|
|
@@ -168,7 +168,7 @@ const StyledIcon = styled__default.default.div.attrs({
|
|
|
168
168
|
const COMPONENT_ID$e = 'accordions.step_label';
|
|
169
169
|
const StyledLabel = styled__default.default.div.attrs({
|
|
170
170
|
'data-garden-id': COMPONENT_ID$e,
|
|
171
|
-
'data-garden-version': '9.
|
|
171
|
+
'data-garden-version': '9.4.0'
|
|
172
172
|
}).withConfig({
|
|
173
173
|
displayName: "StyledLabel",
|
|
174
174
|
componentId: "sc-1o82llj-0"
|
|
@@ -186,7 +186,7 @@ const StyledLabel = styled__default.default.div.attrs({
|
|
|
186
186
|
const COMPONENT_ID$d = 'accordions.step_label_text';
|
|
187
187
|
const StyledLabelText = styled__default.default.div.attrs({
|
|
188
188
|
'data-garden-id': COMPONENT_ID$d,
|
|
189
|
-
'data-garden-version': '9.
|
|
189
|
+
'data-garden-version': '9.4.0'
|
|
190
190
|
}).withConfig({
|
|
191
191
|
displayName: "StyledLabelText",
|
|
192
192
|
componentId: "sc-111m5zo-0"
|
|
@@ -195,7 +195,7 @@ const StyledLabelText = styled__default.default.div.attrs({
|
|
|
195
195
|
const COMPONENT_ID$c = 'accordions.accordion';
|
|
196
196
|
const StyledAccordion = styled__default.default.div.attrs({
|
|
197
197
|
'data-garden-id': COMPONENT_ID$c,
|
|
198
|
-
'data-garden-version': '9.
|
|
198
|
+
'data-garden-version': '9.4.0'
|
|
199
199
|
}).withConfig({
|
|
200
200
|
displayName: "StyledAccordion",
|
|
201
201
|
componentId: "sc-niv9ic-0"
|
|
@@ -237,7 +237,7 @@ const sizeStyles = props => {
|
|
|
237
237
|
};
|
|
238
238
|
const StyledPanel = styled__default.default.section.attrs({
|
|
239
239
|
'data-garden-id': COMPONENT_ID$b,
|
|
240
|
-
'data-garden-version': '9.
|
|
240
|
+
'data-garden-version': '9.4.0'
|
|
241
241
|
}).withConfig({
|
|
242
242
|
displayName: "StyledPanel",
|
|
243
243
|
componentId: "sc-1piryze-0"
|
|
@@ -250,7 +250,7 @@ StyledPanel.defaultProps = {
|
|
|
250
250
|
const COMPONENT_ID$a = 'accordions.section';
|
|
251
251
|
const StyledSection = styled__default.default.div.attrs({
|
|
252
252
|
'data-garden-id': COMPONENT_ID$a,
|
|
253
|
-
'data-garden-version': '9.
|
|
253
|
+
'data-garden-version': '9.4.0'
|
|
254
254
|
}).withConfig({
|
|
255
255
|
displayName: "StyledSection",
|
|
256
256
|
componentId: "sc-v2t9bd-0"
|
|
@@ -273,7 +273,7 @@ const colorStyles$2 = _ref => {
|
|
|
273
273
|
};
|
|
274
274
|
const StyledButton = styled__default.default.button.attrs({
|
|
275
275
|
'data-garden-id': COMPONENT_ID$9,
|
|
276
|
-
'data-garden-version': '9.
|
|
276
|
+
'data-garden-version': '9.4.0'
|
|
277
277
|
}).withConfig({
|
|
278
278
|
displayName: "StyledButton",
|
|
279
279
|
componentId: "sc-xj3hy7-0"
|
|
@@ -282,7 +282,7 @@ const StyledButton = styled__default.default.button.attrs({
|
|
|
282
282
|
const COMPONENT_ID$8 = 'accordions.header';
|
|
283
283
|
const StyledHeader = styled__default.default.div.attrs({
|
|
284
284
|
'data-garden-id': COMPONENT_ID$8,
|
|
285
|
-
'data-garden-version': '9.
|
|
285
|
+
'data-garden-version': '9.4.0'
|
|
286
286
|
}).withConfig({
|
|
287
287
|
displayName: "StyledHeader",
|
|
288
288
|
componentId: "sc-2c6rbr-0"
|
|
@@ -295,7 +295,7 @@ const StyledHeader = styled__default.default.div.attrs({
|
|
|
295
295
|
const COMPONENT_ID$7 = 'accordions.step_inner_panel';
|
|
296
296
|
const StyledInnerPanel = styled__default.default.div.attrs({
|
|
297
297
|
'data-garden-id': COMPONENT_ID$7,
|
|
298
|
-
'data-garden-version': '9.
|
|
298
|
+
'data-garden-version': '9.4.0'
|
|
299
299
|
}).withConfig({
|
|
300
300
|
displayName: "StyledInnerPanel",
|
|
301
301
|
componentId: "sc-8nbueg-0"
|
|
@@ -318,7 +318,7 @@ const colorStyles$1 = _ref => {
|
|
|
318
318
|
};
|
|
319
319
|
const StyledRotateIcon = styled__default.default(reactTheming.StyledBaseIcon).attrs({
|
|
320
320
|
'data-garden-id': COMPONENT_ID$6,
|
|
321
|
-
'data-garden-version': '9.
|
|
321
|
+
'data-garden-version': '9.4.0'
|
|
322
322
|
}).withConfig({
|
|
323
323
|
displayName: "StyledRotateIcon",
|
|
324
324
|
componentId: "sc-hp435q-0"
|
|
@@ -327,7 +327,7 @@ const StyledRotateIcon = styled__default.default(reactTheming.StyledBaseIcon).at
|
|
|
327
327
|
const COMPONENT_ID$5 = 'timeline';
|
|
328
328
|
const StyledTimeline = styled__default.default.ol.attrs({
|
|
329
329
|
'data-garden-id': COMPONENT_ID$5,
|
|
330
|
-
'data-garden-version': '9.
|
|
330
|
+
'data-garden-version': '9.4.0'
|
|
331
331
|
}).withConfig({
|
|
332
332
|
displayName: "StyledTimeline",
|
|
333
333
|
componentId: "sc-pig5kv-0"
|
|
@@ -336,7 +336,7 @@ const StyledTimeline = styled__default.default.ol.attrs({
|
|
|
336
336
|
const COMPONENT_ID$4 = 'timeline.content.separator';
|
|
337
337
|
const StyledSeparator = styled__default.default.div.attrs({
|
|
338
338
|
'data-garden-id': COMPONENT_ID$4,
|
|
339
|
-
'data-garden-version': '9.
|
|
339
|
+
'data-garden-version': '9.4.0'
|
|
340
340
|
}).withConfig({
|
|
341
341
|
displayName: "StyledSeparator",
|
|
342
342
|
componentId: "sc-fki51e-0"
|
|
@@ -353,7 +353,7 @@ const StyledSeparator = styled__default.default.div.attrs({
|
|
|
353
353
|
const COMPONENT_ID$3 = 'timeline.content';
|
|
354
354
|
const StyledTimelineContent = styled__default.default.div.attrs({
|
|
355
355
|
'data-garden-id': COMPONENT_ID$3,
|
|
356
|
-
'data-garden-version': '9.
|
|
356
|
+
'data-garden-version': '9.4.0'
|
|
357
357
|
}).withConfig({
|
|
358
358
|
displayName: "StyledContent__StyledTimelineContent",
|
|
359
359
|
componentId: "sc-19phgu1-0"
|
|
@@ -362,7 +362,7 @@ const StyledTimelineContent = styled__default.default.div.attrs({
|
|
|
362
362
|
const COMPONENT_ID$2 = 'timeline.opposite.content';
|
|
363
363
|
const StyledOppositeContent = styled__default.default.div.attrs({
|
|
364
364
|
'data-garden-id': COMPONENT_ID$2,
|
|
365
|
-
'data-garden-version': '9.
|
|
365
|
+
'data-garden-version': '9.4.0'
|
|
366
366
|
}).withConfig({
|
|
367
367
|
displayName: "StyledOppositeContent",
|
|
368
368
|
componentId: "sc-jurh2k-0"
|
|
@@ -371,7 +371,7 @@ const StyledOppositeContent = styled__default.default.div.attrs({
|
|
|
371
371
|
const COMPONENT_ID$1 = 'timeline.item';
|
|
372
372
|
const StyledTimelineItem = styled__default.default.li.attrs({
|
|
373
373
|
'data-garden-id': COMPONENT_ID$1,
|
|
374
|
-
'data-garden-version': '9.
|
|
374
|
+
'data-garden-version': '9.4.0'
|
|
375
375
|
}).withConfig({
|
|
376
376
|
displayName: "StyledItem__StyledTimelineItem",
|
|
377
377
|
componentId: "sc-5mcnzm-0"
|
|
@@ -411,7 +411,7 @@ const colorStyles = _ref => {
|
|
|
411
411
|
};
|
|
412
412
|
const StyledItemIcon = styled__default.default(reactTheming.StyledBaseIcon).attrs({
|
|
413
413
|
'data-garden-id': COMPONENT_ID,
|
|
414
|
-
'data-garden-version': '9.
|
|
414
|
+
'data-garden-version': '9.4.0'
|
|
415
415
|
}).withConfig({
|
|
416
416
|
displayName: "StyledItemIcon",
|
|
417
417
|
componentId: "sc-vz2l6e-0"
|
|
@@ -767,7 +767,8 @@ const ContentComponent$1 = React.forwardRef((props, ref) => {
|
|
|
767
767
|
ref: ref,
|
|
768
768
|
$isActive: isActive
|
|
769
769
|
}, props), React__namespace.default.createElement(StyledInnerContent, {
|
|
770
|
-
"aria-hidden": !isActive
|
|
770
|
+
"aria-hidden": !isActive,
|
|
771
|
+
inert: isActive ? undefined : ''
|
|
771
772
|
}, props.children)) : null;
|
|
772
773
|
});
|
|
773
774
|
ContentComponent$1.displayName = 'Stepper.Content';
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
export declare const StyledAccordion: import("styled-components").
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}, "data-garden-id" | "data-garden-version">;
|
|
7
|
+
export declare const StyledAccordion: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}>, never>, never>> & string;
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
export declare const COMPONENT_ID = "accordions.button";
|
|
9
8
|
interface IStyledButton {
|
|
10
9
|
$isCompact?: boolean;
|
|
@@ -16,5 +15,7 @@ interface IStyledButton {
|
|
|
16
15
|
* 1. <button> override.
|
|
17
16
|
* 2. Remove dotted outline from Firefox on focus.
|
|
18
17
|
*/
|
|
19
|
-
export declare const StyledButton: import("styled-components").
|
|
18
|
+
export declare const StyledButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
19
|
+
ref?: ((instance: HTMLButtonElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
20
|
+
}>, IStyledButton>, IStyledButton>> & string;
|
|
20
21
|
export {};
|
|
@@ -8,5 +8,7 @@ interface IStyledHeader {
|
|
|
8
8
|
$isExpanded?: boolean;
|
|
9
9
|
$isCollapsible?: boolean;
|
|
10
10
|
}
|
|
11
|
-
export declare const StyledHeader: import("styled-components").
|
|
11
|
+
export declare const StyledHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
12
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
13
|
+
}>, IStyledHeader>, IStyledHeader>> & string;
|
|
12
14
|
export {};
|
|
@@ -7,8 +7,7 @@
|
|
|
7
7
|
interface IStyledInnerPanel {
|
|
8
8
|
$isAnimated?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export declare const StyledInnerPanel: import("styled-components").
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
} & IStyledInnerPanel, "data-garden-id" | "data-garden-version">;
|
|
10
|
+
export declare const StyledInnerPanel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
11
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
12
|
+
}>, never>, IStyledInnerPanel>> & string;
|
|
14
13
|
export {};
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
interface IStyledPanel {
|
|
9
8
|
inert?: string;
|
|
10
9
|
$isBare?: boolean;
|
|
@@ -12,5 +11,7 @@ interface IStyledPanel {
|
|
|
12
11
|
$isExpanded?: boolean;
|
|
13
12
|
$isAnimated?: boolean;
|
|
14
13
|
}
|
|
15
|
-
export declare const StyledPanel: import("styled-components").
|
|
14
|
+
export declare const StyledPanel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
15
|
+
ref?: ((instance: HTMLElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLElement> | null | undefined;
|
|
16
|
+
}>, IStyledPanel>, IStyledPanel>> & string;
|
|
16
17
|
export {};
|
|
@@ -4,15 +4,12 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import {
|
|
7
|
+
import { DataAttributes } from 'styled-components';
|
|
8
8
|
interface IStyledRotateIcon {
|
|
9
9
|
$isCompact?: boolean;
|
|
10
10
|
$isRotated?: boolean;
|
|
11
11
|
$isHovered?: boolean;
|
|
12
12
|
$isCollapsible?: boolean;
|
|
13
13
|
}
|
|
14
|
-
export declare const StyledRotateIcon: import("styled-components").
|
|
15
|
-
'data-garden-id': string;
|
|
16
|
-
'data-garden-version': string;
|
|
17
|
-
} & IStyledRotateIcon, "data-garden-id" | "data-garden-version">;
|
|
14
|
+
export declare const StyledRotateIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("@zendeskgarden/react-theming").IStyledBaseIconProps, never>, import("styled-components").FastOmit<import("@zendeskgarden/react-theming").IStyledBaseIconProps, never>>, DataAttributes>, IStyledRotateIcon>> & string;
|
|
18
15
|
export {};
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
export declare const StyledSection: import("styled-components").
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}, "data-garden-id" | "data-garden-version">;
|
|
7
|
+
export declare const StyledSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}>, never>, never>> & string;
|
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
interface IStyledContent {
|
|
9
8
|
$isActive?: boolean;
|
|
10
9
|
}
|
|
11
|
-
export declare const StyledContent: import("styled-components").
|
|
10
|
+
export declare const StyledContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
11
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
12
|
+
}>, IStyledContent>, IStyledContent>> & string;
|
|
12
13
|
export {};
|
|
@@ -4,11 +4,12 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
7
|
interface IStyledIcon {
|
|
9
8
|
$isActive?: boolean;
|
|
10
9
|
$isHorizontal?: boolean;
|
|
11
10
|
}
|
|
12
|
-
export declare const StyledIconFlexContainer: import("styled-components").
|
|
13
|
-
export declare const StyledIcon: import("styled-components").
|
|
11
|
+
export declare const StyledIconFlexContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
12
|
+
export declare const StyledIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
13
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
14
|
+
}>, IStyledIcon>, IStyledIcon>> & string;
|
|
14
15
|
export {};
|
|
@@ -4,5 +4,11 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import { DefaultTheme } from 'styled-components';
|
|
8
|
-
|
|
7
|
+
import { ThemeProps, DefaultTheme } from 'styled-components';
|
|
8
|
+
interface IStyledInnerContentProps extends ThemeProps<DefaultTheme> {
|
|
9
|
+
inert?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const StyledInnerContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
12
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
13
|
+
}>, never>, IStyledInnerContentProps>> & string;
|
|
14
|
+
export {};
|
|
@@ -8,5 +8,7 @@ interface IStyledLabelProps {
|
|
|
8
8
|
$isActive?: boolean;
|
|
9
9
|
$isHorizontal?: boolean;
|
|
10
10
|
}
|
|
11
|
-
export declare const StyledLabel: import("styled-components").
|
|
11
|
+
export declare const StyledLabel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
12
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
13
|
+
}>, IStyledLabelProps>, IStyledLabelProps>> & string;
|
|
12
14
|
export {};
|
|
@@ -8,5 +8,7 @@ interface IStyledLabelTextProps {
|
|
|
8
8
|
$isHidden?: boolean;
|
|
9
9
|
$isHorizontal?: boolean;
|
|
10
10
|
}
|
|
11
|
-
export declare const StyledLabelText: import("styled-components").
|
|
11
|
+
export declare const StyledLabelText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
12
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
13
|
+
}>, IStyledLabelTextProps>, IStyledLabelTextProps>> & string;
|
|
12
14
|
export {};
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
export declare const StyledLine: import("styled-components").
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}, "data-garden-id" | "data-garden-version">;
|
|
7
|
+
export declare const StyledLine: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}>, never>, never>> & string;
|
|
@@ -7,5 +7,7 @@
|
|
|
7
7
|
interface IStyledStep {
|
|
8
8
|
$isHorizontal?: boolean;
|
|
9
9
|
}
|
|
10
|
-
export declare const StyledStep: import("styled-components").
|
|
10
|
+
export declare const StyledStep: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
|
|
11
|
+
ref?: ((instance: HTMLLIElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
12
|
+
}>, IStyledStep>, IStyledStep>> & string;
|
|
11
13
|
export {};
|
|
@@ -10,5 +10,7 @@ interface IStyledStepper {
|
|
|
10
10
|
/**
|
|
11
11
|
* 1. <ol> reset.
|
|
12
12
|
*/
|
|
13
|
-
export declare const StyledStepper: import("styled-components").
|
|
13
|
+
export declare const StyledStepper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & {
|
|
14
|
+
ref?: ((instance: HTMLOListElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLOListElement> | null | undefined;
|
|
15
|
+
}>, IStyledStepper>, IStyledStepper>> & string;
|
|
14
16
|
export {};
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
export declare const StyledTimelineContent: import("styled-components").
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}, "data-garden-id" | "data-garden-version">;
|
|
7
|
+
export declare const StyledTimelineContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}>, never>, never>> & string;
|
|
@@ -8,8 +8,7 @@ interface IStyledTimelineItem {
|
|
|
8
8
|
$isAlternate?: boolean;
|
|
9
9
|
$hasOppositeContent?: boolean;
|
|
10
10
|
}
|
|
11
|
-
export declare const StyledTimelineItem: import("styled-components").
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
} & IStyledTimelineItem, "data-garden-id" | "data-garden-version">;
|
|
11
|
+
export declare const StyledTimelineItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
|
|
12
|
+
ref?: ((instance: HTMLLIElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLLIElement> | null | undefined;
|
|
13
|
+
}>, never>, IStyledTimelineItem>> & string;
|
|
15
14
|
export {};
|
|
@@ -4,15 +4,12 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
import {
|
|
7
|
+
import { DataAttributes } from 'styled-components';
|
|
8
8
|
interface IStyledItemIcon {
|
|
9
9
|
$surfaceColor?: string;
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
12
12
|
* 1. Odd sizing allows the timeline line to center respective of the circle icon.
|
|
13
13
|
*/
|
|
14
|
-
export declare const StyledItemIcon: import("styled-components").
|
|
15
|
-
'data-garden-id': string;
|
|
16
|
-
'data-garden-version': string;
|
|
17
|
-
} & IStyledItemIcon, "data-garden-id" | "data-garden-version">;
|
|
14
|
+
export declare const StyledItemIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components/dist/types").Substitute<import("styled-components").FastOmit<import("@zendeskgarden/react-theming").IStyledBaseIconProps, never>, import("styled-components").FastOmit<import("@zendeskgarden/react-theming").IStyledBaseIconProps, never>>, DataAttributes>, IStyledItemIcon>> & string;
|
|
18
15
|
export {};
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
export declare const StyledOppositeContent: import("styled-components").
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}, "data-garden-id" | "data-garden-version">;
|
|
7
|
+
export declare const StyledOppositeContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}>, never>, never>> & string;
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
* Use of this source code is governed under the Apache License, Version 2.0
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
|
-
export declare const StyledSeparator: import("styled-components").
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}, "data-garden-id" | "data-garden-version">;
|
|
7
|
+
export declare const StyledSeparator: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
|
+
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
+
}>, never>, never>> & string;
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
/**
|
|
8
8
|
* 1. <ol> reset.
|
|
9
9
|
*/
|
|
10
|
-
export declare const StyledTimeline: import("styled-components").
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}, "data-garden-id" | "data-garden-version">;
|
|
10
|
+
export declare const StyledTimeline: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & {
|
|
11
|
+
ref?: ((instance: HTMLOListElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLOListElement> | null | undefined;
|
|
12
|
+
}>, never>, never>> & string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zendeskgarden/react-accordions",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.4.0",
|
|
4
4
|
"description": "Components related to accordions in the Garden Design System",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Zendesk Garden <garden@zendesk.com>",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"@zendeskgarden/react-theming": ">=9.0.0",
|
|
31
31
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
32
32
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
33
|
-
"styled-components": "^5.3.1"
|
|
33
|
+
"styled-components": "^5.3.1 || ^6.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@zendeskgarden/react-theming": "^9.
|
|
36
|
+
"@zendeskgarden/react-theming": "^9.4.0",
|
|
37
37
|
"@zendeskgarden/svg-icons": "7.3.0"
|
|
38
38
|
},
|
|
39
39
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"zendeskgarden:src": "src/index.ts",
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "02e3f240b6f0c776fdae785254d6fe90cbfc37e4"
|
|
51
51
|
}
|