@ornikar/kitt-universal 29.5.1 → 30.0.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/CHANGELOG.md +13 -0
- package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts +0 -1
- package/dist/definitions/CardModal/CardModalAnimation/NativeRotationAnimation.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +5 -3
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +5 -3
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +5 -3
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +0 -8
- package/dist/index-node-22.17.cjs.web.js +149 -73
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +5 -3
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +0 -8
- package/dist/index-node-22.17.es.web.mjs +149 -73
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +5 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +163 -88
- package/dist/index.es.web.js.map +1 -1
- package/dist/styles.css +0 -8
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts +0 -4
- package/dist/definitions/CardModal/CardModalAnimation/CardModalAnimation.web.d.ts.map +0 -1
package/dist/index.es.web.js
CHANGED
|
@@ -11,9 +11,10 @@ import _typeof from '@babel/runtime/helpers/typeof';
|
|
|
11
11
|
import _regeneratorRuntime from '@babel/runtime/helpers/regeneratorRuntime';
|
|
12
12
|
import _asyncToGenerator from '@babel/runtime/helpers/asyncToGenerator';
|
|
13
13
|
import { SpinnerGapRegularIcon, UserRegularIcon, XRegularIcon, ArrowLeftRegularIcon, CaretUpFillIcon, CaretDownFillIcon, MapPinRegularIcon, EyeClosedRegularIcon, EyeRegularIcon, CheckCircleFillIcon, CaretDownRegularIcon, CaretRightRegularIcon, InfoRegularIcon, WarningRegularIcon, CheckRegularIcon, WarningCircleRegularIcon, ArrowCounterClockwiseRegularIcon, InfoFillIcon, WarningCircleFillIcon, WarningFillIcon } from '@ornikar/kitt-icons/phosphor';
|
|
14
|
-
import { Animated, Easing, ScrollView as ScrollView$2, View as View$2, Linking, Pressable as Pressable$2,
|
|
14
|
+
import { Animated, Easing, StyleSheet, Modal, ScrollView as ScrollView$2, View as View$2, Linking, Pressable as Pressable$2, useWindowDimensions } from 'react-native';
|
|
15
15
|
export { useWindowDimensions as useWindowSize } from 'react-native';
|
|
16
16
|
import { createPortal } from 'react-dom';
|
|
17
|
+
import Animated$1, { useAnimatedStyle, withTiming, Easing as Easing$1, runOnJS, useSharedValue, withSpring, interpolateColor, useAnimatedProps, withDelay, withRepeat, interpolate } from 'react-native-reanimated';
|
|
17
18
|
import { CSSTransition } from 'react-transition-group';
|
|
18
19
|
import { parse } from '@twemoji/parser';
|
|
19
20
|
import Downshift, { useSelect } from 'downshift';
|
|
@@ -22,7 +23,6 @@ import { launchImageLibraryAsync } from 'expo-image-picker';
|
|
|
22
23
|
import { useDebouncedCallback } from 'use-debounce';
|
|
23
24
|
import { Loader } from '@googlemaps/js-api-loader';
|
|
24
25
|
import { parseNumber, getCountryCallingCode, isValidNumber } from 'libphonenumber-js';
|
|
25
|
-
import Animated$1, { useAnimatedStyle, withSpring, withTiming, useSharedValue, interpolateColor, Easing as Easing$1, useAnimatedProps, withDelay, withRepeat, interpolate, runOnJS } from 'react-native-reanimated';
|
|
26
26
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
27
27
|
import Svg, { Circle as Circle$1 } from 'react-native-svg';
|
|
28
28
|
import { useFloating, autoUpdate, offset, autoPlacement, shift, arrow } from '@floating-ui/react-dom';
|
|
@@ -2759,7 +2759,7 @@ function ActionCardDisabled(_ref) {
|
|
|
2759
2759
|
});
|
|
2760
2760
|
}
|
|
2761
2761
|
|
|
2762
|
-
var _excluded$
|
|
2762
|
+
var _excluded$P = ["children", "variant", "borderVariant", "borderRadius", "disabled", "isHovered", "isPressed", "isFocused"];
|
|
2763
2763
|
function ActionCard(_ref) {
|
|
2764
2764
|
var children = _ref.children,
|
|
2765
2765
|
_ref$variant = _ref.variant,
|
|
@@ -2772,7 +2772,7 @@ function ActionCard(_ref) {
|
|
|
2772
2772
|
isHovered = _ref.isHovered,
|
|
2773
2773
|
isPressed = _ref.isPressed,
|
|
2774
2774
|
isFocused = _ref.isFocused,
|
|
2775
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
2775
|
+
props = _objectWithoutProperties(_ref, _excluded$P);
|
|
2776
2776
|
return /*#__PURE__*/jsx(View, _objectSpread(_objectSpread({}, props), {}, {
|
|
2777
2777
|
children: disabled ? /*#__PURE__*/jsx(ActionCardDisabled, {
|
|
2778
2778
|
borderRadius: borderRadius,
|
|
@@ -3104,7 +3104,7 @@ var getTypographyTypeWithAncestorValue = function (type, typographyTypeInContext
|
|
|
3104
3104
|
return !!isAllValuesUndefined && !!typographyTypeInContext ? typographyTypeInContext : type;
|
|
3105
3105
|
};
|
|
3106
3106
|
|
|
3107
|
-
var _excluded$
|
|
3107
|
+
var _excluded$O = ["accessibilityRole", "base", "small", "medium", "large", "wide", "type", "variant", "color"];
|
|
3108
3108
|
var TypographyFamilyContext = /*#__PURE__*/createContext(null);
|
|
3109
3109
|
var TypographyTypeContext = /*#__PURE__*/createContext(null);
|
|
3110
3110
|
var TypographyVariantContext = /*#__PURE__*/createContext(undefined);
|
|
@@ -3229,7 +3229,7 @@ var TypographyBase = /*#__PURE__*/forwardRef(function (_ref2, ref) {
|
|
|
3229
3229
|
} : _ref2$type,
|
|
3230
3230
|
variant = _ref2.variant,
|
|
3231
3231
|
color = _ref2.color,
|
|
3232
|
-
otherProps = _objectWithoutProperties(_ref2, _excluded$
|
|
3232
|
+
otherProps = _objectWithoutProperties(_ref2, _excluded$O);
|
|
3233
3233
|
var sx = useSx();
|
|
3234
3234
|
|
|
3235
3235
|
// ancestors
|
|
@@ -3391,12 +3391,12 @@ function Icon(_ref) {
|
|
|
3391
3391
|
});
|
|
3392
3392
|
}
|
|
3393
3393
|
|
|
3394
|
-
var _excluded$
|
|
3394
|
+
var _excluded$N = ["color", "size"],
|
|
3395
3395
|
_excluded2$6 = ["color"];
|
|
3396
3396
|
function TypographyIconSpecifiedColor(_ref) {
|
|
3397
3397
|
var color = _ref.color,
|
|
3398
3398
|
size = _ref.size,
|
|
3399
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3399
|
+
props = _objectWithoutProperties(_ref, _excluded$N);
|
|
3400
3400
|
var colorValue = getTypographyColorValue(color);
|
|
3401
3401
|
var sx = useSx();
|
|
3402
3402
|
var _sx = sx({
|
|
@@ -3436,7 +3436,7 @@ var getButtonTextColorByType = function (type, variant, isHovered, isPressed, is
|
|
|
3436
3436
|
return "".concat(baseKey, ".default");
|
|
3437
3437
|
};
|
|
3438
3438
|
|
|
3439
|
-
var _excluded$
|
|
3439
|
+
var _excluded$M = ["type", "variant", "isDisabled", "icon", "children", "isHovered", "isPressed", "isFocused", "innerSpacing", "size"];
|
|
3440
3440
|
function ButtonContentChildren(_ref) {
|
|
3441
3441
|
var type = _ref.type,
|
|
3442
3442
|
icon = _ref.icon,
|
|
@@ -3536,7 +3536,7 @@ function ButtonContent(_ref2) {
|
|
|
3536
3536
|
_ref2.isFocused;
|
|
3537
3537
|
var innerSpacing = _ref2.innerSpacing,
|
|
3538
3538
|
size = _ref2.size,
|
|
3539
|
-
props = _objectWithoutProperties(_ref2, _excluded$
|
|
3539
|
+
props = _objectWithoutProperties(_ref2, _excluded$M);
|
|
3540
3540
|
var color = getButtonTextColorByType(type, variant, isHovered, isPressed, isDisabled);
|
|
3541
3541
|
return /*#__PURE__*/jsx(View, {
|
|
3542
3542
|
_web: {
|
|
@@ -3761,7 +3761,7 @@ function LoaderIcon(_ref) {
|
|
|
3761
3761
|
});
|
|
3762
3762
|
}
|
|
3763
3763
|
|
|
3764
|
-
var _excluded$
|
|
3764
|
+
var _excluded$L = ["as", "onPress", "disabled", "icon", "stretch"];
|
|
3765
3765
|
var ActionsItem = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
3766
3766
|
var as = _ref.as,
|
|
3767
3767
|
onPress = _ref.onPress,
|
|
@@ -3772,7 +3772,7 @@ var ActionsItem = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
3772
3772
|
base: true,
|
|
3773
3773
|
medium: false
|
|
3774
3774
|
} : _ref$stretch,
|
|
3775
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3775
|
+
props = _objectWithoutProperties(_ref, _excluded$L);
|
|
3776
3776
|
var _useState = useState(false),
|
|
3777
3777
|
_useState2 = _slicedToArray(_useState, 2),
|
|
3778
3778
|
isLoading = _useState2[0],
|
|
@@ -3850,7 +3850,7 @@ function ActionsButton(_ref) {
|
|
|
3850
3850
|
}, props));
|
|
3851
3851
|
}
|
|
3852
3852
|
|
|
3853
|
-
var _excluded$
|
|
3853
|
+
var _excluded$K = ["children", "layout", "reversed"];
|
|
3854
3854
|
function getCurrentLayout(layout) {
|
|
3855
3855
|
if (!layout) return {
|
|
3856
3856
|
base: 'stretch',
|
|
@@ -3882,7 +3882,7 @@ function Actions(_ref) {
|
|
|
3882
3882
|
reversed = _ref$reversed === void 0 ? {
|
|
3883
3883
|
base: false
|
|
3884
3884
|
} : _ref$reversed,
|
|
3885
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3885
|
+
props = _objectWithoutProperties(_ref, _excluded$K);
|
|
3886
3886
|
var shouldReverse = typeof reversed === 'boolean' ? {
|
|
3887
3887
|
base: !!reversed
|
|
3888
3888
|
} : createResponsiveStyleFromProp(reversed, true, false);
|
|
@@ -3935,7 +3935,7 @@ function getInitials(firstname, lastname) {
|
|
|
3935
3935
|
return "".concat(firstname[0]).concat(lastname[0]).toUpperCase();
|
|
3936
3936
|
}
|
|
3937
3937
|
|
|
3938
|
-
var _excluded$
|
|
3938
|
+
var _excluded$J = ["size", "round", "light", "sizeVariant", "width", "height", "dark", "disabled"];
|
|
3939
3939
|
function AvatarContent(_ref) {
|
|
3940
3940
|
var size = _ref.size,
|
|
3941
3941
|
src = _ref.src,
|
|
@@ -3998,7 +3998,7 @@ function Avatar(_ref2) {
|
|
|
3998
3998
|
height = _ref2.height,
|
|
3999
3999
|
dark = _ref2.dark,
|
|
4000
4000
|
disabled = _ref2.disabled,
|
|
4001
|
-
props = _objectWithoutProperties(_ref2, _excluded$
|
|
4001
|
+
props = _objectWithoutProperties(_ref2, _excluded$J);
|
|
4002
4002
|
var currentSize = getCurrentSize({
|
|
4003
4003
|
size: size,
|
|
4004
4004
|
sizeVariant: sizeVariant
|
|
@@ -4184,84 +4184,159 @@ var CardModalRotationContainer = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
4184
4184
|
}));
|
|
4185
4185
|
});
|
|
4186
4186
|
|
|
4187
|
-
|
|
4188
|
-
var
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
var
|
|
4192
|
-
var
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
}
|
|
4200
|
-
|
|
4201
|
-
var
|
|
4202
|
-
var
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4187
|
+
function NativeOpacityAnimation(_ref) {
|
|
4188
|
+
var visible = _ref.visible,
|
|
4189
|
+
children = _ref.children,
|
|
4190
|
+
onExited = _ref.onExited;
|
|
4191
|
+
var theme = useTheme();
|
|
4192
|
+
var hasRunAnimationRef = useRef(false);
|
|
4193
|
+
function handleAnimationFinished() {
|
|
4194
|
+
if (visible) {
|
|
4195
|
+
hasRunAnimationRef.current = true;
|
|
4196
|
+
}
|
|
4197
|
+
if (!visible && hasRunAnimationRef.current) {
|
|
4198
|
+
onExited();
|
|
4199
|
+
}
|
|
4200
|
+
}
|
|
4201
|
+
var opacityStyle = useAnimatedStyle(function () {
|
|
4202
|
+
var _theme$kitt$cardModal = theme.kitt.cardModal.animation.overlay,
|
|
4203
|
+
duration = _theme$kitt$cardModal.duration,
|
|
4204
|
+
easing = _theme$kitt$cardModal.easing;
|
|
4205
|
+
var x1 = easing.x1,
|
|
4206
|
+
y1 = easing.y1,
|
|
4207
|
+
x2 = easing.x2,
|
|
4208
|
+
y2 = easing.y2;
|
|
4209
|
+
return {
|
|
4210
|
+
opacity: withTiming(visible ? 1 : 0, {
|
|
4211
|
+
duration: duration,
|
|
4212
|
+
easing: Easing$1.bezier(x1, y1, x2, y2)
|
|
4213
|
+
}, function (isFinished) {
|
|
4214
|
+
if (!isFinished) return;
|
|
4215
|
+
runOnJS(handleAnimationFinished)();
|
|
4216
|
+
})
|
|
4217
|
+
};
|
|
4218
|
+
}, [visible]);
|
|
4219
|
+
return /*#__PURE__*/jsx(Animated$1.View, {
|
|
4220
|
+
style: [StyleSheet.absoluteFillObject, opacityStyle],
|
|
4221
|
+
children: children
|
|
4222
|
+
});
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
function NativeRotationAnimation(_ref) {
|
|
4226
|
+
var visible = _ref.visible,
|
|
4227
|
+
children = _ref.children,
|
|
4228
|
+
onEntered = _ref.onEntered,
|
|
4229
|
+
onExited = _ref.onExited;
|
|
4230
|
+
var theme = useTheme();
|
|
4231
|
+
var hasRunAnimationRef = useRef(false);
|
|
4232
|
+
var rotation = useSharedValue(0.8);
|
|
4233
|
+
function handleAnimationFinished() {
|
|
4234
|
+
if (visible) {
|
|
4235
|
+
if (onEntered) onEntered();
|
|
4236
|
+
hasRunAnimationRef.current = true;
|
|
4237
|
+
}
|
|
4238
|
+
if (!visible && hasRunAnimationRef.current) onExited();
|
|
4239
|
+
}
|
|
4240
|
+
var animatedStyle = useAnimatedStyle(function () {
|
|
4241
|
+
var _theme$kitt$cardModal = theme.kitt.cardModal.animation.content,
|
|
4242
|
+
duration = _theme$kitt$cardModal.duration,
|
|
4243
|
+
easing = _theme$kitt$cardModal.easing;
|
|
4244
|
+
var x1 = easing.x1,
|
|
4245
|
+
y1 = easing.y1,
|
|
4246
|
+
x2 = easing.x2,
|
|
4247
|
+
y2 = easing.y2;
|
|
4248
|
+
rotation.value = withTiming(visible ? 0 : 5, {
|
|
4249
|
+
duration: duration,
|
|
4250
|
+
easing: Easing$1.bezier(x1, y1, x2, y2)
|
|
4251
|
+
}, function (isFinished) {
|
|
4252
|
+
if (!isFinished) return;
|
|
4253
|
+
runOnJS(handleAnimationFinished)();
|
|
4254
|
+
});
|
|
4255
|
+
return {
|
|
4256
|
+
opacity: withTiming(visible ? 1 : 0, {
|
|
4257
|
+
duration: duration,
|
|
4258
|
+
easing: Easing$1.bezier(x1, y1, x2, y2)
|
|
4259
|
+
}),
|
|
4260
|
+
transform: [{
|
|
4261
|
+
scale: withTiming(visible ? 1 : 0.8, {
|
|
4262
|
+
duration: duration,
|
|
4263
|
+
easing: Easing$1.bezier(x1, y1, x2, y2)
|
|
4264
|
+
})
|
|
4265
|
+
}, {
|
|
4266
|
+
rotateZ: "".concat(rotation.value, "deg")
|
|
4267
|
+
}]
|
|
4268
|
+
};
|
|
4269
|
+
}, [rotation, visible]);
|
|
4270
|
+
return /*#__PURE__*/jsx(Animated$1.View, {
|
|
4271
|
+
style: [{
|
|
4272
|
+
flexShrink: 1
|
|
4273
|
+
}, animatedStyle],
|
|
4274
|
+
children: children
|
|
4275
|
+
});
|
|
4276
|
+
}
|
|
4277
|
+
|
|
4212
4278
|
function CardModalAnimation(_ref) {
|
|
4213
|
-
var
|
|
4214
|
-
|
|
4215
|
-
appear = _ref$appear === void 0 ? true : _ref$appear,
|
|
4216
|
-
visible = _ref.visible,
|
|
4217
|
-
_ref$unmountOnExit = _ref.unmountOnExit,
|
|
4218
|
-
unmountOnExit = _ref$unmountOnExit === void 0 ? true : _ref$unmountOnExit,
|
|
4219
|
-
_ref$isAnimationEnabl = _ref.isAnimationEnabled,
|
|
4220
|
-
isAnimationEnabled = _ref$isAnimationEnabl === void 0 ? true : _ref$isAnimationEnabl,
|
|
4279
|
+
var visible = _ref.visible,
|
|
4280
|
+
children = _ref.children,
|
|
4221
4281
|
onEnter = _ref.onEnter,
|
|
4222
4282
|
onEntered = _ref.onEntered,
|
|
4223
4283
|
onExit = _ref.onExit,
|
|
4224
4284
|
onExited = _ref.onExited,
|
|
4225
|
-
onClose = _ref.onClose
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4230
|
-
var
|
|
4231
|
-
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4285
|
+
onClose = _ref.onClose;
|
|
4286
|
+
var _useState = useState(visible),
|
|
4287
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
4288
|
+
isModalVisible = _useState2[0],
|
|
4289
|
+
setIsModalVisible = _useState2[1];
|
|
4290
|
+
var _useState3 = useState(false),
|
|
4291
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
|
4292
|
+
isContentVisible = _useState4[0],
|
|
4293
|
+
setIsContentVisible = _useState4[1];
|
|
4294
|
+
var handleAnimationExited = function () {
|
|
4295
|
+
setIsModalVisible(false);
|
|
4296
|
+
// Android doesn't handle the onDismiss callback on the modal, we need to call it manually
|
|
4237
4297
|
};
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4298
|
+
useEffect(function () {
|
|
4299
|
+
if (!(!visible && isContentVisible)) return;
|
|
4300
|
+
if (onExit) onExit();
|
|
4301
|
+
setIsContentVisible(false);
|
|
4302
|
+
}, [visible, isContentVisible, onExit]);
|
|
4303
|
+
return /*#__PURE__*/jsx(Modal, {
|
|
4304
|
+
transparent: true,
|
|
4305
|
+
supportedOrientations: ['landscape', 'portrait'],
|
|
4306
|
+
visible: isModalVisible,
|
|
4307
|
+
onShow: function () {
|
|
4308
|
+
if (onEnter) onEnter();
|
|
4309
|
+
setIsContentVisible(true);
|
|
4310
|
+
},
|
|
4311
|
+
onDismiss: function () {
|
|
4312
|
+
if (onExited) onExited();
|
|
4313
|
+
},
|
|
4314
|
+
children: /*#__PURE__*/jsxs(View
|
|
4315
|
+
// This is an ugly workaround to make the Modal calculate its height correctly on Android.
|
|
4316
|
+
// This ugly workaround is used in FullScreenModalAnimation and DialogModalAnimation as well
|
|
4317
|
+
// TODO [expo@>=53]: Check if still needed
|
|
4318
|
+
, {
|
|
4319
|
+
height: undefined,
|
|
4320
|
+
position: "relative",
|
|
4321
|
+
flexGrow: 1,
|
|
4322
|
+
justifyContent: "center",
|
|
4323
|
+
alignItems: "center",
|
|
4324
|
+
children: [/*#__PURE__*/jsx(NativeOpacityAnimation, {
|
|
4325
|
+
visible: isContentVisible,
|
|
4326
|
+
onExited: handleAnimationExited,
|
|
4327
|
+
children: /*#__PURE__*/jsx(Overlay, {
|
|
4328
|
+
onPress: onClose
|
|
4329
|
+
})
|
|
4330
|
+
}), /*#__PURE__*/jsx(CardModalRotationContainer, {
|
|
4331
|
+
children: /*#__PURE__*/jsx(NativeRotationAnimation, {
|
|
4332
|
+
visible: isContentVisible,
|
|
4333
|
+
onExited: handleAnimationExited,
|
|
4334
|
+
onEntered: onEntered,
|
|
4335
|
+
children: children
|
|
4336
|
+
})
|
|
4337
|
+
})]
|
|
4338
|
+
})
|
|
4339
|
+
});
|
|
4265
4340
|
}
|
|
4266
4341
|
|
|
4267
4342
|
var _excluded$I = ["children", "visible", "onClose", "onExited"];
|