@razorpay/blade 9.4.0 → 9.5.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/build/components/index.d.ts +12 -2
- package/build/components/{index.web.js → index.development.web.js} +217 -127
- package/build/components/index.development.web.js.map +1 -0
- package/build/components/index.native.d.ts +6 -1
- package/build/components/index.native.js +36 -36
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.production.web.js +29819 -0
- package/build/components/index.production.web.js.map +1 -0
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/build/tokens/{index.web.js → index.development.web.js} +21 -14
- package/build/tokens/index.development.web.js.map +1 -0
- package/build/tokens/index.native.js +2 -2
- package/build/tokens/index.native.js.map +1 -1
- package/build/tokens/index.production.web.js +8407 -0
- package/build/tokens/index.production.web.js.map +1 -0
- package/build/utils/index.d.ts +9 -5
- package/build/utils/{index.web.js → index.development.web.js} +12 -8
- package/build/utils/index.development.web.js.map +1 -0
- package/build/utils/index.native.d.ts +9 -5
- package/build/utils/index.native.js +2 -2
- package/build/utils/index.native.js.map +1 -1
- package/build/utils/index.production.web.js +322 -0
- package/build/utils/index.production.web.js.map +1 -0
- package/package.json +19 -11
- package/build/components/index.web.js.map +0 -1
- package/build/tokens/index.web.js.map +0 -1
- package/build/utils/index.web.js.map +0 -1
|
@@ -827,8 +827,10 @@ var useColorScheme = function useColorScheme() {
|
|
|
827
827
|
setColorSchemeState = _useState2[1];
|
|
828
828
|
|
|
829
829
|
var setColorScheme = useCallback(function setThemeMode(colorScheme) {
|
|
830
|
-
|
|
831
|
-
|
|
830
|
+
{
|
|
831
|
+
if (!colorSchemeNamesInput.includes(colorScheme)) {
|
|
832
|
+
throw new Error("[useColorScheme]: Expected color scheme to be one of [".concat(colorSchemeNamesInput.toString(), "] but received ").concat(colorScheme));
|
|
833
|
+
}
|
|
832
834
|
}
|
|
833
835
|
|
|
834
836
|
setColorSchemeState(getColorScheme(colorScheme));
|
|
@@ -943,12 +945,14 @@ var ThemeContext = /*#__PURE__*/createContext({
|
|
|
943
945
|
var useTheme = function useTheme() {
|
|
944
946
|
var themeContext = useContext(ThemeContext);
|
|
945
947
|
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
948
|
+
{
|
|
949
|
+
if (!themeContext.theme) {
|
|
950
|
+
throw new Error("[@razorpay/blade:BladeProvider]: BladeProvider is missing theme");
|
|
951
|
+
}
|
|
949
952
|
|
|
950
|
-
|
|
951
|
-
|
|
953
|
+
if (themeContext === undefined) {
|
|
954
|
+
throw new Error("[@razorpay/blade:BladeProvider]: useTheme must be used within BladeProvider");
|
|
955
|
+
}
|
|
952
956
|
}
|
|
953
957
|
|
|
954
958
|
return themeContext;
|
|
@@ -1554,7 +1558,9 @@ var getActionListProperties = function getActionListProperties(children) {
|
|
|
1554
1558
|
return getActionListItemWithId(child, true);
|
|
1555
1559
|
}
|
|
1556
1560
|
|
|
1557
|
-
|
|
1561
|
+
{
|
|
1562
|
+
throw new Error("[ActionList]: Only ".concat(actionListAllowedChildren.join(', '), " supported inside ActionList"));
|
|
1563
|
+
}
|
|
1558
1564
|
}
|
|
1559
1565
|
|
|
1560
1566
|
return child;
|
|
@@ -1569,16 +1575,19 @@ var getActionListProperties = function getActionListProperties(children) {
|
|
|
1569
1575
|
var validateActionListItemProps = function validateActionListItemProps(_ref) {
|
|
1570
1576
|
var leading = _ref.leading,
|
|
1571
1577
|
trailing = _ref.trailing;
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1578
|
+
|
|
1579
|
+
{
|
|
1580
|
+
React__default.Children.map(trailing, function (child) {
|
|
1581
|
+
if (!isValidAllowedChildren(child, componentIds.ActionListItemIcon) && !isValidAllowedChildren(child, componentIds.ActionListItemText)) {
|
|
1582
|
+
throw new Error("[ActionListItem]: Only ".concat(componentIds.ActionListItemIcon, " and ").concat(componentIds.ActionListItemText, " are allowed in trailing prop"));
|
|
1583
|
+
}
|
|
1584
|
+
});
|
|
1585
|
+
React__default.Children.map(leading, function (child) {
|
|
1586
|
+
if (!isValidAllowedChildren(child, componentIds.ActionListItemIcon) && !isValidAllowedChildren(child, componentIds.ActionListItemText) && !isValidAllowedChildren(child, componentIds.ActionListItemAsset)) {
|
|
1587
|
+
throw new Error("[ActionListItem]: Only ".concat(componentIds.ActionListItemIcon, ", ").concat(componentIds.ActionListItemAsset, ", and ").concat(componentIds.ActionListItemText, " are allowed in leading prop"));
|
|
1588
|
+
}
|
|
1589
|
+
});
|
|
1590
|
+
}
|
|
1582
1591
|
};
|
|
1583
1592
|
|
|
1584
1593
|
var getNormalTextColor = function getNormalTextColor(isDisabled) {
|
|
@@ -3777,12 +3786,14 @@ var useBladeProvider = function useBladeProvider(_ref) {
|
|
|
3777
3786
|
var themeTokens = _ref.themeTokens,
|
|
3778
3787
|
initialColorScheme = _ref.initialColorScheme;
|
|
3779
3788
|
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3789
|
+
{
|
|
3790
|
+
if (!themeTokens) {
|
|
3791
|
+
throw new Error("[BladeProvider]: Expected valid themeTokens of type ThemeTokens to be passed but found ".concat(_typeof(themeTokens)));
|
|
3792
|
+
}
|
|
3783
3793
|
|
|
3784
|
-
|
|
3785
|
-
|
|
3794
|
+
if (initialColorScheme && !colorSchemeNamesInput.includes(initialColorScheme)) {
|
|
3795
|
+
throw new Error("[BladeProvider]: Expected color scheme to be one of [".concat(colorSchemeNamesInput.toString(), "] but received ").concat(initialColorScheme));
|
|
3796
|
+
}
|
|
3786
3797
|
}
|
|
3787
3798
|
|
|
3788
3799
|
var _useColorScheme = useColorScheme(initialColorScheme),
|
|
@@ -4252,8 +4263,10 @@ var ActionListContext = /*#__PURE__*/React__default.createContext({
|
|
|
4252
4263
|
var useActionListContext = function useActionListContext() {
|
|
4253
4264
|
var context = React__default.useContext(ActionListContext);
|
|
4254
4265
|
|
|
4255
|
-
|
|
4256
|
-
|
|
4266
|
+
{
|
|
4267
|
+
if (!context) {
|
|
4268
|
+
throw new Error('[Blade ActionList]: useActionListContext has to be called inside ActionListContext.Provider');
|
|
4269
|
+
}
|
|
4257
4270
|
}
|
|
4258
4271
|
|
|
4259
4272
|
return context;
|
|
@@ -4413,21 +4426,25 @@ function ownKeys$5T(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
|
4413
4426
|
function _objectSpread$5S(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys$5T(Object(source), !0).forEach(function (key) { _defineProperty$1(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys$5T(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4414
4427
|
|
|
4415
4428
|
var validateBackgroundString = function validateBackgroundString(stringBackgroundColorValue) {
|
|
4416
|
-
|
|
4417
|
-
|
|
4429
|
+
{
|
|
4430
|
+
if (!stringBackgroundColorValue.startsWith('surface.background') && !stringBackgroundColorValue.startsWith('brand.')) {
|
|
4431
|
+
throw new Error("[Blade - Box]: Oops! Currently you can only use `surface.background.*` and `brand.*` tokens with backgroundColor property but we received `".concat(stringBackgroundColorValue, "` instead.\n\n Do you have a usecase of using other values? Create an issue on https://github.com/razorpay/blade repo to let us know and we can discuss \u2728"));
|
|
4432
|
+
}
|
|
4418
4433
|
}
|
|
4419
4434
|
};
|
|
4420
4435
|
|
|
4421
4436
|
var validateBackgroundProp = function validateBackgroundProp(responsiveBackgroundColor) {
|
|
4422
|
-
|
|
4423
|
-
if (
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4437
|
+
{
|
|
4438
|
+
if (responsiveBackgroundColor) {
|
|
4439
|
+
if (typeof responsiveBackgroundColor === 'string') {
|
|
4440
|
+
validateBackgroundString(responsiveBackgroundColor);
|
|
4441
|
+
return;
|
|
4442
|
+
}
|
|
4427
4443
|
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4444
|
+
Object.values(responsiveBackgroundColor).forEach(function (backgroundColor) {
|
|
4445
|
+
validateBackgroundString(backgroundColor);
|
|
4446
|
+
});
|
|
4447
|
+
}
|
|
4431
4448
|
}
|
|
4432
4449
|
};
|
|
4433
4450
|
/**
|
|
@@ -4579,16 +4596,20 @@ var makeBoxProps = function makeBoxProps(props) {
|
|
|
4579
4596
|
|
|
4580
4597
|
var _Box = function _Box(props, ref) {
|
|
4581
4598
|
React__default.useEffect(function () {
|
|
4582
|
-
|
|
4599
|
+
{
|
|
4600
|
+
validateBackgroundProp(props.backgroundColor);
|
|
4601
|
+
}
|
|
4583
4602
|
}, [props.backgroundColor]);
|
|
4584
4603
|
React__default.useEffect(function () {
|
|
4585
|
-
|
|
4586
|
-
if (
|
|
4587
|
-
|
|
4588
|
-
|
|
4604
|
+
{
|
|
4605
|
+
if (props.as) {
|
|
4606
|
+
if (isReactNative$4()) {
|
|
4607
|
+
throw new Error('[Blade - Box]: `as` prop is not supported on React Native');
|
|
4608
|
+
}
|
|
4589
4609
|
|
|
4590
|
-
|
|
4591
|
-
|
|
4610
|
+
if (!validBoxAsValues.includes(props.as)) {
|
|
4611
|
+
throw new Error("[Blade - Box]: Invalid `as` prop value - ".concat(props.as, ". Only ").concat(validBoxAsValues.join(', '), " are valid values"));
|
|
4612
|
+
}
|
|
4592
4613
|
}
|
|
4593
4614
|
}
|
|
4594
4615
|
}, [props.as]);
|
|
@@ -5028,8 +5049,10 @@ var useValidateAsProp = function useValidateAsProp(_ref) {
|
|
|
5028
5049
|
componentName = _ref.componentName,
|
|
5029
5050
|
validAsValues = _ref.validAsValues;
|
|
5030
5051
|
React__default.useEffect(function () {
|
|
5031
|
-
|
|
5032
|
-
|
|
5052
|
+
{
|
|
5053
|
+
if (as && !validAsValues.includes(as)) {
|
|
5054
|
+
throw new Error("[Blade ".concat(componentName, "]: Invalid `as` prop value - ").concat(as, ". Only ").concat(validAsValues.join(', '), " are accepted"));
|
|
5055
|
+
}
|
|
5033
5056
|
}
|
|
5034
5057
|
}, [as, componentName, validAsValues]);
|
|
5035
5058
|
};
|
|
@@ -5169,12 +5192,14 @@ var getProps$2 = function getProps(_ref) {
|
|
|
5169
5192
|
props.as = 'h4';
|
|
5170
5193
|
}
|
|
5171
5194
|
} else if (variant === 'subheading') {
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
5195
|
+
{
|
|
5196
|
+
if (weight === 'regular') {
|
|
5197
|
+
throw new Error("[Blade: Heading]: weight cannot be 'regular' when variant is 'subheading'");
|
|
5198
|
+
}
|
|
5175
5199
|
|
|
5176
|
-
|
|
5177
|
-
|
|
5200
|
+
if (size) {
|
|
5201
|
+
throw new Error("[Blade: Heading]: size prop cannot be added when variant is 'subheading'. Use variant 'regular' or remove size prop");
|
|
5202
|
+
}
|
|
5178
5203
|
}
|
|
5179
5204
|
|
|
5180
5205
|
props.fontSize = 75;
|
|
@@ -5369,7 +5394,9 @@ var getCodeFontSizeAndLineHeight = function getCodeFontSizeAndLineHeight(size) {
|
|
|
5369
5394
|
};
|
|
5370
5395
|
|
|
5371
5396
|
default:
|
|
5372
|
-
|
|
5397
|
+
{
|
|
5398
|
+
throw new Error("[Blade Code]: Unexpected size: ".concat(size));
|
|
5399
|
+
}
|
|
5373
5400
|
}
|
|
5374
5401
|
};
|
|
5375
5402
|
|
|
@@ -5394,8 +5421,10 @@ var getCodeColor = function getCodeColor(_ref) {
|
|
|
5394
5421
|
color = _ref.color;
|
|
5395
5422
|
|
|
5396
5423
|
if (isHighlighted) {
|
|
5397
|
-
|
|
5398
|
-
|
|
5424
|
+
{
|
|
5425
|
+
if (color) {
|
|
5426
|
+
throw new Error('[Blade: Code]: `color` prop cannot be used without `isHighlighted={false}`');
|
|
5427
|
+
}
|
|
5399
5428
|
}
|
|
5400
5429
|
|
|
5401
5430
|
return 'surface.text.subtle.lowContrast';
|
|
@@ -5447,9 +5476,9 @@ var Code = function Code(_ref2) {
|
|
|
5447
5476
|
testID = _ref2.testID,
|
|
5448
5477
|
styledProps = _objectWithoutProperties$1(_ref2, _excluded$4Q);
|
|
5449
5478
|
|
|
5450
|
-
var
|
|
5451
|
-
fontSize =
|
|
5452
|
-
lineHeight =
|
|
5479
|
+
var _ref3 = getCodeFontSizeAndLineHeight(size),
|
|
5480
|
+
fontSize = _ref3.fontSize,
|
|
5481
|
+
lineHeight = _ref3.lineHeight;
|
|
5453
5482
|
|
|
5454
5483
|
var codeTextColor = React__default.useMemo(function () {
|
|
5455
5484
|
return getCodeColor({
|
|
@@ -6082,8 +6111,10 @@ var useCheckbox = function useCheckbox(_ref) {
|
|
|
6082
6111
|
var inputRef = React__default.useRef(null);
|
|
6083
6112
|
var isReactNative = getPlatformType() === 'react-native';
|
|
6084
6113
|
|
|
6085
|
-
|
|
6086
|
-
|
|
6114
|
+
{
|
|
6115
|
+
if (isChecked && defaultChecked) {
|
|
6116
|
+
throw new Error("[Blade useCheckbox] Do not provide both 'isChecked' and 'defaultChecked' to useCheckbox. Consider if you want this component to be controlled or uncontrolled.");
|
|
6117
|
+
}
|
|
6087
6118
|
}
|
|
6088
6119
|
|
|
6089
6120
|
var _useControllableState = useControllableState({
|
|
@@ -16752,14 +16783,16 @@ var _Checkbox = function _Checkbox(_ref, ref) {
|
|
|
16752
16783
|
var hasIsChecked = !isUndefined_1(isChecked);
|
|
16753
16784
|
var hasOnChange = !isUndefined_1(onChange);
|
|
16754
16785
|
|
|
16755
|
-
|
|
16756
|
-
|
|
16757
|
-
|
|
16758
|
-
|
|
16786
|
+
{
|
|
16787
|
+
if ((hasValidationState || hasName || hasDefaultChecked || hasIsChecked || hasOnChange) && !isEmpty_1(groupProps)) {
|
|
16788
|
+
var props = [hasValidationState ? 'validationState' : undefined, hasName ? 'name' : undefined, hasDefaultChecked ? 'defaultChecked' : undefined, hasIsChecked ? 'isChecked' : undefined, hasOnChange ? 'onChange' : undefined].filter(Boolean).join(',');
|
|
16789
|
+
throw new Error("[Blade Checkbox]: Cannot set `".concat(props, "` on <Checkbox /> when it's inside <CheckboxGroup />, Please set it on the <CheckboxGroup /> itself"));
|
|
16790
|
+
} // mandate value prop when using inside group
|
|
16759
16791
|
|
|
16760
16792
|
|
|
16761
|
-
|
|
16762
|
-
|
|
16793
|
+
if (!value && !isEmpty_1(groupProps)) {
|
|
16794
|
+
throw new Error("[Blade Checkbox]: <CheckboxGroup /> requires that you pass unique \"value\" prop to each <Checkbox />\n <CheckboxGroup>\n <Checkbox value=\"apple\">Apple</Checkbox>\n <Checkbox value=\"mango\">Mango</Checkbox>\n </CheckboxGroup>\n ");
|
|
16795
|
+
}
|
|
16763
16796
|
}
|
|
16764
16797
|
|
|
16765
16798
|
var _validationState = validationState !== null && validationState !== void 0 ? validationState : groupProps === null || groupProps === void 0 ? void 0 : groupProps.validationState;
|
|
@@ -17353,8 +17386,10 @@ var _ActionListItem = function _ActionListItem(props) {
|
|
|
17353
17386
|
});
|
|
17354
17387
|
}, [props.leading, props.trailing]);
|
|
17355
17388
|
React__default.useEffect(function () {
|
|
17356
|
-
|
|
17357
|
-
|
|
17389
|
+
{
|
|
17390
|
+
if (dropdownTriggerer === 'SelectInput' && props.intent === 'negative') {
|
|
17391
|
+
throw new Error('[ActionListItem]: negative intent ActionListItem cannot be used inside Dropdown with SelectInput trigger');
|
|
17392
|
+
}
|
|
17358
17393
|
}
|
|
17359
17394
|
}, [props.intent, dropdownTriggerer]);
|
|
17360
17395
|
return /*#__PURE__*/jsx(ActionListItemContext.Provider, {
|
|
@@ -18235,8 +18270,10 @@ var _BaseButton = function _BaseButton(_ref4, ref) {
|
|
|
18235
18270
|
var _useTheme = useTheme(),
|
|
18236
18271
|
theme = _useTheme.theme;
|
|
18237
18272
|
|
|
18238
|
-
|
|
18239
|
-
|
|
18273
|
+
{
|
|
18274
|
+
if (!Icon && !(childrenString !== null && childrenString !== void 0 && childrenString.trim())) {
|
|
18275
|
+
throw new Error("[Blade: BaseButton]: At least one of icon or text is required to render a button.");
|
|
18276
|
+
}
|
|
18240
18277
|
}
|
|
18241
18278
|
|
|
18242
18279
|
var prevLoading = usePrevious(isLoading);
|
|
@@ -18615,8 +18652,10 @@ var _BaseLink = function _BaseLink(_ref3, ref) {
|
|
|
18615
18652
|
var _useTheme = useTheme(),
|
|
18616
18653
|
theme = _useTheme.theme;
|
|
18617
18654
|
|
|
18618
|
-
|
|
18619
|
-
|
|
18655
|
+
{
|
|
18656
|
+
if (!Icon && !(childrenString !== null && childrenString !== void 0 && childrenString.trim())) {
|
|
18657
|
+
throw new Error("[Blade: BaseLink]: At least one of icon or text is required to render a link.");
|
|
18658
|
+
}
|
|
18620
18659
|
}
|
|
18621
18660
|
|
|
18622
18661
|
var _getProps = getProps({
|
|
@@ -18787,8 +18826,10 @@ var Alert = function Alert(_ref) {
|
|
|
18787
18826
|
testID = _ref.testID,
|
|
18788
18827
|
styledProps = _objectWithoutProperties$1(_ref, _excluded$u);
|
|
18789
18828
|
|
|
18790
|
-
|
|
18791
|
-
|
|
18829
|
+
{
|
|
18830
|
+
if (!(actions !== null && actions !== void 0 && actions.primary) && actions !== null && actions !== void 0 && actions.secondary) {
|
|
18831
|
+
throw new Error('[Blade: Alert]: SecondaryAction is allowed only when PrimaryAction is defined.');
|
|
18832
|
+
}
|
|
18792
18833
|
}
|
|
18793
18834
|
|
|
18794
18835
|
var _useTheme = useTheme(),
|
|
@@ -19058,8 +19099,10 @@ var _Badge = function _Badge(_ref2) {
|
|
|
19058
19099
|
|
|
19059
19100
|
var childrenString = getStringFromReactText(children);
|
|
19060
19101
|
|
|
19061
|
-
|
|
19062
|
-
|
|
19102
|
+
{
|
|
19103
|
+
if (!(childrenString !== null && childrenString !== void 0 && childrenString.trim())) {
|
|
19104
|
+
throw new Error('[Blade: Badge]: Text as children is required for Badge.');
|
|
19105
|
+
}
|
|
19063
19106
|
}
|
|
19064
19107
|
|
|
19065
19108
|
var _getColorProps = getColorProps$1({
|
|
@@ -19153,8 +19196,10 @@ var CardContext = /*#__PURE__*/React__default.createContext(null);
|
|
|
19153
19196
|
var useVerifyInsideCard = function useVerifyInsideCard(componentName) {
|
|
19154
19197
|
var context = React__default.useContext(CardContext);
|
|
19155
19198
|
|
|
19156
|
-
|
|
19157
|
-
|
|
19199
|
+
{
|
|
19200
|
+
if (!context) {
|
|
19201
|
+
throw new Error("[Blade Card]: ".concat(componentName, " cannot be used outside of Card component"));
|
|
19202
|
+
}
|
|
19158
19203
|
}
|
|
19159
19204
|
|
|
19160
19205
|
return true;
|
|
@@ -19168,8 +19213,10 @@ var useVerifyAllowedComponents = function useVerifyAllowedComponents(children, c
|
|
|
19168
19213
|
React__default.Children.forEach(children, function (child) {
|
|
19169
19214
|
var isValidChild = child && allowedComponents.includes(getComponentId(child));
|
|
19170
19215
|
|
|
19171
|
-
|
|
19172
|
-
|
|
19216
|
+
{
|
|
19217
|
+
if (!isValidChild) {
|
|
19218
|
+
throw new Error("[Blade Card]: Only one of `".concat(allowedComponents.join(', '), "` component is accepted as ").concat(componentName, " children"));
|
|
19219
|
+
}
|
|
19173
19220
|
}
|
|
19174
19221
|
});
|
|
19175
19222
|
};
|
|
@@ -19649,12 +19696,14 @@ var _CardHeaderLeading = function _CardHeaderLeading(_ref3) {
|
|
|
19649
19696
|
suffix = _ref3.suffix;
|
|
19650
19697
|
useVerifyInsideCard('CardHeaderLeading');
|
|
19651
19698
|
|
|
19652
|
-
|
|
19653
|
-
|
|
19654
|
-
|
|
19699
|
+
{
|
|
19700
|
+
if (prefix && !isValidAllowedChildren(prefix, ComponentIds$1.CardHeaderIcon)) {
|
|
19701
|
+
throw new Error("[Blade CardHeaderLeading]: Only `".concat(ComponentIds$1.CardHeaderIcon, "` component is accepted in prefix"));
|
|
19702
|
+
}
|
|
19655
19703
|
|
|
19656
|
-
|
|
19657
|
-
|
|
19704
|
+
if (suffix && !isValidAllowedChildren(suffix, ComponentIds$1.CardHeaderCounter)) {
|
|
19705
|
+
throw new Error("[Blade CardHeaderLeading]: Only `".concat(ComponentIds$1.CardHeaderCounter, "` component is accepted in prefix"));
|
|
19706
|
+
}
|
|
19658
19707
|
}
|
|
19659
19708
|
|
|
19660
19709
|
return /*#__PURE__*/jsxs(BaseBox, {
|
|
@@ -19702,8 +19751,10 @@ var _CardHeaderTrailing = function _CardHeaderTrailing(_ref4) {
|
|
|
19702
19751
|
var visual = _ref4.visual;
|
|
19703
19752
|
useVerifyInsideCard('CardHeaderTrailing');
|
|
19704
19753
|
|
|
19705
|
-
|
|
19706
|
-
|
|
19754
|
+
{
|
|
19755
|
+
if (visual && !headerTrailingAllowedComponents.includes(getComponentId(visual))) {
|
|
19756
|
+
throw new Error("[Blade CardHeaderTrailing]: Only one of `".concat(headerTrailingAllowedComponents.join(', '), "` component is accepted in visual"));
|
|
19757
|
+
}
|
|
19707
19758
|
}
|
|
19708
19759
|
|
|
19709
19760
|
return /*#__PURE__*/jsx(BaseBox, {
|
|
@@ -19742,8 +19793,10 @@ var _CardFooter = function _CardFooter(_ref) {
|
|
|
19742
19793
|
useVerifyAllowedComponents(children, 'CardFooter', [ComponentIds$1.CardFooterLeading, ComponentIds$1.CardFooterTrailing]);
|
|
19743
19794
|
var footerChildrensArray = React__default.Children.toArray(children);
|
|
19744
19795
|
|
|
19745
|
-
|
|
19746
|
-
|
|
19796
|
+
{
|
|
19797
|
+
if (! /*#__PURE__*/React__default.isValidElement(footerChildrensArray[0])) {
|
|
19798
|
+
throw new Error("Invalid React Element ".concat(footerChildrensArray));
|
|
19799
|
+
}
|
|
19747
19800
|
} // the reason why we are checking for actions here is, because we want the footerTrailing
|
|
19748
19801
|
// to always be aligned to the right
|
|
19749
19802
|
// if we don't check for action here, and if we do not have footerTrailing and only footerLeading
|
|
@@ -19974,10 +20027,12 @@ var _Dropdown = function _Dropdown(_ref) {
|
|
|
19974
20027
|
}, [onDismiss]);
|
|
19975
20028
|
React__default.Children.map(children, function (child) {
|
|
19976
20029
|
if ( /*#__PURE__*/React__default.isValidElement(child)) {
|
|
19977
|
-
|
|
20030
|
+
{
|
|
20031
|
+
var _getComponentId;
|
|
19978
20032
|
|
|
19979
|
-
|
|
19980
|
-
|
|
20033
|
+
if (!validDropdownChildren.includes((_getComponentId = getComponentId(child)) !== null && _getComponentId !== void 0 ? _getComponentId : '')) {
|
|
20034
|
+
throw new Error("[Dropdown]: Dropdown can only have one of following elements as children - \n\n ".concat(validDropdownChildren.join(', '), " \n\n Check out: https://blade.razorpay.com/?path=/story/components-dropdown"));
|
|
20035
|
+
}
|
|
19981
20036
|
}
|
|
19982
20037
|
|
|
19983
20038
|
if (isValidAllowedChildren(child, componentIds$1.triggers.SelectInput)) {
|
|
@@ -20906,8 +20961,10 @@ var useTrailingRestriction = function useTrailingRestriction(trailing) {
|
|
|
20906
20961
|
var restrictedProps = propRestrictionMap[trailingComponentType];
|
|
20907
20962
|
var allowedComponents = Object.keys(propRestrictionMap);
|
|
20908
20963
|
|
|
20909
|
-
|
|
20910
|
-
|
|
20964
|
+
{
|
|
20965
|
+
if (!restrictedProps) {
|
|
20966
|
+
throw new Error("[Blade Header]: Only one of `".concat(allowedComponents.join(', '), "` component is accepted as trailing"));
|
|
20967
|
+
}
|
|
20911
20968
|
}
|
|
20912
20969
|
|
|
20913
20970
|
var restrictedPropKeys = Object.keys(propRestrictionMap[trailingComponentType]);
|
|
@@ -21743,8 +21800,10 @@ var useInput = function useInput(_ref) {
|
|
|
21743
21800
|
onInput = _ref.onInput,
|
|
21744
21801
|
onKeyDown = _ref.onKeyDown;
|
|
21745
21802
|
|
|
21746
|
-
|
|
21747
|
-
|
|
21803
|
+
{
|
|
21804
|
+
if (value && defaultValue) {
|
|
21805
|
+
throw new Error("[Blade: Input]: Either 'value' or 'defaultValue' shall be passed. This decides if the input field is controlled or uncontrolled");
|
|
21806
|
+
}
|
|
21748
21807
|
}
|
|
21749
21808
|
|
|
21750
21809
|
var _React$useState = React__default.useState(defaultValue !== null && defaultValue !== void 0 ? defaultValue : value),
|
|
@@ -22057,8 +22116,10 @@ var BaseInput = /*#__PURE__*/React__default.forwardRef(function (_ref11, ref) {
|
|
|
22057
22116
|
});
|
|
22058
22117
|
var willRenderHintText = Boolean(helpText) || Boolean(successText) || Boolean(errorText);
|
|
22059
22118
|
|
|
22060
|
-
|
|
22061
|
-
|
|
22119
|
+
{
|
|
22120
|
+
if (autoCompleteSuggestionType && !autoCompleteSuggestionTypeValues.includes(autoCompleteSuggestionType)) {
|
|
22121
|
+
throw new Error("[Blade: Input]: Expected autoCompleteSuggestionType to be one of ".concat(autoCompleteSuggestionTypeValues.join(', '), " but received ").concat(autoCompleteSuggestionType));
|
|
22122
|
+
}
|
|
22062
22123
|
}
|
|
22063
22124
|
|
|
22064
22125
|
var isTextArea = as === 'textarea';
|
|
@@ -23535,7 +23596,9 @@ var _List = function _List(_ref3) {
|
|
|
23535
23596
|
var childListItems = childrenArray.filter(function (child) {
|
|
23536
23597
|
if (isValidAllowedChildren(child, MetaConstants.ListItem)) {
|
|
23537
23598
|
return child;
|
|
23538
|
-
}
|
|
23599
|
+
}
|
|
23600
|
+
|
|
23601
|
+
{
|
|
23539
23602
|
throw new Error('[Blade List]: You can only pass a ListItem as a child to List.');
|
|
23540
23603
|
}
|
|
23541
23604
|
});
|
|
@@ -23903,8 +23966,10 @@ var _ListItem = function _ListItem(_ref3) {
|
|
|
23903
23966
|
|
|
23904
23967
|
var ItemIcon = Icon !== null && Icon !== void 0 ? Icon : ListContextIcon;
|
|
23905
23968
|
|
|
23906
|
-
|
|
23907
|
-
|
|
23969
|
+
{
|
|
23970
|
+
if (level && level > 3) {
|
|
23971
|
+
throw new Error('[Blade List]: List Nesting is allowed only upto 3 levels.');
|
|
23972
|
+
}
|
|
23908
23973
|
}
|
|
23909
23974
|
|
|
23910
23975
|
var childrenArray = React__default.Children.toArray(children); // Get children that are not a List component and are valid allowed children
|
|
@@ -24324,7 +24389,9 @@ var Modal = function Modal(_ref2) {
|
|
|
24324
24389
|
initialFocusRef = _ref2.initialFocusRef,
|
|
24325
24390
|
_ref2$size = _ref2.size,
|
|
24326
24391
|
size = _ref2$size === void 0 ? 'small' : _ref2$size,
|
|
24327
|
-
accessibilityLabel = _ref2.accessibilityLabel
|
|
24392
|
+
accessibilityLabel = _ref2.accessibilityLabel,
|
|
24393
|
+
_ref2$zIndex = _ref2.zIndex,
|
|
24394
|
+
zIndex = _ref2$zIndex === void 0 ? modalHighestZIndex : _ref2$zIndex;
|
|
24328
24395
|
|
|
24329
24396
|
var _useTheme = useTheme(),
|
|
24330
24397
|
theme = _useTheme.theme,
|
|
@@ -24384,7 +24451,7 @@ var Modal = function Modal(_ref2) {
|
|
|
24384
24451
|
context: context,
|
|
24385
24452
|
modal: true,
|
|
24386
24453
|
children: /*#__PURE__*/jsxs(Box, {
|
|
24387
|
-
zIndex:
|
|
24454
|
+
zIndex: zIndex,
|
|
24388
24455
|
position: "fixed",
|
|
24389
24456
|
testID: "modal-wrapper",
|
|
24390
24457
|
children: [/*#__PURE__*/jsx(ModalBackdrop, {}), /*#__PURE__*/jsx(ModalContent, _objectSpread$y(_objectSpread$y(_objectSpread$y({}, metaAttribute({
|
|
@@ -24655,8 +24722,10 @@ var ProgressBar = function ProgressBar(_ref) {
|
|
|
24655
24722
|
|
|
24656
24723
|
var id = useId(variant);
|
|
24657
24724
|
|
|
24658
|
-
|
|
24659
|
-
|
|
24725
|
+
{
|
|
24726
|
+
if (variant === 'meter' && isIndeterminate) {
|
|
24727
|
+
throw new Error("[Blade: ProgressBar]: Cannot set 'isIndeterminate' when 'variant' is 'meter'.");
|
|
24728
|
+
}
|
|
24660
24729
|
}
|
|
24661
24730
|
|
|
24662
24731
|
var unfilledBackgroundColor = theme.colors.brand.gray.a100["".concat(contrast, "Contrast")];
|
|
@@ -24763,8 +24832,10 @@ var useRadio = function useRadio(_ref) {
|
|
|
24763
24832
|
var inputRef = React__default.useRef(null);
|
|
24764
24833
|
var isReactNative = getPlatformType() === 'react-native';
|
|
24765
24834
|
|
|
24766
|
-
|
|
24767
|
-
|
|
24835
|
+
{
|
|
24836
|
+
if (isChecked && defaultChecked) {
|
|
24837
|
+
throw new Error("[Blade: Radio]: Do not provide both 'isChecked' and 'defaultChecked' to useRadio. Consider if you want this component to be controlled or uncontrolled.");
|
|
24838
|
+
}
|
|
24768
24839
|
}
|
|
24769
24840
|
|
|
24770
24841
|
var _useControllableState = useControllableState({
|
|
@@ -25107,8 +25178,10 @@ var _Radio = function _Radio(_ref, ref) {
|
|
|
25107
25178
|
var groupProps = useRadioGroupContext();
|
|
25108
25179
|
var isInsideGroup = !isEmpty_1(groupProps);
|
|
25109
25180
|
|
|
25110
|
-
|
|
25111
|
-
|
|
25181
|
+
{
|
|
25182
|
+
if (!isInsideGroup) {
|
|
25183
|
+
throw new Error('[Blade Radio]: Cannot use <Radio /> outside of <RadioGroup />');
|
|
25184
|
+
}
|
|
25112
25185
|
}
|
|
25113
25186
|
|
|
25114
25187
|
var isChecked = groupProps === null || groupProps === void 0 ? void 0 : (_groupProps$state = groupProps.state) === null || _groupProps$state === void 0 ? void 0 : _groupProps$state.isChecked(value);
|
|
@@ -26309,13 +26382,15 @@ var _Amount = function _Amount(_ref4) {
|
|
|
26309
26382
|
currency = _ref4$currency === void 0 ? 'INR' : _ref4$currency,
|
|
26310
26383
|
styledProps = _objectWithoutProperties$1(_ref4, _excluded$3);
|
|
26311
26384
|
|
|
26312
|
-
|
|
26313
|
-
|
|
26314
|
-
|
|
26385
|
+
{
|
|
26386
|
+
if (typeof value !== 'number') {
|
|
26387
|
+
throw new Error('[Blade: Amount]: `value` prop must be of type `number` for Amount.');
|
|
26388
|
+
} // @ts-expect-error neutral intent should throw error
|
|
26315
26389
|
|
|
26316
26390
|
|
|
26317
|
-
|
|
26318
|
-
|
|
26391
|
+
if (intent === 'neutral') {
|
|
26392
|
+
throw new Error('[Blade Amount]: `neutral` intent is not supported.');
|
|
26393
|
+
}
|
|
26319
26394
|
}
|
|
26320
26395
|
|
|
26321
26396
|
var currencyPrefix = currencyPrefixMapping[currency][prefix];
|
|
@@ -28966,8 +29041,10 @@ var AccordionContext = /*#__PURE__*/createContext(null);
|
|
|
28966
29041
|
var useAccordion = function useAccordion() {
|
|
28967
29042
|
var accordionContext = useContext(AccordionContext);
|
|
28968
29043
|
|
|
28969
|
-
|
|
28970
|
-
|
|
29044
|
+
{
|
|
29045
|
+
if (!accordionContext) {
|
|
29046
|
+
throw new Error("[Blade: AccordionContext]: useAccordion should be only used within AccordionContext");
|
|
29047
|
+
}
|
|
28971
29048
|
}
|
|
28972
29049
|
|
|
28973
29050
|
return accordionContext;
|
|
@@ -29140,8 +29217,10 @@ var CollapsibleContext = /*#__PURE__*/createContext(null);
|
|
|
29140
29217
|
var useCollapsible = function useCollapsible() {
|
|
29141
29218
|
var collapsibleContext = useContext(CollapsibleContext);
|
|
29142
29219
|
|
|
29143
|
-
|
|
29144
|
-
|
|
29220
|
+
{
|
|
29221
|
+
if (!collapsibleContext) {
|
|
29222
|
+
throw new Error("[Blade: CollapsibleContext]: You're trying to use Collapsible sub-components without Collapsible. useCollapsible should only be used within CollapsibleContext");
|
|
29223
|
+
}
|
|
29145
29224
|
}
|
|
29146
29225
|
|
|
29147
29226
|
return collapsibleContext;
|
|
@@ -29263,8 +29342,10 @@ var _AccordionButton = function _AccordionButton(_ref) {
|
|
|
29263
29342
|
marginY: "spacing.2"
|
|
29264
29343
|
});
|
|
29265
29344
|
|
|
29266
|
-
|
|
29267
|
-
|
|
29345
|
+
{
|
|
29346
|
+
if (_index && _icon) {
|
|
29347
|
+
throw new Error("[Blade: Accordion]: showNumberPrefix and icon shouldn't be used together");
|
|
29348
|
+
}
|
|
29268
29349
|
}
|
|
29269
29350
|
|
|
29270
29351
|
var isItemExpanded = expandedIndex === index;
|
|
@@ -29368,11 +29449,15 @@ var Collapsible = function Collapsible(_ref) {
|
|
|
29368
29449
|
collapsibleBodyId: collapsibleBodyId
|
|
29369
29450
|
};
|
|
29370
29451
|
}, [isBodyExpanded, direction, handleExpandChange, isExpanded, collapsibleBodyId]);
|
|
29371
|
-
|
|
29372
|
-
|
|
29373
|
-
|
|
29374
|
-
|
|
29375
|
-
|
|
29452
|
+
|
|
29453
|
+
{
|
|
29454
|
+
Children.forEach(children, function (child) {
|
|
29455
|
+
if (!(isValidAllowedChildren(child, MetaConstants.CollapsibleBody) || isValidAllowedChildren(child, MetaConstants.CollapsibleButton) || isValidAllowedChildren(child, MetaConstants.CollapsibleLink) || isValidAllowedChildren(child, MetaConstants.AccordionButton))) {
|
|
29456
|
+
throw new Error("[Blade: Collapsible]: only the following are supported as valid children: CollapsibleBody, CollapsibleButton, CollapsibleLink");
|
|
29457
|
+
}
|
|
29458
|
+
});
|
|
29459
|
+
}
|
|
29460
|
+
|
|
29376
29461
|
return /*#__PURE__*/jsx(CollapsibleContext.Provider, {
|
|
29377
29462
|
value: contextValue,
|
|
29378
29463
|
children: /*#__PURE__*/jsx(BaseBox, _objectSpread$9(_objectSpread$9(_objectSpread$9({}, metaAttribute({
|
|
@@ -29812,6 +29897,7 @@ var TooltipContent = /*#__PURE__*/React__default.forwardRef(function (_ref, ref)
|
|
|
29812
29897
|
|
|
29813
29898
|
var ARROW_WIDTH = 14;
|
|
29814
29899
|
var ARROW_HEIGHT = 7;
|
|
29900
|
+
var tooltipZIndex = 1100;
|
|
29815
29901
|
|
|
29816
29902
|
function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
29817
29903
|
|
|
@@ -29874,8 +29960,10 @@ var TooltipContext = /*#__PURE__*/React__default.createContext(null);
|
|
|
29874
29960
|
var useTooltipContext = function useTooltipContext() {
|
|
29875
29961
|
var context = React__default.useContext(TooltipContext);
|
|
29876
29962
|
|
|
29877
|
-
|
|
29878
|
-
|
|
29963
|
+
{
|
|
29964
|
+
if (!context) {
|
|
29965
|
+
throw new Error('[Blade Tooltip]: TooltipInteractiveWrapper must be used within Tooltip');
|
|
29966
|
+
}
|
|
29879
29967
|
}
|
|
29880
29968
|
|
|
29881
29969
|
return context;
|
|
@@ -29890,7 +29978,9 @@ var Tooltip = function Tooltip(_ref) {
|
|
|
29890
29978
|
children = _ref.children,
|
|
29891
29979
|
_ref$placement = _ref.placement,
|
|
29892
29980
|
placement = _ref$placement === void 0 ? 'top' : _ref$placement,
|
|
29893
|
-
_onOpenChange = _ref.onOpenChange
|
|
29981
|
+
_onOpenChange = _ref.onOpenChange,
|
|
29982
|
+
_ref$zIndex = _ref.zIndex,
|
|
29983
|
+
zIndex = _ref$zIndex === void 0 ? tooltipZIndex : _ref$zIndex;
|
|
29894
29984
|
|
|
29895
29985
|
var _useTheme = useTheme(),
|
|
29896
29986
|
theme = _useTheme.theme;
|
|
@@ -29988,7 +30078,7 @@ var Tooltip = function Tooltip(_ref) {
|
|
|
29988
30078
|
style: floatingStyles,
|
|
29989
30079
|
pointerEvents: "none" // TODO: Tokenize zIndex values
|
|
29990
30080
|
,
|
|
29991
|
-
zIndex:
|
|
30081
|
+
zIndex: zIndex
|
|
29992
30082
|
}, getFloatingProps()), metaAttribute({
|
|
29993
30083
|
name: MetaConstants.Tooltip
|
|
29994
30084
|
})), {}, {
|
|
@@ -30031,4 +30121,4 @@ var TooltipInteractiveWrapper = /*#__PURE__*/styled(BaseBox).attrs(function () {
|
|
|
30031
30121
|
});
|
|
30032
30122
|
|
|
30033
30123
|
export { Accordion, AccordionItem, ActionList, ActionListItem, ActionListItemAsset, ActionListItemIcon, ActionListItemText, ActionListSection, ActionListSectionDivider, ActivityIcon, AirplayIcon, Alert, AlertCircleIcon, AlertTriangleIcon as AlertOctagonIcon, AlertOnlyIcon, AlertTriangleIcon$1 as AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, Amount, AnchorIcon, AnnouncementIcon, ApertureIcon, AppStoreIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, Attachment as AttachmentIcon, AwardIcon, Badge, BankIcon, BarChartAltIcon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BillIcon, BladeProvider, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BottomSheet, BottomSheetBody, BottomSheetFooter, BottomSheetHeader, Box, BoxIcon, BriefcaseIcon, BulkPayoutsIcon, Button, CalendarIcon, CameraIcon, CameraOffIcon, Card, CardBody, CardFooter, CardFooterLeading, CardFooterTrailing, CardHeader, CardHeaderBadge, CardHeaderCounter, CardHeaderIcon, CardHeaderIconButton, CardHeaderLeading, CardHeaderLink, CardHeaderText, CardHeaderTrailing, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, CheckboxGroup, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, Code, CodepenIcon, CoinsIcon, Collapsible, CollapsibleBody, CollapsibleButton, CollapsibleLink, CommandIcon, CompassIcon, ComponentIds$1 as ComponentIds, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, Counter, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, CustomersIcon, CutIcon, DashboardIcon, DeleteIcon, DiscIcon, Divider, DollarIcon, DollarsIcon, DownloadCloudIcon, DownloadIcon, Dropdown, DropdownButton, DropdownFooter, DropdownHeader, DropdownLink, DropdownOverlay, DropletIcon, EditComposeIcon, EditIcon, EditInlineIcon, ExportIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FullScreenEnterIcon, FullScreenExitIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HashIcon, Heading, HeadphonesIcon, HeartIcon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, ImageIcon, InboxIcon, Indicator, InfoIcon, InstagramIcon, InvoicesIcon, ItalicIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link, LinkIcon, List, ListIcon, ListItem, ListItemCode, ListItemLink, ListItemText, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MailOpenIcon, MapIcon, MapPinIcon, MaximizeIcon, MenuDotsIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, Modal, ModalBody, ModalFooter, ModalHeader, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MoveIcon, MusicIcon, MyAccountIcon, NavigationIcon, OTPInput, OctagonIcon, OffersIcon, PackageIcon, PaperclipIcon, PasswordInput, PauseCircleIcon, PauseIcon, PaymentButtonsIcon, PaymentLinksIcon, PaymentPagesIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProgressBar, QRCodeIcon, Radio, RadioGroup, RadioIcon$1 as RadioIcon, RazorpayIcon, RazorpayXIcon, RefreshIcon, RepeatIcon, ReportsIcon, RewindIcon, RotateClockWiseIcon, RotateCounterClockWiseIcon, RoutesIcon, RupeeIcon, RupeesIcon, SaveIcon, ScissorsIcon, SearchIcon, SelectInput, SendIcon, ServerIcon, SettingsIcon, SettlementsIcon, ShareIcon, ShieldIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, Skeleton, SkipBackIcon, SkipForwardIcon, SkipNavContent, SkipNavLink, SlackIcon, SlashIcon, SlidersIcon, SmartCollectIcon, SmartphoneIcon, SpeakerIcon, Spinner, SquareIcon, StampIcon, StarIcon, StopCircleIcon, SubscriptionsIcon, SunIcon, SunriseIcon, SunsetIcon, Switch, TabletIcon, Tag, TagIcon, TargetIcon, Text, TextArea, TextInput, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, Title, ToggleLeftIcon, ToggleRightIcon, Tooltip, TooltipInteractiveWrapper, TransactionsIcon, TrashIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TvIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VisuallyHidden, VoicemailIcon, VolumeHighIcon, VolumeIcon, VolumeLowIcon, VolumeMuteIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XSquareIcon, ZapIcon, ZoomInIcon, ZoomOutIcon, announce, clearAnnouncer, destroyAnnouncer, getTextProps, screenReaderStyles, useActionListContext, useTheme };
|
|
30034
|
-
//# sourceMappingURL=index.web.js.map
|
|
30124
|
+
//# sourceMappingURL=index.development.web.js.map
|