fluency-v8-components 1.6.2 → 1.6.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.
- package/dist/fluency-v8-components.es.js +1 -1
- package/dist/fluency-v8-components.umd.js +41 -41
- package/dist/{index-JUukMsbD.mjs → index-4NgVVVwe.mjs} +3725 -3720
- package/dist/{index.es-BtbsMJYu.mjs → index.es-Cke65bfA.mjs} +1 -1
- package/package.json +1 -1
- package/src/assets/main.css +4 -1
- package/src/components/common/Slideout.vue +8 -2
- package/src/components/form/GreySelectInputMultiple.vue +1 -1
package/package.json
CHANGED
package/src/assets/main.css
CHANGED
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
@apply inline-flex items-center rounded-md px-2 py-1 font-medium ring-1 ring-inset;
|
|
518
518
|
}
|
|
519
519
|
.select-chip {
|
|
520
|
-
@apply
|
|
520
|
+
@apply p-1 text-sm font-medium rounded-md inline-flex items-center ml-2 my-1;
|
|
521
521
|
}
|
|
522
522
|
.green-chip {
|
|
523
523
|
@apply bg-green-100 ring-green-600/30 text-green-700 dark:bg-green-400/10 dark:ring-green-500/20 dark:text-green-400;
|
|
@@ -531,6 +531,9 @@
|
|
|
531
531
|
.blue-chip {
|
|
532
532
|
@apply bg-blue-100 ring-blue-600/30 text-blue-700 dark:bg-blue-400/10 dark:ring-blue-500/20 dark:text-blue-400;
|
|
533
533
|
}
|
|
534
|
+
.gray-chip {
|
|
535
|
+
@apply bg-gray-200 ring-gray-600/50 text-gray-900 dark:bg-slate-900/40 dark:ring-gray-900/50 dark:text-gray-300;
|
|
536
|
+
}
|
|
534
537
|
|
|
535
538
|
.image-position-box {
|
|
536
539
|
@apply border border-gray-400 p-1 m-1 dark:border-white;
|
|
@@ -60,8 +60,14 @@
|
|
|
60
60
|
</div>
|
|
61
61
|
</div>
|
|
62
62
|
</div>
|
|
63
|
-
<div class="flex flex-shrink-0 justify-
|
|
64
|
-
<
|
|
63
|
+
<div class="flex flex-shrink-0 items-center justify-between px-4 py-4">
|
|
64
|
+
<div class="flex items-center gap-2">
|
|
65
|
+
<slot name="footer-left" />
|
|
66
|
+
</div>
|
|
67
|
+
|
|
68
|
+
<div class="flex items-center gap-2">
|
|
69
|
+
<slot name="footer" />
|
|
70
|
+
</div>
|
|
65
71
|
</div>
|
|
66
72
|
</div>
|
|
67
73
|
</DialogPanel>
|