layerchart 2.0.0 → 2.0.1
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/layers/Layer.svelte +1 -1
- package/dist/components/tooltip/Tooltip.svelte +1 -1
- package/dist/components/tooltip/TooltipContext.svelte +1 -1
- package/dist/components/tooltip/TooltipHeader.svelte +1 -1
- package/dist/components/tooltip/TooltipItem.svelte +1 -1
- package/dist/components/tooltip/TooltipList.svelte +1 -1
- package/dist/components/tooltip/TooltipSeparator.svelte +1 -1
- package/dist/styles/core.css +17 -0
- package/dist/styles/daisyui-5.css +2 -0
- package/dist/styles/shadcn-svelte.css +2 -0
- package/dist/styles/skeleton-3.css +2 -0
- package/dist/styles/skeleton-4.css +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LayerChart core styles.
|
|
3
|
+
|
|
4
|
+
Declares the cascade layer order LayerChart's component styles rely on.
|
|
5
|
+
Precedence is determined by the order in which each layer name is *first*
|
|
6
|
+
declared (later layers win), so this must be established up front — otherwise
|
|
7
|
+
the order falls to whatever sequence the bundler emits component styles in,
|
|
8
|
+
which can differ between dev and production builds (e.g. `base` incorrectly
|
|
9
|
+
overriding `components` only in production).
|
|
10
|
+
|
|
11
|
+
When using Tailwind this is redundant (Tailwind emits the same order via
|
|
12
|
+
`@import 'tailwindcss'`) but harmless — re-declaring an existing order is a
|
|
13
|
+
no-op. Non-Tailwind consumers should import this file (`layerchart/core.css`)
|
|
14
|
+
before using LayerChart. The framework presets (shadcn-svelte, skeleton,
|
|
15
|
+
daisyui) import it for you.
|
|
16
|
+
*/
|
|
17
|
+
@layer theme, base, components, utilities;
|