@texturehq/edges 1.36.1 → 1.38.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/dist/styles.css CHANGED
@@ -2420,6 +2420,12 @@
2420
2420
  .z-\[60\] {
2421
2421
  z-index: 60;
2422
2422
  }
2423
+ .z-\[70\] {
2424
+ z-index: 70;
2425
+ }
2426
+ .z-\[75\] {
2427
+ z-index: 75;
2428
+ }
2423
2429
  .col-auto {
2424
2430
  grid-column: auto;
2425
2431
  }
@@ -2708,9 +2714,6 @@
2708
2714
  .h-12 {
2709
2715
  height: var(--spacing-12);
2710
2716
  }
2711
- .h-14 {
2712
- height: var(--spacing-14);
2713
- }
2714
2717
  .h-16 {
2715
2718
  height: var(--spacing-16);
2716
2719
  }
@@ -6211,9 +6214,6 @@
6211
6214
  .\[scrollbar-width\:none\] {
6212
6215
  scrollbar-width: none;
6213
6216
  }
6214
- .inline-3 {
6215
- inline-size: var(--spacing-3);
6216
- }
6217
6217
  .ring-inset {
6218
6218
  --tw-ring-inset: inset;
6219
6219
  }
@@ -7275,11 +7275,6 @@
7275
7275
  color: var(--color-text-primary);
7276
7276
  }
7277
7277
  }
7278
- .data-\[focused\]\:opacity-100 {
7279
- &[data-focused] {
7280
- opacity: 100%;
7281
- }
7282
- }
7283
7278
  .data-\[focused\]\:ring-2 {
7284
7279
  &[data-focused] {
7285
7280
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
@@ -7318,11 +7313,6 @@
7318
7313
  font-weight: var(--font-weight-medium);
7319
7314
  }
7320
7315
  }
7321
- .data-\[selected\]\:opacity-100 {
7322
- &[data-selected] {
7323
- opacity: 100%;
7324
- }
7325
- }
7326
7316
  .supports-\[-moz-appearance\:none\]\:bg-background-muted {
7327
7317
  @supports (-moz-appearance:none) {
7328
7318
  background-color: var(--color-background-muted);
@@ -8006,6 +7996,25 @@
8006
7996
  font-size: var(--control-text-sm) !important;
8007
7997
  }
8008
7998
  }
7999
+ .md\:transition-\[transform\,width\] {
8000
+ @media (width >= 48rem) {
8001
+ transition-property: transform,width;
8002
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
8003
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
8004
+ }
8005
+ }
8006
+ .md\:duration-300 {
8007
+ @media (width >= 48rem) {
8008
+ --tw-duration: 300ms;
8009
+ transition-duration: 300ms;
8010
+ }
8011
+ }
8012
+ .md\:ease-in-out {
8013
+ @media (width >= 48rem) {
8014
+ --tw-ease: var(--ease-in-out);
8015
+ transition-timing-function: var(--ease-in-out);
8016
+ }
8017
+ }
8009
8018
  .lg\:sticky {
8010
8019
  @media (width >= 64rem) {
8011
8020
  position: sticky;
@@ -9313,6 +9322,14 @@
9313
9322
  background: var(--edges-stack-nav-background, var(--color-background-surface));
9314
9323
  border-right: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));
9315
9324
  }
9325
+ .edges-stack-nav__logo {
9326
+ display: flex;
9327
+ align-items: center;
9328
+ justify-content: space-between;
9329
+ height: 60px;
9330
+ padding: 0 24px;
9331
+ border-bottom: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));
9332
+ }
9316
9333
  .edges-stack-nav__header {
9317
9334
  border-bottom: 1px solid var(--edges-stack-nav-border-color, var(--color-border-default));
9318
9335
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@texturehq/edges",
3
- "version": "1.36.1",
3
+ "version": "1.38.0",
4
4
  "author": "Nicholas Brown <nick@texturehq.com>",
5
5
  "description": "A shared component library for Texture",
6
6
  "type": "module",