@plurix/ecom-components 1.14.1-COM-1442.2 → 1.14.1-bugfix-1891.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/node_modules/@faststore/components/dist/esm/atoms/Button/Button.js +45 -0
- package/dist/node_modules/@faststore/components/dist/esm/atoms/Loader/Loader.js +34 -0
- package/dist/node_modules/@faststore/components/dist/esm/molecules/IconButton/IconButton.js +29 -0
- package/dist/packages/Carousel/Carousel.js +1 -1
- package/dist/packages/CartClubAlert/CartClubAlert.js +1 -1
- package/dist/packages/ChangeOrderModal/ChangeOrderModal.d.ts +1 -12
- package/dist/packages/ChangeOrderModal/ChangeOrderModal.js +67 -78
- package/dist/packages/ChangeOrderModal/api/getOrderForm.js +15 -6
- package/dist/packages/ChangeOrderModal/api/getProductsSimilars.d.ts +4 -7
- package/dist/packages/ChangeOrderModal/api/getProductsSimilars.js +21 -22
- package/dist/packages/ChangeOrderModal/api/postChangeOrder.d.ts +1 -6
- package/dist/packages/ChangeOrderModal/api/postChangeOrder.js +17 -11
- package/dist/packages/Coupons/Coupons.d.ts +1 -4
- package/dist/packages/Coupons/Coupons.js +57 -67
- package/dist/packages/Coupons/components/CouponCard.d.ts +1 -3
- package/dist/packages/Coupons/components/CouponCard.js +83 -94
- package/dist/packages/Coupons/views/CouponsView.d.ts +1 -3
- package/dist/packages/Coupons/views/CouponsView.js +78 -87
- package/dist/packages/Coupons/views/LoadingView.js +6 -6
- package/dist/packages/Modal/Modal.js +1 -1
- package/dist/packages/Onboarding/Onboarding.js +1 -1
- package/dist/packages/ProductCard/ProductCardBadge/ProductCardBadgeKg.js +10 -13
- package/dist/packages/ProductCard/ProductCardBadge/ProductCardDiscountBadge.d.ts +2 -3
- package/dist/packages/ProductCard/ProductCardBadge/ProductCardDiscountBadge.js +31 -15
- package/dist/packages/ProductCard/ProductCardButton/AddToCartButton.js +1 -1
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/index.d.ts +2 -17
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/index.js +1 -1
- package/dist/packages/ProductCard/ProductCardButton/QuantitySelector.js +6 -6
- package/dist/packages/ProductCard/ProductCardHorizontal/index.js +30 -31
- package/dist/packages/ProductCard/ProductCardPrice/index.d.ts +1 -8
- package/dist/packages/ProductCard/ProductCardPrice/index.js +31 -27
- package/dist/packages/ProductCard/ProductCardVertical/index.js +15 -16
- package/dist/packages/ProductCard/index.js +1 -1
- package/dist/packages/ProductCardSeeMore/ProductCardSeeMore.js +1 -1
- package/dist/packages/Regionalization/Regionalization.d.ts +1 -1
- package/dist/packages/Regionalization/Regionalization.js +13 -15
- package/dist/packages/Regionalization/context/RegionalizationContext.d.ts +1 -1
- package/dist/packages/Regionalization/context/RegionalizationContext.js +29 -31
- package/dist/packages/Regionalization/types/RegionalizationProps.d.ts +0 -1
- package/dist/packages/Regionalization/views/AllStoresScreen.js +21 -21
- package/dist/packages/Regionalization/views/InitialView.js +26 -24
- package/dist/packages/Tour/Tour.js +1 -1
- package/dist/styles/product-card.global.css +1 -1
- package/dist/styles/regionalization.global.css +1 -1
- package/dist/types/ProductCard.d.ts +12 -13
- package/dist/utils/changerOrderModal.js +16 -13
- package/package.json +71 -69
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/Button.d.ts +0 -18
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/Button.js +0 -80
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/IconButton.d.ts +0 -10
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/IconButton.js +0 -61
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/Loader.d.ts +0 -8
- package/dist/packages/ProductCard/ProductCardButton/CustomQuantitySelector/Loader.js +0 -44
package/package.json
CHANGED
|
@@ -1,69 +1,71 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@plurix/ecom-components",
|
|
3
|
-
"author": "Plurix",
|
|
4
|
-
"private": false,
|
|
5
|
-
"version": "1.14.1-
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "dist/main.js",
|
|
8
|
-
"types": "dist/main.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/plurix-ecommerce/ecom-components.git"
|
|
15
|
-
},
|
|
16
|
-
"sideEffects": [
|
|
17
|
-
"**/*.css"
|
|
18
|
-
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"dev": "vite",
|
|
21
|
-
"build": "tsc --p ./tsconfig-build.json && vite build",
|
|
22
|
-
"format": "prettier --write .",
|
|
23
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
24
|
-
"prepare": "husky install",
|
|
25
|
-
"preview": "vite preview",
|
|
26
|
-
"test": "jest"
|
|
27
|
-
},
|
|
28
|
-
"peerDependencies": {
|
|
29
|
-
"react": "^18.2.0",
|
|
30
|
-
"react-dom": "^18.2.0"
|
|
31
|
-
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@babel/preset-env": "^7.24.5",
|
|
34
|
-
"@babel/preset-react": "^7.24.1",
|
|
35
|
-
"@commitlint/cli": "^17.4.2",
|
|
36
|
-
"@commitlint/config-conventional": "^17.4.2",
|
|
37
|
-
"@jest/globals": "^29.7.0",
|
|
38
|
-
"@testing-library/jest-dom": "^6.4.5",
|
|
39
|
-
"@testing-library/react": "^15.0.7",
|
|
40
|
-
"@types/jest": "^29.5.12",
|
|
41
|
-
"@types/node": "^20.11.30",
|
|
42
|
-
"@types/react": "^18.2.71",
|
|
43
|
-
"@types/react-dom": "^18.2.22",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
45
|
-
"@typescript-eslint/parser": "^6.21.0",
|
|
46
|
-
"@vitejs/plugin-react": "^4.2.1",
|
|
47
|
-
"eslint": "^8.57.0",
|
|
48
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
49
|
-
"eslint-plugin-react-refresh": "^0.4.6",
|
|
50
|
-
"glob": "^10.3.10",
|
|
51
|
-
"husky": "^9.0.11",
|
|
52
|
-
"identity-obj-proxy": "^3.0.0",
|
|
53
|
-
"jest": "^29.7.0",
|
|
54
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
55
|
-
"jest-svg-transformer": "^1.0.0",
|
|
56
|
-
"prettier": "^2.2.1",
|
|
57
|
-
"react": "^18.2.0",
|
|
58
|
-
"react-dom": "^18.2.0",
|
|
59
|
-
"rollup-plugin-delete": "^2.0.0",
|
|
60
|
-
"ts-jest": "^29.1.2",
|
|
61
|
-
"typescript": "^5.4.3",
|
|
62
|
-
"vite": "^4.5.3",
|
|
63
|
-
"vite-plugin-dts": "^3.7.3",
|
|
64
|
-
"vite-plugin-lib-inject-css": "^2.0.1"
|
|
65
|
-
},
|
|
66
|
-
"dependencies": {
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@plurix/ecom-components",
|
|
3
|
+
"author": "Plurix",
|
|
4
|
+
"private": false,
|
|
5
|
+
"version": "1.14.1-bugfix-1891.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/main.js",
|
|
8
|
+
"types": "dist/main.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/plurix-ecommerce/ecom-components.git"
|
|
15
|
+
},
|
|
16
|
+
"sideEffects": [
|
|
17
|
+
"**/*.css"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc --p ./tsconfig-build.json && vite build",
|
|
22
|
+
"format": "prettier --write .",
|
|
23
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
24
|
+
"prepare": "husky install",
|
|
25
|
+
"preview": "vite preview",
|
|
26
|
+
"test": "jest"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"react": "^18.2.0",
|
|
30
|
+
"react-dom": "^18.2.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@babel/preset-env": "^7.24.5",
|
|
34
|
+
"@babel/preset-react": "^7.24.1",
|
|
35
|
+
"@commitlint/cli": "^17.4.2",
|
|
36
|
+
"@commitlint/config-conventional": "^17.4.2",
|
|
37
|
+
"@jest/globals": "^29.7.0",
|
|
38
|
+
"@testing-library/jest-dom": "^6.4.5",
|
|
39
|
+
"@testing-library/react": "^15.0.7",
|
|
40
|
+
"@types/jest": "^29.5.12",
|
|
41
|
+
"@types/node": "^20.11.30",
|
|
42
|
+
"@types/react": "^18.2.71",
|
|
43
|
+
"@types/react-dom": "^18.2.22",
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
45
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
46
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
47
|
+
"eslint": "^8.57.0",
|
|
48
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
49
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
50
|
+
"glob": "^10.3.10",
|
|
51
|
+
"husky": "^9.0.11",
|
|
52
|
+
"identity-obj-proxy": "^3.0.0",
|
|
53
|
+
"jest": "^29.7.0",
|
|
54
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
55
|
+
"jest-svg-transformer": "^1.0.0",
|
|
56
|
+
"prettier": "^2.2.1",
|
|
57
|
+
"react": "^18.2.0",
|
|
58
|
+
"react-dom": "^18.2.0",
|
|
59
|
+
"rollup-plugin-delete": "^2.0.0",
|
|
60
|
+
"ts-jest": "^29.1.2",
|
|
61
|
+
"typescript": "^5.4.3",
|
|
62
|
+
"vite": "^4.5.3",
|
|
63
|
+
"vite-plugin-dts": "^3.7.3",
|
|
64
|
+
"vite-plugin-lib-inject-css": "^2.0.1"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"@acctglobal/skeleton": "^1.0.0",
|
|
68
|
+
"@faststore/ui": "^3.41.5",
|
|
69
|
+
"axios": "^1.7.4"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { ButtonHTMLAttributes, ReactNode } from 'react';
|
|
2
|
-
|
|
3
|
-
export type Variant = 'primary' | 'secondary' | 'tertiary';
|
|
4
|
-
export type Size = 'small' | 'regular';
|
|
5
|
-
export type IconPosition = 'left' | 'right';
|
|
6
|
-
export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
7
|
-
testId?: string;
|
|
8
|
-
variant?: Variant;
|
|
9
|
-
size?: Size;
|
|
10
|
-
inverse?: boolean;
|
|
11
|
-
disabled?: boolean;
|
|
12
|
-
icon?: ReactNode;
|
|
13
|
-
loading?: boolean;
|
|
14
|
-
loadingLabel?: string;
|
|
15
|
-
iconPosition?: IconPosition;
|
|
16
|
-
}
|
|
17
|
-
declare const Button: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
|
|
18
|
-
export default Button;
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
var k = Object.defineProperty, y = Object.defineProperties;
|
|
2
|
-
var z = Object.getOwnPropertyDescriptors;
|
|
3
|
-
var e = Object.getOwnPropertySymbols;
|
|
4
|
-
var i = Object.prototype.hasOwnProperty, l = Object.prototype.propertyIsEnumerable;
|
|
5
|
-
var b = (t, a, r) => a in t ? k(t, a, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[a] = r, p = (t, a) => {
|
|
6
|
-
for (var r in a || (a = {}))
|
|
7
|
-
i.call(a, r) && b(t, r, a[r]);
|
|
8
|
-
if (e)
|
|
9
|
-
for (var r of e(a))
|
|
10
|
-
l.call(a, r) && b(t, r, a[r]);
|
|
11
|
-
return t;
|
|
12
|
-
}, m = (t, a) => y(t, z(a));
|
|
13
|
-
var h = (t, a) => {
|
|
14
|
-
var r = {};
|
|
15
|
-
for (var n in t)
|
|
16
|
-
i.call(t, n) && a.indexOf(n) < 0 && (r[n] = t[n]);
|
|
17
|
-
if (t != null && e)
|
|
18
|
-
for (var n of e(t))
|
|
19
|
-
a.indexOf(n) < 0 && l.call(t, n) && (r[n] = t[n]);
|
|
20
|
-
return r;
|
|
21
|
-
};
|
|
22
|
-
import { jsx as u, jsxs as c } from "react/jsx-runtime";
|
|
23
|
-
import { forwardRef as L } from "react";
|
|
24
|
-
import R from "./Loader.js";
|
|
25
|
-
const F = L(function(q, B) {
|
|
26
|
-
var s = q, {
|
|
27
|
-
children: a,
|
|
28
|
-
variant: r,
|
|
29
|
-
inverse: n,
|
|
30
|
-
size: g = "regular",
|
|
31
|
-
testId: x = "fs-button",
|
|
32
|
-
loading: o,
|
|
33
|
-
loadingLabel: j,
|
|
34
|
-
icon: d,
|
|
35
|
-
iconPosition: f = "left",
|
|
36
|
-
disabled: v
|
|
37
|
-
} = s, w = h(s, [
|
|
38
|
-
"children",
|
|
39
|
-
"variant",
|
|
40
|
-
"inverse",
|
|
41
|
-
"size",
|
|
42
|
-
"testId",
|
|
43
|
-
"loading",
|
|
44
|
-
"loadingLabel",
|
|
45
|
-
"icon",
|
|
46
|
-
"iconPosition",
|
|
47
|
-
"disabled"
|
|
48
|
-
]);
|
|
49
|
-
return /* @__PURE__ */ u(
|
|
50
|
-
"button",
|
|
51
|
-
m(p({
|
|
52
|
-
ref: B,
|
|
53
|
-
"data-fs-button": !0,
|
|
54
|
-
"data-fs-button-inverse": n,
|
|
55
|
-
"data-fs-button-size": g,
|
|
56
|
-
"data-fs-button-loading": o,
|
|
57
|
-
"data-fs-button-variant": r,
|
|
58
|
-
disabled: v,
|
|
59
|
-
"data-testid": x
|
|
60
|
-
}, w), {
|
|
61
|
-
children: /* @__PURE__ */ c("div", { "data-fs-button-wrapper": !0, children: [
|
|
62
|
-
o && /* @__PURE__ */ c("p", { "data-fs-button-loading-label": !0, children: [
|
|
63
|
-
j,
|
|
64
|
-
/* @__PURE__ */ u(
|
|
65
|
-
R,
|
|
66
|
-
{
|
|
67
|
-
variant: r === "primary" && !n ? "light" : "dark"
|
|
68
|
-
}
|
|
69
|
-
)
|
|
70
|
-
] }),
|
|
71
|
-
!!d && f === "left" && /* @__PURE__ */ u("span", { "data-fs-button-icon": !0, children: d }),
|
|
72
|
-
a && /* @__PURE__ */ u("span", { children: a }),
|
|
73
|
-
!!d && f === "right" && /* @__PURE__ */ u("span", { "data-fs-button-icon": !0, children: d })
|
|
74
|
-
] })
|
|
75
|
-
})
|
|
76
|
-
);
|
|
77
|
-
});
|
|
78
|
-
export {
|
|
79
|
-
F as default
|
|
80
|
-
};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { AriaAttributes, ReactNode } from 'react';
|
|
2
|
-
import { ButtonProps } from './Button';
|
|
3
|
-
|
|
4
|
-
export interface IconButtonProps extends Omit<ButtonProps, 'aria-label'> {
|
|
5
|
-
testId?: string;
|
|
6
|
-
icon: ReactNode;
|
|
7
|
-
'aria-label': AriaAttributes['aria-label'];
|
|
8
|
-
}
|
|
9
|
-
declare const IconButton: import('react').ForwardRefExoticComponent<IconButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
|
|
10
|
-
export default IconButton;
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
var x = Object.defineProperty, I = Object.defineProperties;
|
|
2
|
-
var g = Object.getOwnPropertyDescriptors;
|
|
3
|
-
var n = Object.getOwnPropertySymbols;
|
|
4
|
-
var c = Object.prototype.hasOwnProperty, i = Object.prototype.propertyIsEnumerable;
|
|
5
|
-
var a = (t, o, r) => o in t ? x(t, o, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[o] = r, l = (t, o) => {
|
|
6
|
-
for (var r in o || (o = {}))
|
|
7
|
-
c.call(o, r) && a(t, r, o[r]);
|
|
8
|
-
if (n)
|
|
9
|
-
for (var r of n(o))
|
|
10
|
-
i.call(o, r) && a(t, r, o[r]);
|
|
11
|
-
return t;
|
|
12
|
-
}, m = (t, o) => I(t, g(o));
|
|
13
|
-
var s = (t, o) => {
|
|
14
|
-
var r = {};
|
|
15
|
-
for (var u in t)
|
|
16
|
-
c.call(t, u) && o.indexOf(u) < 0 && (r[u] = t[u]);
|
|
17
|
-
if (t != null && n)
|
|
18
|
-
for (var u of n(t))
|
|
19
|
-
o.indexOf(u) < 0 && i.call(t, u) && (r[u] = t[u]);
|
|
20
|
-
return r;
|
|
21
|
-
};
|
|
22
|
-
import { jsx as j } from "react/jsx-runtime";
|
|
23
|
-
import { forwardRef as w } from "react";
|
|
24
|
-
import y from "./Button.js";
|
|
25
|
-
const A = w(
|
|
26
|
-
function(R, B) {
|
|
27
|
-
var f = R, {
|
|
28
|
-
icon: o,
|
|
29
|
-
children: r,
|
|
30
|
-
testId: u = "fs-icon-button",
|
|
31
|
-
"aria-label": b,
|
|
32
|
-
size: d = "regular",
|
|
33
|
-
variant: e
|
|
34
|
-
} = f, p = s(f, [
|
|
35
|
-
"icon",
|
|
36
|
-
"children",
|
|
37
|
-
"testId",
|
|
38
|
-
"aria-label",
|
|
39
|
-
"size",
|
|
40
|
-
"variant"
|
|
41
|
-
]);
|
|
42
|
-
return /* @__PURE__ */ j(
|
|
43
|
-
y,
|
|
44
|
-
m(l({
|
|
45
|
-
ref: B,
|
|
46
|
-
"data-fs-button": !0,
|
|
47
|
-
"data-fs-icon-button": !0,
|
|
48
|
-
variant: e != null ? e : "tertiary",
|
|
49
|
-
icon: o,
|
|
50
|
-
"aria-label": b,
|
|
51
|
-
testId: u,
|
|
52
|
-
size: d
|
|
53
|
-
}, p), {
|
|
54
|
-
children: r
|
|
55
|
-
})
|
|
56
|
-
);
|
|
57
|
-
}
|
|
58
|
-
);
|
|
59
|
-
export {
|
|
60
|
-
A as default
|
|
61
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { HTMLAttributes } from 'react';
|
|
2
|
-
|
|
3
|
-
export interface LoaderProps extends HTMLAttributes<HTMLSpanElement> {
|
|
4
|
-
testId?: string;
|
|
5
|
-
variant?: 'light' | 'dark';
|
|
6
|
-
}
|
|
7
|
-
declare const Loader: import('react').ForwardRefExoticComponent<LoaderProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
8
|
-
export default Loader;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
var c = Object.defineProperty, x = Object.defineProperties;
|
|
2
|
-
var j = Object.getOwnPropertyDescriptors;
|
|
3
|
-
var d = Object.getOwnPropertySymbols;
|
|
4
|
-
var n = Object.prototype.hasOwnProperty, i = Object.prototype.propertyIsEnumerable;
|
|
5
|
-
var f = (a, r, t) => r in a ? c(a, r, { enumerable: !0, configurable: !0, writable: !0, value: t }) : a[r] = t, l = (a, r) => {
|
|
6
|
-
for (var t in r || (r = {}))
|
|
7
|
-
n.call(r, t) && f(a, t, r[t]);
|
|
8
|
-
if (d)
|
|
9
|
-
for (var t of d(r))
|
|
10
|
-
i.call(r, t) && f(a, t, r[t]);
|
|
11
|
-
return a;
|
|
12
|
-
}, m = (a, r) => x(a, j(r));
|
|
13
|
-
var p = (a, r) => {
|
|
14
|
-
var t = {};
|
|
15
|
-
for (var e in a)
|
|
16
|
-
n.call(a, e) && r.indexOf(e) < 0 && (t[e] = a[e]);
|
|
17
|
-
if (a != null && d)
|
|
18
|
-
for (var e of d(a))
|
|
19
|
-
r.indexOf(e) < 0 && i.call(a, e) && (t[e] = a[e]);
|
|
20
|
-
return t;
|
|
21
|
-
};
|
|
22
|
-
import { jsxs as L, jsx as o } from "react/jsx-runtime";
|
|
23
|
-
import { forwardRef as h } from "react";
|
|
24
|
-
const b = h(function(k, u) {
|
|
25
|
-
var s = k, { testId: r = "fs-loader", variant: t = "dark" } = s, e = p(s, ["testId", "variant"]);
|
|
26
|
-
return /* @__PURE__ */ L(
|
|
27
|
-
"span",
|
|
28
|
-
m(l({
|
|
29
|
-
ref: u,
|
|
30
|
-
"data-fs-loader": !0,
|
|
31
|
-
"data-fs-loader-variant": t,
|
|
32
|
-
"data-testid": r
|
|
33
|
-
}, e), {
|
|
34
|
-
children: [
|
|
35
|
-
/* @__PURE__ */ o("span", { "data-fs-loader-item": !0 }),
|
|
36
|
-
/* @__PURE__ */ o("span", { "data-fs-loader-item": !0 }),
|
|
37
|
-
/* @__PURE__ */ o("span", { "data-fs-loader-item": !0 })
|
|
38
|
-
]
|
|
39
|
-
})
|
|
40
|
-
);
|
|
41
|
-
});
|
|
42
|
-
export {
|
|
43
|
-
b as default
|
|
44
|
-
};
|