noph-ui 0.8.2 → 0.8.4
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import Menu from '../menu/Menu.svelte'
|
|
3
3
|
import { isFirstInvalidControlInForm } from '../text-field/report-validity.js'
|
|
4
|
-
import { generateUUIDv4 } from '../utils.
|
|
4
|
+
import { generateUUIDv4 } from '../utils.js'
|
|
5
5
|
import type { SelectProps } from './types.ts'
|
|
6
6
|
import Item from '../list/Item.svelte'
|
|
7
7
|
|
|
@@ -331,8 +331,8 @@
|
|
|
331
331
|
flex: 1;
|
|
332
332
|
flex-direction: column;
|
|
333
333
|
writing-mode: horizontal-tb;
|
|
334
|
-
max-width: 100
|
|
335
|
-
min-width: 210px;
|
|
334
|
+
max-width: var(--np-select-max-width, 100%);
|
|
335
|
+
min-width: var(--np-select-min-width, 210px);
|
|
336
336
|
}
|
|
337
337
|
|
|
338
338
|
.supporting-text {
|