@lordicon/web 1.0.0 → 1.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/{LICENSE → LICENSE.md} +2 -11
- package/dist/index.js +5289 -6264
- package/dist/src/index.d.ts +2 -0
- package/dist/src/interfaces.d.ts +163 -0
- package/dist/src/lottie.d.ts +48 -0
- package/dist/src/parsers.d.ts +40 -0
- package/dist/{index.d.ts → src/player.d.ts} +233 -388
- package/dist/src/utils.d.ts +39 -0
- package/examples/03-states.html +3 -1
- package/examples/04-events.ts +0 -1
- package/examples/index.html +1 -0
- package/package.json +10 -10
- package/src/player.ts +15 -1
package/{LICENSE → LICENSE.md}
RENAMED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
The MIT License
|
|
1
|
+
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2025 Lordicon
|
|
4
4
|
|
|
5
|
-
====
|
|
6
|
-
|
|
7
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
9
7
|
in the Software without restriction, including without limitation the rights
|
|
@@ -20,11 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
20
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
-
SOFTWARE.
|
|
24
|
-
|
|
25
|
-
====
|
|
26
|
-
|
|
27
|
-
Files located in the node_modules directories are externally
|
|
28
|
-
maintained libraries used by this software which have their own
|
|
29
|
-
licenses; we recommend you read them, as their terms may differ from the
|
|
30
|
-
terms above.
|
|
21
|
+
SOFTWARE.
|