livevegas-ui-kit 1.0.44 → 1.0.46
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/README.md
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
# React + TypeScript + Vite
|
|
2
|
-
|
|
3
|
-
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
-
|
|
5
|
-
Currently, two official plugins are available:
|
|
6
|
-
|
|
7
|
-
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
8
|
-
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
-
|
|
10
|
-
## Expanding the ESLint configuration
|
|
11
|
-
|
|
12
|
-
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
|
|
13
|
-
|
|
14
|
-
```js
|
|
15
|
-
export default tseslint.config([
|
|
16
|
-
globalIgnores(['dist']),
|
|
17
|
-
{
|
|
18
|
-
files: ['**/*.{ts,tsx}'],
|
|
19
|
-
extends: [
|
|
20
|
-
// Other configs...
|
|
21
|
-
|
|
22
|
-
// Remove tseslint.configs.recommended and replace with this
|
|
23
|
-
...tseslint.configs.recommendedTypeChecked,
|
|
24
|
-
// Alternatively, use this for stricter rules
|
|
25
|
-
...tseslint.configs.strictTypeChecked,
|
|
26
|
-
// Optionally, add this for stylistic rules
|
|
27
|
-
...tseslint.configs.stylisticTypeChecked,
|
|
28
|
-
|
|
29
|
-
// Other configs...
|
|
30
|
-
],
|
|
31
|
-
languageOptions: {
|
|
32
|
-
parserOptions: {
|
|
33
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
34
|
-
tsconfigRootDir: import.meta.dirname,
|
|
35
|
-
},
|
|
36
|
-
// other options...
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
])
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
|
|
43
|
-
|
|
44
|
-
```js
|
|
45
|
-
// eslint.config.js
|
|
46
|
-
import reactX from 'eslint-plugin-react-x'
|
|
47
|
-
import reactDom from 'eslint-plugin-react-dom'
|
|
48
|
-
|
|
49
|
-
export default tseslint.config([
|
|
50
|
-
globalIgnores(['dist']),
|
|
51
|
-
{
|
|
52
|
-
files: ['**/*.{ts,tsx}'],
|
|
53
|
-
extends: [
|
|
54
|
-
// Other configs...
|
|
55
|
-
// Enable lint rules for React
|
|
56
|
-
reactX.configs['recommended-typescript'],
|
|
57
|
-
// Enable lint rules for React DOM
|
|
58
|
-
reactDom.configs.recommended,
|
|
59
|
-
],
|
|
60
|
-
languageOptions: {
|
|
61
|
-
parserOptions: {
|
|
62
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
63
|
-
tsconfigRootDir: import.meta.dirname,
|
|
64
|
-
},
|
|
65
|
-
// other options...
|
|
66
|
-
},
|
|
67
|
-
},
|
|
68
|
-
])
|
|
69
|
-
```
|
|
1
|
+
# React + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
4
|
+
|
|
5
|
+
Currently, two official plugins are available:
|
|
6
|
+
|
|
7
|
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
8
|
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
9
|
+
|
|
10
|
+
## Expanding the ESLint configuration
|
|
11
|
+
|
|
12
|
+
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
|
|
13
|
+
|
|
14
|
+
```js
|
|
15
|
+
export default tseslint.config([
|
|
16
|
+
globalIgnores(['dist']),
|
|
17
|
+
{
|
|
18
|
+
files: ['**/*.{ts,tsx}'],
|
|
19
|
+
extends: [
|
|
20
|
+
// Other configs...
|
|
21
|
+
|
|
22
|
+
// Remove tseslint.configs.recommended and replace with this
|
|
23
|
+
...tseslint.configs.recommendedTypeChecked,
|
|
24
|
+
// Alternatively, use this for stricter rules
|
|
25
|
+
...tseslint.configs.strictTypeChecked,
|
|
26
|
+
// Optionally, add this for stylistic rules
|
|
27
|
+
...tseslint.configs.stylisticTypeChecked,
|
|
28
|
+
|
|
29
|
+
// Other configs...
|
|
30
|
+
],
|
|
31
|
+
languageOptions: {
|
|
32
|
+
parserOptions: {
|
|
33
|
+
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
34
|
+
tsconfigRootDir: import.meta.dirname,
|
|
35
|
+
},
|
|
36
|
+
// other options...
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
])
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
|
|
43
|
+
|
|
44
|
+
```js
|
|
45
|
+
// eslint.config.js
|
|
46
|
+
import reactX from 'eslint-plugin-react-x'
|
|
47
|
+
import reactDom from 'eslint-plugin-react-dom'
|
|
48
|
+
|
|
49
|
+
export default tseslint.config([
|
|
50
|
+
globalIgnores(['dist']),
|
|
51
|
+
{
|
|
52
|
+
files: ['**/*.{ts,tsx}'],
|
|
53
|
+
extends: [
|
|
54
|
+
// Other configs...
|
|
55
|
+
// Enable lint rules for React
|
|
56
|
+
reactX.configs['recommended-typescript'],
|
|
57
|
+
// Enable lint rules for React DOM
|
|
58
|
+
reactDom.configs.recommended,
|
|
59
|
+
],
|
|
60
|
+
languageOptions: {
|
|
61
|
+
parserOptions: {
|
|
62
|
+
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
63
|
+
tsconfigRootDir: import.meta.dirname,
|
|
64
|
+
},
|
|
65
|
+
// other options...
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
])
|
|
69
|
+
```
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export interface IToast {
|
|
2
2
|
code: number;
|
|
3
|
+
type?: "error" | "warning" | "success";
|
|
3
4
|
}
|
|
4
|
-
export declare const ToastMessages: ({ code }: IToast) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const ToastMessages: ({ code, type }: IToast) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
type ToastType = "error" | "warning" | "success";
|
|
2
|
+
export declare const Toast: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
3
|
+
type?: ToastType;
|
|
4
|
+
}>> & string;
|
|
2
5
|
export declare const ToastMessage: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
6
|
+
export declare const BackgroundLayer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
7
|
+
type?: ToastType;
|
|
8
|
+
}>> & string;
|
|
9
|
+
export {};
|
|
@@ -1725,7 +1725,7 @@ const x5 = d.div`
|
|
|
1725
1725
|
vertical-align: middle;
|
|
1726
1726
|
color: #ffffff;
|
|
1727
1727
|
}
|
|
1728
|
-
`,
|
|
1728
|
+
`, C9 = ({ balance: e, bet: n, currencyId: r }) => /* @__PURE__ */ t.jsxs(x5, { children: [
|
|
1729
1729
|
/* @__PURE__ */ t.jsxs(W2, { children: [
|
|
1730
1730
|
/* @__PURE__ */ t.jsx("p", { className: "text-title", children: "Balance" }),
|
|
1731
1731
|
/* @__PURE__ */ t.jsxs("p", { className: "amount", children: [
|
|
@@ -5291,7 +5291,7 @@ const N3 = d.div`
|
|
|
5291
5291
|
position: absolute;
|
|
5292
5292
|
right: 4px;
|
|
5293
5293
|
bottom: 20px;
|
|
5294
|
-
`,
|
|
5294
|
+
`, m9 = ({
|
|
5295
5295
|
name: e,
|
|
5296
5296
|
round: n,
|
|
5297
5297
|
partnerId: r,
|
|
@@ -5627,7 +5627,7 @@ const N3 = d.div`
|
|
|
5627
5627
|
rgba(255, 255, 255, 0.4) 50%,
|
|
5628
5628
|
rgba(255, 255, 255, 0) 100%
|
|
5629
5629
|
);
|
|
5630
|
-
`,
|
|
5630
|
+
`, y9 = ({
|
|
5631
5631
|
name: e,
|
|
5632
5632
|
round: n,
|
|
5633
5633
|
limit: r,
|
|
@@ -5694,7 +5694,7 @@ const N3 = d.div`
|
|
|
5694
5694
|
align-items: center;
|
|
5695
5695
|
justify-content: end;
|
|
5696
5696
|
align-items: end;
|
|
5697
|
-
`, Sn = () => /* @__PURE__ */ t.jsx(t.Fragment, { children: /* @__PURE__ */ t.jsx("svg", { width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ t.jsx("path", { d: "M6.26402 1.704C6.26402 1.46212 6.16794 1.23015 5.9969 1.05912C5.82587 0.888085 5.5939 0.792 5.35202 0.792C5.11015 0.792 4.87817 0.888085 4.70714 1.05912C4.53611 1.23015 4.44002 1.46212 4.44002 1.704V3.984C4.44002 4.10494 4.39198 4.22092 4.30646 4.30644C4.22095 4.39196 4.10496 4.44 3.98402 4.44H1.70402C1.46215 4.44 1.23017 4.53609 1.05914 4.70712C0.888108 4.87815 0.792023 5.11012 0.792023 5.352C0.792023 5.59388 0.888108 5.82585 1.05914 5.99688C1.23017 6.16791 1.46215 6.264 1.70402 6.264H3.98402C4.58872 6.264 5.16864 6.02379 5.59623 5.5962C6.02381 5.16862 6.26402 4.58869 6.26402 3.984V1.704ZM6.26402 16.296C6.26402 16.5379 6.16794 16.7698 5.9969 16.9409C5.82587 17.1119 5.5939 17.208 5.35202 17.208C5.11015 17.208 4.87817 17.1119 4.70714 16.9409C4.53611 16.7698 4.44002 16.5379 4.44002 16.296V14.016C4.44002 13.8951 4.39198 13.7791 4.30646 13.6936C4.22095 13.608 4.10496 13.56 3.98402 13.56H1.70402C1.46215 13.56 1.23017 13.4639 1.05914 13.2929C0.888108 13.1218 0.792023 12.8899 0.792023 12.648C0.792023 12.4061 0.888108 12.1742 1.05914 12.0031C1.23017 11.8321 1.46215 11.736 1.70402 11.736H3.98402C4.58872 11.736 5.16864 11.9762 5.59623 12.4038C6.02381 12.8314 6.26402 13.4113 6.26402 14.016V16.296ZM12.648 0.792C12.4061 0.792 12.1742 0.888085 12.0031 1.05912C11.8321 1.23015 11.736 1.46212 11.736 1.704V3.984C11.736 4.58869 11.9762 5.16862 12.4038 5.5962C12.8314 6.02379 13.4113 6.264 14.016 6.264H16.296C16.5379 6.264 16.7699 6.16791 16.9409 5.99688C17.1119 5.82585 17.208 5.59388 17.208 5.352C17.208 5.11012 17.1119 4.87815 16.9409 4.70712C16.7699 4.53609 16.5379 4.44 16.296 4.44H14.016C13.8951 4.44 13.7791 4.39196 13.6936 4.30644C13.6081 4.22092 13.56 4.10494 13.56 3.984V1.704C13.56 1.46212 13.4639 1.23015 13.2929 1.05912C13.1219 0.888085 12.8899 0.792 12.648 0.792ZM11.736 16.296C11.736 16.5379 11.8321 16.7698 12.0031 16.9409C12.1742 17.1119 12.4061 17.208 12.648 17.208C12.8899 17.208 13.1219 17.1119 13.2929 16.9409C13.4639 16.7698 13.56 16.5379 13.56 16.296V14.016C13.56 13.8951 13.6081 13.7791 13.6936 13.6936C13.7791 13.608 13.8951 13.56 14.016 13.56H16.296C16.5379 13.56 16.7699 13.4639 16.9409 13.2929C17.1119 13.1218 17.208 12.8899 17.208 12.648C17.208 12.4061 17.1119 12.1742 16.9409 12.0031C16.7699 11.8321 16.5379 11.736 16.296 11.736H14.016C13.4113 11.736 12.8314 11.9762 12.4038 12.4038C11.9762 12.8314 11.736 13.4113 11.736 14.016V16.296Z", fill: "white" }) }) }),
|
|
5697
|
+
`, Sn = () => /* @__PURE__ */ t.jsx(t.Fragment, { children: /* @__PURE__ */ t.jsx("svg", { width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ t.jsx("path", { d: "M6.26402 1.704C6.26402 1.46212 6.16794 1.23015 5.9969 1.05912C5.82587 0.888085 5.5939 0.792 5.35202 0.792C5.11015 0.792 4.87817 0.888085 4.70714 1.05912C4.53611 1.23015 4.44002 1.46212 4.44002 1.704V3.984C4.44002 4.10494 4.39198 4.22092 4.30646 4.30644C4.22095 4.39196 4.10496 4.44 3.98402 4.44H1.70402C1.46215 4.44 1.23017 4.53609 1.05914 4.70712C0.888108 4.87815 0.792023 5.11012 0.792023 5.352C0.792023 5.59388 0.888108 5.82585 1.05914 5.99688C1.23017 6.16791 1.46215 6.264 1.70402 6.264H3.98402C4.58872 6.264 5.16864 6.02379 5.59623 5.5962C6.02381 5.16862 6.26402 4.58869 6.26402 3.984V1.704ZM6.26402 16.296C6.26402 16.5379 6.16794 16.7698 5.9969 16.9409C5.82587 17.1119 5.5939 17.208 5.35202 17.208C5.11015 17.208 4.87817 17.1119 4.70714 16.9409C4.53611 16.7698 4.44002 16.5379 4.44002 16.296V14.016C4.44002 13.8951 4.39198 13.7791 4.30646 13.6936C4.22095 13.608 4.10496 13.56 3.98402 13.56H1.70402C1.46215 13.56 1.23017 13.4639 1.05914 13.2929C0.888108 13.1218 0.792023 12.8899 0.792023 12.648C0.792023 12.4061 0.888108 12.1742 1.05914 12.0031C1.23017 11.8321 1.46215 11.736 1.70402 11.736H3.98402C4.58872 11.736 5.16864 11.9762 5.59623 12.4038C6.02381 12.8314 6.26402 13.4113 6.26402 14.016V16.296ZM12.648 0.792C12.4061 0.792 12.1742 0.888085 12.0031 1.05912C11.8321 1.23015 11.736 1.46212 11.736 1.704V3.984C11.736 4.58869 11.9762 5.16862 12.4038 5.5962C12.8314 6.02379 13.4113 6.264 14.016 6.264H16.296C16.5379 6.264 16.7699 6.16791 16.9409 5.99688C17.1119 5.82585 17.208 5.59388 17.208 5.352C17.208 5.11012 17.1119 4.87815 16.9409 4.70712C16.7699 4.53609 16.5379 4.44 16.296 4.44H14.016C13.8951 4.44 13.7791 4.39196 13.6936 4.30644C13.6081 4.22092 13.56 4.10494 13.56 3.984V1.704C13.56 1.46212 13.4639 1.23015 13.2929 1.05912C13.1219 0.888085 12.8899 0.792 12.648 0.792ZM11.736 16.296C11.736 16.5379 11.8321 16.7698 12.0031 16.9409C12.1742 17.1119 12.4061 17.208 12.648 17.208C12.8899 17.208 13.1219 17.1119 13.2929 16.9409C13.4639 16.7698 13.56 16.5379 13.56 16.296V14.016C13.56 13.8951 13.6081 13.7791 13.6936 13.6936C13.7791 13.608 13.8951 13.56 14.016 13.56H16.296C16.5379 13.56 16.7699 13.4639 16.9409 13.2929C17.1119 13.1218 17.208 12.8899 17.208 12.648C17.208 12.4061 17.1119 12.1742 16.9409 12.0031C16.7699 11.8321 16.5379 11.736 16.296 11.736H14.016C13.4113 11.736 12.8314 11.9762 12.4038 12.4038C11.9762 12.8314 11.736 13.4113 11.736 14.016V16.296Z", fill: "white" }) }) }), b9 = ({
|
|
5698
5698
|
messages: e,
|
|
5699
5699
|
onSendMessage: n,
|
|
5700
5700
|
isTournamentActive: r,
|
|
@@ -5902,7 +5902,7 @@ const N3 = d.div`
|
|
|
5902
5902
|
&:hover {
|
|
5903
5903
|
opacity: 0.8;
|
|
5904
5904
|
}
|
|
5905
|
-
`,
|
|
5905
|
+
`, w9 = ({
|
|
5906
5906
|
title: e,
|
|
5907
5907
|
description: n,
|
|
5908
5908
|
timeLeft: r,
|
|
@@ -6256,7 +6256,7 @@ const N3 = d.div`
|
|
|
6256
6256
|
}
|
|
6257
6257
|
)
|
|
6258
6258
|
}
|
|
6259
|
-
),
|
|
6259
|
+
), v9 = ({
|
|
6260
6260
|
time: e,
|
|
6261
6261
|
chipAmounts: n,
|
|
6262
6262
|
selectedChipIndex: r,
|
|
@@ -6405,7 +6405,7 @@ const N3 = d.div`
|
|
|
6405
6405
|
line-height: 12px;
|
|
6406
6406
|
vertical-align: middle;
|
|
6407
6407
|
}
|
|
6408
|
-
`,
|
|
6408
|
+
`, j9 = ({
|
|
6409
6409
|
balance: e,
|
|
6410
6410
|
bet: n,
|
|
6411
6411
|
currencyId: r,
|
|
@@ -6478,7 +6478,7 @@ const N3 = d.div`
|
|
|
6478
6478
|
margin: 4px 0 0;
|
|
6479
6479
|
font-size: 14px;
|
|
6480
6480
|
color: rgba(255, 255, 255, 0.8);
|
|
6481
|
-
`,
|
|
6481
|
+
`, L9 = () => /* @__PURE__ */ t.jsx(Yn, { children: /* @__PURE__ */ t.jsxs(Jn, { children: [
|
|
6482
6482
|
/* @__PURE__ */ t.jsx($n, { children: /* @__PURE__ */ t.jsx(e9, {}) }),
|
|
6483
6483
|
/* @__PURE__ */ t.jsx(t9, { children: "We lost connection for a moment" }),
|
|
6484
6484
|
/* @__PURE__ */ t.jsx(n9, { children: "This page will close automatically when you're reconnected." })
|
|
@@ -6526,7 +6526,7 @@ const N3 = d.div`
|
|
|
6526
6526
|
margin: 4px 0 0;
|
|
6527
6527
|
font-size: 14px;
|
|
6528
6528
|
color: rgba(255, 255, 255, 0.8);
|
|
6529
|
-
`,
|
|
6529
|
+
`, A9 = ({ backToLobby: e, stayInTheGame: n }) => /* @__PURE__ */ t.jsx(r9, { children: /* @__PURE__ */ t.jsxs(i9, { children: [
|
|
6530
6530
|
/* @__PURE__ */ t.jsx(s9, { children: "Still with us, Player?" }),
|
|
6531
6531
|
/* @__PURE__ */ t.jsx(a9, { children: "We haven’t seen any moves from you. Want to keep playing?" }),
|
|
6532
6532
|
/* @__PURE__ */ t.jsxs(o9, { children: [
|
|
@@ -6788,7 +6788,7 @@ const N3 = d.div`
|
|
|
6788
6788
|
text-align: center;
|
|
6789
6789
|
color: #c5f5fa;
|
|
6790
6790
|
}
|
|
6791
|
-
`,
|
|
6791
|
+
`, k9 = ({
|
|
6792
6792
|
amount: e,
|
|
6793
6793
|
currencyId: n
|
|
6794
6794
|
}) => /* @__PURE__ */ t.jsxs(c9, { children: [
|
|
@@ -6812,12 +6812,20 @@ const N3 = d.div`
|
|
|
6812
6812
|
transform: translate(-50%, 0%);
|
|
6813
6813
|
opacity: 1;
|
|
6814
6814
|
}
|
|
6815
|
-
`, p9 =
|
|
6815
|
+
`, p9 = {
|
|
6816
|
+
error: "rgba(227, 71, 71, 1)",
|
|
6817
|
+
warning: "rgba(233, 136, 38, 1)",
|
|
6818
|
+
success: "rgba(51, 165, 76, 1)"
|
|
6819
|
+
}, h9 = {
|
|
6820
|
+
error: "radial-gradient(50% 50% at 50% 50%, rgba(227, 71, 71, 0.4) 0%, rgba(227, 71, 71, 0) 100%)",
|
|
6821
|
+
warning: "radial-gradient(50% 50% at 50% 50%, rgba(233, 136, 38, 0.4) 0%, rgba(233, 136, 38, 0) 100%)",
|
|
6822
|
+
success: "radial-gradient(50% 50% at 50% 50%, rgba(51, 165, 76, 0.4) 0%, rgba(51, 165, 76, 0) 100%)"
|
|
6823
|
+
}, f9 = d.div`
|
|
6816
6824
|
width: 168px;
|
|
6817
6825
|
height: 34px;
|
|
6818
6826
|
border-bottom-right-radius: 12px;
|
|
6819
6827
|
border-bottom-left-radius: 12px;
|
|
6820
|
-
border-bottom:
|
|
6828
|
+
border-bottom: ${({ type: e = "error" }) => `1px solid ${p9[e]}`};
|
|
6821
6829
|
background: rgba(17, 17, 17, 0.8);
|
|
6822
6830
|
position: absolute;
|
|
6823
6831
|
top: 0%;
|
|
@@ -6826,31 +6834,40 @@ const N3 = d.div`
|
|
|
6826
6834
|
display: flex;
|
|
6827
6835
|
justify-content: center;
|
|
6828
6836
|
align-items: center;
|
|
6829
|
-
|
|
6830
6837
|
animation: ${d9} 0.4s ease-out;
|
|
6831
|
-
|
|
6838
|
+
position: relative;
|
|
6839
|
+
`, u9 = d.div`
|
|
6832
6840
|
font-weight: 600;
|
|
6833
6841
|
font-size: 12px;
|
|
6834
6842
|
line-height: 16px;
|
|
6835
6843
|
color: rgba(255, 255, 255, 0.8);
|
|
6836
|
-
`,
|
|
6837
|
-
|
|
6838
|
-
|
|
6844
|
+
`, x9 = d.div`
|
|
6845
|
+
width: 169px;
|
|
6846
|
+
height: 52px;
|
|
6847
|
+
background: ${({ type: e = "error" }) => h9[e]};
|
|
6848
|
+
position: absolute;
|
|
6849
|
+
top: -25px;
|
|
6850
|
+
`, S9 = ({ code: e, type: n = "error" }) => {
|
|
6851
|
+
const r = I5[e] || "Unknown error";
|
|
6852
|
+
return /* @__PURE__ */ t.jsxs(f9, { type: n, children: [
|
|
6853
|
+
/* @__PURE__ */ t.jsx(x9, { type: n }),
|
|
6854
|
+
/* @__PURE__ */ t.jsx(u9, { children: r })
|
|
6855
|
+
] });
|
|
6839
6856
|
};
|
|
6840
6857
|
export {
|
|
6841
|
-
|
|
6842
|
-
|
|
6858
|
+
C9 as BalanceAndBet,
|
|
6859
|
+
k9 as BlackJackeWinPopup,
|
|
6843
6860
|
Ce as Button,
|
|
6844
6861
|
mt as Chip,
|
|
6845
|
-
|
|
6846
|
-
|
|
6847
|
-
|
|
6848
|
-
|
|
6862
|
+
v9 as ChipBoard,
|
|
6863
|
+
j9 as MobileBottomInfo,
|
|
6864
|
+
m9 as MobileMenu,
|
|
6865
|
+
A9 as NotPlaying,
|
|
6849
6866
|
Rt as PopupWrapper,
|
|
6850
|
-
|
|
6867
|
+
L9 as Reconnect,
|
|
6851
6868
|
En as Timer,
|
|
6852
|
-
|
|
6853
|
-
|
|
6854
|
-
|
|
6855
|
-
|
|
6869
|
+
y9 as ToLobby,
|
|
6870
|
+
S9 as ToastMessages,
|
|
6871
|
+
b9 as TopIcons,
|
|
6872
|
+
w9 as TournamentNotification
|
|
6856
6873
|
};
|
|
@@ -18,16 +18,16 @@
|
|
|
18
18
|
`+C1+o}}var r1=!1,m1;{var W1=typeof WeakMap=="function"?WeakMap:Map;m1=new W1}function i1(o,h){if(!o||r1)return"";{var g=m1.get(o);if(g!==void 0)return g}var j;r1=!0;var T=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var V;V=f1.current,f1.current=null,K1();try{if(h){var D=function(){throw Error()};if(Object.defineProperty(D.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(D,[])}catch(J){j=J}Reflect.construct(o,[],D)}else{try{D.call()}catch(J){j=J}o.call(D.prototype)}}else{try{throw Error()}catch(J){j=J}o()}}catch(J){if(J&&j&&typeof J.stack=="string"){for(var N=J.stack.split(`
|
|
19
19
|
`),Q=j.stack.split(`
|
|
20
20
|
`),G=N.length-1,Z=Q.length-1;G>=1&&Z>=0&&N[G]!==Q[Z];)Z--;for(;G>=1&&Z>=0;G--,Z--)if(N[G]!==Q[Z]){if(G!==1||Z!==1)do if(G--,Z--,Z<0||N[G]!==Q[Z]){var e1=`
|
|
21
|
-
`+N[G].replace(" at new "," at ");return o.displayName&&e1.includes("<anonymous>")&&(e1=e1.replace("<anonymous>",o.displayName)),typeof o=="function"&&m1.set(o,e1),e1}while(G>=1&&Z>=0);break}}}finally{r1=!1,f1.current=V,T1(),Error.prepareStackTrace=T}var z1=o?o.displayName||o.name:"",k1=z1?n1(z1):"";return typeof o=="function"&&m1.set(o,k1),k1}function
|
|
21
|
+
`+N[G].replace(" at new "," at ");return o.displayName&&e1.includes("<anonymous>")&&(e1=e1.replace("<anonymous>",o.displayName)),typeof o=="function"&&m1.set(o,e1),e1}while(G>=1&&Z>=0);break}}}finally{r1=!1,f1.current=V,T1(),Error.prepareStackTrace=T}var z1=o?o.displayName||o.name:"",k1=z1?n1(z1):"";return typeof o=="function"&&m1.set(o,k1),k1}function _n(o,h,g){return i1(o,!1)}function $n(o){var h=o.prototype;return!!(h&&h.isReactComponent)}function Le(o,h,g){if(o==null)return"";if(typeof o=="function")return i1(o,$n(o));if(typeof o=="string")return n1(o);switch(o){case u:return n1("Suspense");case f:return n1("SuspenseList")}if(typeof o=="object")switch(o.$$typeof){case c:return _n(o.render);case x:return Le(o.type,h,g);case C:{var j=o,T=j._payload,V=j._init;try{return Le(V(T),h,g)}catch{}}}return""}var Y1=Object.prototype.hasOwnProperty,bt={},wt=A.ReactDebugCurrentFrame;function Ae(o){if(o){var h=o._owner,g=Le(o.type,o._source,h?h.type:null);wt.setExtraStackFrame(g)}else wt.setExtraStackFrame(null)}function e9(o,h,g,j,T){{var V=Function.call.bind(Y1);for(var D in o)if(V(o,D)){var N=void 0;try{if(typeof o[D]!="function"){var Q=Error((j||"React class")+": "+g+" type `"+D+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof o[D]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw Q.name="Invariant Violation",Q}N=o[D](h,D,j,g,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(G){N=G}N&&!(N instanceof Error)&&(Ae(T),L("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).",j||"React class",g,D,typeof N),Ae(null)),N instanceof Error&&!(N.message in bt)&&(bt[N.message]=!0,Ae(T),L("Failed %s type: %s",g,N.message),Ae(null))}}}var t9=Array.isArray;function $e(o){return t9(o)}function n9(o){{var h=typeof Symbol=="function"&&Symbol.toStringTag,g=h&&o[Symbol.toStringTag]||o.constructor.name||"Object";return g}}function r9(o){try{return vt(o),!1}catch{return!0}}function vt(o){return""+o}function jt(o){if(r9(o))return L("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",n9(o)),vt(o)}var Lt=A.ReactCurrentOwner,i9={key:!0,ref:!0,__self:!0,__source:!0},At,kt;function s9(o){if(Y1.call(o,"ref")){var h=Object.getOwnPropertyDescriptor(o,"ref").get;if(h&&h.isReactWarning)return!1}return o.ref!==void 0}function o9(o){if(Y1.call(o,"key")){var h=Object.getOwnPropertyDescriptor(o,"key").get;if(h&&h.isReactWarning)return!1}return o.key!==void 0}function a9(o,h){typeof o.ref=="string"&&Lt.current}function l9(o,h){{var g=function(){At||(At=!0,L("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",h))};g.isReactWarning=!0,Object.defineProperty(o,"key",{get:g,configurable:!0})}}function c9(o,h){{var g=function(){kt||(kt=!0,L("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",h))};g.isReactWarning=!0,Object.defineProperty(o,"ref",{get:g,configurable:!0})}}var d9=function(o,h,g,j,T,V,D){var N={$$typeof:n,type:o,key:h,ref:g,props:D,_owner:V};return N._store={},Object.defineProperty(N._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(N,"_self",{configurable:!1,enumerable:!1,writable:!1,value:j}),Object.defineProperty(N,"_source",{configurable:!1,enumerable:!1,writable:!1,value:T}),Object.freeze&&(Object.freeze(N.props),Object.freeze(N)),N};function p9(o,h,g,j,T){{var V,D={},N=null,Q=null;g!==void 0&&(jt(g),N=""+g),o9(h)&&(jt(h.key),N=""+h.key),s9(h)&&(Q=h.ref,a9(h,T));for(V in h)Y1.call(h,V)&&!i9.hasOwnProperty(V)&&(D[V]=h[V]);if(o&&o.defaultProps){var G=o.defaultProps;for(V in G)D[V]===void 0&&(D[V]=G[V])}if(N||Q){var Z=typeof o=="function"?o.displayName||o.name||"Unknown":o;N&&l9(D,Z),Q&&c9(D,Z)}return d9(o,N,Q,T,j,Lt.current,D)}}var e2=A.ReactCurrentOwner,St=A.ReactDebugCurrentFrame;function V1(o){if(o){var h=o._owner,g=Le(o.type,o._source,h?h.type:null);St.setExtraStackFrame(g)}else St.setExtraStackFrame(null)}var t2;t2=!1;function n2(o){return typeof o=="object"&&o!==null&&o.$$typeof===n}function Nt(){{if(e2.current){var o=M(e2.current.type);if(o)return`
|
|
22
22
|
|
|
23
|
-
Check the render method of \``+o+"`."}return""}}function
|
|
23
|
+
Check the render method of \``+o+"`."}return""}}function h9(o){return""}var It={};function f9(o){{var h=Nt();if(!h){var g=typeof o=="string"?o:o.displayName||o.name;g&&(h=`
|
|
24
24
|
|
|
25
|
-
Check the top-level render call using <`+g+">.")}return h}}function Mt(o,h){{if(!o._store||o._store.validated||o.key!=null)return;o._store.validated=!0;var g=
|
|
25
|
+
Check the top-level render call using <`+g+">.")}return h}}function Mt(o,h){{if(!o._store||o._store.validated||o.key!=null)return;o._store.validated=!0;var g=f9(h);if(It[g])return;It[g]=!0;var j="";o&&o._owner&&o._owner!==e2.current&&(j=" It was passed a child from "+M(o._owner.type)+"."),V1(o),L('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',g,j),V1(null)}}function Bt(o,h){{if(typeof o!="object")return;if($e(o))for(var g=0;g<o.length;g++){var j=o[g];n2(j)&&Mt(j,h)}else if(n2(o))o._store&&(o._store.validated=!0);else if(o){var T=R(o);if(typeof T=="function"&&T!==o.entries)for(var V=T.call(o),D;!(D=V.next()).done;)n2(D.value)&&Mt(D.value,h)}}}function u9(o){{var h=o.type;if(h==null||typeof h=="string")return;var g;if(typeof h=="function")g=h.propTypes;else if(typeof h=="object"&&(h.$$typeof===c||h.$$typeof===x))g=h.propTypes;else return;if(g){var j=M(h);e9(g,o.props,"prop",j,o)}else if(h.PropTypes!==void 0&&!t2){t2=!0;var T=M(h);L("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",T||"Unknown")}typeof h.getDefaultProps=="function"&&!h.getDefaultProps.isReactClassApproved&&L("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function x9(o){{for(var h=Object.keys(o.props),g=0;g<h.length;g++){var j=h[g];if(j!=="children"&&j!=="key"){V1(o),L("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",j),V1(null);break}}o.ref!==null&&(V1(o),L("Invalid attribute `ref` supplied to `React.Fragment`."),V1(null))}}var Ft={};function Dt(o,h,g,j,T,V){{var D=c1(o);if(!D){var N="";(o===void 0||typeof o=="object"&&o!==null&&Object.keys(o).length===0)&&(N+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var Q=h9();Q?N+=Q:N+=Nt();var G;o===null?G="null":$e(o)?G="array":o!==void 0&&o.$$typeof===n?(G="<"+(M(o.type)||"Unknown")+" />",N=" Did you accidentally export a JSX literal instead of a component?"):G=typeof o,L("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",G,N)}var Z=p9(o,h,g,T,V);if(Z==null)return Z;if(D){var e1=h.children;if(e1!==void 0)if(j)if($e(e1)){for(var z1=0;z1<e1.length;z1++)Bt(e1[z1],o);Object.freeze&&Object.freeze(e1)}else L("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else Bt(e1,o)}if(Y1.call(h,"key")){var k1=M(o),J=Object.keys(h).filter(function(w9){return w9!=="key"}),r2=J.length>0?"{key: someKey, "+J.join(": ..., ")+": ...}":"{key: someKey}";if(!Ft[k1+r2]){var b9=J.length>0?"{"+J.join(": ..., ")+": ...}":"{}";L(`A props object containing a "key" prop is being spread into JSX:
|
|
26
26
|
let props = %s;
|
|
27
27
|
<%s {...props} />
|
|
28
28
|
React keys must be passed directly to JSX without using spread:
|
|
29
29
|
let props = %s;
|
|
30
|
-
<%s key={someKey} {...props} />`,r2,k1,C9,k1),Ft[k1+r2]=!0}}return o===i?h9(Z):p9(Z),Z}}function f9(o,h,g){return Dt(o,h,g,!0)}function u9(o,h,g){return Dt(o,h,g,!1)}var x9=u9,g9=f9;G1.Fragment=i,G1.jsx=x9,G1.jsxs=g9}()),G1}process.env.NODE_ENV==="production"?ke.exports=Rt():ke.exports=Ht();var t=ke.exports,K=function(){return K=Object.assign||function(n){for(var r,i=1,s=arguments.length;i<s;i++){r=arguments[i];for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&(n[a]=r[a])}return n},K.apply(this,arguments)};function y1(e,n,r){if(r||arguments.length===2)for(var i=0,s=n.length,a;i<s;i++)(a||!(i in n))&&(a||(a=Array.prototype.slice.call(n,0,i)),a[i]=n[i]);return e.concat(a||Array.prototype.slice.call(n))}typeof SuppressedError=="function"&&SuppressedError;function Ot(e){var n=Object.create(null);return function(r){return n[r]===void 0&&(n[r]=e(r)),n[r]}}var Tt=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,Wt=Ot(function(e){return Tt.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),z="-ms-",E1="-moz-",H="-webkit-",o2="comm",J1="rule",Se="decl",Vt="@import",a2="@keyframes",zt="@layer",l2=Math.abs,Ne=String.fromCharCode,Ie=Object.assign;function Pt(e,n){return U(e,0)^45?(((n<<2^U(e,0))<<2^U(e,1))<<2^U(e,2))<<2^U(e,3):0}function c2(e){return e.trim()}function a1(e,n){return(e=n.exec(e))?e[0]:e}function k(e,n,r){return e.replace(n,r)}function _1(e,n,r){return e.indexOf(n,r)}function U(e,n){return e.charCodeAt(n)|0}function S1(e,n,r){return e.slice(n,r)}function s1(e){return e.length}function d2(e){return e.length}function Z1(e,n){return n.push(e),e}function Gt(e,n){return e.map(n).join("")}function p2(e,n){return e.filter(function(r){return!a1(r,n)})}var $1=1,N1=1,h2=0,_=0,E=0,I1="";function ee(e,n,r,i,s,a,l,p){return{value:e,root:n,parent:r,type:i,props:s,children:a,line:$1,column:N1,length:l,return:"",siblings:p}}function u1(e,n){return Ie(ee("",null,null,"",null,null,0,e.siblings),e,{length:-e.length},n)}function M1(e){for(;e.root;)e=u1(e.root,{children:[e]});Z1(e,e.siblings)}function Et(){return E}function Zt(){return E=_>0?U(I1,--_):0,N1--,E===10&&(N1=1,$1--),E}function t1(){return E=_<h2?U(I1,_++):0,N1++,E===10&&(N1=1,$1++),E}function b1(){return U(I1,_)}function te(){return _}function ne(e,n){return S1(I1,e,n)}function Me(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Ut(e){return $1=N1=1,h2=s1(I1=e),_=0,[]}function Xt(e){return I1="",e}function Be(e){return c2(ne(_-1,Fe(e===91?e+2:e===40?e+1:e)))}function qt(e){for(;(E=b1())&&E<33;)t1();return Me(e)>2||Me(E)>3?"":" "}function Qt(e,n){for(;--n&&t1()&&!(E<48||E>102||E>57&&E<65||E>70&&E<97););return ne(e,te()+(n<6&&b1()==32&&t1()==32))}function Fe(e){for(;t1();)switch(E){case e:return _;case 34:case 39:e!==34&&e!==39&&Fe(E);break;case 40:e===41&&Fe(e);break;case 92:t1();break}return _}function Kt(e,n){for(;t1()&&e+E!==57;)if(e+E===84&&b1()===47)break;return"/*"+ne(n,_-1)+"*"+Ne(e===47?e:t1())}function Yt(e){for(;!Me(b1());)t1();return ne(e,_)}function Jt(e){return Xt(re("",null,null,null,[""],e=Ut(e),0,[0],e))}function re(e,n,r,i,s,a,l,p,c){for(var u=0,f=0,x=l,C=0,y=0,m=0,w=1,R=1,A=1,L=0,B="",F=s,O=a,S=i,v=B;R;)switch(m=L,L=t1()){case 40:if(m!=108&&U(v,x-1)==58){_1(v+=k(Be(L),"&","&\f"),"&\f",l2(u?p[u-1]:0))!=-1&&(A=-1);break}case 34:case 39:case 91:v+=Be(L);break;case 9:case 10:case 13:case 32:v+=qt(m);break;case 92:v+=Qt(te()-1,7);continue;case 47:switch(b1()){case 42:case 47:Z1(_t(Kt(t1(),te()),n,r,c),c);break;default:v+="/"}break;case 123*w:p[u++]=s1(v)*A;case 125*w:case 59:case 0:switch(L){case 0:case 125:R=0;case 59+f:A==-1&&(v=k(v,/\f/g,"")),y>0&&s1(v)-x&&Z1(y>32?u2(v+";",i,r,x-1,c):u2(k(v," ","")+";",i,r,x-2,c),c);break;case 59:v+=";";default:if(Z1(S=f2(v,n,r,u,f,s,p,B,F=[],O=[],x,a),a),L===123)if(f===0)re(v,n,S,S,F,a,x,p,O);else switch(C===99&&U(v,3)===110?100:C){case 100:case 108:case 109:case 115:re(e,S,S,i&&Z1(f2(e,S,S,0,0,s,p,B,s,F=[],x,O),O),s,O,x,p,i?F:O);break;default:re(v,S,S,S,[""],O,0,p,O)}}u=f=y=0,w=A=1,B=v="",x=l;break;case 58:x=1+s1(v),y=m;default:if(w<1){if(L==123)--w;else if(L==125&&w++==0&&Zt()==125)continue}switch(v+=Ne(L),L*w){case 38:A=f>0?1:(v+="\f",-1);break;case 44:p[u++]=(s1(v)-1)*A,A=1;break;case 64:b1()===45&&(v+=Be(t1())),C=b1(),f=x=s1(B=v+=Yt(te())),L++;break;case 45:m===45&&s1(v)==2&&(w=0)}}return a}function f2(e,n,r,i,s,a,l,p,c,u,f,x){for(var C=s-1,y=s===0?a:[""],m=d2(y),w=0,R=0,A=0;w<i;++w)for(var L=0,B=S1(e,C+1,C=l2(R=l[w])),F=e;L<m;++L)(F=c2(R>0?y[L]+" "+B:k(B,/&\f/g,y[L])))&&(c[A++]=F);return ee(e,n,r,s===0?J1:p,c,u,f,x)}function _t(e,n,r,i){return ee(e,n,r,o2,Ne(Et()),S1(e,2,-2),0,i)}function u2(e,n,r,i,s){return ee(e,n,r,Se,S1(e,0,i),S1(e,i+1,-1),i,s)}function x2(e,n,r){switch(Pt(e,n)){case 5103:return H+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return H+e+e;case 4789:return E1+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return H+e+E1+e+z+e+e;case 5936:switch(U(e,n+11)){case 114:return H+e+z+k(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return H+e+z+k(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return H+e+z+k(e,/[svh]\w+-[tblr]{2}/,"lr")+e}case 6828:case 4268:case 2903:return H+e+z+e+e;case 6165:return H+e+z+"flex-"+e+e;case 5187:return H+e+k(e,/(\w+).+(:[^]+)/,H+"box-$1$2"+z+"flex-$1$2")+e;case 5443:return H+e+z+"flex-item-"+k(e,/flex-|-self/g,"")+(a1(e,/flex-|baseline/)?"":z+"grid-row-"+k(e,/flex-|-self/g,""))+e;case 4675:return H+e+z+"flex-line-pack"+k(e,/align-content|flex-|-self/g,"")+e;case 5548:return H+e+z+k(e,"shrink","negative")+e;case 5292:return H+e+z+k(e,"basis","preferred-size")+e;case 6060:return H+"box-"+k(e,"-grow","")+H+e+z+k(e,"grow","positive")+e;case 4554:return H+k(e,/([^-])(transform)/g,"$1"+H+"$2")+e;case 6187:return k(k(k(e,/(zoom-|grab)/,H+"$1"),/(image-set)/,H+"$1"),e,"")+e;case 5495:case 3959:return k(e,/(image-set\([^]*)/,H+"$1$`$1");case 4968:return k(k(e,/(.+:)(flex-)?(.*)/,H+"box-pack:$3"+z+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+H+e+e;case 4200:if(!a1(e,/flex-|baseline/))return z+"grid-column-align"+S1(e,n)+e;break;case 2592:case 3360:return z+k(e,"template-","")+e;case 4384:case 3616:return r&&r.some(function(i,s){return n=s,a1(i.props,/grid-\w+-end/)})?~_1(e+(r=r[n].value),"span",0)?e:z+k(e,"-start","")+e+z+"grid-row-span:"+(~_1(r,"span",0)?a1(r,/\d+/):+a1(r,/\d+/)-+a1(e,/\d+/))+";":z+k(e,"-start","")+e;case 4896:case 4128:return r&&r.some(function(i){return a1(i.props,/grid-\w+-start/)})?e:z+k(k(e,"-end","-span"),"span ","")+e;case 4095:case 3583:case 4068:case 2532:return k(e,/(.+)-inline(.+)/,H+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(s1(e)-1-n>6)switch(U(e,n+1)){case 109:if(U(e,n+4)!==45)break;case 102:return k(e,/(.+:)(.+)-([^]+)/,"$1"+H+"$2-$3$1"+E1+(U(e,n+3)==108?"$3":"$2-$3"))+e;case 115:return~_1(e,"stretch",0)?x2(k(e,"stretch","fill-available"),n,r)+e:e}break;case 5152:case 5920:return k(e,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,function(i,s,a,l,p,c,u){return z+s+":"+a+u+(l?z+s+"-span:"+(p?c:+c-+a)+u:"")+e});case 4949:if(U(e,n+6)===121)return k(e,":",":"+H)+e;break;case 6444:switch(U(e,U(e,14)===45?18:11)){case 120:return k(e,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+H+(U(e,14)===45?"inline-":"")+"box$3$1"+H+"$2$3$1"+z+"$2box$3")+e;case 100:return k(e,":",":"+z)+e}break;case 5719:case 2647:case 2135:case 3927:case 2391:return k(e,"scroll-","scroll-snap-")+e}return e}function ie(e,n){for(var r="",i=0;i<e.length;i++)r+=n(e[i],i,e,n)||"";return r}function $t(e,n,r,i){switch(e.type){case zt:if(e.children.length)break;case Vt:case Se:return e.return=e.return||e.value;case o2:return"";case a2:return e.return=e.value+"{"+ie(e.children,i)+"}";case J1:if(!s1(e.value=e.props.join(",")))return""}return s1(r=ie(e.children,i))?e.return=e.value+"{"+r+"}":""}function e0(e){var n=d2(e);return function(r,i,s,a){for(var l="",p=0;p<n;p++)l+=e[p](r,i,s,a)||"";return l}}function t0(e){return function(n){n.root||(n=n.return)&&e(n)}}function n0(e,n,r,i){if(e.length>-1&&!e.return)switch(e.type){case Se:e.return=x2(e.value,e.length,r);return;case a2:return ie([u1(e,{value:k(e.value,"@","@"+H)})],i);case J1:if(e.length)return Gt(r=e.props,function(s){switch(a1(s,i=/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":M1(u1(e,{props:[k(s,/:(read-\w+)/,":"+E1+"$1")]})),M1(u1(e,{props:[s]})),Ie(e,{props:p2(r,i)});break;case"::placeholder":M1(u1(e,{props:[k(s,/:(plac\w+)/,":"+H+"input-$1")]})),M1(u1(e,{props:[k(s,/:(plac\w+)/,":"+E1+"$1")]})),M1(u1(e,{props:[k(s,/:(plac\w+)/,z+"input-$1")]})),M1(u1(e,{props:[s]})),Ie(e,{props:p2(r,i)});break}return""})}}var r0={},w1=typeof process<"u"&&process.env!==void 0&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",g2="active",C2="data-styled-version",se="6.1.19",De=`/*!sc*/
|
|
30
|
+
<%s key={someKey} {...props} />`,r2,k1,b9,k1),Ft[k1+r2]=!0}}return o===i?x9(Z):u9(Z),Z}}function g9(o,h,g){return Dt(o,h,g,!0)}function C9(o,h,g){return Dt(o,h,g,!1)}var m9=C9,y9=g9;G1.Fragment=i,G1.jsx=m9,G1.jsxs=y9}()),G1}process.env.NODE_ENV==="production"?ke.exports=Rt():ke.exports=Ht();var t=ke.exports,K=function(){return K=Object.assign||function(n){for(var r,i=1,s=arguments.length;i<s;i++){r=arguments[i];for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&(n[a]=r[a])}return n},K.apply(this,arguments)};function y1(e,n,r){if(r||arguments.length===2)for(var i=0,s=n.length,a;i<s;i++)(a||!(i in n))&&(a||(a=Array.prototype.slice.call(n,0,i)),a[i]=n[i]);return e.concat(a||Array.prototype.slice.call(n))}typeof SuppressedError=="function"&&SuppressedError;function Ot(e){var n=Object.create(null);return function(r){return n[r]===void 0&&(n[r]=e(r)),n[r]}}var Tt=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,Wt=Ot(function(e){return Tt.test(e)||e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)<91}),z="-ms-",E1="-moz-",H="-webkit-",o2="comm",J1="rule",Se="decl",Vt="@import",a2="@keyframes",zt="@layer",l2=Math.abs,Ne=String.fromCharCode,Ie=Object.assign;function Pt(e,n){return U(e,0)^45?(((n<<2^U(e,0))<<2^U(e,1))<<2^U(e,2))<<2^U(e,3):0}function c2(e){return e.trim()}function a1(e,n){return(e=n.exec(e))?e[0]:e}function k(e,n,r){return e.replace(n,r)}function _1(e,n,r){return e.indexOf(n,r)}function U(e,n){return e.charCodeAt(n)|0}function S1(e,n,r){return e.slice(n,r)}function s1(e){return e.length}function d2(e){return e.length}function Z1(e,n){return n.push(e),e}function Gt(e,n){return e.map(n).join("")}function p2(e,n){return e.filter(function(r){return!a1(r,n)})}var $1=1,N1=1,h2=0,_=0,E=0,I1="";function ee(e,n,r,i,s,a,l,p){return{value:e,root:n,parent:r,type:i,props:s,children:a,line:$1,column:N1,length:l,return:"",siblings:p}}function u1(e,n){return Ie(ee("",null,null,"",null,null,0,e.siblings),e,{length:-e.length},n)}function M1(e){for(;e.root;)e=u1(e.root,{children:[e]});Z1(e,e.siblings)}function Et(){return E}function Zt(){return E=_>0?U(I1,--_):0,N1--,E===10&&(N1=1,$1--),E}function t1(){return E=_<h2?U(I1,_++):0,N1++,E===10&&(N1=1,$1++),E}function b1(){return U(I1,_)}function te(){return _}function ne(e,n){return S1(I1,e,n)}function Me(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Ut(e){return $1=N1=1,h2=s1(I1=e),_=0,[]}function Xt(e){return I1="",e}function Be(e){return c2(ne(_-1,Fe(e===91?e+2:e===40?e+1:e)))}function qt(e){for(;(E=b1())&&E<33;)t1();return Me(e)>2||Me(E)>3?"":" "}function Qt(e,n){for(;--n&&t1()&&!(E<48||E>102||E>57&&E<65||E>70&&E<97););return ne(e,te()+(n<6&&b1()==32&&t1()==32))}function Fe(e){for(;t1();)switch(E){case e:return _;case 34:case 39:e!==34&&e!==39&&Fe(E);break;case 40:e===41&&Fe(e);break;case 92:t1();break}return _}function Kt(e,n){for(;t1()&&e+E!==57;)if(e+E===84&&b1()===47)break;return"/*"+ne(n,_-1)+"*"+Ne(e===47?e:t1())}function Yt(e){for(;!Me(b1());)t1();return ne(e,_)}function Jt(e){return Xt(re("",null,null,null,[""],e=Ut(e),0,[0],e))}function re(e,n,r,i,s,a,l,p,c){for(var u=0,f=0,x=l,C=0,y=0,m=0,w=1,R=1,A=1,L=0,B="",F=s,O=a,S=i,v=B;R;)switch(m=L,L=t1()){case 40:if(m!=108&&U(v,x-1)==58){_1(v+=k(Be(L),"&","&\f"),"&\f",l2(u?p[u-1]:0))!=-1&&(A=-1);break}case 34:case 39:case 91:v+=Be(L);break;case 9:case 10:case 13:case 32:v+=qt(m);break;case 92:v+=Qt(te()-1,7);continue;case 47:switch(b1()){case 42:case 47:Z1(_t(Kt(t1(),te()),n,r,c),c);break;default:v+="/"}break;case 123*w:p[u++]=s1(v)*A;case 125*w:case 59:case 0:switch(L){case 0:case 125:R=0;case 59+f:A==-1&&(v=k(v,/\f/g,"")),y>0&&s1(v)-x&&Z1(y>32?u2(v+";",i,r,x-1,c):u2(k(v," ","")+";",i,r,x-2,c),c);break;case 59:v+=";";default:if(Z1(S=f2(v,n,r,u,f,s,p,B,F=[],O=[],x,a),a),L===123)if(f===0)re(v,n,S,S,F,a,x,p,O);else switch(C===99&&U(v,3)===110?100:C){case 100:case 108:case 109:case 115:re(e,S,S,i&&Z1(f2(e,S,S,0,0,s,p,B,s,F=[],x,O),O),s,O,x,p,i?F:O);break;default:re(v,S,S,S,[""],O,0,p,O)}}u=f=y=0,w=A=1,B=v="",x=l;break;case 58:x=1+s1(v),y=m;default:if(w<1){if(L==123)--w;else if(L==125&&w++==0&&Zt()==125)continue}switch(v+=Ne(L),L*w){case 38:A=f>0?1:(v+="\f",-1);break;case 44:p[u++]=(s1(v)-1)*A,A=1;break;case 64:b1()===45&&(v+=Be(t1())),C=b1(),f=x=s1(B=v+=Yt(te())),L++;break;case 45:m===45&&s1(v)==2&&(w=0)}}return a}function f2(e,n,r,i,s,a,l,p,c,u,f,x){for(var C=s-1,y=s===0?a:[""],m=d2(y),w=0,R=0,A=0;w<i;++w)for(var L=0,B=S1(e,C+1,C=l2(R=l[w])),F=e;L<m;++L)(F=c2(R>0?y[L]+" "+B:k(B,/&\f/g,y[L])))&&(c[A++]=F);return ee(e,n,r,s===0?J1:p,c,u,f,x)}function _t(e,n,r,i){return ee(e,n,r,o2,Ne(Et()),S1(e,2,-2),0,i)}function u2(e,n,r,i,s){return ee(e,n,r,Se,S1(e,0,i),S1(e,i+1,-1),i,s)}function x2(e,n,r){switch(Pt(e,n)){case 5103:return H+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return H+e+e;case 4789:return E1+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return H+e+E1+e+z+e+e;case 5936:switch(U(e,n+11)){case 114:return H+e+z+k(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return H+e+z+k(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return H+e+z+k(e,/[svh]\w+-[tblr]{2}/,"lr")+e}case 6828:case 4268:case 2903:return H+e+z+e+e;case 6165:return H+e+z+"flex-"+e+e;case 5187:return H+e+k(e,/(\w+).+(:[^]+)/,H+"box-$1$2"+z+"flex-$1$2")+e;case 5443:return H+e+z+"flex-item-"+k(e,/flex-|-self/g,"")+(a1(e,/flex-|baseline/)?"":z+"grid-row-"+k(e,/flex-|-self/g,""))+e;case 4675:return H+e+z+"flex-line-pack"+k(e,/align-content|flex-|-self/g,"")+e;case 5548:return H+e+z+k(e,"shrink","negative")+e;case 5292:return H+e+z+k(e,"basis","preferred-size")+e;case 6060:return H+"box-"+k(e,"-grow","")+H+e+z+k(e,"grow","positive")+e;case 4554:return H+k(e,/([^-])(transform)/g,"$1"+H+"$2")+e;case 6187:return k(k(k(e,/(zoom-|grab)/,H+"$1"),/(image-set)/,H+"$1"),e,"")+e;case 5495:case 3959:return k(e,/(image-set\([^]*)/,H+"$1$`$1");case 4968:return k(k(e,/(.+:)(flex-)?(.*)/,H+"box-pack:$3"+z+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+H+e+e;case 4200:if(!a1(e,/flex-|baseline/))return z+"grid-column-align"+S1(e,n)+e;break;case 2592:case 3360:return z+k(e,"template-","")+e;case 4384:case 3616:return r&&r.some(function(i,s){return n=s,a1(i.props,/grid-\w+-end/)})?~_1(e+(r=r[n].value),"span",0)?e:z+k(e,"-start","")+e+z+"grid-row-span:"+(~_1(r,"span",0)?a1(r,/\d+/):+a1(r,/\d+/)-+a1(e,/\d+/))+";":z+k(e,"-start","")+e;case 4896:case 4128:return r&&r.some(function(i){return a1(i.props,/grid-\w+-start/)})?e:z+k(k(e,"-end","-span"),"span ","")+e;case 4095:case 3583:case 4068:case 2532:return k(e,/(.+)-inline(.+)/,H+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(s1(e)-1-n>6)switch(U(e,n+1)){case 109:if(U(e,n+4)!==45)break;case 102:return k(e,/(.+:)(.+)-([^]+)/,"$1"+H+"$2-$3$1"+E1+(U(e,n+3)==108?"$3":"$2-$3"))+e;case 115:return~_1(e,"stretch",0)?x2(k(e,"stretch","fill-available"),n,r)+e:e}break;case 5152:case 5920:return k(e,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,function(i,s,a,l,p,c,u){return z+s+":"+a+u+(l?z+s+"-span:"+(p?c:+c-+a)+u:"")+e});case 4949:if(U(e,n+6)===121)return k(e,":",":"+H)+e;break;case 6444:switch(U(e,U(e,14)===45?18:11)){case 120:return k(e,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+H+(U(e,14)===45?"inline-":"")+"box$3$1"+H+"$2$3$1"+z+"$2box$3")+e;case 100:return k(e,":",":"+z)+e}break;case 5719:case 2647:case 2135:case 3927:case 2391:return k(e,"scroll-","scroll-snap-")+e}return e}function ie(e,n){for(var r="",i=0;i<e.length;i++)r+=n(e[i],i,e,n)||"";return r}function $t(e,n,r,i){switch(e.type){case zt:if(e.children.length)break;case Vt:case Se:return e.return=e.return||e.value;case o2:return"";case a2:return e.return=e.value+"{"+ie(e.children,i)+"}";case J1:if(!s1(e.value=e.props.join(",")))return""}return s1(r=ie(e.children,i))?e.return=e.value+"{"+r+"}":""}function e0(e){var n=d2(e);return function(r,i,s,a){for(var l="",p=0;p<n;p++)l+=e[p](r,i,s,a)||"";return l}}function t0(e){return function(n){n.root||(n=n.return)&&e(n)}}function n0(e,n,r,i){if(e.length>-1&&!e.return)switch(e.type){case Se:e.return=x2(e.value,e.length,r);return;case a2:return ie([u1(e,{value:k(e.value,"@","@"+H)})],i);case J1:if(e.length)return Gt(r=e.props,function(s){switch(a1(s,i=/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":M1(u1(e,{props:[k(s,/:(read-\w+)/,":"+E1+"$1")]})),M1(u1(e,{props:[s]})),Ie(e,{props:p2(r,i)});break;case"::placeholder":M1(u1(e,{props:[k(s,/:(plac\w+)/,":"+H+"input-$1")]})),M1(u1(e,{props:[k(s,/:(plac\w+)/,":"+E1+"$1")]})),M1(u1(e,{props:[k(s,/:(plac\w+)/,z+"input-$1")]})),M1(u1(e,{props:[s]})),Ie(e,{props:p2(r,i)});break}return""})}}var r0={},w1=typeof process<"u"&&process.env!==void 0&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",g2="active",C2="data-styled-version",se="6.1.19",De=`/*!sc*/
|
|
31
31
|
`,oe=typeof window<"u"&&typeof document<"u",i0=!!(typeof SC_DISABLE_SPEEDY=="boolean"?SC_DISABLE_SPEEDY:typeof process<"u"&&process.env!==void 0&&process.env.REACT_APP_SC_DISABLE_SPEEDY!==void 0&&process.env.REACT_APP_SC_DISABLE_SPEEDY!==""?process.env.REACT_APP_SC_DISABLE_SPEEDY!=="false"&&process.env.REACT_APP_SC_DISABLE_SPEEDY:typeof process<"u"&&process.env!==void 0&&process.env.SC_DISABLE_SPEEDY!==void 0&&process.env.SC_DISABLE_SPEEDY!==""?process.env.SC_DISABLE_SPEEDY!=="false"&&process.env.SC_DISABLE_SPEEDY:process.env.NODE_ENV!=="production"),m2=/invalid hook call/i,ae=new Set,s0=function(e,n){if(process.env.NODE_ENV!=="production"){var r=n?' with the id of "'.concat(n,'"'):"",i="The component ".concat(e).concat(r,` has been created dynamically.
|
|
32
32
|
`)+`You may see this warning because you've called styled inside another component.
|
|
33
33
|
To resolve this only create new StyledComponents outside of any render method and function component.
|
|
@@ -2228,12 +2228,12 @@ See https://s-c.sh/2BAXzed for more info.`),window[ue]+=1);const P0=d.div`
|
|
|
2228
2228
|
transform: translate(-50%, 0%);
|
|
2229
2229
|
opacity: 1;
|
|
2230
2230
|
}
|
|
2231
|
-
`,Xn=d.div`
|
|
2231
|
+
`,Xn={error:"rgba(227, 71, 71, 1)",warning:"rgba(233, 136, 38, 1)",success:"rgba(51, 165, 76, 1)"},qn={error:"radial-gradient(50% 50% at 50% 50%, rgba(227, 71, 71, 0.4) 0%, rgba(227, 71, 71, 0) 100%)",warning:"radial-gradient(50% 50% at 50% 50%, rgba(233, 136, 38, 0.4) 0%, rgba(233, 136, 38, 0) 100%)",success:"radial-gradient(50% 50% at 50% 50%, rgba(51, 165, 76, 0.4) 0%, rgba(51, 165, 76, 0) 100%)"},Qn=d.div`
|
|
2232
2232
|
width: 168px;
|
|
2233
2233
|
height: 34px;
|
|
2234
2234
|
border-bottom-right-radius: 12px;
|
|
2235
2235
|
border-bottom-left-radius: 12px;
|
|
2236
|
-
border-bottom: 1px solid
|
|
2236
|
+
border-bottom: ${({type:e="error"})=>`1px solid ${Xn[e]}`};
|
|
2237
2237
|
background: rgba(17, 17, 17, 0.8);
|
|
2238
2238
|
position: absolute;
|
|
2239
2239
|
top: 0%;
|
|
@@ -2242,11 +2242,17 @@ See https://s-c.sh/2BAXzed for more info.`),window[ue]+=1);const P0=d.div`
|
|
|
2242
2242
|
display: flex;
|
|
2243
2243
|
justify-content: center;
|
|
2244
2244
|
align-items: center;
|
|
2245
|
-
|
|
2246
2245
|
animation: ${Un} 0.4s ease-out;
|
|
2247
|
-
|
|
2246
|
+
position: relative;
|
|
2247
|
+
`,Kn=d.div`
|
|
2248
2248
|
font-weight: 600;
|
|
2249
2249
|
font-size: 12px;
|
|
2250
2250
|
line-height: 16px;
|
|
2251
2251
|
color: rgba(255, 255, 255, 0.8);
|
|
2252
|
-
`,
|
|
2252
|
+
`,Yn=d.div`
|
|
2253
|
+
width: 169px;
|
|
2254
|
+
height: 52px;
|
|
2255
|
+
background: ${({type:e="error"})=>qn[e]};
|
|
2256
|
+
position: absolute;
|
|
2257
|
+
top: -25px;
|
|
2258
|
+
`,Jn=({code:e,type:n="error"})=>{const r=n5[e]||"Unknown error";return t.jsxs(Qn,{type:n,children:[t.jsx(Yn,{type:n}),t.jsx(Kn,{children:r})]})};P.BalanceAndBet=G0,P.BlackJackeWinPopup=Zn,P.Button=U1,P.Chip=qe,P.ChipBoard=wn,P.MobileBottomInfo=Sn,P.MobileMenu=E3,P.NotPlaying=Pn,P.PopupWrapper=_e,P.Reconnect=Hn,P.Timer=yt,P.ToLobby=_3,P.ToastMessages=Jn,P.TopIcons=nn,P.TournamentNotification=pn,Object.defineProperty(P,Symbol.toStringTag,{value:"Module"})});
|
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "livevegas-ui-kit",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"files": [
|
|
6
|
-
"dist"
|
|
7
|
-
],
|
|
8
|
-
"main": "./dist/livevegas-ui-kit.umd.js",
|
|
9
|
-
"module": "./dist/livevegas-ui-kit.es.js",
|
|
10
|
-
"exports": {
|
|
11
|
-
"./package.json": "./package.json",
|
|
12
|
-
".": {
|
|
13
|
-
"types": "./dist/livevegas-ui-kit.es.d.ts",
|
|
14
|
-
"import": "./dist/livevegas-ui-kit.es.js"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"dev": "vite",
|
|
19
|
-
"build": "tsc && vite build",
|
|
20
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
21
|
-
"preview": "vite preview",
|
|
22
|
-
"storybook": "storybook dev -p 6006",
|
|
23
|
-
"build-storybook": "storybook build"
|
|
24
|
-
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"@microsoft/signalr": "^8.0.0",
|
|
27
|
-
"react": "^18.2.0",
|
|
28
|
-
"react-dom": "^18.2.0"
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@chromatic-com/storybook": "^1.5.0",
|
|
32
|
-
"@storybook/addon-essentials": "^8.1.4",
|
|
33
|
-
"@storybook/addon-interactions": "^8.1.4",
|
|
34
|
-
"@storybook/addon-links": "^8.1.4",
|
|
35
|
-
"@storybook/addon-onboarding": "^8.1.4",
|
|
36
|
-
"@storybook/blocks": "^8.1.4",
|
|
37
|
-
"@storybook/react": "^8.1.4",
|
|
38
|
-
"@storybook/react-vite": "^8.1.4",
|
|
39
|
-
"@storybook/test": "^8.1.4",
|
|
40
|
-
"@types/react": "^18.2.66",
|
|
41
|
-
"@types/react-dom": "^18.2.22",
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
43
|
-
"@typescript-eslint/parser": "^7.2.0",
|
|
44
|
-
"@vitejs/plugin-react": "^4.2.1",
|
|
45
|
-
"eslint": "^8.57.0",
|
|
46
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
47
|
-
"eslint-plugin-react-refresh": "^0.4.6",
|
|
48
|
-
"eslint-plugin-storybook": "^0.8.0",
|
|
49
|
-
"storybook": "^8.1.4",
|
|
50
|
-
"styled-components": "^6.1.11",
|
|
51
|
-
"typescript": "^5.2.2",
|
|
52
|
-
"vite": "^5.2.0",
|
|
53
|
-
"vite-plugin-dts": "^3.9.1"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "livevegas-ui-kit",
|
|
3
|
+
"version": "1.0.46",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"main": "./dist/livevegas-ui-kit.umd.js",
|
|
9
|
+
"module": "./dist/livevegas-ui-kit.es.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json",
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/livevegas-ui-kit.es.d.ts",
|
|
14
|
+
"import": "./dist/livevegas-ui-kit.es.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "vite",
|
|
19
|
+
"build": "tsc && vite build",
|
|
20
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
21
|
+
"preview": "vite preview",
|
|
22
|
+
"storybook": "storybook dev -p 6006",
|
|
23
|
+
"build-storybook": "storybook build"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@microsoft/signalr": "^8.0.0",
|
|
27
|
+
"react": "^18.2.0",
|
|
28
|
+
"react-dom": "^18.2.0"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@chromatic-com/storybook": "^1.5.0",
|
|
32
|
+
"@storybook/addon-essentials": "^8.1.4",
|
|
33
|
+
"@storybook/addon-interactions": "^8.1.4",
|
|
34
|
+
"@storybook/addon-links": "^8.1.4",
|
|
35
|
+
"@storybook/addon-onboarding": "^8.1.4",
|
|
36
|
+
"@storybook/blocks": "^8.1.4",
|
|
37
|
+
"@storybook/react": "^8.1.4",
|
|
38
|
+
"@storybook/react-vite": "^8.1.4",
|
|
39
|
+
"@storybook/test": "^8.1.4",
|
|
40
|
+
"@types/react": "^18.2.66",
|
|
41
|
+
"@types/react-dom": "^18.2.22",
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
43
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
44
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
45
|
+
"eslint": "^8.57.0",
|
|
46
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
47
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
48
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
49
|
+
"storybook": "^8.1.4",
|
|
50
|
+
"styled-components": "^6.1.11",
|
|
51
|
+
"typescript": "^5.2.2",
|
|
52
|
+
"vite": "^5.2.0",
|
|
53
|
+
"vite-plugin-dts": "^3.9.1"
|
|
54
|
+
}
|
|
55
|
+
}
|