@dracor/react 0.8.0 → 0.9.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/README.md +6 -2
- package/ceteicean.js +46 -0
- package/dist/cjs/index.js +4433 -101
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/ApiDoc/ApiDoc.stories.d.ts +3 -1
- package/dist/cjs/types/components/AuthorInfo/AuthorInfo.d.ts +7 -0
- package/dist/cjs/types/components/AuthorInfo/AuthorInfo.stories.d.ts +10 -0
- package/dist/cjs/types/components/AuthorInfo/AuthorInfo.test.d.ts +1 -0
- package/dist/cjs/types/components/AuthorInfo/index.d.ts +1 -0
- package/dist/cjs/types/components/Navigation/NavBar.stories.d.ts +4 -2
- package/dist/cjs/types/components/Navigation/NavItem.stories.d.ts +4 -2
- package/dist/cjs/types/components/Navigation/NavMenu.stories.d.ts +4 -2
- package/dist/cjs/types/components/TEIText/TEIText.d.ts +14 -0
- package/dist/cjs/types/components/TEIText/TEIText.stories.d.ts +10 -0
- package/dist/cjs/types/components/TEIText/index.d.ts +1 -0
- package/dist/cjs/types/components/Tabs/Tabs.stories.d.ts +9 -2
- package/dist/cjs/types/components/index.d.ts +2 -1
- package/dist/esm/index.js +4434 -103
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/ApiDoc/ApiDoc.stories.d.ts +3 -1
- package/dist/esm/types/components/AuthorInfo/AuthorInfo.d.ts +7 -0
- package/dist/esm/types/components/AuthorInfo/AuthorInfo.stories.d.ts +10 -0
- package/dist/esm/types/components/AuthorInfo/AuthorInfo.test.d.ts +1 -0
- package/dist/esm/types/components/AuthorInfo/index.d.ts +1 -0
- package/dist/esm/types/components/Navigation/NavBar.stories.d.ts +4 -2
- package/dist/esm/types/components/Navigation/NavItem.stories.d.ts +4 -2
- package/dist/esm/types/components/Navigation/NavMenu.stories.d.ts +4 -2
- package/dist/esm/types/components/TEIText/TEIText.d.ts +14 -0
- package/dist/esm/types/components/TEIText/TEIText.stories.d.ts +10 -0
- package/dist/esm/types/components/TEIText/index.d.ts +1 -0
- package/dist/esm/types/components/Tabs/Tabs.stories.d.ts +9 -2
- package/dist/esm/types/components/index.d.ts +2 -1
- package/dist/index.d.ts +35 -18
- package/package.json +15 -11
- package/tailwind.js +2 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react';
|
|
2
|
+
import AuthorInfo from './AuthorInfo';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof AuthorInfo;
|
|
6
|
+
tags: string[];
|
|
7
|
+
};
|
|
8
|
+
export default meta;
|
|
9
|
+
type Story = StoryObj<typeof meta>;
|
|
10
|
+
export declare const Shakespeare: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AuthorInfo';
|
|
@@ -4,10 +4,12 @@ declare const meta: {
|
|
|
4
4
|
title: string;
|
|
5
5
|
component: typeof NavBar;
|
|
6
6
|
tags: string[];
|
|
7
|
-
decorators: import("@storybook/preview-api/dist/
|
|
7
|
+
decorators: import("@storybook/preview-api/dist/addons").MakeDecoratorResult[];
|
|
8
8
|
parameters: {
|
|
9
9
|
reactRouter: {
|
|
10
|
-
|
|
10
|
+
routing: {
|
|
11
|
+
path: string;
|
|
12
|
+
};
|
|
11
13
|
};
|
|
12
14
|
};
|
|
13
15
|
argTypes: {
|
|
@@ -4,10 +4,12 @@ declare const meta: {
|
|
|
4
4
|
title: string;
|
|
5
5
|
component: typeof NavItem;
|
|
6
6
|
tags: string[];
|
|
7
|
-
decorators: import("@storybook/preview-api/dist/
|
|
7
|
+
decorators: import("@storybook/preview-api/dist/addons").MakeDecoratorResult[];
|
|
8
8
|
parameters: {
|
|
9
9
|
reactRouter: {
|
|
10
|
-
|
|
10
|
+
routing: {
|
|
11
|
+
path: string;
|
|
12
|
+
};
|
|
11
13
|
};
|
|
12
14
|
};
|
|
13
15
|
};
|
|
@@ -4,10 +4,12 @@ declare const meta: {
|
|
|
4
4
|
title: string;
|
|
5
5
|
component: typeof NavMenu;
|
|
6
6
|
tags: string[];
|
|
7
|
-
decorators: import("@storybook/preview-api/dist/
|
|
7
|
+
decorators: import("@storybook/preview-api/dist/addons").MakeDecoratorResult[];
|
|
8
8
|
parameters: {
|
|
9
9
|
reactRouter: {
|
|
10
|
-
|
|
10
|
+
routing: {
|
|
11
|
+
path: string;
|
|
12
|
+
};
|
|
11
13
|
};
|
|
12
14
|
};
|
|
13
15
|
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface Props {
|
|
2
|
+
/**
|
|
3
|
+
* URL to a TEI document
|
|
4
|
+
*/
|
|
5
|
+
url: string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Component rendering a TEI document using [CETEIcean](https://github.com/TEIC/CETEIcean)
|
|
9
|
+
*
|
|
10
|
+
* Styling of the TEI elements is supported via the `ceteicean` tailwindcss
|
|
11
|
+
* plugin. Add `require('@dracor/react/ceteicean')` to the plugins array of your
|
|
12
|
+
* tailwind.config.js.
|
|
13
|
+
*/
|
|
14
|
+
export default function TEIText({ url }: Props): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { StoryObj } from '@storybook/react';
|
|
2
|
+
import TEIText from './TEIText';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
title: string;
|
|
5
|
+
component: typeof TEIText;
|
|
6
|
+
tags: string[];
|
|
7
|
+
};
|
|
8
|
+
export default meta;
|
|
9
|
+
type Story = StoryObj<typeof meta>;
|
|
10
|
+
export declare const MobyDick: Story;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './TEIText';
|
|
@@ -4,10 +4,17 @@ declare const meta: {
|
|
|
4
4
|
title: string;
|
|
5
5
|
component: typeof Tabs;
|
|
6
6
|
tags: string[];
|
|
7
|
-
decorators: import("@storybook/preview-api/dist/
|
|
7
|
+
decorators: import("@storybook/preview-api/dist/addons").MakeDecoratorResult[];
|
|
8
8
|
parameters: {
|
|
9
9
|
reactRouter: {
|
|
10
|
-
|
|
10
|
+
location: {
|
|
11
|
+
pathParams: {
|
|
12
|
+
page: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
routing: {
|
|
16
|
+
path: string;
|
|
17
|
+
};
|
|
11
18
|
};
|
|
12
19
|
};
|
|
13
20
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as
|
|
1
|
+
export { default as AuthorInfo } from './AuthorInfo';
|
|
2
2
|
export { default as Authors } from './Authors';
|
|
3
3
|
export { default as DebouncedInput } from './DebouncedInput';
|
|
4
4
|
export { default as IdCopy } from './IdCopy';
|
|
@@ -6,4 +6,5 @@ export { default as IdLink } from './IdLink';
|
|
|
6
6
|
export { default as NavBar } from './Navigation';
|
|
7
7
|
export { default as Table } from './Table';
|
|
8
8
|
export { default as Tabs } from './Tabs';
|
|
9
|
+
export { default as TEIText } from './TEIText';
|
|
9
10
|
export { default as Years } from './Years';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,21 +2,23 @@
|
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import { ColumnDef, SortingState } from '@tanstack/react-table';
|
|
4
4
|
|
|
5
|
-
interface Props$
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
interface Props$9 {
|
|
6
|
+
wikidataId: string;
|
|
7
|
+
name?: string;
|
|
8
|
+
birthLabel?: string;
|
|
9
|
+
deathLabel?: string;
|
|
8
10
|
}
|
|
9
|
-
declare function
|
|
11
|
+
declare function AuthorInfo({ wikidataId, name: fullname, birthLabel, deathLabel }: Props$9): react_jsx_runtime.JSX.Element;
|
|
10
12
|
|
|
11
13
|
interface Author {
|
|
12
14
|
name: string;
|
|
13
15
|
pseudonym?: string;
|
|
14
16
|
ref?: string;
|
|
15
17
|
}
|
|
16
|
-
interface Props$
|
|
18
|
+
interface Props$8 {
|
|
17
19
|
data: Author[];
|
|
18
20
|
}
|
|
19
|
-
declare const Authors: ({ data }: Props$
|
|
21
|
+
declare const Authors: ({ data }: Props$8) => react_jsx_runtime.JSX.Element;
|
|
20
22
|
|
|
21
23
|
declare function DebouncedInput({ value: initialValue, onChange, debounce, ...props }: {
|
|
22
24
|
value: string | number;
|
|
@@ -24,23 +26,23 @@ declare function DebouncedInput({ value: initialValue, onChange, debounce, ...pr
|
|
|
24
26
|
debounce?: number;
|
|
25
27
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'onChange'>): react_jsx_runtime.JSX.Element;
|
|
26
28
|
|
|
27
|
-
interface Props$
|
|
29
|
+
interface Props$7 {
|
|
28
30
|
children: string;
|
|
29
31
|
prefix?: string;
|
|
30
32
|
uri?: string;
|
|
31
33
|
className?: string;
|
|
32
34
|
}
|
|
33
|
-
declare function IdCopy({ children, className, uri, prefix }: Props$
|
|
35
|
+
declare function IdCopy({ children, className, uri, prefix }: Props$7): react_jsx_runtime.JSX.Element;
|
|
34
36
|
|
|
35
|
-
interface Props$
|
|
37
|
+
interface Props$6 {
|
|
36
38
|
button?: boolean;
|
|
37
39
|
showLabel?: boolean;
|
|
38
40
|
className?: string;
|
|
39
41
|
children: string;
|
|
40
42
|
}
|
|
41
|
-
declare function IdLink({ showLabel, children, className }: Props$
|
|
43
|
+
declare function IdLink({ showLabel, children, className }: Props$6): react_jsx_runtime.JSX.Element;
|
|
42
44
|
|
|
43
|
-
interface Props$
|
|
45
|
+
interface Props$5 {
|
|
44
46
|
label: string;
|
|
45
47
|
href: string;
|
|
46
48
|
active?: boolean;
|
|
@@ -52,7 +54,7 @@ interface Item {
|
|
|
52
54
|
href: string;
|
|
53
55
|
selected?: boolean;
|
|
54
56
|
}
|
|
55
|
-
interface Props$
|
|
57
|
+
interface Props$4 {
|
|
56
58
|
label: string;
|
|
57
59
|
items: Item[];
|
|
58
60
|
menuClass?: string;
|
|
@@ -65,26 +67,41 @@ interface NavBarProps {
|
|
|
65
67
|
version?: string;
|
|
66
68
|
gitHubUrl?: string;
|
|
67
69
|
gitHubIcon?: JSX.Element;
|
|
68
|
-
navItems?: (Props$
|
|
70
|
+
navItems?: (Props$5 | Props$4)[];
|
|
69
71
|
}
|
|
70
72
|
declare function NavBar({ title, logo, logoClass, version, gitHubUrl, gitHubIcon, navItems }: NavBarProps): react_jsx_runtime.JSX.Element;
|
|
71
73
|
|
|
72
|
-
interface Props$
|
|
74
|
+
interface Props$3 {
|
|
73
75
|
data: any[];
|
|
74
76
|
columns: ColumnDef<any>[];
|
|
75
77
|
defaultSort?: SortingState;
|
|
76
78
|
}
|
|
77
|
-
declare const Table: ({ columns, data: initialData, defaultSort }: Props$
|
|
79
|
+
declare const Table: ({ columns, data: initialData, defaultSort }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
78
80
|
|
|
79
81
|
interface TabData {
|
|
80
82
|
label: string;
|
|
81
83
|
href: string;
|
|
82
84
|
active?: boolean;
|
|
83
85
|
}
|
|
84
|
-
interface Props$
|
|
86
|
+
interface Props$2 {
|
|
85
87
|
data: TabData[];
|
|
86
88
|
}
|
|
87
|
-
declare function Tabs({ data: tabs }: Props$
|
|
89
|
+
declare function Tabs({ data: tabs }: Props$2): react_jsx_runtime.JSX.Element;
|
|
90
|
+
|
|
91
|
+
interface Props$1 {
|
|
92
|
+
/**
|
|
93
|
+
* URL to a TEI document
|
|
94
|
+
*/
|
|
95
|
+
url: string;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Component rendering a TEI document using [CETEIcean](https://github.com/TEIC/CETEIcean)
|
|
99
|
+
*
|
|
100
|
+
* Styling of the TEI elements is supported via the `ceteicean` tailwindcss
|
|
101
|
+
* plugin. Add `require('@dracor/react/ceteicean')` to the plugins array of your
|
|
102
|
+
* tailwind.config.js.
|
|
103
|
+
*/
|
|
104
|
+
declare function TEIText({ url }: Props$1): react_jsx_runtime.JSX.Element;
|
|
88
105
|
|
|
89
106
|
interface Props {
|
|
90
107
|
written?: number;
|
|
@@ -100,4 +117,4 @@ declare function Years({ written, premiere, print, locale, labelPremiered, label
|
|
|
100
117
|
declare function formatEra(year: string, ceBefore?: number): string;
|
|
101
118
|
declare function formatYear(year: number | string, locale?: string): string;
|
|
102
119
|
|
|
103
|
-
export {
|
|
120
|
+
export { AuthorInfo, Authors, DebouncedInput, IdCopy, IdLink, NavBar, TEIText, Table, Tabs, Years, formatEra, formatYear };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dracor/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "DraCor react component library",
|
|
5
5
|
"repository": "https://github.com/dracor-org/dracor-react",
|
|
6
6
|
"homepage": "https://github.com/dracor-org/dracor-react#readme",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"module": "dist/esm/index.js",
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
|
+
"ceteicean.js",
|
|
13
14
|
"tailwind.js"
|
|
14
15
|
],
|
|
15
16
|
"types": "dist/index.d.ts",
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
"release": "./prepublish.sh && yarn publish --access public"
|
|
22
23
|
},
|
|
23
24
|
"dependencies": {
|
|
25
|
+
"CETEIcean": "^1.8.0",
|
|
24
26
|
"tailwindcss-classnames": "^3.1.0"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
@@ -34,16 +36,17 @@
|
|
|
34
36
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
35
37
|
"@headlessui/react": "^1.7.15",
|
|
36
38
|
"@rollup/plugin-commonjs": "^25.0.2",
|
|
39
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
37
40
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
38
41
|
"@rollup/plugin-typescript": "^11.1.2",
|
|
39
|
-
"@storybook/addon-essentials": "^7.
|
|
40
|
-
"@storybook/addon-interactions": "^7.
|
|
41
|
-
"@storybook/addon-links": "^7.
|
|
42
|
-
"@storybook/addon-styling": "^1.3.
|
|
43
|
-
"@storybook/blocks": "^7.
|
|
44
|
-
"@storybook/react": "^7.
|
|
45
|
-
"@storybook/react-vite": "^7.
|
|
46
|
-
"@storybook/testing-library": "^0.2.
|
|
42
|
+
"@storybook/addon-essentials": "^7.4.5",
|
|
43
|
+
"@storybook/addon-interactions": "^7.4.5",
|
|
44
|
+
"@storybook/addon-links": "^7.4.5",
|
|
45
|
+
"@storybook/addon-styling": "^1.3.7",
|
|
46
|
+
"@storybook/blocks": "^7.4.5",
|
|
47
|
+
"@storybook/react": "^7.4.5",
|
|
48
|
+
"@storybook/react-vite": "^7.4.5",
|
|
49
|
+
"@storybook/testing-library": "^0.2.1",
|
|
47
50
|
"@tanstack/react-table": "^8.9.3",
|
|
48
51
|
"@testing-library/react": "^14.0.0",
|
|
49
52
|
"@types/jest": "^29.5.2",
|
|
@@ -61,11 +64,12 @@
|
|
|
61
64
|
"react-dom": "^18.2.0",
|
|
62
65
|
"react-helmet-async": "^1.3.0",
|
|
63
66
|
"react-router-dom": "^6.14.1",
|
|
67
|
+
"remark-gfm": "^4.0.0",
|
|
64
68
|
"rollup": "^3.26.0",
|
|
65
69
|
"rollup-plugin-dts": "^5.3.0",
|
|
66
70
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
67
|
-
"storybook": "^7.
|
|
68
|
-
"storybook-addon-react-router-v6": "^
|
|
71
|
+
"storybook": "^7.4.5",
|
|
72
|
+
"storybook-addon-react-router-v6": "^2.0.7",
|
|
69
73
|
"swagger-ui-react": "^5.1.3",
|
|
70
74
|
"tailwindcss": "^3.3.2",
|
|
71
75
|
"tslib": "^2.6.0",
|
package/tailwind.js
CHANGED
|
@@ -45,9 +45,10 @@ const config = {
|
|
|
45
45
|
'calc-full-0.75': 'calc(100% - 0.75rem)',
|
|
46
46
|
},
|
|
47
47
|
backgroundImage: {
|
|
48
|
+
author: `url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cpath style='fill:%23fff' class='st0' d='M21.75,90.08c-2.28,41.51,47.26,95.14,50.82,134.94c0,0,0.09,62.44,0.09,62.44c-0.8,6.58,4.55,12.5,11.07,12.54 c0,0,87.71,0,87.71,0c5.93-0.07,10.99-4.5,11.35-10.51l0,0c0,0,0.09-23.98,0.09-23.98c0-6.36,5.07-11.44,11.44-11.44 c0,0,44.92-1.84,44.92-1.84c8.85,0,16.05-7.1,16.05-15.96l4.7-32.74c-0.71-2.82,13.62-11.86,15.49-13.93 c3.21-2.72,3.86-8.13,1.11-11.44c0,0-17.16-29.88-17.16-29.88l-0.55-0.92c-3.35-2.42,1.24-42.35,0.83-46.21 c0.03-1.05,0.94-10.05,0.74-11.07c0-49.16-39.84-89.01-89.01-89.01C101.67-3.37,26.17,2.34,21.75,90.08z'/%3E%3C/svg%3E")`,
|
|
48
49
|
wikidata: `url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 810 500' style='enable-background:new 0 0 810 500;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23990000;%7D .st1%7Bfill:%23339966;%7D .st2%7Bfill:%23006699;%7D%3C/style%3E%3Cpath class='st0' d='M0,500h30V0H0V500z M60,500h90V0H60V500z M180,0v500h90V0H180z'/%3E%3Cpath class='st1' d='M720,500h30V0h-30V500z M780,0v500h30V0H780z M300,500h30V0h-30V500z M360,0v500h30V0H360z'/%3E%3Cpath class='st2' d='M420,500h90V0h-90V500z M540,500h30V0h-30V500z M600,0v500h90V0H600z'/%3E%3C/svg%3E%0A")`,
|
|
49
50
|
dracor: `url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 384 384'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;%7D.cls-2%7Bclip-path:url(%23clip-path);%7D.cls-3%7Bfill:%231f2447;%7D%3C/style%3E%3CclipPath id='clip-path' transform='translate(0 0)'%3E%3Crect class='cls-1' width='384' height='384'/%3E%3C/clipPath%3E%3C/defs%3E%3Ctitle%3EDraCor-Symbol-Square-Blue%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg id='Vektor-Smartobjekt'%3E%3Cg class='cls-2'%3E%3Cg class='cls-2'%3E%3Cpath class='cls-3' d='M378.47,146A192.23,192.23,0,0,0,192,0H0V384H192A192.23,192.23,0,0,0,378.47,238.05a194.5,194.5,0,0,0,0-92.1M192,347.51H36.49V210.25H71.6a121.84,121.84,0,0,0,233.18,27.8h-41a85.29,85.29,0,1,1-11.51-106.34A86.09,86.09,0,0,1,263.8,146h41A121.81,121.81,0,0,0,71.6,173.76H36.49V36.49H192c69.73,0,128.88,46.12,148.55,109.46q2.13,6.84,3.62,13.91c1,4.56,1.73,9.2,2.27,13.9H240.84a50.2,50.2,0,0,0-2.38-5.43c-.48-.94-1-1.86-1.54-2.77a50.8,50.8,0,0,0-3.89-5.7,49.82,49.82,0,0,0-4.17-4.71,52,52,0,0,0-61.31-9.2c-1.14.6-2.26,1.26-3.35,2a51.23,51.23,0,0,0-9,7.25,52.09,52.09,0,0,0,0,73.71,51.17,51.17,0,0,0,9,7.24l3.34,2a52.07,52.07,0,0,0,61.32-9.19,50,50,0,0,0,4.18-4.72,52.26,52.26,0,0,0,3.47-5c.7-1.14,1.35-2.3,2-3.49a48.31,48.31,0,0,0,2.38-5.43h105.6c-.54,4.7-1.31,9.34-2.27,13.9q-1.49,7.08-3.62,13.91C320.88,301.39,261.73,347.51,192,347.51' transform='translate(0 0)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`,
|
|
50
|
-
wega: `url("data:image/svg+xml,%3C%3Fxml version='1.0' standalone='no'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 20010904//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'%3E%3Csvg version='1.0' xmlns='http://www.w3.org/2000/svg' width='70.000000pt' height='70.000000pt' viewBox='0 0 70.000000 70.000000' preserveAspectRatio='xMidYMid meet'%3E%3Cmetadata%3E%0ACreated by potrace 1.11, written by Peter Selinger 2001-2013%0A%3C/metadata%3E%3Cg transform='translate(0.000000,70.000000) scale(0.100000,-0.100000)'%0Afill='%230064b4' stroke='none'%3E%3Cpath d='M223 664 c-29 -19 -53 -39 -53 -44 0 -5 -11 -26 -25 -46 -14 -21 -23%0A-44 -20 -51 2 -8 -3 -25 -12 -39 -13 -21 -14 -29 -4 -52 7 -15 19 -34 27 -42%0A8 -8 29 -37 46 -63 l31 -48 -19 -40 c-9 -22 -42 -63 -73 -91 l-55 -50 23 -44%0A24 -44 87 0 87 0 -27 115 c-19 82 -23 112 -14 104 20 -17 17 2 -6 31 -11 14%0A-20 35 -20 47 0 12 -7 43 -16 69 -12 36 -13 48 -4 54 7 4 9 13 5 19 -4 7 -1%0A18 5 26 7 8 10 24 7 35 -3 10 2 25 10 31 8 7 12 21 10 31 -4 15 1 18 38 18 52%0A0 90 -15 128 -49 37 -34 36 -61 -3 -61 -38 0 -53 -27 -48 -93 3 -50 2 -52 -22%0A-49 -24 2 -24 2 -5 -12 27 -19 57 -3 50 27 -12 59 -11 72 12 72 28 0 41 14 23%0A25 -13 8 -13 10 1 10 27 0 31 -66 8 -140 -20 -65 -51 -110 -76 -110 -7 0 -13%0A-4 -13 -10 0 -15 23 -12 48 6 26 18 26 29 2 -110 -15 -92 -20 -86 75 -86 l86%0A0 20 47 20 47 -65 58 c-77 69 -98 116 -76 169 8 17 22 39 32 49 11 10 20 25%0A22 33 1 8 8 22 15 31 17 20 5 73 -19 81 -10 3 -21 16 -24 29 -3 12 -13 32 -23%0A44 -10 12 -26 33 -36 47 -10 14 -26 25 -36 25 -9 0 -26 7 -37 15 -29 22 -54%0A18 -111 -21z'/%3E%3Cpath d='M246 475 c-22 -17 -20 -28 2 -16 10 6 28 7 40 4 12 -3 22 -1 22 5 0%0A15 -45 20 -64 7z'/%3E%3Cpath d='M252 437 c-10 -11 -5 -14 24 -15 24 -1 34 3 31 11 -5 17 -42 20 -55%0A4z'/%3E%3Cpath d='M299 289 c-9 -6 1 -9 29 -9 24 0 41 4 38 9 -7 11 -50 11 -67 0z'/%3E%3Cpath d='M315 260 c3 -5 15 -10 26 -10 10 0 19 5 19 10 0 6 -12 10 -26 10 -14%0A0 -23 -4 -19 -10z'/%3E%3C/g%3E%3C/svg%3E")
|
|
51
|
+
wega: `url("data:image/svg+xml,%3C%3Fxml version='1.0' standalone='no'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 20010904//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'%3E%3Csvg version='1.0' xmlns='http://www.w3.org/2000/svg' width='70.000000pt' height='70.000000pt' viewBox='0 0 70.000000 70.000000' preserveAspectRatio='xMidYMid meet'%3E%3Cmetadata%3E%0ACreated by potrace 1.11, written by Peter Selinger 2001-2013%0A%3C/metadata%3E%3Cg transform='translate(0.000000,70.000000) scale(0.100000,-0.100000)'%0Afill='%230064b4' stroke='none'%3E%3Cpath d='M223 664 c-29 -19 -53 -39 -53 -44 0 -5 -11 -26 -25 -46 -14 -21 -23%0A-44 -20 -51 2 -8 -3 -25 -12 -39 -13 -21 -14 -29 -4 -52 7 -15 19 -34 27 -42%0A8 -8 29 -37 46 -63 l31 -48 -19 -40 c-9 -22 -42 -63 -73 -91 l-55 -50 23 -44%0A24 -44 87 0 87 0 -27 115 c-19 82 -23 112 -14 104 20 -17 17 2 -6 31 -11 14%0A-20 35 -20 47 0 12 -7 43 -16 69 -12 36 -13 48 -4 54 7 4 9 13 5 19 -4 7 -1%0A18 5 26 7 8 10 24 7 35 -3 10 2 25 10 31 8 7 12 21 10 31 -4 15 1 18 38 18 52%0A0 90 -15 128 -49 37 -34 36 -61 -3 -61 -38 0 -53 -27 -48 -93 3 -50 2 -52 -22%0A-49 -24 2 -24 2 -5 -12 27 -19 57 -3 50 27 -12 59 -11 72 12 72 28 0 41 14 23%0A25 -13 8 -13 10 1 10 27 0 31 -66 8 -140 -20 -65 -51 -110 -76 -110 -7 0 -13%0A-4 -13 -10 0 -15 23 -12 48 6 26 18 26 29 2 -110 -15 -92 -20 -86 75 -86 l86%0A0 20 47 20 47 -65 58 c-77 69 -98 116 -76 169 8 17 22 39 32 49 11 10 20 25%0A22 33 1 8 8 22 15 31 17 20 5 73 -19 81 -10 3 -21 16 -24 29 -3 12 -13 32 -23%0A44 -10 12 -26 33 -36 47 -10 14 -26 25 -36 25 -9 0 -26 7 -37 15 -29 22 -54%0A18 -111 -21z'/%3E%3Cpath d='M246 475 c-22 -17 -20 -28 2 -16 10 6 28 7 40 4 12 -3 22 -1 22 5 0%0A15 -45 20 -64 7z'/%3E%3Cpath d='M252 437 c-10 -11 -5 -14 24 -15 24 -1 34 3 31 11 -5 17 -42 20 -55%0A4z'/%3E%3Cpath d='M299 289 c-9 -6 1 -9 29 -9 24 0 41 4 38 9 -7 11 -50 11 -67 0z'/%3E%3Cpath d='M315 260 c3 -5 15 -10 26 -10 10 0 19 5 19 10 0 6 -12 10 -26 10 -14%0A0 -23 -4 -19 -10z'/%3E%3C/g%3E%3C/svg%3E")`,
|
|
51
52
|
},
|
|
52
53
|
},
|
|
53
54
|
},
|