@lentystyle/core 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/CHANGELOG.tr.md +13 -0
- package/CODE_OF_CONDUCT.md +42 -0
- package/CODE_OF_CONDUCT.tr.md +41 -0
- package/CONTRIBUTING.md +53 -0
- package/CONTRIBUTING.tr.md +50 -0
- package/LICENSE.md +281 -0
- package/LICENSE.tr.md +280 -0
- package/README.md +139 -0
- package/README.tr.md +136 -0
- package/SECURITY.md +33 -0
- package/SECURITY.tr.md +32 -0
- package/dist/compiler/imports/chars.min.cjs +2 -0
- package/dist/compiler/imports/chars.min.js +2 -0
- package/dist/compiler/imports/classify.min.cjs +2 -0
- package/dist/compiler/imports/classify.min.js +2 -0
- package/dist/compiler/imports/scan.min.cjs +3 -0
- package/dist/compiler/imports/scan.min.js +3 -0
- package/dist/compiler/incremental.min.cjs +73 -0
- package/dist/compiler/incremental.min.js +73 -0
- package/dist/compiler/index.min.cjs +67 -0
- package/dist/compiler/index.min.js +67 -0
- package/dist/compiler/profile.min.cjs +2 -0
- package/dist/compiler/profile.min.js +2 -0
- package/dist/compiler/renderer.min.cjs +8 -0
- package/dist/compiler/renderer.min.js +8 -0
- package/dist/compiler/resource-limits.min.cjs +1 -0
- package/dist/compiler/resource-limits.min.js +1 -0
- package/dist/compiler/security/guard.min.cjs +1 -0
- package/dist/compiler/security/guard.min.js +1 -0
- package/dist/compiler/variables/array-variable.min.cjs +1 -0
- package/dist/compiler/variables/array-variable.min.js +1 -0
- package/dist/config.min.cjs +1 -0
- package/dist/config.min.js +1 -0
- package/dist/guard/hybrid.min.cjs +2 -0
- package/dist/guard/hybrid.min.js +2 -0
- package/dist/guard/runtime.min.cjs +1 -0
- package/dist/guard/runtime.min.js +1 -0
- package/dist/guard/shared.min.cjs +1 -0
- package/dist/guard/shared.min.js +1 -0
- package/dist/guard/ssr.min.cjs +2 -0
- package/dist/guard/ssr.min.js +2 -0
- package/dist/index.min.cjs +103 -0
- package/dist/index.min.js +103 -0
- package/dist/runtime/diagnostics.min.cjs +1 -0
- package/dist/runtime/diagnostics.min.js +1 -0
- package/dist/runtime/features.min.cjs +2 -0
- package/dist/runtime/features.min.js +2 -0
- package/dist/runtime/index.min.cjs +103 -0
- package/dist/runtime/index.min.js +103 -0
- package/dist/runtime/lentystyle.compile.worker.min.js +83 -0
- package/dist/runtime/lentystyle.debug.min.js +4 -0
- package/dist/runtime/lentystyle.integrity.json +12 -0
- package/dist/runtime/lentystyle.lazy.min.js +1 -0
- package/dist/runtime/lentystyle.log-critical.min.js +1 -0
- package/dist/runtime/lentystyle.log-optional.min.js +1 -0
- package/dist/runtime/lentystyle.map.min.js +4 -0
- package/dist/runtime/lentystyle.min.js +103 -0
- package/dist/runtime/lentystyle.observed.min.js +9 -0
- package/dist/runtime/lentystyle.performance.min.js +1 -0
- package/dist/runtime/lentystyle.worker.min.js +2 -0
- package/dist/runtime/options.min.cjs +1 -0
- package/dist/runtime/options.min.js +1 -0
- package/dist/runtime/style-sheet.min.cjs +1 -0
- package/dist/runtime/style-sheet.min.js +1 -0
- package/dist/types/compiler/compiler/index.d.ts +4 -0
- package/dist/types/compiler/compiler/render/collect-leaves.d.ts +3 -0
- package/dist/types/compiler/compiler/render/index.d.ts +3 -0
- package/dist/types/compiler/compiler/render/render-buckets.d.ts +3 -0
- package/dist/types/compiler/compiler/render/types.d.ts +13 -0
- package/dist/types/compiler/compiler/renderer.d.ts +5 -0
- package/dist/types/compiler/compiler/resource-limits.d.ts +21 -0
- package/dist/types/compiler/compiler/types.d.ts +82 -0
- package/dist/types/compiler/index.d.ts +2 -0
- package/dist/types/compiler/reader.d.ts +5 -0
- package/dist/types/compiler/renderer.d.ts +1 -0
- package/dist/types/config.d.ts +14 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/runtime/diagnostics.d.ts +1 -0
- package/dist/types/runtime/features.d.ts +1 -0
- package/dist/types/runtime/index.d.ts +4 -0
- package/dist/types/runtime/options.d.ts +12 -0
- package/dist/types/runtime/runtime/features/assets.d.ts +3 -0
- package/dist/types/runtime/runtime/features/index.d.ts +5 -0
- package/dist/types/runtime/runtime/features/loader.d.ts +2 -0
- package/dist/types/runtime/runtime/features/performance-types.d.ts +39 -0
- package/dist/types/runtime/runtime/features/registry.d.ts +4 -0
- package/dist/types/runtime/runtime/features/types.d.ts +109 -0
- package/dist/types/runtime/runtime/loader/context-time.d.ts +2 -0
- package/dist/types/runtime/runtime/loader/context-types.d.ts +19 -0
- package/dist/types/runtime/runtime/loader/context.d.ts +18 -0
- package/dist/types/runtime/runtime/loader/options.d.ts +8 -0
- package/dist/types/runtime/runtime/loader/process/import-resolver/types.d.ts +12 -0
- package/dist/types/runtime/runtime/loader/process/types.d.ts +25 -0
- package/dist/types/runtime/runtime/style-sheet/cache.d.ts +6 -0
- package/dist/types/runtime/runtime/style-sheet.d.ts +7 -0
- package/dist/types/runtime/runtime/stylesheet-links/auto-loader.d.ts +7 -0
- package/dist/types/runtime/runtime/stylesheet-links/dom-compile.d.ts +9 -0
- package/dist/types/runtime/runtime/stylesheet-links.d.ts +2 -0
- package/dist/types/runtime/style-sheet.d.ts +1 -0
- package/dist/types/runtime/style.d.ts +2 -0
- package/package.json +117 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.0 - 2026-05-28
|
|
4
|
+
|
|
5
|
+
- CSS variables, class and pseudo selectors are now usable as variables.
|
|
6
|
+
- Object and array variables are now available.
|
|
7
|
+
- `@for`, `@if`, `elseif`, `else`, and `@fun` functions were added.
|
|
8
|
+
- Improvements for `${}` expressions and calculations were added.
|
|
9
|
+
- `@import` processing flow improvements.
|
|
10
|
+
- Improvements for `?` dynamic and `?!` initial Observed selectors were added.
|
|
11
|
+
- Debug, lazy, performance, worker, and map options for `data-luis` were added.
|
|
12
|
+
- Security `guard` layer improvements were added.
|
|
13
|
+
- Guard and browser runtime security checks are connected to a shared guard runtime adapter for URL, source, and script policy decisions.
|
package/CHANGELOG.tr.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Değişiklik Geçmişi
|
|
2
|
+
|
|
3
|
+
## 0.1.0 - 2026-05-28
|
|
4
|
+
|
|
5
|
+
- CSS değişkenler, class ve pseudo seçiciler değişken olarka kullanılabiler duruma getirildi.
|
|
6
|
+
- Obje ve array değişkenler kullanılabilir duruma getirildi.
|
|
7
|
+
- `@for`, `@if`,`elseif`, `else`, `@fun` fonksiyonları eklendi.
|
|
8
|
+
- `${...}` ifadeleri ve hesaplamalar için geliştirmeler eklendi.
|
|
9
|
+
- `@import` işleme akışı geliştirmeleri.
|
|
10
|
+
- `?` dynamic ve `?!` initial Observed seçiciler için geliştirmeler eklendi.
|
|
11
|
+
- `data-luis` için debug, lazy, performance, worker, map seçenekleri eklendi.
|
|
12
|
+
- Güvenlik için `guard` katmanı geliştirmeleri eklendi.
|
|
13
|
+
- Guard ve browser runtime güvenlik kontrolleri URL, kaynak ve script policy kararlarında ortak guard runtime adapterına bağlandı.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# LentyStyle Code of Conduct
|
|
2
|
+
|
|
3
|
+
Thank you for taking the time to be part of the LentyStyle ecosystem. This document explains the communication and behavior rules expected in LentyStyle community spaces.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Code of Conduct
|
|
8
|
+
|
|
9
|
+
When communicating with each other or with the project team, and when contributing to the project, please follow these rules.
|
|
10
|
+
|
|
11
|
+
The purpose of this community is to improve the application and solve problems. Communication should be respectful, honest, and constructive.
|
|
12
|
+
|
|
13
|
+
- Do not use disrespectful, offensive, accusatory, or suggestive language about another person's religion, language, race, political views, country, opinions, color, age, gender, or physical characteristics. Avoid personal attacks and attacks against any group or community.
|
|
14
|
+
- Use respectful and constructive language.
|
|
15
|
+
- Be open to different opinions, perspectives, and experiences. Do not belittle ideas.
|
|
16
|
+
- Community spaces should be used to improve the applications. Please do not use them for unrelated topics or personal conversations.
|
|
17
|
+
- Keep technical discussions focused.
|
|
18
|
+
- Do not share your own or anyone else's personal information.
|
|
19
|
+
- Do not impersonate another person.
|
|
20
|
+
- Do not use this community as a promotion space for unrelated products, services, or projects.
|
|
21
|
+
|
|
22
|
+
Even when community members try to act in good faith, disagreements may happen. Not every disagreement is a rule violation. Please try to resolve issues constructively instead of escalating them.
|
|
23
|
+
|
|
24
|
+
Community managers may not be able to monitor every message. If you notice something inappropriate, report it to the community managers instead of escalating the discussion.
|
|
25
|
+
|
|
26
|
+
Unconstructive, aggressive, disrespectful, or inappropriate words and actions are not accepted. When needed, prefer apologizing or correcting the mistake.
|
|
27
|
+
|
|
28
|
+
If these rules are not followed, or if inappropriate behavior continues, restrictions, temporary bans, or permanent bans may be applied.
|
|
29
|
+
|
|
30
|
+
## Closed Source and Project Materials
|
|
31
|
+
|
|
32
|
+
Some packages may be distributed as closed source or as compiled artifacts.
|
|
33
|
+
|
|
34
|
+
In community spaces, it is not appropriate to request, share, redistribute, or disclose non-public source code, internal tools, private repository information, or unpublished technical details.
|
|
35
|
+
|
|
36
|
+
For questions about licenses, usage scope, or source code access, please contact the project maintainers.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Thank You
|
|
41
|
+
|
|
42
|
+
Every contribution — large or small — helps strengthen the LentyStyle ecosystem.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# LentyStyle Davranış Kuralları
|
|
2
|
+
|
|
3
|
+
LentyStyle ekosistemi için zaman ayırdığınız için teşekkürler. Bu belge, LentyStyle topluluk alanlarında beklenen iletişim ve davranış kurallarını açıklar.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Davranış Kuralları
|
|
8
|
+
|
|
9
|
+
Topluluk içinde birbiriniz ile veya bizimle iletişim kurarken, katkıda bulunmak istediğinizde aşağıdaki kurallara uymanızı önemle rica ediyoruz.
|
|
10
|
+
Topluluğun amacı ve bir araya gelme sebebimiz var olan uygulamayı daha iyi hale getirmek, sorunları çözmek olmalı. Birbirimizle iletişim kurarken nazik ve dürüst davranalım.
|
|
11
|
+
|
|
12
|
+
- İletişim kurarken karşınızdakinin din, dil, ırk, siyasi tercih, ülke, fikir, renk, yaş, cinsiyet, fiziksel özelliklerine yönelik herhangi bir saygısızlık/itham/ima edici dil kesinlikle kabul edilmeyecektir. Kişisel veya bir topluluğa/gruba karşı saldırılardan kaçının.
|
|
13
|
+
- Birbirimize karşı saygılı ve yapıcı dil kullanalım.
|
|
14
|
+
- Farklı görüşlere, bakış açılarına ve deneyimlere açık olun, fikirleri küçümsemeyin.
|
|
15
|
+
- Buradaki topluluk alanları, uygulamaları geliştirmek amacıyla kullanılmalıdır. Uygulama dışındaki farklı konulardaki başlıklar, kişisel sohbetleriniz için lütfen burayı kullanmayın.
|
|
16
|
+
- Teknik tartışmalarda odağı koruyun.
|
|
17
|
+
- Kendinize veya başkasına ait herhangi bir kişisel bilgiyi burada paylaşmayın.
|
|
18
|
+
- Kendi hesabınızdan başkası gibi davranmayın.
|
|
19
|
+
- Bu topluluğu başka bir şeyin tanıtım alanı olarak kullanmayın.
|
|
20
|
+
|
|
21
|
+
Topluluk üyeleri daha iyisi için ellerinden geleni yapsalar bile aralarında gerilimler/sorunlar yaşanabilir. Her anlaşmazlık kuralları ihlali anlamına gelmeyebilir. Sorunları, anlaşmazlıkları büyütmek yerine yapıcı olmaya özen gösterin.
|
|
22
|
+
|
|
23
|
+
Topluluk yöneticileri her mesajı takip edemeyebilir. Uygun olmadığını düşündüğünüz durumları tartışmayı büyütmek yerine topluluk yöneticilerine iletin.
|
|
24
|
+
|
|
25
|
+
Yapıcı olmayan, saldırgan, saygısız ve uygun olmayan her türlü söz/eylem kabul edilmeyecektir. Gerektiğinde özür dileme veya hatayı telafi etme yöntemini tercih edelim.
|
|
26
|
+
|
|
27
|
+
Kurallara uyulmaması, kurallara uymayan eylemlere devam edilmesinde ısrar edilmesi kısıtlamalar, geçici veya kalıcı yasaklarla karşı karşıya kalmanıza sebep olabilir.
|
|
28
|
+
|
|
29
|
+
## Kapalı Kaynak ve Proje Materyalleri
|
|
30
|
+
|
|
31
|
+
Bazı paketler kapalı kaynak veya derlenmiş artifaktlar olarak dağıtılabilir.
|
|
32
|
+
|
|
33
|
+
Topluluk alanlarında, kamuya açık olmayan kaynak kodun, iç araçların, özel repository bilgilerinin veya yayımlanmamış teknik detayların paylaşılması ya da talep edilmesi uygun değildir.
|
|
34
|
+
|
|
35
|
+
Lisans, kullanım kapsamı veya kaynak kod erişimi ile ilgili sorular için proje yöneticileriyle iletişime geçebilirsiniz.
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## Teşekkürler
|
|
40
|
+
|
|
41
|
+
Her katkı — büyük ya da küçük — LentyStyle ekosistemini güçlendirir.
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Contributing to LentyStyle
|
|
2
|
+
|
|
3
|
+
Thank you for taking the time to contribute to the LentyStyle ecosystem. This document explains how to contribute and what is expected.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Source Code Access
|
|
8
|
+
|
|
9
|
+
This package is currently distributed as closed source or as compiled artifacts. For this reason, direct source-level contributions are not accepted at this stage.
|
|
10
|
+
|
|
11
|
+
You can still contribute by reporting bugs, sharing reproducible examples, suggesting improvements, improving documentation, reporting security issues through the appropriate private channel, and helping make the project more reliable and easier to use.
|
|
12
|
+
|
|
13
|
+
For license details, see `LICENSE.md`.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Opening Issues
|
|
18
|
+
|
|
19
|
+
**For bug reports:**
|
|
20
|
+
|
|
21
|
+
- Include the package and version you are using.
|
|
22
|
+
- Share a minimal example that reproduces the issue.
|
|
23
|
+
- Explain the expected behavior and the actual behavior.
|
|
24
|
+
- Include your browser or Node.js version.
|
|
25
|
+
- If you are able to share it, include a link to the project or page where the issue occurs.
|
|
26
|
+
- Briefly explain how the issue appeared, if relevant.
|
|
27
|
+
|
|
28
|
+
**For questions:**
|
|
29
|
+
|
|
30
|
+
Use GitHub Discussions instead of opening an issue.
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Code of Conduct
|
|
35
|
+
|
|
36
|
+
Everyone who contributes to this project is expected to follow the rules in `CODE_OF_CONDUCT.md`.
|
|
37
|
+
|
|
38
|
+
Communication in the community should be respectful, constructive, and polite. If you notice inappropriate behavior, please report it to the project maintainers instead of escalating the discussion.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## Contact
|
|
43
|
+
|
|
44
|
+
- **General questions:** GitHub Discussions
|
|
45
|
+
- **Bug reports:** GitHub Issues
|
|
46
|
+
- **License questions, collaboration, and partnerships:** hello@lentystyle.com
|
|
47
|
+
- **Security reports and other issues:** support@lentystyle.com
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Thank You
|
|
52
|
+
|
|
53
|
+
Every contribution — large or small — helps strengthen the LentyStyle ecosystem.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# LentyStyle'a Katkıda Bulunma
|
|
2
|
+
|
|
3
|
+
LentyStyle ekosistemi için zaman ayırdığınız için teşekkürler. Bu belge katkı sürecini ve beklentileri açıklamaktadır.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
## Kaynak Kod Erişimi
|
|
7
|
+
|
|
8
|
+
Bu paket şu aşamada kapalı kaynak veya derlenmiş artifaktlar olarak dağıtılmaktadır. Bu nedenle doğrudan kaynak kod seviyesinde katkı kabul edilmemektedir.
|
|
9
|
+
|
|
10
|
+
Yine de hata bildirimi, yeniden üretilebilir örnek, iyileştirme önerisi, dokümantasyon katkısı ve güvenlik bildirimi ile projeye katkıda bulunabilirsiniz.
|
|
11
|
+
|
|
12
|
+
Lisans detayları için `LICENSE.TR.md` dosyasını inceleyebilirsiniz.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Issue Açma Kuralları
|
|
17
|
+
|
|
18
|
+
**Hata raporu için:**
|
|
19
|
+
- Hangi paketi ve versiyonu kullandığınızı belirtin
|
|
20
|
+
- Hatayı yeniden oluşturmak için minimum örnek paylaşın
|
|
21
|
+
- Beklenen ve gerçekleşen davranışı açıklayın
|
|
22
|
+
- Tarayıcı/Node.js versiyonunu ekleyin
|
|
23
|
+
- Paylaşmanızda herhangi bir sakınca yoksa çalışmayı yaptığınız linki paylaşabilirsiniz.
|
|
24
|
+
- Varsa durumun nasıl ortaya çıktığını kısaca açıklayın.
|
|
25
|
+
|
|
26
|
+
**Soru sormak için:**
|
|
27
|
+
Issue açmak yerine GitHub Discussions kullanın.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Davranış Kuralları
|
|
32
|
+
|
|
33
|
+
Bu projeye katkıda bulunan herkesin `CODE_OF_CONDUCT.TR.md` dosyasında belirtilen davranış kurallarına uyması beklenir.
|
|
34
|
+
|
|
35
|
+
Topluluk içinde nazik, yapıcı ve saygılı iletişim esastır. Uygun olmadığını düşündüğünüz durumları tartışmayı büyütmeden proje yöneticilerine iletebilirsiniz.
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## İletişim
|
|
40
|
+
|
|
41
|
+
- **Genel sorular:** GitHub Discussions
|
|
42
|
+
- **Bug raporları:** GitHub Issues
|
|
43
|
+
- **Lisans soruları, işbirliği ve ortaklık:** hello@lentystyle.com
|
|
44
|
+
- **Güvenlik, hata bildirimleri ve diğer konular:** support@lentystyle.com
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Teşekkürler
|
|
49
|
+
|
|
50
|
+
Her katkı — büyük ya da küçük — LentyStyle ekosistemini güçlendirir.
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
# Luis License 1.0 (EN)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 LentyStyle. All rights reserved.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. Purpose
|
|
8
|
+
|
|
9
|
+
This software may be used as a software system, library, tool, engine, or software component that processes certain sources, definitions, configurations, files, or inputs and produces output.
|
|
10
|
+
|
|
11
|
+
The purpose of this license is to:
|
|
12
|
+
|
|
13
|
+
- allow developers to use this software freely in personal, commercial, and project-based use cases,
|
|
14
|
+
- support the growth of the ecosystem around the software,
|
|
15
|
+
- protect commercial use of the software at the platform, service, builder, white-label, and infrastructure level.
|
|
16
|
+
|
|
17
|
+
This license is not an open source license. The source code of the Covered Software is not publicly available at this stage. The software may be distributed only through compiled artifacts, binary files, packaged outputs, or similar distribution files.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 2. Covered Software
|
|
22
|
+
|
|
23
|
+
This license applies to all software components that include this license file (the “Covered Software”).
|
|
24
|
+
|
|
25
|
+
This license applies only to the version of the relevant software with which it is published and remains fixed for that version. Later versions may be published under different license terms.
|
|
26
|
+
|
|
27
|
+
In this version, the Covered Software may be provided only as compiled artifacts, binary files, bundle files, type definition files, packaged distribution files, and similar outputs.
|
|
28
|
+
|
|
29
|
+
Components that are not expressly covered by this license or that are published under a different license are outside the scope of this license.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 3. Free Use
|
|
34
|
+
|
|
35
|
+
The following use cases are free of charge.
|
|
36
|
+
|
|
37
|
+
### ✓ Personal projects
|
|
38
|
+
|
|
39
|
+
Use in hobby, learning, experimental, and open source projects is permitted.
|
|
40
|
+
|
|
41
|
+
Publishing a project as open source does not remove the restrictions imposed by this license on platform, service, builder, editor, white-label, infrastructure, or commercial productization use cases.
|
|
42
|
+
|
|
43
|
+
### ✓ Commercial projects
|
|
44
|
+
|
|
45
|
+
Use is permitted in your own websites, web applications, internal tools, product interfaces, or individual projects developed for your clients.
|
|
46
|
+
|
|
47
|
+
This permission does not grant the right to offer the Covered Software’s processing, compilation, runtime, server-side generation, pre-generated output, theme generation, or output generation capability to others as a service, platform, or product feature.
|
|
48
|
+
|
|
49
|
+
### ✓ Agency and freelance work
|
|
50
|
+
|
|
51
|
+
Developing websites, web applications, corporate sites, e-commerce sites, panels, or custom software for clients is permitted. Each client engagement is treated as a separate project.
|
|
52
|
+
|
|
53
|
+
An agency or developer may use the Covered Software as its own development tool. However, it may not offer the Covered Software’s processing capability as a service to multiple clients or end users through a centralized infrastructure.
|
|
54
|
+
|
|
55
|
+
### ✓ Self-hosted CMS, theme, and plugin use
|
|
56
|
+
|
|
57
|
+
Use of the Covered Software in self-hosted CMS, theme, plugin, module, or similar distributions is free of charge; however, such use is limited to producing the relevant installation’s own content, own interface, or own theme.
|
|
58
|
+
|
|
59
|
+
A commercial license is required in the following cases:
|
|
60
|
+
|
|
61
|
+
- multiple users creating sites, stores, landing pages, application interfaces, or content pages through the same centralized infrastructure,
|
|
62
|
+
- users processing, compiling, or converting their own sources, files, configurations, or inputs into output on your infrastructure,
|
|
63
|
+
- offering the Covered Software as a hosting, site-builder, no-code, low-code, design tool, editor, export engine, or white-label service capability.
|
|
64
|
+
|
|
65
|
+
### ✓ Desktop and mobile applications
|
|
66
|
+
|
|
67
|
+
You may use the Covered Software in your own desktop and mobile applications developed with Electron, Tauri, WebView, or similar technologies to create your application’s own interface or functional output. Browser bundles, binary files, or compiled distribution files may be distributed inside the packaged application.
|
|
68
|
+
|
|
69
|
+
This permission does not grant the right to offer the Covered Software’s source writing, editing, processing, compilation, preview, export, conversion, or output generation capability to end users as a product feature. Such builder, editor, design tool, code generator, design-to-code, or export products require a commercial license under Section 4.
|
|
70
|
+
|
|
71
|
+
### ✓ Themes, UI kits, and templates
|
|
72
|
+
|
|
73
|
+
Theme, UI kit, dashboard, component set, and template works that are sold as ready-made products to end users, where the Covered Software is only one of multiple tools, are free of charge. Sales through digital marketplaces are included in this scope.
|
|
74
|
+
|
|
75
|
+
These products must not directly expose the Covered Software’s processing capability to end users. If the Covered Software’s runtime, compiler, server-side generation, pre-generated output, export, or processing flow becomes available to users, such use requires a commercial license under Section 4.
|
|
76
|
+
|
|
77
|
+
### ✓ Custom integrations
|
|
78
|
+
|
|
79
|
+
You may write custom build, server-side generation, pre-generated output, adapter, or integration code for your own project or for an individual client project.
|
|
80
|
+
|
|
81
|
+
Public distribution of these integrations does not grant the right to repackage, hide, proxy, white-label, or offer as a service the Covered Software itself, its runtime components, compilation capabilities, or processing capabilities that require a commercial license.
|
|
82
|
+
|
|
83
|
+
### ✓ Artificial intelligence and code assistants
|
|
84
|
+
|
|
85
|
+
Generating code, source files, configurations, or output through artificial intelligence tools or code assistants, and running them in your own environment, is permitted. The fact that an artificial intelligence system knows or uses the syntax, format, or usage style of the Covered Software does not by itself create a restriction under this license.
|
|
86
|
+
|
|
87
|
+
This permission does not grant the right to offer source generation, source conversion, output generation, theme generation, design-to-code, code export, or generation of output compatible with the Covered Software to others as a product, platform, service, plugin, or commercial feature.
|
|
88
|
+
|
|
89
|
+
> Core principle: In these scenarios, the Covered Software is your development tool; it is not offered to end users as a separate processing, compilation, output generation, or platform capability.
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## 4. Uses Requiring a Commercial License
|
|
94
|
+
|
|
95
|
+
A commercial license is required in the following cases.
|
|
96
|
+
|
|
97
|
+
### 4.1 Use as a Service
|
|
98
|
+
|
|
99
|
+
The following uses require a commercial license:
|
|
100
|
+
|
|
101
|
+
- tools where users upload source files, configurations, inputs, or content and receive output, manifests, server-side output, pre-generated artifacts, theme output, or any other output in return,
|
|
102
|
+
- services that process user-owned sources through an API, web tool, CLI service, cloud job, worker, build service, or automated pipeline,
|
|
103
|
+
- systems that offer the Covered Software’s compile, transform, runtime, server-side rendering, pre-rendering, snapshot, build-time generation, or similar processing capability to others as a service.
|
|
104
|
+
|
|
105
|
+
Local or internal automated build processes used for your own project are not covered by this section.
|
|
106
|
+
|
|
107
|
+
### 4.2 Platform, SaaS, and Site Builder Use
|
|
108
|
+
|
|
109
|
+
The following uses require a commercial license:
|
|
110
|
+
|
|
111
|
+
- SaaS, PaaS, site builder, no-code, or low-code platforms where users create their own sites, stores, landing pages, application interfaces, or content pages,
|
|
112
|
+
- systems where the Covered Software runs in the background but is presented to end users as the platform’s own built-in style, theme, output, processing, or UI engine,
|
|
113
|
+
- services that provide source compilation, runtime processing, server-side generation, pre-generated output, theme generation, or output for multiple clients or end users through centralized infrastructure,
|
|
114
|
+
- marketing the Covered Software as another product’s own engine by hiding the Covered Software’s name, license, or technical presence.
|
|
115
|
+
|
|
116
|
+
Individual client projects, agency work, self-hosted CMS installations, and uses made solely to create your own product’s interface or your own internal output are not covered by this section.
|
|
117
|
+
|
|
118
|
+
### 4.3 Hosting and Automated Processing
|
|
119
|
+
|
|
120
|
+
The following uses require a commercial license:
|
|
121
|
+
|
|
122
|
+
- hosting users’ source files or project sources on your infrastructure,
|
|
123
|
+
- automatically processing, compiling, or converting user-owned sources into output on your infrastructure,
|
|
124
|
+
- producing source, output, manifests, server-side output, or pre-generated artifacts on your infrastructure from user-owned HTML, components, prompts, designs, content, configurations, or other inputs,
|
|
125
|
+
- running server-side generation, pre-generated output, runtime processing, or security/guard operations through centralized infrastructure that serves multiple users.
|
|
126
|
+
|
|
127
|
+
Automated compilation and processing workflows used for your own projects, internal tools, or individual client projects are not covered by this section.
|
|
128
|
+
|
|
129
|
+
### 4.4 Design Tool, Builder, Editor, and Code Generation Products
|
|
130
|
+
|
|
131
|
+
The following uses require a commercial license:
|
|
132
|
+
|
|
133
|
+
- products where users generate source, output, manifests, server-side output, pre-generated artifacts, or theme output from designs, prompts, images, components, HTML, configurations, or any other source,
|
|
134
|
+
- design tools, AI design-to-code products, no-code/low-code builders, output builders, theme editors, UI editors, code generation tools, and export tools,
|
|
135
|
+
- systems that offer the Covered Software’s syntax, format, or compilation/runtime capability as the product’s output format, export option, theme engine, styling infrastructure, processing engine, or code generation target,
|
|
136
|
+
- commercial tools that allow users to write, edit, compile, process, preview, export, or generate output from sources.
|
|
137
|
+
|
|
138
|
+
This restriction applies regardless of whether the tool is offered as a web, desktop, mobile, plugin, API, CLI, agent, or automation product.
|
|
139
|
+
|
|
140
|
+
Using artificial intelligence or a code assistant in your own project to generate code, source files, or configurations is not covered by this section. The restriction applies when this capability is offered to others as a product, platform, service, or commercial feature.
|
|
141
|
+
|
|
142
|
+
### 4.5 Platform-Level UI or Output Systems
|
|
143
|
+
|
|
144
|
+
The following uses require a commercial license:
|
|
145
|
+
|
|
146
|
+
- UI, theme, style, output, or content generation systems that depend on the Covered Software’s runtime, compiler, server-side generation, or pre-generated output and serve multiple users,
|
|
147
|
+
- dynamic UI engines, output engines, or theme generation systems used inside SaaS, PaaS, hosted CMS, site builder, or similar platforms,
|
|
148
|
+
- theme, style, layout, content, output, or UI generation systems built on top of the Covered Software and offered to multiple users, clients, or tenants.
|
|
149
|
+
|
|
150
|
+
Using the Covered Software in your own product’s fixed or internal interface, or in your own internal output generation process, is not covered by this section.
|
|
151
|
+
|
|
152
|
+
### 4.6 White-label, Rebranding, and Competing Engine Use
|
|
153
|
+
|
|
154
|
+
The following uses require a commercial license or are prohibited without written permission:
|
|
155
|
+
|
|
156
|
+
- repackaging the Covered Software under a different name, brand, or product,
|
|
157
|
+
- presenting the Covered Software as a product’s own internally developed style engine, theme engine, compiler, runtime, processing engine, output engine, or UI engine,
|
|
158
|
+
- hiding the Covered Software’s name, license, or technical presence from end users,
|
|
159
|
+
- using the outputs, APIs, runtime components, or distribution files of the covered packages to develop a competing compiler, runtime, styling engine, processing engine, output engine, or compatible alternative engine,
|
|
160
|
+
- developing commercial products that generate output compatible with the Covered Software, aim to replace the Covered Software, or substitute the Covered Software’s ecosystem.
|
|
161
|
+
|
|
162
|
+
Individual projects, agency projects, self-hosted uses, or ready-made theme/template distributions that clearly disclose the use of the Covered Software are not considered within this section. However, the commercial license requirements in Section 4 continue to apply to platform, SaaS, builder, service, multi-user system, or productized export/engine uses.
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
## 5. Core Principle
|
|
167
|
+
|
|
168
|
+
> If you use the Covered Software in your own project: free of charge.
|
|
169
|
+
>
|
|
170
|
+
> If you develop an individual project for your client: free of charge.
|
|
171
|
+
>
|
|
172
|
+
> If you create and sell a theme, UI kit, or template and do not offer the Covered Software’s processing capability as a service: free of charge.
|
|
173
|
+
>
|
|
174
|
+
> If you offer the Covered Software’s processing capability to others as an engine, builder, SaaS, export format, compiler, runtime, server-side rendering, pre-rendering, theme engine, processing engine, or platform infrastructure: a commercial license is required.
|
|
175
|
+
>
|
|
176
|
+
> If you market the Covered Software as an engine developed by your own product: written permission or a commercial license is required.
|
|
177
|
+
|
|
178
|
+
If you are unsure whether your use case requires a commercial license, permission or commercial license terms should be clarified through the software owner’s official communication channels.
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## 6. Usage Examples (For Information Only)
|
|
183
|
+
|
|
184
|
+
This section is not an interpretation of the license text. It is included to clarify common scenarios.
|
|
185
|
+
|
|
186
|
+
### Examples of permitted free use
|
|
187
|
+
|
|
188
|
+
✓ Developing your own e-commerce site with the Covered Software.
|
|
189
|
+
|
|
190
|
+
✓ Building a corporate website for a client.
|
|
191
|
+
|
|
192
|
+
✓ Developing a product’s own interface with the Covered Software.
|
|
193
|
+
|
|
194
|
+
✓ Producing only the relevant site’s theme or interface inside a self-hosted CMS installation.
|
|
195
|
+
|
|
196
|
+
✓ Preparing a dashboard theme that includes source files and selling it on a digital marketplace; the buyer uses the theme in their own project, and you do not offer the Covered Software’s processing capability as a service.
|
|
197
|
+
|
|
198
|
+
✓ Using the Covered Software in your desktop or mobile application’s own interface.
|
|
199
|
+
|
|
200
|
+
✓ Generating code, source files, or configurations with artificial intelligence or a code assistant and running them in your own environment.
|
|
201
|
+
|
|
202
|
+
✓ Writing custom build, server-side generation, pre-generated output, or adapter integration for your own project.
|
|
203
|
+
|
|
204
|
+
### Examples requiring a commercial license
|
|
205
|
+
|
|
206
|
+
✗ Creating a web tool, API, or service where users upload source files and receive output, manifests, server-side output, or pre-generated artifacts.
|
|
207
|
+
|
|
208
|
+
✗ Running the Covered Software in the background inside a platform where users create their own sites, stores, landing pages, or application interfaces.
|
|
209
|
+
|
|
210
|
+
✗ Developing a product where users receive source, output, or theme output from designs, prompts, components, or images.
|
|
211
|
+
|
|
212
|
+
✗ Developing a commercial builder, editor, design tool, code generation tool, or plugin that lets users write, edit, compile, preview, or export sources.
|
|
213
|
+
|
|
214
|
+
✗ Hosting users’ source files on your infrastructure and automatically running server-side generation, pre-generated output, runtime processing, or compilation.
|
|
215
|
+
|
|
216
|
+
✗ Packaging the Covered Software under another name and presenting it as your own compiler, runtime, theme engine, processing engine, output engine, or UI engine.
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
## 7. Restrictions
|
|
221
|
+
|
|
222
|
+
The following are prohibited:
|
|
223
|
+
|
|
224
|
+
- modifying the source code of the covered packages, decompiling, reverse engineering, or attempting to reconstruct them,
|
|
225
|
+
- using the Covered Software’s compiled outputs, binary files, bundle files, type definition files, runtime components, public APIs, or distributed packages to create another processing, compilation, runtime, styling engine, output engine, or compatible alternative system,
|
|
226
|
+
- removing or modifying copyright notices, license files, or attribution metadata,
|
|
227
|
+
- transferring or sublicensing the rights granted under this license to any third party,
|
|
228
|
+
- using the name, logo, or trademarks of the Covered Software without written permission in a way that implies endorsement of your product or service,
|
|
229
|
+
- using the Covered Software for any use requiring a commercial license under Section 4 without obtaining a written commercial license.
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## 8. Redistribution
|
|
234
|
+
|
|
235
|
+
You may redistribute compiled artifacts, binary files, bundle files, type definition files, packaged distribution files, and similar outputs as part of your own product or package, provided that:
|
|
236
|
+
|
|
237
|
+
- this license file is included without modification,
|
|
238
|
+
- the redistribution does not constitute a platform, service, builder, white-label, competing engine, or other use requiring a commercial license as defined in Section 4,
|
|
239
|
+
- the files are not modified, hidden, renamed and presented as a different engine, or packaged in a way that conceals the technical presence of the Covered Software.
|
|
240
|
+
|
|
241
|
+
Redistribution does not create any right to sublicense the Covered Software. End users may use the Covered Software only under the terms of this license.
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
## 9. Source Code Release and Open Luis License
|
|
246
|
+
|
|
247
|
+
At the initial stage, the Covered Software may be published only as compiled artifacts, binary files, bundle files, type definition files, packaged distribution files, and similar outputs.
|
|
248
|
+
|
|
249
|
+
The software owner will make the source code of the Covered Software publicly available under the Open Luis License no later than 2 years after the first public release date. This date may only be moved earlier; it may not be delayed. A delay is permitted only due to legal, security, or infrastructure requirements outside the reasonable control of the software owner.
|
|
250
|
+
|
|
251
|
+
The Open Luis License may allow inspection of the source code, use for learning purposes, contribution, and use within the scope permitted by that license.
|
|
252
|
+
|
|
253
|
+
Making the source code available does not automatically remove the Covered Software’s restrictions on platform, SaaS, builder, editor, design tool, code generator, white-label, hosted service, export engine, competing engine, or multi-user use. Such uses may still require a separate commercial license under the Open Luis License.
|
|
254
|
+
|
|
255
|
+
A transition to MIT, Apache-2.0, or similar unrestricted open source licenses applies only to software components and versions that are expressly published under those licenses by the software owner.
|
|
256
|
+
|
|
257
|
+
Some helper components, tools, editor integrations, documentation parts, or independent modules may be published under different licenses. Those components are governed by their own license terms and are outside the scope of this license.
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
## 10. No Warranty
|
|
262
|
+
|
|
263
|
+
This software is provided “as is”, without any express or implied warranty, including but not limited to warranties of merchantability, fitness for a particular purpose, or non-infringement.
|
|
264
|
+
|
|
265
|
+
In no event shall the author or copyright holders be liable for any claim, damages, or other liability arising from the software or the use of the software, whether in contract, tort, or otherwise.
|
|
266
|
+
|
|
267
|
+
The user acknowledges that they use this software based on their own risk assessment. The software owner does not warrant that the software will be secure, uninterrupted, or error-free.
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## 11. Termination
|
|
272
|
+
|
|
273
|
+
If you violate any term of this license, your rights automatically terminate. Upon termination, you must immediately stop using and distributing the Covered Software.
|
|
274
|
+
|
|
275
|
+
Termination does not waive or limit the software owner’s other rights arising from the violation, commercial license claims, or legal remedies.
|
|
276
|
+
|
|
277
|
+
---
|
|
278
|
+
|
|
279
|
+
## 12. Contact
|
|
280
|
+
|
|
281
|
+
For commercial license requests, partnership programs, or questions about permitted use, the software owner’s official communication channels should be used.
|