phoenix_duskmoon 6.1.2 → 6.2.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [6.2.0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v6.1.3...v6.2.0) (2025-02-12)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add dm_navbar. ([a2f525d](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/a2f525dafafc9f9b0b0262ea2ade213c7307d0a7))
7
+
8
+ ## [6.1.3](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v6.1.2...v6.1.3) (2025-02-10)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Fix theme. ([259fbb4](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/259fbb4c7b24ce870f97053fd2234cd3f86df495))
14
+
1
15
  ## [6.1.2](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v6.1.1...v6.1.2) (2025-02-10)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phoenix_duskmoon",
3
- "version": "6.1.2",
3
+ "version": "6.2.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./priv/static/phoenix_duskmoon.js",
@@ -2270,12 +2270,31 @@
2270
2270
  font-size: var(--cardtitle-fs, 1.125rem);
2271
2271
  font-weight: 600;
2272
2272
  }
2273
+ .navbar {
2274
+ display: flex;
2275
+ width: 100%;
2276
+ align-items: center;
2277
+ padding: 0.5rem;
2278
+ min-height: 4rem;
2279
+ }
2273
2280
  .card-actions {
2274
2281
  display: flex;
2275
2282
  flex-wrap: wrap;
2276
2283
  align-items: flex-start;
2277
2284
  gap: calc(0.25rem * 2);
2278
2285
  }
2286
+ .navbar-end {
2287
+ display: inline-flex;
2288
+ align-items: center;
2289
+ width: 50%;
2290
+ justify-content: flex-end;
2291
+ }
2292
+ .navbar-start {
2293
+ display: inline-flex;
2294
+ align-items: center;
2295
+ width: 50%;
2296
+ justify-content: flex-start;
2297
+ }
2279
2298
  .tabs {
2280
2299
  display: flex;
2281
2300
  flex-wrap: wrap;
@@ -2284,6 +2303,11 @@
2284
2303
  height: var(--tabs-height);
2285
2304
  flex-direction: var(--tabs-direction);
2286
2305
  }
2306
+ .navbar-center {
2307
+ display: inline-flex;
2308
+ align-items: center;
2309
+ flex-shrink: 0;
2310
+ }
2287
2311
  .block {
2288
2312
  display: block;
2289
2313
  }
@@ -2736,19 +2760,14 @@
2736
2760
  --tw-ease: var(--ease-in-out);
2737
2761
  transition-timing-function: var(--ease-in-out);
2738
2762
  }
2739
- .btn-outline {
2740
- &:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
2741
- --btn-shadow: "";
2742
- --btn-bg: #0000;
2743
- --btn-fg: var(--btn-color);
2744
- --btn-border: var(--btn-color);
2745
- --btn-noise: none;
2746
- }
2747
- }
2748
2763
  .btn-primary {
2749
2764
  --btn-color: var(--color-primary);
2750
2765
  --btn-fg: var(--color-primary-content);
2751
2766
  }
2767
+ .btn-secondary {
2768
+ --btn-color: var(--color-secondary);
2769
+ --btn-fg: var(--color-secondary-content);
2770
+ }
2752
2771
  .input-error {
2753
2772
  &, &:focus, &:focus-within {
2754
2773
  --input-color: var(--color-error);