tecitheme 0.3.3 → 0.3.4
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/.eslintrc.cjs +24 -0
- package/.frontmatter/content/mediaDb.json +1 -0
- package/.frontmatter/templates/article.md +11 -0
- package/.gitpod.yml +19 -0
- package/.vscode/ltex.dictionary.en-US.txt +3 -0
- package/.vscode/settings.json +7 -0
- package/dist/assets/js/store.d.ts +2 -0
- package/dist/assets/js/store.js +4 -0
- package/{components → dist/components}/CountrySelector.svelte +2 -2
- package/{components → dist/components}/Footer.svelte +24 -60
- package/{components → dist/components}/Footer.svelte.d.ts +2 -5
- package/{components → dist/components}/NewsGrid.svelte +3 -3
- package/{components → dist/components}/Video.svelte +1 -1
- package/{get-content.d.ts → dist/get-content.d.ts} +2 -1
- package/{get-content.js → dist/get-content.js} +5 -2
- package/{layouts → dist/layouts}/blocks.svelte +15 -15
- package/{site_config.json → dist/site_config.json} +1 -1
- package/frontmatter.json +17 -0
- package/mdsvex.config.js +19 -0
- package/netlify.toml +7 -0
- package/package.json +22 -46
- package/postcss.config.cjs +13 -0
- package/src/app.css +49 -0
- package/src/app.html +22 -0
- package/src/global.d.ts +5 -0
- package/src/lib/assets/TECi_logo.svelte +177 -0
- package/src/lib/assets/js/store.js +4 -0
- package/src/lib/components/Banner.svelte +91 -0
- package/src/lib/components/Button.svelte +12 -0
- package/src/lib/components/CTA.svelte +36 -0
- package/src/lib/components/CTABranded.svelte +15 -0
- package/src/lib/components/CTASplitImage.svelte +27 -0
- package/src/lib/components/Card.svelte +93 -0
- package/src/lib/components/ContentTwoColumns.svelte +47 -0
- package/src/lib/components/CountrySelector.svelte +167 -0
- package/src/lib/components/FeatureGrid.svelte +40 -0
- package/src/lib/components/Figure.svelte +37 -0
- package/src/lib/components/Footer.svelte +270 -0
- package/src/lib/components/Header.svelte +1230 -0
- package/src/lib/components/HeadingCentered.svelte +33 -0
- package/src/lib/components/Hero.svelte +72 -0
- package/src/lib/components/Icon.svelte +138 -0
- package/src/lib/components/LogoCloud.svelte +25 -0
- package/src/lib/components/Math.svelte +24 -0
- package/src/lib/components/MediaFeature.svelte +66 -0
- package/src/lib/components/Modal.svelte +68 -0
- package/src/lib/components/NewsGrid.svelte +182 -0
- package/src/lib/components/PricingTable.svelte +92 -0
- package/src/lib/components/SidebarContent.svelte +122 -0
- package/src/lib/components/Stats.svelte +34 -0
- package/src/lib/components/Subscribe.svelte +24 -0
- package/src/lib/components/Testimonial.svelte +169 -0
- package/src/lib/components/ThreeColumn.svelte +19 -0
- package/src/lib/components/TrialForm.svelte +302 -0
- package/src/lib/components/Video.svelte +118 -0
- package/src/lib/components/Wrap.svelte +12 -0
- package/src/lib/get-content.js +98 -0
- package/src/lib/layouts/blocks.svelte +93 -0
- package/src/lib/req_utils.js +63 -0
- package/src/lib/site_config.json +11 -0
- package/src/lib/utils.js +92 -0
- package/src/lib/variables.ts +3 -0
- package/src/routes/+layout.server.js +20 -0
- package/src/routes/+layout.svelte +24 -0
- package/src/routes/+page.md +61 -0
- package/src/routes/features/+page.md +78 -0
- package/src/routes/news/+page.md +21 -0
- package/src/routes/news/[slug]/+page.svelte +33 -0
- package/src/routes/news/[slug]/+page.ts +16 -0
- package/src/routes/news/filter/[tag]/+page.svelte +36 -0
- package/src/routes/news/filter/[tag]/+page.ts +14 -0
- package/src/routes/news/post1.md +45 -0
- package/src/routes/news/post2.md +46 -0
- package/src/routes/pathfinder/+page.md +240 -0
- package/src/routes/pathfinder/news/+page.md +20 -0
- package/src/routes/posts.json/+server.js +9 -0
- package/src/routes/product/+page.md +240 -0
- package/src/routes/product/news/+page.md +20 -0
- package/src/routes/product/trial/+page.svelte +7 -0
- package/src/routes/sidebar/+page.md +357 -0
- package/static/favicon.ico +0 -0
- package/static/uploads/company_pathfinder.png +0 -0
- package/static/uploads/company_petrasim.png +0 -0
- package/static/uploads/company_pyrosim.jpg +0 -0
- package/static/uploads/fire.jpg +0 -0
- package/static/uploads/pyrosim_libraries_386x395.png +0 -0
- package/static/uploads/rocks.jpg +0 -0
- package/static/uploads/water.jpg +0 -0
- package/svelte.config.js +32 -0
- package/tailwind.config.cjs +26 -0
- package/tsconfig.json +32 -0
- package/vite.config.js +20 -0
- package/components/MetaSocial.svelte +0 -15
- package/components/MetaSocial.svelte.d.ts +0 -29
- package/{assets → dist/assets}/TECi_logo.svelte +0 -0
- package/{assets → dist/assets}/TECi_logo.svelte.d.ts +0 -0
- package/{components → dist/components}/Banner.svelte +0 -0
- package/{components → dist/components}/Banner.svelte.d.ts +0 -0
- package/{components → dist/components}/Button.svelte +0 -0
- package/{components → dist/components}/Button.svelte.d.ts +0 -0
- package/{components → dist/components}/CTA.svelte +0 -0
- package/{components → dist/components}/CTA.svelte.d.ts +0 -0
- package/{components → dist/components}/CTABranded.svelte +0 -0
- package/{components → dist/components}/CTABranded.svelte.d.ts +0 -0
- package/{components → dist/components}/CTASplitImage.svelte +0 -0
- package/{components → dist/components}/CTASplitImage.svelte.d.ts +0 -0
- package/{components → dist/components}/Card.svelte +0 -0
- package/{components → dist/components}/Card.svelte.d.ts +0 -0
- package/{components → dist/components}/ContentTwoColumns.svelte +0 -0
- package/{components → dist/components}/ContentTwoColumns.svelte.d.ts +0 -0
- package/{components → dist/components}/CountrySelector.svelte.d.ts +0 -0
- package/{components → dist/components}/FeatureGrid.svelte +0 -0
- package/{components → dist/components}/FeatureGrid.svelte.d.ts +0 -0
- package/{components → dist/components}/Figure.svelte +0 -0
- package/{components → dist/components}/Figure.svelte.d.ts +0 -0
- package/{components → dist/components}/Header.svelte +0 -0
- package/{components → dist/components}/Header.svelte.d.ts +0 -0
- package/{components → dist/components}/HeadingCentered.svelte +0 -0
- package/{components → dist/components}/HeadingCentered.svelte.d.ts +0 -0
- package/{components → dist/components}/Hero.svelte +0 -0
- package/{components → dist/components}/Hero.svelte.d.ts +0 -0
- package/{components → dist/components}/Icon.svelte +0 -0
- package/{components → dist/components}/Icon.svelte.d.ts +0 -0
- package/{components → dist/components}/LogoCloud.svelte +0 -0
- package/{components → dist/components}/LogoCloud.svelte.d.ts +0 -0
- package/{components → dist/components}/Math.svelte +0 -0
- package/{components → dist/components}/Math.svelte.d.ts +0 -0
- package/{components → dist/components}/MediaFeature.svelte +0 -0
- package/{components → dist/components}/MediaFeature.svelte.d.ts +0 -0
- package/{components → dist/components}/Modal.svelte +0 -0
- package/{components → dist/components}/Modal.svelte.d.ts +0 -0
- package/{components → dist/components}/NewsGrid.svelte.d.ts +0 -0
- package/{components → dist/components}/PricingTable.svelte +0 -0
- package/{components → dist/components}/PricingTable.svelte.d.ts +0 -0
- package/{components → dist/components}/SidebarContent.svelte +0 -0
- package/{components → dist/components}/SidebarContent.svelte.d.ts +0 -0
- package/{components → dist/components}/Stats.svelte +0 -0
- package/{components → dist/components}/Stats.svelte.d.ts +0 -0
- package/{components → dist/components}/Subscribe.svelte +0 -0
- package/{components → dist/components}/Subscribe.svelte.d.ts +0 -0
- package/{components → dist/components}/Testimonial.svelte +0 -0
- package/{components → dist/components}/Testimonial.svelte.d.ts +0 -0
- package/{components → dist/components}/ThreeColumn.svelte +0 -0
- package/{components → dist/components}/ThreeColumn.svelte.d.ts +0 -0
- package/{components → dist/components}/TrialForm.svelte +0 -0
- package/{components → dist/components}/TrialForm.svelte.d.ts +0 -0
- package/{components → dist/components}/Video.svelte.d.ts +0 -0
- package/{components → dist/components}/Wrap.svelte +0 -0
- package/{components → dist/components}/Wrap.svelte.d.ts +0 -0
- package/{layouts → dist/layouts}/blocks.svelte.d.ts +2 -2
- /package/{req_utils.d.ts → dist/req_utils.d.ts} +0 -0
- /package/{req_utils.js → dist/req_utils.js} +0 -0
- /package/{utils.d.ts → dist/utils.d.ts} +0 -0
- /package/{utils.js → dist/utils.js} +0 -0
- /package/{variables.d.ts → dist/variables.d.ts} +0 -0
- /package/{variables.js → dist/variables.js} +0 -0
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Product Licensing and Pricing
|
|
3
|
+
summary: Demo of a sidebar content layout.
|
|
4
|
+
layout: blocks
|
|
5
|
+
page_sections:
|
|
6
|
+
- name: Section Heading
|
|
7
|
+
fieldGroup: heading-centered
|
|
8
|
+
toptext: Product Name
|
|
9
|
+
title: Licensing and Pricing
|
|
10
|
+
subtitle: null
|
|
11
|
+
- name: Sidebar and Text
|
|
12
|
+
fieldGroup: sidebar-content
|
|
13
|
+
toc: true
|
|
14
|
+
rightRail: true
|
|
15
|
+
fullWidth: true
|
|
16
|
+
hideTitle: true
|
|
17
|
+
lastmod: 2022-05-31T22:40:19.414Z
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## <Icon icon='pyrosim-results' classes='inline-block h-8'/> <Icon icon='pathfinder-results' classes='inline-block h-8'/> License Prices
|
|
21
|
+
|
|
22
|
+
PyroSim is available under two license models:
|
|
23
|
+
A standard perpetual license (including one year of free support and upgrades), or a yearly subscription license.
|
|
24
|
+
You can securely Purchase PyroSim Online or if you have any questions, need an estimate or invoice then please contact <Icon classes='h-4 w-4 inline-block -mt-1'/> by <Icon icon='icon-phone' classes='text-sm text-teci-blue-dark align-text-bottom'/> +1-785-770-8511 or <Icon icon='icon-email' classes='text-sm text-teci-blue-dark align-text-bottom'/> sales@thunderheadeng.com.
|
|
25
|
+
|
|
26
|
+
<div class="flex flex-col md:flex-row">
|
|
27
|
+
<div class="w-full md:w-1/2 md:pr-4">
|
|
28
|
+
|
|
29
|
+
#### Annual Subscription License
|
|
30
|
+
|
|
31
|
+
<table class="w-full">
|
|
32
|
+
<tbody>
|
|
33
|
+
<tr class="border-b">
|
|
34
|
+
<td>Node-Locked License</td>
|
|
35
|
+
<td class="text-right">$1050</td>
|
|
36
|
+
</tr>
|
|
37
|
+
<tr class="border-b">
|
|
38
|
+
<td>(Maintenance Included)</td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr class="border-b">
|
|
41
|
+
<td>Floating License</td>
|
|
42
|
+
<td class="text-right">$1575</td>
|
|
43
|
+
</tr>
|
|
44
|
+
<tr>
|
|
45
|
+
<td>(Maintenance Included)</td>
|
|
46
|
+
</tr>
|
|
47
|
+
</tbody>
|
|
48
|
+
</table>
|
|
49
|
+
|
|
50
|
+
The full-service subscription option enables PyroSim for one year, including technical support and all program updates. This option provides cost-effective access to the latest version of PyroSim, while simplifying budgeting for software costs.
|
|
51
|
+
|
|
52
|
+
</div>
|
|
53
|
+
|
|
54
|
+
<div class="w-full md:w-1/2 md:pl-4">
|
|
55
|
+
|
|
56
|
+
#### Standard Perpetual License
|
|
57
|
+
|
|
58
|
+
<table class="w-full">
|
|
59
|
+
<tbody>
|
|
60
|
+
<tr class="border-b">
|
|
61
|
+
<td>Node-Locked License</td>
|
|
62
|
+
<td class="text-right">$3500</td>
|
|
63
|
+
</tr>
|
|
64
|
+
<tr class="border-b">
|
|
65
|
+
<td>Node-Locked Maintenance</td>
|
|
66
|
+
<td class="text-right">$700</td>
|
|
67
|
+
</tr>
|
|
68
|
+
<tr class="border-b">
|
|
69
|
+
<td>Floating License</td>
|
|
70
|
+
<td class="text-right">$5250</td>
|
|
71
|
+
</tr>
|
|
72
|
+
<tr>
|
|
73
|
+
<td>Floating Maintenance</td>
|
|
74
|
+
<td class="text-right">$1050</td>
|
|
75
|
+
</tr>
|
|
76
|
+
</tbody>
|
|
77
|
+
</table>
|
|
78
|
+
|
|
79
|
+
The standard license provides for unlimited-time use of PyroSim. Support and upgrades are included for the first year. Maintenance must be purchased annually after the first year to keep your version up-to-date and to receive technical support. Maintenance must be paid continuously to remain in effect.
|
|
80
|
+
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
<Button url="https://store2.thunderheadeng.com/cart/" text="Order Online" />
|
|
85
|
+
|
|
86
|
+
## License Types
|
|
87
|
+
|
|
88
|
+
### Node Locked License
|
|
89
|
+
|
|
90
|
+
The node-locked license type grants the right to use the software on one (1) computer.
|
|
91
|
+
This is sometimes referred to as a "fixed" or "single-computer" license.
|
|
92
|
+
|
|
93
|
+
### Floating License
|
|
94
|
+
|
|
95
|
+
The floating license type allows multiple computers on a network to share a PyroSim license.
|
|
96
|
+
Each floating license of PyroSim can be used by one (1) computer at a time.
|
|
97
|
+
When a user closes PyroSim, that floating license becomes available to other users on the network.
|
|
98
|
+
You can purchase additional copies of the PyroSim floating license to enable simultaneous access by multiple computers.
|
|
99
|
+
This is sometimes referred to as a "network" or "concurrent use" license.
|
|
100
|
+
|
|
101
|
+
If you need to work with the software without a network connection, you can request a short-term node-locked license from support@thunderheadeng.com, please request the license with at least 2 business days of lead time to ensure we can provide the support you need.
|
|
102
|
+
|
|
103
|
+
## Volume Licensing Discounts
|
|
104
|
+
|
|
105
|
+
50% off all additional licenses. Save money on multiple licenses — all additional licenses after the first are discounted at 50% of the regular price. Licenses must be purchased at the same time to qualify for the discount. Discount applies to all licenses of equal or lesser value.
|
|
106
|
+
|
|
107
|
+
NOTE: PyroSim and Pathfinder orders can be combined for volume licensing.
|
|
108
|
+
|
|
109
|
+
## Educational Licensing
|
|
110
|
+
|
|
111
|
+
Free licenses are available for academic, non-commercial use.
|
|
112
|
+
To apply for an academic license, you or a representative from your organization must fill out the Academic License Application Form.
|
|
113
|
+
|
|
114
|
+
We will review the application and let you know if you qualify for academic licensing.
|
|
115
|
+
|
|
116
|
+
## Operating Systems
|
|
117
|
+
|
|
118
|
+
PyroSim supports Windows 7 and later or Windows Server 2012 and later operating systems.
|
|
119
|
+
PyroSim version 2014.3.1030 was the last release to support 32 bit operation.
|
|
120
|
+
Newer PyroSim releases are consistent with FDS and require 64 bit operating systems.
|
|
121
|
+
Users report excellent performance on OSX using either Parallels or VMWare Fusion.
|
|
122
|
+
PyroSim 2014.4.1105 will run on 64 bit Windows XP, but this is not recommended.
|
|
123
|
+
|
|
124
|
+
## Authorized International Distributors
|
|
125
|
+
|
|
126
|
+
Please contact your local reseller for more information or to purchase Pathfinder.
|
|
127
|
+
|
|
128
|
+
### Belgium, Netherlands, and Luxembourg
|
|
129
|
+
|
|
130
|
+
#### Aeolus Consulting
|
|
131
|
+
|
|
132
|
+
Kol. Begaultlaan 1A/51
|
|
133
|
+
3012 Leuven
|
|
134
|
+
BELGIUM
|
|
135
|
+
|
|
136
|
+
Tel: +32 (0) 496/10.94.63
|
|
137
|
+
Email: info@aeolus-consulting.be
|
|
138
|
+
Web: www.aeolus-consulting.be
|
|
139
|
+
|
|
140
|
+
### China and Hong Kong
|
|
141
|
+
|
|
142
|
+
#### Beijing HuanZhongRuiChi Technology Co., Ltd.(Reachsoft)
|
|
143
|
+
|
|
144
|
+
ROOM 1106, A3 BUILDING, RongJingDao,
|
|
145
|
+
BJUT Software Park,
|
|
146
|
+
YiZhuang, Beijing, 100176
|
|
147
|
+
CHINA
|
|
148
|
+
|
|
149
|
+
Tel: 86 1855 1855 019
|
|
150
|
+
Email: cal@reachsoft.com.cn, reach@reachsoft.com.cn
|
|
151
|
+
Web: www.reachsoft.cn
|
|
152
|
+
|
|
153
|
+
#### Shanghai IGN Network Technology. Co.Ltd
|
|
154
|
+
|
|
155
|
+
Venture International Park
|
|
156
|
+
3A Floor, Building A, No.2679
|
|
157
|
+
Hechuan Road, Minhang District
|
|
158
|
+
Shanghai, 201103
|
|
159
|
+
CHINA
|
|
160
|
+
|
|
161
|
+
Tel: 86 21 61022284
|
|
162
|
+
Fax: 86 21 51010862
|
|
163
|
+
Email: fjj@gdi.com.cn, sales@gdi.com.cn
|
|
164
|
+
Web: www.bitmap3d.com.cn
|
|
165
|
+
|
|
166
|
+
### Czech Republic and Slovak Republic
|
|
167
|
+
|
|
168
|
+
#### recognity s.r.o.
|
|
169
|
+
|
|
170
|
+
Purkyňova 649/127
|
|
171
|
+
Brno, 612 00
|
|
172
|
+
Czech Republic
|
|
173
|
+
|
|
174
|
+
Tel: +420 737 383 389
|
|
175
|
+
Email: software@recognity.cz
|
|
176
|
+
Web: www.recognity.cz
|
|
177
|
+
|
|
178
|
+
### Egypt, Jordan, Lebanon, Oman, Qatar, Saudi Arabia, United Arab Emirates
|
|
179
|
+
|
|
180
|
+
#### Fire Raters
|
|
181
|
+
|
|
182
|
+
5th Settlement
|
|
183
|
+
Cairo, Egypt
|
|
184
|
+
|
|
185
|
+
Web: fireraters.com/
|
|
186
|
+
Email: info@fireraters.com
|
|
187
|
+
|
|
188
|
+
### France and French Language Customers in Other Regions
|
|
189
|
+
|
|
190
|
+
#### 1Point2
|
|
191
|
+
|
|
192
|
+
5 rue de la poste
|
|
193
|
+
38170 Seyssinet-Pariset
|
|
194
|
+
France
|
|
195
|
+
|
|
196
|
+
Web: www.pyrosim-simulation.com/
|
|
197
|
+
Email: infos@1Point2.com
|
|
198
|
+
Tel: +33 (0)4 76 27 77 85
|
|
199
|
+
|
|
200
|
+
### Germany, Switzerland, Austria, and Liechtenstein
|
|
201
|
+
|
|
202
|
+
#### SIMTEGO GmbH
|
|
203
|
+
|
|
204
|
+
Einsteinstr. 55
|
|
205
|
+
89077 Ulm
|
|
206
|
+
Germany
|
|
207
|
+
|
|
208
|
+
Web: www.simtego.de
|
|
209
|
+
Email: info@simtego.de
|
|
210
|
+
Tel: +49 (0)731 850702-31
|
|
211
|
+
|
|
212
|
+
### India, Bangladesh, Sri Lanka, Nepal, Bhutan, Myanmar
|
|
213
|
+
|
|
214
|
+
#### Shiretechnik Solutions
|
|
215
|
+
|
|
216
|
+
No. 166, 5th Main K.E.B layout
|
|
217
|
+
Sanjaynagar, Bangalore, Karnataka,
|
|
218
|
+
India, Pin – 560 094
|
|
219
|
+
|
|
220
|
+
m: +91-9620031209
|
|
221
|
+
t: +91-80-41149803
|
|
222
|
+
Email: contact@shiretechnik.com
|
|
223
|
+
Web: www.shiretechnik.com
|
|
224
|
+
|
|
225
|
+
### Italy, Hungary
|
|
226
|
+
|
|
227
|
+
#### Cantene S.r.l
|
|
228
|
+
|
|
229
|
+
Via Marco Polo 24/A
|
|
230
|
+
10129 Torino
|
|
231
|
+
Italy
|
|
232
|
+
|
|
233
|
+
Tel: +39 011 19707165
|
|
234
|
+
Email: info@cantene.it
|
|
235
|
+
Web: www.cantene.it
|
|
236
|
+
|
|
237
|
+
### Japan
|
|
238
|
+
|
|
239
|
+
#### CAE Solutions Corporation
|
|
240
|
+
|
|
241
|
+
TUG Building 5F 8F
|
|
242
|
+
2-1-10 Iidabashi
|
|
243
|
+
Chiyoda, Tokyo 102-0072
|
|
244
|
+
JAPAN
|
|
245
|
+
|
|
246
|
+
Tel: +81-3-3514-1506
|
|
247
|
+
Fax: +81-3-3514-1507
|
|
248
|
+
Email: sales@cae-sc.com
|
|
249
|
+
Web: www.cae-sc.com
|
|
250
|
+
|
|
251
|
+
### Korea
|
|
252
|
+
|
|
253
|
+
#### BasisSoft Inc.
|
|
254
|
+
|
|
255
|
+
3rd Floor. iho Bldg.
|
|
256
|
+
151-29 Samsung-Dong, Kangnam-Gu
|
|
257
|
+
Seoul 135-876
|
|
258
|
+
KOREA
|
|
259
|
+
|
|
260
|
+
Tel: +82 2 571 8718
|
|
261
|
+
Fax: +82 2 572 9709
|
|
262
|
+
Email: minsu@basis.co.kr
|
|
263
|
+
Web: www.basis.co.kr
|
|
264
|
+
|
|
265
|
+
#### Kimyoung Engineering Co., Ltd
|
|
266
|
+
|
|
267
|
+
#505 Saehan Venture World
|
|
268
|
+
113-15, Shihung-dong, Kumcheon-gu
|
|
269
|
+
Seoul 153-031
|
|
270
|
+
KOREA
|
|
271
|
+
|
|
272
|
+
Tel: +82-2-807-7750
|
|
273
|
+
Fax: +82-2-808-6108
|
|
274
|
+
Email: kimyoung@epcmart.co.kr
|
|
275
|
+
Web: www.epcmart.co.kr
|
|
276
|
+
|
|
277
|
+
### Poland, Ukraine
|
|
278
|
+
|
|
279
|
+
#### STIGO Sp. z o.o.
|
|
280
|
+
|
|
281
|
+
ul. Longinusa Podbipięty 29
|
|
282
|
+
31-980 Kraków
|
|
283
|
+
POLAND
|
|
284
|
+
|
|
285
|
+
Przemysław Rożek
|
|
286
|
+
Tel. +48 12 346 58 00
|
|
287
|
+
Email: p.rozek@stigo.com.pl
|
|
288
|
+
Email (sales): biuro@stigo.com.pl
|
|
289
|
+
Web: pyrosim.pl
|
|
290
|
+
|
|
291
|
+
### Russia and CIS
|
|
292
|
+
|
|
293
|
+
_(Armenia, Azerbaijan, Belarus, Georgia, Kazakhstan, Kyrgyzstan, Moldova,
|
|
294
|
+
Russia, Tajikistan, Turkmenistan, Ukraine, Uzbekistan)_
|
|
295
|
+
|
|
296
|
+
#### Pyrosim.ru
|
|
297
|
+
|
|
298
|
+
Pervomayskaya str. 66 – 4
|
|
299
|
+
Ekaterinburg
|
|
300
|
+
620062
|
|
301
|
+
RUSSIA
|
|
302
|
+
|
|
303
|
+
Tel: +7 (343) 319-12-62
|
|
304
|
+
Fax: +7 (343) 319-12-62
|
|
305
|
+
Email: mail@pyrosim.ru
|
|
306
|
+
Web: www.pyrosim.ru
|
|
307
|
+
|
|
308
|
+
### Romania
|
|
309
|
+
|
|
310
|
+
#### SIGURA Total Fire & Building Engineering srl.
|
|
311
|
+
|
|
312
|
+
Str. Balta Arin nr. 4A
|
|
313
|
+
Sector 3
|
|
314
|
+
032623 BUCURESTI
|
|
315
|
+
ROMANIA
|
|
316
|
+
|
|
317
|
+
Tel: (40)-21-312.31.32
|
|
318
|
+
Fax: (40)-21-314.45.37
|
|
319
|
+
Email: sigura@sigura.ro
|
|
320
|
+
Web: www.sigura.ro
|
|
321
|
+
|
|
322
|
+
### Singapore, Malaysia, Indonesia, and Vietnam
|
|
323
|
+
|
|
324
|
+
#### Building System and Diagnostics Pte. Ltd.
|
|
325
|
+
|
|
326
|
+
22 Veerasamy Road
|
|
327
|
+
Singapore 207328
|
|
328
|
+
SINGAPORE
|
|
329
|
+
|
|
330
|
+
Tel: (65) 6560 0702
|
|
331
|
+
Fax: (65) 6795 0020
|
|
332
|
+
Email: info@bsd.com.sg
|
|
333
|
+
Web: www.bsd.com.sg
|
|
334
|
+
|
|
335
|
+
### Spain
|
|
336
|
+
|
|
337
|
+
#### iNCENDiO3D
|
|
338
|
+
|
|
339
|
+
Plaza de Carlos Trias Bertrán, 4,
|
|
340
|
+
28020 Madrid
|
|
341
|
+
SPAIN
|
|
342
|
+
|
|
343
|
+
Tel: +34 644 266 881
|
|
344
|
+
Email: support@incendio3d.com
|
|
345
|
+
Web: www.incendio3d.com
|
|
346
|
+
|
|
347
|
+
### USA and All Other Regions
|
|
348
|
+
|
|
349
|
+
#### Thunderhead Engineering Consultants, Inc.
|
|
350
|
+
|
|
351
|
+
403 Poyntz Ave. Suite B
|
|
352
|
+
Manhattan, KS 66502
|
|
353
|
+
USA
|
|
354
|
+
|
|
355
|
+
Tel/Fax: (785) 770-8511
|
|
356
|
+
Email: sales@thunderheadeng.com
|
|
357
|
+
Web: www.thunderheadeng.com/pyrosim/
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/svelte.config.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { mdsvex } from "mdsvex";
|
|
2
|
+
import mdsvexConfig from "./mdsvex.config.js";
|
|
3
|
+
import adapter from "@sveltejs/adapter-static";
|
|
4
|
+
import preprocess from "svelte-preprocess";
|
|
5
|
+
import autoImport from "vite-plugin-autoimport";
|
|
6
|
+
|
|
7
|
+
/** @type {import('@sveltejs/kit').Config} */
|
|
8
|
+
const config = {
|
|
9
|
+
extensions: [".svelte", ...mdsvexConfig.extensions],
|
|
10
|
+
|
|
11
|
+
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
12
|
+
// for more information about preprocessors
|
|
13
|
+
preprocess: [
|
|
14
|
+
preprocess(),
|
|
15
|
+
autoImport({
|
|
16
|
+
components: ["./src/lib/components"],
|
|
17
|
+
include: ["./**/*.(md|svelte)"],
|
|
18
|
+
}),
|
|
19
|
+
mdsvex(mdsvexConfig),
|
|
20
|
+
],
|
|
21
|
+
kit: {
|
|
22
|
+
csp: {
|
|
23
|
+
mode: 'auto',
|
|
24
|
+
directives: {
|
|
25
|
+
'script-src': ['self','https://app.mailjet.com', 'https://ajax.googleapis.com', 'https://netlify-cdp-loader.netlify.app']
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
adapter: adapter(),
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export default config;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const typography = require("@tailwindcss/typography");
|
|
2
|
+
const forms = require("@tailwindcss/forms");
|
|
3
|
+
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
4
|
+
|
|
5
|
+
const config = {
|
|
6
|
+
content: ["./src/**/*.{html,js,svelte,ts,md}", "mdsvex.config.js"],
|
|
7
|
+
mode: "jit",
|
|
8
|
+
theme: {
|
|
9
|
+
extend: {
|
|
10
|
+
fontFamily: {
|
|
11
|
+
sans: ["Inter", ...defaultTheme.fontFamily.sans],
|
|
12
|
+
},
|
|
13
|
+
colors: {
|
|
14
|
+
"teci-blue-dark": "#002b7f",
|
|
15
|
+
"teci-blue-light": "#0072C6",
|
|
16
|
+
"teci-gray": "#b1b1b1",
|
|
17
|
+
pyrosim: "#990000",
|
|
18
|
+
pathfinder: "#006000",
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
variants: {},
|
|
23
|
+
plugins: [forms, typography],
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
module.exports = config;
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"moduleResolution": "node",
|
|
4
|
+
"module": "es2020",
|
|
5
|
+
"lib": ["es2020", "DOM"],
|
|
6
|
+
"target": "es2020",
|
|
7
|
+
/**
|
|
8
|
+
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
|
|
9
|
+
to enforce using \`import type\` instead of \`import\` for Types.
|
|
10
|
+
*/
|
|
11
|
+
"importsNotUsedAsValues": "error",
|
|
12
|
+
"isolatedModules": true,
|
|
13
|
+
"resolveJsonModule": true,
|
|
14
|
+
/**
|
|
15
|
+
To have warnings/errors of the Svelte compiler at the correct position,
|
|
16
|
+
enable source maps by default.
|
|
17
|
+
*/
|
|
18
|
+
"sourceMap": true,
|
|
19
|
+
"esModuleInterop": true,
|
|
20
|
+
"skipLibCheck": true,
|
|
21
|
+
"forceConsistentCasingInFileNames": true,
|
|
22
|
+
"baseUrl": ".",
|
|
23
|
+
"allowJs": true,
|
|
24
|
+
"checkJs": true,
|
|
25
|
+
"paths": {
|
|
26
|
+
"$lib": ["src/lib"],
|
|
27
|
+
"$lib/*": ["src/lib/*"]
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.ts", "src/**/*.svelte"],
|
|
31
|
+
"extends": "./.svelte-kit/tsconfig.json"
|
|
32
|
+
}
|
package/vite.config.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// vite.config.js
|
|
2
|
+
import { sveltekit } from "@sveltejs/kit/vite";
|
|
3
|
+
|
|
4
|
+
/** @type {import('vite').UserConfig} */
|
|
5
|
+
const config = {
|
|
6
|
+
plugins: [sveltekit()],
|
|
7
|
+
define: {
|
|
8
|
+
"process.env": {},
|
|
9
|
+
},
|
|
10
|
+
server: {
|
|
11
|
+
hmr: {
|
|
12
|
+
clientPort: process.env.HMR_HOST ? 443 : 24678,
|
|
13
|
+
host: process.env.HMR_HOST
|
|
14
|
+
? process.env.HMR_HOST.substring("https://".length)
|
|
15
|
+
: "localhost",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export default config;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
export let title;
|
|
3
|
-
export let description;
|
|
4
|
-
export let image;
|
|
5
|
-
export let url;
|
|
6
|
-
</script>
|
|
7
|
-
|
|
8
|
-
<meta property="og:type" content="website" />
|
|
9
|
-
<meta property="og:url" content={url} />
|
|
10
|
-
<meta name="og:title" content={title} />
|
|
11
|
-
<meta name="og:description" content={description} />
|
|
12
|
-
<meta name="og:image" content={image} />
|
|
13
|
-
<meta name="twitter:card" content="summary_large_image" />
|
|
14
|
-
<meta name="twitter:site" content="@thunderheadeng" />
|
|
15
|
-
<meta name="twitter:creator" content="@thunderheadeng" />
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/** @typedef {typeof __propDef.props} MetaSocialProps */
|
|
2
|
-
/** @typedef {typeof __propDef.events} MetaSocialEvents */
|
|
3
|
-
/** @typedef {typeof __propDef.slots} MetaSocialSlots */
|
|
4
|
-
export default class MetaSocial extends SvelteComponentTyped<{
|
|
5
|
-
title: any;
|
|
6
|
-
description: any;
|
|
7
|
-
image: any;
|
|
8
|
-
url: any;
|
|
9
|
-
}, {
|
|
10
|
-
[evt: string]: CustomEvent<any>;
|
|
11
|
-
}, {}> {
|
|
12
|
-
}
|
|
13
|
-
export type MetaSocialProps = typeof __propDef.props;
|
|
14
|
-
export type MetaSocialEvents = typeof __propDef.events;
|
|
15
|
-
export type MetaSocialSlots = typeof __propDef.slots;
|
|
16
|
-
import { SvelteComponentTyped } from "svelte";
|
|
17
|
-
declare const __propDef: {
|
|
18
|
-
props: {
|
|
19
|
-
title: any;
|
|
20
|
-
description: any;
|
|
21
|
-
image: any;
|
|
22
|
-
url: any;
|
|
23
|
-
};
|
|
24
|
-
events: {
|
|
25
|
-
[evt: string]: CustomEvent<any>;
|
|
26
|
-
};
|
|
27
|
-
slots: {};
|
|
28
|
-
};
|
|
29
|
-
export {};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|