phoenix_duskmoon 5.1.0 → 6.0.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.
@@ -0,0 +1,50 @@
1
+
2
+ @layer components {
3
+ .spotlight-search {
4
+ width: 80vw;
5
+ max-width: 800px;
6
+ padding: 0rem;
7
+ /* border-radius: 0.5rem; */
8
+ background-color: #ff00;
9
+ box-shadow: 0 0 2rem 0.5rem #6666;
10
+ display: none;
11
+ flex-direction: column;
12
+ margin: auto;
13
+
14
+ .spotlight-input {
15
+ @apply flex items-center gap-2;
16
+ flex: 0 0 auto;
17
+ min-width: 100%;
18
+
19
+ input {
20
+ @apply w-full text-base-content;
21
+ }
22
+ }
23
+
24
+ .spotlight-loading {
25
+ @apply flex items-center justify-center h-6 loading loading-bars loading-sm;
26
+ margin: 0 auto;
27
+ }
28
+
29
+ .spotlight-suggestion-list {
30
+ @apply max-h-56 bg-base-100 shadow-lg flex flex-col overflow-auto rounded;
31
+
32
+ .item {
33
+ @apply h-8 flex items-center text-base-content bg-base-300 px-4;
34
+ flex: 0 0 2rem;
35
+ }
36
+ .item.autocomplete-active {
37
+ @apply bg-primary text-primary-content;
38
+ }
39
+ }
40
+ .spotlight-suggestion-list:empty {
41
+ display: none;
42
+ }
43
+ }
44
+ .spotlight-search[open] {
45
+ display: flex;
46
+ }
47
+ .spotlight-search::backdrop {
48
+ background: #1111;
49
+ }
50
+ }
@@ -0,0 +1,8 @@
1
+ @import "./components/spotlight-search.css";
2
+ @import "./components/signature.css";
3
+ @import "./components/eclipse.css";
4
+ @import "./components/plasma-ball.css";
5
+ @import "./components/atom.css";
6
+ @import "./components/snow.css";
7
+ @import "./components/footer-bubbles.css";
8
+ @import "./components/button.css";
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "phoenix_duskmoon",
3
- "version": "5.1.0",
4
- "main": "./priv/static/phoenix_duskmoon.js",
3
+ "version": "6.0.2",
4
+ "type": "module",
5
5
  "exports": {
6
6
  ".": "./priv/static/phoenix_duskmoon.js",
7
7
  "./css": "./priv/static/phoenix_duskmoon.css",
8
+ "./components": "./assets/css/components.css",
9
+ "./theme": "./assets/css/theme.css",
8
10
  "./svg/mdi/*.svg": "./priv/mdi/svg/*.svg",
9
11
  "./svg/bsi/*.svg": "./priv/bsi/svg/*.svg"
10
12
  },
@@ -16,6 +18,8 @@
16
18
  "CHANGELOG.md",
17
19
  "LICENSE",
18
20
  "package.json",
21
+ "assets/css/components.css",
22
+ "assets/css/components/",
19
23
  "priv/static/",
20
24
  "priv/svg/"
21
25
  ],
@@ -23,17 +27,19 @@
23
27
  "registry": "https://registry.npmjs.org/"
24
28
  },
25
29
  "dependencies": {
26
- "@gsmlg/lit": "1.30.3",
27
- "lit": "^3.2.1",
28
- "lit-element": "^4.1.1",
29
- "lit-html": "^3.2.1"
30
+ "@gsmlg/lit": "1.29.5",
31
+ "lit": "^2.4.1",
32
+ "lit-element": "^3.2.2",
33
+ "lit-html": "^2.4.0"
30
34
  },
31
35
  "devDependencies": {
32
36
  "@babel/core": "^7.26.0",
33
37
  "@babel/preset-env": "^7.26.0",
38
+ "@mdi/svg": "^7.4.47",
34
39
  "@tailwindcss/container-queries": "^0.1.1",
35
40
  "@tailwindcss/typography": "^0.5.16",
36
- "daisyui": "^4.12.23",
41
+ "bootstrap-icons": "^1.11.3",
42
+ "daisyui": "^5.0.0-beta.6",
37
43
  "postcss": "^8.5.1"
38
44
  },
39
45
  "peerDependencies": {