@zendeskgarden/react-colorpickers 9.0.0-next.11 → 9.0.0-next.12
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/styled/ColorPicker/StyledAlphaRange.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledColorPicker.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledColorWell.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledColorWellThumb.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledHexField.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledHueRange.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledInput.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledInputGroup.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledLabel.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledPreview.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledRGBAField.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledSliderGroup.js +1 -1
- package/dist/esm/styled/ColorPicker/StyledSliders.js +1 -1
- package/dist/esm/styled/ColorPickerDialog/StyledButton.js +3 -5
- package/dist/esm/styled/ColorPickerDialog/StyledButtonPreview.js +1 -1
- package/dist/esm/styled/ColorPickerDialog/StyledTooltipBody.js +1 -1
- package/dist/esm/styled/ColorPickerDialog/StyledTooltipModal.js +1 -1
- package/dist/esm/styled/ColorSwatch/StyledCell.js +1 -1
- package/dist/esm/styled/ColorSwatch/StyledColorSwatch.js +1 -1
- package/dist/esm/styled/ColorSwatch/StyledColorSwatchInput.js +1 -1
- package/dist/esm/styled/ColorSwatch/StyledColorSwatchLabel.js +1 -1
- package/dist/esm/styled/ColorSwatch/StyledIcon.js +1 -1
- package/dist/esm/styled/common/StyledRange.js +1 -1
- package/dist/index.cjs.js +64 -66
- package/dist/typings/styled/ColorPickerDialog/StyledButton.d.ts +0 -1
- package/package.json +7 -7
|
@@ -30,7 +30,7 @@ const StyledAlphaRange = styled(StyledRange).attrs(props => ({
|
|
|
30
30
|
background: background(props)
|
|
31
31
|
},
|
|
32
32
|
'data-garden-id': COMPONENT_ID,
|
|
33
|
-
'data-garden-version': '9.0.0-next.
|
|
33
|
+
'data-garden-version': '9.0.0-next.12'
|
|
34
34
|
})).withConfig({
|
|
35
35
|
displayName: "StyledAlphaRange",
|
|
36
36
|
componentId: "sc-1f6hp2j-0"
|
|
@@ -13,7 +13,7 @@ const getColorPickerWidth = props => {
|
|
|
13
13
|
};
|
|
14
14
|
const StyledColorPicker = styled.div.attrs({
|
|
15
15
|
'data-garden-id': COMPONENT_ID,
|
|
16
|
-
'data-garden-version': '9.0.0-next.
|
|
16
|
+
'data-garden-version': '9.0.0-next.12'
|
|
17
17
|
}).withConfig({
|
|
18
18
|
displayName: "StyledColorPicker",
|
|
19
19
|
componentId: "sc-gspq4q-0"
|
|
@@ -20,7 +20,7 @@ const background = props => {
|
|
|
20
20
|
};
|
|
21
21
|
const StyledColorWell = styled.div.attrs(props => ({
|
|
22
22
|
'data-garden-id': COMPONENT_ID,
|
|
23
|
-
'data-garden-version': '9.0.0-next.
|
|
23
|
+
'data-garden-version': '9.0.0-next.12',
|
|
24
24
|
'data-test-id': 'colorwell',
|
|
25
25
|
style: {
|
|
26
26
|
background: background(props)
|
|
@@ -23,7 +23,7 @@ const sizeStyles = theme => {
|
|
|
23
23
|
};
|
|
24
24
|
const StyledColorWellThumb = styled.div.attrs(props => ({
|
|
25
25
|
'data-garden-id': COMPONENT_ID,
|
|
26
|
-
'data-garden-version': '9.0.0-next.
|
|
26
|
+
'data-garden-version': '9.0.0-next.12',
|
|
27
27
|
'data-test-id': 'colorwell-thumb',
|
|
28
28
|
style: {
|
|
29
29
|
top: `${props.top}%`,
|
|
@@ -11,7 +11,7 @@ import { Field } from '@zendeskgarden/react-forms';
|
|
|
11
11
|
const COMPONENT_ID = 'colorpickers.colorpicker_hex_field';
|
|
12
12
|
const StyledHexField = styled(Field).attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.0.0-next.
|
|
14
|
+
'data-garden-version': '9.0.0-next.12',
|
|
15
15
|
spellcheck: false
|
|
16
16
|
}).withConfig({
|
|
17
17
|
displayName: "StyledHexField",
|
|
@@ -11,7 +11,7 @@ import { StyledRange, getTrackMargin, getTrackHeight } from '../common/StyledRan
|
|
|
11
11
|
const COMPONENT_ID = 'colorpickers.colorpicker_hue';
|
|
12
12
|
const StyledHueRange = styled(StyledRange).attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.0.0-next.
|
|
14
|
+
'data-garden-version': '9.0.0-next.12'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledHueRange",
|
|
17
17
|
componentId: "sc-1gdhww1-0"
|
|
@@ -11,7 +11,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
11
11
|
const COMPONENT_ID = 'colorpickers.colorpicker_input';
|
|
12
12
|
const StyledInput = styled(Input).attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.0.0-next.
|
|
14
|
+
'data-garden-version': '9.0.0-next.12',
|
|
15
15
|
focusInset: false
|
|
16
16
|
}).withConfig({
|
|
17
17
|
displayName: "StyledInput",
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
10
10
|
const COMPONENT_ID = 'colorpickers.colorpicker_input_group';
|
|
11
11
|
const StyledInputGroup = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.0.0-next.
|
|
13
|
+
'data-garden-version': '9.0.0-next.12'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledInputGroup",
|
|
16
16
|
componentId: "sc-1m9g2wg-0"
|
|
@@ -11,7 +11,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
11
11
|
const COMPONENT_ID = 'colorpickers.colorpicker_label';
|
|
12
12
|
const StyledLabel = styled(Label).attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.0.0-next.
|
|
14
|
+
'data-garden-version': '9.0.0-next.12'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledLabel",
|
|
17
17
|
componentId: "sc-1vxt3m9-0"
|
|
@@ -26,7 +26,7 @@ const StyledPreview = styled.div.attrs(props => ({
|
|
|
26
26
|
background: background(props)
|
|
27
27
|
},
|
|
28
28
|
'data-garden-id': COMPONENT_ID,
|
|
29
|
-
'data-garden-version': '9.0.0-next.
|
|
29
|
+
'data-garden-version': '9.0.0-next.12',
|
|
30
30
|
'data-test-id': 'preview-box'
|
|
31
31
|
})).withConfig({
|
|
32
32
|
displayName: "StyledPreview",
|
|
@@ -20,7 +20,7 @@ const sizeStyles = theme => {
|
|
|
20
20
|
};
|
|
21
21
|
const StyledRGBAField = styled(Field).attrs({
|
|
22
22
|
'data-garden-id': COMPONENT_ID,
|
|
23
|
-
'data-garden-version': '9.0.0-next.
|
|
23
|
+
'data-garden-version': '9.0.0-next.12'
|
|
24
24
|
}).withConfig({
|
|
25
25
|
displayName: "StyledRGBAField",
|
|
26
26
|
componentId: "sc-13266k8-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
10
10
|
const COMPONENT_ID = 'colorpickers.colorpicker_slider_group';
|
|
11
11
|
const StyledSliderGroup = styled.div.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.0.0-next.
|
|
13
|
+
'data-garden-version': '9.0.0-next.12'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledSliderGroup",
|
|
16
16
|
componentId: "sc-tigkzg-0"
|
|
@@ -11,7 +11,7 @@ import { getTrackMargin, getTrackHeight } from '../common/StyledRange.js';
|
|
|
11
11
|
const COMPONENT_ID = 'colorpickers.colorpicker_sliders';
|
|
12
12
|
const StyledSliders = styled.div.attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.0.0-next.
|
|
14
|
+
'data-garden-version': '9.0.0-next.12'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledSliders",
|
|
17
17
|
componentId: "sc-1lgr50m-0"
|
|
@@ -5,18 +5,16 @@
|
|
|
5
5
|
* found at http://www.apache.org/licenses/LICENSE-2.0.
|
|
6
6
|
*/
|
|
7
7
|
import styled from 'styled-components';
|
|
8
|
-
import {
|
|
8
|
+
import { DEFAULT_THEME } from '@zendeskgarden/react-theming';
|
|
9
9
|
import { Button } from '@zendeskgarden/react-buttons';
|
|
10
10
|
|
|
11
|
-
const COMPONENT_ID = 'colorpickers.colordialog_button';
|
|
12
11
|
const StyledButton = styled(Button).attrs({
|
|
13
12
|
isNeutral: true,
|
|
14
|
-
'data-garden-
|
|
15
|
-
'data-garden-version': '9.0.0-next.11'
|
|
13
|
+
'data-garden-version': '9.0.0-next.12'
|
|
16
14
|
}).withConfig({
|
|
17
15
|
displayName: "StyledButton",
|
|
18
16
|
componentId: "sc-1dlijfv-0"
|
|
19
|
-
})(["padding:0;width:", "px;max-width:", "px;&:last-of-type:not(:first-child){border-top-", "-radius:", " !important;border-bottom-", "-radius:", " !important;}"
|
|
17
|
+
})(["padding:0;width:", "px;max-width:", "px;&:last-of-type:not(:first-child){border-top-", "-radius:", " !important;border-bottom-", "-radius:", " !important;}"], props => props.theme.space.base * 17, props => props.theme.space.base * 17, props => props.theme.rtl ? 'left' : 'right', props => props.theme.borderRadii.md, props => props.theme.rtl ? 'left' : 'right', props => props.theme.borderRadii.md);
|
|
20
18
|
StyledButton.defaultProps = {
|
|
21
19
|
theme: DEFAULT_THEME
|
|
22
20
|
};
|
|
@@ -38,7 +38,7 @@ const StyledButtonPreview = styled.span.attrs(props => ({
|
|
|
38
38
|
})
|
|
39
39
|
},
|
|
40
40
|
'data-garden-id': COMPONENT_ID,
|
|
41
|
-
'data-garden-version': '9.0.0-next.
|
|
41
|
+
'data-garden-version': '9.0.0-next.12',
|
|
42
42
|
'data-test-id': 'dialog-preview'
|
|
43
43
|
})).withConfig({
|
|
44
44
|
displayName: "StyledButtonPreview",
|
|
@@ -11,7 +11,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
11
11
|
const COMPONENT_ID = 'colorpickers.colordialog_tooltipmodal_body';
|
|
12
12
|
const StyledTooltipBody = styled(TooltipModal.Body).attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.0.0-next.
|
|
14
|
+
'data-garden-version': '9.0.0-next.12'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledTooltipBody",
|
|
17
17
|
componentId: "sc-1ueddpo-0"
|
|
@@ -11,7 +11,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
11
11
|
const COMPONENT_ID = 'colorpickers.colordialog_tooltipmodal';
|
|
12
12
|
const StyledTooltipModal = styled(TooltipModal).attrs({
|
|
13
13
|
'data-garden-id': COMPONENT_ID,
|
|
14
|
-
'data-garden-version': '9.0.0-next.
|
|
14
|
+
'data-garden-version': '9.0.0-next.12'
|
|
15
15
|
}).withConfig({
|
|
16
16
|
displayName: "StyledTooltipModal",
|
|
17
17
|
componentId: "sc-gykkrw-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
10
10
|
const COMPONENT_ID = 'colorpickers.swatch_cell';
|
|
11
11
|
const StyledCell = styled.td.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.0.0-next.
|
|
13
|
+
'data-garden-version': '9.0.0-next.12'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledCell",
|
|
16
16
|
componentId: "sc-qr3oit-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
10
10
|
const COMPONENT_ID = 'colorpickers.color_swatch';
|
|
11
11
|
const StyledColorSwatch = styled.table.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.0.0-next.
|
|
13
|
+
'data-garden-version': '9.0.0-next.12'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledColorSwatch",
|
|
16
16
|
componentId: "sc-ajx440-0"
|
|
@@ -10,7 +10,7 @@ import { retrieveComponentStyles, DEFAULT_THEME } from '@zendeskgarden/react-the
|
|
|
10
10
|
const COMPONENT_ID = 'colorpickers.color_swatch_input';
|
|
11
11
|
const StyledColorSwatchInput = styled.input.attrs({
|
|
12
12
|
'data-garden-id': COMPONENT_ID,
|
|
13
|
-
'data-garden-version': '9.0.0-next.
|
|
13
|
+
'data-garden-version': '9.0.0-next.12'
|
|
14
14
|
}).withConfig({
|
|
15
15
|
displayName: "StyledColorSwatchInput",
|
|
16
16
|
componentId: "sc-em45h0-0"
|
|
@@ -25,7 +25,7 @@ const colorStyles = props => {
|
|
|
25
25
|
const StyledColorSwatchLabel = styled(StyledButtonPreview).attrs({
|
|
26
26
|
as: 'label',
|
|
27
27
|
'data-garden-id': COMPONENT_ID,
|
|
28
|
-
'data-garden-version': '9.0.0-next.
|
|
28
|
+
'data-garden-version': '9.0.0-next.12'
|
|
29
29
|
}).withConfig({
|
|
30
30
|
displayName: "StyledColorSwatchLabel",
|
|
31
31
|
componentId: "sc-1aghocg-0"
|
|
@@ -12,7 +12,7 @@ import { StyledColorSwatchInput } from './StyledColorSwatchInput.js';
|
|
|
12
12
|
const COMPONENT_ID = 'colorpickers.colorswatch_check';
|
|
13
13
|
const StyledIcon = styled(SvgCheckSmFill).attrs({
|
|
14
14
|
'data-garden-id': COMPONENT_ID,
|
|
15
|
-
'data-garden-version': '9.0.0-next.
|
|
15
|
+
'data-garden-version': '9.0.0-next.12'
|
|
16
16
|
}).withConfig({
|
|
17
17
|
displayName: "StyledIcon",
|
|
18
18
|
componentId: "sc-8oigif-0"
|
|
@@ -136,7 +136,7 @@ const sizeStyles = props => {
|
|
|
136
136
|
};
|
|
137
137
|
const StyledRange = styled(Range).attrs({
|
|
138
138
|
'data-garden-id': COMPONENT_ID,
|
|
139
|
-
'data-garden-version': '9.0.0-next.
|
|
139
|
+
'data-garden-version': '9.0.0-next.12',
|
|
140
140
|
hasLowerTrack: false
|
|
141
141
|
}).withConfig({
|
|
142
142
|
displayName: "StyledRange",
|
package/dist/index.cjs.js
CHANGED
|
@@ -131,22 +131,22 @@ const getThumbPosition = (x, y, rtl, container) => {
|
|
|
131
131
|
};
|
|
132
132
|
};
|
|
133
133
|
|
|
134
|
-
const COMPONENT_ID$
|
|
134
|
+
const COMPONENT_ID$l = 'colorpickers.colorpicker';
|
|
135
135
|
const getColorPickerWidth = props => {
|
|
136
136
|
return props.isOpaque ? 268 : 312;
|
|
137
137
|
};
|
|
138
138
|
const StyledColorPicker = styled__default.default.div.attrs({
|
|
139
|
-
'data-garden-id': COMPONENT_ID$
|
|
140
|
-
'data-garden-version': '9.0.0-next.
|
|
139
|
+
'data-garden-id': COMPONENT_ID$l,
|
|
140
|
+
'data-garden-version': '9.0.0-next.12'
|
|
141
141
|
}).withConfig({
|
|
142
142
|
displayName: "StyledColorPicker",
|
|
143
143
|
componentId: "sc-gspq4q-0"
|
|
144
|
-
})(["width:", "px;min-width:", "px;", ";"], getColorPickerWidth, getColorPickerWidth, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
144
|
+
})(["width:", "px;min-width:", "px;", ";"], getColorPickerWidth, getColorPickerWidth, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$l, props));
|
|
145
145
|
StyledColorPicker.defaultProps = {
|
|
146
146
|
theme: reactTheming.DEFAULT_THEME
|
|
147
147
|
};
|
|
148
148
|
|
|
149
|
-
const COMPONENT_ID$
|
|
149
|
+
const COMPONENT_ID$k = 'colorpickers.colorpicker_range';
|
|
150
150
|
const thumbStyles = function (styles) {
|
|
151
151
|
let modifier = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
|
|
152
152
|
return `
|
|
@@ -272,23 +272,23 @@ const sizeStyles$2 = props => {
|
|
|
272
272
|
`;
|
|
273
273
|
};
|
|
274
274
|
const StyledRange = styled__default.default(reactForms.Range).attrs({
|
|
275
|
-
'data-garden-id': COMPONENT_ID$
|
|
276
|
-
'data-garden-version': '9.0.0-next.
|
|
275
|
+
'data-garden-id': COMPONENT_ID$k,
|
|
276
|
+
'data-garden-version': '9.0.0-next.12',
|
|
277
277
|
hasLowerTrack: false
|
|
278
278
|
}).withConfig({
|
|
279
279
|
displayName: "StyledRange",
|
|
280
280
|
componentId: "sc-ug3wi9-0"
|
|
281
281
|
})(["", ";", " ", ";", ";"], sizeStyles$2, trackStyles(`
|
|
282
282
|
border-radius: 0;
|
|
283
|
-
`), colorStyles$1, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
283
|
+
`), colorStyles$1, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$k, props));
|
|
284
284
|
StyledRange.defaultProps = {
|
|
285
285
|
theme: reactTheming.DEFAULT_THEME
|
|
286
286
|
};
|
|
287
287
|
|
|
288
|
-
const COMPONENT_ID$
|
|
288
|
+
const COMPONENT_ID$j = 'colorpickers.colorpicker_hue';
|
|
289
289
|
const StyledHueRange = styled__default.default(StyledRange).attrs({
|
|
290
|
-
'data-garden-id': COMPONENT_ID$
|
|
291
|
-
'data-garden-version': '9.0.0-next.
|
|
290
|
+
'data-garden-id': COMPONENT_ID$j,
|
|
291
|
+
'data-garden-version': '9.0.0-next.12'
|
|
292
292
|
}).withConfig({
|
|
293
293
|
displayName: "StyledHueRange",
|
|
294
294
|
componentId: "sc-1gdhww1-0"
|
|
@@ -297,7 +297,7 @@ StyledHueRange.defaultProps = {
|
|
|
297
297
|
theme: reactTheming.DEFAULT_THEME
|
|
298
298
|
};
|
|
299
299
|
|
|
300
|
-
const COMPONENT_ID$
|
|
300
|
+
const COMPONENT_ID$i = 'colorpickers.colorpicker_alpha';
|
|
301
301
|
const background$3 = props => {
|
|
302
302
|
const direction = `to ${props.theme.rtl ? 'left' : 'right'}`;
|
|
303
303
|
const fromColor = `rgba(${props.red}, ${props.green}, ${props.blue}, 0)`;
|
|
@@ -318,8 +318,8 @@ const StyledAlphaRange = styled__default.default(StyledRange).attrs(props => ({
|
|
|
318
318
|
backgroundSize: 'auto',
|
|
319
319
|
background: background$3(props)
|
|
320
320
|
},
|
|
321
|
-
'data-garden-id': COMPONENT_ID$
|
|
322
|
-
'data-garden-version': '9.0.0-next.
|
|
321
|
+
'data-garden-id': COMPONENT_ID$i,
|
|
322
|
+
'data-garden-version': '9.0.0-next.12'
|
|
323
323
|
})).withConfig({
|
|
324
324
|
displayName: "StyledAlphaRange",
|
|
325
325
|
componentId: "sc-1f6hp2j-0"
|
|
@@ -328,7 +328,7 @@ StyledAlphaRange.defaultProps = {
|
|
|
328
328
|
theme: reactTheming.DEFAULT_THEME
|
|
329
329
|
};
|
|
330
330
|
|
|
331
|
-
const COMPONENT_ID$
|
|
331
|
+
const COMPONENT_ID$h = 'colorpickers.colorpicker_preview_box';
|
|
332
332
|
const background$2 = props => {
|
|
333
333
|
const alpha = props.alpha ? props.alpha / 100 : 0;
|
|
334
334
|
let retVal = `rgba(${props.red}, ${props.green}, ${props.blue}, ${alpha})`;
|
|
@@ -345,18 +345,18 @@ const StyledPreview = styled__default.default.div.attrs(props => ({
|
|
|
345
345
|
style: {
|
|
346
346
|
background: background$2(props)
|
|
347
347
|
},
|
|
348
|
-
'data-garden-id': COMPONENT_ID$
|
|
349
|
-
'data-garden-version': '9.0.0-next.
|
|
348
|
+
'data-garden-id': COMPONENT_ID$h,
|
|
349
|
+
'data-garden-version': '9.0.0-next.12',
|
|
350
350
|
'data-test-id': 'preview-box'
|
|
351
351
|
})).withConfig({
|
|
352
352
|
displayName: "StyledPreview",
|
|
353
353
|
componentId: "sc-1z5nh7-0"
|
|
354
|
-
})(["flex-shrink:0;border-radius:", ";box-shadow:inset 0 0 0 ", " ", ";width:", "px;height:", "px;", ";"], props => props.theme.borderRadii.md, props => props.theme.borderWidths.sm, props => polished.rgba(props.theme.palette.black, 0.19), props => props.theme.space.base * (props.isOpaque ? 6 : 8), props => props.theme.space.base * (props.isOpaque ? 6 : 8), props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
354
|
+
})(["flex-shrink:0;border-radius:", ";box-shadow:inset 0 0 0 ", " ", ";width:", "px;height:", "px;", ";"], props => props.theme.borderRadii.md, props => props.theme.borderWidths.sm, props => polished.rgba(props.theme.palette.black, 0.19), props => props.theme.space.base * (props.isOpaque ? 6 : 8), props => props.theme.space.base * (props.isOpaque ? 6 : 8), props => reactTheming.retrieveComponentStyles(COMPONENT_ID$h, props));
|
|
355
355
|
StyledPreview.defaultProps = {
|
|
356
356
|
theme: reactTheming.DEFAULT_THEME
|
|
357
357
|
};
|
|
358
358
|
|
|
359
|
-
const COMPONENT_ID$
|
|
359
|
+
const COMPONENT_ID$g = 'colorpickers.colorpicker_colorwell';
|
|
360
360
|
const background$1 = props => {
|
|
361
361
|
const blackAlpha = polished.rgba(props.theme.palette.black, 0.9);
|
|
362
362
|
const black = `linear-gradient(0deg, ${props.theme.palette.black}, ${blackAlpha} 1%, transparent 99%)`;
|
|
@@ -367,8 +367,8 @@ const background$1 = props => {
|
|
|
367
367
|
return `${black}, ${white}, ${color}`;
|
|
368
368
|
};
|
|
369
369
|
const StyledColorWell = styled__default.default.div.attrs(props => ({
|
|
370
|
-
'data-garden-id': COMPONENT_ID$
|
|
371
|
-
'data-garden-version': '9.0.0-next.
|
|
370
|
+
'data-garden-id': COMPONENT_ID$g,
|
|
371
|
+
'data-garden-version': '9.0.0-next.12',
|
|
372
372
|
'data-test-id': 'colorwell',
|
|
373
373
|
style: {
|
|
374
374
|
background: background$1(props)
|
|
@@ -376,12 +376,12 @@ const StyledColorWell = styled__default.default.div.attrs(props => ({
|
|
|
376
376
|
})).withConfig({
|
|
377
377
|
displayName: "StyledColorWell",
|
|
378
378
|
componentId: "sc-1gg9z8m-0"
|
|
379
|
-
})(["position:relative;margin-bottom:", "px;cursor:pointer;height:208px;overflow:hidden;", ";"], props => props.theme.space.base * 2, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
379
|
+
})(["position:relative;margin-bottom:", "px;cursor:pointer;height:208px;overflow:hidden;", ";"], props => props.theme.space.base * 2, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$g, props));
|
|
380
380
|
StyledColorWell.defaultProps = {
|
|
381
381
|
theme: reactTheming.DEFAULT_THEME
|
|
382
382
|
};
|
|
383
383
|
|
|
384
|
-
const COMPONENT_ID$
|
|
384
|
+
const COMPONENT_ID$f = 'colorpickers.colorpicker_colorwell_thumb';
|
|
385
385
|
const sizeStyles$1 = theme => {
|
|
386
386
|
const borderWidth = polished.stripUnit(theme.borderWidths.sm) * 2;
|
|
387
387
|
const size = theme.space.base * 5;
|
|
@@ -395,8 +395,8 @@ const sizeStyles$1 = theme => {
|
|
|
395
395
|
`;
|
|
396
396
|
};
|
|
397
397
|
const StyledColorWellThumb = styled__default.default.div.attrs(props => ({
|
|
398
|
-
'data-garden-id': COMPONENT_ID$
|
|
399
|
-
'data-garden-version': '9.0.0-next.
|
|
398
|
+
'data-garden-id': COMPONENT_ID$f,
|
|
399
|
+
'data-garden-version': '9.0.0-next.12',
|
|
400
400
|
'data-test-id': 'colorwell-thumb',
|
|
401
401
|
style: {
|
|
402
402
|
top: `${props.top}%`,
|
|
@@ -405,74 +405,74 @@ const StyledColorWellThumb = styled__default.default.div.attrs(props => ({
|
|
|
405
405
|
})).withConfig({
|
|
406
406
|
displayName: "StyledColorWellThumb",
|
|
407
407
|
componentId: "sc-1npyab0-0"
|
|
408
|
-
})(["position:absolute;border:solid ", ";border-radius:50%;box-shadow:", ";", ";", ";"], props => props.theme.palette.white, props => props.theme.shadows.lg(`${props.theme.space.base}px`, `${props.theme.space.base * 2}px`, reactTheming.getColorV8('neutralHue', 800, props.theme, 0.24)), props => sizeStyles$1(props.theme), props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
408
|
+
})(["position:absolute;border:solid ", ";border-radius:50%;box-shadow:", ";", ";", ";"], props => props.theme.palette.white, props => props.theme.shadows.lg(`${props.theme.space.base}px`, `${props.theme.space.base * 2}px`, reactTheming.getColorV8('neutralHue', 800, props.theme, 0.24)), props => sizeStyles$1(props.theme), props => reactTheming.retrieveComponentStyles(COMPONENT_ID$f, props));
|
|
409
409
|
StyledColorWellThumb.defaultProps = {
|
|
410
410
|
theme: reactTheming.DEFAULT_THEME
|
|
411
411
|
};
|
|
412
412
|
|
|
413
|
-
const COMPONENT_ID$
|
|
413
|
+
const COMPONENT_ID$e = 'colorpickers.colorpicker_slider_group';
|
|
414
414
|
const StyledSliderGroup = styled__default.default.div.attrs({
|
|
415
|
-
'data-garden-id': COMPONENT_ID$
|
|
416
|
-
'data-garden-version': '9.0.0-next.
|
|
415
|
+
'data-garden-id': COMPONENT_ID$e,
|
|
416
|
+
'data-garden-version': '9.0.0-next.12'
|
|
417
417
|
}).withConfig({
|
|
418
418
|
displayName: "StyledSliderGroup",
|
|
419
419
|
componentId: "sc-tigkzg-0"
|
|
420
|
-
})(["display:flex;justify-content:space-between;margin-bottom:", "px;", ";"], props => props.theme.space.base * 2, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
420
|
+
})(["display:flex;justify-content:space-between;margin-bottom:", "px;", ";"], props => props.theme.space.base * 2, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$e, props));
|
|
421
421
|
StyledSliderGroup.defaultProps = {
|
|
422
422
|
theme: reactTheming.DEFAULT_THEME
|
|
423
423
|
};
|
|
424
424
|
|
|
425
|
-
const COMPONENT_ID$
|
|
425
|
+
const COMPONENT_ID$d = 'colorpickers.colorpicker_hex_field';
|
|
426
426
|
const StyledHexField = styled__default.default(reactForms.Field).attrs({
|
|
427
|
-
'data-garden-id': COMPONENT_ID$
|
|
428
|
-
'data-garden-version': '9.0.0-next.
|
|
427
|
+
'data-garden-id': COMPONENT_ID$d,
|
|
428
|
+
'data-garden-version': '9.0.0-next.12',
|
|
429
429
|
spellcheck: false
|
|
430
430
|
}).withConfig({
|
|
431
431
|
displayName: "StyledHexField",
|
|
432
432
|
componentId: "sc-ijq1c-0"
|
|
433
|
-
})(["display:flex;flex-basis:0;flex-direction:column;flex-grow:1;width:auto;text-align:center;input{direction:ltr;}", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
433
|
+
})(["display:flex;flex-basis:0;flex-direction:column;flex-grow:1;width:auto;text-align:center;input{direction:ltr;}", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$d, props));
|
|
434
434
|
StyledHexField.defaultProps = {
|
|
435
435
|
theme: reactTheming.DEFAULT_THEME
|
|
436
436
|
};
|
|
437
437
|
|
|
438
|
-
const COMPONENT_ID$
|
|
438
|
+
const COMPONENT_ID$c = 'colorpickers.colorpicker_label';
|
|
439
439
|
const StyledLabel = styled__default.default(reactForms.Label).attrs({
|
|
440
|
-
'data-garden-id': COMPONENT_ID$
|
|
441
|
-
'data-garden-version': '9.0.0-next.
|
|
440
|
+
'data-garden-id': COMPONENT_ID$c,
|
|
441
|
+
'data-garden-version': '9.0.0-next.12'
|
|
442
442
|
}).withConfig({
|
|
443
443
|
displayName: "StyledLabel",
|
|
444
444
|
componentId: "sc-1vxt3m9-0"
|
|
445
|
-
})(["overflow:hidden;text-overflow:ellipsis;white-space:nowrap;", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
445
|
+
})(["overflow:hidden;text-overflow:ellipsis;white-space:nowrap;", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$c, props));
|
|
446
446
|
StyledLabel.defaultProps = {
|
|
447
447
|
theme: reactTheming.DEFAULT_THEME
|
|
448
448
|
};
|
|
449
449
|
|
|
450
|
-
const COMPONENT_ID$
|
|
450
|
+
const COMPONENT_ID$b = 'colorpickers.colorpicker_input';
|
|
451
451
|
const StyledInput = styled__default.default(reactForms.Input).attrs({
|
|
452
|
-
'data-garden-id': COMPONENT_ID$
|
|
453
|
-
'data-garden-version': '9.0.0-next.
|
|
452
|
+
'data-garden-id': COMPONENT_ID$b,
|
|
453
|
+
'data-garden-version': '9.0.0-next.12',
|
|
454
454
|
focusInset: false
|
|
455
455
|
}).withConfig({
|
|
456
456
|
displayName: "StyledInput",
|
|
457
457
|
componentId: "sc-1uzlutt-0"
|
|
458
|
-
})(["text-align:center;", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
458
|
+
})(["text-align:center;", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$b, props));
|
|
459
459
|
StyledInput.defaultProps = {
|
|
460
460
|
theme: reactTheming.DEFAULT_THEME
|
|
461
461
|
};
|
|
462
462
|
|
|
463
|
-
const COMPONENT_ID$
|
|
463
|
+
const COMPONENT_ID$a = 'colorpickers.colorpicker_input_group';
|
|
464
464
|
const StyledInputGroup = styled__default.default.div.attrs({
|
|
465
|
-
'data-garden-id': COMPONENT_ID$
|
|
466
|
-
'data-garden-version': '9.0.0-next.
|
|
465
|
+
'data-garden-id': COMPONENT_ID$a,
|
|
466
|
+
'data-garden-version': '9.0.0-next.12'
|
|
467
467
|
}).withConfig({
|
|
468
468
|
displayName: "StyledInputGroup",
|
|
469
469
|
componentId: "sc-1m9g2wg-0"
|
|
470
|
-
})(["display:flex;justify-content:space-between;", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
470
|
+
})(["display:flex;justify-content:space-between;", ";"], props => reactTheming.retrieveComponentStyles(COMPONENT_ID$a, props));
|
|
471
471
|
StyledInputGroup.defaultProps = {
|
|
472
472
|
theme: reactTheming.DEFAULT_THEME
|
|
473
473
|
};
|
|
474
474
|
|
|
475
|
-
const COMPONENT_ID$
|
|
475
|
+
const COMPONENT_ID$9 = 'colorpickers.colorpicker_rgb_field';
|
|
476
476
|
const sizeStyles = theme => {
|
|
477
477
|
const margin = `${theme.space.base * 1.5}px`;
|
|
478
478
|
const width = `${theme.space.base * 12.75}px`;
|
|
@@ -483,37 +483,35 @@ const sizeStyles = theme => {
|
|
|
483
483
|
`;
|
|
484
484
|
};
|
|
485
485
|
const StyledRGBAField = styled__default.default(reactForms.Field).attrs({
|
|
486
|
-
'data-garden-id': COMPONENT_ID$
|
|
487
|
-
'data-garden-version': '9.0.0-next.
|
|
486
|
+
'data-garden-id': COMPONENT_ID$9,
|
|
487
|
+
'data-garden-version': '9.0.0-next.12'
|
|
488
488
|
}).withConfig({
|
|
489
489
|
displayName: "StyledRGBAField",
|
|
490
490
|
componentId: "sc-13266k8-0"
|
|
491
|
-
})(["display:flex;flex-direction:column;text-align:center;", ";", ";"], props => sizeStyles(props.theme), props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
491
|
+
})(["display:flex;flex-direction:column;text-align:center;", ";", ";"], props => sizeStyles(props.theme), props => reactTheming.retrieveComponentStyles(COMPONENT_ID$9, props));
|
|
492
492
|
StyledRGBAField.defaultProps = {
|
|
493
493
|
theme: reactTheming.DEFAULT_THEME
|
|
494
494
|
};
|
|
495
495
|
|
|
496
|
-
const COMPONENT_ID$
|
|
496
|
+
const COMPONENT_ID$8 = 'colorpickers.colorpicker_sliders';
|
|
497
497
|
const StyledSliders = styled__default.default.div.attrs({
|
|
498
|
-
'data-garden-id': COMPONENT_ID$
|
|
499
|
-
'data-garden-version': '9.0.0-next.
|
|
498
|
+
'data-garden-id': COMPONENT_ID$8,
|
|
499
|
+
'data-garden-version': '9.0.0-next.12'
|
|
500
500
|
}).withConfig({
|
|
501
501
|
displayName: "StyledSliders",
|
|
502
502
|
componentId: "sc-1lgr50m-0"
|
|
503
|
-
})(["position:relative;margin-", ":", "px;width:100%;& > *{position:absolute;width:100%;height:", "px;}& > :first-child{top:-", "px;}& > :last-child{bottom:-", "px;}", ";"], props => props.theme.rtl ? 'right' : 'left', props => props.theme.space.base * 2, props => getTrackMargin(props) * 2 + getTrackHeight(props), getTrackMargin, getTrackMargin, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$
|
|
503
|
+
})(["position:relative;margin-", ":", "px;width:100%;& > *{position:absolute;width:100%;height:", "px;}& > :first-child{top:-", "px;}& > :last-child{bottom:-", "px;}", ";"], props => props.theme.rtl ? 'right' : 'left', props => props.theme.space.base * 2, props => getTrackMargin(props) * 2 + getTrackHeight(props), getTrackMargin, getTrackMargin, props => reactTheming.retrieveComponentStyles(COMPONENT_ID$8, props));
|
|
504
504
|
StyledSliders.defaultProps = {
|
|
505
505
|
theme: reactTheming.DEFAULT_THEME
|
|
506
506
|
};
|
|
507
507
|
|
|
508
|
-
const COMPONENT_ID$8 = 'colorpickers.colordialog_button';
|
|
509
508
|
const StyledButton = styled__default.default(reactButtons.Button).attrs({
|
|
510
509
|
isNeutral: true,
|
|
511
|
-
'data-garden-
|
|
512
|
-
'data-garden-version': '9.0.0-next.11'
|
|
510
|
+
'data-garden-version': '9.0.0-next.12'
|
|
513
511
|
}).withConfig({
|
|
514
512
|
displayName: "StyledButton",
|
|
515
513
|
componentId: "sc-1dlijfv-0"
|
|
516
|
-
})(["padding:0;width:", "px;max-width:", "px;&:last-of-type:not(:first-child){border-top-", "-radius:", " !important;border-bottom-", "-radius:", " !important;}"
|
|
514
|
+
})(["padding:0;width:", "px;max-width:", "px;&:last-of-type:not(:first-child){border-top-", "-radius:", " !important;border-bottom-", "-radius:", " !important;}"], props => props.theme.space.base * 17, props => props.theme.space.base * 17, props => props.theme.rtl ? 'left' : 'right', props => props.theme.borderRadii.md, props => props.theme.rtl ? 'left' : 'right', props => props.theme.borderRadii.md);
|
|
517
515
|
StyledButton.defaultProps = {
|
|
518
516
|
theme: reactTheming.DEFAULT_THEME
|
|
519
517
|
};
|
|
@@ -548,7 +546,7 @@ const StyledButtonPreview = styled__default.default.span.attrs(props => ({
|
|
|
548
546
|
})
|
|
549
547
|
},
|
|
550
548
|
'data-garden-id': COMPONENT_ID$7,
|
|
551
|
-
'data-garden-version': '9.0.0-next.
|
|
549
|
+
'data-garden-version': '9.0.0-next.12',
|
|
552
550
|
'data-test-id': 'dialog-preview'
|
|
553
551
|
})).withConfig({
|
|
554
552
|
displayName: "StyledButtonPreview",
|
|
@@ -561,7 +559,7 @@ StyledButtonPreview.defaultProps = {
|
|
|
561
559
|
const COMPONENT_ID$6 = 'colorpickers.colordialog_tooltipmodal';
|
|
562
560
|
const StyledTooltipModal = styled__default.default(reactModals.TooltipModal).attrs({
|
|
563
561
|
'data-garden-id': COMPONENT_ID$6,
|
|
564
|
-
'data-garden-version': '9.0.0-next.
|
|
562
|
+
'data-garden-version': '9.0.0-next.12'
|
|
565
563
|
}).withConfig({
|
|
566
564
|
displayName: "StyledTooltipModal",
|
|
567
565
|
componentId: "sc-gykkrw-0"
|
|
@@ -573,7 +571,7 @@ StyledTooltipModal.defaultProps = {
|
|
|
573
571
|
const COMPONENT_ID$5 = 'colorpickers.colordialog_tooltipmodal_body';
|
|
574
572
|
const StyledTooltipBody = styled__default.default(reactModals.TooltipModal.Body).attrs({
|
|
575
573
|
'data-garden-id': COMPONENT_ID$5,
|
|
576
|
-
'data-garden-version': '9.0.0-next.
|
|
574
|
+
'data-garden-version': '9.0.0-next.12'
|
|
577
575
|
}).withConfig({
|
|
578
576
|
displayName: "StyledTooltipBody",
|
|
579
577
|
componentId: "sc-1ueddpo-0"
|
|
@@ -585,7 +583,7 @@ StyledTooltipBody.defaultProps = {
|
|
|
585
583
|
const COMPONENT_ID$4 = 'colorpickers.color_swatch';
|
|
586
584
|
const StyledColorSwatch = styled__default.default.table.attrs({
|
|
587
585
|
'data-garden-id': COMPONENT_ID$4,
|
|
588
|
-
'data-garden-version': '9.0.0-next.
|
|
586
|
+
'data-garden-version': '9.0.0-next.12'
|
|
589
587
|
}).withConfig({
|
|
590
588
|
displayName: "StyledColorSwatch",
|
|
591
589
|
componentId: "sc-ajx440-0"
|
|
@@ -597,7 +595,7 @@ StyledColorSwatch.defaultProps = {
|
|
|
597
595
|
const COMPONENT_ID$3 = 'colorpickers.color_swatch_input';
|
|
598
596
|
const StyledColorSwatchInput = styled__default.default.input.attrs({
|
|
599
597
|
'data-garden-id': COMPONENT_ID$3,
|
|
600
|
-
'data-garden-version': '9.0.0-next.
|
|
598
|
+
'data-garden-version': '9.0.0-next.12'
|
|
601
599
|
}).withConfig({
|
|
602
600
|
displayName: "StyledColorSwatchInput",
|
|
603
601
|
componentId: "sc-em45h0-0"
|
|
@@ -622,7 +620,7 @@ const colorStyles = props => {
|
|
|
622
620
|
const StyledColorSwatchLabel = styled__default.default(StyledButtonPreview).attrs({
|
|
623
621
|
as: 'label',
|
|
624
622
|
'data-garden-id': COMPONENT_ID$2,
|
|
625
|
-
'data-garden-version': '9.0.0-next.
|
|
623
|
+
'data-garden-version': '9.0.0-next.12'
|
|
626
624
|
}).withConfig({
|
|
627
625
|
displayName: "StyledColorSwatchLabel",
|
|
628
626
|
componentId: "sc-1aghocg-0"
|
|
@@ -657,7 +655,7 @@ var SvgCheckSmFill = function SvgCheckSmFill(props) {
|
|
|
657
655
|
const COMPONENT_ID$1 = 'colorpickers.colorswatch_check';
|
|
658
656
|
const StyledIcon = styled__default.default(SvgCheckSmFill).attrs({
|
|
659
657
|
'data-garden-id': COMPONENT_ID$1,
|
|
660
|
-
'data-garden-version': '9.0.0-next.
|
|
658
|
+
'data-garden-version': '9.0.0-next.12'
|
|
661
659
|
}).withConfig({
|
|
662
660
|
displayName: "StyledIcon",
|
|
663
661
|
componentId: "sc-8oigif-0"
|
|
@@ -669,7 +667,7 @@ StyledIcon.defaultProps = {
|
|
|
669
667
|
const COMPONENT_ID = 'colorpickers.swatch_cell';
|
|
670
668
|
const StyledCell = styled__default.default.td.attrs({
|
|
671
669
|
'data-garden-id': COMPONENT_ID,
|
|
672
|
-
'data-garden-version': '9.0.0-next.
|
|
670
|
+
'data-garden-version': '9.0.0-next.12'
|
|
673
671
|
}).withConfig({
|
|
674
672
|
displayName: "StyledCell",
|
|
675
673
|
componentId: "sc-qr3oit-0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zendeskgarden/react-colorpickers",
|
|
3
|
-
"version": "9.0.0-next.
|
|
3
|
+
"version": "9.0.0-next.12",
|
|
4
4
|
"description": "Components related to color pickers in the Garden Design System",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Zendesk Garden <garden@zendesk.com>",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@zendeskgarden/container-grid": "^3.0.0",
|
|
25
25
|
"@zendeskgarden/container-utilities": "^2.0.0",
|
|
26
|
-
"@zendeskgarden/react-buttons": "^9.0.0-next.
|
|
27
|
-
"@zendeskgarden/react-forms": "^9.0.0-next.
|
|
28
|
-
"@zendeskgarden/react-modals": "^9.0.0-next.
|
|
29
|
-
"@zendeskgarden/react-tooltips": "^9.0.0-next.
|
|
26
|
+
"@zendeskgarden/react-buttons": "^9.0.0-next.12",
|
|
27
|
+
"@zendeskgarden/react-forms": "^9.0.0-next.12",
|
|
28
|
+
"@zendeskgarden/react-modals": "^9.0.0-next.12",
|
|
29
|
+
"@zendeskgarden/react-tooltips": "^9.0.0-next.12",
|
|
30
30
|
"lodash.isequal": "^4.5.0",
|
|
31
31
|
"lodash.throttle": "^4.1.1",
|
|
32
32
|
"polished": "^4.0.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/lodash.isequal": "4.5.8",
|
|
44
44
|
"@types/lodash.throttle": "4.1.9",
|
|
45
|
-
"@zendeskgarden/react-theming": "^9.0.0-next.
|
|
45
|
+
"@zendeskgarden/react-theming": "^9.0.0-next.12",
|
|
46
46
|
"@zendeskgarden/svg-icons": "7.0.0"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"zendeskgarden:src": "src/index.ts",
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "7925ff78236795111e2953efbce549839df3a86d"
|
|
60
60
|
}
|