@chekinapp/ui 0.0.65 → 0.0.66
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/index.cjs +48 -51
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -1
- package/dist/index.d.ts +23 -1
- package/dist/index.js +12 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -296,6 +296,7 @@ __export(index_exports, {
|
|
|
296
296
|
TooltipRoot: () => TooltipRoot,
|
|
297
297
|
TooltipRootWrapper: () => TooltipRootWrapper,
|
|
298
298
|
TooltipTrigger: () => TooltipTrigger,
|
|
299
|
+
UI_KIT_I18N_NAMESPACE: () => UI_KIT_I18N_NAMESPACE,
|
|
299
300
|
UploadedFilesList: () => UploadedFilesList,
|
|
300
301
|
VerticalTabs: () => VerticalTabs,
|
|
301
302
|
VideoModal: () => VideoModal,
|
|
@@ -318,6 +319,7 @@ __export(index_exports, {
|
|
|
318
319
|
inputVariants: () => inputVariants,
|
|
319
320
|
isNumeric: () => isNumeric,
|
|
320
321
|
labelVariants: () => labelVariants,
|
|
322
|
+
registerUiKitI18n: () => registerUiKitI18n,
|
|
321
323
|
scrollToTop: () => scrollToTop,
|
|
322
324
|
sectionTagVariants: () => sectionTagVariants,
|
|
323
325
|
switchThumbVariants: () => switchThumbVariants,
|
|
@@ -5738,21 +5740,14 @@ var uiKitI18nResources = {
|
|
|
5738
5740
|
it: { translation: translation_default5 },
|
|
5739
5741
|
pt: { translation: translation_default6 }
|
|
5740
5742
|
};
|
|
5741
|
-
|
|
5742
|
-
|
|
5743
|
-
|
|
5744
|
-
|
|
5745
|
-
|
|
5746
|
-
i18n.
|
|
5747
|
-
|
|
5748
|
-
|
|
5749
|
-
interpolation: {
|
|
5750
|
-
escapeValue: false
|
|
5751
|
-
},
|
|
5752
|
-
returnNull: false,
|
|
5753
|
-
fallbackNS: "translation",
|
|
5754
|
-
load: "languageOnly"
|
|
5755
|
-
});
|
|
5743
|
+
var UI_KIT_I18N_NAMESPACE = "translation";
|
|
5744
|
+
function registerUiKitI18n(i18n, options = {}) {
|
|
5745
|
+
const namespace = options.namespace ?? UI_KIT_I18N_NAMESPACE;
|
|
5746
|
+
const overwrite = options.overwrite ?? false;
|
|
5747
|
+
for (const [lng, bundle] of Object.entries(uiKitTranslations)) {
|
|
5748
|
+
i18n.addResourceBundle(lng, namespace, bundle, true, overwrite);
|
|
5749
|
+
}
|
|
5750
|
+
}
|
|
5756
5751
|
|
|
5757
5752
|
// src/large-modal/LargeModal.tsx
|
|
5758
5753
|
var import_lucide_react15 = require("lucide-react");
|
|
@@ -5832,10 +5827,10 @@ function LargeModal({
|
|
|
5832
5827
|
|
|
5833
5828
|
// src/learn-more-button/LearnMoreButton.tsx
|
|
5834
5829
|
var import_lucide_react16 = require("lucide-react");
|
|
5835
|
-
var
|
|
5830
|
+
var import_react_i18next9 = require("react-i18next");
|
|
5836
5831
|
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
5837
5832
|
function LearnMoreButton({ label, ...props }) {
|
|
5838
|
-
const { t } = (0,
|
|
5833
|
+
const { t } = (0, import_react_i18next9.useTranslation)();
|
|
5839
5834
|
return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(Button, { variant: "link", ...props, children: [
|
|
5840
5835
|
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(import_lucide_react16.BookOpenIcon, { className: "size-5 text-[var(--button-link-text)]" }),
|
|
5841
5836
|
label || t("learn_more")
|
|
@@ -5869,10 +5864,10 @@ var Link = (0, import_react51.memo)(LinkInternal);
|
|
|
5869
5864
|
// src/image-full-screen-view/ImageFullScreenView.tsx
|
|
5870
5865
|
var import_react52 = require("react");
|
|
5871
5866
|
var import_lucide_react17 = require("lucide-react");
|
|
5872
|
-
var
|
|
5867
|
+
var import_react_i18next10 = require("react-i18next");
|
|
5873
5868
|
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
5874
5869
|
function ImageFullScreenView({ src, alt, onClose }) {
|
|
5875
|
-
const { t } = (0,
|
|
5870
|
+
const { t } = (0, import_react_i18next10.useTranslation)();
|
|
5876
5871
|
const [scale, setScale] = (0, import_react52.useState)(1);
|
|
5877
5872
|
const [rotation, setRotation] = (0, import_react52.useState)(0);
|
|
5878
5873
|
useClickEscape({ onClick: onClose });
|
|
@@ -6228,7 +6223,7 @@ var NumberedList = ({ children, className, itemClassName }) => {
|
|
|
6228
6223
|
};
|
|
6229
6224
|
|
|
6230
6225
|
// src/overlay-loader/OverlayLoader.tsx
|
|
6231
|
-
var
|
|
6226
|
+
var import_react_i18next11 = require("react-i18next");
|
|
6232
6227
|
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
6233
6228
|
function OverlayLoader({
|
|
6234
6229
|
isLoading,
|
|
@@ -6239,7 +6234,7 @@ function OverlayLoader({
|
|
|
6239
6234
|
className = "",
|
|
6240
6235
|
overlayClassName = ""
|
|
6241
6236
|
}) {
|
|
6242
|
-
const { t } = (0,
|
|
6237
|
+
const { t } = (0, import_react_i18next11.useTranslation)();
|
|
6243
6238
|
const resolvedLabel = label || t("loading");
|
|
6244
6239
|
return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)("div", { className: cn("relative", className), children: [
|
|
6245
6240
|
children,
|
|
@@ -6264,7 +6259,7 @@ function OverlayLoader({
|
|
|
6264
6259
|
}
|
|
6265
6260
|
|
|
6266
6261
|
// src/pagination/Pagination.tsx
|
|
6267
|
-
var
|
|
6262
|
+
var import_react_i18next12 = require("react-i18next");
|
|
6268
6263
|
var import_lucide_react21 = require("lucide-react");
|
|
6269
6264
|
|
|
6270
6265
|
// src/select/Select.tsx
|
|
@@ -6687,7 +6682,7 @@ function Pagination({
|
|
|
6687
6682
|
totalItems = 0,
|
|
6688
6683
|
className
|
|
6689
6684
|
}) {
|
|
6690
|
-
const { t } = (0,
|
|
6685
|
+
const { t } = (0, import_react_i18next12.useTranslation)();
|
|
6691
6686
|
const isSimpleVariant = variant === "simple";
|
|
6692
6687
|
const startItem = totalItems === 0 ? 0 : (page - 1) * pageSize + 1;
|
|
6693
6688
|
const endItem = Math.min(page * pageSize, totalItems);
|
|
@@ -7240,7 +7235,7 @@ function RatingRadioGroup({
|
|
|
7240
7235
|
// src/rating-stars/RatingStars.tsx
|
|
7241
7236
|
var React25 = __toESM(require("react"), 1);
|
|
7242
7237
|
var import_lucide_react24 = require("lucide-react");
|
|
7243
|
-
var
|
|
7238
|
+
var import_react_i18next13 = require("react-i18next");
|
|
7244
7239
|
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
7245
7240
|
function RatingStars({
|
|
7246
7241
|
rating,
|
|
@@ -7255,7 +7250,7 @@ function RatingStars({
|
|
|
7255
7250
|
filledColor = "#ffb700",
|
|
7256
7251
|
emptyColor = "var(--chekin-color-gray-3)"
|
|
7257
7252
|
}) {
|
|
7258
|
-
const { t } = (0,
|
|
7253
|
+
const { t } = (0, import_react_i18next13.useTranslation)();
|
|
7259
7254
|
const normalizedRating = Math.max(0, Math.min(maxRating, rating));
|
|
7260
7255
|
const stars = Array.from({ length: maxRating }, (_, index) => index + 1);
|
|
7261
7256
|
const componentId = React25.useId();
|
|
@@ -7345,7 +7340,7 @@ function SearchButton({ onClick, className, icon, ariaLabel }) {
|
|
|
7345
7340
|
|
|
7346
7341
|
// src/search-input/SearchInput.tsx
|
|
7347
7342
|
var import_lucide_react27 = require("lucide-react");
|
|
7348
|
-
var
|
|
7343
|
+
var import_react_i18next14 = require("react-i18next");
|
|
7349
7344
|
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
7350
7345
|
function SearchInput({
|
|
7351
7346
|
disabled,
|
|
@@ -7360,7 +7355,7 @@ function SearchInput({
|
|
|
7360
7355
|
className,
|
|
7361
7356
|
...props
|
|
7362
7357
|
}) {
|
|
7363
|
-
const { t } = (0,
|
|
7358
|
+
const { t } = (0, import_react_i18next14.useTranslation)();
|
|
7364
7359
|
const placeholderText = placeholder || `${t("search_property")}...`;
|
|
7365
7360
|
const isBlocked = Boolean(disabled) || Boolean(loading);
|
|
7366
7361
|
const optionalLabel = optional ? typeof optional === "string" ? optional : t("optional") : void 0;
|
|
@@ -7477,7 +7472,7 @@ var SectionTagColors = /* @__PURE__ */ ((SectionTagColors2) => {
|
|
|
7477
7472
|
// src/section/Section.tsx
|
|
7478
7473
|
var import_react64 = require("react");
|
|
7479
7474
|
var import_lucide_react28 = require("lucide-react");
|
|
7480
|
-
var
|
|
7475
|
+
var import_react_i18next15 = require("react-i18next");
|
|
7481
7476
|
|
|
7482
7477
|
// src/section/constants.ts
|
|
7483
7478
|
var SubSectionSize = /* @__PURE__ */ ((SubSectionSize2) => {
|
|
@@ -7516,7 +7511,7 @@ var Section = (0, import_react64.forwardRef)(
|
|
|
7516
7511
|
hidden,
|
|
7517
7512
|
size
|
|
7518
7513
|
}, ref) => {
|
|
7519
|
-
const { t } = (0,
|
|
7514
|
+
const { t } = (0, import_react_i18next15.useTranslation)();
|
|
7520
7515
|
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
7521
7516
|
"div",
|
|
7522
7517
|
{
|
|
@@ -8434,7 +8429,7 @@ var getSidebarState = (stateName) => document.cookie.split("; ").find((row) => r
|
|
|
8434
8429
|
|
|
8435
8430
|
// src/signature-canvas/SignatureCanvas.tsx
|
|
8436
8431
|
var import_react69 = require("react");
|
|
8437
|
-
var
|
|
8432
|
+
var import_react_i18next16 = require("react-i18next");
|
|
8438
8433
|
var import_react_signature_pad_wrapper = __toESM(require("react-signature-pad-wrapper"), 1);
|
|
8439
8434
|
|
|
8440
8435
|
// src/assets/icons/sign-finger.svg
|
|
@@ -8469,7 +8464,7 @@ function breakIntoLines(text = "") {
|
|
|
8469
8464
|
}
|
|
8470
8465
|
var SignatureCanvas = (0, import_react69.forwardRef)(
|
|
8471
8466
|
({ onClear, hasSignature, onEnd, onEnable, className, enabled }, ref) => {
|
|
8472
|
-
const { t } = (0,
|
|
8467
|
+
const { t } = (0, import_react_i18next16.useTranslation)();
|
|
8473
8468
|
const internalRef = (0, import_react69.useRef)(null);
|
|
8474
8469
|
const combinedRef = useCombinedRef(ref, internalRef);
|
|
8475
8470
|
(0, import_react69.useEffect)(() => {
|
|
@@ -8785,7 +8780,7 @@ function Slider({ children, slideCount, ...props }) {
|
|
|
8785
8780
|
// src/small-grid-single-item/SmallGridSingleItem.tsx
|
|
8786
8781
|
var import_react70 = require("react");
|
|
8787
8782
|
var import_lucide_react32 = require("lucide-react");
|
|
8788
|
-
var
|
|
8783
|
+
var import_react_i18next17 = require("react-i18next");
|
|
8789
8784
|
|
|
8790
8785
|
// src/switch/Switch.tsx
|
|
8791
8786
|
var React35 = __toESM(require("react"), 1);
|
|
@@ -8880,7 +8875,7 @@ var SmallGridSingleItem = (0, import_react70.memo)(
|
|
|
8880
8875
|
error,
|
|
8881
8876
|
className
|
|
8882
8877
|
}) => {
|
|
8883
|
-
const { t } = (0,
|
|
8878
|
+
const { t } = (0, import_react_i18next17.useTranslation)();
|
|
8884
8879
|
const handleClick = (event) => {
|
|
8885
8880
|
if (!disabled && onClick) onClick(event);
|
|
8886
8881
|
};
|
|
@@ -8949,7 +8944,7 @@ var SmallGridSingleItem = (0, import_react70.memo)(
|
|
|
8949
8944
|
SmallGridSingleItem.displayName = "SmallGridSingleItem";
|
|
8950
8945
|
|
|
8951
8946
|
// src/sorting-action/SortingAction.tsx
|
|
8952
|
-
var
|
|
8947
|
+
var import_react_i18next18 = require("react-i18next");
|
|
8953
8948
|
var import_lucide_react33 = require("lucide-react");
|
|
8954
8949
|
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
8955
8950
|
function SortingAction({
|
|
@@ -8960,7 +8955,7 @@ function SortingAction({
|
|
|
8960
8955
|
variant = "by_other",
|
|
8961
8956
|
onOpenChange
|
|
8962
8957
|
}) {
|
|
8963
|
-
const { t } = (0,
|
|
8958
|
+
const { t } = (0, import_react_i18next18.useTranslation)();
|
|
8964
8959
|
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(DropdownMenu, { open, onOpenChange, children: [
|
|
8965
8960
|
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
8966
8961
|
"button",
|
|
@@ -9009,7 +9004,7 @@ function SortingAction({
|
|
|
9009
9004
|
|
|
9010
9005
|
// src/status-button/StatusButton.tsx
|
|
9011
9006
|
var import_react71 = require("react");
|
|
9012
|
-
var
|
|
9007
|
+
var import_react_i18next19 = require("react-i18next");
|
|
9013
9008
|
var import_lucide_react34 = require("lucide-react");
|
|
9014
9009
|
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
9015
9010
|
function StatusButton({
|
|
@@ -9025,7 +9020,7 @@ function StatusButton({
|
|
|
9025
9020
|
variant = "default",
|
|
9026
9021
|
...props
|
|
9027
9022
|
}) {
|
|
9028
|
-
const { t } = (0,
|
|
9023
|
+
const { t } = (0, import_react_i18next19.useTranslation)();
|
|
9029
9024
|
const configMap = (0, import_react71.useMemo)(() => {
|
|
9030
9025
|
const defaultLoadingConfig = {
|
|
9031
9026
|
text: loadingText ?? `${t("saving")}...`,
|
|
@@ -9415,11 +9410,11 @@ function DateTableFilter({ className, ...props }) {
|
|
|
9415
9410
|
|
|
9416
9411
|
// src/table-loader/TableLoader.tsx
|
|
9417
9412
|
var import_react74 = require("react");
|
|
9418
|
-
var
|
|
9413
|
+
var import_react_i18next20 = require("react-i18next");
|
|
9419
9414
|
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
9420
9415
|
var LoaderComponent = (0, import_react74.forwardRef)(
|
|
9421
9416
|
({ label, className, hideBorder, variant = "primary" }, ref) => {
|
|
9422
|
-
const { t } = (0,
|
|
9417
|
+
const { t } = (0, import_react_i18next20.useTranslation)();
|
|
9423
9418
|
return /* @__PURE__ */ (0, import_jsx_runtime123.jsx)(
|
|
9424
9419
|
"div",
|
|
9425
9420
|
{
|
|
@@ -9873,7 +9868,7 @@ var Toggles = (0, import_react76.forwardRef)(TogglesInternal);
|
|
|
9873
9868
|
var React39 = __toESM(require("react"), 1);
|
|
9874
9869
|
var LabelPrimitive2 = __toESM(require("@radix-ui/react-label"), 1);
|
|
9875
9870
|
var import_class_variance_authority15 = require("class-variance-authority");
|
|
9876
|
-
var
|
|
9871
|
+
var import_react_i18next21 = require("react-i18next");
|
|
9877
9872
|
|
|
9878
9873
|
// src/text-field/EndIcon.tsx
|
|
9879
9874
|
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
@@ -9987,7 +9982,7 @@ var TextField = React39.forwardRef(
|
|
|
9987
9982
|
readOnly,
|
|
9988
9983
|
...props
|
|
9989
9984
|
}, ref) => {
|
|
9990
|
-
const { t } = (0,
|
|
9985
|
+
const { t } = (0, import_react_i18next21.useTranslation)();
|
|
9991
9986
|
const hasError = Boolean(error);
|
|
9992
9987
|
const autoId = React39.useId();
|
|
9993
9988
|
const inputId = props.id || autoId;
|
|
@@ -10403,7 +10398,7 @@ function VideoModal({
|
|
|
10403
10398
|
|
|
10404
10399
|
// src/video-player/VideoPlayer.tsx
|
|
10405
10400
|
var import_react79 = require("react");
|
|
10406
|
-
var
|
|
10401
|
+
var import_react_i18next22 = require("react-i18next");
|
|
10407
10402
|
var import_lucide_react39 = require("lucide-react");
|
|
10408
10403
|
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
10409
10404
|
function VideoPlayer({
|
|
@@ -10414,7 +10409,7 @@ function VideoPlayer({
|
|
|
10414
10409
|
isFullScreen = false,
|
|
10415
10410
|
autoPlay = false
|
|
10416
10411
|
}) {
|
|
10417
|
-
const { t } = (0,
|
|
10412
|
+
const { t } = (0, import_react_i18next22.useTranslation)();
|
|
10418
10413
|
const videoRef = (0, import_react79.useRef)(null);
|
|
10419
10414
|
const iframeRef = (0, import_react79.useRef)(null);
|
|
10420
10415
|
const containerRef = (0, import_react79.useRef)(null);
|
|
@@ -10708,7 +10703,7 @@ function VideoPlayer({
|
|
|
10708
10703
|
|
|
10709
10704
|
// src/webcam/Webcam.tsx
|
|
10710
10705
|
var import_react80 = require("react");
|
|
10711
|
-
var
|
|
10706
|
+
var import_react_i18next23 = require("react-i18next");
|
|
10712
10707
|
var import_react_device_detect = require("react-device-detect");
|
|
10713
10708
|
var import_react_webcam = __toESM(require("react-webcam"), 1);
|
|
10714
10709
|
|
|
@@ -10754,7 +10749,7 @@ var Webcam = (0, import_react80.forwardRef)(
|
|
|
10754
10749
|
className,
|
|
10755
10750
|
mirrored
|
|
10756
10751
|
}, ref) => {
|
|
10757
|
-
const { t } = (0,
|
|
10752
|
+
const { t } = (0, import_react_i18next23.useTranslation)();
|
|
10758
10753
|
const isMounted = useIsMounted();
|
|
10759
10754
|
const [minScreenshotHeight, setMinScreenshotHeight] = (0, import_react80.useState)(
|
|
10760
10755
|
void 0
|
|
@@ -11700,7 +11695,7 @@ var DEVICE = {
|
|
|
11700
11695
|
// src/field-trigger/FieldTrigger.tsx
|
|
11701
11696
|
var React43 = __toESM(require("react"), 1);
|
|
11702
11697
|
var import_lucide_react41 = require("lucide-react");
|
|
11703
|
-
var
|
|
11698
|
+
var import_react_i18next24 = require("react-i18next");
|
|
11704
11699
|
|
|
11705
11700
|
// src/field-error-message/FieldErrorMessage.tsx
|
|
11706
11701
|
var import_lucide_react40 = require("lucide-react");
|
|
@@ -11773,7 +11768,7 @@ var FieldTrigger = React43.forwardRef(
|
|
|
11773
11768
|
onKeyDown,
|
|
11774
11769
|
...props
|
|
11775
11770
|
}, ref) => {
|
|
11776
|
-
const { t } = (0,
|
|
11771
|
+
const { t } = (0, import_react_i18next24.useTranslation)();
|
|
11777
11772
|
const hasValue = Boolean(valueText);
|
|
11778
11773
|
const isRaised = hasValue || forceFloatingLabel;
|
|
11779
11774
|
const optionalLabel = optional ? typeof optional === "string" ? optional : t("optional") : void 0;
|
|
@@ -13606,11 +13601,11 @@ PhoneField.displayName = "PhoneField";
|
|
|
13606
13601
|
|
|
13607
13602
|
// src/airbnb/search-input/SearchInput.tsx
|
|
13608
13603
|
var React52 = __toESM(require("react"), 1);
|
|
13609
|
-
var
|
|
13604
|
+
var import_react_i18next25 = require("react-i18next");
|
|
13610
13605
|
var import_lucide_react45 = require("lucide-react");
|
|
13611
13606
|
var import_jsx_runtime153 = require("react/jsx-runtime");
|
|
13612
13607
|
var AirbnbSearchInput = React52.forwardRef(({ onReset, placeholder, wrapperClassName, ...props }, ref) => {
|
|
13613
|
-
const { t } = (0,
|
|
13608
|
+
const { t } = (0, import_react_i18next25.useTranslation)();
|
|
13614
13609
|
const placeholderText = placeholder || t("search_property") + "...";
|
|
13615
13610
|
return /* @__PURE__ */ (0, import_jsx_runtime153.jsxs)("div", { className: cn("input-wrapper relative", wrapperClassName), children: [
|
|
13616
13611
|
/* @__PURE__ */ (0, import_jsx_runtime153.jsx)(import_lucide_react45.Search, { className: "absolute left-4 top-1/2 h-5 w-5 -translate-y-1/2 transform text-[#9696B9]" }),
|
|
@@ -14148,7 +14143,7 @@ function getErrorMessage(error) {
|
|
|
14148
14143
|
}
|
|
14149
14144
|
|
|
14150
14145
|
// src/lib/toastResponseError.tsx
|
|
14151
|
-
var
|
|
14146
|
+
var import_i18next = __toESM(require("i18next"), 1);
|
|
14152
14147
|
var import_jsx_runtime155 = require("react/jsx-runtime");
|
|
14153
14148
|
function addSupportEmailToMessage(message, prefixText) {
|
|
14154
14149
|
if (typeof message !== "string") {
|
|
@@ -14157,7 +14152,7 @@ function addSupportEmailToMessage(message, prefixText) {
|
|
|
14157
14152
|
const builtMessage = `${prefixText ? `${prefixText} ` : ""}${message}`;
|
|
14158
14153
|
return /* @__PURE__ */ (0, import_jsx_runtime155.jsxs)("div", { children: [
|
|
14159
14154
|
/* @__PURE__ */ (0, import_jsx_runtime155.jsx)("div", { children: builtMessage }),
|
|
14160
|
-
|
|
14155
|
+
import_i18next.default.t("reach_us_at_email")
|
|
14161
14156
|
] });
|
|
14162
14157
|
}
|
|
14163
14158
|
function toastResponseError(error, options = {}) {
|
|
@@ -14437,6 +14432,7 @@ function toastResponseError(error, options = {}) {
|
|
|
14437
14432
|
TooltipRoot,
|
|
14438
14433
|
TooltipRootWrapper,
|
|
14439
14434
|
TooltipTrigger,
|
|
14435
|
+
UI_KIT_I18N_NAMESPACE,
|
|
14440
14436
|
UploadedFilesList,
|
|
14441
14437
|
VerticalTabs,
|
|
14442
14438
|
VideoModal,
|
|
@@ -14459,6 +14455,7 @@ function toastResponseError(error, options = {}) {
|
|
|
14459
14455
|
inputVariants,
|
|
14460
14456
|
isNumeric,
|
|
14461
14457
|
labelVariants,
|
|
14458
|
+
registerUiKitI18n,
|
|
14462
14459
|
scrollToTop,
|
|
14463
14460
|
sectionTagVariants,
|
|
14464
14461
|
switchThumbVariants,
|