kempo-ui 0.0.26 → 0.0.28
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 +18 -1
- package/dist/components/Dialog.js +2 -2
- package/dist/components/Icon.js +1 -1
- package/dist/components/ShadowComponent.js +1 -1
- package/dist/components/SideMenu.js +1 -1
- package/docs/components/accordion.html +4 -0
- package/docs/components/card.html +2 -0
- package/docs/components/content-slider.html +2 -0
- package/docs/components/dialog.html +20 -1
- package/docs/components/focus-capture.html +2 -0
- package/docs/components/hybrid-component.html +2 -0
- package/docs/components/icon.html +2 -0
- package/docs/components/import.html +2 -0
- package/docs/components/light-component.html +2 -0
- package/docs/components/photo-viewer.html +2 -0
- package/docs/components/resize.html +2 -0
- package/docs/components/shadow-component.html +8 -6
- package/docs/components/show-more.html +2 -0
- package/docs/components/side-menu.html +3 -0
- package/docs/components/sortable.html +2 -0
- package/docs/components/split.html +2 -0
- package/docs/components/table.html +2 -0
- package/docs/components/tableControls.html +2 -0
- package/docs/components/tableCustomFields.html +2 -0
- package/docs/components/tableFetchRecords.html +2 -0
- package/docs/components/tableFieldSortHide.html +2 -0
- package/docs/components/tablePagination.html +2 -0
- package/docs/components/tableRecordEditing.html +2 -0
- package/docs/components/tableRecordFiltering.html +2 -0
- package/docs/components/tableRecordHiding.html +2 -0
- package/docs/components/tableRecordSearching.html +2 -0
- package/docs/components/tableRecordSelection.html +2 -0
- package/docs/components/tableRowControls.html +2 -0
- package/docs/components/tableSorting.html +2 -0
- package/docs/components/tabs.html +2 -0
- package/docs/components/tags.html +2 -0
- package/docs/components/theme-switcher.html +2 -0
- package/docs/components/timestamp.html +2 -0
- package/docs/components/toast.html +3 -1
- package/docs/components/toggle.html +2 -0
- package/docs/components/tree.html +2 -0
- package/docs/index.html +33 -2
- package/docs/init-1.js +1 -1
- package/docs/init.js +2 -2
- package/docs/manifest.json +87 -0
- package/docs/media/hexagon.svg +22 -0
- package/docs/media/icon-maskable.png +0 -0
- package/docs/media/icon.svg +1 -0
- package/docs/media/icon128.png +0 -0
- package/docs/media/icon144.png +0 -0
- package/docs/media/icon152.png +0 -0
- package/docs/media/icon16-48.svg +19 -0
- package/docs/media/icon16.png +0 -0
- package/docs/media/icon192.png +0 -0
- package/docs/media/icon256.png +0 -0
- package/docs/media/icon32.png +0 -0
- package/docs/media/icon384.png +0 -0
- package/docs/media/icon48.png +0 -0
- package/docs/media/icon512.png +0 -0
- package/docs/media/icon64.png +0 -0
- package/docs/media/icon72.png +0 -0
- package/docs/media/icon96.png +0 -0
- package/docs/media/kempo-fist.svg +21 -0
- package/docs/nav-1.inc.html +12 -3
- package/docs/nav.inc.html +15 -5
- package/docs/src/components/Dialog.js +2 -2
- package/docs/src/components/Icon.js +1 -1
- package/docs/src/components/ShadowComponent.js +1 -1
- package/docs/src/components/SideMenu.js +1 -1
- package/docs/styles.css +5 -0
- package/docs/utils/debounce.html +2 -0
- package/docs/utils/drag.html +2 -0
- package/docs/utils/formatTimestamp.html +2 -0
- package/docs/utils/propConverters.html +2 -0
- package/docs/utils/toTitleCase.html +2 -0
- package/package.json +1 -1
- package/scripts/docs.js +12 -5
- package/src/components/Dialog.js +4 -1
- package/src/components/Icon.js +1 -1
- package/src/components/ShadowComponent.js +1 -1
- package/src/components/SideMenu.js +2 -0
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
<meta charset="UTF-8">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
7
|
<title>Tree - Components - Kempo Docs - A Web Components Solution</title>
|
|
8
|
+
<link rel="icon" type="image/png" sizes="48x48" href="../media/icon48.png">
|
|
9
|
+
<link rel="manifest" href="../manifest.json" />
|
|
8
10
|
<link rel="stylesheet" href="../kempo-vars.css" />
|
|
9
11
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
10
12
|
<link rel="stylesheet" href="../kempo-hljs.css" />
|
package/docs/index.html
CHANGED
|
@@ -4,7 +4,10 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Kempo UI Documentation</title>
|
|
7
|
+
<link rel="icon" type="image/png" sizes="48x48" href="./media/icon48.png">
|
|
8
|
+
<link rel="manifest" href="./manifest.json" />
|
|
7
9
|
<link rel="stylesheet" href="./kempo.min.css">
|
|
10
|
+
<link rel="stylesheet" href="./kempo-hljs.css">
|
|
8
11
|
<link rel="stylesheet" href="./kempo-vars.css">
|
|
9
12
|
<link rel="stylesheet" href="./styles.css">
|
|
10
13
|
<script>window.litDisableBundleWarning = true;</script>
|
|
@@ -13,9 +16,37 @@
|
|
|
13
16
|
<body>
|
|
14
17
|
<k-import src="nav.inc.html"></k-import>
|
|
15
18
|
<main>
|
|
16
|
-
<h1
|
|
19
|
+
<h1 class="ta-center">
|
|
20
|
+
<img
|
|
21
|
+
src="./media/icon64.png"
|
|
22
|
+
alt="Kempo UI Icon"
|
|
23
|
+
/>
|
|
24
|
+
<span
|
|
25
|
+
class="d-ib py"
|
|
26
|
+
style="vertical-align: bottom"
|
|
27
|
+
>
|
|
28
|
+
Kempo UI
|
|
29
|
+
</span>
|
|
30
|
+
</h1>
|
|
17
31
|
<p>A lit-based web component library.</p>
|
|
18
32
|
|
|
33
|
+
<h2>Getting Started</h2>
|
|
34
|
+
<div class="row -mx">
|
|
35
|
+
<div class="span-12 t-span-4 d-span-4 px">
|
|
36
|
+
<p>Install using NPM.</p>
|
|
37
|
+
<pre><code class="hljs bash">npm install kempo-ui</code></pre>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="span-12 t-span-4 d-span-4 px">
|
|
40
|
+
<p>or clone the git repo</p>
|
|
41
|
+
<pre><code class="hljs bash">git <span class="hljs-built_in">clone</span> https://github.com/dustinpoissant/kempo-ui.git</code></pre>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="span-12 t-span-6 d-span-4 px">
|
|
44
|
+
<p>or download directly</p>
|
|
45
|
+
<a href="https://github.com/dustinpoissant/kempo-ui/archive/refs/heads/main.zip" target="_blank"
|
|
46
|
+
class="btn primary">Download Zip</a>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
19
50
|
<h2>Components</h2>
|
|
20
51
|
<div class="row -mx">
|
|
21
52
|
<div class="span-12 t-span-6 d-span-4 px">
|
|
@@ -205,4 +236,4 @@
|
|
|
205
236
|
</main>
|
|
206
237
|
<script type="module" src="./src/components/Import.js"></script>
|
|
207
238
|
</body>
|
|
208
|
-
</html>
|
|
239
|
+
</html>
|
package/docs/init-1.js
CHANGED
package/docs/init.js
CHANGED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Kempo UI",
|
|
3
|
+
"short_name": "Kempo UI",
|
|
4
|
+
"description": "A lit-based web component library.",
|
|
5
|
+
"start_url": "/kempo-ui/",
|
|
6
|
+
"display": "standalone",
|
|
7
|
+
"background_color": "#ffffff",
|
|
8
|
+
"theme_color": "#000000",
|
|
9
|
+
"orientation": "portrait-primary",
|
|
10
|
+
"scope": "/kempo-ui/",
|
|
11
|
+
"lang": "en",
|
|
12
|
+
"categories": ["developer", "utilities"],
|
|
13
|
+
"icons": [
|
|
14
|
+
{
|
|
15
|
+
"src": "media/icon16.png",
|
|
16
|
+
"sizes": "16x16",
|
|
17
|
+
"type": "image/png"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"src": "media/icon32.png",
|
|
21
|
+
"sizes": "32x32",
|
|
22
|
+
"type": "image/png"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"src": "./media/icon48.png",
|
|
26
|
+
"sizes": "48x48",
|
|
27
|
+
"type": "image/png"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"src": "media/icon64.png",
|
|
31
|
+
"sizes": "64x64",
|
|
32
|
+
"type": "image/png"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"src": "media/icon72.png",
|
|
36
|
+
"sizes": "72x72",
|
|
37
|
+
"type": "image/png"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"src": "media/icon96.png",
|
|
41
|
+
"sizes": "96x96",
|
|
42
|
+
"type": "image/png"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"src": "media/icon128.png",
|
|
46
|
+
"sizes": "128x128",
|
|
47
|
+
"type": "image/png"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"src": "media/icon144.png",
|
|
51
|
+
"sizes": "144x144",
|
|
52
|
+
"type": "image/png"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"src": "media/icon152.png",
|
|
56
|
+
"sizes": "152x152",
|
|
57
|
+
"type": "image/png"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"src": "media/icon192.png",
|
|
61
|
+
"sizes": "192x192",
|
|
62
|
+
"type": "image/png",
|
|
63
|
+
"purpose": "maskable"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"src": "media/icon256.png",
|
|
67
|
+
"sizes": "256x256",
|
|
68
|
+
"type": "image/png"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"src": "media/icon384.png",
|
|
72
|
+
"sizes": "384x384",
|
|
73
|
+
"type": "image/png"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"src": "media/icon-maskable.png",
|
|
77
|
+
"sizes": "512x512",
|
|
78
|
+
"type": "image/png",
|
|
79
|
+
"purpose": "maskable"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"src": "media/icon.svg",
|
|
83
|
+
"sizes": "any",
|
|
84
|
+
"type": "image/svg+xml"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="572.89282"
|
|
8
|
+
height="520.2417"
|
|
9
|
+
viewBox="0 0 572.89282 520.2417"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="g1"
|
|
16
|
+
transform="translate(-55.316471,-79.136482)">
|
|
17
|
+
<path
|
|
18
|
+
style="#3366ff;fill-opacity:1"
|
|
19
|
+
d="M 220.44305,596.99111 C 194.29421,590.50039 173.56773,571.24999 162.38846,547.08435 126.91657,486.65752 90.869779,426.46655 58.211559,364.46871 52.737569,338.98299 54.045079,310.89218 70.730909,289.61781 105.5259,229.55178 138.11337,168.06799 175.97366,109.8619 191.81565,87.209073 220.1809,78.117943 246.89684,80.020643 c 69.97113,-0.18609 140.03691,-2.21714 209.95538,0.5891 26.85701,3.01478 49.34166,21.684927 61.44676,45.308957 36.6854,61.47146 72.5551,123.49036 106.6198,186.45001 5.7217,24.40876 5.0131,51.88718 -10.4596,72.76015 -34.5562,60.94187 -68.0745,122.60428 -105.5068,181.82725 -19.06299,26.68069 -52.6428,34.03908 -83.55728,31.75257 -68.27925,0.42703 -136.76226,1.92797 -204.95205,-1.71757 z"
|
|
20
|
+
id="path3" />
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="#3366ff" d="M 149.19482,482.98434 C 126.19294,477.27476 107.96084,460.3411 98.126956,439.08373 66.924033,385.92913 35.215387,332.982 6.4875065,278.44545 1.6722975,256.02688 2.8224515,231.31673 17.500181,212.60267 48.107679,159.76547 76.77332,105.68109 110.07722,54.479962 c 13.93544,-19.926612 38.887,-27.923646 62.38774,-26.249933 61.55026,-0.163694 123.18381,-1.950312 184.68775,0.518204 23.62484,2.651959 43.40351,19.075201 54.05179,39.856134 32.2704,54.073513 63.82326,108.628593 93.78836,164.011203 5.0331,21.47121 4.40979,45.64268 -9.20081,64.00363 -30.39745,53.60767 -59.88191,107.84915 -92.80931,159.94478 -16.76881,23.46973 -46.30736,29.94255 -73.50136,27.93122 -60.062,0.37564 -120.30324,1.69594 -180.28656,-1.51086 z"/><path style="fill: #ffffff" d="m 267.02328,73.460127 c -7.80406,0.13315 -15.55358,2.13095 -22.49277,5.69298 -5.23548,2.65376 -10.02637,6.11164 -14.4673,9.93367 -0.68406,0.5687 -1.408,1.17599 -2.07372,1.71259 -0.51885,0.41034 -0.9873,0.78449 -1.52058,1.17505 -0.63607,0.46725 -1.28969,0.91083 -1.96355,1.32186 -0.1362,0.0767 -0.37114,0.22306 -0.55004,0.31853 -2.02009,1.16852 -4.32525,1.73527 -6.62656,2.00721 -0.38411,0.0462 -0.85101,0.0963 -1.2686,0.1323 -1.32499,0.11997 -2.64866,0.18983 -3.99209,0.23156 -7.40894,0.25063 -14.89301,-0.082 -22.3089,0.55213 -4.62978,0.39061 -9.27961,1.31405 -13.4927,3.33206 -4.61425,2.194393 -8.62556,5.431423 -12.43364,8.793903 -5.44713,4.81234 -10.52471,10.02212 -15.9847,14.81936 -0.30753,0.21407 -0.70034,0.25781 -1.04332,0.40175 -3.84713,1.27829 -7.79398,2.32524 -11.70758,3.43203 -5.29938,1.49155 -10.61339,2.96941 -15.77098,4.90753 -3.90575,1.49669 -7.59734,3.51839 -11.05301,5.86752 -4.63558,3.15612 -8.739054,7.09989 -12.025324,11.64727 -4.12193,5.67824 -6.9823,12.17936 -9.04546,18.86019 -2.077734,6.7662 -3.400886,13.73862 -4.430935,20.73304 -0.615418,4.1493 -1.119783,8.31484 -1.494461,12.49281 -0.686152,7.53598 -1.063536,15.09553 -1.451956,22.65128 -0.528056,10.7353 -1.016213,21.47562 -1.617828,32.20137 -0.350024,6.55687 -0.397632,13.12485 -0.421432,19.68962 -0.0135,7.63533 0.02257,15.27405 0.36645,22.90272 0.290868,5.09602 0.98966,10.23071 2.803373,15.02803 1.544761,4.14054 3.945089,7.931 6.858459,11.24241 2.3106,2.65101 4.8812,5.08518 7.71136,7.17595 4.15593,3.04635 8.882754,5.28582 13.835274,6.6907 3.18653,0.92075 6.45108,1.59581 9.75413,1.91796 5.71328,0.47075 11.47813,-0.57294 16.83334,-2.55217 2.2956,-0.83646 4.52472,-1.84188 6.73683,-2.87589 3.99337,2.4136 8.03643,4.81491 12.4324,6.42991 4.63938,1.755 9.48439,2.92122 14.37304,3.72723 5.58909,0.88877 11.32233,1.01787 16.9181,0.11225 1.70053,-0.25278 3.39478,-0.54952 5.09978,-0.77409 0.0789,1.96567 0.0617,3.98302 0.11742,5.97325 0.078,3.3873 0.23087,6.80378 1.02117,10.1116 0.49787,2.01653 1.31707,3.94032 2.31699,5.75683 3.86836,7.32758 9.83969,13.48026 16.9043,17.78138 4.70629,2.92328 9.70931,5.32731 14.73905,7.63465 5.21732,2.36024 10.54695,4.46019 15.88258,6.5351 4.1472,1.71875 8.21546,3.61946 12.35907,5.34656 4.26729,1.79377 8.55821,3.53139 12.82373,5.32968 6.44005,2.68175 12.88712,5.36613 19.4913,7.62346 3.34407,1.11985 6.7918,1.98547 10.31252,2.29219 2.83407,0.27353 5.7004,0.23253 8.52223,-0.15318 3.903,-0.47896 7.8615,-0.90837 11.71204,-1.80393 3.8738,-0.89185 7.62042,-2.24965 11.31935,-3.68899 3.85225,-1.52354 7.65594,-3.16671 11.4615,-4.80284 6.22351,-2.69863 12.42383,-5.41925 18.66921,-8.06439 6.61343,-2.81355 13.26843,-5.5523 19.80935,-8.5413 6.51308,-2.95593 12.9704,-6.03618 19.34343,-9.28437 2.51209,-1.2926 5.0238,-2.5997 7.40507,-4.12407 3.71839,-2.43446 7.06872,-5.38299 10.25954,-8.4646 2.92319,-2.86962 5.69283,-5.91967 8.03083,-9.29027 1.76404,-2.61935 2.96529,-5.5642 4.01416,-8.52835 1.04104,-3.00868 1.85385,-6.09543 2.46867,-9.21825 0.428,-2.28504 0.55891,-4.61183 0.59078,-6.9325 0.045,-2.9289 0.0241,-5.8584 0.0233,-8.78752 -0.0186,-4.56934 -0.1741,-9.15392 -0.89004,-13.67385 -0.55146,-3.7377 -1.21778,-7.45843 -1.98172,-11.15842 -1.48347,-7.02171 -3.51289,-13.91997 -5.88857,-20.68884 -1.03352,-2.98529 -2.09363,-5.9619 -3.06178,-8.96941 -1.86562,-5.87196 -3.59337,-11.85047 -5.15222,-17.83499 -1.03197,-3.9357 -2.00483,-7.92355 -2.82245,-11.92467 -0.0963,-0.48758 -0.20792,-1.02863 -0.29702,-1.51547 -0.3596,-1.85436 -0.60738,-3.72884 -0.74813,-5.61239 -0.40311,-4.75506 -0.62832,-9.51376 -0.84863,-14.28941 -0.57931,-13.14291 -0.78249,-26.30914 -1.88828,-39.42329 -0.46228,-5.21431 -1.11309,-10.43308 -2.40647,-15.5139 -0.7714,-3.05981 -1.80794,-6.04753 -3.01764,-8.9605 -1.09301,-2.63933 -2.23997,-5.26738 -3.01587,-8.02283 -0.68454,-2.35212 -1.05004,-4.77733 -1.56799,-7.16796 -1.4471,-7.01364 -3.17849,-14.01841 -6.04514,-20.60358 -1.85199,-4.3004 -3.99704,-8.48523 -6.56,-12.40754 -2.20477,-3.34973 -4.78534,-6.44481 -7.62283,-9.27562 -2.7045,-2.750513 -5.62723,-5.322773 -8.93856,-7.322933 -2.63819,-1.62234 -5.41815,-3.0097 -8.2744,-4.20408 -3.42355,-1.40876 -7.0236,-2.40953 -10.70307,-2.85006 -7.15868,-0.92288 -14.39888,-0.26322 -21.56114,0.0963 -2.62198,0.13501 -5.24535,0.24136 -7.86967,0.31879 -1.96132,0.0369 -3.99121,0.0896 -5.97666,-0.0245 -0.55844,-0.0333 -1.17986,-0.10767 -1.69162,-0.19227 -1.70381,-0.26543 -3.31179,-0.91211 -4.90329,-1.54975 -2.78885,-1.15285 -5.50854,-2.46371 -8.24924,-3.72479 -4.3615,-2.02781 -8.74166,-4.06848 -13.34935,-5.48198 -4.3478,-1.29871 -8.83742,-2.11117 -13.35765,-2.48781 -1.79407,-0.13665 -3.59394,-0.19266 -5.3931,-0.16717 z m 2.69243,14.36218 c 0.8639,0.008 1.74277,0.0286 2.57809,0.0774 0.35821,0.0161 0.70368,0.0458 1.084,0.0722 6.10239,0.47754 12.1368,2.04366 17.64042,4.73712 2.26129,1.11165 4.42455,2.42705 6.43142,3.95205 0.33453,0.25583 0.72537,0.56572 1.07262,0.85417 0.61833,0.51397 1.21684,1.05176 1.79546,1.61005 0.2474,0.2446 0.55565,0.54886 0.81667,0.82679 0.86774,0.928783 1.714,1.891073 2.39885,2.965053 0.70082,1.14082 1.09476,2.43517 1.37073,3.7364 0.37274,1.51365 1.08282,3.04469 2.39593,3.9604 1.56634,1.07803 3.85028,0.86165 5.22042,-0.44457 1.44159,-1.16233 2.25959,-2.86571 3.41409,-4.27647 0.12291,-0.14335 0.31485,-0.37013 0.47461,-0.53772 1.89813,-2.03736 4.37586,-3.41699 6.90812,-4.51103 1.74132,-0.75728 3.60766,-1.376713 5.42559,-1.781683 0.65181,-0.14594 1.37163,-0.27519 1.99173,-0.3686 1.97211,-0.29043 3.97586,-0.35292 5.96309,-0.20064 0.3261,0.0259 0.71797,0.0604 1.06795,0.0994 0.20396,0.0247 0.51346,0.0598 0.75775,0.0958 2.55909,0.36625 5.04993,0.93689 7.54295,1.639403 4.89717,1.39743 9.62991,3.39047 14.01314,5.9876 0.43421,0.26068 0.93077,0.56009 1.3818,0.84776 3.01997,1.92799 5.88601,4.13918 8.31978,6.7794 3.12482,3.40456 5.27948,7.57016 6.96884,11.83937 1.29921,3.31671 2.33768,6.7278 3.57749,10.06626 1.39086,3.84377 2.64657,7.7628 4.03231,11.61968 2.05316,5.8009 4.20852,11.56995 6.01149,17.45591 0.31121,1.0345 0.63669,2.12088 0.92215,3.16297 0.90982,3.27762 1.66253,6.60012 2.21585,9.95684 0.43048,2.66059 0.7735,5.39279 0.98644,8.10144 0.0388,0.47644 0.0706,1.00456 0.1078,1.50989 0.0249,0.45637 0.0574,0.98893 0.0798,1.47557 0.28554,6.71204 0,13.42936 -0.143,20.14116 -0.0566,2.02992 -0.13843,4.09579 -0.24746,6.11893 -0.2135,4.03906 -0.63359,8.11059 -0.86625,12.16887 -0.26335,4.69595 -0.0233,9.42526 0.81157,14.05642 0.99079,5.57323 2.69853,10.98953 4.1623,16.43946 0.84793,3.10705 1.77684,6.19158 2.77514,9.25377 1.98328,6.12247 4.05605,12.21642 6.01831,18.34621 1.72914,5.35528 3.41423,10.74136 4.97905,16.12677 1.20328,4.13013 2.32551,8.26319 3.29753,12.45283 0.33781,1.46164 0.67049,3.01281 0.95775,4.49379 0.32749,1.70668 0.61815,3.44512 0.83738,5.14539 0.2729,2.09008 0.44809,4.19339 0.50625,6.30064 0.0117,0.53078 0.0233,1.13141 0.0186,1.69007 0,0.65573 -0.0178,1.31129 -0.0435,1.9665 -0.0186,0.33477 -0.0356,0.75856 -0.0652,1.12698 -0.0807,1.07549 -0.22653,2.14543 -0.42188,3.20591 -0.0403,0.20088 -0.0858,0.45417 -0.13323,0.67716 -0.48686,2.31238 -1.12192,4.59186 -1.8212,6.84828 -0.97264,3.1169 -2.27556,6.12213 -4.03906,8.87815 -1.5448,2.42145 -3.39664,4.6476 -5.50376,6.6 -0.41319,0.38035 -0.88221,0.80423 -1.32999,1.18677 -1.33744,1.14914 -2.74522,2.21487 -4.19719,3.21471 -0.46158,0.31343 -0.98163,0.66407 -1.47485,0.97895 -3.25147,2.10472 -6.71852,3.84471 -10.1796,5.57231 -7.37428,3.64685 -14.88784,7.00358 -22.45096,10.23795 -10.17656,4.39642 -20.22905,9.06938 -30.26983,13.76454 -5.60829,2.60671 -11.21372,5.20863 -16.92392,7.57266 -0.74325,0.30496 -1.4388,0.58506 -2.19251,0.87068 -1.59165,0.6075 -3.24728,1.17235 -4.86544,1.61305 -0.88362,0.24038 -1.77555,0.45084 -2.67515,0.62181 1.64249,-2.00581 2.84614,-4.32666 3.85026,-6.70532 1.54691,-3.71024 2.51171,-7.64384 3.09256,-11.61497 0.66617,-4.7122 0.65073,-9.53862 -0.25157,-14.21887 -0.45786,-2.51287 -1.03189,-5.00982 -1.81817,-7.44135 -0.49447,-1.49568 -1.17217,-3.03327 -2.46071,-4.01303 -1.08197,-0.8455 -2.57731,-1.21522 -3.89848,-0.76173 -1.66432,0.54698 -2.87476,2.25667 -2.77827,4.01564 0.0266,1.15058 0.29979,2.2756 0.42221,3.41692 0.15279,1.10959 0.27334,2.21199 0.36861,3.31165 0.17804,2.05299 0.25523,4.16265 0.21442,6.24515 -0.0355,1.93023 -0.18359,3.88996 -0.43719,5.83353 -0.0648,0.48527 -0.12886,0.91885 -0.20321,1.40263 -0.0792,0.49823 -0.17684,1.0669 -0.27668,1.59029 -0.8552,4.60654 -2.35839,9.06814 -4.17159,13.38024 -0.48781,1.17645 -1.03673,2.38274 -1.51361,3.58535 -0.3135,0.83904 -0.67645,1.70893 -0.57687,2.62456 -1.2084,-0.046 -2.39258,-0.33945 -3.51607,-0.77719 -2.35551,-0.85265 -4.68645,-1.77086 -7.02081,-2.67925 -5.10731,-2.00861 -10.14004,-4.24261 -14.89811,-6.98875 -3.54213,-2.01722 -6.94525,-4.16558 -10.35637,-6.40902 -1.0602,-0.70003 -2.11852,-1.40302 -3.17191,-2.1133 0.37619,-7.12848 0.66369,-14.26399 0.66275,-21.40351 -0.003,-2.12687 -0.007,-4.2572 -0.1608,-6.37915 -0.1628,-1.59497 -0.64152,-3.15245 -1.39193,-4.56845 -1.03562,-2.18039 -2.55088,-4.17509 -4.56266,-5.53941 -2.43591,-1.76009 -5.24028,-2.8963 -7.991,-4.05996 -2.51204,-1.03326 -5.05001,-2.00248 -7.59511,-2.95089 4.66376,0.0354 9.33197,0.0219 13.98912,-0.25165 1.42388,-0.0907 2.85202,-0.20901 4.24296,-0.5426 1.89618,-0.44587 3.7677,-0.99188 5.63099,-1.55813 4.08056,-1.2649 8.0943,-2.74041 12.04716,-4.35905 2.12353,-0.89298 4.21532,-1.86119 6.26857,-2.90566 2.40889,0.97329 4.86225,1.83729 7.35957,2.55502 5.4458,1.64964 10.94586,3.12049 16.48406,4.42555 2.79286,0.59692 5.66053,0.65094 8.50297,0.77199 4.9889,0.15905 9.98107,0.20768 14.97214,0.26229 3.52451,0.0217 7.05221,0.0599 10.5737,-0.11134 2.85743,-0.14843 5.71416,-0.52207 8.46968,-1.31129 2.38996,-0.66253 4.73702,-1.46905 7.07873,-2.28328 3.18043,-1.12684 6.31565,-2.45978 9.13088,-4.34068 3.71575,-2.4601 6.79839,-5.79917 9.19828,-9.53872 2.02034,-3.13538 3.66232,-6.50076 5.08738,-9.94317 1.24608,-3.00538 1.38149,-6.30951 2.32055,-9.40298 1.40219,-5.07725 2.78778,-10.16737 3.70707,-15.3587 1.50627,-8.61814 2.88829,-17.26341 3.82292,-25.96449 0.39443,-3.75121 0.74596,-7.50959 0.92138,-11.27814 0.20761,-4.47346 0.14162,-8.95697 -0.13353,-13.42602 -0.61513,-10.5067 -2.26107,-20.956 -4.95262,-31.13168 -0.68616,-2.29815 -1.3897,-4.61641 -2.52946,-6.73718 -0.82521,-1.38362 -2.4558,-2.33223 -4.08637,-2.10922 -1.86904,0.20139 -3.48326,1.88144 -3.50963,3.77908 -0.0908,1.03741 0.008,2.09108 0.0209,3.10753 0.15999,4.27481 0.45476,8.57079 0.60048,12.82901 0.29957,9.54925 0.2245,19.10707 -0.0832,28.65509 -0.11098,3.19525 -0.2049,6.4084 -0.40343,9.60623 -0.17867,2.19995 -0.52261,4.38261 -0.86058,6.56262 -1.10175,6.80058 -2.37133,13.56554 -3.7294,20.32319 -0.72867,2.82179 -1.51905,5.62707 -2.28347,8.4393 -1.15232,4.17142 -2.31512,8.34289 -3.68063,12.45051 -0.4736,1.39168 -0.99466,2.79397 -1.54209,4.11601 -1.53224,3.6832 -3.36453,7.30072 -5.96449,10.35456 -1.85641,2.19506 -4.14213,4.01898 -6.68702,5.35506 -1.44842,0.75554 -2.95236,1.42128 -4.51896,1.89066 -1.18435,0.32738 -2.42546,0.32547 -3.64402,0.3865 -3.09341,0.10647 -6.18891,0.14327 -9.28372,0.18371 -3.94082,0.0406 -7.88294,0.0652 -11.82281,-0.0494 -0.6498,-0.0229 -1.36497,-0.0502 -2.04005,-0.0835 -2.68395,-0.12979 -5.38674,-0.34628 -8.05351,-0.80543 -0.63455,-0.10491 -1.26754,-0.22441 -1.87308,-0.34771 -3.1055,-0.63533 -6.20567,-1.57272 -9.14087,-2.82935 -1.07922,-0.47122 -2.19216,-1.00884 -3.1852,-1.57405 -1.91207,-1.10638 -3.76634,-2.44216 -5.02587,-4.28865 -0.0754,-1.19782 0.0245,-2.40291 0.0902,-3.60081 0.13482,-2.13501 0.14343,-4.27549 0.21766,-6.41308 0.0879,-3.32624 0.18585,-6.65041 0.37353,-9.9793 0.45839,-8.21959 1.22929,-16.46749 2.01749,-24.68075 1.26632,-13.12405 2.26923,-26.27787 2.7575,-39.45586 0.51919,-12.97229 0.96936,-25.94738 1.52636,-38.91813 0.16699,-3.61731 0.33759,-7.23722 0.58422,-10.83688 0.0542,-1.25392 0.4277,-2.48124 0.37547,-3.74069 -0.0498,-1.25958 -0.59074,-2.53994 -1.63084,-3.29379 -1.40029,-1.06302 -3.53687,-1.09606 -4.89402,0.0605 -1.14358,0.86589 -1.68884,2.24671 -2.19148,3.54032 -1.62598,4.25235 -2.34821,8.76885 -3.16366,13.22693 -1.55357,8.9286 -2.6557,17.92853 -3.63705,26.9359 -1.27194,11.86249 -2.2761,23.75218 -3.18568,35.64769 -0.66431,8.74881 -1.26042,17.50205 -1.84865,26.25634 -0.23806,3.38274 -0.48972,6.81804 -0.77887,10.18635 -0.24596,2.70694 -0.50486,5.40293 -0.85666,8.1095 -0.43684,3.25086 -0.94055,6.5378 -2.01058,9.66373 -0.925,2.69985 -2.32586,5.2637 -4.29373,7.34661 -1.59023,1.71198 -3.40909,3.25009 -5.27804,4.61034 -0.96695,0.70361 -1.97372,1.38566 -2.96759,2.0036 -2.50949,1.57119 -5.139,2.94886 -7.85085,4.13641 -0.88027,0.37972 -1.84396,0.78078 -2.77966,1.12813 -1.87526,0.70427 -3.75601,1.3002 -5.70782,1.76017 -1.26176,0.30591 -2.55561,0.46033 -3.85153,0.51505 -0.33462,0.0146 -0.75702,0.0245 -1.1262,0.0234 -4.24093,-0.0166 -8.41059,-0.93615 -12.50835,-1.94799 -1.10986,-0.27532 -2.19187,-0.53389 -3.29056,-0.86654 -0.15117,-0.0467 -0.41419,-0.13048 -0.60836,-0.19167 -0.58639,-0.19827 -1.13972,-0.39757 -1.69115,-0.63913 -2.57067,-1.10392 -5.01242,-2.62937 -6.88231,-4.73354 -0.55978,-0.64364 -1.04217,-1.40243 -1.12527,-2.2712 -0.0959,-0.5608 -0.17413,-1.19106 -0.22928,-1.71425 -0.2345,-2.44137 -0.32912,-4.89335 -0.4077,-7.34392 -0.0138,-0.65317 -0.0311,-1.37314 -0.0462,-2.052 -0.21613,-10.02091 -0.21692,-20.04474 -0.22982,-30.0675 0.0166,-7.26245 0.20748,-14.52294 0.35589,-21.78351 0.54225,-24.57191 1.27237,-49.18907 -0.36964,-73.73613 -0.0973,-1.22226 -0.13039,-2.45266 -0.30003,-3.66733 -0.31098,-1.25226 -1.04181,-2.45746 -2.16805,-3.129 -1.14305,-0.67572 -2.61554,-0.72975 -3.80469,-0.13894 -1.32601,0.6264 -2.19656,1.91521 -2.72962,3.23908 -0.52256,1.33668 -0.7727,2.75792 -1.06913,4.15652 -0.70702,3.65532 -1.15103,7.35535 -1.54991,11.05511 -0.80384,7.90406 -0.99912,15.85221 -1.21731,23.78919 -0.463,20.38382 -0.48879,40.77387 -0.70296,61.16102 -0.0834,7.87875 -0.16979,15.75805 -0.38162,23.63459 -0.0937,3.20773 -0.22207,6.4463 -0.46944,9.65887 -0.17083,1.87005 -0.35326,3.76797 -1.02207,5.5381 -0.99524,2.70293 -2.18493,5.41527 -4.15336,7.56273 -1.66694,1.82311 -3.95332,2.97527 -6.32385,3.58358 -0.6808,0.18562 -1.39883,0.33992 -2.0608,0.45673 -1.63236,0.29241 -3.30836,0.43901 -4.93987,0.52749 -5.2639,0.27532 -10.60949,-0.28976 -15.69405,-1.7377 -3.29173,-0.9655 -6.55447,-2.23445 -9.33813,-4.27782 -2.23808,-1.67025 -4.28255,-3.62793 -5.91579,-5.89964 -0.66515,-0.97219 -1.329,-2.02251 -1.44158,-3.2239 -0.0503,-0.34957 -0.0908,-0.80934 -0.11631,-1.20761 -0.0431,-0.63657 -0.0622,-1.36326 -0.10102,-2.03927 -0.38685,-8.9557 -0.50365,-17.92665 -0.57126,-26.89496 -0.11814,-20.67411 0.0337,-41.34985 0.45893,-62.01992 0.0786,-3.44571 0.16744,-6.8912 0.26731,-10.33636 0.11976,-3.39573 0.23311,-6.85095 0.436,-10.2417 0.09,-1.82313 0.27496,-3.63918 0.48757,-5.45155 0.28695,-2.5895 0.58647,-5.19639 0.43676,-7.80523 -0.13253,-1.39501 -0.7785,-2.81155 -1.98983,-3.58413 -1.47723,-0.97998 -3.57235,-0.80505 -4.9061,0.34689 -0.98944,0.83273 -1.4201,2.10437 -1.82359,3.28958 -1.5184,4.9471 -2.75321,9.97965 -3.78324,15.05036 -0.8501,4.53384 -1.10446,9.14912 -1.38342,13.74527 -0.46978,8.51098 -0.73361,17.03269 -0.99932,25.55176 -0.56085,18.66184 -0.93419,37.32863 -1.44793,55.99173 -0.11282,3.78354 -0.2458,7.56868 -0.43976,11.35499 -0.0925,1.63725 -0.17748,3.31408 -0.32052,4.96305 -0.0377,0.38537 -0.0781,0.85422 -0.12622,1.27119 -0.16361,1.30735 -0.29062,2.64471 -0.77703,3.88032 -0.28536,0.70306 -0.80488,1.3377 -1.53341,1.60456 -1.10421,0.43999 -2.31526,0.31256 -3.47617,0.34245 -2.38324,2.9e-4 -4.76511,-0.0919 -7.14737,-0.14821 -2.08828,-0.0719 -4.22031,-0.11904 -6.31183,-0.37054 -0.25057,-0.0331 -0.44785,-0.0621 -0.71242,-0.11121 -1.42462,-0.24435 -2.77623,-0.77966 -4.07773,-1.39387 -2.16398,-1.00585 -4.32511,-2.09442 -6.14814,-3.65746 -1.51735,-1.26296 -2.802394,-2.80139 -3.765054,-4.52573 -1.64384,-2.85944 -2.59341,-6.05027 -3.37274,-9.23644 -0.77776,-3.26582 -1.3534,-6.58456 -1.85265,-9.88017 -0.79249,-5.36218 -1.31783,-10.82724 -1.60727,-16.23664 -0.0974,-1.79437 -0.17012,-3.58524 -0.21449,-5.36768 -0.15881,-6.13364 -7.9e-4,-12.24602 0.32867,-18.36729 0.5538,-10.29496 1.54628,-20.60206 2.27525,-30.90497 0.68016,-9.54708 1.14458,-19.09791 2.13373,-28.6138 0.47996,-4.68736 1.16518,-9.38599 2.32899,-13.96988 0.41138,-1.67242 0.87224,-3.37334 1.34224,-5.00424 1.086114,-3.67439 2.310014,-7.31339 3.794594,-10.84732 1.02232,-2.36178 2.07293,-4.77316 3.78605,-6.72922 1.50028,-1.81444 3.1236,-3.52501 4.82825,-5.14819 0.55693,-0.52607 1.18056,-1.10184 1.75527,-1.61214 1.88115,-1.68333 3.85628,-3.2777 6.032,-4.56769 4.2537,-2.58203 8.89468,-4.55649 13.74763,-5.67985 0.36627,-0.0839 0.6763,-0.14799 1.04687,-0.22419 0.4298,-0.0864 0.93653,-0.17935 1.39871,-0.25232 0.5647,-0.0921 1.14676,-0.17308 1.68469,-0.23147 0.40275,-0.0477 0.82583,-0.0849 1.25817,-0.11761 1.65368,-0.10148 3.34682,-0.1864 4.96768,0.22457 0.89279,0.21981 1.71035,0.711 2.31063,1.40913 1.28854,1.42796 1.86828,3.30209 2.8282,4.93591 0.67056,1.12129 1.6639,2.16815 2.98128,2.46617 1.65096,0.40444 3.5721,-0.29539 4.4211,-1.80408 0.59904,-1.01815 0.77959,-2.20453 1.13058,-3.31709 0.90166,-3.24097 1.80048,-6.46897 2.98519,-9.61176 1.8344,-4.88244 4.15038,-9.63714 7.37941,-13.75893 2.68461,-3.43437 6.00061,-6.4242 9.86975,-8.46431 0.13205,-0.0688 0.33933,-0.17766 0.48535,-0.24918 1.12883,-0.5712 2.36292,-1.09293 3.58504,-1.52505 1.20745,-0.42969 2.50408,-0.80652 3.77807,-1.10599 1.4192,-0.31634 2.84724,-0.64492 4.30464,-0.71288 0.14323,-0.006 0.40184,-0.0128 0.59271,-0.009 1.29669,0.0492 2.5871,0.2097 3.87603,0.35465 3.89542,0.49443 7.77782,1.08665 11.6557,1.70249 3.61436,0.58434 7.25042,1.2082 10.85897,1.88751 0.69465,0.13541 1.38885,0.27361 2.07943,0.42863 -0.0837,1.9319 -0.27266,3.85646 -0.45974,5.78039 -0.11228,1.29404 -0.22241,2.59524 -0.16626,3.89447 0.13573,1.59211 1.24486,3.09136 2.79132,3.56443 1.71172,0.56941 3.73122,-0.10653 4.77966,-1.5692 1.25149,-1.55389 1.86343,-3.48791 2.5062,-5.34589 0.43018,-1.33484 0.99487,-2.66364 1.59597,-3.95413 0.25222,-0.54812 0.49188,-1.07777 0.74626,-1.6031 0.36523,-0.76702 0.7393,-1.5265 1.1166,-2.26432 1.20464,-2.35578 2.47523,-4.68059 3.8687,-6.93044 0.28175,-0.44988 0.57892,-0.90063 0.86182,-1.31332 0.33888,-0.49531 0.68508,-0.96087 1.03997,-1.42043 2.03622,-2.626993 4.48202,-4.926843 7.18347,-6.859133 0.15356,-0.10545 0.37108,-0.26393 0.52893,-0.37089 4.63265,-3.18979 9.93831,-5.33734 15.41608,-6.55814 2.07743,-0.45905 4.22982,-0.7452 6.32905,-0.87773 0.976,-0.0606 1.95384,-0.0842 2.93155,-0.0923 z M 212.17726,342.53493 c -1.80033,1.89448 -2.95547,4.29135 -3.83858,6.72487 -1.00533,2.83425 -1.70991,5.76498 -2.32838,8.70467 -0.14669,-0.68248 -0.25164,-1.44844 -0.3077,-2.0969 -0.29457,-3.434 0.46458,-6.9971 2.37565,-9.88949 0.64561,-0.96881 1.38442,-1.89542 2.2913,-2.63211 0.5673,-0.42832 1.2247,-0.73114 1.90962,-0.91618 -0.034,0.0351 -0.0679,0.0701 -0.10191,0.10514 z m 9.92223,7.41444 c 1.54798,0.2926 3.02829,0.84918 4.52373,1.33089 4.94065,1.67616 9.80023,3.58425 14.60709,5.61008 1.22441,0.52268 2.4342,1.05318 3.6272,1.60974 0.84185,0.4055 1.69994,0.78603 2.50975,1.25194 0.40664,0.2496 0.42773,0.76564 0.55518,1.17668 0.39222,1.91994 0.42486,3.89071 0.35578,5.84258 -0.0462,1.3104 -0.11299,2.71016 -0.20432,4.02113 -0.27403,4.05378 -0.67668,8.10133 -1.2887,12.11868 -0.0499,0.28427 -0.11109,0.66294 -0.16754,0.98321 0.0195,0.29335 -0.30528,0.0362 -0.47108,0.0333 -1.46507,-0.43341 -2.91542,-0.92376 -4.34926,-1.39948 -3.19539,-1.07541 -6.3568,-2.24961 -9.4961,-3.47866 -3.17466,-1.25291 -6.36692,-2.5735 -9.48628,-3.99705 -1.93923,-0.88536 -3.91366,-1.81718 -5.80886,-2.83995 -0.66617,-0.3606 -1.31105,-0.72993 -1.94922,-1.15951 -0.0659,-2.32381 0.18344,-4.64686 0.56349,-6.93673 0.30655,-1.77297 0.70675,-3.52952 1.19493,-5.26126 0.0782,-0.26132 0.18025,-0.6169 0.2686,-0.91414 0.605,-1.96037 1.31799,-3.9085 2.37608,-5.67408 0.61569,-0.9759 1.42372,-1.94018 2.5581,-2.30448 0.0271,-0.004 0.0543,-0.009 0.0814,-0.0129 z" /></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="48"
|
|
8
|
+
height="48"
|
|
9
|
+
viewBox="0 0 48 48"
|
|
10
|
+
xml:space="preserve"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
13
|
+
id="defs1" /><path
|
|
14
|
+
style="fill:#3366ff;fill-opacity:1;stroke-width:0.0823542"
|
|
15
|
+
d="M 14.070167,45.178696 C 11.916715,44.644163 10.209812,43.058826 9.2891605,41.068705 6.367923,36.092333 3.3993392,31.135382 0.70981752,26.02964 0.25901465,23.930802 0.36669283,21.61742 1.7408311,19.865396 4.6063238,14.918748 7.2900194,9.8553332 10.40795,5.0618513 c 1.304646,-1.8655409 3.640626,-2.6142282 5.840778,-2.4575347 5.762376,-0.015323 11.532545,-0.182588 17.290578,0.048516 2.211781,0.24828 4.063469,1.7858323 5.060369,3.7313556 3.021176,5.0623978 5.975171,10.1698778 8.780521,15.3548338 0.471207,2.010149 0.412851,4.273093 -0.861383,5.992056 -2.845827,5.018787 -5.606183,10.0969 -8.688871,14.974134 -1.569905,2.197251 -4.335319,2.803236 -6.881239,2.614938 -5.623042,0.03516 -11.262864,0.158799 -16.878536,-0.141469 z"
|
|
16
|
+
id="path1" /><path
|
|
17
|
+
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0302886"
|
|
18
|
+
d="m 25.076545,6.5873059 c -1.257202,0.013285 -2.464654,0.5382255 -3.430682,1.3242453 -0.378335,0.2830173 -0.716253,0.7054628 -1.225243,0.7266354 -1.190234,0.1093136 -2.42458,-0.091091 -3.578758,0.295786 -1.016281,0.3590645 -1.75754,1.1815314 -2.531253,1.8921684 -0.176334,0.149062 -0.327122,0.343782 -0.526093,0.456962 -1.029876,0.338776 -2.120448,0.523252 -3.088337,1.030147 -0.9933159,0.51971 -1.8067457,1.366912 -2.277696,2.385005 -0.6094503,1.29449 -0.8090024,2.732022 -0.9573037,4.141396 -0.1451291,1.740118 -0.1935297,3.486497 -0.2936159,5.229549 -0.049608,1.33561 -0.052201,2.674289 0.00807,4.009533 0.048387,0.881357 0.3142629,1.770893 0.8885453,2.455631 0.6383228,0.803112 1.5408939,1.392118 2.5430673,1.622504 0.804408,0.224131 1.67242,0.196687 2.458219,-0.08799 0.177308,-0.05971 0.350918,-0.130247 0.521338,-0.207341 0.935082,0.581921 2.030441,0.87693 3.12469,0.937037 0.309538,0.01167 0.620525,-4.97e-4 0.927141,-0.04561 0.0026,0.610537 0.08725,1.241056 0.417452,1.76831 0.488943,0.891765 1.293326,1.572293 2.193248,2.026693 0.858031,0.461347 1.77138,0.803742 2.670755,1.172978 0.35345,0.155029 0.756189,0.333826 1.133723,0.48804 1.020601,0.410963 2.022091,0.880596 3.078584,1.194069 0.662711,0.197016 1.364586,0.175946 2.040395,0.06512 1.188333,-0.12492 2.266443,-0.676314 3.352899,-1.132441 1.833945,-0.800404 3.704746,-1.529866 5.457996,-2.501438 0.7214,-0.438926 1.341671,-1.035055 1.866024,-1.693454 0.475723,-0.611532 0.693233,-1.380398 0.834132,-2.130493 0.07784,-0.634274 0.04471,-1.276646 0.03654,-1.914107 -0.03896,-0.909917 -0.227214,-1.807566 -0.45297,-2.687503 -0.283834,-1.038603 -0.699732,-2.03587 -0.969988,-3.078832 -0.153551,-0.551993 -0.31965,-1.186704 -0.428148,-1.751695 -0.125066,-0.782339 -0.121693,-1.578719 -0.163599,-2.368434 -0.06338,-1.369269 -0.06121,-2.748665 -0.287093,-4.104052 -0.103057,-0.65859 -0.366016,-1.273579 -0.611032,-1.88836 -0.18109,-0.60428 -0.251574,-1.236545 -0.440154,-1.839669 C 37.014356,11.17542 36.416868,10.015063 35.491287,9.1530709 34.856729,8.5265557 34.035785,8.0988556 33.173903,7.8838927 31.920813,7.6045926 30.638775,7.9077585 29.374072,7.834245 28.894402,7.7210857 28.465609,7.4588847 28.013987,7.2687663 27.100653,6.8216767 26.096392,6.5690701 25.076545,6.5873059 Z m 0.485737,2.3258008 c 0.896265,0.061612 1.833631,0.3817078 2.428472,1.0841881 0.149051,0.2113822 0.133722,0.5027612 0.311731,0.7029852 0.289835,0.43716 0.972314,0.497057 1.33885,0.124124 0.239104,-0.212238 0.35577,-0.551176 0.672241,-0.675855 0.501606,-0.2783383 1.10371,-0.3308501 1.653904,-0.1800932 0.857773,0.2047532 1.710854,0.5932572 2.305443,1.2617172 0.489897,0.608193 0.645581,1.39349 0.921655,2.106525 0.438292,1.332335 1.035929,2.636489 1.153852,4.050806 0.01706,0.181577 0.02843,0.353938 0.03188,0.509939 0.01706,0.54738 -0.0044,1.094883 -0.01646,1.642142 -0.109596,-0.38906 -0.199081,-0.816955 -0.48428,-1.119957 -0.347578,-0.352981 -0.988056,-0.320069 -1.283733,0.08217 -0.298532,0.359297 -0.161073,0.852286 -0.164365,1.276791 0.07488,1.333943 0.05953,2.679444 2.48e-4,3.999758 -0.04355,0.763342 -0.22039,1.51176 -0.352791,2.263044 -0.131205,0.675076 -0.337535,1.320602 -0.527883,1.985578 -0.204887,0.627711 -0.439565,1.319497 -1.008075,1.711097 -0.233438,0.155447 -0.503069,0.263306 -0.787918,0.239275 -0.909112,0.0072 -1.827226,0.06806 -2.729013,-0.07611 -0.45726,-0.09216 -0.928509,-0.224338 -1.300545,-0.517412 0.03631,-1.028577 0.06549,-2.058124 0.170034,-3.082804 0.170821,-1.737065 0.312113,-3.477746 0.360311,-5.223145 0.05732,-1.304588 0.0845,-2.611203 0.17444,-3.91392 0.10276,-0.412148 -0.06176,-0.90167 -0.464287,-1.084896 -0.433406,-0.223845 -0.999952,0.0018 -1.1893,0.444247 -0.32211,0.712304 -0.391089,1.503586 -0.522317,2.265827 -0.373005,2.638594 -0.531544,5.309983 -0.720269,7.959787 -0.06212,0.65022 -0.08402,1.347001 -0.278046,1.988555 -0.192376,0.578236 -0.751229,0.915307 -1.253504,1.198756 -0.526349,0.265901 -1.109479,0.52972 -1.714049,0.425289 -0.418916,-0.06713 -0.845792,-0.142601 -1.237617,-0.309992 -0.165222,-0.09559 -0.413207,-0.192694 -0.388945,-0.4217 -0.07025,-1.250744 -0.04856,-2.504878 -0.05379,-3.757161 0.0295,-3.007075 0.207784,-6.021313 -0.03768,-9.023803 -0.08848,-0.459509 -0.552987,-0.822067 -1.023877,-0.727876 -0.473305,0.07227 -0.761248,0.536363 -0.827491,0.978831 -0.311303,1.561877 -0.274701,3.163523 -0.31646,4.748155 -0.03886,2.339765 -0.01598,4.680834 -0.09657,7.019697 -0.01084,0.368378 -0.03987,0.74832 -0.236575,1.07113 -0.165098,0.372601 -0.609748,0.428752 -0.968732,0.448553 -0.68831,0.03557 -1.417984,-0.06264 -2.011299,-0.433487 -0.196915,-0.153974 -0.416705,-0.322136 -0.515715,-0.55594 -0.07657,-1.508922 -0.0676,-3.041535 -0.06757,-4.567962 0.0045,-1.590274 0.02571,-3.206429 0.06854,-4.779906 0.01153,-0.619357 0.06047,-1.236501 0.12261,-1.852341 0.04374,-0.385267 -0.0344,-0.830981 -0.378338,-1.062065 -0.42929,-0.323503 -1.114404,-0.126446 -1.312114,0.372185 -0.223585,0.592016 -0.357124,1.216084 -0.47603,1.836668 -0.153945,1.209753 -0.150265,2.432731 -0.201433,3.649515 -0.05832,1.912335 -0.08949,3.837554 -0.154695,5.737655 -0.0164,0.327814 -0.02299,0.656999 -0.06701,0.982611 -0.443135,-0.01286 -0.855561,0.005 -1.293197,-0.06064 C 10.401013,29.51835 9.9764847,29.274747 9.8233301,28.841212 9.5403306,28.079225 9.4599992,27.260035 9.3805962,26.456276 9.1953552,24.311334 9.5199696,22.170857 9.6317157,20.03139 c 0.084031,-1.196796 0.1352545,-2.415175 0.5272903,-3.560528 0.174774,-0.499647 0.322152,-1.043791 0.72108,-1.417901 0.473122,-0.520961 1.072431,-0.931542 1.752261,-1.127411 0.296593,-0.0874 0.608509,-0.148387 0.918552,-0.121627 0.156034,0.309204 0.32152,0.661367 0.672069,0.788529 0.451202,0.178568 1.012986,-0.08514 1.143872,-0.55733 0.247999,-0.889158 0.510575,-1.836169 1.192119,-2.500711 0.392138,-0.382844 0.934738,-0.611682 1.479595,-0.636505 0.69087,0.06882 1.376028,0.188048 2.059814,0.307019 -0.04401,0.363759 -0.06905,0.787279 0.218363,1.064638 0.367238,0.411215 1.096215,0.328123 1.38138,-0.137538 0.242959,-0.349791 0.303054,-0.786988 0.518799,-1.152628 0.268957,-0.547286 0.581112,-1.1055272 1.103966,-1.4492491 0.649135,-0.4483162 1.45436,-0.6681874 2.241403,-0.6170475 z m 11.29903,15.7706063 c 0.464917,1.482848 0.993159,2.947276 1.378593,4.454101 0.03504,0.140512 0.09379,0.38219 0.120041,0.518908 0.155357,0.738716 0.240142,1.526177 -0.01586,2.253386 -0.161253,0.659591 -0.563847,1.250144 -1.123807,1.635399 -0.710097,0.504799 -1.523429,0.836501 -2.307915,1.205618 -1.371309,0.592774 -2.731571,1.210463 -4.084165,1.844847 -0.286531,0.12905 -0.598827,0.28312 -0.875392,0.386387 0.263935,-0.87693 0.282849,-1.824396 0.03292,-2.706873 -0.09165,-0.42192 -0.298789,-0.884758 -0.74209,-1.028717 -0.483041,-0.183429 -1.062689,0.164784 -1.136246,0.673665 -0.04323,0.366654 0.08735,0.729484 0.07763,1.098123 0.03522,0.788738 -0.174459,1.566774 -0.49738,2.280671 -0.833356,-0.30178 -1.644592,-0.671149 -2.383993,-1.163411 -0.116079,-0.07278 -0.24095,-0.153949 -0.368342,-0.238466 0.03031,-0.808823 0.08258,-1.621821 0.02074,-2.429777 -0.06454,-0.406344 -0.272821,-0.789585 -0.56957,-1.073724 0.690289,-0.182501 1.366133,-0.424769 2.01233,-0.728846 0.727534,0.252024 1.473498,0.454956 2.226148,0.616051 0.809018,0.09107 1.626332,0.06546 2.43933,0.07978 0.658189,0.01317 1.326357,-0.0331 1.947728,-0.267108 0.711548,-0.217366 1.417542,-0.547051 1.905794,-1.127326 0.425223,-0.495674 0.735155,-1.088431 0.940435,-1.706158 0.09463,-0.478914 0.223891,-0.94925 0.347775,-1.42136 0.239304,-1.02151 0.379018,-2.063848 0.507062,-3.104297 0.01556,-0.141012 0.02724,-0.282394 0.04144,-0.423534 0.03562,0.124232 0.07114,0.248445 0.106755,0.372669 z m -15.66191,8.506426 c 0.563378,0.194502 1.11943,0.411459 1.661492,0.659449 0.0194,0.413355 -0.02792,0.827049 -0.06552,1.238358 -0.678252,-0.238704 -1.350119,-0.501431 -1.991948,-0.826865 0.04137,-0.3795 0.123118,-0.759609 0.280477,-1.108795 0.03849,0.01227 0.07699,0.02513 0.115486,0.03783 z"
|
|
19
|
+
id="path2" /></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="512"
|
|
8
|
+
height="511.99997"
|
|
9
|
+
viewBox="0 0 512 511.99999"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
12
|
+
<defs
|
|
13
|
+
id="defs1" />
|
|
14
|
+
<g
|
|
15
|
+
id="g1">
|
|
16
|
+
<path
|
|
17
|
+
id="path1"
|
|
18
|
+
style="fill:#000000;stroke-width:0.423233"
|
|
19
|
+
d="m 267.86802,29.637334 c -10.0632,0.171695 -20.05607,2.747811 -29.00402,7.340983 -6.75106,3.421997 -12.92882,7.88085 -18.65532,12.809296 -0.88209,0.733325 -1.8156,1.51642 -2.67403,2.208349 -0.66904,0.52914 -1.2731,1.01159 -1.96075,1.515208 -0.8202,0.60251 -1.66303,1.174499 -2.53197,1.704508 -0.17562,0.09905 -0.47857,0.287645 -0.70926,0.41075 -2.60488,1.506768 -5.57734,2.237595 -8.54483,2.588254 -0.4953,0.0596 -1.09737,0.1242 -1.63584,0.170608 -1.70855,0.154691 -3.4154,0.244768 -5.14773,0.298589 -9.55368,0.323178 -19.20427,-0.10573 -28.76692,0.711955 -5.97002,0.503688 -11.9659,1.694454 -17.39858,4.296641 -5.95001,2.829621 -11.12251,7.003727 -16.03297,11.339579 -7.02397,6.205421 -13.57141,12.923332 -20.61198,19.109295 -0.39654,0.276041 -0.90307,0.332441 -1.34533,0.518052 -4.96082,1.648329 -10.0502,2.998345 -15.096729,4.425539 -6.833451,1.92332 -13.685755,3.829 -20.33638,6.32817 -5.036399,1.92995 -9.796642,4.5369 -14.252662,7.56606 -5.977487,4.06976 -11.26884,9.15518 -15.50644,15.01894 -5.315134,7.322 -9.003531,15.70507 -11.663959,24.31987 -2.679199,8.7249 -4.38538,17.71571 -5.713604,26.73488 -0.793576,5.35046 -1.443947,10.72184 -1.927082,16.10925 -0.884777,9.71752 -1.371413,19.46542 -1.87227,29.20842 -0.680924,13.84298 -1.310389,27.69243 -2.086165,41.52309 -0.451344,8.45497 -0.512735,16.92425 -0.543423,25.38941 -0.01739,9.84561 0.02908,19.69561 0.472531,29.53263 0.375065,6.57122 1.276142,13.19232 3.614897,19.37837 1.991935,5.33916 5.08712,10.22688 8.843866,14.49689 2.979482,3.41844 6.29422,6.55725 9.943662,9.25325 5.358995,3.92822 11.454143,6.81598 17.840331,8.62754 4.108971,1.18729 8.31855,2.05778 12.577779,2.47318 7.367164,0.60702 14.800827,-0.7388 21.706277,-3.29098 2.960141,-1.07859 5.834541,-2.37507 8.687011,-3.7084 5.14939,3.11229 10.36284,6.20874 16.03137,8.29125 5.98239,2.26304 12.22994,3.76685 18.53377,4.80619 7.20703,1.14605 14.59994,1.31253 21.81558,0.14475 2.1928,-0.32596 4.37751,-0.7086 6.57608,-0.99818 0.10178,2.5347 0.0795,5.13603 0.1514,7.7024 0.10066,4.36786 0.29771,8.77335 1.31679,13.03872 0.64199,2.60028 1.69834,5.08098 2.98771,7.42332 4.98819,9.44879 12.6881,17.38257 21.79779,22.92878 6.06867,3.76952 12.51998,6.86947 19.00574,9.84475 6.72764,3.04348 13.60011,5.75132 20.4803,8.42688 5.34774,2.2163 10.59368,4.66723 15.93679,6.8943 5.5026,2.31303 11.03566,4.55366 16.53597,6.87252 8.30432,3.45807 16.61771,6.91953 25.13367,9.83032 4.31213,1.44402 8.75791,2.56023 13.29782,2.95573 3.65448,0.35271 7.35055,0.29984 10.98925,-0.19753 5.03285,-0.6176 10.13728,-1.17132 15.10249,-2.32613 4.99518,-1.15001 9.82641,-2.90088 14.59607,-4.75688 4.96741,-1.96457 9.87226,-4.08341 14.7794,-6.19318 8.02513,-3.47983 16.02031,-6.98802 24.0736,-10.39888 8.52796,-3.62802 17.10945,-7.15958 25.54386,-11.01385 8.3985,-3.81163 16.72509,-7.78354 24.94291,-11.97203 3.23931,-1.66679 6.47814,-3.35226 9.54871,-5.31791 4.79488,-3.13919 9.11507,-6.94126 13.22957,-10.91494 3.7694,-3.70033 7.34077,-7.63331 10.3556,-11.97965 2.27464,-3.37759 3.82366,-7.17494 5.17621,-10.99715 1.34238,-3.87964 2.39048,-7.85995 3.18325,-11.88677 0.5519,-2.94651 0.7207,-5.94687 0.76183,-8.93933 0.058,-3.77676 0.0307,-7.55429 0.0299,-11.33135 -0.0237,-5.89207 -0.22448,-11.8038 -1.14771,-17.63218 -0.71108,-4.8197 -1.5703,-9.61751 -2.55546,-14.38858 -1.91289,-9.05437 -4.52973,-17.94954 -7.59315,-26.67788 -1.33275,-3.84948 -2.69971,-7.68777 -3.94812,-11.56589 -2.40566,-7.57179 -4.6336,-15.28096 -6.64366,-22.9979 -1.33073,-5.07501 -2.58524,-10.21727 -3.63956,-15.37664 -0.12413,-0.62872 -0.26803,-1.32641 -0.38294,-1.95417 -0.46369,-2.39116 -0.78323,-4.80827 -0.96476,-7.23708 -0.51973,-6.13157 -0.81015,-12.26782 -1.09424,-18.42593 -0.74705,-16.94755 -1.00904,-33.92517 -2.43494,-50.83562 -0.59613,-6.72377 -1.43528,-13.45328 -3.10312,-20.00489 -0.9947,-3.94558 -2.33131,-7.79819 -3.89114,-11.5544 -1.40947,-3.40338 -2.88839,-6.79219 -3.88894,-10.3453 -0.88265,-3.03302 -1.35403,-6.16029 -2.02187,-9.24295 -1.86606,-9.04396 -4.09858,-18.07649 -7.79513,-26.567945 -2.38806,-5.545286 -5.15405,-10.941556 -8.45903,-15.999304 -2.84291,-4.319412 -6.17056,-8.31048 -9.82947,-11.960748 -3.48735,-3.546742 -7.25622,-6.863626 -11.52605,-9.442795 -3.40193,-2.09197 -6.98664,-3.880951 -10.66976,-5.421092 -4.41458,-1.816552 -9.05682,-3.107029 -13.80139,-3.67509 -9.231,-1.190021 -18.5671,-0.339413 -27.80273,0.124262 -3.38096,0.174078 -6.76379,0.311234 -10.14775,0.411076 -2.52913,0.04762 -5.14658,0.11553 -7.70679,-0.03147 -0.72015,-0.04289 -1.52144,-0.13883 -2.18134,-0.247933 -2.19703,-0.342257 -4.27048,-1.176154 -6.3227,-1.998367 -3.59616,-1.48657 -7.10316,-3.176899 -10.63724,-4.803041 -5.62407,-2.614834 -11.27221,-5.24623 -17.21374,-7.068924 -5.60641,-1.674657 -11.3957,-2.722306 -17.22446,-3.207975 -2.31341,-0.176216 -4.63432,-0.248447 -6.9543,-0.215571 z m 3.47184,18.519769 c 1.11398,0.01 2.24727,0.03695 3.32439,0.09994 0.46191,0.02085 0.90738,0.059 1.39781,0.09307 7.86892,0.615787 15.65018,2.635268 22.747,6.108441 2.91589,1.433448 5.70538,3.129637 8.2932,5.096101 0.43138,0.329884 0.93535,0.729466 1.38312,1.101428 0.79733,0.662771 1.56909,1.356229 2.31521,2.07613 0.31903,0.315408 0.71651,0.707741 1.05308,1.066136 1.11894,1.197638 2.21018,2.438506 3.09328,3.823367 0.90369,1.471088 1.41168,3.140135 1.76753,4.818038 0.48064,1.951827 1.39628,3.926076 3.08952,5.106859 2.01976,1.390111 4.96485,1.111086 6.73167,-0.573257 1.85891,-1.49881 2.91366,-3.695287 4.4024,-5.514434 0.1585,-0.184856 0.406,-0.477281 0.61195,-0.693369 2.44765,-2.627164 5.64265,-4.40617 8.90789,-5.816909 2.24542,-0.97651 4.65207,-1.775256 6.99618,-2.297441 0.84051,-0.188194 1.76874,-0.354848 2.56833,-0.475311 2.54305,-0.374502 5.12679,-0.455079 7.68929,-0.258734 0.42052,0.03341 0.92583,0.07786 1.37717,0.128127 0.26298,0.03177 0.66206,0.07714 0.97705,0.123498 3.2999,0.472276 6.51176,1.208107 9.72655,2.113989 6.31476,1.801954 12.41756,4.371945 18.06966,7.720897 0.55986,0.33614 1.20024,0.722238 1.78176,1.093174 3.89428,2.486111 7.58993,5.33741 10.72827,8.741904 4.02936,4.390131 6.80778,9.761594 8.98615,15.266671 1.67534,4.276832 3.01441,8.675372 4.61316,12.980262 1.79348,4.95646 3.41268,10.00999 5.1996,14.98336 2.64741,7.48016 5.42679,14.91925 7.75169,22.50907 0.40131,1.33398 0.82101,2.73484 1.18906,4.0786 1.1732,4.22644 2.14376,8.51074 2.85729,12.83916 0.55515,3.43079 0.99743,6.95391 1.27204,10.44667 0.0497,0.61436 0.0915,1.29536 0.13901,1.94696 0.0322,0.5885 0.0745,1.27522 0.10289,1.90273 0.3682,8.65505 0.003,17.31692 -0.18446,25.97166 -0.073,2.61755 -0.17851,5.28145 -0.31902,7.89025 -0.27534,5.2083 -0.81705,10.45846 -1.11702,15.69153 -0.33958,6.05535 -0.0303,12.15371 1.04647,18.12551 1.27765,7.18658 3.47973,14.17079 5.36719,21.19839 1.09338,4.00648 2.2912,7.98392 3.57854,11.93257 2.55734,7.8948 5.2302,15.75284 7.76048,23.65709 2.22967,6.90555 4.40263,13.8508 6.42039,20.79518 1.55158,5.32574 2.99874,10.65523 4.25211,16.0577 0.43562,1.88476 0.86461,3.88497 1.23499,5.79467 0.42234,2.20073 0.79711,4.44241 1.07979,6.63488 0.35192,2.69512 0.57784,5.4073 0.65279,8.12456 0.0148,0.68443 0.03,1.45893 0.0245,2.17931 0,0.84555 -0.0229,1.6909 -0.0561,2.53577 -0.0241,0.43168 -0.0462,0.97815 -0.0843,1.45322 -0.10407,1.38682 -0.29203,2.76649 -0.54394,4.13396 -0.0523,0.25904 -0.11076,0.58564 -0.17188,0.87319 -0.62777,2.98178 -1.4467,5.92112 -2.34835,8.83074 -1.25421,4.01918 -2.93432,7.89437 -5.20831,11.4482 -1.99203,3.12243 -4.37994,5.99301 -7.09702,8.51058 -0.53274,0.49046 -1.13757,1.03705 -1.715,1.53032 -1.72458,1.4818 -3.53983,2.85604 -5.41218,4.14531 -0.59517,0.40417 -1.26579,0.85631 -1.90179,1.26235 -4.19266,2.71399 -8.66345,4.95768 -13.12637,7.18539 -9.50904,4.70254 -19.19765,9.03099 -28.95009,13.20164 -13.12253,5.6691 -26.08501,11.6948 -39.03249,17.74913 -7.23175,3.3613 -14.45988,6.71644 -21.82309,9.76481 -0.95834,0.39324 -1.85522,0.75442 -2.82713,1.12273 -2.0524,0.78335 -4.18729,1.51171 -6.27398,2.07999 -1.13936,0.30997 -2.28949,0.58135 -3.44951,0.80182 2.11797,-2.58646 3.67005,-5.57915 4.96486,-8.64639 1.99472,-4.78429 3.23883,-9.85659 3.98782,-14.9773 0.85894,-6.0763 0.83912,-12.29987 -0.32438,-18.33497 -0.59042,-3.2403 -1.33062,-6.46007 -2.34454,-9.59549 -0.63761,-1.92865 -1.51146,-3.91135 -3.17305,-5.17473 -1.39518,-1.09026 -3.3234,-1.567 -5.02702,-0.98222 -2.14611,0.70531 -3.70696,2.90992 -3.58253,5.17808 0.0343,1.48365 0.38657,2.93435 0.54444,4.40605 0.19701,1.43081 0.35246,2.85233 0.47531,4.27032 0.22958,2.64729 0.32911,5.36767 0.27649,8.05301 -0.0457,2.489 -0.23674,5.01603 -0.56374,7.52223 -0.0835,0.62575 -0.16617,1.18484 -0.26204,1.80867 -0.10212,0.64245 -0.22804,1.37575 -0.35677,2.05065 -1.10278,5.94005 -3.04111,11.69319 -5.3792,17.25358 -0.62901,1.517 -1.33684,3.0725 -1.95176,4.62323 -0.40427,1.08194 -0.87228,2.20364 -0.74387,3.38433 -1.55822,-0.0592 -3.08519,-0.43771 -4.53391,-1.00217 -3.03739,-1.09948 -6.04309,-2.28349 -9.05321,-3.45485 -6.58578,-2.59006 -13.07539,-5.47076 -19.21083,-9.01186 -4.56753,-2.60117 -8.95578,-5.37144 -13.35437,-8.26431 -1.3671,-0.90269 -2.73179,-1.80917 -4.09011,-2.72508 0.48509,-9.19203 0.85581,-18.39314 0.8546,-27.59943 -0.004,-2.74256 -0.009,-5.48958 -0.20735,-8.2258 -0.20993,-2.05668 -0.82723,-4.06502 -1.79486,-5.89094 -1.33542,-2.81156 -3.28932,-5.38369 -5.88348,-7.14296 -3.14105,-2.2696 -6.75724,-3.73473 -10.30424,-5.23524 -3.23924,-1.33237 -6.51191,-2.58217 -9.79377,-3.80512 6.01384,0.0457 12.03341,0.0282 18.03873,-0.3245 1.83606,-0.117 3.67763,-0.26952 5.47122,-0.69967 2.44509,-0.57495 4.85838,-1.27901 7.26105,-2.00919 5.26181,-1.63106 10.43746,-3.53371 15.5346,-5.62091 2.73825,-1.15148 5.43558,-2.39996 8.0832,-3.7468 3.10623,1.25504 6.26979,2.36916 9.49004,3.29466 7.02226,2.12718 14.11449,4.02382 21.2559,5.70666 3.60134,0.76972 7.29915,0.83938 10.96442,0.99547 6.43307,0.20509 12.87039,0.2678 19.30633,0.33821 4.54478,0.0279 9.09369,0.0772 13.63459,-0.14356 3.68455,-0.19141 7.36825,-0.67321 10.92145,-1.69089 3.08185,-0.85432 6.10836,-1.89431 9.12796,-2.94425 4.1011,-1.45303 8.14385,-3.17184 11.77409,-5.59722 4.79143,-3.17226 8.76643,-7.47793 11.861,-12.3 2.60516,-4.04303 4.72244,-8.38263 6.56004,-12.82155 1.60684,-3.87538 1.78141,-8.136 2.99232,-12.12497 1.80809,-6.54703 3.5948,-13.11064 4.78021,-19.80476 1.94233,-11.11294 3.72442,-22.26087 4.92962,-33.48074 0.50862,-4.83712 0.96186,-9.68349 1.1881,-14.54296 0.26774,-5.76845 0.18264,-11.54984 -0.17218,-17.31262 -0.79319,-13.54819 -2.91561,-27.02238 -6.38636,-40.14372 -0.88475,-2.96343 -1.79192,-5.95279 -3.26167,-8.68749 -1.06413,-1.78414 -3.16666,-3.00735 -5.26928,-2.71979 -2.41007,0.25968 -4.49161,2.42608 -4.52563,4.87305 -0.11713,1.33773 0.01,2.69641 0.0274,4.00711 0.20632,5.51229 0.5864,11.05188 0.77431,16.54277 0.3863,12.31359 0.2895,24.63823 -0.10723,36.95023 -0.14307,4.12021 -0.26421,8.26351 -0.52018,12.38705 -0.23035,2.8368 -0.67393,5.65129 -1.1097,8.46238 -1.4207,8.76923 -3.05775,17.49253 -4.80895,26.20639 -0.93967,3.63864 -1.95881,7.25601 -2.9445,10.88232 -1.48593,5.37898 -2.98537,10.758 -4.74612,16.05472 -0.61072,1.79454 -1.28262,3.60277 -1.98852,5.30751 -1.97581,4.74942 -4.33848,9.41414 -7.69109,13.35201 -2.39384,2.8305 -5.34122,5.18242 -8.62285,6.90527 -1.86769,0.97424 -3.80698,1.8327 -5.82705,2.43797 -1.52724,0.42214 -3.12761,0.41968 -4.69893,0.49838 -3.98888,0.13728 -7.98043,0.18474 -11.97122,0.23688 -5.08159,0.0524 -10.16482,0.0841 -15.24521,-0.0637 -0.83791,-0.0295 -1.76017,-0.0647 -2.63063,-0.10761 -3.46096,-0.16737 -6.94614,-0.44653 -10.38488,-1.03859 -0.81823,-0.13528 -1.63447,-0.28937 -2.41529,-0.44836 -4.00449,-0.81925 -8.00211,-2.02801 -11.78699,-3.64841 -1.39163,-0.60763 -2.82676,-1.30087 -4.10726,-2.0297 -2.46558,-1.42665 -4.85662,-3.14912 -6.48076,-5.53014 -0.0972,-1.54456 0.0315,-3.09851 0.11636,-4.64318 0.17385,-2.75305 0.18496,-5.51316 0.28067,-8.26954 0.11331,-4.28913 0.23966,-8.57559 0.48166,-12.86814 0.59109,-10.59901 1.58515,-21.23452 2.60151,-31.82538 1.6329,-16.92322 2.92614,-33.88483 3.55576,-50.87761 0.66948,-16.72754 1.24996,-33.45867 1.96822,-50.18422 0.21533,-4.66445 0.43531,-9.33226 0.75333,-13.97396 0.0699,-1.61691 0.55151,-3.19951 0.48416,-4.82355 -0.0642,-1.62421 -0.76175,-3.27521 -2.10293,-4.24728 -1.80565,-1.37075 -4.56073,-1.41336 -6.31075,0.078 -1.47463,1.11655 -2.17773,2.89709 -2.82588,4.56518 -2.09667,5.48332 -3.02798,11.30727 -4.07949,17.05588 -2.00329,11.51327 -3.42447,23.11852 -4.68989,34.73335 -1.64016,15.29647 -2.935,30.62802 -4.10789,45.96706 -0.85662,11.28143 -1.62529,22.56857 -2.38379,33.85707 -0.30699,4.36198 -0.6315,8.79173 -1.00435,13.13511 -0.31716,3.49056 -0.651,6.96699 -1.10465,10.45705 -0.5633,4.19193 -1.21282,8.43037 -2.5926,12.4612 -1.19278,3.48141 -2.99915,6.78746 -5.53669,9.47333 -2.05057,2.20756 -4.39595,4.19093 -6.80594,5.94494 -1.24686,0.9073 -2.54507,1.7868 -3.82665,2.58362 -3.23594,2.02601 -6.62664,3.8025 -10.12353,5.33382 -1.13508,0.48965 -2.37775,1.0068 -3.58432,1.4547 -2.41812,0.90815 -4.8433,1.6766 -7.36013,2.2697 -1.62702,0.39447 -3.29541,0.5936 -4.96648,0.66416 -0.43149,0.0189 -0.97615,0.0316 -1.45221,0.0301 -5.46861,-0.0214 -10.84531,-1.20715 -16.12929,-2.51189 -1.43114,-0.35502 -2.82638,-0.68844 -4.24312,-1.11738 -0.19493,-0.0603 -0.53409,-0.16826 -0.78447,-0.24716 -0.75613,-0.25567 -1.46965,-0.51266 -2.18071,-0.82415 -3.31482,-1.42348 -6.46343,-3.39052 -8.87461,-6.10382 -0.72183,-0.82996 -1.34385,-1.8084 -1.45102,-2.92867 -0.12378,-0.72314 -0.22453,-1.53585 -0.29565,-2.21048 -0.30237,-3.14811 -0.42438,-6.30989 -0.52573,-9.46985 -0.0177,-0.84226 -0.0401,-1.77064 -0.0595,-2.64603 -0.27871,-12.92179 -0.27973,-25.84732 -0.29636,-38.77149 0.0214,-9.3648 0.26753,-18.72707 0.45891,-28.08944 0.69922,-31.68503 1.64071,-63.42842 -0.47663,-95.08141 -0.12553,-1.57608 -0.16815,-3.16266 -0.38689,-4.72896 -0.401,-1.61476 -1.3434,-3.16885 -2.79566,-4.03478 -1.47394,-0.87133 -3.37269,-0.941 -4.90608,-0.17916 -1.70986,0.80772 -2.83243,2.46963 -3.51981,4.17674 -0.67383,1.72361 -0.99637,3.55628 -1.37862,5.35974 -0.91168,4.71347 -1.48423,9.4846 -1.99857,14.25538 -1.03654,10.19214 -1.28836,20.44113 -1.5697,30.67572 -0.59703,26.28457 -0.63029,52.57716 -0.90646,78.86602 -0.10752,10.15952 -0.21894,20.31973 -0.49209,30.47638 -0.12085,4.13631 -0.28635,8.31239 -0.60533,12.45495 -0.22029,2.41139 -0.45553,4.85872 -1.31794,7.14128 -1.28335,3.48538 -2.81744,6.98289 -5.35569,9.752 -2.14949,2.35086 -5.09774,3.83655 -8.15448,4.62095 -0.87789,0.23936 -1.80377,0.43833 -2.65736,0.58895 -2.10491,0.37707 -4.26609,0.5661 -6.36988,0.68019 -6.7877,0.35503 -13.68075,-0.37364 -20.2372,-2.24073 -4.24462,-1.245 -8.45186,-2.88128 -12.04134,-5.51617 -2.88597,-2.15376 -5.52227,-4.67815 -7.62831,-7.60748 -0.85769,-1.25362 -1.71373,-2.60799 -1.85889,-4.15717 -0.0648,-0.45076 -0.11702,-1.04362 -0.14998,-1.55718 -0.0555,-0.82085 -0.0802,-1.75791 -0.13026,-2.6296 -0.49884,-11.54822 -0.64945,-23.1161 -0.73664,-34.68057 -0.15233,-26.65888 0.0434,-53.31988 0.59179,-79.97356 0.10135,-4.44319 0.2159,-8.88607 0.3447,-13.32855 0.15443,-4.37873 0.30058,-8.83417 0.56221,-13.20649 0.11603,-2.3509 0.35455,-4.69265 0.62871,-7.02968 0.37002,-3.3391 0.75624,-6.70063 0.56319,-10.06469 -0.17089,-1.79884 -1.00385,-3.62545 -2.56585,-4.62168 -1.90486,-1.26365 -4.60648,-1.0381 -6.32633,0.44732 -1.27586,1.07379 -1.83119,2.71354 -2.35147,4.24185 -1.95796,6.37919 -3.55022,12.86858 -4.878416,19.40716 -1.096203,5.84632 -1.424178,11.79763 -1.783914,17.72428 -0.605761,10.97476 -0.945966,21.96334 -1.288598,32.94854 -0.723201,24.0641 -1.204615,48.13459 -1.867075,72.20031 -0.145489,4.87882 -0.316963,9.75967 -0.567063,14.64205 -0.119321,2.11121 -0.228871,4.27345 -0.413314,6.39976 -0.04862,0.49693 -0.100779,1.10151 -0.162755,1.63918 -0.210967,1.68581 -0.374751,3.41031 -1.001966,5.0036 -0.367966,0.9066 -1.037866,1.72494 -1.977294,2.06905 -1.42387,0.56737 -2.985505,0.40305 -4.48247,0.44159 -3.073132,3.8e-4 -6.144509,-0.1185 -9.216406,-0.19112 -2.692791,-0.0927 -5.442018,-0.15349 -8.138975,-0.4778 -0.32311,-0.0427 -0.577503,-0.08 -0.918658,-0.14339 -1.837027,-0.3151 -3.579901,-1.00537 -5.258152,-1.79738 -2.790418,-1.29703 -5.577168,-2.70071 -7.927927,-4.71623 -1.956605,-1.62856 -3.613621,-3.61235 -4.854949,-5.83584 -2.119716,-3.68721 -3.344174,-7.80172 -4.349108,-11.91023 -1.002897,-4.21121 -1.745174,-8.49067 -2.38895,-12.74029 -1.021898,-6.91444 -1.699315,-13.96153 -2.072545,-20.93686 -0.125706,-2.31381 -0.21936,-4.62311 -0.276592,-6.92152 -0.204771,-7.90922 -0.0015,-15.79103 0.423821,-23.6843 0.714116,-13.27516 1.993908,-26.56597 2.933902,-39.85139 0.877049,-12.31079 1.475911,-24.62641 2.751398,-36.89698 0.618897,-6.04426 1.502482,-12.10305 3.003197,-18.01391 0.530476,-2.15655 1.124718,-4.34985 1.730786,-6.45287 1.400531,-4.73806 2.97872,-9.43048 4.893056,-13.98742 1.318267,-3.04547 2.673023,-6.15491 4.882041,-8.67722 1.934583,-2.33968 4.027827,-4.54542 6.225936,-6.63848 0.71815,-0.67837 1.522323,-1.42081 2.263405,-2.07884 2.425702,-2.17062 4.972586,-4.22653 7.778136,-5.88995 5.485082,-3.32948 11.469544,-5.87551 17.727322,-7.32406 0.472305,-0.10814 0.872087,-0.19083 1.349928,-0.28909 0.554219,-0.11143 1.207635,-0.23127 1.803606,-0.32536 0.728175,-0.11878 1.47874,-0.22318 2.172383,-0.29848 0.51934,-0.0615 1.06489,-0.10941 1.62239,-0.15166 2.13238,-0.13085 4.31566,-0.24035 6.40572,0.28958 1.15124,0.28344 2.20547,0.91682 2.97952,1.81706 1.66155,1.84132 2.40912,4.25798 3.64692,6.36476 0.86467,1.44589 2.14556,2.79578 3.8443,3.18008 2.12889,0.52151 4.60616,-0.3809 5.70094,-2.32633 0.77244,-1.31288 1.00526,-2.84269 1.45786,-4.27733 1.16266,-4.17917 2.32168,-8.34161 3.84934,-12.39419 2.36542,-6.29582 5.35185,-12.426925 9.51561,-17.741882 3.46176,-4.428571 7.73769,-8.283887 12.72687,-10.914574 0.17027,-0.08871 0.43756,-0.229082 0.62585,-0.321314 1.4556,-0.73656 3.04694,-1.40932 4.62285,-1.966526 1.55697,-0.554076 3.22895,-1.039994 4.87175,-1.426158 1.83003,-0.407909 3.67146,-0.831601 5.55076,-0.919249 0.18469,-0.0078 0.51816,-0.0164 0.76429,-0.01158 1.67206,0.06341 3.336,0.270405 4.99807,0.457311 5.02307,0.637575 10.02935,1.40122 15.0298,2.195345 4.66066,0.753485 9.34929,1.557944 14.00245,2.433893 0.89574,0.174612 1.79089,0.352814 2.68138,0.552712 -0.10793,2.491153 -0.35158,4.97284 -0.59282,7.45371 -0.14478,1.668645 -0.28679,3.346522 -0.21439,5.021838 0.17502,2.053016 1.60523,3.986264 3.59935,4.596284 2.20724,0.734244 4.81136,-0.137381 6.16329,-2.023459 1.61378,-2.003709 2.40286,-4.497595 3.23171,-6.893431 0.55471,-1.721247 1.28286,-3.434712 2.05797,-5.098769 0.32522,-0.706805 0.63426,-1.389774 0.96228,-2.06718 0.47097,-0.989051 0.95332,-1.968394 1.43984,-2.919793 1.55336,-3.037731 3.19176,-6.035529 4.98862,-8.93667 0.36331,-0.580118 0.7465,-1.161354 1.1113,-1.693505 0.43698,-0.638715 0.8834,-1.239037 1.34102,-1.831646 2.62567,-3.387442 5.77948,-6.353068 9.26296,-8.84471 0.19801,-0.135975 0.4785,-0.340324 0.68204,-0.478251 5.97372,-4.113188 12.81528,-6.882403 19.87876,-8.456601 2.67881,-0.591943 5.45428,-0.960935 8.1612,-1.131821 1.25852,-0.07823 2.51944,-0.108522 3.78017,-0.119034 z m -74.1948,328.447317 c -2.32148,2.4429 -3.81101,5.53362 -4.94977,8.67159 -1.29635,3.65472 -2.2049,7.43383 -3.0024,11.22451 -0.18915,-0.88005 -0.32449,-1.86772 -0.39678,-2.7039 -0.37984,-4.42809 0.59907,-9.02264 3.06337,-12.75233 0.83249,-1.24926 1.78517,-2.44411 2.95458,-3.39405 0.73152,-0.55232 1.57922,-0.9428 2.46242,-1.18139 -0.0438,0.0452 -0.0876,0.0904 -0.13142,0.13557 z m 12.79454,9.56078 c 1.9961,0.37731 3.90492,1.095 5.83327,1.71616 6.37089,2.16138 12.63723,4.62182 18.83558,7.23409 1.57886,0.674 3.13885,1.35807 4.67721,2.07573 1.08555,0.52289 2.19204,1.01358 3.23627,1.61436 0.52436,0.32185 0.55155,0.98729 0.7159,1.51731 0.50576,2.47572 0.54785,5.017 0.45877,7.53389 -0.0596,1.68974 -0.14569,3.49471 -0.26347,5.18519 -0.35335,5.22726 -0.87256,10.44651 -1.66175,15.62681 -0.0643,0.36657 -0.14324,0.85485 -0.21603,1.26783 0.0251,0.37826 -0.39366,0.0467 -0.60746,0.0429 -1.88917,-0.55887 -3.75938,-1.19118 -5.60829,-1.8046 -4.12039,-1.38672 -8.19698,-2.90084 -12.24505,-4.48567 -4.09366,-1.61561 -8.21002,-3.31849 -12.23238,-5.15412 -2.5006,-1.14165 -5.04659,-2.34323 -7.49042,-3.66207 -0.85902,-0.46498 -1.69057,-0.94123 -2.51348,-1.49517 -0.085,-2.99651 0.23654,-5.99203 0.72661,-8.94478 0.39528,-2.28622 0.91134,-4.55125 1.54083,-6.7843 0.10087,-0.33697 0.23244,-0.79548 0.34635,-1.17877 0.78014,-2.52785 1.69953,-5.03993 3.06392,-7.31662 0.79392,-1.25841 1.83587,-2.50182 3.29863,-2.97158 0.035,-0.005 0.07,-0.0113 0.10499,-0.0166 z" />
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
package/docs/nav-1.inc.html
CHANGED
|
@@ -7,7 +7,14 @@
|
|
|
7
7
|
>
|
|
8
8
|
<k-icon name="menu"></k-icon>
|
|
9
9
|
</button>
|
|
10
|
-
<a
|
|
10
|
+
<a
|
|
11
|
+
href="../"
|
|
12
|
+
class="d-if ph"
|
|
13
|
+
style="align-items: center"
|
|
14
|
+
>
|
|
15
|
+
<img src="../media/icon32.png" alt="Kempo UI Icon" class="pr" />
|
|
16
|
+
Kempo UI
|
|
17
|
+
</a>
|
|
11
18
|
<div class="flex"></div>
|
|
12
19
|
<a href="https://github.com/dustinpoissant/kempo-ui?tab=License-1-ov-file#creative-commons-attribution-noncommercial-sharealike-20"><k-icon name="license"></k-icont></a>
|
|
13
20
|
<a href="https://github.com/dustinpoissant/kempo-ui"><k-icon name="github-mark"></k-icont></a>
|
|
@@ -17,9 +24,11 @@
|
|
|
17
24
|
<k-side-menu
|
|
18
25
|
id="navSideMenu"
|
|
19
26
|
>
|
|
20
|
-
<h1>Kempo Docs</h1>
|
|
21
27
|
<menu>
|
|
22
|
-
<a href="../" class="
|
|
28
|
+
<a href="../" class="ta-center bb mb r0">
|
|
29
|
+
<h1 class="tc-primary">Kempo UI</h1>
|
|
30
|
+
<img src="../media/icon128.png" alt="Kempo UI Icon" />
|
|
31
|
+
</a>
|
|
23
32
|
<div class="pl mb">
|
|
24
33
|
<h3>Components</h3>
|
|
25
34
|
<a href="../components/accordion.html">Accordion</a>
|
package/docs/nav.inc.html
CHANGED
|
@@ -7,19 +7,29 @@
|
|
|
7
7
|
>
|
|
8
8
|
<k-icon name="menu"></k-icon>
|
|
9
9
|
</button>
|
|
10
|
-
<a
|
|
10
|
+
<a
|
|
11
|
+
href="./"
|
|
12
|
+
class="d-if ph"
|
|
13
|
+
style="align-items: center"
|
|
14
|
+
>
|
|
15
|
+
<img src="./media/icon32.png" alt="Kempo UI Icon" class="pr" />
|
|
16
|
+
Kempo UI
|
|
17
|
+
</a>
|
|
11
18
|
<div class="flex"></div>
|
|
12
|
-
<a href="https://github.com/dustinpoissant/kempo-ui?tab=License-1-ov-file#creative-commons-attribution-noncommercial-sharealike-20"><k-icon name="license"></k-icont></a>
|
|
13
|
-
<a href="https://github.com/dustinpoissant/kempo-ui"><k-icon name="github-mark"></k-icont></a>
|
|
19
|
+
<a href="https://github.com/dustinpoissant/kempo-ui?tab=License-1-ov-file#creative-commons-attribution-noncommercial-sharealike-20" target="_blank"><k-icon name="license"></k-icont></a>
|
|
20
|
+
<a href="https://github.com/dustinpoissant/kempo-ui" target="_blank"><k-icon name="github-mark"></k-icont></a>
|
|
14
21
|
<k-theme-switcher></k-theme-switcher>
|
|
15
22
|
</nav>
|
|
16
23
|
<div style="width: 100%; height: 4rem;"></div>
|
|
17
24
|
<k-side-menu
|
|
18
25
|
id="navSideMenu"
|
|
19
26
|
>
|
|
20
|
-
<h1>Kempo Docs</h1>
|
|
21
27
|
<menu>
|
|
22
|
-
<a href="./" class="
|
|
28
|
+
<a href="./" class="ta-center bb mb r0">
|
|
29
|
+
<h1 class="tc-primary">Kempo UI</h1>
|
|
30
|
+
<img src="./media/icon128.png" alt="Kempo UI Icon" />
|
|
31
|
+
</a>
|
|
32
|
+
|
|
23
33
|
<div class="pl mb">
|
|
24
34
|
<h3>Components</h3>
|
|
25
35
|
<a href="./components/accordion.html">Accordion</a>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import ShadowComponent from"./ShadowComponent.js";import{html,css}from"../lit-all.min.js";import{boolExists}from"../utils/propConverters.js";import"./Icon.js";import"./FocusCapture.js";const firstFocusable=e=>e.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')[0];export default class Dialog extends ShadowComponent{static properties={opened:{type:Boolean,reflect:!0,converter:boolExists},closeBtn:{type:Boolean,reflect:!0,attribute:"close-btn",converter:boolExists},overlayClose:{type:Boolean,reflect:!0,attribute:"overlay-close",converter:boolExists},confirmText:{type:String,reflect:!0,attribute:"confirm-text"},confirmClasses:{type:String,reflect:!0,attribute:"confirm-classes"},cancelText:{type:String,reflect:!0,attribute:"cancel-text"},cancelClasses:{type:String,reflect:!0,attribute:"cancel-classes"}};constructor(){super(),this.opened=!1,this.closeBtn=!0,this.overlayClose=!0,this.confirmText="",this.confirmClasses="success ml",this.cancelText="",this.cancelClasses="",this.confirmAction=()=>{},this.cancelAction=()=>{},this.closeCallback=()=>{},this.previousFocus=null}handleClick=e=>{const{target:t}=e,o=t.id||t.closest("[id]")?.id;"overlay"===o&&this.overlayClose||"close"===o?this.close():"cancel"===o?(this.cancelAction(e),e.defaultPrevented||this.close()):"confirm"===o&&(this.confirmAction(e),e.defaultPrevented||this.close())};handleKeydown=e=>{27
|
|
1
|
+
import ShadowComponent from"./ShadowComponent.js";import{html,css}from"../lit-all.min.js";import{boolExists}from"../utils/propConverters.js";import"./Icon.js";import"./FocusCapture.js";const firstFocusable=e=>e.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')[0];export default class Dialog extends ShadowComponent{static properties={opened:{type:Boolean,reflect:!0,converter:boolExists},closeBtn:{type:Boolean,reflect:!0,attribute:"close-btn",converter:boolExists},overlayClose:{type:Boolean,reflect:!0,attribute:"overlay-close",converter:boolExists},disableKeyboardClose:{type:Boolean,reflect:!0,attribute:"disable-keyboard-close",converter:boolExists},confirmText:{type:String,reflect:!0,attribute:"confirm-text"},confirmClasses:{type:String,reflect:!0,attribute:"confirm-classes"},cancelText:{type:String,reflect:!0,attribute:"cancel-text"},cancelClasses:{type:String,reflect:!0,attribute:"cancel-classes"}};constructor(){super(),this.opened=!1,this.closeBtn=!0,this.overlayClose=!0,this.disableKeyboardClose=!1,this.confirmText="",this.confirmClasses="success ml",this.cancelText="",this.cancelClasses="",this.confirmAction=()=>{},this.cancelAction=()=>{},this.closeCallback=()=>{},this.previousFocus=null}handleClick=e=>{const{target:t}=e,o=t.id||t.closest("[id]")?.id;"overlay"===o&&this.overlayClose||"close"===o?this.close():"cancel"===o?(this.cancelAction(e),e.defaultPrevented||this.close()):"confirm"===o&&(this.confirmAction(e),e.defaultPrevented||this.close())};handleKeydown=e=>{this.disableKeyboardClose||27!==e.keyCode||this.close()};connectedCallback(){super.connectedCallback()}disconnectedCallback(){super.disconnectedCallback(),window.removeEventListener("keydown",this.handleKeydown)}updated(e){super.updated(e),e.has("opened")&&this.dispatchEvent(new CustomEvent(this.opened?"opened":"close"))}open(){this.opened=!0,window.addEventListener("keydown",this.handleKeydown);const e=this.updateComplete||this.requestUpdate();e&&e.then?e.then(()=>{const e=this.shadowRoot.querySelector("[autofocus]")||firstFocusable(this.shadowRoot);e&&e.focus()}):setTimeout(()=>{const e=this.shadowRoot.querySelector("[autofocus]")||firstFocusable(this.shadowRoot);e&&e.focus()},0)}close(){this.opened=!1,this.blur(),this.closeCallback(),window.removeEventListener("keydown",this.handleKeydown)}toggle(){this.opened?this.close():this.open()}focus(){const e=firstFocusable(this.shadowRoot);e&&(this.previousFocus=document.activeElement,e.focus())}blur(){this.previousFocus&&this.previousFocus.focus()}hasTitle(){return!!this.querySelector('[slot="title"]')}static styles=css`
|
|
2
2
|
:host {
|
|
3
3
|
position: fixed;
|
|
4
4
|
top: 0;
|
|
@@ -117,4 +117,4 @@ import ShadowComponent from"./ShadowComponent.js";import{html,css}from"../lit-al
|
|
|
117
117
|
</div>
|
|
118
118
|
</k-focus-capture>
|
|
119
119
|
</div>
|
|
120
|
-
`}static create(e="",t={}){!1!==t.closeExisting&&document.querySelectorAll("k-dialog").forEach(e=>e.close());const{removeOnClose:o=!0,closeCallback:s=()=>{},title:i="",titleClasses:l="pyh px m0"}=t,
|
|
120
|
+
`}static create(e="",t={}){!1!==t.closeExisting&&document.querySelectorAll("k-dialog").forEach(e=>e.close());const{removeOnClose:o=!0,closeCallback:s=()=>{},title:i="",titleClasses:l="pyh px m0"}=t,a=new Dialog;if(Object.assign(a,{opened:!0,...t,closeCallback:(...e)=>{o&&a.remove(),s(...e)}}),i){const e=document.createElement("h5");e.slot="title",e.className=l,i instanceof HTMLElement?e.appendChild(i):e.innerHTML=i,a.appendChild(e)}if(e instanceof HTMLElement||e instanceof DocumentFragment)a.appendChild(e);else if(e){if(/<[^>]+>/.test(e))a.innerHTML+=e;else{const t=document.createElement("p");t.className="p",t.textContent=e,a.appendChild(t)}}return t.width&&a.style.setProperty("--width",t.width),t.minWidth&&a.style.setProperty("--min_width",t.minWidth),t.maxWidth&&a.style.setProperty("--max_width",t.maxWidth),t.height&&a.style.setProperty("--height",t.height),t.minHeight&&a.style.setProperty("--min_height",t.minHeight),t.maxHeight&&a.style.setProperty("--max_height",t.maxHeight),document.body.appendChild(a),a.open(),a}static confirm(e,t,o={}){return Dialog.create(e,{title:o.title||"Confirm",closeBtn:!1,overlayClose:!1,disableKeyboardClose:!0,confirmText:"Yes",confirmClasses:"success ml",confirmAction:()=>t(!0),cancelText:"No",cancelClasses:"danger",cancelAction:()=>t(!1),...o})}static alert(e,t=()=>{},o={}){return Dialog.create(e,{title:o.title||"Alert",closeCallback:t,cancelText:"Ok",...o})}static error(e,t=()=>{},o={}){return Dialog.create(e,{title:o.title||"Error",titleClasses:"pyh px m0 tc-danger",closeCallback:t,cancelText:"Ok",...o})}static success(e,t=()=>{},o={}){return Dialog.create(e,{title:o.title||"Success",titleClasses:"pyh px m0 tc-success",closeCallback:t,cancelText:"Ok",...o})}}customElements.define("k-dialog",Dialog);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import ShadowComponent from"./ShadowComponent.js";import{html,css,unsafeHTML}from"../lit-all.min.js";const cache={},getIconByPath=async t=>(cache[t]||(cache[t]=new Promise(async(e,n)=>{const o=(new AbortController).signal;try{const n=await fetch(t,{signal:o});200===n.status?e(await n.text()):404===n.status&&e(null)}catch(t){"AbortError"!==t.name&&n(t)}}).catch(()=>null)),await cache[t]),getIconByName=t=>{const e=async e=>getIconByPath(`${e}/${t}.svg`);return new Promise(async(t,n)=>{let o;const s=window.kempo?.
|
|
1
|
+
import ShadowComponent from"./ShadowComponent.js";import{html,css,unsafeHTML}from"../lit-all.min.js";const cache={},getIconByPath=async t=>(cache[t]||(cache[t]=new Promise(async(e,n)=>{const o=(new AbortController).signal;try{const n=await fetch(t,{signal:o});200===n.status?e(await n.text()):404===n.status&&e(null)}catch(t){"AbortError"!==t.name&&n(t)}}).catch(()=>null)),await cache[t]),getIconByName=t=>{const e=async e=>getIconByPath(`${e}/${t}.svg`);return new Promise(async(t,n)=>{let o;const s=window.kempo?.pathsToIcons||["/icons"];for(let t=0;t<s.length&&!o;t++)try{o=await e(s[t])}catch(t){}t(o||null)})};export default class Icon extends ShadowComponent{static properties={src:{type:String,reflect:!0},name:{type:String,reflect:!0},iconContent:{type:String}};constructor(t=""){super(),this.src="",this.name=t,this.iconContent=""}updated(t){super.updated(),(t.has("src")||t.has("name"))&&this.loadIcon()}async loadIcon(){let t;if(this.src?t=await getIconByPath(this.src):this.name&&(t=await getIconByName(this.name)),t)this.iconContent=this.fixSVG(t);else{const t=this.innerHTML.trim();this.iconContent=t?this.fixSVG(t):window.kempo?.fallbackIcon||'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path fill="currentColor" d="M480-79q-16 0-30.5-6T423-102L102-423q-11-12-17-26.5T79-480q0-16 6-31t17-26l321-321q12-12 26.5-17.5T480-881q16 0 31 5.5t26 17.5l321 321q12 11 17.5 26t5.5 31q0 16-5.5 30.5T858-423L537-102q-11 11-26 17t-31 6Zm0-80 321-321-321-321-321 321 321 321Zm-40-281h80v-240h-80v240Zm40 120q17 0 28.5-11.5T520-360q0-17-11.5-28.5T480-400q-17 0-28.5 11.5T440-360q0 17 11.5 28.5T480-320Zm0-160Z"/></svg>'}}fixSVG(t){if(!t)return t;const e=(new DOMParser).parseFromString(t,"image/svg+xml").querySelector("svg");return e?(e.removeAttribute("width"),e.removeAttribute("height"),e.querySelectorAll("path, rect, circle").forEach(t=>{t.setAttribute("fill","currentColor")}),(new XMLSerializer).serializeToString(e)):t}static styles=css`
|
|
2
2
|
:host {
|
|
3
3
|
display: inline-block;
|
|
4
4
|
vertical-align: bottom;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{LitElement}from"../lit-all.min.js";export default class ShadowComponent extends LitElement{#e;connectedCallback(){super.connectedCallback(),this.#e=new MutationObserver(()=>{console.log("MutationObserver fired for",this.constructor.name),this.childrenUpdated(),this.requestUpdate()}),this.#e.observe(this,{childList:!0})}disconnectedCallback(){super.disconnectedCallback(),this.#e?.disconnect()}childrenUpdated(){}createRenderRoot(){const e=this.attachShadow({mode:"open"}),t=document.createElement("link");t.rel="stylesheet",t.href=window.kempo?.
|
|
1
|
+
import{LitElement}from"../lit-all.min.js";export default class ShadowComponent extends LitElement{#e;connectedCallback(){super.connectedCallback(),this.#e=new MutationObserver(()=>{console.log("MutationObserver fired for",this.constructor.name),this.childrenUpdated(),this.requestUpdate()}),this.#e.observe(this,{childList:!0})}disconnectedCallback(){super.disconnectedCallback(),this.#e?.disconnect()}childrenUpdated(){}createRenderRoot(){const e=this.attachShadow({mode:"open"}),t=document.createElement("link");t.rel="stylesheet",t.href=window.kempo?.pathToStylesheet||"/kempo.min.css",e.appendChild(t);const n=this.constructor.styles;if(n){const t=document.createElement("style");Array.isArray(n)?t.textContent=n.map(e=>e.cssText||e).join("\n"):t.textContent=n.cssText||n,e.appendChild(t)}const s=document.createElement("div");return s.style.display="contents",e.appendChild(s),s}}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import ShadowComponent from"./ShadowComponent.js";import{html,css}from"../lit-all.min.js";import{boolTrueFalse}from"../utils/propConverters.js";import"./FocusCapture.js";import"./Icon.js";export default class SideMenu extends ShadowComponent{static properties={opened:{type:Boolean,reflect:!0},overlayClose:{type:Boolean,reflect:!0,attribute:"overlay-close",converter:boolTrueFalse},side:{type:String,reflect:!0}};constructor(){super(),this.opened=!1,this.overlayClose=!0,this.side="left"}overlayClick=()=>{this.overlayClose&&this.close()};updated(e){super.updated(e),e.has("opened")&&(this.opened?(this.dispatchEvent(new CustomEvent("change",{detail:"open"})),this.dispatchEvent(new CustomEvent("open"))):(this.dispatchEvent(new CustomEvent("change",{detail:"close"})),this.dispatchEvent(new CustomEvent("close"))))}open(){this.opened=!0}close(){this.opened=!1}toggle(){this.opened?this.close():this.open(),this.dispatchEvent(new CustomEvent("toggle"))}render(){return html`
|
|
1
|
+
import ShadowComponent from"./ShadowComponent.js";import{html,css}from"../lit-all.min.js";import{boolTrueFalse}from"../utils/propConverters.js";import"./FocusCapture.js";import"./Icon.js";export default class SideMenu extends ShadowComponent{static properties={opened:{type:Boolean,reflect:!0},overlayClose:{type:Boolean,reflect:!0,attribute:"overlay-close",converter:boolTrueFalse},side:{type:String,reflect:!0}};constructor(){super(),this.opened=!1,this.overlayClose=!0,this.side="left"}overlayClick=()=>{this.overlayClose&&this.close()};updated(e){super.updated(e),e.has("opened")&&(this.opened?(document.body.style.overflow="hidden",this.dispatchEvent(new CustomEvent("change",{detail:"open"})),this.dispatchEvent(new CustomEvent("open"))):(document.body.style.overflow="",this.dispatchEvent(new CustomEvent("change",{detail:"close"})),this.dispatchEvent(new CustomEvent("close"))))}open(){this.opened=!0}close(){this.opened=!1}toggle(){this.opened?this.close():this.open(),this.dispatchEvent(new CustomEvent("toggle"))}render(){return html`
|
|
2
2
|
<k-focus-capture>
|
|
3
3
|
<div id="container">
|
|
4
4
|
<button id="overlay" @click=${this.overlayClick}>
|
package/docs/styles.css
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
/* Common styles for documentation pages */
|
|
2
2
|
|
|
3
|
+
/* Reserve scrollbar space to prevent layout shifts when disabling scroll */
|
|
4
|
+
html {
|
|
5
|
+
scrollbar-gutter: stable;
|
|
6
|
+
}
|
|
7
|
+
|
|
3
8
|
/* Offset anchor links to account for fixed navigation */
|
|
4
9
|
h1[id], h2[id], h3[id], h4[id], h5[id], h6[id] {
|
|
5
10
|
scroll-margin-top: 4rem;
|
package/docs/utils/debounce.html
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>debounce - Kempo UI</title>
|
|
7
|
+
<link rel="icon" type="image/png" sizes="48x48" href="../media/icon48.png">
|
|
8
|
+
<link rel="manifest" href="../manifest.json" />
|
|
7
9
|
<link rel="stylesheet" href="../kempo-vars.css" />
|
|
8
10
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
11
|
<link rel="stylesheet" href="../kempo-hljs.css" />
|
package/docs/utils/drag.html
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>drag - Kempo UI</title>
|
|
7
|
+
<link rel="icon" type="image/png" sizes="48x48" href="../media/icon48.png">
|
|
8
|
+
<link rel="manifest" href="../manifest.json" />
|
|
7
9
|
<link rel="stylesheet" href="../kempo-vars.css" />
|
|
8
10
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
11
|
<link rel="stylesheet" href="../kempo-hljs.css" />
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>formatTimestamp - Kempo UI</title>
|
|
7
|
+
<link rel="icon" type="image/png" sizes="48x48" href="../media/icon48.png">
|
|
8
|
+
<link rel="manifest" href="../manifest.json" />
|
|
7
9
|
<link rel="stylesheet" href="../kempo-vars.css" />
|
|
8
10
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
11
|
<link rel="stylesheet" href="../kempo-hljs.css" />
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>propConverters - Kempo UI</title>
|
|
7
|
+
<link rel="icon" type="image/png" sizes="48x48" href="../media/icon48.png">
|
|
8
|
+
<link rel="manifest" href="../manifest.json" />
|
|
7
9
|
<link rel="stylesheet" href="../kempo-vars.css" />
|
|
8
10
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
11
|
<link rel="stylesheet" href="../kempo-hljs.css" />
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>toTitleCase - Kempo UI</title>
|
|
7
|
+
<link rel="icon" type="image/png" sizes="48x48" href="../media/icon48.png">
|
|
8
|
+
<link rel="manifest" href="../manifest.json" />
|
|
7
9
|
<link rel="stylesheet" href="../kempo-vars.css" />
|
|
8
10
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
11
|
<link rel="stylesheet" href="../kempo-hljs.css" />
|