@particle-network/ui-native 0.3.0-beta.3 → 0.3.0-beta.5

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.
@@ -91,7 +91,7 @@ export interface TextProps extends RNTextProps, UseBoxProps {
91
91
  * | warning | #FF9821 | #FF9821 |
92
92
  * | gold | #FFB800 | #F38300 |
93
93
  */
94
- color?: UXForegroundColor;
94
+ color?: UXForegroundColor | `#${string}`;
95
95
  lineHeight?: TextLineHeight;
96
96
  align?: TextAlign;
97
97
  underlineStyle?: TextStyle['textDecorationStyle'];
@@ -1,10 +1,11 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { useEffect, useRef, useState } from "react";
3
- import { useColors } from "../../hooks/index.js";
3
+ import { useColors, useMs } from "../../hooks/index.js";
4
4
  import { Square } from "../layout/Square.js";
5
5
  import { SpinnerIcon } from "./SpinnerIcon.js";
6
6
  const UXSpinner = ({ size = 18, color = 'primary', duration = 1000, ...restProps })=>{
7
7
  const { getColor } = useColors();
8
+ const { ms } = useMs();
8
9
  const [currentIndex, setCurrentIndex] = useState(0);
9
10
  const animationRef = useRef(null);
10
11
  const actualColor = getColor(color);
@@ -22,7 +23,7 @@ const UXSpinner = ({ size = 18, color = 'primary', duration = 1000, ...restProps
22
23
  duration
23
24
  ]);
24
25
  return /*#__PURE__*/ jsx(Square, {
25
- size: size,
26
+ size: ms(size),
26
27
  ...restProps,
27
28
  children: /*#__PURE__*/ jsx(SpinnerIcon, {
28
29
  width: size,
@@ -1,61 +1,20 @@
1
- import * as __WEBPACK_EXTERNAL_MODULE__fail_js_ca7b5988__ from "./fail.js";
2
- import * as __WEBPACK_EXTERNAL_MODULE__success_js_b4524adb__ from "./success.js";
3
1
  import { jsx } from "react/jsx-runtime";
4
2
  import "react";
5
- import lottie_react_native from "lottie-react-native";
6
- import { Square } from "../layout/Square.js";
7
3
  import { UXSpinner } from "../UXSpinner/index.js";
8
- import { useMs } from "../../hooks/index.js";
9
- var __webpack_modules__ = {
10
- "./fail.json": function(module) {
11
- module.exports = __WEBPACK_EXTERNAL_MODULE__fail_js_ca7b5988__;
12
- },
13
- "./success.json": function(module) {
14
- module.exports = __WEBPACK_EXTERNAL_MODULE__success_js_b4524adb__;
15
- }
16
- };
17
- var __webpack_module_cache__ = {};
18
- function __webpack_require__(moduleId) {
19
- var cachedModule = __webpack_module_cache__[moduleId];
20
- if (void 0 !== cachedModule) return cachedModule.exports;
21
- var module = __webpack_module_cache__[moduleId] = {
22
- exports: {}
23
- };
24
- __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
25
- return module.exports;
26
- }
4
+ import { Icon } from "../../icons/index.js";
27
5
  const ToastIcon = ({ type })=>{
28
- const { ms } = useMs();
29
6
  if ('loading' === type) return /*#__PURE__*/ jsx(UXSpinner, {
30
- size: ms(18)
7
+ size: 18
31
8
  });
32
- if ('success' === type) return /*#__PURE__*/ jsx(Square, {
33
- size: ms(18),
34
- children: /*#__PURE__*/ jsx(lottie_react_native, {
35
- autoPlay: true,
36
- source: __webpack_require__("./success.json"),
37
- loop: false,
38
- style: {
39
- width: ms(18),
40
- height: ms(18),
41
- backgroundColor: 'transparent'
42
- },
43
- resizeMode: "contain"
44
- })
9
+ if ('success' === type) return /*#__PURE__*/ jsx(Icon, {
10
+ name: "circle-check",
11
+ color: "success",
12
+ size: 18
45
13
  });
46
- if ('error' === type) return /*#__PURE__*/ jsx(Square, {
47
- size: ms(18),
48
- children: /*#__PURE__*/ jsx(lottie_react_native, {
49
- autoPlay: true,
50
- source: __webpack_require__("./fail.json"),
51
- loop: false,
52
- style: {
53
- width: ms(18),
54
- height: ms(18),
55
- backgroundColor: 'transparent'
56
- },
57
- resizeMode: "contain"
58
- })
14
+ if ('error' === type) return /*#__PURE__*/ jsx(Icon, {
15
+ name: "circle-close",
16
+ color: "danger",
17
+ size: 18
59
18
  });
60
19
  return null;
61
20
  };
@@ -5,6 +5,7 @@ const toast = {
5
5
  UXToast.show({
6
6
  type: 'success',
7
7
  text1: message,
8
+ visibilityTime: 4000,
8
9
  ...options
9
10
  });
10
11
  },
@@ -12,6 +13,7 @@ const toast = {
12
13
  UXToast.show({
13
14
  type: 'error',
14
15
  text1: message,
16
+ visibilityTime: 4000,
15
17
  ...options
16
18
  });
17
19
  },
@@ -154,31 +154,31 @@ export interface UseBoxProps {
154
154
  * | warning | #FF9821 | #FF9821 |
155
155
  * | gold | #FFB800 | #F38300 |
156
156
  */
157
- borderColor?: UXColor;
157
+ borderColor?: UXColor | `#${string}`;
158
158
  /**
159
159
  * Shorthand for the `borderTopColor` style property.
160
160
  */
161
- borderTopColor?: UXColor;
161
+ borderTopColor?: UXColor | `#${string}`;
162
162
  /**
163
163
  * Shorthand for the `borderRightColor` style property.
164
164
  */
165
- borderRightColor?: UXColor;
165
+ borderRightColor?: UXColor | `#${string}`;
166
166
  /**
167
167
  * Shorthand for the `borderBottomColor` style property.
168
168
  */
169
- borderBottomColor?: UXColor;
169
+ borderBottomColor?: UXColor | `#${string}`;
170
170
  /**
171
171
  * Shorthand for the `borderLeftColor` style property.
172
172
  */
173
- borderLeftColor?: UXColor;
173
+ borderLeftColor?: UXColor | `#${string}`;
174
174
  /**
175
175
  * Shorthand for the `borderStartColor` style property.
176
176
  */
177
- borderStartColor?: UXColor;
177
+ borderStartColor?: UXColor | `#${string}`;
178
178
  /**
179
179
  * Shorthand for the `borderEndColor` style property.
180
180
  */
181
- borderEndColor?: UXColor;
181
+ borderEndColor?: UXColor | `#${string}`;
182
182
  /**
183
183
  * Shorthand for the `borderRadius` style property.
184
184
  */
@@ -271,7 +271,7 @@ export interface UseBoxProps {
271
271
  * | warning | #FF9821 | #FF9821 |
272
272
  * | gold | #FFB800 | #F38300 |
273
273
  */
274
- bg?: UXColor;
274
+ bg?: UXColor | `#${string}`;
275
275
  /**
276
276
  * 背景色透明度
277
277
  * @example bgOpacity={0.2}
@@ -1,12 +1,14 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from "react";
3
+ import { useMs } from "../../hooks/index.js";
3
4
  import { Center } from "./Center.js";
4
5
  const Square = /*#__PURE__*/ forwardRef((props, ref)=>{
6
+ const { ms } = useMs();
5
7
  const { size, ...restProps } = props;
6
8
  return /*#__PURE__*/ jsx(Center, {
7
9
  ref: ref,
8
- h: size,
9
- w: size,
10
+ h: size ? ms(size) : void 0,
11
+ w: size ? ms(size) : void 0,
10
12
  ...restProps
11
13
  });
12
14
  });
@@ -3,5 +3,5 @@ import { type UXColor } from '@particle-network/ui-shared';
3
3
  * 颜色工具 Hook
4
4
  */
5
5
  export declare function useColors(): {
6
- getColor: (name?: UXColor, opacity?: number) => string | undefined;
6
+ getColor: (name?: UXColor | `#${string}`, opacity?: number) => string | undefined;
7
7
  };
@@ -5,6 +5,7 @@ function useColors() {
5
5
  const theme = useTheme();
6
6
  const getColor = useCallback((name, opacity)=>{
7
7
  if (!name) return;
8
+ if (name.startsWith('#')) return name;
8
9
  const colorValue = theme.colors[name];
9
10
  if ('number' == typeof opacity && opacity >= 0 && opacity <= 1) return setColorWithOpacity(colorValue, opacity);
10
11
  return colorValue;
@@ -1,15 +1,18 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import "react";
3
3
  import react_native_svg, { Circle, ClipPath, Defs, G, Path } from "react-native-svg";
4
- import { useColors } from "../hooks/index.js";
4
+ import { useColors, useMs } from "../hooks/index.js";
5
5
  const Icon = ({ name, size = 16, color = 'default', ...props })=>{
6
6
  const { getColor } = useColors();
7
7
  const colorValue = getColor(color);
8
+ const { ms } = useMs();
9
+ const width = ms(size);
10
+ const height = ms(size);
8
11
  switch(name){
9
12
  case 'check':
10
13
  return /*#__PURE__*/ jsx(react_native_svg, {
11
- width: size,
12
- height: size,
14
+ width: width,
15
+ height: height,
13
16
  viewBox: "0 0 24 24",
14
17
  fill: "none",
15
18
  ...props,
@@ -20,8 +23,8 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
20
23
  });
21
24
  case 'close':
22
25
  return /*#__PURE__*/ jsx(react_native_svg, {
23
- width: size,
24
- height: size,
26
+ width: width,
27
+ height: height,
25
28
  viewBox: "0 0 24 24",
26
29
  fill: "none",
27
30
  ...props,
@@ -33,9 +36,9 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
33
36
  case 'dot':
34
37
  return /*#__PURE__*/ jsx(react_native_svg, {
35
38
  fill: "none",
36
- height: size,
39
+ height: height,
37
40
  viewBox: "0 0 5 5",
38
- width: size,
41
+ width: width,
39
42
  ...props,
40
43
  children: /*#__PURE__*/ jsx(Circle, {
41
44
  cx: 2.5,
@@ -47,9 +50,9 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
47
50
  case 'radioOff':
48
51
  return /*#__PURE__*/ jsx(react_native_svg, {
49
52
  fill: "none",
50
- height: size,
53
+ height: height,
51
54
  viewBox: "0 0 16 16",
52
- width: size,
55
+ width: width,
53
56
  ...props,
54
57
  children: /*#__PURE__*/ jsx(Path, {
55
58
  d: "M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14Z",
@@ -60,9 +63,9 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
60
63
  case 'radioOn':
61
64
  return /*#__PURE__*/ jsxs(react_native_svg, {
62
65
  fill: "none",
63
- height: size,
66
+ height: height,
64
67
  viewBox: "0 0 16 16",
65
- width: size,
68
+ width: width,
66
69
  ...props,
67
70
  children: [
68
71
  /*#__PURE__*/ jsxs(G, {
@@ -92,8 +95,8 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
92
95
  });
93
96
  case 'question':
94
97
  return /*#__PURE__*/ jsx(react_native_svg, {
95
- width: size,
96
- height: size,
98
+ width: width,
99
+ height: height,
97
100
  viewBox: "0 0 24 24",
98
101
  fill: "none",
99
102
  ...props,
@@ -104,8 +107,8 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
104
107
  });
105
108
  case 'arrow-right':
106
109
  return /*#__PURE__*/ jsx(react_native_svg, {
107
- width: size,
108
- height: size,
110
+ width: width,
111
+ height: height,
109
112
  viewBox: "0 0 24 24",
110
113
  fill: "none",
111
114
  ...props,
@@ -116,8 +119,8 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
116
119
  });
117
120
  case 'empty':
118
121
  return /*#__PURE__*/ jsxs(react_native_svg, {
119
- width: size,
120
- height: size,
122
+ width: width,
123
+ height: height,
121
124
  viewBox: "0 0 24 24",
122
125
  fill: "none",
123
126
  ...props,
@@ -138,6 +141,30 @@ const Icon = ({ name, size = 16, color = 'default', ...props })=>{
138
141
  })
139
142
  ]
140
143
  });
144
+ case 'circle-check':
145
+ return /*#__PURE__*/ jsx(react_native_svg, {
146
+ width: width,
147
+ height: height,
148
+ viewBox: "0 0 24 24",
149
+ fill: "none",
150
+ ...props,
151
+ children: /*#__PURE__*/ jsx(Path, {
152
+ d: "M8.11523 2.78809C10.5572 1.75605 13.3086 1.73732 15.7646 2.73535C18.2207 3.73341 20.1802 5.66673 21.2119 8.11035C22.2435 10.5539 22.2635 13.3077 21.2666 15.7656C20.2697 18.2236 18.3371 20.1849 15.8955 21.2178C14.6648 21.7377 13.3418 22.0037 12.0059 22C9.69812 22.0037 7.45957 21.2076 5.67188 19.7471C3.88435 18.2866 2.65754 16.2516 2.19922 13.9883C1.7409 11.7249 2.07981 9.37274 3.1582 7.33105C4.2367 5.28932 5.98815 3.68381 8.11523 2.78809ZM12.0059 3.57031C7.35309 3.57031 3.58008 7.34669 3.58008 12.0029C3.58018 16.6591 7.35316 20.4346 12.0059 20.4346C16.6584 20.4344 20.4315 16.659 20.4316 12.0029C20.4316 7.34677 16.6585 3.57045 12.0059 3.57031ZM17.5283 7.82812C17.7373 7.82812 17.9382 7.91072 18.0859 8.05859C18.2336 8.20645 18.3164 8.40719 18.3164 8.61621C18.3164 8.82524 18.2336 9.02598 18.0859 9.17383L10.8916 16.3535C10.7472 16.501 10.55 16.5859 10.3438 16.5889C10.1376 16.5859 9.94121 16.5009 9.79688 16.3535L6.04297 12.5977C5.89524 12.4498 5.81254 12.2491 5.8125 12.04C5.8125 11.831 5.89526 11.6303 6.04297 11.4824C6.19074 11.3345 6.39161 11.251 6.60059 11.251C6.80942 11.2511 7.00955 11.3346 7.15723 11.4824L10.3438 14.6904L16.9707 8.05859C17.1185 7.91072 17.3193 7.82813 17.5283 7.82812Z",
153
+ fill: colorValue
154
+ })
155
+ });
156
+ case 'circle-close':
157
+ return /*#__PURE__*/ jsx(react_native_svg, {
158
+ width: width,
159
+ height: height,
160
+ viewBox: "0 0 24 24",
161
+ fill: "none",
162
+ ...props,
163
+ children: /*#__PURE__*/ jsx(Path, {
164
+ d: "M11.9961 2C13.3104 1.99552 14.6127 2.25229 15.8271 2.75488C17.0417 3.25755 18.1445 3.99662 19.0713 4.92871C20.945 6.80517 21.998 9.34824 21.998 12C21.998 14.6519 20.9451 17.1957 19.0713 19.0723C17.6723 20.4706 15.8902 21.4231 13.9502 21.8086C12.0101 22.1941 9.99917 21.9956 8.17188 21.2383C6.34451 20.4809 4.78223 19.1986 3.68359 17.5537C2.58506 15.9089 1.99967 13.975 2 11.9971C1.99906 10.684 2.25674 9.38319 2.75879 8.16992C3.26083 6.95672 3.99737 5.85419 4.92578 4.92578C5.85419 3.99744 6.95676 3.26079 8.16992 2.75879C9.38303 2.25687 10.6833 1.99908 11.9961 2ZM13.6377 3.74512C12.0059 3.42069 10.3144 3.58787 8.77734 4.22461C7.24024 4.86139 5.92628 5.93984 5.00195 7.32324C4.07772 8.70662 3.58398 10.3334 3.58398 11.9971C3.58406 13.6608 4.07768 15.2876 5.00195 16.6709C5.92625 18.0542 7.24037 19.1318 8.77734 19.7686C10.3144 20.4053 12.0059 20.5725 13.6377 20.248C15.2694 19.9236 16.7688 19.1226 17.9453 17.9463C19.5214 16.3677 20.4071 14.2278 20.4072 11.9971C20.4072 9.7663 19.5215 7.62649 17.9453 6.04785C16.7687 4.87144 15.2696 4.06962 13.6377 3.74512ZM8.41602 7.62109C8.62657 7.62113 8.82857 7.70473 8.97754 7.85352L11.9961 10.875L15.0127 7.85352C15.1618 7.70593 15.3634 7.62305 15.5732 7.62305C15.7831 7.62309 15.9847 7.70586 16.1338 7.85352C16.2087 7.9267 16.2679 8.01483 16.3086 8.11133C16.3493 8.20779 16.3709 8.31133 16.3711 8.41602C16.3719 8.52042 16.3514 8.62422 16.3115 8.7207C16.2716 8.81702 16.2129 8.90432 16.1387 8.97754L13.1201 11.9961L16.1387 15.0166C16.2124 15.0902 16.2706 15.1782 16.3105 15.2744C16.3505 15.3706 16.3711 15.474 16.3711 15.5781C16.3711 15.6822 16.3504 15.7857 16.3105 15.8818C16.2706 15.9779 16.2123 16.0652 16.1387 16.1387C16.0652 16.2123 15.9779 16.2706 15.8818 16.3105C15.7857 16.3504 15.6822 16.3711 15.5781 16.3711C15.474 16.3711 15.3706 16.3505 15.2744 16.3105C15.1782 16.2706 15.0902 16.2124 15.0166 16.1387L11.9961 13.1201L8.97754 16.1387C8.8283 16.2871 8.62649 16.3701 8.41602 16.3701C8.2054 16.3701 8.00281 16.2872 7.85352 16.1387C7.70585 15.9896 7.62313 15.788 7.62305 15.5781C7.62305 15.3681 7.70568 15.1658 7.85352 15.0166L10.875 11.9961L7.85352 8.97754C7.70473 8.82857 7.62113 8.62657 7.62109 8.41602C7.62109 8.20524 7.70448 8.00255 7.85352 7.85352C8.00255 7.70448 8.20524 7.62109 8.41602 7.62109Z",
165
+ fill: colorValue
166
+ })
167
+ });
141
168
  default:
142
169
  return null;
143
170
  }
@@ -1,7 +1,7 @@
1
1
  import type { SvgProps } from 'react-native-svg';
2
2
  import type { UXForegroundColor } from '@particle-network/ui-shared';
3
3
  export type IconProps = SvgProps & {
4
- name: 'check' | 'close' | 'dot' | 'radioOff' | 'radioOn' | 'question' | 'arrow-right' | 'empty';
4
+ name: 'check' | 'close' | 'dot' | 'radioOff' | 'radioOn' | 'question' | 'arrow-right' | 'empty' | 'circle-check' | 'circle-close';
5
5
  size?: number;
6
6
  color?: UXForegroundColor;
7
7
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@particle-network/ui-native",
3
- "version": "0.3.0-beta.3",
3
+ "version": "0.3.0-beta.5",
4
4
  "main": "./entry.js",
5
5
  "react-native": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -37,16 +37,15 @@
37
37
  ],
38
38
  "author": "UniversalX",
39
39
  "dependencies": {
40
- "@lottiefiles/dotlottie-react": "^0.16.2",
41
40
  "ahooks": "^3.9.4",
42
41
  "dayjs": "^1.11.19",
43
42
  "deepmerge": "^4.3.1",
44
43
  "expo-haptics": "^15.0.7",
45
- "lottie-react-native": "^7.3.4",
46
44
  "react-native-paper": "^5.14.5",
47
45
  "react-native-size-matters": "^0.4.2",
48
46
  "react-native-toast-message": "^2.3.3",
49
- "@particle-network/ui-shared": "0.2.0-beta.1"
47
+ "@particle-network/icons": "0.3.0-beta.6",
48
+ "@particle-network/ui-shared": "0.2.0-beta.3"
50
49
  },
51
50
  "devDependencies": {
52
51
  "@babel/core": "^7.24.0",
@@ -91,8 +90,8 @@
91
90
  "vite": "^6.3.5",
92
91
  "zustand": "^5.0.8",
93
92
  "@particle-network/eslint-config": "0.3.0",
94
- "@particle-network/icons": "0.3.0-beta.4",
95
- "@particle-network/lintstaged-config": "0.1.0"
93
+ "@particle-network/lintstaged-config": "0.1.0",
94
+ "@particle-network/icons": "0.3.0-beta.6"
96
95
  },
97
96
  "overrides": {
98
97
  "react-docgen-typescript": "2.2.2",
@@ -1,14 +0,0 @@
1
- var fail_namespaceObject = JSON.parse('{"v":"5.9.4","fr":30,"ip":0,"op":22,"w":80,"h":80,"nm":"nm_a","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"nm_b","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":2,"s":[0]},{"t":21,"s":[180]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[60,60,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":2,"op":22,"st":-71,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"nm_c","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":90,"ix":10},"p":{"a":0,"k":[60,60,0],"ix":2,"l":2},"a":{"a":0,"k":[-540.031,0.344,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-555.438,-15.063],[-524.625,15.75]],"c":false},"ix":2},"nm":"nm_e","mn":"mn_b","hd":false},{"ty":"st","c":{"a":0,"k":[0.964691162109,0.266662597656,0.219604492188,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"nm_f","mn":"mn_c","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"nm_g"}],"nm":"nm_d","np":3,"cix":2,"bm":0,"ix":1,"mn":"mn_a","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.405],"y":[1.003]},"o":{"x":[0.623],"y":[0]},"t":2,"s":[50]},{"t":21,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.423],"y":[0.983]},"o":{"x":[0.604],"y":[-0.004]},"t":2,"s":[50]},{"t":21,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"nm_h","mn":"mn_d","hd":false}],"ip":2,"op":22,"st":-77,"ct":1,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"nm_i","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[60,60,0],"ix":2,"l":2},"a":{"a":0,"k":[-540.031,0.344,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-555.438,-15.063],[-524.625,15.75]],"c":false},"ix":2},"nm":"nm_e","mn":"mn_b","hd":false},{"ty":"st","c":{"a":0,"k":[0.964691162109,0.266662597656,0.219604492188,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"nm_f","mn":"mn_c","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"nm_g"}],"nm":"nm_d","np":3,"cix":2,"bm":0,"ix":1,"mn":"mn_a","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.405],"y":[1.003]},"o":{"x":[0.623],"y":[0]},"t":2,"s":[50]},{"t":21,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.423],"y":[0.983]},"o":{"x":[0.604],"y":[-0.004]},"t":2,"s":[50]},{"t":21,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"nm_h","mn":"mn_d","hd":false}],"ip":2,"op":22,"st":-77,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"nm_j","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.218],"y":[0.983]},"o":{"x":[0.682],"y":[-0.008]},"t":0,"s":[0]},{"t":21,"s":[-64]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[-523.5,0.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[64.5,64.5],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"nm_l","mn":"mn_e","hd":false},{"ty":"st","c":{"a":0,"k":[0.964691162109,0.266662597656,0.219604492188,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"nm_f","mn":"mn_c","hd":false},{"ty":"tr","p":{"a":0,"k":[-523.5,0.25],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"nm_g"}],"nm":"nm_k","np":3,"cix":2,"bm":0,"ix":1,"mn":"mn_a","hd":false},{"ty":"tm","s":{"a":0,"k":100,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.256],"y":[0.999]},"o":{"x":[0.646],"y":[0.004]},"t":0,"s":[100]},{"t":21,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"nm_h","mn":"mn_d","hd":false}],"ip":0,"op":22,"st":-74,"ct":1,"bm":0}],"markers":[],"_compressed":true}');
2
- var __webpack_exports___compressed = fail_namespaceObject._compressed;
3
- var __webpack_exports__assets = fail_namespaceObject.assets;
4
- var __webpack_exports__ddd = fail_namespaceObject.ddd;
5
- var __webpack_exports__fr = fail_namespaceObject.fr;
6
- var __webpack_exports__h = fail_namespaceObject.h;
7
- var __webpack_exports__ip = fail_namespaceObject.ip;
8
- var __webpack_exports__layers = fail_namespaceObject.layers;
9
- var __webpack_exports__markers = fail_namespaceObject.markers;
10
- var __webpack_exports__nm = fail_namespaceObject.nm;
11
- var __webpack_exports__op = fail_namespaceObject.op;
12
- var __webpack_exports__v = fail_namespaceObject.v;
13
- var __webpack_exports__w = fail_namespaceObject.w;
14
- export { __webpack_exports___compressed as _compressed, __webpack_exports__assets as assets, __webpack_exports__ddd as ddd, __webpack_exports__fr as fr, __webpack_exports__h as h, __webpack_exports__ip as ip, __webpack_exports__layers as layers, __webpack_exports__markers as markers, __webpack_exports__nm as nm, __webpack_exports__op as op, __webpack_exports__v as v, __webpack_exports__w as w };
@@ -1,14 +0,0 @@
1
- var success_namespaceObject = JSON.parse('{"v":"5.9.4","fr":30,"ip":0,"op":38,"w":80,"h":80,"nm":"nm_a","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"nm_b","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[-618.094,-0.5,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-637.75,-2.875],[-623.063,11.375],[-598.438,-12.375]],"c":false},"ix":2},"nm":"nm_d","mn":"mn_b","hd":false},{"ty":"st","c":{"a":0,"k":[0.180389404297,0.772552490234,0.329406738281,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"nm_e","mn":"mn_c","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"nm_f"}],"nm":"nm_c","np":3,"cix":2,"bm":0,"ix":1,"mn":"mn_a","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.265],"y":[0.998]},"o":{"x":[0.718],"y":[0]},"t":19,"s":[0]},{"t":32,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"nm_g","mn":"mn_d","hd":false}],"ip":19,"op":1091,"st":-55,"ct":1,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"nm_h","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.218],"y":[0.983]},"o":{"x":[0.682],"y":[-0.008]},"t":0,"s":[0]},{"t":21,"s":[-64]}],"ix":10},"p":{"a":0,"k":[40,40,0],"ix":2,"l":2},"a":{"a":0,"k":[-523.5,0.25,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[64.5,64.5],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"nm_j","mn":"mn_e","hd":false},{"ty":"st","c":{"a":0,"k":[0.180389404297,0.772552490234,0.329406738281,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":6,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"nm_e","mn":"mn_c","hd":false},{"ty":"tr","p":{"a":0,"k":[-523.5,0.25],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"nm_f"}],"nm":"nm_i","np":3,"cix":2,"bm":0,"ix":1,"mn":"mn_a","hd":false},{"ty":"tm","s":{"a":0,"k":100,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.256],"y":[0.999]},"o":{"x":[0.646],"y":[0.004]},"t":0,"s":[100]},{"t":21,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"nm_g","mn":"mn_d","hd":false}],"ip":0,"op":1072,"st":-74,"ct":1,"bm":0}],"markers":[{"tm":0,"cm":"","dr":0},{"tm":38,"cm":"","dr":0}],"_compressed":true}');
2
- var __webpack_exports___compressed = success_namespaceObject._compressed;
3
- var __webpack_exports__assets = success_namespaceObject.assets;
4
- var __webpack_exports__ddd = success_namespaceObject.ddd;
5
- var __webpack_exports__fr = success_namespaceObject.fr;
6
- var __webpack_exports__h = success_namespaceObject.h;
7
- var __webpack_exports__ip = success_namespaceObject.ip;
8
- var __webpack_exports__layers = success_namespaceObject.layers;
9
- var __webpack_exports__markers = success_namespaceObject.markers;
10
- var __webpack_exports__nm = success_namespaceObject.nm;
11
- var __webpack_exports__op = success_namespaceObject.op;
12
- var __webpack_exports__v = success_namespaceObject.v;
13
- var __webpack_exports__w = success_namespaceObject.w;
14
- export { __webpack_exports___compressed as _compressed, __webpack_exports__assets as assets, __webpack_exports__ddd as ddd, __webpack_exports__fr as fr, __webpack_exports__h as h, __webpack_exports__ip as ip, __webpack_exports__layers as layers, __webpack_exports__markers as markers, __webpack_exports__nm as nm, __webpack_exports__op as op, __webpack_exports__v as v, __webpack_exports__w as w };