phoenix_duskmoon 5.0.2 → 5.0.6
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 +34 -0
- package/package.json +11 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
## [5.0.6](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v5.0.5...v5.0.6) (2025-01-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Fix ci. ([a5590bb](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/a5590bb26df39b27b68837e64f83e9ddb4aab1cc))
|
|
7
|
+
* Fix ci. ([ba095d1](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/ba095d1ca79fb9762e635fe88d6389e4547dd1c5))
|
|
8
|
+
|
|
9
|
+
## [5.0.5](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v5.0.4...v5.0.5) (2025-01-21)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* Fix build. ([4001505](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/400150561534cd2f7fd3d054e312d0be7038bc25))
|
|
15
|
+
* Fix ci version. ([168a499](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/168a4990576b011f4883cc1f7c12d4d568ba9d0a))
|
|
16
|
+
* Fix ci. ([6b39123](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/6b3912363b90c9faa77965afe7b842e7c64900b4))
|
|
17
|
+
|
|
18
|
+
## [5.0.4](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v5.0.3...v5.0.4) (2025-01-21)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* Fix build. ([dc45b47](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/dc45b47aa685c5ae5f12b009c10b4488d530f58d))
|
|
24
|
+
|
|
25
|
+
## [5.0.3](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v5.0.2...v5.0.3) (2025-01-20)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* Fix. ([27c37e7](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/27c37e7bc213438744ab37f85f90f1442ce9db0b))
|
|
31
|
+
* Fix. ([ac5810b](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/ac5810b2aa7ffdb7fac68523054f60766d581b8e))
|
|
32
|
+
* Fix. ([9a2c8b3](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/9a2c8b340fc76529994894f12eb2c466acaa0440))
|
|
33
|
+
* Use npm workspace. ([e03932e](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/e03932ed0ebe52e63473c2ceec687b284a2ff7f5))
|
|
34
|
+
|
|
1
35
|
## [5.0.2](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v5.0.1...v5.0.2) (2025-01-17)
|
|
2
36
|
|
|
3
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phoenix_duskmoon",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"main": "./priv/static/phoenix_duskmoon.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./priv/static/phoenix_duskmoon.js",
|
|
@@ -24,16 +24,17 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@gsmlg/lit": "1.30.3",
|
|
27
|
-
"lit": "^3.1
|
|
28
|
-
"lit-element": "^4.
|
|
29
|
-
"lit-html": "^3.1
|
|
27
|
+
"lit": "^3.2.1",
|
|
28
|
+
"lit-element": "^4.1.1",
|
|
29
|
+
"lit-html": "^3.2.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@babel/core": "^7.
|
|
33
|
-
"@babel/preset-env": "^7.
|
|
34
|
-
"@tailwindcss/
|
|
35
|
-
"
|
|
36
|
-
"
|
|
32
|
+
"@babel/core": "^7.26.0",
|
|
33
|
+
"@babel/preset-env": "^7.26.0",
|
|
34
|
+
"@tailwindcss/container-queries": "^0.1.1",
|
|
35
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
36
|
+
"daisyui": "^4.12.23",
|
|
37
|
+
"postcss": "^8.5.1"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|
|
39
40
|
"@gsmlg/lit": "1.29.5",
|
|
@@ -41,4 +42,4 @@
|
|
|
41
42
|
"lit-element": "^3.2.2",
|
|
42
43
|
"lit-html": "^2.4.0"
|
|
43
44
|
}
|
|
44
|
-
}
|
|
45
|
+
}
|