@layers-app/editor-video 0.1.8 → 0.1.9
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/index.js
CHANGED
|
@@ -5055,8 +5055,16 @@ function VideoSelect({
|
|
|
5055
5055
|
w,
|
|
5056
5056
|
classNames: mergedClassNames,
|
|
5057
5057
|
pointer: true,
|
|
5058
|
-
rightSection: rightSection ?? /* @__PURE__ */ jsx(
|
|
5059
|
-
|
|
5058
|
+
rightSection: rightSection ?? /* @__PURE__ */ jsx(
|
|
5059
|
+
IconChevronDown,
|
|
5060
|
+
{
|
|
5061
|
+
size: 16,
|
|
5062
|
+
className: "editor-select__chevron",
|
|
5063
|
+
style: { cursor: "pointer" },
|
|
5064
|
+
onClick: () => combobox.toggleDropdown()
|
|
5065
|
+
}
|
|
5066
|
+
),
|
|
5067
|
+
rightSectionPointerEvents: "all",
|
|
5060
5068
|
onClick: (e) => {
|
|
5061
5069
|
onInputClick == null ? void 0 : onInputClick(e);
|
|
5062
5070
|
combobox.toggleDropdown();
|