@react-spectrum/icon 3.8.12 → 3.9.1

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.
@@ -1 +0,0 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;AAoBM,SAAS,0CAAO,KAAkB;IACvC,QAAQ,CAAA,GAAA,sCAAW,EAAE,OAAO;IAC5B,IAAI,YACF,QAAQ,EACR,cAAc,SAAS,EACvB,eAAe,UAAU,EACzB,GAAG,YACJ,GAAG;IAEJ,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,uCAAY,EAAE;IACjC,IAAI;IACJ,IAAI;QACF,sDAAsD;QACtD,WAAW,CAAA,GAAA,wCAAU;IACvB,EAAE,OAAM;IACN,SAAS;IACX;IACA,IAAI,QAAQ;IACZ,IAAI,YAAY,MACd,QAAQ,SAAS,KAAK,KAAK,UAAU,MAAM;IAG7C,IAAI,CAAC,YACH,aAAa;IAGf,qBAAO,CAAA,GAAA,sCAAI,EAAE,YAAY,CAAC,UAAU;QAClC,GAAG,CAAA,GAAA,oCAAa,EAAE,WAAW;QAC7B,GAAG,UAAU;eACb;QACA,WAAW;QACX,cAAc;QACd,eAAgB,YAAa,cAAc,YAAa;QACxD,MAAM;QACN,WAAW,CAAA,GAAA,oCAAS,EAClB,CAAA,GAAA,mDAAK,GACL,SAAS,KAAK,CAAC,SAAS,EACxB,iBACA;YACE,CAAC,CAAC,gBAAgB,EAAE,SAAS,IAAI,CAAC,cAAc,EAAE,CAAC,EAAE,SAAS,IAAI,CAAC,cAAc;QACnF,GACA,WAAW,SAAS;IACxB;AACF","sources":["packages/@react-spectrum/icon/src/UIIcon.tsx"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {AriaLabelingProps, DOMProps, StyleProps} from '@react-types/shared';\nimport {classNames, useSlotProps, useStyleProps} from '@react-spectrum/utils';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {ProviderContext, useProvider} from '@react-spectrum/provider';\nimport React, {JSX, ReactElement} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/icon/vars.css';\n\nexport interface UIIconProps extends DOMProps, AriaLabelingProps, StyleProps {\n children: ReactElement<any>,\n slot?: string,\n /**\n * Indicates whether the element is exposed to an accessibility API.\n */\n 'aria-hidden'?: boolean | 'false' | 'true'\n}\n\nexport type UIIconPropsWithoutChildren = Omit<UIIconProps, 'children'>;\n\nexport function UIIcon(props: UIIconProps): JSX.Element {\n props = useSlotProps(props, 'icon');\n let {\n children,\n 'aria-label': ariaLabel,\n 'aria-hidden': ariaHidden,\n ...otherProps\n } = props;\n\n let {styleProps} = useStyleProps(otherProps);\n let provider: undefined | ProviderContext;\n try {\n // eslint-disable-next-line react-hooks/rules-of-hooks\n provider = useProvider();\n } catch {\n // ignore\n }\n let scale = 'M';\n if (provider != null) {\n scale = provider.scale === 'large' ? 'L' : 'M';\n }\n\n if (!ariaHidden) {\n ariaHidden = undefined;\n }\n\n return React.cloneElement(children, {\n ...filterDOMProps(otherProps),\n ...styleProps,\n scale,\n focusable: 'false',\n 'aria-label': ariaLabel,\n 'aria-hidden': (ariaLabel ? (ariaHidden || undefined) : true),\n role: 'img',\n className: classNames(\n styles,\n children.props.className,\n 'spectrum-Icon',\n {\n [`spectrum-UIIcon-${children.type['displayName']}`]: children.type['displayName']\n },\n styleProps.className)\n });\n}\n"],"names":[],"version":3,"file":"UIIcon.main.js.map"}
package/dist/UIIcon.mjs DELETED
@@ -1,57 +0,0 @@
1
- import "./icon.248b9ee8.css";
2
- import $g4kmm$icon_vars_cssmodulejs from "./icon_vars_css.mjs";
3
- import {useSlotProps as $g4kmm$useSlotProps, useStyleProps as $g4kmm$useStyleProps, classNames as $g4kmm$classNames} from "@react-spectrum/utils";
4
- import {filterDOMProps as $g4kmm$filterDOMProps} from "@react-aria/utils";
5
- import {useProvider as $g4kmm$useProvider} from "@react-spectrum/provider";
6
- import $g4kmm$react from "react";
7
-
8
-
9
- function $parcel$interopDefault(a) {
10
- return a && a.__esModule ? a.default : a;
11
- }
12
- /*
13
- * Copyright 2020 Adobe. All rights reserved.
14
- * This file is licensed to you under the Apache License, Version 2.0 (the "License");
15
- * you may not use this file except in compliance with the License. You may obtain a copy
16
- * of the License at http://www.apache.org/licenses/LICENSE-2.0
17
- *
18
- * Unless required by applicable law or agreed to in writing, software distributed under
19
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
20
- * OF ANY KIND, either express or implied. See the License for the specific language
21
- * governing permissions and limitations under the License.
22
- */
23
-
24
-
25
-
26
-
27
- function $9ba43a63383852e3$export$906cc5990ff10700(props) {
28
- props = (0, $g4kmm$useSlotProps)(props, 'icon');
29
- let { children: children, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, ...otherProps } = props;
30
- let { styleProps: styleProps } = (0, $g4kmm$useStyleProps)(otherProps);
31
- let provider;
32
- try {
33
- // eslint-disable-next-line react-hooks/rules-of-hooks
34
- provider = (0, $g4kmm$useProvider)();
35
- } catch {
36
- // ignore
37
- }
38
- let scale = 'M';
39
- if (provider != null) scale = provider.scale === 'large' ? 'L' : 'M';
40
- if (!ariaHidden) ariaHidden = undefined;
41
- return /*#__PURE__*/ (0, $g4kmm$react).cloneElement(children, {
42
- ...(0, $g4kmm$filterDOMProps)(otherProps),
43
- ...styleProps,
44
- scale: scale,
45
- focusable: 'false',
46
- 'aria-label': ariaLabel,
47
- 'aria-hidden': ariaLabel ? ariaHidden || undefined : true,
48
- role: 'img',
49
- className: (0, $g4kmm$classNames)((0, ($parcel$interopDefault($g4kmm$icon_vars_cssmodulejs))), children.props.className, 'spectrum-Icon', {
50
- [`spectrum-UIIcon-${children.type['displayName']}`]: children.type['displayName']
51
- }, styleProps.className)
52
- });
53
- }
54
-
55
-
56
- export {$9ba43a63383852e3$export$906cc5990ff10700 as UIIcon};
57
- //# sourceMappingURL=UIIcon.module.js.map
@@ -1,57 +0,0 @@
1
- import "./icon.248b9ee8.css";
2
- import $g4kmm$icon_vars_cssmodulejs from "./icon_vars_css.module.js";
3
- import {useSlotProps as $g4kmm$useSlotProps, useStyleProps as $g4kmm$useStyleProps, classNames as $g4kmm$classNames} from "@react-spectrum/utils";
4
- import {filterDOMProps as $g4kmm$filterDOMProps} from "@react-aria/utils";
5
- import {useProvider as $g4kmm$useProvider} from "@react-spectrum/provider";
6
- import $g4kmm$react from "react";
7
-
8
-
9
- function $parcel$interopDefault(a) {
10
- return a && a.__esModule ? a.default : a;
11
- }
12
- /*
13
- * Copyright 2020 Adobe. All rights reserved.
14
- * This file is licensed to you under the Apache License, Version 2.0 (the "License");
15
- * you may not use this file except in compliance with the License. You may obtain a copy
16
- * of the License at http://www.apache.org/licenses/LICENSE-2.0
17
- *
18
- * Unless required by applicable law or agreed to in writing, software distributed under
19
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
20
- * OF ANY KIND, either express or implied. See the License for the specific language
21
- * governing permissions and limitations under the License.
22
- */
23
-
24
-
25
-
26
-
27
- function $9ba43a63383852e3$export$906cc5990ff10700(props) {
28
- props = (0, $g4kmm$useSlotProps)(props, 'icon');
29
- let { children: children, 'aria-label': ariaLabel, 'aria-hidden': ariaHidden, ...otherProps } = props;
30
- let { styleProps: styleProps } = (0, $g4kmm$useStyleProps)(otherProps);
31
- let provider;
32
- try {
33
- // eslint-disable-next-line react-hooks/rules-of-hooks
34
- provider = (0, $g4kmm$useProvider)();
35
- } catch {
36
- // ignore
37
- }
38
- let scale = 'M';
39
- if (provider != null) scale = provider.scale === 'large' ? 'L' : 'M';
40
- if (!ariaHidden) ariaHidden = undefined;
41
- return /*#__PURE__*/ (0, $g4kmm$react).cloneElement(children, {
42
- ...(0, $g4kmm$filterDOMProps)(otherProps),
43
- ...styleProps,
44
- scale: scale,
45
- focusable: 'false',
46
- 'aria-label': ariaLabel,
47
- 'aria-hidden': ariaLabel ? ariaHidden || undefined : true,
48
- role: 'img',
49
- className: (0, $g4kmm$classNames)((0, ($parcel$interopDefault($g4kmm$icon_vars_cssmodulejs))), children.props.className, 'spectrum-Icon', {
50
- [`spectrum-UIIcon-${children.type['displayName']}`]: children.type['displayName']
51
- }, styleProps.className)
52
- });
53
- }
54
-
55
-
56
- export {$9ba43a63383852e3$export$906cc5990ff10700 as UIIcon};
57
- //# sourceMappingURL=UIIcon.module.js.map
@@ -1 +0,0 @@
1
- {"mappings":";;;;;;;;;;;AAAA;;;;;;;;;;CAUC;;;;;AAoBM,SAAS,0CAAO,KAAkB;IACvC,QAAQ,CAAA,GAAA,mBAAW,EAAE,OAAO;IAC5B,IAAI,YACF,QAAQ,EACR,cAAc,SAAS,EACvB,eAAe,UAAU,EACzB,GAAG,YACJ,GAAG;IAEJ,IAAI,cAAC,UAAU,EAAC,GAAG,CAAA,GAAA,oBAAY,EAAE;IACjC,IAAI;IACJ,IAAI;QACF,sDAAsD;QACtD,WAAW,CAAA,GAAA,kBAAU;IACvB,EAAE,OAAM;IACN,SAAS;IACX;IACA,IAAI,QAAQ;IACZ,IAAI,YAAY,MACd,QAAQ,SAAS,KAAK,KAAK,UAAU,MAAM;IAG7C,IAAI,CAAC,YACH,aAAa;IAGf,qBAAO,CAAA,GAAA,YAAI,EAAE,YAAY,CAAC,UAAU;QAClC,GAAG,CAAA,GAAA,qBAAa,EAAE,WAAW;QAC7B,GAAG,UAAU;eACb;QACA,WAAW;QACX,cAAc;QACd,eAAgB,YAAa,cAAc,YAAa;QACxD,MAAM;QACN,WAAW,CAAA,GAAA,iBAAS,EAClB,CAAA,GAAA,sDAAK,GACL,SAAS,KAAK,CAAC,SAAS,EACxB,iBACA;YACE,CAAC,CAAC,gBAAgB,EAAE,SAAS,IAAI,CAAC,cAAc,EAAE,CAAC,EAAE,SAAS,IAAI,CAAC,cAAc;QACnF,GACA,WAAW,SAAS;IACxB;AACF","sources":["packages/@react-spectrum/icon/src/UIIcon.tsx"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {AriaLabelingProps, DOMProps, StyleProps} from '@react-types/shared';\nimport {classNames, useSlotProps, useStyleProps} from '@react-spectrum/utils';\nimport {filterDOMProps} from '@react-aria/utils';\nimport {ProviderContext, useProvider} from '@react-spectrum/provider';\nimport React, {JSX, ReactElement} from 'react';\nimport styles from '@adobe/spectrum-css-temp/components/icon/vars.css';\n\nexport interface UIIconProps extends DOMProps, AriaLabelingProps, StyleProps {\n children: ReactElement<any>,\n slot?: string,\n /**\n * Indicates whether the element is exposed to an accessibility API.\n */\n 'aria-hidden'?: boolean | 'false' | 'true'\n}\n\nexport type UIIconPropsWithoutChildren = Omit<UIIconProps, 'children'>;\n\nexport function UIIcon(props: UIIconProps): JSX.Element {\n props = useSlotProps(props, 'icon');\n let {\n children,\n 'aria-label': ariaLabel,\n 'aria-hidden': ariaHidden,\n ...otherProps\n } = props;\n\n let {styleProps} = useStyleProps(otherProps);\n let provider: undefined | ProviderContext;\n try {\n // eslint-disable-next-line react-hooks/rules-of-hooks\n provider = useProvider();\n } catch {\n // ignore\n }\n let scale = 'M';\n if (provider != null) {\n scale = provider.scale === 'large' ? 'L' : 'M';\n }\n\n if (!ariaHidden) {\n ariaHidden = undefined;\n }\n\n return React.cloneElement(children, {\n ...filterDOMProps(otherProps),\n ...styleProps,\n scale,\n focusable: 'false',\n 'aria-label': ariaLabel,\n 'aria-hidden': (ariaLabel ? (ariaHidden || undefined) : true),\n role: 'img',\n className: classNames(\n styles,\n children.props.className,\n 'spectrum-Icon',\n {\n [`spectrum-UIIcon-${children.type['displayName']}`]: children.type['displayName']\n },\n styleProps.className)\n });\n}\n"],"names":[],"version":3,"file":"UIIcon.module.js.map"}
@@ -1,264 +0,0 @@
1
- .wBx8DG_spectrum-Icon, .wBx8DG_spectrum-UIIcon {
2
- color: inherit;
3
- fill: currentColor;
4
- display: inline-block;
5
- }
6
-
7
- :is(.wBx8DG_spectrum-Icon, .wBx8DG_spectrum-UIIcon):not(:root) {
8
- overflow: hidden;
9
- }
10
-
11
- .wBx8DG_spectrum-Icon, .wBx8DG_spectrum-UIIcon {
12
- pointer-events: none;
13
- }
14
-
15
- @media (forced-colors: active) {
16
- .wBx8DG_spectrum-Icon, .wBx8DG_spectrum-UIIcon {
17
- forced-color-adjust: auto;
18
- }
19
- }
20
-
21
- .wBx8DG_spectrum-Icon--sizeXXS, .wBx8DG_spectrum-Icon--sizeXXS img, .wBx8DG_spectrum-Icon--sizeXXS svg {
22
- block-size: calc(var(--spectrum-alias-workflow-icon-size, var(--spectrum-global-dimension-size-225)) / 2);
23
- inline-size: calc(var(--spectrum-alias-workflow-icon-size, var(--spectrum-global-dimension-size-225)) / 2);
24
- }
25
-
26
- .wBx8DG_spectrum-Icon--sizeXS, .wBx8DG_spectrum-Icon--sizeXS img, .wBx8DG_spectrum-Icon--sizeXS svg {
27
- block-size: calc(var(--spectrum-global-dimension-size-300) / 2);
28
- inline-size: calc(var(--spectrum-global-dimension-size-300) / 2);
29
- }
30
-
31
- .wBx8DG_spectrum-Icon--sizeS, .wBx8DG_spectrum-Icon--sizeS img, .wBx8DG_spectrum-Icon--sizeS svg {
32
- block-size: var(--spectrum-alias-workflow-icon-size, var(--spectrum-global-dimension-size-225));
33
- inline-size: var(--spectrum-alias-workflow-icon-size, var(--spectrum-global-dimension-size-225));
34
- }
35
-
36
- .wBx8DG_spectrum-Icon--sizeM, .wBx8DG_spectrum-Icon--sizeM img, .wBx8DG_spectrum-Icon--sizeM svg {
37
- block-size: var(--spectrum-global-dimension-size-300);
38
- inline-size: var(--spectrum-global-dimension-size-300);
39
- }
40
-
41
- .wBx8DG_spectrum-Icon--sizeL, .wBx8DG_spectrum-Icon--sizeL img, .wBx8DG_spectrum-Icon--sizeL svg {
42
- block-size: calc(var(--spectrum-alias-workflow-icon-size, var(--spectrum-global-dimension-size-225)) * 2);
43
- inline-size: calc(var(--spectrum-alias-workflow-icon-size, var(--spectrum-global-dimension-size-225)) * 2);
44
- }
45
-
46
- .wBx8DG_spectrum-Icon--sizeXL, .wBx8DG_spectrum-Icon--sizeXL img, .wBx8DG_spectrum-Icon--sizeXL svg {
47
- block-size: calc(var(--spectrum-global-dimension-size-300) * 2);
48
- inline-size: calc(var(--spectrum-global-dimension-size-300) * 2);
49
- }
50
-
51
- .wBx8DG_spectrum-Icon--sizeXXL, .wBx8DG_spectrum-Icon--sizeXXL img, .wBx8DG_spectrum-Icon--sizeXXL svg {
52
- block-size: calc(var(--spectrum-global-dimension-size-300) * 3);
53
- inline-size: calc(var(--spectrum-global-dimension-size-300) * 3);
54
- }
55
-
56
- .wBx8DG_spectrum--medium .wBx8DG_spectrum-UIIcon--large {
57
- display: none;
58
- }
59
-
60
- .wBx8DG_spectrum--medium .wBx8DG_spectrum-UIIcon--medium {
61
- display: inline;
62
- }
63
-
64
- .wBx8DG_spectrum--large .wBx8DG_spectrum-UIIcon--medium {
65
- display: none;
66
- }
67
-
68
- .wBx8DG_spectrum--large .wBx8DG_spectrum-UIIcon--large {
69
- display: inline;
70
- }
71
-
72
- .wBx8DG_spectrum--large {
73
- --ui-icon-large-display: block;
74
- --ui-icon-medium-display: none;
75
- }
76
-
77
- .wBx8DG_spectrum--medium {
78
- --ui-icon-medium-display: block;
79
- --ui-icon-large-display: none;
80
- }
81
-
82
- .wBx8DG_spectrum-UIIcon--large {
83
- display: var(--ui-icon-large-display);
84
- }
85
-
86
- .wBx8DG_spectrum-UIIcon--medium {
87
- display: var(--ui-icon-medium-display);
88
- }
89
-
90
- .wBx8DG_spectrum-UIIcon-AlertMedium {
91
- inline-size: var(--spectrum-icon-alert-medium-width, var(--spectrum-global-dimension-size-225));
92
- block-size: var(--spectrum-icon-alert-medium-height, var(--spectrum-global-dimension-size-225));
93
- }
94
-
95
- .wBx8DG_spectrum-UIIcon-AlertSmall {
96
- inline-size: var(--spectrum-icon-alert-small-width, var(--spectrum-global-dimension-size-175));
97
- block-size: var(--spectrum-icon-alert-small-height, var(--spectrum-global-dimension-size-175));
98
- }
99
-
100
- .wBx8DG_spectrum-UIIcon-ArrowDownSmall {
101
- inline-size: var(--spectrum-icon-arrow-down-small-width, var(--spectrum-global-dimension-size-100));
102
- block-size: var(--spectrum-icon-arrow-down-small-height);
103
- }
104
-
105
- .wBx8DG_spectrum-UIIcon-ArrowLeftMedium {
106
- inline-size: var(--spectrum-icon-arrow-left-medium-width, var(--spectrum-global-dimension-size-175));
107
- block-size: var(--spectrum-icon-arrow-left-medium-height);
108
- }
109
-
110
- .wBx8DG_spectrum-UIIcon-Asterisk {
111
- inline-size: var(--spectrum-fieldlabel-asterisk-size, var(--spectrum-global-dimension-size-100));
112
- block-size: var(--spectrum-fieldlabel-asterisk-size, var(--spectrum-global-dimension-size-100));
113
- }
114
-
115
- .wBx8DG_spectrum-UIIcon-CheckmarkMedium {
116
- inline-size: var(--spectrum-icon-checkmark-medium-width);
117
- block-size: var(--spectrum-icon-checkmark-medium-height);
118
- }
119
-
120
- .wBx8DG_spectrum-UIIcon-CheckmarkSmall {
121
- inline-size: var(--spectrum-icon-checkmark-small-width);
122
- block-size: var(--spectrum-icon-checkmark-small-height);
123
- }
124
-
125
- .wBx8DG_spectrum-UIIcon-ChevronDownMedium {
126
- inline-size: var(--spectrum-icon-chevron-down-medium-width);
127
- block-size: var(--spectrum-icon-chevron-down-medium-height, var(--spectrum-global-dimension-size-75));
128
- }
129
-
130
- .wBx8DG_spectrum-UIIcon-ChevronDownSmall {
131
- inline-size: var(--spectrum-icon-chevron-down-small-width, var(--spectrum-global-dimension-size-100));
132
- block-size: var(--spectrum-icon-chevron-down-small-height, var(--spectrum-global-dimension-size-75));
133
- }
134
-
135
- .wBx8DG_spectrum-UIIcon-ChevronLeftLarge {
136
- inline-size: var(--spectrum-icon-chevron-left-large-width);
137
- block-size: var(--spectrum-icon-chevron-left-large-height, var(--spectrum-global-dimension-size-200));
138
- }
139
-
140
- .wBx8DG_spectrum-UIIcon-ChevronLeftMedium {
141
- inline-size: var(--spectrum-icon-chevron-left-medium-width, var(--spectrum-global-dimension-size-75));
142
- block-size: var(--spectrum-icon-chevron-left-medium-height);
143
- }
144
-
145
- .wBx8DG_spectrum-UIIcon-ChevronRightLarge {
146
- inline-size: var(--spectrum-icon-chevron-right-large-width);
147
- block-size: var(--spectrum-icon-chevron-right-large-height, var(--spectrum-global-dimension-size-200));
148
- }
149
-
150
- .wBx8DG_spectrum-UIIcon-ChevronRightMedium {
151
- inline-size: var(--spectrum-icon-chevron-right-medium-width, var(--spectrum-global-dimension-size-75));
152
- block-size: var(--spectrum-icon-chevron-right-medium-height);
153
- }
154
-
155
- .wBx8DG_spectrum-UIIcon-ChevronRightSmall {
156
- inline-size: var(--spectrum-icon-chevron-right-small-width, var(--spectrum-global-dimension-size-75));
157
- block-size: var(--spectrum-icon-chevron-right-small-height, var(--spectrum-global-dimension-size-100));
158
- }
159
-
160
- .wBx8DG_spectrum-UIIcon-ChevronUpSmall {
161
- inline-size: var(--spectrum-icon-chevron-up-small-width, var(--spectrum-global-dimension-size-100));
162
- block-size: var(--spectrum-icon-chevron-up-small-height, var(--spectrum-global-dimension-size-75));
163
- }
164
-
165
- .wBx8DG_spectrum-UIIcon-CornerTriangle {
166
- inline-size: var(--spectrum-icon-cornertriangle-width, var(--spectrum-global-dimension-size-65));
167
- block-size: var(--spectrum-icon-cornertriangle-height, var(--spectrum-global-dimension-size-65));
168
- }
169
-
170
- .wBx8DG_spectrum-UIIcon-CrossLarge {
171
- inline-size: var(--spectrum-icon-cross-large-width);
172
- block-size: var(--spectrum-icon-cross-large-height);
173
- }
174
-
175
- .wBx8DG_spectrum-UIIcon-CrossMedium {
176
- inline-size: var(--spectrum-icon-cross-medium-width, var(--spectrum-global-dimension-size-100));
177
- block-size: var(--spectrum-icon-cross-medium-height, var(--spectrum-global-dimension-size-100));
178
- }
179
-
180
- .wBx8DG_spectrum-UIIcon-CrossSmall {
181
- inline-size: var(--spectrum-icon-cross-small-width, var(--spectrum-global-dimension-size-100));
182
- block-size: var(--spectrum-icon-cross-small-height, var(--spectrum-global-dimension-size-100));
183
- }
184
-
185
- .wBx8DG_spectrum-UIIcon-DashSmall {
186
- inline-size: var(--spectrum-icon-dash-small-width);
187
- block-size: var(--spectrum-icon-dash-small-height);
188
- }
189
-
190
- .wBx8DG_spectrum-UIIcon-DoubleGripper {
191
- inline-size: var(--spectrum-icon-doublegripper-width, var(--spectrum-global-dimension-size-200));
192
- block-size: var(--spectrum-icon-doublegripper-height, var(--spectrum-global-dimension-size-50));
193
- }
194
-
195
- .wBx8DG_spectrum-UIIcon-FolderBreadcrumb {
196
- inline-size: var(--spectrum-icon-folderbreadcrumb-width, var(--spectrum-global-dimension-size-225));
197
- block-size: var(--spectrum-icon-folderbreadcrumb-height, var(--spectrum-global-dimension-size-225));
198
- }
199
-
200
- .wBx8DG_spectrum-UIIcon-HelpMedium {
201
- inline-size: var(--spectrum-icon-info-medium-width, var(--spectrum-global-dimension-size-225));
202
- block-size: var(--spectrum-icon-info-medium-height, var(--spectrum-global-dimension-size-225));
203
- }
204
-
205
- .wBx8DG_spectrum-UIIcon-HelpSmall {
206
- inline-size: var(--spectrum-icon-info-small-width, var(--spectrum-global-dimension-size-175));
207
- block-size: var(--spectrum-icon-info-small-height, var(--spectrum-global-dimension-size-175));
208
- }
209
-
210
- .wBx8DG_spectrum-UIIcon-InfoMedium {
211
- inline-size: var(--spectrum-icon-info-medium-width, var(--spectrum-global-dimension-size-225));
212
- block-size: var(--spectrum-icon-info-medium-height, var(--spectrum-global-dimension-size-225));
213
- }
214
-
215
- .wBx8DG_spectrum-UIIcon-InfoSmall {
216
- inline-size: var(--spectrum-icon-info-small-width, var(--spectrum-global-dimension-size-175));
217
- block-size: var(--spectrum-icon-info-small-height, var(--spectrum-global-dimension-size-175));
218
- }
219
-
220
- .wBx8DG_spectrum-UIIcon-ListGripper {
221
- inline-size: var(--spectrum-global-dimension-size-65);
222
- block-size: var(--spectrum-global-dimension-size-150);
223
- }
224
-
225
- .wBx8DG_spectrum-UIIcon-Magnifier {
226
- inline-size: var(--spectrum-icon-magnifier-width, var(--spectrum-global-dimension-size-200));
227
- block-size: var(--spectrum-icon-magnifier-height, var(--spectrum-global-dimension-size-200));
228
- }
229
-
230
- .wBx8DG_spectrum-UIIcon-SkipLeft {
231
- inline-size: var(--spectrum-icon-skip-left-width);
232
- block-size: var(--spectrum-icon-skip-left-height);
233
- }
234
-
235
- .wBx8DG_spectrum-UIIcon-SkipRight {
236
- inline-size: var(--spectrum-icon-skip-right-width);
237
- block-size: var(--spectrum-icon-skip-right-height);
238
- }
239
-
240
- .wBx8DG_spectrum-UIIcon-Star {
241
- inline-size: var(--spectrum-icon-star-width, var(--spectrum-global-dimension-size-225));
242
- block-size: var(--spectrum-icon-star-height, var(--spectrum-global-dimension-size-225));
243
- }
244
-
245
- .wBx8DG_spectrum-UIIcon-StarOutline {
246
- inline-size: var(--spectrum-icon-star-outline-width, var(--spectrum-global-dimension-size-225));
247
- block-size: var(--spectrum-icon-star-outline-height, var(--spectrum-global-dimension-size-225));
248
- }
249
-
250
- .wBx8DG_spectrum-UIIcon-SuccessMedium {
251
- inline-size: var(--spectrum-icon-success-medium-width, var(--spectrum-global-dimension-size-225));
252
- block-size: var(--spectrum-icon-success-medium-height, var(--spectrum-global-dimension-size-225));
253
- }
254
-
255
- .wBx8DG_spectrum-UIIcon-SuccessSmall {
256
- inline-size: var(--spectrum-icon-success-small-width, var(--spectrum-global-dimension-size-175));
257
- block-size: var(--spectrum-icon-success-small-height, var(--spectrum-global-dimension-size-175));
258
- }
259
-
260
- .wBx8DG_spectrum-UIIcon-TripleGripper {
261
- inline-size: var(--spectrum-icon-triplegripper-width);
262
- block-size: var(--spectrum-icon-triplegripper-height, var(--spectrum-global-dimension-size-85));
263
- }
264
- /*# sourceMappingURL=icon.248b9ee8.css.map */
@@ -1 +0,0 @@
1
- {"mappings":"AAoCA;;;;;;AAWE;;;;AAKe;;;;AAGjB;EACE;;;;;AAoBA;;;;;AASA;;;;;AASA;;;;;AASA;;;;;AASA;;;;;AASA;;;;;AASA;;;;;AAuBA;;;;AAGA;;;;AAMA;;;;AAGA;;;;AAOF;;;;;AAKA;;;;;AAKA;;;;AAIA;;;;AAMA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA;;;;;AAKA","sources":["packages/@adobe/spectrum-css-temp/components/icon/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n"],"names":[],"version":3,"file":"icon.248b9ee8.css.map"}
@@ -1,152 +0,0 @@
1
-
2
- function $parcel$export(e, n, v, s) {
3
- Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
4
- }
5
-
6
- $parcel$export(module.exports, "spectrum--large", () => $5ef39e0c80b682c7$export$a88a8dbe29386d31, (v) => $5ef39e0c80b682c7$export$a88a8dbe29386d31 = v);
7
- $parcel$export(module.exports, "spectrum--medium", () => $5ef39e0c80b682c7$export$4c0c83b3f4303ef8, (v) => $5ef39e0c80b682c7$export$4c0c83b3f4303ef8 = v);
8
- $parcel$export(module.exports, "spectrum-Icon", () => $5ef39e0c80b682c7$export$d374b04f30360026, (v) => $5ef39e0c80b682c7$export$d374b04f30360026 = v);
9
- $parcel$export(module.exports, "spectrum-Icon--sizeL", () => $5ef39e0c80b682c7$export$8d23c37ef2a4f13e, (v) => $5ef39e0c80b682c7$export$8d23c37ef2a4f13e = v);
10
- $parcel$export(module.exports, "spectrum-Icon--sizeM", () => $5ef39e0c80b682c7$export$8f1693ac47916bbf, (v) => $5ef39e0c80b682c7$export$8f1693ac47916bbf = v);
11
- $parcel$export(module.exports, "spectrum-Icon--sizeS", () => $5ef39e0c80b682c7$export$34ce05647f0c65e, (v) => $5ef39e0c80b682c7$export$34ce05647f0c65e = v);
12
- $parcel$export(module.exports, "spectrum-Icon--sizeXL", () => $5ef39e0c80b682c7$export$c6e70a22e841bc1b, (v) => $5ef39e0c80b682c7$export$c6e70a22e841bc1b = v);
13
- $parcel$export(module.exports, "spectrum-Icon--sizeXS", () => $5ef39e0c80b682c7$export$557c0af6873b4222, (v) => $5ef39e0c80b682c7$export$557c0af6873b4222 = v);
14
- $parcel$export(module.exports, "spectrum-Icon--sizeXXL", () => $5ef39e0c80b682c7$export$b37777493a27e620, (v) => $5ef39e0c80b682c7$export$b37777493a27e620 = v);
15
- $parcel$export(module.exports, "spectrum-Icon--sizeXXS", () => $5ef39e0c80b682c7$export$cab8448604b31f43, (v) => $5ef39e0c80b682c7$export$cab8448604b31f43 = v);
16
- $parcel$export(module.exports, "spectrum-UIIcon", () => $5ef39e0c80b682c7$export$c7db7fdc5aac13aa, (v) => $5ef39e0c80b682c7$export$c7db7fdc5aac13aa = v);
17
- $parcel$export(module.exports, "spectrum-UIIcon--large", () => $5ef39e0c80b682c7$export$2265a487ad399d8b, (v) => $5ef39e0c80b682c7$export$2265a487ad399d8b = v);
18
- $parcel$export(module.exports, "spectrum-UIIcon--medium", () => $5ef39e0c80b682c7$export$a6044013cf72ddc9, (v) => $5ef39e0c80b682c7$export$a6044013cf72ddc9 = v);
19
- $parcel$export(module.exports, "spectrum-UIIcon-AlertMedium", () => $5ef39e0c80b682c7$export$83be8302c01b6478, (v) => $5ef39e0c80b682c7$export$83be8302c01b6478 = v);
20
- $parcel$export(module.exports, "spectrum-UIIcon-AlertSmall", () => $5ef39e0c80b682c7$export$57b49d6ee2e9f187, (v) => $5ef39e0c80b682c7$export$57b49d6ee2e9f187 = v);
21
- $parcel$export(module.exports, "spectrum-UIIcon-ArrowDownSmall", () => $5ef39e0c80b682c7$export$81968d05e3681b3f, (v) => $5ef39e0c80b682c7$export$81968d05e3681b3f = v);
22
- $parcel$export(module.exports, "spectrum-UIIcon-ArrowLeftMedium", () => $5ef39e0c80b682c7$export$c0d655f335b5bc31, (v) => $5ef39e0c80b682c7$export$c0d655f335b5bc31 = v);
23
- $parcel$export(module.exports, "spectrum-UIIcon-Asterisk", () => $5ef39e0c80b682c7$export$cca4342eca45562, (v) => $5ef39e0c80b682c7$export$cca4342eca45562 = v);
24
- $parcel$export(module.exports, "spectrum-UIIcon-CheckmarkMedium", () => $5ef39e0c80b682c7$export$edc4a2e9af971b26, (v) => $5ef39e0c80b682c7$export$edc4a2e9af971b26 = v);
25
- $parcel$export(module.exports, "spectrum-UIIcon-CheckmarkSmall", () => $5ef39e0c80b682c7$export$9e665cb12e71e037, (v) => $5ef39e0c80b682c7$export$9e665cb12e71e037 = v);
26
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronDownMedium", () => $5ef39e0c80b682c7$export$2f91b7a7627906d5, (v) => $5ef39e0c80b682c7$export$2f91b7a7627906d5 = v);
27
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronDownSmall", () => $5ef39e0c80b682c7$export$56efb4ec9eb35c07, (v) => $5ef39e0c80b682c7$export$56efb4ec9eb35c07 = v);
28
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronLeftLarge", () => $5ef39e0c80b682c7$export$5861dfe1d581a528, (v) => $5ef39e0c80b682c7$export$5861dfe1d581a528 = v);
29
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronLeftMedium", () => $5ef39e0c80b682c7$export$595a122b60890c78, (v) => $5ef39e0c80b682c7$export$595a122b60890c78 = v);
30
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronRightLarge", () => $5ef39e0c80b682c7$export$596373794435f8bc, (v) => $5ef39e0c80b682c7$export$596373794435f8bc = v);
31
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronRightMedium", () => $5ef39e0c80b682c7$export$32b379a02cafbfb3, (v) => $5ef39e0c80b682c7$export$32b379a02cafbfb3 = v);
32
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronRightSmall", () => $5ef39e0c80b682c7$export$ee5de2c4d7c8faa4, (v) => $5ef39e0c80b682c7$export$ee5de2c4d7c8faa4 = v);
33
- $parcel$export(module.exports, "spectrum-UIIcon-ChevronUpSmall", () => $5ef39e0c80b682c7$export$c1cbae72fd236fd9, (v) => $5ef39e0c80b682c7$export$c1cbae72fd236fd9 = v);
34
- $parcel$export(module.exports, "spectrum-UIIcon-CornerTriangle", () => $5ef39e0c80b682c7$export$636d8cde4f6b7e6, (v) => $5ef39e0c80b682c7$export$636d8cde4f6b7e6 = v);
35
- $parcel$export(module.exports, "spectrum-UIIcon-CrossLarge", () => $5ef39e0c80b682c7$export$1f0ad4082256e3df, (v) => $5ef39e0c80b682c7$export$1f0ad4082256e3df = v);
36
- $parcel$export(module.exports, "spectrum-UIIcon-CrossMedium", () => $5ef39e0c80b682c7$export$1e0848411e254295, (v) => $5ef39e0c80b682c7$export$1e0848411e254295 = v);
37
- $parcel$export(module.exports, "spectrum-UIIcon-CrossSmall", () => $5ef39e0c80b682c7$export$1c1bddac0ae5fbe5, (v) => $5ef39e0c80b682c7$export$1c1bddac0ae5fbe5 = v);
38
- $parcel$export(module.exports, "spectrum-UIIcon-DashSmall", () => $5ef39e0c80b682c7$export$98de2b9917cd3b6a, (v) => $5ef39e0c80b682c7$export$98de2b9917cd3b6a = v);
39
- $parcel$export(module.exports, "spectrum-UIIcon-DoubleGripper", () => $5ef39e0c80b682c7$export$3c956876cb11c1e1, (v) => $5ef39e0c80b682c7$export$3c956876cb11c1e1 = v);
40
- $parcel$export(module.exports, "spectrum-UIIcon-FolderBreadcrumb", () => $5ef39e0c80b682c7$export$55cf2795737352fc, (v) => $5ef39e0c80b682c7$export$55cf2795737352fc = v);
41
- $parcel$export(module.exports, "spectrum-UIIcon-HelpMedium", () => $5ef39e0c80b682c7$export$d5d1e3e09ea6cd5, (v) => $5ef39e0c80b682c7$export$d5d1e3e09ea6cd5 = v);
42
- $parcel$export(module.exports, "spectrum-UIIcon-HelpSmall", () => $5ef39e0c80b682c7$export$f51b22382127207d, (v) => $5ef39e0c80b682c7$export$f51b22382127207d = v);
43
- $parcel$export(module.exports, "spectrum-UIIcon-InfoMedium", () => $5ef39e0c80b682c7$export$825a6c2340d3b7e5, (v) => $5ef39e0c80b682c7$export$825a6c2340d3b7e5 = v);
44
- $parcel$export(module.exports, "spectrum-UIIcon-InfoSmall", () => $5ef39e0c80b682c7$export$4828f4a6bfd26c04, (v) => $5ef39e0c80b682c7$export$4828f4a6bfd26c04 = v);
45
- $parcel$export(module.exports, "spectrum-UIIcon-ListGripper", () => $5ef39e0c80b682c7$export$1254ece141a8dac6, (v) => $5ef39e0c80b682c7$export$1254ece141a8dac6 = v);
46
- $parcel$export(module.exports, "spectrum-UIIcon-Magnifier", () => $5ef39e0c80b682c7$export$a33650c9f4cc191e, (v) => $5ef39e0c80b682c7$export$a33650c9f4cc191e = v);
47
- $parcel$export(module.exports, "spectrum-UIIcon-SkipLeft", () => $5ef39e0c80b682c7$export$9eb19533e4b8cc28, (v) => $5ef39e0c80b682c7$export$9eb19533e4b8cc28 = v);
48
- $parcel$export(module.exports, "spectrum-UIIcon-SkipRight", () => $5ef39e0c80b682c7$export$67704939e41f705a, (v) => $5ef39e0c80b682c7$export$67704939e41f705a = v);
49
- $parcel$export(module.exports, "spectrum-UIIcon-Star", () => $5ef39e0c80b682c7$export$c4d219c150b98c92, (v) => $5ef39e0c80b682c7$export$c4d219c150b98c92 = v);
50
- $parcel$export(module.exports, "spectrum-UIIcon-StarOutline", () => $5ef39e0c80b682c7$export$bcda0a6a6d7202af, (v) => $5ef39e0c80b682c7$export$bcda0a6a6d7202af = v);
51
- $parcel$export(module.exports, "spectrum-UIIcon-SuccessMedium", () => $5ef39e0c80b682c7$export$d18d2d837989a797, (v) => $5ef39e0c80b682c7$export$d18d2d837989a797 = v);
52
- $parcel$export(module.exports, "spectrum-UIIcon-SuccessSmall", () => $5ef39e0c80b682c7$export$506ac7a1a72a2c65, (v) => $5ef39e0c80b682c7$export$506ac7a1a72a2c65 = v);
53
- $parcel$export(module.exports, "spectrum-UIIcon-TripleGripper", () => $5ef39e0c80b682c7$export$12b8600bcd969018, (v) => $5ef39e0c80b682c7$export$12b8600bcd969018 = v);
54
- var $5ef39e0c80b682c7$export$a88a8dbe29386d31;
55
- var $5ef39e0c80b682c7$export$4c0c83b3f4303ef8;
56
- var $5ef39e0c80b682c7$export$d374b04f30360026;
57
- var $5ef39e0c80b682c7$export$8d23c37ef2a4f13e;
58
- var $5ef39e0c80b682c7$export$8f1693ac47916bbf;
59
- var $5ef39e0c80b682c7$export$34ce05647f0c65e;
60
- var $5ef39e0c80b682c7$export$c6e70a22e841bc1b;
61
- var $5ef39e0c80b682c7$export$557c0af6873b4222;
62
- var $5ef39e0c80b682c7$export$b37777493a27e620;
63
- var $5ef39e0c80b682c7$export$cab8448604b31f43;
64
- var $5ef39e0c80b682c7$export$c7db7fdc5aac13aa;
65
- var $5ef39e0c80b682c7$export$2265a487ad399d8b;
66
- var $5ef39e0c80b682c7$export$a6044013cf72ddc9;
67
- var $5ef39e0c80b682c7$export$83be8302c01b6478;
68
- var $5ef39e0c80b682c7$export$57b49d6ee2e9f187;
69
- var $5ef39e0c80b682c7$export$81968d05e3681b3f;
70
- var $5ef39e0c80b682c7$export$c0d655f335b5bc31;
71
- var $5ef39e0c80b682c7$export$cca4342eca45562;
72
- var $5ef39e0c80b682c7$export$edc4a2e9af971b26;
73
- var $5ef39e0c80b682c7$export$9e665cb12e71e037;
74
- var $5ef39e0c80b682c7$export$2f91b7a7627906d5;
75
- var $5ef39e0c80b682c7$export$56efb4ec9eb35c07;
76
- var $5ef39e0c80b682c7$export$5861dfe1d581a528;
77
- var $5ef39e0c80b682c7$export$595a122b60890c78;
78
- var $5ef39e0c80b682c7$export$596373794435f8bc;
79
- var $5ef39e0c80b682c7$export$32b379a02cafbfb3;
80
- var $5ef39e0c80b682c7$export$ee5de2c4d7c8faa4;
81
- var $5ef39e0c80b682c7$export$c1cbae72fd236fd9;
82
- var $5ef39e0c80b682c7$export$636d8cde4f6b7e6;
83
- var $5ef39e0c80b682c7$export$1f0ad4082256e3df;
84
- var $5ef39e0c80b682c7$export$1e0848411e254295;
85
- var $5ef39e0c80b682c7$export$1c1bddac0ae5fbe5;
86
- var $5ef39e0c80b682c7$export$98de2b9917cd3b6a;
87
- var $5ef39e0c80b682c7$export$3c956876cb11c1e1;
88
- var $5ef39e0c80b682c7$export$55cf2795737352fc;
89
- var $5ef39e0c80b682c7$export$d5d1e3e09ea6cd5;
90
- var $5ef39e0c80b682c7$export$f51b22382127207d;
91
- var $5ef39e0c80b682c7$export$825a6c2340d3b7e5;
92
- var $5ef39e0c80b682c7$export$4828f4a6bfd26c04;
93
- var $5ef39e0c80b682c7$export$1254ece141a8dac6;
94
- var $5ef39e0c80b682c7$export$a33650c9f4cc191e;
95
- var $5ef39e0c80b682c7$export$9eb19533e4b8cc28;
96
- var $5ef39e0c80b682c7$export$67704939e41f705a;
97
- var $5ef39e0c80b682c7$export$c4d219c150b98c92;
98
- var $5ef39e0c80b682c7$export$bcda0a6a6d7202af;
99
- var $5ef39e0c80b682c7$export$d18d2d837989a797;
100
- var $5ef39e0c80b682c7$export$506ac7a1a72a2c65;
101
- var $5ef39e0c80b682c7$export$12b8600bcd969018;
102
- $5ef39e0c80b682c7$export$a88a8dbe29386d31 = `wBx8DG_spectrum--large`;
103
- $5ef39e0c80b682c7$export$4c0c83b3f4303ef8 = `wBx8DG_spectrum--medium`;
104
- $5ef39e0c80b682c7$export$d374b04f30360026 = `wBx8DG_spectrum-Icon`;
105
- $5ef39e0c80b682c7$export$8d23c37ef2a4f13e = `wBx8DG_spectrum-Icon--sizeL`;
106
- $5ef39e0c80b682c7$export$8f1693ac47916bbf = `wBx8DG_spectrum-Icon--sizeM`;
107
- $5ef39e0c80b682c7$export$34ce05647f0c65e = `wBx8DG_spectrum-Icon--sizeS`;
108
- $5ef39e0c80b682c7$export$c6e70a22e841bc1b = `wBx8DG_spectrum-Icon--sizeXL`;
109
- $5ef39e0c80b682c7$export$557c0af6873b4222 = `wBx8DG_spectrum-Icon--sizeXS`;
110
- $5ef39e0c80b682c7$export$b37777493a27e620 = `wBx8DG_spectrum-Icon--sizeXXL`;
111
- $5ef39e0c80b682c7$export$cab8448604b31f43 = `wBx8DG_spectrum-Icon--sizeXXS`;
112
- $5ef39e0c80b682c7$export$c7db7fdc5aac13aa = `wBx8DG_spectrum-UIIcon`;
113
- $5ef39e0c80b682c7$export$2265a487ad399d8b = `wBx8DG_spectrum-UIIcon--large`;
114
- $5ef39e0c80b682c7$export$a6044013cf72ddc9 = `wBx8DG_spectrum-UIIcon--medium`;
115
- $5ef39e0c80b682c7$export$83be8302c01b6478 = `wBx8DG_spectrum-UIIcon-AlertMedium`;
116
- $5ef39e0c80b682c7$export$57b49d6ee2e9f187 = `wBx8DG_spectrum-UIIcon-AlertSmall`;
117
- $5ef39e0c80b682c7$export$81968d05e3681b3f = `wBx8DG_spectrum-UIIcon-ArrowDownSmall`;
118
- $5ef39e0c80b682c7$export$c0d655f335b5bc31 = `wBx8DG_spectrum-UIIcon-ArrowLeftMedium`;
119
- $5ef39e0c80b682c7$export$cca4342eca45562 = `wBx8DG_spectrum-UIIcon-Asterisk`;
120
- $5ef39e0c80b682c7$export$edc4a2e9af971b26 = `wBx8DG_spectrum-UIIcon-CheckmarkMedium`;
121
- $5ef39e0c80b682c7$export$9e665cb12e71e037 = `wBx8DG_spectrum-UIIcon-CheckmarkSmall`;
122
- $5ef39e0c80b682c7$export$2f91b7a7627906d5 = `wBx8DG_spectrum-UIIcon-ChevronDownMedium`;
123
- $5ef39e0c80b682c7$export$56efb4ec9eb35c07 = `wBx8DG_spectrum-UIIcon-ChevronDownSmall`;
124
- $5ef39e0c80b682c7$export$5861dfe1d581a528 = `wBx8DG_spectrum-UIIcon-ChevronLeftLarge`;
125
- $5ef39e0c80b682c7$export$595a122b60890c78 = `wBx8DG_spectrum-UIIcon-ChevronLeftMedium`;
126
- $5ef39e0c80b682c7$export$596373794435f8bc = `wBx8DG_spectrum-UIIcon-ChevronRightLarge`;
127
- $5ef39e0c80b682c7$export$32b379a02cafbfb3 = `wBx8DG_spectrum-UIIcon-ChevronRightMedium`;
128
- $5ef39e0c80b682c7$export$ee5de2c4d7c8faa4 = `wBx8DG_spectrum-UIIcon-ChevronRightSmall`;
129
- $5ef39e0c80b682c7$export$c1cbae72fd236fd9 = `wBx8DG_spectrum-UIIcon-ChevronUpSmall`;
130
- $5ef39e0c80b682c7$export$636d8cde4f6b7e6 = `wBx8DG_spectrum-UIIcon-CornerTriangle`;
131
- $5ef39e0c80b682c7$export$1f0ad4082256e3df = `wBx8DG_spectrum-UIIcon-CrossLarge`;
132
- $5ef39e0c80b682c7$export$1e0848411e254295 = `wBx8DG_spectrum-UIIcon-CrossMedium`;
133
- $5ef39e0c80b682c7$export$1c1bddac0ae5fbe5 = `wBx8DG_spectrum-UIIcon-CrossSmall`;
134
- $5ef39e0c80b682c7$export$98de2b9917cd3b6a = `wBx8DG_spectrum-UIIcon-DashSmall`;
135
- $5ef39e0c80b682c7$export$3c956876cb11c1e1 = `wBx8DG_spectrum-UIIcon-DoubleGripper`;
136
- $5ef39e0c80b682c7$export$55cf2795737352fc = `wBx8DG_spectrum-UIIcon-FolderBreadcrumb`;
137
- $5ef39e0c80b682c7$export$d5d1e3e09ea6cd5 = `wBx8DG_spectrum-UIIcon-HelpMedium`;
138
- $5ef39e0c80b682c7$export$f51b22382127207d = `wBx8DG_spectrum-UIIcon-HelpSmall`;
139
- $5ef39e0c80b682c7$export$825a6c2340d3b7e5 = `wBx8DG_spectrum-UIIcon-InfoMedium`;
140
- $5ef39e0c80b682c7$export$4828f4a6bfd26c04 = `wBx8DG_spectrum-UIIcon-InfoSmall`;
141
- $5ef39e0c80b682c7$export$1254ece141a8dac6 = `wBx8DG_spectrum-UIIcon-ListGripper`;
142
- $5ef39e0c80b682c7$export$a33650c9f4cc191e = `wBx8DG_spectrum-UIIcon-Magnifier`;
143
- $5ef39e0c80b682c7$export$9eb19533e4b8cc28 = `wBx8DG_spectrum-UIIcon-SkipLeft`;
144
- $5ef39e0c80b682c7$export$67704939e41f705a = `wBx8DG_spectrum-UIIcon-SkipRight`;
145
- $5ef39e0c80b682c7$export$c4d219c150b98c92 = `wBx8DG_spectrum-UIIcon-Star`;
146
- $5ef39e0c80b682c7$export$bcda0a6a6d7202af = `wBx8DG_spectrum-UIIcon-StarOutline`;
147
- $5ef39e0c80b682c7$export$d18d2d837989a797 = `wBx8DG_spectrum-UIIcon-SuccessMedium`;
148
- $5ef39e0c80b682c7$export$506ac7a1a72a2c65 = `wBx8DG_spectrum-UIIcon-SuccessSmall`;
149
- $5ef39e0c80b682c7$export$12b8600bcd969018 = `wBx8DG_spectrum-UIIcon-TripleGripper`;
150
-
151
-
152
- //# sourceMappingURL=icon_vars_css.main.js.map
@@ -1 +0,0 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AACA,IAAA;AA/CA,4CAAoC,CAAC,sBAAsB,CAAC;AAC5D,4CAAqC,CAAC,uBAAuB,CAAC;AAC9D,4CAAkC,CAAC,oBAAoB,CAAC;AACxD,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,2CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAA0C,CAAC,4BAA4B,CAAC;AACxE,4CAA0C,CAAC,4BAA4B,CAAC;AACxE,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAAoC,CAAC,sBAAsB,CAAC;AAC5D,4CAA2C,CAAC,6BAA6B,CAAC;AAC1E,4CAA4C,CAAC,8BAA8B,CAAC;AAC5E,4CAAgD,CAAC,kCAAkC,CAAC;AACpF,4CAA+C,CAAC,iCAAiC,CAAC;AAClF,4CAAmD,CAAC,qCAAqC,CAAC;AAC1F,4CAAoD,CAAC,sCAAsC,CAAC;AAC5F,2CAA6C,CAAC,+BAA+B,CAAC;AAC9E,4CAAoD,CAAC,sCAAsC,CAAC;AAC5F,4CAAmD,CAAC,qCAAqC,CAAC;AAC1F,4CAAsD,CAAC,wCAAwC,CAAC;AAChG,4CAAqD,CAAC,uCAAuC,CAAC;AAC9F,4CAAqD,CAAC,uCAAuC,CAAC;AAC9F,4CAAsD,CAAC,wCAAwC,CAAC;AAChG,4CAAsD,CAAC,wCAAwC,CAAC;AAChG,4CAAuD,CAAC,yCAAyC,CAAC;AAClG,4CAAsD,CAAC,wCAAwC,CAAC;AAChG,4CAAmD,CAAC,qCAAqC,CAAC;AAC1F,2CAAmD,CAAC,qCAAqC,CAAC;AAC1F,4CAA+C,CAAC,iCAAiC,CAAC;AAClF,4CAAgD,CAAC,kCAAkC,CAAC;AACpF,4CAA+C,CAAC,iCAAiC,CAAC;AAClF,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAkD,CAAC,oCAAoC,CAAC;AACxF,4CAAqD,CAAC,uCAAuC,CAAC;AAC9F,2CAA+C,CAAC,iCAAiC,CAAC;AAClF,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAA+C,CAAC,iCAAiC,CAAC;AAClF,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAgD,CAAC,kCAAkC,CAAC;AACpF,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAA6C,CAAC,+BAA+B,CAAC;AAC9E,4CAA8C,CAAC,gCAAgC,CAAC;AAChF,4CAAyC,CAAC,2BAA2B,CAAC;AACtE,4CAAgD,CAAC,kCAAkC,CAAC;AACpF,4CAAkD,CAAC,oCAAoC,CAAC;AACxF,4CAAiD,CAAC,mCAAmC,CAAC;AACtF,4CAAkD,CAAC,oCAAoC,CAAC","sources":["packages/@adobe/spectrum-css-temp/components/icon/vars.css"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n@import './index.css';\n"],"names":[],"version":3,"file":"icon_vars_css.main.js.map"}