Updates daisy ui

This commit is contained in:
Rune Harlyk
2024-04-23 21:40:34 +02:00
committed by Rune Harlyk
parent 5609fe35d7
commit 9ca4381442
5 changed files with 11 additions and 12 deletions
+1 -1
View File
@@ -47,7 +47,7 @@
"dependencies": {
"chart.js": "^4.4.2",
"compare-versions": "^6.1.0",
"daisyui": "^4.9.0",
"daisyui": "^4.10.2",
"jwt-decode": "^4.0.0",
"nipplejs": "^0.10.1",
"svelte-dnd-list": "^0.1.8",
+4 -4
View File
@@ -12,8 +12,8 @@ dependencies:
specifier: ^6.1.0
version: 6.1.0
daisyui:
specifier: ^4.9.0
version: 4.9.0(postcss@8.4.38)
specifier: ^4.10.2
version: 4.10.2(postcss@8.4.38)
jwt-decode:
specifier: ^4.0.0
version: 4.0.0
@@ -1262,8 +1262,8 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dev: false
/daisyui@4.9.0(postcss@8.4.38):
resolution: {integrity: sha512-9JsDx4E+30kPxThE+6yEwQokqg1957uwTx/skP2RE98fG6Ten6U+S9YXeQg1a3CI958aF5aOb0oEA+KZFfrZUA==}
/daisyui@4.10.2(postcss@8.4.38):
resolution: {integrity: sha512-eCWS1W/JPyxW9IvlgW5m0R6rp9ZhRsBTW37rvEUthckkjsV04u8XipV519OoccSA46ixhSJa3q7XLI1WUFtRCA==}
engines: {node: '>=16.9.0'}
dependencies:
css-selector-tokenizer: 0.8.0
+4 -5
View File
@@ -1,6 +1,5 @@
import tailwindcss from 'tailwindcss';
import autoprefixer from 'autoprefixer';
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
plugins: [tailwindcss(), autoprefixer()]
};
+1 -1
View File
@@ -1,4 +1,4 @@
export function daisyColor(name: string, opacity: number = 100) {
const color = getComputedStyle(document.documentElement).getPropertyValue(name);
return 'hsla(' + color + '/ ' + Math.min(Math.max(Math.round(opacity), 0), 100) + '%)';
return `oklch(${color} / ${opacity}%)`;
}
@@ -1,5 +1,5 @@
<script lang="ts">
import { onDestroy, onMount } from 'svelte';
import { onMount } from 'svelte';
import { page } from '$app/stores';
import SettingsCard from '$lib/components/SettingsCard.svelte';
import { slide } from 'svelte/transition';