@nasa-jpl/stellar-svelte 2.0.0-alpha.50 → 2.0.0-alpha.52
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/dist/components/ui/alert-dialog/alert-dialog-cancel.svelte +8 -8
- package/dist/components/ui/alert-dialog/alert-dialog-cancel.svelte.d.ts +1 -1
- package/dist/components/ui/toggle-group/index.d.ts +1 -1
- package/dist/components/ui/toggle-group/toggle-group-item.svelte.d.ts +1 -1
- package/dist/components/ui/toggle-group/toggle-group.svelte.d.ts +1 -1
- package/dist/index.css +1215 -9
- package/package.json +3 -3
- package/tailwind.config.ts +1 -1
- package/dist/font.css +0 -1007
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
"scripts": {
|
|
72
72
|
"build": "vite build && npm run package && npm run build:css",
|
|
73
|
-
"build:css": "tailwind build src/index.css -o dist/index.css
|
|
73
|
+
"build:css": "tailwind build src/index.css -o dist/index.css",
|
|
74
74
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
75
75
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
76
76
|
"dev": "vite dev",
|
|
@@ -83,6 +83,6 @@
|
|
|
83
83
|
"svelte": "./dist/index.js",
|
|
84
84
|
"type": "module",
|
|
85
85
|
"types": "./dist/index.d.ts",
|
|
86
|
-
"version": "2.0.0-alpha.
|
|
87
|
-
"gitHead": "
|
|
86
|
+
"version": "2.0.0-alpha.52",
|
|
87
|
+
"gitHead": "83d3200d00cfc19a613dbdc99f47d4ea87e782f3"
|
|
88
88
|
}
|
package/tailwind.config.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { fontFamily } from 'tailwindcss/defaultTheme';
|
|
|
3
3
|
|
|
4
4
|
const config: Config = {
|
|
5
5
|
darkMode: ['class'],
|
|
6
|
-
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
6
|
+
content: ['./src/**/*.{html,js,svelte,ts}', '../react/dist/**/*.{tsx,js}'],
|
|
7
7
|
safelist: ['dark'],
|
|
8
8
|
theme: {
|
|
9
9
|
container: {
|