@availity/mui-empty-state 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +61 -0
- package/__mocks__/fileMock.js +1 -0
- package/dist/404-Page-Not-Found_Gray-COTPFMFP.svg +25 -0
- package/dist/Content-Loading_Gray-AGUNV3ID.svg +94 -0
- package/dist/Error_Gray-H3D5B6BV.svg +258 -0
- package/dist/No-Data_Gray-JVSMIDTK.svg +215 -0
- package/dist/No-Search-Found_Gray-4OSPRMF4.svg +238 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +125 -0
- package/dist/index.mjs +91 -0
- package/introduction.mdx +7 -0
- package/jest.config.js +12 -0
- package/package.json +51 -0
- package/project.json +42 -0
- package/src/assets/404-Page-Not-Found_Gray.svg +25 -0
- package/src/assets/Content-Loading_Gray.svg +94 -0
- package/src/assets/Error_Gray.svg +258 -0
- package/src/assets/No-Data_Gray.svg +215 -0
- package/src/assets/No-Search-Found_Gray.svg +238 -0
- package/src/assets/custom.d.ts +5 -0
- package/src/index.ts +2 -0
- package/src/lib/EmptyState.stories.tsx +131 -0
- package/src/lib/EmptyState.test.tsx +13 -0
- package/src/lib/EmptyState.tsx +44 -0
- package/src/lib/EmptyStateImage.stories.tsx +48 -0
- package/src/lib/EmptyStateImage.test.tsx +9 -0
- package/src/lib/EmptyStateImage.tsx +38 -0
- package/tsconfig.json +5 -0
- package/tsconfig.spec.json +10 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
|
+
mod
|
|
23
|
+
));
|
|
24
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
25
|
+
|
|
26
|
+
// src/index.ts
|
|
27
|
+
var src_exports = {};
|
|
28
|
+
__export(src_exports, {
|
|
29
|
+
EmptyState: () => EmptyState,
|
|
30
|
+
EmptyStateImage: () => EmptyStateImage
|
|
31
|
+
});
|
|
32
|
+
module.exports = __toCommonJS(src_exports);
|
|
33
|
+
|
|
34
|
+
// src/lib/EmptyState.tsx
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_material2 = require("@mui/material");
|
|
37
|
+
var import_mui_layout2 = require("@availity/mui-layout");
|
|
38
|
+
|
|
39
|
+
// src/lib/EmptyStateImage.tsx
|
|
40
|
+
var import_react = require("react");
|
|
41
|
+
var import_material = require("@mui/material");
|
|
42
|
+
var import_mui_layout = require("@availity/mui-layout");
|
|
43
|
+
|
|
44
|
+
// src/assets/404-Page-Not-Found_Gray.svg
|
|
45
|
+
var Page_Not_Found_Gray_default = "./404-Page-Not-Found_Gray-COTPFMFP.svg";
|
|
46
|
+
|
|
47
|
+
// src/assets/Content-Loading_Gray.svg
|
|
48
|
+
var Content_Loading_Gray_default = "./Content-Loading_Gray-AGUNV3ID.svg";
|
|
49
|
+
|
|
50
|
+
// src/assets/Error_Gray.svg
|
|
51
|
+
var Error_Gray_default = "./Error_Gray-H3D5B6BV.svg";
|
|
52
|
+
|
|
53
|
+
// src/assets/No-Data_Gray.svg
|
|
54
|
+
var No_Data_Gray_default = "./No-Data_Gray-JVSMIDTK.svg";
|
|
55
|
+
|
|
56
|
+
// src/assets/No-Search-Found_Gray.svg
|
|
57
|
+
var No_Search_Found_Gray_default = "./No-Search-Found_Gray-4OSPRMF4.svg";
|
|
58
|
+
|
|
59
|
+
// src/lib/EmptyStateImage.tsx
|
|
60
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
61
|
+
var EmptyStateImages = {
|
|
62
|
+
PageNotFound: { src: Page_Not_Found_Gray_default, alt: "Page Not Found" },
|
|
63
|
+
ContentLoading: { src: Content_Loading_Gray_default, alt: "Content Loading" },
|
|
64
|
+
Error: { src: Error_Gray_default, alt: "Error" },
|
|
65
|
+
NoData: { src: No_Data_Gray_default, alt: "No Data" },
|
|
66
|
+
NoSearchFound: { src: No_Search_Found_Gray_default, alt: "No Search Found" }
|
|
67
|
+
};
|
|
68
|
+
var EmptyStateImageContainer = (0, import_material.styled)(import_mui_layout.Box, {
|
|
69
|
+
name: "AvEmptyState",
|
|
70
|
+
slot: "image",
|
|
71
|
+
overridesResolver: (props, styles) => styles.image
|
|
72
|
+
})({ fontSize: "112px" });
|
|
73
|
+
var EmptyStateImage = (0, import_react.forwardRef)((props, ref) => {
|
|
74
|
+
const { variant = "NoSearchFound", ...rest } = props;
|
|
75
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(EmptyStateImageContainer, {
|
|
76
|
+
ref,
|
|
77
|
+
"aria-hidden": true,
|
|
78
|
+
...rest,
|
|
79
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("img", {
|
|
80
|
+
src: EmptyStateImages[variant].src,
|
|
81
|
+
alt: EmptyStateImages[variant].alt
|
|
82
|
+
})
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
// src/lib/EmptyState.tsx
|
|
87
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
88
|
+
var EmptyStateContainer = (0, import_material2.styled)(import_mui_layout2.Stack, {
|
|
89
|
+
name: "AvEmptyState",
|
|
90
|
+
slot: "root",
|
|
91
|
+
overridesResolver: (props, styles) => styles.root
|
|
92
|
+
})({});
|
|
93
|
+
var EmptyState = React.forwardRef((props, ref) => {
|
|
94
|
+
const {
|
|
95
|
+
children,
|
|
96
|
+
variant,
|
|
97
|
+
spacing = 2,
|
|
98
|
+
alignItems = "center",
|
|
99
|
+
textAlign = "center",
|
|
100
|
+
maxWidth = "320px",
|
|
101
|
+
padding = "1rem",
|
|
102
|
+
...containerProps
|
|
103
|
+
} = props;
|
|
104
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(EmptyStateContainer, {
|
|
105
|
+
className: "AvEmptyState-root",
|
|
106
|
+
spacing,
|
|
107
|
+
alignItems,
|
|
108
|
+
textAlign,
|
|
109
|
+
maxWidth,
|
|
110
|
+
padding,
|
|
111
|
+
...containerProps,
|
|
112
|
+
ref,
|
|
113
|
+
children: [
|
|
114
|
+
variant ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(EmptyStateImage, {
|
|
115
|
+
variant
|
|
116
|
+
}) : null,
|
|
117
|
+
children
|
|
118
|
+
]
|
|
119
|
+
});
|
|
120
|
+
});
|
|
121
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
122
|
+
0 && (module.exports = {
|
|
123
|
+
EmptyState,
|
|
124
|
+
EmptyStateImage
|
|
125
|
+
});
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
// src/lib/EmptyState.tsx
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { styled as styled2 } from "@mui/material";
|
|
4
|
+
import { Stack } from "@availity/mui-layout";
|
|
5
|
+
|
|
6
|
+
// src/lib/EmptyStateImage.tsx
|
|
7
|
+
import { forwardRef } from "react";
|
|
8
|
+
import { styled } from "@mui/material";
|
|
9
|
+
import { Box } from "@availity/mui-layout";
|
|
10
|
+
|
|
11
|
+
// src/assets/404-Page-Not-Found_Gray.svg
|
|
12
|
+
var Page_Not_Found_Gray_default = "./404-Page-Not-Found_Gray-COTPFMFP.svg";
|
|
13
|
+
|
|
14
|
+
// src/assets/Content-Loading_Gray.svg
|
|
15
|
+
var Content_Loading_Gray_default = "./Content-Loading_Gray-AGUNV3ID.svg";
|
|
16
|
+
|
|
17
|
+
// src/assets/Error_Gray.svg
|
|
18
|
+
var Error_Gray_default = "./Error_Gray-H3D5B6BV.svg";
|
|
19
|
+
|
|
20
|
+
// src/assets/No-Data_Gray.svg
|
|
21
|
+
var No_Data_Gray_default = "./No-Data_Gray-JVSMIDTK.svg";
|
|
22
|
+
|
|
23
|
+
// src/assets/No-Search-Found_Gray.svg
|
|
24
|
+
var No_Search_Found_Gray_default = "./No-Search-Found_Gray-4OSPRMF4.svg";
|
|
25
|
+
|
|
26
|
+
// src/lib/EmptyStateImage.tsx
|
|
27
|
+
import { jsx } from "react/jsx-runtime";
|
|
28
|
+
var EmptyStateImages = {
|
|
29
|
+
PageNotFound: { src: Page_Not_Found_Gray_default, alt: "Page Not Found" },
|
|
30
|
+
ContentLoading: { src: Content_Loading_Gray_default, alt: "Content Loading" },
|
|
31
|
+
Error: { src: Error_Gray_default, alt: "Error" },
|
|
32
|
+
NoData: { src: No_Data_Gray_default, alt: "No Data" },
|
|
33
|
+
NoSearchFound: { src: No_Search_Found_Gray_default, alt: "No Search Found" }
|
|
34
|
+
};
|
|
35
|
+
var EmptyStateImageContainer = styled(Box, {
|
|
36
|
+
name: "AvEmptyState",
|
|
37
|
+
slot: "image",
|
|
38
|
+
overridesResolver: (props, styles) => styles.image
|
|
39
|
+
})({ fontSize: "112px" });
|
|
40
|
+
var EmptyStateImage = forwardRef((props, ref) => {
|
|
41
|
+
const { variant = "NoSearchFound", ...rest } = props;
|
|
42
|
+
return /* @__PURE__ */ jsx(EmptyStateImageContainer, {
|
|
43
|
+
ref,
|
|
44
|
+
"aria-hidden": true,
|
|
45
|
+
...rest,
|
|
46
|
+
children: /* @__PURE__ */ jsx("img", {
|
|
47
|
+
src: EmptyStateImages[variant].src,
|
|
48
|
+
alt: EmptyStateImages[variant].alt
|
|
49
|
+
})
|
|
50
|
+
});
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
// src/lib/EmptyState.tsx
|
|
54
|
+
import { jsx as jsx2, jsxs } from "react/jsx-runtime";
|
|
55
|
+
var EmptyStateContainer = styled2(Stack, {
|
|
56
|
+
name: "AvEmptyState",
|
|
57
|
+
slot: "root",
|
|
58
|
+
overridesResolver: (props, styles) => styles.root
|
|
59
|
+
})({});
|
|
60
|
+
var EmptyState = React.forwardRef((props, ref) => {
|
|
61
|
+
const {
|
|
62
|
+
children,
|
|
63
|
+
variant,
|
|
64
|
+
spacing = 2,
|
|
65
|
+
alignItems = "center",
|
|
66
|
+
textAlign = "center",
|
|
67
|
+
maxWidth = "320px",
|
|
68
|
+
padding = "1rem",
|
|
69
|
+
...containerProps
|
|
70
|
+
} = props;
|
|
71
|
+
return /* @__PURE__ */ jsxs(EmptyStateContainer, {
|
|
72
|
+
className: "AvEmptyState-root",
|
|
73
|
+
spacing,
|
|
74
|
+
alignItems,
|
|
75
|
+
textAlign,
|
|
76
|
+
maxWidth,
|
|
77
|
+
padding,
|
|
78
|
+
...containerProps,
|
|
79
|
+
ref,
|
|
80
|
+
children: [
|
|
81
|
+
variant ? /* @__PURE__ */ jsx2(EmptyStateImage, {
|
|
82
|
+
variant
|
|
83
|
+
}) : null,
|
|
84
|
+
children
|
|
85
|
+
]
|
|
86
|
+
});
|
|
87
|
+
});
|
|
88
|
+
export {
|
|
89
|
+
EmptyState,
|
|
90
|
+
EmptyStateImage
|
|
91
|
+
};
|
package/introduction.mdx
ADDED
package/jest.config.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const global = require('../../jest.config.global');
|
|
2
|
+
|
|
3
|
+
module.exports = {
|
|
4
|
+
...global,
|
|
5
|
+
displayName: 'empty-state',
|
|
6
|
+
coverageDirectory: '../../coverage/empty-state',
|
|
7
|
+
moduleNameMapper: {
|
|
8
|
+
...global.moduleNameMapper,
|
|
9
|
+
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
|
|
10
|
+
'<rootDir>/__mocks__/fileMock.js',
|
|
11
|
+
},
|
|
12
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@availity/mui-empty-state",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Availity MUI EmptyState Component - part of the @availity/element design system",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"typescript",
|
|
8
|
+
"availity",
|
|
9
|
+
"mui"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://availity.github.io/element/?path=/docs/components-empty-state-introduction--docs",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Availity/element/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/Availity/element.git",
|
|
18
|
+
"directory": "packages/empty-state"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"author": "Availity Developers <AVOSS@availity.com>",
|
|
22
|
+
"browser": "./dist/index.js",
|
|
23
|
+
"main": "./dist/index.js",
|
|
24
|
+
"module": "./dist/index.mjs",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
28
|
+
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
|
|
29
|
+
"clean": "rm -rf dist",
|
|
30
|
+
"clean:nm": "rm -rf node_modules",
|
|
31
|
+
"publish": "yarn npm publish --tolerate-republish --access public",
|
|
32
|
+
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@availity/mui-layout": "0.1.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@mui/material": "^5.11.9",
|
|
39
|
+
"react": "18.2.0",
|
|
40
|
+
"react-dom": "18.2.0",
|
|
41
|
+
"tsup": "^5.12.7",
|
|
42
|
+
"typescript": "^4.6.4"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"@mui/material": "^5.11.9",
|
|
46
|
+
"react": ">=16.3.0"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
}
|
|
51
|
+
}
|
package/project.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mui-empty-state",
|
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
+
"sourceRoot": "packages/empty-state/src",
|
|
5
|
+
"projectType": "library",
|
|
6
|
+
"tags": [],
|
|
7
|
+
"targets": {
|
|
8
|
+
"lint": {
|
|
9
|
+
"executor": "@nrwl/linter:eslint",
|
|
10
|
+
"options": {
|
|
11
|
+
"eslintConfig": ".eslintrc.json",
|
|
12
|
+
"lintFilePatterns": ["packages/empty-state/**/*.{js,ts}"],
|
|
13
|
+
"silent": false,
|
|
14
|
+
"fix": false,
|
|
15
|
+
"cache": true,
|
|
16
|
+
"cacheLocation": "./node_modules/.cache/empty-state/.eslintcache",
|
|
17
|
+
"maxWarnings": -1,
|
|
18
|
+
"quiet": false,
|
|
19
|
+
"noEslintrc": false,
|
|
20
|
+
"hasTypeAwareRules": true,
|
|
21
|
+
"cacheStrategy": "metadata"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"test": {
|
|
25
|
+
"executor": "@nrwl/jest:jest",
|
|
26
|
+
"outputs": ["coverage/empty-state"],
|
|
27
|
+
"options": {
|
|
28
|
+
"jestConfig": "packages/empty-state/jest.config.js",
|
|
29
|
+
"passWithNoTests": true
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"version": {
|
|
33
|
+
"executor": "@jscutlery/semver:version",
|
|
34
|
+
"options": {
|
|
35
|
+
"preset": "conventional",
|
|
36
|
+
"commitMessageFormat": "chore(${projectName}): release version ${version} [skip ci]",
|
|
37
|
+
"tagPrefix": "@availity/${projectName}@",
|
|
38
|
+
"trackDeps": true
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 144 144">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #fff;
|
|
7
|
+
stroke: #d7dae0;
|
|
8
|
+
stroke-linecap: round;
|
|
9
|
+
stroke-linejoin: round;
|
|
10
|
+
stroke-width: 4px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cls-2 {
|
|
14
|
+
fill: #d7dae0;
|
|
15
|
+
stroke-width: 0px;
|
|
16
|
+
}
|
|
17
|
+
</style>
|
|
18
|
+
</defs>
|
|
19
|
+
<circle class="cls-1" cx="72" cy="72" r="65.36"/>
|
|
20
|
+
<g>
|
|
21
|
+
<path class="cls-2" d="m41.45,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"/>
|
|
22
|
+
<path class="cls-2" d="m57.62,70.71c0-9.2,3.85-17.94,14.3-17.94s14.46,8.79,14.46,17.94-4.11,17.94-14.4,17.94-14.35-8.79-14.35-17.94Zm20.23,0c0-7.59-1.66-11.7-5.88-11.7s-5.88,4.11-5.88,11.7,1.61,11.7,5.82,11.7,5.93-4.11,5.93-11.7Z"/>
|
|
23
|
+
<path class="cls-2" d="m105.25,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"/>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 144 144" style="enable-background:new 0 0 144 144;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
7
|
+
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
8
|
+
.st2{fill:#FFFFFF;}
|
|
9
|
+
.st3{fill:#BBD6EB;}
|
|
10
|
+
.st4{fill:#EEEFF2;}
|
|
11
|
+
.st5{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
12
|
+
.st6{fill:#F3F5F7;}
|
|
13
|
+
.st7{fill:url(#SVGID_1_);stroke:url(#SVGID_00000176006543863496528330000000462417252228913081_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
14
|
+
.st8{fill:url(#SVGID_00000015319362321215657120000016772862876214577086_);stroke:url(#SVGID_00000152244241508843639740000001401911986524829082_);stroke-miterlimit:10;}
|
|
15
|
+
.st9{clip-path:url(#SVGID_00000049900885975040311480000014641288987660230562_);}
|
|
16
|
+
.st10{fill:url(#SVGID_00000117642988714045540050000010885684402881936041_);}
|
|
17
|
+
.st11{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
18
|
+
.st12{fill:url(#SVGID_00000125604309478716627940000018438234177356556952_);}
|
|
19
|
+
.st13{fill:url(#SVGID_00000132069462677027178960000008382514955351358372_);}
|
|
20
|
+
.st14{fill:#FFFFFF;stroke:url(#SVGID_00000062162616124260765010000008526522228635748258_);stroke-miterlimit:10;}
|
|
21
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
22
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
23
|
+
.st17{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
24
|
+
.st18{fill:url(#SVGID_00000009588382626512182630000000417519188469437843_);stroke:url(#SVGID_00000177477496586111945870000014100075475962833048_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
25
|
+
.st19{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
26
|
+
.st20{fill:#838795;}
|
|
27
|
+
.st21{fill:url(#SVGID_00000174597297320001511960000013670959614116761004_);stroke:url(#SVGID_00000129897832550043709990000008027305424274603908_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
28
|
+
.st22{fill:url(#SVGID_00000116205277842798810240000009364400178635883163_);stroke:url(#SVGID_00000129892993543544801990000014396413855114576553_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
29
|
+
.st23{fill:url(#SVGID_00000001655279822551144730000000584856484495896194_);stroke:url(#SVGID_00000176759401495530291270000008812844235826319793_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
30
|
+
.st24{fill:url(#SVGID_00000112612076613591032760000007552966830535813506_);stroke:url(#SVGID_00000173150333541769424900000012311132872344659600_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
31
|
+
.st25{fill:url(#SVGID_00000167377518250360958600000012024494647277307549_);stroke:url(#SVGID_00000090996303758899480520000013700931798889907845_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
32
|
+
.st26{fill:url(#SVGID_00000113313898878532870900000009697633909400558239_);stroke:url(#SVGID_00000016054001392529010580000017933611116152550037_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
33
|
+
.st27{fill:url(#SVGID_00000182501328966094517510000009557348055514095285_);stroke:url(#SVGID_00000097499898606210172760000007265246509046394272_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
34
|
+
.st28{fill:url(#SVGID_00000093163986554319382470000004512425758303507857_);stroke:url(#SVGID_00000160156627061281780260000003073387267248993668_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
35
|
+
.st29{fill:url(#SVGID_00000039852445104329141810000017113637726105273514_);}
|
|
36
|
+
.st30{fill:url(#SVGID_00000145768861874340769480000010417490475065406911_);}
|
|
37
|
+
.st31{fill:url(#SVGID_00000021826105673988720180000005850849167490308257_);}
|
|
38
|
+
.st32{fill:url(#SVGID_00000113328152725663388370000008623716012898754729_);}
|
|
39
|
+
.st33{fill:url(#SVGID_00000049936574387004280930000008737136302325751473_);}
|
|
40
|
+
.st34{fill:url(#SVGID_00000078012326262918990240000017969369491322853013_);}
|
|
41
|
+
.st35{fill:url(#SVGID_00000043439220213444529320000017110188194410216598_);}
|
|
42
|
+
.st36{fill:url(#SVGID_00000085959914259548507610000014528726628465756551_);}
|
|
43
|
+
.st37{fill:url(#SVGID_00000054235207827654170530000000636417226058331053_);}
|
|
44
|
+
.st38{fill:url(#SVGID_00000119090649786998115210000016229875856120458910_);}
|
|
45
|
+
.st39{fill:url(#SVGID_00000180344741544846243260000000406405291685112501_);}
|
|
46
|
+
.st40{fill:url(#SVGID_00000160876487737500528740000004641259659555639953_);}
|
|
47
|
+
.st41{fill:url(#SVGID_00000183216786247456001250000006062446311022170247_);}
|
|
48
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000096770547822523386280000004746499526238330758_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
49
|
+
.st43{fill:#FFFFFF;stroke:url(#SVGID_00000023239991958481634540000016184330221425931140_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
50
|
+
.st44{fill:url(#SVGID_00000029739142259141600010000016570484130670398361_);stroke:url(#SVGID_00000029020370880654741350000007090455394063577530_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
51
|
+
.st45{fill:#D7DAE0;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
52
|
+
.st46{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
53
|
+
.st47{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
54
|
+
.st48{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0076,4.0153;}
|
|
55
|
+
.st49{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
56
|
+
.st50{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
57
|
+
.st51{fill:#D7DAE0;}
|
|
58
|
+
.st52{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
59
|
+
.st53{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0038,4.0077;}
|
|
60
|
+
.st54{clip-path:url(#SVGID_00000026133832652177936590000006036523222373779113_);}
|
|
61
|
+
.st55{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
|
|
62
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6.6455,0.6645,1.9936,6.6455;}
|
|
63
|
+
.st57{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.6645,1.9936,6.6455,0.6645,1.9936,6.6455;}
|
|
64
|
+
.st58{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
65
|
+
.st59{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
66
|
+
.st60{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;}
|
|
67
|
+
.st61{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.0238,0.7024,2.1072,7.0238;}
|
|
68
|
+
.st62{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0.7024,2.1072,7.0238,0.7024,2.1072,7.0238;}
|
|
69
|
+
.st63{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;}
|
|
70
|
+
.st64{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.7263,0.5726,1.7179,5.7263;}
|
|
71
|
+
.st65{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
72
|
+
.st66{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
73
|
+
.st67{fill:none;stroke:#5E616E;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
74
|
+
.st68{fill:none;stroke:#838795;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
75
|
+
.st69{fill:#5E616E;}
|
|
76
|
+
.st70{clip-path:url(#SVGID_00000069382423800612514740000015580195284870920623_);}
|
|
77
|
+
.st71{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
78
|
+
.st72{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
79
|
+
.st73{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
80
|
+
.st74{fill:#E5E5E5;}
|
|
81
|
+
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
82
|
+
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
83
|
+
</style>
|
|
84
|
+
<g>
|
|
85
|
+
<path class="st4" d="M118.7,52c0.5-2.3,0.8-4.7,0.8-7.1c0-17.6-14.3-31.9-31.9-31.9c-13,0-24.2,7.8-29.1,18.9
|
|
86
|
+
c-3.7-2.1-7.9-3.3-12.4-3.3c-13.8,0-24.9,11.2-24.9,24.9c0,0,0,0.1,0,0.1C11.3,56.7,4,65.9,4,76.8C4,90.2,14.9,101,28.2,101h87.1
|
|
87
|
+
c13.6,0,24.6-11,24.6-24.6C140,64,130.7,53.7,118.7,52z"/>
|
|
88
|
+
<g>
|
|
89
|
+
<circle class="st71" cx="72" cy="101" r="30"/>
|
|
90
|
+
</g>
|
|
91
|
+
<path class="st51" d="M86.9,100.3c-1.4-1.4-3.7-1.4-5.1,0l-6.2,6.2V81.7h-7.2v24.8l-6.2-6.2c-1.4-1.4-3.7-1.4-5.1,0
|
|
92
|
+
c-1.4,1.4-1.4,3.7,0,5.1l15,15l15-15C88.3,104,88.3,101.7,86.9,100.3z"/>
|
|
93
|
+
</g>
|
|
94
|
+
</svg>
|