zudoku 0.1.1-dev.16 → 0.1.1-dev.17

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.
Files changed (2) hide show
  1. package/package.json +2 -3
  2. package/dist/app/main.css +0 -137
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudoku",
3
- "version": "0.1.1-dev.16",
3
+ "version": "0.1.1-dev.17",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -122,10 +122,9 @@
122
122
  "react-dom": ">18.0.0"
123
123
  },
124
124
  "scripts": {
125
- "build": "tsc --project tsconfig.json && pnpm run build:css",
125
+ "build": "tsc --project tsconfig.json",
126
126
  "build:vite": "vite build && pnpm run hack:fix-worker-paths",
127
127
  "hack:fix-worker-paths": "node ./scripts/hack-worker.mjs",
128
- "build:css": "cp src/app/main.css dist/app/main.css",
129
128
  "clean": "tsc --build --clean",
130
129
  "test": "node --test --enable-source-maps"
131
130
  }
package/dist/app/main.css DELETED
@@ -1,137 +0,0 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- @layer base {
6
- :root {
7
- --top-header-height: 65px;
8
- --top-nav-height: 50px;
9
- --side-nav-width: theme("spacing.72");
10
- --header-height: calc(var(--top-header-height) + var(--top-nav-height));
11
- --scroll-padding: calc(var(--header-height) + 10px);
12
- --padding-content-top: theme("spacing.12");
13
- --padding-content-bottom: theme("spacing.12");
14
- --padding-nav-item: theme("spacing[2.5]");
15
- --sidecar-grid-cols: 1fr minmax(200px, 260px);
16
- }
17
-
18
- html,
19
- body,
20
- #root {
21
- @apply h-full min-h-screen;
22
- }
23
-
24
- html {
25
- scroll-padding-block: var(--scroll-padding);
26
- }
27
-
28
- body {
29
- @apply antialiased bg-background text-foreground;
30
- }
31
-
32
- .dark {
33
- color-scheme: dark;
34
- }
35
-
36
- .prose.prose {
37
- @apply prose-a:decoration-primary/60 hover:prose-a:decoration-primary prose-a:underline-offset-4 hover:prose-a:decoration-2;
38
- @apply prose-blockquote:not-italic prose-blockquote:text-neutral-500/75 prose-blockquote:dark:text-neutral-400;
39
- @apply prose-headings:prose-code:mx-2;
40
- @apply prose-code:before:content-none prose-code:after:content-none;
41
-
42
- ul.contains-task-list {
43
- @apply list-none px-0;
44
- li {
45
- @apply flex items-center gap-2;
46
- }
47
- }
48
- }
49
-
50
- select {
51
- @apply focus-visible:ring-primary focus-visible:ring-[1.5px] focus:outline-none;
52
- }
53
-
54
- .CollapsibleContent {
55
- --easing: cubic-bezier(0.4, 0, 0.2, 1);
56
- --slide-offset: -0.75rem;
57
- @apply overflow-hidden;
58
- }
59
- .CollapsibleContent[data-state="open"] {
60
- animation: slideDown 300ms var(--easing);
61
- }
62
- .CollapsibleContent[data-state="closed"] {
63
- animation: slideUp 300ms var(--easing);
64
- }
65
-
66
- @keyframes slideDown {
67
- from {
68
- height: 0;
69
- opacity: 0;
70
- transform: translateY(var(--slide-offset));
71
- }
72
- to {
73
- height: var(--radix-collapsible-content-height);
74
- opacity: 1;
75
- transform: translateY(0);
76
- }
77
- }
78
-
79
- @keyframes slideUp {
80
- from {
81
- height: var(--radix-collapsible-content-height);
82
- opacity: 1;
83
- transform: translateY(0);
84
- }
85
- to {
86
- height: 0;
87
- opacity: 0;
88
- transform: translateY(var(--slide-offset));
89
- }
90
- }
91
-
92
- /* Theme */
93
- :root {
94
- --background: 0 0% 100%;
95
- --foreground: 222.2 84% 4.9%;
96
- --card: 0 0% 100%;
97
- --card-foreground: 222.2 84% 4.9%;
98
- --popover: 0 0% 100%;
99
- --popover-foreground: 222.2 84% 4.9%;
100
- --primary: 221.2 83.2% 53.3%;
101
- --primary-foreground: 210 40% 98%;
102
- --secondary: 210 40% 96.1%;
103
- --secondary-foreground: 222.2 47.4% 11.2%;
104
- --muted: 210 40% 96.1%;
105
- --muted-foreground: 215.4 16.3% 46.9%;
106
- --accent: 210 40% 96.1%;
107
- --accent-foreground: 222.2 47.4% 11.2%;
108
- --destructive: 0 72.22% 50.59%;
109
- --destructive-foreground: 210 40% 98%;
110
- --border: 214.3 31.8% 91.4%;
111
- --input: 214.3 31.8% 91.4%;
112
- --ring: 221.2 83.2% 53.3%;
113
- --radius: 0.5rem;
114
- }
115
-
116
- .dark {
117
- --background: 222.2 84% 4.9%;
118
- --foreground: 210 40% 98%;
119
- --card: 222.2 84% 4.9%;
120
- --card-foreground: 210 40% 98%;
121
- --popover: 222.2 84% 4.9%;
122
- --popover-foreground: 210 40% 98%;
123
- --primary: 217.2 91.2% 59.8%;
124
- --primary-foreground: 222.2 47.4% 11.2%;
125
- --secondary: 217.2 32.6% 17.5%;
126
- --secondary-foreground: 210 40% 98%;
127
- --muted: 217.2 32.6% 17.5%;
128
- --muted-foreground: 215 20.2% 65.1%;
129
- --accent: 217.2 32.6% 17.5%;
130
- --accent-foreground: 210 40% 98%;
131
- --destructive: 0 62.8% 30.6%;
132
- --destructive-foreground: 210 40% 98%;
133
- --border: 217.2 32.6% 17.5%;
134
- --input: 217.2 32.6% 17.5%;
135
- --ring: 224.3 76.3% 48%;
136
- }
137
- }