@leuffen/themejs1 5.0.3 → 5.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_tpl/_root/.editorconfig +34 -0
- package/_tpl/_root/.gitattributes +8 -0
- package/_tpl/_root/.kick.yml +40 -0
- package/_tpl/_root/docs/_config.yml +37 -0
- package/_tpl/_root/docs/_data/defaults.yaml +10 -0
- package/_tpl/_root/docs/_data/general.yml +44 -0
- package/_tpl/_root/docs/_data/languages.yml +4 -0
- package/_tpl/_root/docs/_data/openhours.yml +55 -0
- package/_tpl/_root/docs/_data/openhours.yml.d.json +84 -0
- package/_tpl/_root/docs/_data/openhours.yml.d.ts +31 -0
- package/_tpl/_root/docs/_data/translations.yml +2 -0
- package/_tpl/_root/docs/_includes/dist/index_embed.js +41 -0
- package/_tpl/_root/docs/_includes/dist/index_embed.js.map +1 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.css +1 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.css.map +1 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.js +4 -0
- package/_tpl/_root/docs/_includes/dist/style_embed.js.map +1 -0
- package/_tpl/_root/docs/_includes/do/link.html +1 -0
- package/_tpl/_root/docs/_includes/do/remove-line-breaks.html +9 -0
- package/_tpl/_root/docs/_includes/do/trans.html +1 -0
- package/_tpl/_root/docs/_includes/el/address.html +11 -0
- package/_tpl/_root/docs/_includes/el/navbar.html +22 -0
- package/_tpl/_root/docs/_includes/el/openhours.html +14 -0
- package/_tpl/_root/docs/_includes/el/pagebuilder-link.html +1 -0
- package/_tpl/_root/docs/_includes/el/tag-link-list.html +7 -0
- package/_tpl/_root/docs/_includes/footer.md +33 -0
- package/_tpl/_root/docs/_includes/fragments.html +39 -0
- package/_tpl/_root/docs/_includes/global.md +15 -0
- package/_tpl/_root/docs/_layouts/0_blanc.html +88 -0
- package/_tpl/_root/docs/_layouts/1_body.html +13 -0
- package/_tpl/_root/docs/_layouts/2_script.html +18 -0
- package/_tpl/_root/docs/_layouts/3_1_navbar.html +36 -0
- package/_tpl/_root/docs/_layouts/3_2_footer.html +18 -0
- package/_tpl/_root/docs/_layouts/3_3_1_content.html +13 -0
- package/_tpl/_root/docs/_layouts/3_3_main.html +7 -0
- package/_tpl/_root/docs/_layouts/article.html +25 -0
- package/_tpl/_root/docs/_layouts/legal/impressum.html +46 -0
- package/_tpl/_root/docs/_layouts/legal.html +17 -0
- package/_tpl/_root/docs/_layouts/website.html +9 -0
- package/_tpl/_root/docs/assets/dist/index.js +5128 -0
- package/_tpl/_root/docs/assets/dist/index.js.LICENSE.txt +5 -0
- package/_tpl/_root/docs/assets/dist/index.js.map +1 -0
- package/_tpl/_root/docs/assets/dist/polyfill-custom-elements.js +3 -0
- package/_tpl/_root/docs/assets/dist/style.css +5 -0
- package/_tpl/_root/docs/assets/dist/style.css.map +1 -0
- package/_tpl/_root/docs/assets/dist/style.js +4 -0
- package/_tpl/_root/docs/assets/dist/style.js.map +1 -0
- package/_tpl/_root/docs/assets/dist/style_custom.css +5 -0
- package/_tpl/_root/docs/assets/dist/style_custom.js +4 -0
- package/_tpl/_root/docs/assets/dist/style_late.css +1 -0
- package/_tpl/_root/docs/assets/dist/style_late.css.map +1 -0
- package/_tpl/_root/docs/assets/dist/style_late.js +4 -0
- package/_tpl/_root/docs/assets/dist/style_late.js.map +1 -0
- package/_tpl/_root/docs/assets/leuffen-logo-big.svg +57 -0
- package/_tpl/_root/docs/assets/logo.png +0 -0
- package/_tpl/_root/docs/assets/logo.webp +0 -0
- package/_tpl/_root/package.json +28 -0
- package/_tpl/_root/src/_variables.scss +35 -0
- package/_tpl/_root/src/index.ts +5 -0
- package/_tpl/_root/src/index_embed.ts +4 -0
- package/_tpl/_root/src/style.scss +10 -0
- package/_tpl/_root/src/style_custom.scss +34 -0
- package/_tpl/_root/src/style_embed.scss +4 -0
- package/_tpl/_root/src/style_late.scss +3 -0
- package/_tpl/_root/tsconfig.json +20 -0
- package/_tpl/_root/webpack.config.js +76 -0
- package/_tpl/pages/praxis-gallery.de.md +34 -0
- package/package.json +3 -3
- package/sections/hero-max/hero-max.scss +1 -0
- package/sections/sec-card-2col/sec-card-2col.scss +17 -13
- package/sections/sec-card-2col/sec-card-2col.ts +12 -5
- package/themes/theme2/index.scss +201 -0
- package/themes/theme2/theme1.dev.ts +127 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Template file from [kickstart-skel](.kicker/KICKSTART_README.md)
|
|
2
|
+
|
|
3
|
+
# top-most EditorConfig file
|
|
4
|
+
root = true
|
|
5
|
+
|
|
6
|
+
# Unix-style newlines with a newline ending every file
|
|
7
|
+
[*]
|
|
8
|
+
end_of_line = lf
|
|
9
|
+
charset = utf-8
|
|
10
|
+
insert_final_newline = true
|
|
11
|
+
indent_size = 4
|
|
12
|
+
indent_style = space
|
|
13
|
+
|
|
14
|
+
# Matches multiple files with brace expansion notation
|
|
15
|
+
# Set default charset
|
|
16
|
+
[*.{js,php,scss,css,ts}]
|
|
17
|
+
charset = utf-8
|
|
18
|
+
trim_trailing_whitespace = true
|
|
19
|
+
indent_size = 4
|
|
20
|
+
|
|
21
|
+
# 4 space indentation
|
|
22
|
+
[*.php]
|
|
23
|
+
indent_style = space
|
|
24
|
+
indent_size = 4
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# Indentation override for all JS under lib directory
|
|
28
|
+
[*.js]
|
|
29
|
+
indent_style = space
|
|
30
|
+
indent_size = 4
|
|
31
|
+
|
|
32
|
+
[*.html]
|
|
33
|
+
indent_style = space
|
|
34
|
+
indent_size = 4
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Kickstart container config file - see https://gitub.com/infracamp/kickstart
|
|
2
|
+
# Run ./kickstart.sh to start a development-container for this project
|
|
3
|
+
version: 1
|
|
4
|
+
from: "ghcr.io/nfra-project/kickstart-flavor-jekyll:2.1"
|
|
5
|
+
ports: "80:80;4000:4000;4100:4100"
|
|
6
|
+
|
|
7
|
+
command:
|
|
8
|
+
build:
|
|
9
|
+
# - "yarn install"
|
|
10
|
+
|
|
11
|
+
jekyll: |
|
|
12
|
+
jekyll serve -s /opt/docs -d /var/www/html --drafts --livereload --port 4000 --livereload-port 4100 --host 0.0.0.0
|
|
13
|
+
|
|
14
|
+
dev:
|
|
15
|
+
- killall jekyll || echo "no job"
|
|
16
|
+
- killall webpack || echo "no job"
|
|
17
|
+
- "D:setsid kick jekyll"
|
|
18
|
+
- "D:webpack build --watch"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
init-workspaces:
|
|
22
|
+
- "mkdir -p workspaces"
|
|
23
|
+
- "git -C ./workspaces/ clone git@github.com:leuffen/liscom.git"
|
|
24
|
+
- "git -C ./workspaces/ clone git@github.com:leuffen/themejs1.git"
|
|
25
|
+
- "git -C ./workspaces/ clone git@github.com:leuffen/jodastyle.git"
|
|
26
|
+
- "git -C ./workspaces/ clone git@github.com:leuffen/isl-base.git"
|
|
27
|
+
- "git -C ./workspaces/ clone git@github.com:kasimirjs/kasi-embed.git"
|
|
28
|
+
- "npm install"
|
|
29
|
+
- "composer install"
|
|
30
|
+
|
|
31
|
+
update:
|
|
32
|
+
- "npm update"
|
|
33
|
+
- "composer update"
|
|
34
|
+
- "webpack build"
|
|
35
|
+
|
|
36
|
+
check:
|
|
37
|
+
- "linkchecker --no-status http://localhost:4000"
|
|
38
|
+
|
|
39
|
+
killall:
|
|
40
|
+
- killall jekyll
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Changes to this file will NOT be reloaded in jekyll --watch mode! Restart
|
|
2
|
+
# jekyll after updating this file!
|
|
3
|
+
|
|
4
|
+
google_analytics:
|
|
5
|
+
show_downloads: true
|
|
6
|
+
|
|
7
|
+
# Make directory-style links
|
|
8
|
+
#permalink: pretty
|
|
9
|
+
#exclude: ['assets']
|
|
10
|
+
|
|
11
|
+
sass:
|
|
12
|
+
sass_dir: _sass_disabled
|
|
13
|
+
|
|
14
|
+
livereload: true
|
|
15
|
+
|
|
16
|
+
defaults:
|
|
17
|
+
- scope:
|
|
18
|
+
path: ""
|
|
19
|
+
values:
|
|
20
|
+
layout: "default"
|
|
21
|
+
- scope:
|
|
22
|
+
path: "_posts"
|
|
23
|
+
values:
|
|
24
|
+
layout: "post"
|
|
25
|
+
|
|
26
|
+
collections:
|
|
27
|
+
elements:
|
|
28
|
+
output: false
|
|
29
|
+
snippets:
|
|
30
|
+
output: false
|
|
31
|
+
|
|
32
|
+
collections_dir: .
|
|
33
|
+
|
|
34
|
+
plugins:
|
|
35
|
+
- jekyll-optional-front-matter
|
|
36
|
+
- jekyll-sitemap
|
|
37
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
default_icon_class: bi bi-pen
|
|
2
|
+
|
|
3
|
+
footer_leuffen_logo_url: https://leuffen.de/assets/leuffen-logo-white.svg
|
|
4
|
+
footer_leuffen_logo_alt: "Webdesign & Websites für Ärzte und Arztpraxen von leuffen.de"
|
|
5
|
+
footer_leuffen_logo_href: https://leuffen.de
|
|
6
|
+
|
|
7
|
+
footer_leuffen_text: Webdesign für Arztpraxen
|
|
8
|
+
footer_leuffen_text_href: https://med.leuffen.de
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
pagebuilder: https://pagebuilder.leuffen.de/e/falk-k43/default
|
|
2
|
+
site_base_url: https://www.praxis-dr-falk.de
|
|
3
|
+
subscription_id: falk-k43
|
|
4
|
+
|
|
5
|
+
# Titel der Website
|
|
6
|
+
title: Praxis Dr. Heike Falk - hausärztlich internistische Praxis in Freudenstadt-Wittlensweiler
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# Name der Praxis
|
|
10
|
+
name: Praxis Dr. Heike Falk
|
|
11
|
+
name2: ~
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# Kurzbeschreibung
|
|
15
|
+
desc: Fachärztin für Innere Medizin
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
logoalt: Dr. Heike Falk
|
|
19
|
+
street: Ortsstr. 13
|
|
20
|
+
zip: 72250
|
|
21
|
+
city: Freudenstadt-Wittlensweiler
|
|
22
|
+
|
|
23
|
+
termin_url: ~
|
|
24
|
+
map_url: "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d286.188825789242!2d8.449496546318292!3d48.47202968557242!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x479735c1aeacb92d%3A0x9eeaecce18dcfa29!2sOrtsstra%C3%9Fe%2013%2C%2072250%20Freudenstadt!5e0!3m2!1sde!2sde!4v1695118965248!5m2!1sde!2sde"
|
|
25
|
+
map_link: "https://www.google.com/maps/place/Ortsstr.+13+%2C+72250+Freudenstadt-Wittlensweiler/@,"
|
|
26
|
+
|
|
27
|
+
datenschutzbeauftragter: |
|
|
28
|
+
bildnachweise: |
|
|
29
|
+
Bilder von Andreas Metz
|
|
30
|
+
<br>Bilder von <a href="https://stock.adobe.com">Adobe Stock</a>
|
|
31
|
+
# Telefonnummer wie sie angezeigt wird
|
|
32
|
+
phone1_text: "(0 74 41) 81 605"
|
|
33
|
+
# Telefonnummer mit länderprefix für tel: links (ohne space)
|
|
34
|
+
phone1: "+49744181605"
|
|
35
|
+
fax1_text: "(07441) 51 722"
|
|
36
|
+
|
|
37
|
+
email: mail@praxis-dr-falk.de
|
|
38
|
+
domain:
|
|
39
|
+
|
|
40
|
+
tools:
|
|
41
|
+
googlemaps: true
|
|
42
|
+
jameda: false
|
|
43
|
+
recaptcha: false
|
|
44
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
_editor: openhours/v1
|
|
2
|
+
table:
|
|
3
|
+
-
|
|
4
|
+
day: Mo
|
|
5
|
+
time: '08:15 - 12:00<br>16:00 - 18:30'
|
|
6
|
+
-
|
|
7
|
+
day: Di
|
|
8
|
+
time: '08:15 - 12:00'
|
|
9
|
+
-
|
|
10
|
+
day: Mi
|
|
11
|
+
time: '08:15 - 12:00'
|
|
12
|
+
-
|
|
13
|
+
day: Do
|
|
14
|
+
time: '16:00 - 19:00'
|
|
15
|
+
-
|
|
16
|
+
day: Fr
|
|
17
|
+
time: '08:15 - 12:00'
|
|
18
|
+
json:
|
|
19
|
+
-
|
|
20
|
+
dayOfWeek: 1
|
|
21
|
+
from: '8:15'
|
|
22
|
+
till: '12:00'
|
|
23
|
+
status: ''
|
|
24
|
+
-
|
|
25
|
+
dayOfWeek: 1
|
|
26
|
+
from: '16:00'
|
|
27
|
+
till: '18:30'
|
|
28
|
+
status: ''
|
|
29
|
+
-
|
|
30
|
+
dayOfWeek: 2
|
|
31
|
+
from: '8:15'
|
|
32
|
+
till: '12:00'
|
|
33
|
+
status: ''
|
|
34
|
+
-
|
|
35
|
+
dayOfWeek: 3
|
|
36
|
+
from: '8:15'
|
|
37
|
+
till: '12:00'
|
|
38
|
+
status: ''
|
|
39
|
+
-
|
|
40
|
+
dayOfWeek: 4
|
|
41
|
+
from: '16:00'
|
|
42
|
+
till: '19:00'
|
|
43
|
+
status: ''
|
|
44
|
+
-
|
|
45
|
+
dayOfWeek: 5
|
|
46
|
+
from: '8:15'
|
|
47
|
+
till: '12:00'
|
|
48
|
+
status: ''
|
|
49
|
+
vacation:
|
|
50
|
+
-
|
|
51
|
+
from: '2023-09-18'
|
|
52
|
+
till: '2023-09-18'
|
|
53
|
+
short_text: ''
|
|
54
|
+
text: 'Vertretung übernimmt Dr. xxx'
|
|
55
|
+
title: 'Urlaub vom 21.09.. - 27.09.'
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"_editor": {
|
|
6
|
+
"type": "string",
|
|
7
|
+
"const": "openhours/v1"
|
|
8
|
+
},
|
|
9
|
+
"table": {
|
|
10
|
+
"type": "array",
|
|
11
|
+
"items": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"day": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "Day of the week, e.g. 'Mo - Fr'"
|
|
17
|
+
},
|
|
18
|
+
"time": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Time range, e.g. '08:00 - 12:00<br>13:00 - 17:00'"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"required": ["day", "time"]
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"json": {
|
|
27
|
+
"type": "array",
|
|
28
|
+
"items": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"dayOfWeek": {
|
|
32
|
+
"type": "integer",
|
|
33
|
+
"description": "Day of the week represented as a number, e.g. 1"
|
|
34
|
+
},
|
|
35
|
+
"from": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "Start of the time slot, e.g. '08:00'"
|
|
38
|
+
},
|
|
39
|
+
"till": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "End of the time slot, e.g. '12:00'"
|
|
42
|
+
},
|
|
43
|
+
"status": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"description": "Reserved for future use"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"required": ["dayOfWeek", "from", "till", "status"]
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"vacation": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"properties": {
|
|
56
|
+
"from": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"format": "date-time",
|
|
59
|
+
"description": "Start date and time of the vacation, e.g. '2022-01-01 00:00:00'"
|
|
60
|
+
},
|
|
61
|
+
"till": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"format": "date-time",
|
|
64
|
+
"description": "End date and time of the vacation, e.g. '2022-01-01 00:00:00'"
|
|
65
|
+
},
|
|
66
|
+
"short_text": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Short text description, e.g. 'New Year's Day'"
|
|
69
|
+
},
|
|
70
|
+
"text": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "Long text description, e.g. 'Wir haben geschlossen. Bitte beachten Sie unsere Öffnungszeiten.'"
|
|
73
|
+
},
|
|
74
|
+
"title": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"description": "Title, e.g. 'Neujahr'"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"required": ["from", "till", "short_text", "text", "title"]
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"required": ["_editor", "table", "json", "vacation"]
|
|
84
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
|
|
2
|
+
type Table = {
|
|
3
|
+
day: string, // e.g. "Mo - Fr"
|
|
4
|
+
time: string // e.g. "08:00 - 12:00<br>13:00 - 17:00"
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
type TableJson = {
|
|
8
|
+
dayOfWeek: number, // e.g. 1
|
|
9
|
+
from: string, // e.g. "08:00"
|
|
10
|
+
till: string, // e.g. "12:00"
|
|
11
|
+
status: "" // Reserved for future use
|
|
12
|
+
}
|
|
13
|
+
type Vacation = {
|
|
14
|
+
from: string, // Date Time string e.g. 2022-01-01 00:00:00
|
|
15
|
+
till: string, // Date Time string e.g. 2022-01-01 00:00:00
|
|
16
|
+
short_text: string, // e.g. "New Year's Day"
|
|
17
|
+
text: string, // e.g. "Wir haben geschlossen. Bitte beachten Sie unsere Öffnungszeiten."
|
|
18
|
+
title: string, // e.g. "Neujahr"
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* The file type of the openhours.yml file
|
|
23
|
+
*
|
|
24
|
+
* Speichert die Sprechstundenzeiten / Öffnungszeiten
|
|
25
|
+
*/
|
|
26
|
+
export type filetype = {
|
|
27
|
+
_editor: "openhours/v1",
|
|
28
|
+
table: Table[], // Tabellenansicht der Öffnungszeiten
|
|
29
|
+
json: TableJson[], // Öffnungszeiten für each day of the week / time slot
|
|
30
|
+
vacation: Vacation[], // Leave empty if no data
|
|
31
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
(()=>{"use strict";var __webpack_modules__={769:()=>{eval(`
|
|
2
|
+
;// CONCATENATED MODULE: ./workspaces/themejs1/src/hit-index.ts
|
|
3
|
+
var _a, _b;
|
|
4
|
+
const indexName = "themejs_hit_index";
|
|
5
|
+
let state = sessionStorage.getItem(indexName);
|
|
6
|
+
if (state === null) {
|
|
7
|
+
sessionStorage.setItem(indexName, "0");
|
|
8
|
+
}
|
|
9
|
+
sessionStorage.setItem(indexName, "" + (parseInt((_a = sessionStorage.getItem(indexName)) != null ? _a : "0") + 1));
|
|
10
|
+
const hitIndex = parseInt((_b = sessionStorage.getItem(indexName)) != null ? _b : "0");
|
|
11
|
+
|
|
12
|
+
;// CONCATENATED MODULE: ./workspaces/themejs1/src/helper/loader.ts
|
|
13
|
+
|
|
14
|
+
console.time("loader");
|
|
15
|
+
function initLoader() {
|
|
16
|
+
let interval = setInterval(() => {
|
|
17
|
+
if (document.querySelector("body")) {
|
|
18
|
+
clearInterval(interval);
|
|
19
|
+
let img = document.querySelector("img").cloneNode(true);
|
|
20
|
+
let loader = document.createElement("div");
|
|
21
|
+
loader.classList.add("loader");
|
|
22
|
+
loader.appendChild(img);
|
|
23
|
+
img.setAttribute("class", "");
|
|
24
|
+
img.setAttribute("loading", "eager");
|
|
25
|
+
let loaderBar = document.createElement("div");
|
|
26
|
+
loaderBar.classList.add("loader-bar");
|
|
27
|
+
loader.appendChild(loaderBar);
|
|
28
|
+
document.querySelector("body").appendChild(loader);
|
|
29
|
+
}
|
|
30
|
+
}, hitIndex === 1 ? 10 : 350);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
;// CONCATENATED MODULE: ./workspaces/themejs1/embed.ts
|
|
34
|
+
|
|
35
|
+
initLoader();
|
|
36
|
+
|
|
37
|
+
;// CONCATENATED MODULE: ./src/index_embed.ts
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
//# sourceURL=webpack:///./src/index_embed.ts_+_3_modules?`)}},__webpack_exports__={};__webpack_modules__[769]()})();
|