noph-ui 0.12.10 → 0.12.11

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.
@@ -134,7 +134,7 @@
134
134
  <div class="np-container" bind:this={anchorElement} style="anchor-name:{menuId};">
135
135
  {#if start}
136
136
  <div class="start">
137
- <span class="icon leading">{@render start()}</span>
137
+ <span class="icon">{@render start()}</span>
138
138
  </div>
139
139
  {/if}
140
140
  <div class="middle">
@@ -320,7 +320,7 @@
320
320
  flex: 1;
321
321
  max-height: 100%;
322
322
  min-height: 100%;
323
- min-width: min-content;
323
+ min-width: 0;
324
324
  position: relative;
325
325
  user-select: none;
326
326
  }
@@ -426,13 +426,17 @@
426
426
  align-items: stretch;
427
427
  align-self: baseline;
428
428
  flex: 1;
429
+ min-width: 0;
429
430
  }
430
431
 
431
432
  .input {
432
433
  caret-color: var(--np-color-primary);
433
- overflow-x: hidden;
434
+ overflow: hidden;
435
+ text-overflow: ellipsis;
436
+ white-space: nowrap;
434
437
  text-align: inherit;
435
- width: 100%;
438
+ flex: 1;
439
+ min-width: 0;
436
440
  height: 1.5rem;
437
441
 
438
442
  &::placeholder {
@@ -478,6 +482,7 @@
478
482
  display: flex;
479
483
  flex: 1 1 0%;
480
484
  opacity: 1;
485
+ min-width: 0;
481
486
  transition: opacity 83ms cubic-bezier(0.2, 0, 0, 1);
482
487
  }
483
488
  .disabled .content {
@@ -105,7 +105,7 @@
105
105
  <div class="np-container">
106
106
  {#if start}
107
107
  <div class="start">
108
- <span class="icon leading">{@render start()}</span>
108
+ <span class="icon">{@render start()}</span>
109
109
  </div>
110
110
  {/if}
111
111
  <div class="middle">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noph-ui",
3
- "version": "0.12.10",
3
+ "version": "0.12.11",
4
4
  "license": "MIT",
5
5
  "homepage": "https://noph.dev",
6
6
  "repository": {