@genarou/blazir-icons 1.2.20 → 1.3.2
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/LICENSE +121 -0
- package/README.md +1206 -0
- package/dist/CustomIcon.svelte +30 -0
- package/dist/CustomIcon.svelte.d.ts +14 -0
- package/dist/Icon.svelte +282 -102
- package/dist/Icon.svelte.d.ts +12 -5
- package/dist/IconBadge.svelte +75 -0
- package/dist/IconBadge.svelte.d.ts +16 -0
- package/dist/IconBase.svelte +89 -57
- package/dist/effects.js +1 -3
- package/dist/icons/Camera.svelte +19 -0
- package/dist/icons/Camera.svelte.d.ts +4 -0
- package/dist/icons/Cards.svelte +19 -0
- package/dist/icons/Cards.svelte.d.ts +4 -0
- package/dist/icons/CloudAlert.svelte +19 -0
- package/dist/icons/CloudAlert.svelte.d.ts +4 -0
- package/dist/icons/CloudCheck.svelte +19 -0
- package/dist/icons/CloudCheck.svelte.d.ts +4 -0
- package/dist/icons/CloudDownload.svelte +19 -0
- package/dist/icons/CloudDownload.svelte.d.ts +4 -0
- package/dist/icons/CreditCard.svelte +19 -0
- package/dist/icons/CreditCard.svelte.d.ts +4 -0
- package/dist/icons/Desktop.svelte +19 -0
- package/dist/icons/Desktop.svelte.d.ts +4 -0
- package/dist/icons/DoughnutChart.svelte +19 -0
- package/dist/icons/DoughnutChart.svelte.d.ts +4 -0
- package/dist/icons/Earth.svelte +19 -0
- package/dist/icons/Earth.svelte.d.ts +4 -0
- package/dist/icons/Globe.svelte +19 -0
- package/dist/icons/Globe.svelte.d.ts +4 -0
- package/dist/icons/LightHub.svelte +19 -0
- package/dist/icons/LightHub.svelte.d.ts +4 -0
- package/dist/icons/Link.svelte +19 -0
- package/dist/icons/Link.svelte.d.ts +4 -0
- package/dist/icons/Power.svelte +19 -0
- package/dist/icons/Power.svelte.d.ts +4 -0
- package/dist/icons/Receipt.svelte +19 -0
- package/dist/icons/Receipt.svelte.d.ts +4 -0
- package/dist/icons/Sync.svelte +19 -0
- package/dist/icons/Sync.svelte.d.ts +4 -0
- package/dist/icons/Upload.svelte +12 -57
- package/dist/icons/Wifi.svelte +19 -0
- package/dist/icons/Wifi.svelte.d.ts +4 -0
- package/dist/icons/lazy-registry.d.ts +21 -0
- package/dist/icons/lazy-registry.js +251 -0
- package/dist/icons/registry.d.ts +145 -134
- package/dist/icons/registry.js +177 -137
- package/dist/icons-api.d.ts +65 -267
- package/dist/icons-api.js +82 -465
- package/dist/index.d.ts +5 -5
- package/dist/index.js +14 -11
- package/dist/plugin/index.d.ts +46 -0
- package/dist/plugin/index.js +327 -0
- package/dist/smart-cache.d.ts +35 -0
- package/dist/smart-cache.js +192 -0
- package/dist/types.d.ts +19 -2
- package/dist/utils/sanitize.d.ts +25 -0
- package/dist/utils/sanitize.js +109 -0
- package/package.json +23 -13
- package/dist/icons/Aws.svelte +0 -19
- package/dist/icons/Aws.svelte.d.ts +0 -4
- package/dist/icons/Facebook.svelte +0 -18
- package/dist/icons/Facebook.svelte.d.ts +0 -4
- package/dist/icons/Golang.svelte +0 -17
- package/dist/icons/Golang.svelte.d.ts +0 -4
- package/dist/icons/Google.svelte +0 -18
- package/dist/icons/Google.svelte.d.ts +0 -4
- package/dist/icons/Paypal.svelte +0 -21
- package/dist/icons/Paypal.svelte.d.ts +0 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
Business Source License 1.1
|
|
2
|
+
|
|
3
|
+
Licensor: Genaro Utrilla Garrido
|
|
4
|
+
Licensed Work: blazir-icons
|
|
5
|
+
Copyright (c) 2026 Genaro Utrilla Garrido
|
|
6
|
+
Additional Use Grant: You may use the Licensed Work for any non-production
|
|
7
|
+
purpose, including development, testing, evaluation,
|
|
8
|
+
and personal or internal research, at no cost.
|
|
9
|
+
Production use requires a separate commercial license
|
|
10
|
+
from the Licensor.
|
|
11
|
+
Change Date: Four (4) years from the release date of each version.
|
|
12
|
+
Change License: Apache License, Version 2.0
|
|
13
|
+
|
|
14
|
+
-------------------------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
TERMS
|
|
17
|
+
|
|
18
|
+
The Licensor hereby grants you the right to copy, modify, create derivative
|
|
19
|
+
works, redistribute, and make non-production use of the Licensed Work. The
|
|
20
|
+
Licensor may make an Additional Use Grant, above, permitting limited production
|
|
21
|
+
use.
|
|
22
|
+
|
|
23
|
+
Effective on the Change Date, or the fourth anniversary of the first publicly
|
|
24
|
+
available distribution of a specific version of the Licensed Work under this
|
|
25
|
+
License, whichever comes first, the Licensor hereby grants you rights under the
|
|
26
|
+
terms of the Change License, and the rights granted in the paragraph above
|
|
27
|
+
terminate.
|
|
28
|
+
|
|
29
|
+
If your use of the Licensed Work does not comply with the requirements currently
|
|
30
|
+
in effect as described in this License, you must purchase a commercial license
|
|
31
|
+
from the Licensor, its affiliated entities, or authorized resellers, or you must
|
|
32
|
+
refrain from using the Licensed Work.
|
|
33
|
+
|
|
34
|
+
All copies of the original and modified Licensed Work, and derivative works of
|
|
35
|
+
the Licensed Work, are subject to this License. This License applies separately
|
|
36
|
+
for each version of the Licensed Work, and the Change Date may vary for each
|
|
37
|
+
version of the Licensed Work released by the Licensor.
|
|
38
|
+
|
|
39
|
+
You must conspicuously display this License on each original or modified copy
|
|
40
|
+
of the Licensed Work. If you receive the Licensed Work in original or modified
|
|
41
|
+
form from a third party, the terms and conditions set forth in this License
|
|
42
|
+
apply to your use of that work.
|
|
43
|
+
|
|
44
|
+
Any use of the Licensed Work in violation of this License will automatically
|
|
45
|
+
terminate your rights under this License for the current and all other versions
|
|
46
|
+
of the Licensed Work.
|
|
47
|
+
|
|
48
|
+
This License does not grant you any right in any trademark or logo of Licensor
|
|
49
|
+
or its affiliates (providing that you may use a trademark or logo of Licensor as
|
|
50
|
+
expressly required by this License).
|
|
51
|
+
|
|
52
|
+
TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN
|
|
53
|
+
"AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS
|
|
54
|
+
OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY,
|
|
55
|
+
FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE.
|
|
56
|
+
|
|
57
|
+
-------------------------------------------------------------------------------
|
|
58
|
+
|
|
59
|
+
LIMITATION OF LIABILITY
|
|
60
|
+
|
|
61
|
+
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSOR AND
|
|
62
|
+
CONTRIBUTORS SHALL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
63
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES, INCLUDING, WITHOUT LIMITATION,
|
|
64
|
+
LOSS OF PROFITS, REVENUE, DATA, GOODWILL, OR OTHER INTANGIBLE LOSSES, OR FOR
|
|
65
|
+
THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, ARISING FROM OR
|
|
66
|
+
RELATED TO THE USE OR INABILITY TO USE THE SOFTWARE, THIS LICENSE, OR THE
|
|
67
|
+
LICENSED WORK.
|
|
68
|
+
THIS LIMITATION APPLIES REGARDLESS OF THE LEGAL THEORY UNDER WHICH LIABILITY
|
|
69
|
+
IS ASSERTED, WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT
|
|
70
|
+
LIABILITY, OR OTHERWISE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES..
|
|
71
|
+
|
|
72
|
+
-------------------------------------------------------------------------------
|
|
73
|
+
|
|
74
|
+
TRADEMARK AND BRAND DISCLAIMER
|
|
75
|
+
|
|
76
|
+
The SVG icons included in this library that visually represent third-party
|
|
77
|
+
brands, companies, or services are original artistic works hand-crafted by
|
|
78
|
+
the Licensor as stylized geometric representations.
|
|
79
|
+
They are NOT official assets, NOT sourced from official brand
|
|
80
|
+
kits, and are NOT endorsed, sponsored, affiliated with, or approved by the
|
|
81
|
+
respective trademark owners.
|
|
82
|
+
|
|
83
|
+
All brand names, product names, and trademarks referenced or represented in
|
|
84
|
+
this library are the property of their respective owners.
|
|
85
|
+
|
|
86
|
+
USERS OF THIS LIBRARY ARE SOLELY RESPONSIBLE for ensuring that their use of
|
|
87
|
+
any brand-referencing icon complies with:
|
|
88
|
+
(a) the applicable trademark and brand guidelines of the respective owner; and
|
|
89
|
+
(b) all applicable laws and regulations in their jurisdiction.
|
|
90
|
+
|
|
91
|
+
The Licensor makes no representation or warranty that use of any icon in this
|
|
92
|
+
library for any particular purpose is lawful or permissible. If you are unsure
|
|
93
|
+
whether your use of a specific icon complies with a brand owner's guidelines,
|
|
94
|
+
seek independent legal advice before use.
|
|
95
|
+
|
|
96
|
+
-------------------------------------------------------------------------------
|
|
97
|
+
|
|
98
|
+
ORIGINALITY STATEMENT
|
|
99
|
+
|
|
100
|
+
The geometric SVG path data contained in this library consists of original
|
|
101
|
+
artistic works created by the Licensor from scratch. No SVG assets, path data,
|
|
102
|
+
or source files have been copied, derived from, or adapted from any third-party
|
|
103
|
+
icon library, design system, or commercially distributed icon set without
|
|
104
|
+
express written permission.
|
|
105
|
+
|
|
106
|
+
Any visual similarity to icons in other libraries is a result of the inherent
|
|
107
|
+
convergence of visual design for standard UI concepts (checkmark, home,
|
|
108
|
+
magnifying glass, etc.) and does not constitute copying or infringement.
|
|
109
|
+
|
|
110
|
+
-------------------------------------------------------------------------------
|
|
111
|
+
|
|
112
|
+
NO LEGAL ADVICE
|
|
113
|
+
|
|
114
|
+
Nothing in this License constitutes legal advice. The Licensor is not a lawyer.
|
|
115
|
+
Users should consult qualified legal counsel for advice specific to their
|
|
116
|
+
situation and jurisdiction.
|
|
117
|
+
|
|
118
|
+
-------------------------------------------------------------------------------
|
|
119
|
+
|
|
120
|
+
Business Source License 1.1 is not an Open Source license. For the definition
|
|
121
|
+
of "Open Source," see https://opensource.org/osd.
|