@7shifts/sous-chef 3.65.1 → 3.66.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/icons/components/IconDollarSign.d.ts +9 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/index.css +3 -0
- package/dist/index.css.map +1 -1
- package/dist/index.js +156 -126
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +160 -126
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -154,7 +154,7 @@ const capitalizeFirstLetter = text => {
|
|
|
154
154
|
};
|
|
155
155
|
const kebabize = str => str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, ($, ofs) => (ofs ? '-' : '') + $.toLowerCase());
|
|
156
156
|
|
|
157
|
-
const _excluded$
|
|
157
|
+
const _excluded$2X = ["m", "margin", "mt", "marginTop", "mr", "marginRight", "mb", "marginBottom", "ml", "marginLeft"];
|
|
158
158
|
const getPositionProps = _ref => {
|
|
159
159
|
let {
|
|
160
160
|
m,
|
|
@@ -168,7 +168,7 @@ const getPositionProps = _ref => {
|
|
|
168
168
|
ml,
|
|
169
169
|
marginLeft
|
|
170
170
|
} = _ref,
|
|
171
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
171
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2X);
|
|
172
172
|
return {
|
|
173
173
|
positionProps: {
|
|
174
174
|
m,
|
|
@@ -204,7 +204,7 @@ const getDataProps = (props, config) => {
|
|
|
204
204
|
});
|
|
205
205
|
};
|
|
206
206
|
|
|
207
|
-
const _excluded$
|
|
207
|
+
const _excluded$2W = ["children", "space", "flex", "alignItems", "justifyContent", "inlineFlex", "direction", "flexItems", "flexWrap", "flexGrow", "testId", "extraClass"];
|
|
208
208
|
/**
|
|
209
209
|
* Flex is a internal component used by Stack and Inline. DON'T use this component outside of Sous Chef
|
|
210
210
|
*/
|
|
@@ -223,7 +223,7 @@ const Flex = _ref => {
|
|
|
223
223
|
testId,
|
|
224
224
|
extraClass
|
|
225
225
|
} = _ref,
|
|
226
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
226
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2W);
|
|
227
227
|
const {
|
|
228
228
|
positionProps,
|
|
229
229
|
otherProps
|
|
@@ -264,7 +264,7 @@ const Flex = _ref => {
|
|
|
264
264
|
}, child)));
|
|
265
265
|
};
|
|
266
266
|
|
|
267
|
-
const _excluded$
|
|
267
|
+
const _excluded$2V = ["alignItems"];
|
|
268
268
|
/**
|
|
269
269
|
* Layout component to easily stack elements up in a column.
|
|
270
270
|
*/
|
|
@@ -272,7 +272,7 @@ const Stack = _ref => {
|
|
|
272
272
|
let {
|
|
273
273
|
alignItems = 'stretch'
|
|
274
274
|
} = _ref,
|
|
275
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
275
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2V);
|
|
276
276
|
return React.createElement(Flex, _extends({}, props, {
|
|
277
277
|
alignItems: alignItems,
|
|
278
278
|
direction: "column"
|
|
@@ -281,7 +281,7 @@ const Stack = _ref => {
|
|
|
281
281
|
|
|
282
282
|
var styles$1k = {"caption":"_tMhXr","label":"_NfOw5","label--truncate":"_M3aFK","toggle":"_QDQZ1","toggle__label":"_52dky","toggle__caption":"_A-tgL","toggle__switch":"_kBjjH"};
|
|
283
283
|
|
|
284
|
-
const _excluded$
|
|
284
|
+
const _excluded$2U = ["checked", "label", "caption", "onChange", "disabled", "id", "testId"];
|
|
285
285
|
/**
|
|
286
286
|
* Used when you want to allow the user to turn some information ON and OFF.
|
|
287
287
|
*
|
|
@@ -297,7 +297,7 @@ const Toggle = _ref => {
|
|
|
297
297
|
id,
|
|
298
298
|
testId
|
|
299
299
|
} = _ref,
|
|
300
|
-
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
300
|
+
otherProps = _objectWithoutPropertiesLoose(_ref, _excluded$2U);
|
|
301
301
|
const {
|
|
302
302
|
dataProps
|
|
303
303
|
} = getDataProps(otherProps);
|
|
@@ -820,7 +820,7 @@ const COMPONENT_NAMES = {
|
|
|
820
820
|
BUTTON: 'BUTTON'
|
|
821
821
|
};
|
|
822
822
|
|
|
823
|
-
const _excluded$
|
|
823
|
+
const _excluded$2T = ["children", "type", "theme", "disabled", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "id", "loading", "title", "href", "target", "testId", "size"],
|
|
824
824
|
_excluded2 = ["id", "onClick", "onMouseEnter", "onMouseLeave", "onBlur", "onFocus", "onKeyDown", "className", "type", "disabled", "href", "target", "children", "position", "dataProps"];
|
|
825
825
|
const ButtonComponent = (_ref, ref) => {
|
|
826
826
|
let {
|
|
@@ -842,7 +842,7 @@ const ButtonComponent = (_ref, ref) => {
|
|
|
842
842
|
testId,
|
|
843
843
|
size
|
|
844
844
|
} = _ref,
|
|
845
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
845
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$2T);
|
|
846
846
|
const {
|
|
847
847
|
positionProps,
|
|
848
848
|
otherProps
|
|
@@ -982,7 +982,7 @@ const useIsInsideComponent = parentComponentName => {
|
|
|
982
982
|
return componentName === parentComponentName;
|
|
983
983
|
};
|
|
984
984
|
|
|
985
|
-
const _excluded$
|
|
985
|
+
const _excluded$2S = ["testId", "size", "color", "style"];
|
|
986
986
|
const IconInfoCircle = forwardRef((_ref, ref) => {
|
|
987
987
|
let {
|
|
988
988
|
testId = 'icon-info-circle',
|
|
@@ -990,7 +990,7 @@ const IconInfoCircle = forwardRef((_ref, ref) => {
|
|
|
990
990
|
color,
|
|
991
991
|
style
|
|
992
992
|
} = _ref,
|
|
993
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
993
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2S);
|
|
994
994
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
995
995
|
const styleProps = {
|
|
996
996
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1013,7 +1013,7 @@ const IconInfoCircle = forwardRef((_ref, ref) => {
|
|
|
1013
1013
|
});
|
|
1014
1014
|
IconInfoCircle.displayName = 'IconInfoCircle';
|
|
1015
1015
|
|
|
1016
|
-
const _excluded$
|
|
1016
|
+
const _excluded$2R = ["testId", "size", "color", "style"];
|
|
1017
1017
|
const IconAnalytics = forwardRef((_ref, ref) => {
|
|
1018
1018
|
let {
|
|
1019
1019
|
testId = 'icon-analytics',
|
|
@@ -1021,7 +1021,7 @@ const IconAnalytics = forwardRef((_ref, ref) => {
|
|
|
1021
1021
|
color,
|
|
1022
1022
|
style
|
|
1023
1023
|
} = _ref,
|
|
1024
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1024
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2R);
|
|
1025
1025
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1026
1026
|
const styleProps = {
|
|
1027
1027
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1044,7 +1044,7 @@ const IconAnalytics = forwardRef((_ref, ref) => {
|
|
|
1044
1044
|
});
|
|
1045
1045
|
IconAnalytics.displayName = 'IconAnalytics';
|
|
1046
1046
|
|
|
1047
|
-
const _excluded$
|
|
1047
|
+
const _excluded$2Q = ["testId", "size", "color", "style"];
|
|
1048
1048
|
const IconArrowDownWideShort = forwardRef((_ref, ref) => {
|
|
1049
1049
|
let {
|
|
1050
1050
|
testId = 'icon-arrow-down-wide-short',
|
|
@@ -1052,7 +1052,7 @@ const IconArrowDownWideShort = forwardRef((_ref, ref) => {
|
|
|
1052
1052
|
color,
|
|
1053
1053
|
style
|
|
1054
1054
|
} = _ref,
|
|
1055
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1055
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2Q);
|
|
1056
1056
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1057
1057
|
const styleProps = {
|
|
1058
1058
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1073,7 +1073,7 @@ const IconArrowDownWideShort = forwardRef((_ref, ref) => {
|
|
|
1073
1073
|
});
|
|
1074
1074
|
IconArrowDownWideShort.displayName = 'IconArrowDownWideShort';
|
|
1075
1075
|
|
|
1076
|
-
const _excluded$
|
|
1076
|
+
const _excluded$2P = ["testId", "size", "color", "style"];
|
|
1077
1077
|
const IconArrowDown = forwardRef((_ref, ref) => {
|
|
1078
1078
|
let {
|
|
1079
1079
|
testId = 'icon-arrow-down',
|
|
@@ -1081,7 +1081,7 @@ const IconArrowDown = forwardRef((_ref, ref) => {
|
|
|
1081
1081
|
color,
|
|
1082
1082
|
style
|
|
1083
1083
|
} = _ref,
|
|
1084
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1084
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2P);
|
|
1085
1085
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1086
1086
|
const styleProps = {
|
|
1087
1087
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1104,7 +1104,7 @@ const IconArrowDown = forwardRef((_ref, ref) => {
|
|
|
1104
1104
|
});
|
|
1105
1105
|
IconArrowDown.displayName = 'IconArrowDown';
|
|
1106
1106
|
|
|
1107
|
-
const _excluded$
|
|
1107
|
+
const _excluded$2O = ["testId", "size", "color", "style"];
|
|
1108
1108
|
const IconArrowLeft = forwardRef((_ref, ref) => {
|
|
1109
1109
|
let {
|
|
1110
1110
|
testId = 'icon-arrow-left',
|
|
@@ -1112,7 +1112,7 @@ const IconArrowLeft = forwardRef((_ref, ref) => {
|
|
|
1112
1112
|
color,
|
|
1113
1113
|
style
|
|
1114
1114
|
} = _ref,
|
|
1115
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1115
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2O);
|
|
1116
1116
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1117
1117
|
const styleProps = {
|
|
1118
1118
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1135,7 +1135,7 @@ const IconArrowLeft = forwardRef((_ref, ref) => {
|
|
|
1135
1135
|
});
|
|
1136
1136
|
IconArrowLeft.displayName = 'IconArrowLeft';
|
|
1137
1137
|
|
|
1138
|
-
const _excluded$
|
|
1138
|
+
const _excluded$2N = ["testId", "size", "color", "style"];
|
|
1139
1139
|
const IconArrowRight = forwardRef((_ref, ref) => {
|
|
1140
1140
|
let {
|
|
1141
1141
|
testId = 'icon-arrow-right',
|
|
@@ -1143,7 +1143,7 @@ const IconArrowRight = forwardRef((_ref, ref) => {
|
|
|
1143
1143
|
color,
|
|
1144
1144
|
style
|
|
1145
1145
|
} = _ref,
|
|
1146
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1146
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2N);
|
|
1147
1147
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1148
1148
|
const styleProps = {
|
|
1149
1149
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1166,7 +1166,7 @@ const IconArrowRight = forwardRef((_ref, ref) => {
|
|
|
1166
1166
|
});
|
|
1167
1167
|
IconArrowRight.displayName = 'IconArrowRight';
|
|
1168
1168
|
|
|
1169
|
-
const _excluded$
|
|
1169
|
+
const _excluded$2M = ["testId", "size", "color", "style"];
|
|
1170
1170
|
const IconArrowToTop = forwardRef((_ref, ref) => {
|
|
1171
1171
|
let {
|
|
1172
1172
|
testId = 'icon-arrow-to-top',
|
|
@@ -1174,7 +1174,7 @@ const IconArrowToTop = forwardRef((_ref, ref) => {
|
|
|
1174
1174
|
color,
|
|
1175
1175
|
style
|
|
1176
1176
|
} = _ref,
|
|
1177
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1177
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2M);
|
|
1178
1178
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1179
1179
|
const styleProps = {
|
|
1180
1180
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1195,7 +1195,7 @@ const IconArrowToTop = forwardRef((_ref, ref) => {
|
|
|
1195
1195
|
});
|
|
1196
1196
|
IconArrowToTop.displayName = 'IconArrowToTop';
|
|
1197
1197
|
|
|
1198
|
-
const _excluded$
|
|
1198
|
+
const _excluded$2L = ["testId", "size", "color", "style"];
|
|
1199
1199
|
const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
|
|
1200
1200
|
let {
|
|
1201
1201
|
testId = 'icon-arrow-turn-down-right',
|
|
@@ -1203,7 +1203,7 @@ const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
|
|
|
1203
1203
|
color,
|
|
1204
1204
|
style
|
|
1205
1205
|
} = _ref,
|
|
1206
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1206
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2L);
|
|
1207
1207
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1208
1208
|
const styleProps = {
|
|
1209
1209
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1232,7 +1232,7 @@ const IconArrowTurnDownRight = forwardRef((_ref, ref) => {
|
|
|
1232
1232
|
});
|
|
1233
1233
|
IconArrowTurnDownRight.displayName = 'IconArrowTurnDownRight';
|
|
1234
1234
|
|
|
1235
|
-
const _excluded$
|
|
1235
|
+
const _excluded$2K = ["testId", "size", "color", "style"];
|
|
1236
1236
|
const IconArrowUp = forwardRef((_ref, ref) => {
|
|
1237
1237
|
let {
|
|
1238
1238
|
testId = 'icon-arrow-up',
|
|
@@ -1240,7 +1240,7 @@ const IconArrowUp = forwardRef((_ref, ref) => {
|
|
|
1240
1240
|
color,
|
|
1241
1241
|
style
|
|
1242
1242
|
} = _ref,
|
|
1243
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1243
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2K);
|
|
1244
1244
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1245
1245
|
const styleProps = {
|
|
1246
1246
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1263,7 +1263,7 @@ const IconArrowUp = forwardRef((_ref, ref) => {
|
|
|
1263
1263
|
});
|
|
1264
1264
|
IconArrowUp.displayName = 'IconArrowUp';
|
|
1265
1265
|
|
|
1266
|
-
const _excluded$
|
|
1266
|
+
const _excluded$2J = ["testId", "size", "color", "style"];
|
|
1267
1267
|
const IconAward = forwardRef((_ref, ref) => {
|
|
1268
1268
|
let {
|
|
1269
1269
|
testId = 'icon-award',
|
|
@@ -1271,7 +1271,7 @@ const IconAward = forwardRef((_ref, ref) => {
|
|
|
1271
1271
|
color,
|
|
1272
1272
|
style
|
|
1273
1273
|
} = _ref,
|
|
1274
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1274
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2J);
|
|
1275
1275
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1276
1276
|
const styleProps = {
|
|
1277
1277
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1294,7 +1294,7 @@ const IconAward = forwardRef((_ref, ref) => {
|
|
|
1294
1294
|
});
|
|
1295
1295
|
IconAward.displayName = 'IconAward';
|
|
1296
1296
|
|
|
1297
|
-
const _excluded$
|
|
1297
|
+
const _excluded$2I = ["testId", "size", "color", "style"];
|
|
1298
1298
|
const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
|
|
1299
1299
|
let {
|
|
1300
1300
|
testId = 'icon-awful-monochromatic',
|
|
@@ -1302,7 +1302,7 @@ const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1302
1302
|
color,
|
|
1303
1303
|
style
|
|
1304
1304
|
} = _ref,
|
|
1305
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1305
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2I);
|
|
1306
1306
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1307
1307
|
const styleProps = {
|
|
1308
1308
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1355,7 +1355,7 @@ const IconAwfulMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1355
1355
|
});
|
|
1356
1356
|
IconAwfulMonochromatic.displayName = 'IconAwfulMonochromatic';
|
|
1357
1357
|
|
|
1358
|
-
const _excluded$
|
|
1358
|
+
const _excluded$2H = ["testId", "size", "color", "style"];
|
|
1359
1359
|
const IconAwful = forwardRef((_ref, ref) => {
|
|
1360
1360
|
let {
|
|
1361
1361
|
testId = 'icon-awful',
|
|
@@ -1363,7 +1363,7 @@ const IconAwful = forwardRef((_ref, ref) => {
|
|
|
1363
1363
|
color,
|
|
1364
1364
|
style
|
|
1365
1365
|
} = _ref,
|
|
1366
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1366
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2H);
|
|
1367
1367
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1368
1368
|
const styleProps = {
|
|
1369
1369
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1404,7 +1404,7 @@ const IconAwful = forwardRef((_ref, ref) => {
|
|
|
1404
1404
|
});
|
|
1405
1405
|
IconAwful.displayName = 'IconAwful';
|
|
1406
1406
|
|
|
1407
|
-
const _excluded$
|
|
1407
|
+
const _excluded$2G = ["testId", "size", "color", "style"];
|
|
1408
1408
|
const IconBadMonochromatic = forwardRef((_ref, ref) => {
|
|
1409
1409
|
let {
|
|
1410
1410
|
testId = 'icon-bad-monochromatic',
|
|
@@ -1412,7 +1412,7 @@ const IconBadMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1412
1412
|
color,
|
|
1413
1413
|
style
|
|
1414
1414
|
} = _ref,
|
|
1415
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1415
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2G);
|
|
1416
1416
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1417
1417
|
const styleProps = {
|
|
1418
1418
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1451,7 +1451,7 @@ const IconBadMonochromatic = forwardRef((_ref, ref) => {
|
|
|
1451
1451
|
});
|
|
1452
1452
|
IconBadMonochromatic.displayName = 'IconBadMonochromatic';
|
|
1453
1453
|
|
|
1454
|
-
const _excluded$
|
|
1454
|
+
const _excluded$2F = ["testId", "size", "color", "style"];
|
|
1455
1455
|
const IconBad = forwardRef((_ref, ref) => {
|
|
1456
1456
|
let {
|
|
1457
1457
|
testId = 'icon-bad',
|
|
@@ -1459,7 +1459,7 @@ const IconBad = forwardRef((_ref, ref) => {
|
|
|
1459
1459
|
color,
|
|
1460
1460
|
style
|
|
1461
1461
|
} = _ref,
|
|
1462
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1462
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2F);
|
|
1463
1463
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1464
1464
|
const styleProps = {
|
|
1465
1465
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1486,7 +1486,7 @@ const IconBad = forwardRef((_ref, ref) => {
|
|
|
1486
1486
|
});
|
|
1487
1487
|
IconBad.displayName = 'IconBad';
|
|
1488
1488
|
|
|
1489
|
-
const _excluded$
|
|
1489
|
+
const _excluded$2E = ["testId", "size", "color", "style"];
|
|
1490
1490
|
const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
|
|
1491
1491
|
let {
|
|
1492
1492
|
testId = 'icon-balance-scale-left',
|
|
@@ -1494,7 +1494,7 @@ const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
|
|
|
1494
1494
|
color,
|
|
1495
1495
|
style
|
|
1496
1496
|
} = _ref,
|
|
1497
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1497
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2E);
|
|
1498
1498
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1499
1499
|
const styleProps = {
|
|
1500
1500
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1522,7 +1522,7 @@ const IconBalanceScaleLeft = forwardRef((_ref, ref) => {
|
|
|
1522
1522
|
});
|
|
1523
1523
|
IconBalanceScaleLeft.displayName = 'IconBalanceScaleLeft';
|
|
1524
1524
|
|
|
1525
|
-
const _excluded$
|
|
1525
|
+
const _excluded$2D = ["testId", "size", "color", "style"];
|
|
1526
1526
|
const IconBalanceScale = forwardRef((_ref, ref) => {
|
|
1527
1527
|
let {
|
|
1528
1528
|
testId = 'icon-balance-scale',
|
|
@@ -1530,7 +1530,7 @@ const IconBalanceScale = forwardRef((_ref, ref) => {
|
|
|
1530
1530
|
color,
|
|
1531
1531
|
style
|
|
1532
1532
|
} = _ref,
|
|
1533
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1533
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2D);
|
|
1534
1534
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1535
1535
|
const styleProps = {
|
|
1536
1536
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1558,7 +1558,7 @@ const IconBalanceScale = forwardRef((_ref, ref) => {
|
|
|
1558
1558
|
});
|
|
1559
1559
|
IconBalanceScale.displayName = 'IconBalanceScale';
|
|
1560
1560
|
|
|
1561
|
-
const _excluded$
|
|
1561
|
+
const _excluded$2C = ["testId", "size", "color", "style"];
|
|
1562
1562
|
const IconBan = forwardRef((_ref, ref) => {
|
|
1563
1563
|
let {
|
|
1564
1564
|
testId = 'icon-ban',
|
|
@@ -1566,7 +1566,7 @@ const IconBan = forwardRef((_ref, ref) => {
|
|
|
1566
1566
|
color,
|
|
1567
1567
|
style
|
|
1568
1568
|
} = _ref,
|
|
1569
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1569
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2C);
|
|
1570
1570
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1571
1571
|
const styleProps = {
|
|
1572
1572
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1587,7 +1587,7 @@ const IconBan = forwardRef((_ref, ref) => {
|
|
|
1587
1587
|
});
|
|
1588
1588
|
IconBan.displayName = 'IconBan';
|
|
1589
1589
|
|
|
1590
|
-
const _excluded$
|
|
1590
|
+
const _excluded$2B = ["testId", "size", "color", "style"];
|
|
1591
1591
|
const IconBarsH = forwardRef((_ref, ref) => {
|
|
1592
1592
|
let {
|
|
1593
1593
|
testId = 'icon-bars-h',
|
|
@@ -1595,7 +1595,7 @@ const IconBarsH = forwardRef((_ref, ref) => {
|
|
|
1595
1595
|
color,
|
|
1596
1596
|
style
|
|
1597
1597
|
} = _ref,
|
|
1598
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1598
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2B);
|
|
1599
1599
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1600
1600
|
const styleProps = {
|
|
1601
1601
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1618,7 +1618,7 @@ const IconBarsH = forwardRef((_ref, ref) => {
|
|
|
1618
1618
|
});
|
|
1619
1619
|
IconBarsH.displayName = 'IconBarsH';
|
|
1620
1620
|
|
|
1621
|
-
const _excluded$
|
|
1621
|
+
const _excluded$2A = ["testId", "size", "color", "style"];
|
|
1622
1622
|
const IconBarsV = forwardRef((_ref, ref) => {
|
|
1623
1623
|
let {
|
|
1624
1624
|
testId = 'icon-bars-v',
|
|
@@ -1626,7 +1626,7 @@ const IconBarsV = forwardRef((_ref, ref) => {
|
|
|
1626
1626
|
color,
|
|
1627
1627
|
style
|
|
1628
1628
|
} = _ref,
|
|
1629
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1629
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2A);
|
|
1630
1630
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1631
1631
|
const styleProps = {
|
|
1632
1632
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1647,7 +1647,7 @@ const IconBarsV = forwardRef((_ref, ref) => {
|
|
|
1647
1647
|
});
|
|
1648
1648
|
IconBarsV.displayName = 'IconBarsV';
|
|
1649
1649
|
|
|
1650
|
-
const _excluded$
|
|
1650
|
+
const _excluded$2z = ["testId", "size", "color", "style"];
|
|
1651
1651
|
const IconBell = forwardRef((_ref, ref) => {
|
|
1652
1652
|
let {
|
|
1653
1653
|
testId = 'icon-bell',
|
|
@@ -1655,7 +1655,7 @@ const IconBell = forwardRef((_ref, ref) => {
|
|
|
1655
1655
|
color,
|
|
1656
1656
|
style
|
|
1657
1657
|
} = _ref,
|
|
1658
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1658
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2z);
|
|
1659
1659
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1660
1660
|
const styleProps = {
|
|
1661
1661
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1678,7 +1678,7 @@ const IconBell = forwardRef((_ref, ref) => {
|
|
|
1678
1678
|
});
|
|
1679
1679
|
IconBell.displayName = 'IconBell';
|
|
1680
1680
|
|
|
1681
|
-
const _excluded$
|
|
1681
|
+
const _excluded$2y = ["testId", "size", "color", "style"];
|
|
1682
1682
|
const IconBirthdayCake = forwardRef((_ref, ref) => {
|
|
1683
1683
|
let {
|
|
1684
1684
|
testId = 'icon-birthday-cake',
|
|
@@ -1686,7 +1686,7 @@ const IconBirthdayCake = forwardRef((_ref, ref) => {
|
|
|
1686
1686
|
color,
|
|
1687
1687
|
style
|
|
1688
1688
|
} = _ref,
|
|
1689
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1689
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2y);
|
|
1690
1690
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1691
1691
|
const styleProps = {
|
|
1692
1692
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1707,7 +1707,7 @@ const IconBirthdayCake = forwardRef((_ref, ref) => {
|
|
|
1707
1707
|
});
|
|
1708
1708
|
IconBirthdayCake.displayName = 'IconBirthdayCake';
|
|
1709
1709
|
|
|
1710
|
-
const _excluded$
|
|
1710
|
+
const _excluded$2x = ["testId", "size", "color", "style"];
|
|
1711
1711
|
const IconBold = forwardRef((_ref, ref) => {
|
|
1712
1712
|
let {
|
|
1713
1713
|
testId = 'icon-bold',
|
|
@@ -1715,7 +1715,7 @@ const IconBold = forwardRef((_ref, ref) => {
|
|
|
1715
1715
|
color,
|
|
1716
1716
|
style
|
|
1717
1717
|
} = _ref,
|
|
1718
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1718
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2x);
|
|
1719
1719
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1720
1720
|
const styleProps = {
|
|
1721
1721
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1736,7 +1736,7 @@ const IconBold = forwardRef((_ref, ref) => {
|
|
|
1736
1736
|
});
|
|
1737
1737
|
IconBold.displayName = 'IconBold';
|
|
1738
1738
|
|
|
1739
|
-
const _excluded$
|
|
1739
|
+
const _excluded$2w = ["testId", "size", "color", "style"];
|
|
1740
1740
|
const IconBolt = forwardRef((_ref, ref) => {
|
|
1741
1741
|
let {
|
|
1742
1742
|
testId = 'icon-bolt',
|
|
@@ -1744,7 +1744,7 @@ const IconBolt = forwardRef((_ref, ref) => {
|
|
|
1744
1744
|
color,
|
|
1745
1745
|
style
|
|
1746
1746
|
} = _ref,
|
|
1747
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1747
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2w);
|
|
1748
1748
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1749
1749
|
const styleProps = {
|
|
1750
1750
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1772,7 +1772,7 @@ const IconBolt = forwardRef((_ref, ref) => {
|
|
|
1772
1772
|
});
|
|
1773
1773
|
IconBolt.displayName = 'IconBolt';
|
|
1774
1774
|
|
|
1775
|
-
const _excluded$
|
|
1775
|
+
const _excluded$2v = ["testId", "size", "color", "style"];
|
|
1776
1776
|
const IconBook = forwardRef((_ref, ref) => {
|
|
1777
1777
|
let {
|
|
1778
1778
|
testId = 'icon-book',
|
|
@@ -1780,7 +1780,7 @@ const IconBook = forwardRef((_ref, ref) => {
|
|
|
1780
1780
|
color,
|
|
1781
1781
|
style
|
|
1782
1782
|
} = _ref,
|
|
1783
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1783
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2v);
|
|
1784
1784
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1785
1785
|
const styleProps = {
|
|
1786
1786
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1803,7 +1803,7 @@ const IconBook = forwardRef((_ref, ref) => {
|
|
|
1803
1803
|
});
|
|
1804
1804
|
IconBook.displayName = 'IconBook';
|
|
1805
1805
|
|
|
1806
|
-
const _excluded$
|
|
1806
|
+
const _excluded$2u = ["testId", "size", "color", "style"];
|
|
1807
1807
|
const IconBriefcase = forwardRef((_ref, ref) => {
|
|
1808
1808
|
let {
|
|
1809
1809
|
testId = 'icon-briefcase',
|
|
@@ -1811,7 +1811,7 @@ const IconBriefcase = forwardRef((_ref, ref) => {
|
|
|
1811
1811
|
color,
|
|
1812
1812
|
style
|
|
1813
1813
|
} = _ref,
|
|
1814
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1814
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2u);
|
|
1815
1815
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1816
1816
|
const styleProps = {
|
|
1817
1817
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1832,7 +1832,7 @@ const IconBriefcase = forwardRef((_ref, ref) => {
|
|
|
1832
1832
|
});
|
|
1833
1833
|
IconBriefcase.displayName = 'IconBriefcase';
|
|
1834
1834
|
|
|
1835
|
-
const _excluded$
|
|
1835
|
+
const _excluded$2t = ["testId", "size", "color", "style"];
|
|
1836
1836
|
const IconBullseyeArrow = forwardRef((_ref, ref) => {
|
|
1837
1837
|
let {
|
|
1838
1838
|
testId = 'icon-bullseye-arrow',
|
|
@@ -1840,7 +1840,7 @@ const IconBullseyeArrow = forwardRef((_ref, ref) => {
|
|
|
1840
1840
|
color,
|
|
1841
1841
|
style
|
|
1842
1842
|
} = _ref,
|
|
1843
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1843
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2t);
|
|
1844
1844
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1845
1845
|
const styleProps = {
|
|
1846
1846
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1863,7 +1863,7 @@ const IconBullseyeArrow = forwardRef((_ref, ref) => {
|
|
|
1863
1863
|
});
|
|
1864
1864
|
IconBullseyeArrow.displayName = 'IconBullseyeArrow';
|
|
1865
1865
|
|
|
1866
|
-
const _excluded$
|
|
1866
|
+
const _excluded$2s = ["testId", "size", "color", "style"];
|
|
1867
1867
|
const IconCalculator = forwardRef((_ref, ref) => {
|
|
1868
1868
|
let {
|
|
1869
1869
|
testId = 'icon-calculator',
|
|
@@ -1871,7 +1871,7 @@ const IconCalculator = forwardRef((_ref, ref) => {
|
|
|
1871
1871
|
color,
|
|
1872
1872
|
style
|
|
1873
1873
|
} = _ref,
|
|
1874
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1874
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2s);
|
|
1875
1875
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1876
1876
|
const styleProps = {
|
|
1877
1877
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1894,7 +1894,7 @@ const IconCalculator = forwardRef((_ref, ref) => {
|
|
|
1894
1894
|
});
|
|
1895
1895
|
IconCalculator.displayName = 'IconCalculator';
|
|
1896
1896
|
|
|
1897
|
-
const _excluded$
|
|
1897
|
+
const _excluded$2r = ["testId", "size", "color", "style"];
|
|
1898
1898
|
const IconCalendarAlt = forwardRef((_ref, ref) => {
|
|
1899
1899
|
let {
|
|
1900
1900
|
testId = 'icon-calendar-alt',
|
|
@@ -1902,7 +1902,7 @@ const IconCalendarAlt = forwardRef((_ref, ref) => {
|
|
|
1902
1902
|
color,
|
|
1903
1903
|
style
|
|
1904
1904
|
} = _ref,
|
|
1905
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1905
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2r);
|
|
1906
1906
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1907
1907
|
const styleProps = {
|
|
1908
1908
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1925,7 +1925,7 @@ const IconCalendarAlt = forwardRef((_ref, ref) => {
|
|
|
1925
1925
|
});
|
|
1926
1926
|
IconCalendarAlt.displayName = 'IconCalendarAlt';
|
|
1927
1927
|
|
|
1928
|
-
const _excluded$
|
|
1928
|
+
const _excluded$2q = ["testId", "size", "color", "style"];
|
|
1929
1929
|
const IconCalendarCheck = forwardRef((_ref, ref) => {
|
|
1930
1930
|
let {
|
|
1931
1931
|
testId = 'icon-calendar-check',
|
|
@@ -1933,7 +1933,7 @@ const IconCalendarCheck = forwardRef((_ref, ref) => {
|
|
|
1933
1933
|
color,
|
|
1934
1934
|
style
|
|
1935
1935
|
} = _ref,
|
|
1936
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1936
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2q);
|
|
1937
1937
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1938
1938
|
const styleProps = {
|
|
1939
1939
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1956,7 +1956,7 @@ const IconCalendarCheck = forwardRef((_ref, ref) => {
|
|
|
1956
1956
|
});
|
|
1957
1957
|
IconCalendarCheck.displayName = 'IconCalendarCheck';
|
|
1958
1958
|
|
|
1959
|
-
const _excluded$
|
|
1959
|
+
const _excluded$2p = ["testId", "size", "color", "style"];
|
|
1960
1960
|
const IconCalendarDay = forwardRef((_ref, ref) => {
|
|
1961
1961
|
let {
|
|
1962
1962
|
testId = 'icon-calendar-day',
|
|
@@ -1964,7 +1964,7 @@ const IconCalendarDay = forwardRef((_ref, ref) => {
|
|
|
1964
1964
|
color,
|
|
1965
1965
|
style
|
|
1966
1966
|
} = _ref,
|
|
1967
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
1967
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2p);
|
|
1968
1968
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
1969
1969
|
const styleProps = {
|
|
1970
1970
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -1992,7 +1992,7 @@ const IconCalendarDay = forwardRef((_ref, ref) => {
|
|
|
1992
1992
|
});
|
|
1993
1993
|
IconCalendarDay.displayName = 'IconCalendarDay';
|
|
1994
1994
|
|
|
1995
|
-
const _excluded$
|
|
1995
|
+
const _excluded$2o = ["testId", "size", "color", "style"];
|
|
1996
1996
|
const IconCalendarExclamation = forwardRef((_ref, ref) => {
|
|
1997
1997
|
let {
|
|
1998
1998
|
testId = 'icon-calendar-exclamation',
|
|
@@ -2000,7 +2000,7 @@ const IconCalendarExclamation = forwardRef((_ref, ref) => {
|
|
|
2000
2000
|
color,
|
|
2001
2001
|
style
|
|
2002
2002
|
} = _ref,
|
|
2003
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2003
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2o);
|
|
2004
2004
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2005
2005
|
const styleProps = {
|
|
2006
2006
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2021,7 +2021,7 @@ const IconCalendarExclamation = forwardRef((_ref, ref) => {
|
|
|
2021
2021
|
});
|
|
2022
2022
|
IconCalendarExclamation.displayName = 'IconCalendarExclamation';
|
|
2023
2023
|
|
|
2024
|
-
const _excluded$
|
|
2024
|
+
const _excluded$2n = ["testId", "size", "color", "style"];
|
|
2025
2025
|
const IconCalendarStar = forwardRef((_ref, ref) => {
|
|
2026
2026
|
let {
|
|
2027
2027
|
testId = 'icon-calendar-star',
|
|
@@ -2029,7 +2029,7 @@ const IconCalendarStar = forwardRef((_ref, ref) => {
|
|
|
2029
2029
|
color,
|
|
2030
2030
|
style
|
|
2031
2031
|
} = _ref,
|
|
2032
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2032
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2n);
|
|
2033
2033
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2034
2034
|
const styleProps = {
|
|
2035
2035
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2050,7 +2050,7 @@ const IconCalendarStar = forwardRef((_ref, ref) => {
|
|
|
2050
2050
|
});
|
|
2051
2051
|
IconCalendarStar.displayName = 'IconCalendarStar';
|
|
2052
2052
|
|
|
2053
|
-
const _excluded$
|
|
2053
|
+
const _excluded$2m = ["testId", "size", "color", "style"];
|
|
2054
2054
|
const IconCalendarTomorrow = forwardRef((_ref, ref) => {
|
|
2055
2055
|
let {
|
|
2056
2056
|
testId = 'icon-calendar-tomorrow',
|
|
@@ -2058,7 +2058,7 @@ const IconCalendarTomorrow = forwardRef((_ref, ref) => {
|
|
|
2058
2058
|
color,
|
|
2059
2059
|
style
|
|
2060
2060
|
} = _ref,
|
|
2061
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2061
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2m);
|
|
2062
2062
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2063
2063
|
const styleProps = {
|
|
2064
2064
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2088,7 +2088,7 @@ const IconCalendarTomorrow = forwardRef((_ref, ref) => {
|
|
|
2088
2088
|
});
|
|
2089
2089
|
IconCalendarTomorrow.displayName = 'IconCalendarTomorrow';
|
|
2090
2090
|
|
|
2091
|
-
const _excluded$
|
|
2091
|
+
const _excluded$2l = ["testId", "size", "color", "style"];
|
|
2092
2092
|
const IconCalendar = forwardRef((_ref, ref) => {
|
|
2093
2093
|
let {
|
|
2094
2094
|
testId = 'icon-calendar',
|
|
@@ -2096,7 +2096,7 @@ const IconCalendar = forwardRef((_ref, ref) => {
|
|
|
2096
2096
|
color,
|
|
2097
2097
|
style
|
|
2098
2098
|
} = _ref,
|
|
2099
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2099
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2l);
|
|
2100
2100
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2101
2101
|
const styleProps = {
|
|
2102
2102
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2119,7 +2119,7 @@ const IconCalendar = forwardRef((_ref, ref) => {
|
|
|
2119
2119
|
});
|
|
2120
2120
|
IconCalendar.displayName = 'IconCalendar';
|
|
2121
2121
|
|
|
2122
|
-
const _excluded$
|
|
2122
|
+
const _excluded$2k = ["testId", "size", "color", "style"];
|
|
2123
2123
|
const IconCameraSlash = forwardRef((_ref, ref) => {
|
|
2124
2124
|
let {
|
|
2125
2125
|
testId = 'icon-camera-slash',
|
|
@@ -2127,7 +2127,7 @@ const IconCameraSlash = forwardRef((_ref, ref) => {
|
|
|
2127
2127
|
color,
|
|
2128
2128
|
style
|
|
2129
2129
|
} = _ref,
|
|
2130
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2130
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2k);
|
|
2131
2131
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2132
2132
|
const styleProps = {
|
|
2133
2133
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2151,7 +2151,7 @@ const IconCameraSlash = forwardRef((_ref, ref) => {
|
|
|
2151
2151
|
});
|
|
2152
2152
|
IconCameraSlash.displayName = 'IconCameraSlash';
|
|
2153
2153
|
|
|
2154
|
-
const _excluded$
|
|
2154
|
+
const _excluded$2j = ["testId", "size", "color", "style"];
|
|
2155
2155
|
const IconCamera = forwardRef((_ref, ref) => {
|
|
2156
2156
|
let {
|
|
2157
2157
|
testId = 'icon-camera',
|
|
@@ -2159,7 +2159,7 @@ const IconCamera = forwardRef((_ref, ref) => {
|
|
|
2159
2159
|
color,
|
|
2160
2160
|
style
|
|
2161
2161
|
} = _ref,
|
|
2162
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2162
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2j);
|
|
2163
2163
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2164
2164
|
const styleProps = {
|
|
2165
2165
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2180,7 +2180,7 @@ const IconCamera = forwardRef((_ref, ref) => {
|
|
|
2180
2180
|
});
|
|
2181
2181
|
IconCamera.displayName = 'IconCamera';
|
|
2182
2182
|
|
|
2183
|
-
const _excluded$
|
|
2183
|
+
const _excluded$2i = ["testId", "size", "color", "style"];
|
|
2184
2184
|
const IconCashRegister = forwardRef((_ref, ref) => {
|
|
2185
2185
|
let {
|
|
2186
2186
|
testId = 'icon-cash-register',
|
|
@@ -2188,7 +2188,7 @@ const IconCashRegister = forwardRef((_ref, ref) => {
|
|
|
2188
2188
|
color,
|
|
2189
2189
|
style
|
|
2190
2190
|
} = _ref,
|
|
2191
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2191
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2i);
|
|
2192
2192
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2193
2193
|
const styleProps = {
|
|
2194
2194
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2209,7 +2209,7 @@ const IconCashRegister = forwardRef((_ref, ref) => {
|
|
|
2209
2209
|
});
|
|
2210
2210
|
IconCashRegister.displayName = 'IconCashRegister';
|
|
2211
2211
|
|
|
2212
|
-
const _excluded$
|
|
2212
|
+
const _excluded$2h = ["testId", "size", "color", "style"];
|
|
2213
2213
|
const IconChartBar = forwardRef((_ref, ref) => {
|
|
2214
2214
|
let {
|
|
2215
2215
|
testId = 'icon-chart-bar',
|
|
@@ -2217,7 +2217,7 @@ const IconChartBar = forwardRef((_ref, ref) => {
|
|
|
2217
2217
|
color,
|
|
2218
2218
|
style
|
|
2219
2219
|
} = _ref,
|
|
2220
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2220
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2h);
|
|
2221
2221
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2222
2222
|
const styleProps = {
|
|
2223
2223
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2240,7 +2240,7 @@ const IconChartBar = forwardRef((_ref, ref) => {
|
|
|
2240
2240
|
});
|
|
2241
2241
|
IconChartBar.displayName = 'IconChartBar';
|
|
2242
2242
|
|
|
2243
|
-
const _excluded$
|
|
2243
|
+
const _excluded$2g = ["testId", "size", "color", "style"];
|
|
2244
2244
|
const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
|
|
2245
2245
|
let {
|
|
2246
2246
|
testId = 'icon-check-circle-incomplete',
|
|
@@ -2248,7 +2248,7 @@ const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
|
|
|
2248
2248
|
color,
|
|
2249
2249
|
style
|
|
2250
2250
|
} = _ref,
|
|
2251
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2251
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2g);
|
|
2252
2252
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2253
2253
|
const styleProps = {
|
|
2254
2254
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2269,7 +2269,7 @@ const IconCheckCircleIncomplete = forwardRef((_ref, ref) => {
|
|
|
2269
2269
|
});
|
|
2270
2270
|
IconCheckCircleIncomplete.displayName = 'IconCheckCircleIncomplete';
|
|
2271
2271
|
|
|
2272
|
-
const _excluded$
|
|
2272
|
+
const _excluded$2f = ["testId", "size", "color", "style"];
|
|
2273
2273
|
const IconCheck = forwardRef((_ref, ref) => {
|
|
2274
2274
|
let {
|
|
2275
2275
|
testId = 'icon-check',
|
|
@@ -2277,7 +2277,7 @@ const IconCheck = forwardRef((_ref, ref) => {
|
|
|
2277
2277
|
color,
|
|
2278
2278
|
style
|
|
2279
2279
|
} = _ref,
|
|
2280
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2280
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2f);
|
|
2281
2281
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2282
2282
|
const styleProps = {
|
|
2283
2283
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2300,7 +2300,7 @@ const IconCheck = forwardRef((_ref, ref) => {
|
|
|
2300
2300
|
});
|
|
2301
2301
|
IconCheck.displayName = 'IconCheck';
|
|
2302
2302
|
|
|
2303
|
-
const _excluded$
|
|
2303
|
+
const _excluded$2e = ["testId", "size", "color", "style"];
|
|
2304
2304
|
const IconChevronDown = forwardRef((_ref, ref) => {
|
|
2305
2305
|
let {
|
|
2306
2306
|
testId = 'icon-chevron-down',
|
|
@@ -2308,7 +2308,7 @@ const IconChevronDown = forwardRef((_ref, ref) => {
|
|
|
2308
2308
|
color,
|
|
2309
2309
|
style
|
|
2310
2310
|
} = _ref,
|
|
2311
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2311
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2e);
|
|
2312
2312
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2313
2313
|
const styleProps = {
|
|
2314
2314
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2331,7 +2331,7 @@ const IconChevronDown = forwardRef((_ref, ref) => {
|
|
|
2331
2331
|
});
|
|
2332
2332
|
IconChevronDown.displayName = 'IconChevronDown';
|
|
2333
2333
|
|
|
2334
|
-
const _excluded$
|
|
2334
|
+
const _excluded$2d = ["testId", "size", "color", "style"];
|
|
2335
2335
|
const IconChevronLeft = forwardRef((_ref, ref) => {
|
|
2336
2336
|
let {
|
|
2337
2337
|
testId = 'icon-chevron-left',
|
|
@@ -2339,7 +2339,7 @@ const IconChevronLeft = forwardRef((_ref, ref) => {
|
|
|
2339
2339
|
color,
|
|
2340
2340
|
style
|
|
2341
2341
|
} = _ref,
|
|
2342
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2342
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2d);
|
|
2343
2343
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2344
2344
|
const styleProps = {
|
|
2345
2345
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2362,7 +2362,7 @@ const IconChevronLeft = forwardRef((_ref, ref) => {
|
|
|
2362
2362
|
});
|
|
2363
2363
|
IconChevronLeft.displayName = 'IconChevronLeft';
|
|
2364
2364
|
|
|
2365
|
-
const _excluded$
|
|
2365
|
+
const _excluded$2c = ["testId", "size", "color", "style"];
|
|
2366
2366
|
const IconChevronRight = forwardRef((_ref, ref) => {
|
|
2367
2367
|
let {
|
|
2368
2368
|
testId = 'icon-chevron-right',
|
|
@@ -2370,7 +2370,7 @@ const IconChevronRight = forwardRef((_ref, ref) => {
|
|
|
2370
2370
|
color,
|
|
2371
2371
|
style
|
|
2372
2372
|
} = _ref,
|
|
2373
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2373
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2c);
|
|
2374
2374
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2375
2375
|
const styleProps = {
|
|
2376
2376
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2393,7 +2393,7 @@ const IconChevronRight = forwardRef((_ref, ref) => {
|
|
|
2393
2393
|
});
|
|
2394
2394
|
IconChevronRight.displayName = 'IconChevronRight';
|
|
2395
2395
|
|
|
2396
|
-
const _excluded$
|
|
2396
|
+
const _excluded$2b = ["testId", "size", "color", "style"];
|
|
2397
2397
|
const IconChevronUp = forwardRef((_ref, ref) => {
|
|
2398
2398
|
let {
|
|
2399
2399
|
testId = 'icon-chevron-up',
|
|
@@ -2401,7 +2401,7 @@ const IconChevronUp = forwardRef((_ref, ref) => {
|
|
|
2401
2401
|
color,
|
|
2402
2402
|
style
|
|
2403
2403
|
} = _ref,
|
|
2404
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2404
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2b);
|
|
2405
2405
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2406
2406
|
const styleProps = {
|
|
2407
2407
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2424,7 +2424,7 @@ const IconChevronUp = forwardRef((_ref, ref) => {
|
|
|
2424
2424
|
});
|
|
2425
2425
|
IconChevronUp.displayName = 'IconChevronUp';
|
|
2426
2426
|
|
|
2427
|
-
const _excluded$
|
|
2427
|
+
const _excluded$2a = ["testId", "size", "color", "style"];
|
|
2428
2428
|
const IconClipboardList = forwardRef((_ref, ref) => {
|
|
2429
2429
|
let {
|
|
2430
2430
|
testId = 'icon-clipboard-list',
|
|
@@ -2432,7 +2432,7 @@ const IconClipboardList = forwardRef((_ref, ref) => {
|
|
|
2432
2432
|
color,
|
|
2433
2433
|
style
|
|
2434
2434
|
} = _ref,
|
|
2435
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2435
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$2a);
|
|
2436
2436
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2437
2437
|
const styleProps = {
|
|
2438
2438
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2455,7 +2455,7 @@ const IconClipboardList = forwardRef((_ref, ref) => {
|
|
|
2455
2455
|
});
|
|
2456
2456
|
IconClipboardList.displayName = 'IconClipboardList';
|
|
2457
2457
|
|
|
2458
|
-
const _excluded$
|
|
2458
|
+
const _excluded$29 = ["testId", "size", "color", "style"];
|
|
2459
2459
|
const IconClockExclamation = forwardRef((_ref, ref) => {
|
|
2460
2460
|
let {
|
|
2461
2461
|
testId = 'icon-clock-exclamation',
|
|
@@ -2463,7 +2463,7 @@ const IconClockExclamation = forwardRef((_ref, ref) => {
|
|
|
2463
2463
|
color,
|
|
2464
2464
|
style
|
|
2465
2465
|
} = _ref,
|
|
2466
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2466
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$29);
|
|
2467
2467
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2468
2468
|
const styleProps = {
|
|
2469
2469
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2491,7 +2491,7 @@ const IconClockExclamation = forwardRef((_ref, ref) => {
|
|
|
2491
2491
|
});
|
|
2492
2492
|
IconClockExclamation.displayName = 'IconClockExclamation';
|
|
2493
2493
|
|
|
2494
|
-
const _excluded$
|
|
2494
|
+
const _excluded$28 = ["testId", "size", "color", "style"];
|
|
2495
2495
|
const IconClockRewind = forwardRef((_ref, ref) => {
|
|
2496
2496
|
let {
|
|
2497
2497
|
testId = 'icon-clock-rewind',
|
|
@@ -2499,7 +2499,7 @@ const IconClockRewind = forwardRef((_ref, ref) => {
|
|
|
2499
2499
|
color,
|
|
2500
2500
|
style
|
|
2501
2501
|
} = _ref,
|
|
2502
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2502
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$28);
|
|
2503
2503
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2504
2504
|
const styleProps = {
|
|
2505
2505
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2527,7 +2527,7 @@ const IconClockRewind = forwardRef((_ref, ref) => {
|
|
|
2527
2527
|
});
|
|
2528
2528
|
IconClockRewind.displayName = 'IconClockRewind';
|
|
2529
2529
|
|
|
2530
|
-
const _excluded$
|
|
2530
|
+
const _excluded$27 = ["testId", "size", "color", "style"];
|
|
2531
2531
|
const IconClock = forwardRef((_ref, ref) => {
|
|
2532
2532
|
let {
|
|
2533
2533
|
testId = 'icon-clock',
|
|
@@ -2535,7 +2535,7 @@ const IconClock = forwardRef((_ref, ref) => {
|
|
|
2535
2535
|
color,
|
|
2536
2536
|
style
|
|
2537
2537
|
} = _ref,
|
|
2538
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2538
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$27);
|
|
2539
2539
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2540
2540
|
const styleProps = {
|
|
2541
2541
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2556,7 +2556,7 @@ const IconClock = forwardRef((_ref, ref) => {
|
|
|
2556
2556
|
});
|
|
2557
2557
|
IconClock.displayName = 'IconClock';
|
|
2558
2558
|
|
|
2559
|
-
const _excluded$
|
|
2559
|
+
const _excluded$26 = ["testId", "size", "color", "style"];
|
|
2560
2560
|
const IconCog = forwardRef((_ref, ref) => {
|
|
2561
2561
|
let {
|
|
2562
2562
|
testId = 'icon-cog',
|
|
@@ -2564,7 +2564,7 @@ const IconCog = forwardRef((_ref, ref) => {
|
|
|
2564
2564
|
color,
|
|
2565
2565
|
style
|
|
2566
2566
|
} = _ref,
|
|
2567
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2567
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$26);
|
|
2568
2568
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2569
2569
|
const styleProps = {
|
|
2570
2570
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2585,7 +2585,7 @@ const IconCog = forwardRef((_ref, ref) => {
|
|
|
2585
2585
|
});
|
|
2586
2586
|
IconCog.displayName = 'IconCog';
|
|
2587
2587
|
|
|
2588
|
-
const _excluded$
|
|
2588
|
+
const _excluded$25 = ["testId", "size", "color", "style"];
|
|
2589
2589
|
const IconCommentLines = forwardRef((_ref, ref) => {
|
|
2590
2590
|
let {
|
|
2591
2591
|
testId = 'icon-comment-lines',
|
|
@@ -2593,7 +2593,7 @@ const IconCommentLines = forwardRef((_ref, ref) => {
|
|
|
2593
2593
|
color,
|
|
2594
2594
|
style
|
|
2595
2595
|
} = _ref,
|
|
2596
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2596
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$25);
|
|
2597
2597
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2598
2598
|
const styleProps = {
|
|
2599
2599
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2619,7 +2619,7 @@ const IconCommentLines = forwardRef((_ref, ref) => {
|
|
|
2619
2619
|
});
|
|
2620
2620
|
IconCommentLines.displayName = 'IconCommentLines';
|
|
2621
2621
|
|
|
2622
|
-
const _excluded$
|
|
2622
|
+
const _excluded$24 = ["testId", "size", "color", "style"];
|
|
2623
2623
|
const IconComment = forwardRef((_ref, ref) => {
|
|
2624
2624
|
let {
|
|
2625
2625
|
testId = 'icon-comment',
|
|
@@ -2627,7 +2627,7 @@ const IconComment = forwardRef((_ref, ref) => {
|
|
|
2627
2627
|
color,
|
|
2628
2628
|
style
|
|
2629
2629
|
} = _ref,
|
|
2630
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2630
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$24);
|
|
2631
2631
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2632
2632
|
const styleProps = {
|
|
2633
2633
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2650,7 +2650,7 @@ const IconComment = forwardRef((_ref, ref) => {
|
|
|
2650
2650
|
});
|
|
2651
2651
|
IconComment.displayName = 'IconComment';
|
|
2652
2652
|
|
|
2653
|
-
const _excluded$
|
|
2653
|
+
const _excluded$23 = ["testId", "size", "color", "style"];
|
|
2654
2654
|
const IconCopy = forwardRef((_ref, ref) => {
|
|
2655
2655
|
let {
|
|
2656
2656
|
testId = 'icon-copy',
|
|
@@ -2658,7 +2658,7 @@ const IconCopy = forwardRef((_ref, ref) => {
|
|
|
2658
2658
|
color,
|
|
2659
2659
|
style
|
|
2660
2660
|
} = _ref,
|
|
2661
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2661
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$23);
|
|
2662
2662
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2663
2663
|
const styleProps = {
|
|
2664
2664
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2686,7 +2686,7 @@ const IconCopy = forwardRef((_ref, ref) => {
|
|
|
2686
2686
|
});
|
|
2687
2687
|
IconCopy.displayName = 'IconCopy';
|
|
2688
2688
|
|
|
2689
|
-
const _excluded$
|
|
2689
|
+
const _excluded$22 = ["testId", "size", "color", "style"];
|
|
2690
2690
|
const IconCreditCardPlus = forwardRef((_ref, ref) => {
|
|
2691
2691
|
let {
|
|
2692
2692
|
testId = 'icon-credit-card-plus',
|
|
@@ -2694,7 +2694,7 @@ const IconCreditCardPlus = forwardRef((_ref, ref) => {
|
|
|
2694
2694
|
color,
|
|
2695
2695
|
style
|
|
2696
2696
|
} = _ref,
|
|
2697
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2697
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$22);
|
|
2698
2698
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2699
2699
|
const styleProps = {
|
|
2700
2700
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2724,7 +2724,7 @@ const IconCreditCardPlus = forwardRef((_ref, ref) => {
|
|
|
2724
2724
|
});
|
|
2725
2725
|
IconCreditCardPlus.displayName = 'IconCreditCardPlus';
|
|
2726
2726
|
|
|
2727
|
-
const _excluded$
|
|
2727
|
+
const _excluded$21 = ["testId", "size", "color", "style"];
|
|
2728
2728
|
const IconCreditCard = forwardRef((_ref, ref) => {
|
|
2729
2729
|
let {
|
|
2730
2730
|
testId = 'icon-credit-card',
|
|
@@ -2732,7 +2732,7 @@ const IconCreditCard = forwardRef((_ref, ref) => {
|
|
|
2732
2732
|
color,
|
|
2733
2733
|
style
|
|
2734
2734
|
} = _ref,
|
|
2735
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2735
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$21);
|
|
2736
2736
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2737
2737
|
const styleProps = {
|
|
2738
2738
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2760,7 +2760,7 @@ const IconCreditCard = forwardRef((_ref, ref) => {
|
|
|
2760
2760
|
});
|
|
2761
2761
|
IconCreditCard.displayName = 'IconCreditCard';
|
|
2762
2762
|
|
|
2763
|
-
const _excluded$
|
|
2763
|
+
const _excluded$20 = ["testId", "size", "color", "style"];
|
|
2764
2764
|
const IconDecentMonochromatic = forwardRef((_ref, ref) => {
|
|
2765
2765
|
let {
|
|
2766
2766
|
testId = 'icon-decent-monochromatic',
|
|
@@ -2768,7 +2768,7 @@ const IconDecentMonochromatic = forwardRef((_ref, ref) => {
|
|
|
2768
2768
|
color,
|
|
2769
2769
|
style
|
|
2770
2770
|
} = _ref,
|
|
2771
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2771
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$20);
|
|
2772
2772
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2773
2773
|
const styleProps = {
|
|
2774
2774
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2811,7 +2811,7 @@ const IconDecentMonochromatic = forwardRef((_ref, ref) => {
|
|
|
2811
2811
|
});
|
|
2812
2812
|
IconDecentMonochromatic.displayName = 'IconDecentMonochromatic';
|
|
2813
2813
|
|
|
2814
|
-
const _excluded$
|
|
2814
|
+
const _excluded$1$ = ["testId", "size", "color", "style"];
|
|
2815
2815
|
const IconDecent = forwardRef((_ref, ref) => {
|
|
2816
2816
|
let {
|
|
2817
2817
|
testId = 'icon-decent',
|
|
@@ -2819,7 +2819,7 @@ const IconDecent = forwardRef((_ref, ref) => {
|
|
|
2819
2819
|
color,
|
|
2820
2820
|
style
|
|
2821
2821
|
} = _ref,
|
|
2822
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2822
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1$);
|
|
2823
2823
|
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2824
2824
|
const styleProps = {
|
|
2825
2825
|
size: !size && isInsideButton ? 'medium' : size,
|
|
@@ -2850,6 +2850,35 @@ const IconDecent = forwardRef((_ref, ref) => {
|
|
|
2850
2850
|
});
|
|
2851
2851
|
IconDecent.displayName = 'IconDecent';
|
|
2852
2852
|
|
|
2853
|
+
const _excluded$1_ = ["testId", "size", "color", "style"];
|
|
2854
|
+
const IconDollarSign = forwardRef((_ref, ref) => {
|
|
2855
|
+
let {
|
|
2856
|
+
testId = 'icon-dollar-sign',
|
|
2857
|
+
size,
|
|
2858
|
+
color,
|
|
2859
|
+
style
|
|
2860
|
+
} = _ref,
|
|
2861
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1_);
|
|
2862
|
+
const isInsideButton = useIsInsideComponent(COMPONENT_NAMES.BUTTON);
|
|
2863
|
+
const styleProps = {
|
|
2864
|
+
size: !size && isInsideButton ? 'medium' : size,
|
|
2865
|
+
color,
|
|
2866
|
+
style
|
|
2867
|
+
};
|
|
2868
|
+
return React__default.createElement("svg", _extends({
|
|
2869
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2870
|
+
fill: "none",
|
|
2871
|
+
viewBox: "0 0 20 20",
|
|
2872
|
+
style: getIconStyles(styleProps),
|
|
2873
|
+
"data-testid": testId,
|
|
2874
|
+
ref: ref
|
|
2875
|
+
}, props), React__default.createElement("path", {
|
|
2876
|
+
fill: "currentColor",
|
|
2877
|
+
d: "M10.252.625A.627.627 0 0 0 9.627 0a.627.627 0 0 0-.625.625v1.856a9.155 9.155 0 0 0-.735.036c-.938.078-1.872.304-2.634.805-.785.512-1.352 1.29-1.559 2.383-.148.794-.074 1.493.223 2.099.29.598.762 1.047 1.31 1.395 1.042.664 2.484 1.043 3.797 1.387l.067.016c1.395.367 2.65.7 3.51 1.246.413.266.695.555.855.883.156.325.226.743.117 1.321-.152.81-.719 1.423-1.676 1.798-.973.383-2.31.492-3.83.274-.953-.141-2.384-.473-3.568-.985a.622.622 0 0 0-.82.328.62.62 0 0 0 .328.82c1.313.567 2.856.919 3.88 1.071h.004c.25.035.496.063.739.082v1.935c0 .344.281.625.625.625a.627.627 0 0 0 .625-.625v-1.9c.907-.027 1.75-.183 2.478-.464 1.25-.489 2.196-1.395 2.45-2.732.148-.793.074-1.493-.223-2.098-.289-.598-.766-1.048-1.309-1.392-1.043-.664-2.485-1.043-3.798-1.387l-.067-.016c-1.395-.367-2.65-.699-3.509-1.246-.414-.266-.695-.555-.856-.883-.156-.325-.226-.743-.117-1.321.14-.754.512-1.243 1.016-1.571.524-.344 1.231-.535 2.056-.606 1.653-.136 3.567.235 4.857.547a.624.624 0 1 0 .293-1.215c-.856-.207-2.036-.457-3.275-.563L10.252.625Z"
|
|
2878
|
+
}));
|
|
2879
|
+
});
|
|
2880
|
+
IconDollarSign.displayName = 'IconDollarSign';
|
|
2881
|
+
|
|
2853
2882
|
const _excluded$1Z = ["testId", "size", "color", "style"];
|
|
2854
2883
|
const IconDownload = forwardRef((_ref, ref) => {
|
|
2855
2884
|
let {
|
|
@@ -11302,7 +11331,7 @@ const RadioGroupField = ({
|
|
|
11302
11331
|
}, caption), controllers.error && React__default.createElement(ErrorMessage, null, controllers.error))));
|
|
11303
11332
|
};
|
|
11304
11333
|
|
|
11305
|
-
var styles$f = {"text-field":"_6Of1F","text-field--invalid":"_NQPNK","text-field--prefixed":"_BpQWQ","text-field--suffixed":"_cpYWb","password-container":"_pAoib","password-toggle":"_WVvS6"};
|
|
11334
|
+
var styles$f = {"text-field":"_6Of1F","text-field--invalid":"_NQPNK","text-field--prefixed":"_BpQWQ","text-field--suffixed":"_cpYWb","password-container":"_pAoib","password-toggle":"_WVvS6","password-toggle--disabled":"_G29N3"};
|
|
11306
11335
|
|
|
11307
11336
|
var styles$e = {"password-criteria":"_1ruWK","password-criteria--invalid":"_xR7tb"};
|
|
11308
11337
|
|
|
@@ -11365,7 +11394,10 @@ const PasswordField = ({
|
|
|
11365
11394
|
testId
|
|
11366
11395
|
}) => {
|
|
11367
11396
|
const [type, setType] = useState('password');
|
|
11368
|
-
const toggleType = () =>
|
|
11397
|
+
const toggleType = () => {
|
|
11398
|
+
if (disabled) return;
|
|
11399
|
+
setType(type === 'password' ? 'text' : 'password');
|
|
11400
|
+
};
|
|
11369
11401
|
const controllers = useFieldControllers({
|
|
11370
11402
|
name,
|
|
11371
11403
|
id: inputId,
|
|
@@ -11402,7 +11434,9 @@ const PasswordField = ({
|
|
|
11402
11434
|
onChange: controllers.onChange,
|
|
11403
11435
|
onBlur: controllers.onBlur
|
|
11404
11436
|
}), React__default.createElement("div", {
|
|
11405
|
-
className: styles$f['password-toggle'],
|
|
11437
|
+
className: classnames(styles$f['password-toggle'], {
|
|
11438
|
+
[styles$f['password-toggle--disabled']]: disabled
|
|
11439
|
+
}),
|
|
11406
11440
|
onClick: toggleType,
|
|
11407
11441
|
onKeyPress: toggleType,
|
|
11408
11442
|
"data-testid": testId && `${testId}-toggle`,
|
|
@@ -14225,5 +14259,5 @@ const EmptyState = props => {
|
|
|
14225
14259
|
return emptyStateContainer;
|
|
14226
14260
|
};
|
|
14227
14261
|
|
|
14228
|
-
export { Accordion, ActionList, ActionListItem, AsyncSelectField, Avatar, Badge, Bold, BreadcrumbItem, Breadcrumbs, Button, COLORS, Calendar, CalloutCard, Card, CheckboxField, Chip, CircularProgress, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, HintModal, IconAnalytics, IconArrowDown, IconArrowDownWideShort, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconCheckCircleIncomplete, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconClockExclamation, IconClockRewind, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconEnvelopeOpenDollar, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFaceSmileRelaxed, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandHoldingDollar, IconHandPointRight, IconHandshake, IconHatChef, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMedal, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlateUtensils, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconRocket, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUnlock, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, NumberField, Page, PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, PhoneField, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField, Skeleton, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip, Underline, WeekField, ZINDEX, toast, useDataTableContext };
|
|
14262
|
+
export { Accordion, ActionList, ActionListItem, AsyncSelectField, Avatar, Badge, Bold, BreadcrumbItem, Breadcrumbs, Button, COLORS, Calendar, CalloutCard, Card, CheckboxField, Chip, CircularProgress, CurrencyField, DataTable, DataTableCell, DataTableEditableCell, DataTableRow, DateField, DateFilter, DateRangeField, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, EmptyState, Form, FormFeedback, FormFooter, FormRow, FormSection, HintModal, IconAnalytics, IconArrowDown, IconArrowDownWideShort, IconArrowLeft, IconArrowRight, IconArrowToTop, IconArrowTurnDownRight, IconArrowUp, IconAward, IconAwful, IconAwfulMonochromatic, IconBad, IconBadMonochromatic, IconBalanceScale, IconBalanceScaleLeft, IconBan, IconBarsH, IconBarsV, IconBell, IconBirthdayCake, IconBold, IconBolt, IconBook, IconBriefcase, IconBullseyeArrow, IconCalculator, IconCalendar, IconCalendarAlt, IconCalendarCheck, IconCalendarDay, IconCalendarExclamation, IconCalendarStar, IconCalendarTomorrow, IconCamera, IconCameraSlash, IconCashRegister, IconChartBar, IconCheck, IconCheckCircleIncomplete, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconClipboardList, IconClock, IconClockExclamation, IconClockRewind, IconCog, IconComment, IconCommentLines, IconCopy, IconCreditCard, IconCreditCardPlus, IconDecent, IconDecentMonochromatic, IconDollarSign, IconDownload, IconEdit, IconEllipsisV, IconEnvelope, IconEnvelopeOpenDollar, IconExclaimation, IconExclaimationTriangle, IconExpand, IconExternalLink, IconEye, IconEyeSlash, IconFaceSmileRelaxed, IconFile, IconFilePdf, IconFlag, IconFourDotsCircle, IconFourSquares, IconGavel, IconGif, IconGift, IconGood, IconGoodMonochromatic, IconGreat, IconGreatMonochromatic, IconGrinBeam, IconGripVertical, IconHandHoldingDollar, IconHandPointRight, IconHandshake, IconHatChef, IconImage, IconInfoCircle, IconIslandTropical, IconItalic, IconLaptopSearch, IconLink, IconList, IconListOI as IconListOi, IconLock, IconMagicSolid, IconMapMarker, IconMedal, IconMegaphone, IconMessages, IconMinus, IconMinusCircle, IconMoneyBill, IconMugSaucerSolid, IconNotesMedical, IconOvertime, IconPaperPlane, IconPaperPlaneClock, IconPaperclip, IconPencil, IconPercentage, IconPhone, IconPlateUtensils, IconPlug, IconPlus, IconPrint, IconQuestionCircle, IconRepeat, IconReply, IconRocket, IconSearch, IconSignOut, IconSitemap, IconSlidersH, IconSort, IconStar, IconStarSolid, IconStickyNoteLines, IconStopwatch, IconStrikethrough, IconSync, IconSyncExclaimation, IconTable, IconTachometer, IconTimes, IconTimesOctagon, IconTrash, IconUnderline, IconUndo, IconUniversity, IconUnlock, IconUserComputer, IconUserFriends, IconUserLight, IconUserPlus, IconUserSearch, IconUserSlash, IconUserSolid, IconUserTag, IconUserTie, IconUsers, IconVideo, IconVolume, IconVolumeMute, IconWrench, Inline, InlineBanner, Italic, Link, Modal, ModalBody, ModalFooter, MultiSelectField, NumberField, Page, PaginationControls, PasswordField, Paywall, PercentageField, PersistentBanner, PhoneField, Pill, PillSelectField, ProgressBar, RadioGroupBoxOption, RadioGroupField, RadioGroupOption, SIZE_25_PERCENT, SIZE_33_PERCENT, SIZE_50_PERCENT, SIZE_66_PERCENT, SIZE_75_PERCENT, SegmentedControl, SelectField, Skeleton, SousChefProvider, Spinner, Stack, Text, TextAreaField, TextField, TimeField, TimeRangeField, Toggle, ToolbarSelect, Tooltip, Underline, WeekField, ZINDEX, toast, useDataTableContext };
|
|
14229
14263
|
//# sourceMappingURL=index.modern.mjs.map
|