@placeholderco/placeholder-ui 1.0.7 → 1.0.8

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.
@@ -2,6 +2,7 @@
2
2
  import type { LinkNavbarItem } from '../models/NavbarItem.js';
3
3
  import type { SidenavSection } from './Sidenav.svelte';
4
4
  import { Link, ThemeSwitcher, ActionIcon, Drawer, iconHamburger, type Hyperlink } from '../index.js';
5
+ import { themeState } from '../theme.svelte.js';
5
6
  import type { Snippet } from 'svelte';
6
7
 
7
8
  interface Props {
@@ -121,7 +122,7 @@
121
122
  {#if isCollapsed}
122
123
  <ActionIcon
123
124
  svg={iconHamburger}
124
- variant="secondary-subtle"
125
+ variant={themeState.isDarkMode ? 'secondary-subtle' : 'primary-subtle'}
125
126
  size="1.25rem"
126
127
  onclick={handleBurgerClick}
127
128
  class="responsive-burger"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@placeholderco/placeholder-ui",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "A modern, customizable Svelte 5 UI component library with comprehensive theming support",
5
5
  "license": "MIT",
6
6
  "repository": {