@typlog/ui 0.11.1 → 0.11.2
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/components.js +2 -3
- package/package.json +1 -1
- package/tailwind/index.css +1 -0
- package/tailwind/shadow.css +8 -0
package/dist/components.js
CHANGED
|
@@ -425,7 +425,6 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
425
425
|
minHeight: {},
|
|
426
426
|
maxHeight: {},
|
|
427
427
|
forceMount: { type: Boolean },
|
|
428
|
-
trapFocus: { type: Boolean },
|
|
429
428
|
disableOutsidePointerEvents: { type: Boolean },
|
|
430
429
|
asChild: { type: Boolean },
|
|
431
430
|
as: {}
|
|
@@ -509,7 +508,6 @@ const _sfc_main$N = /* @__PURE__ */ defineComponent({
|
|
|
509
508
|
minHeight: {},
|
|
510
509
|
maxHeight: {},
|
|
511
510
|
forceMount: { type: Boolean },
|
|
512
|
-
trapFocus: { type: Boolean },
|
|
513
511
|
disableOutsidePointerEvents: { type: Boolean },
|
|
514
512
|
asChild: { type: Boolean },
|
|
515
513
|
as: {}
|
|
@@ -1739,7 +1737,8 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
1739
1737
|
}
|
|
1740
1738
|
};
|
|
1741
1739
|
watch(values, () => {
|
|
1742
|
-
context.
|
|
1740
|
+
context.filterSearch.value = "";
|
|
1741
|
+
emits("update:modelValue", "");
|
|
1743
1742
|
}, { deep: true });
|
|
1744
1743
|
return (_ctx, _cache) => {
|
|
1745
1744
|
return openBlock(), createBlock(unref(ComboboxAnchor), {
|
package/package.json
CHANGED
package/tailwind/index.css
CHANGED