duckylib 0.0.12 → 0.0.13

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.
@@ -18,7 +18,8 @@
18
18
  <p class="font-bold">{label}</p>
19
19
  </button>
20
20
 
21
- <style src="../../styles/globals.css">
21
+ <style>
22
+ @import url("../../styles/globals.css");
22
23
 
23
24
  button {
24
25
  cursor: pointer;
@@ -65,7 +65,8 @@
65
65
  {/if}
66
66
  </button>
67
67
 
68
- <style src="../../styles/globals.css">
68
+ <style>
69
+ @import url("../../styles/globals.css");
69
70
 
70
71
  button {
71
72
  cursor: pointer;
@@ -124,7 +124,8 @@
124
124
  {/if}
125
125
  </contextmenu>
126
126
 
127
- <style src="../../styles/globals.css">
127
+ <style>
128
+ @import url("../../styles/globals.css");
128
129
 
129
130
  red {
130
131
  color: var(--red);
@@ -49,5 +49,6 @@ margin-top: ${marginTopPx === "auto" ? "auto" : `${marginTopPx}px`};
49
49
  {@render children()}
50
50
  </div>
51
51
 
52
- <style src="../../styles/globals.css">
52
+ <style>
53
+ @import url("../../styles/globals.css");
53
54
  </style>
@@ -48,5 +48,6 @@ margin-top: ${marginTopPx === "auto" ? "auto" : `${marginTopPx}px`};
48
48
  {@render children()}
49
49
  </div>
50
50
 
51
- <style src="../../styles/globals.css">
51
+ <style>
52
+ @import url("../../styles/globals.css");
52
53
  </style>
@@ -53,7 +53,8 @@
53
53
  </svelte:element>
54
54
 
55
55
 
56
- <style src="../../styles/globals.css">
56
+ <style>
57
+ @import url("../../styles/globals.css");
57
58
 
58
59
  #outer {
59
60
  position: absolute;
@@ -29,7 +29,8 @@
29
29
  </Column>
30
30
  </div>
31
31
 
32
- <style src="../../../styles/globals.css">
32
+ <style>
33
+ @import url("../../../styles/globals.css");
33
34
 
34
35
  div {
35
36
  max-width: fit-content;
@@ -45,7 +45,8 @@
45
45
  </Column>
46
46
  </div>
47
47
 
48
- <style src="../../../styles/globals.css">
48
+ <style>
49
+ @import url("../../../styles/globals.css");
49
50
 
50
51
  div {
51
52
  max-width: fit-content;
@@ -96,7 +96,8 @@
96
96
  <!-- </Row> -->
97
97
  </div>
98
98
 
99
- <style src="../../../styles/globals.css">
99
+ <style>
100
+ @import url("../../../styles/globals.css");
100
101
 
101
102
  div {
102
103
  /* position: absolute; */
@@ -141,7 +141,8 @@
141
141
  </Row>
142
142
  </div>
143
143
 
144
- <style src="../../../styles/globals.css">
144
+ <style>
145
+ @import url("../../../styles/globals.css");
145
146
 
146
147
  div {
147
148
  position: sticky;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import LoginButton from "./buttons/LoginButton.svelte";
2
+ import ThemeButton from "./buttons/ThemeButton.svelte";
@@ -29,7 +29,8 @@
29
29
  {/await}
30
30
  </div>
31
31
 
32
- <style src="../../styles/globals.css">
32
+ <style>
33
+ @import url("../../styles/globals.css");
33
34
 
34
35
  div {
35
36
  width: 100%;
@@ -12,5 +12,6 @@
12
12
 
13
13
  <span class="material-symbols-outlined{hoverEffect ? " hoverable" : ""}" style="color: {inheritColor ? "inherit" : "var(--text)"};font-size:{sizePx}px;user-select:none;">{name}</span>
14
14
 
15
- <style src="../../styles/globals.css">
15
+ <style>
16
+ @import url("../../styles/globals.css");
16
17
  </style>
@@ -46,5 +46,6 @@
46
46
  <!-- {type()} -->
47
47
  {content}
48
48
 
49
- <style src="../../styles/globals.css">
49
+ <style>
50
+ @import url("../../styles/globals.css");
50
51
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "duckylib",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",