@uxf/ui 1.0.0-beta.49 → 1.0.0-beta.50

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.
@@ -47,9 +47,10 @@ function Default() {
47
47
  setValue(v);
48
48
  };
49
49
  return (react_1.default.createElement("div", { className: "space-y-8" },
50
- react_1.default.createElement(index_1.Combobox, { id: "combobox-1", name: "combobox", label: "Combobox", options: options, onChange: handleChange, value: value }),
51
- react_1.default.createElement(index_1.Combobox, { id: "combobox-1", name: "combobox", label: "Combobox with helper text", options: options, onChange: handleChange, value: value, helperText: "Start typing to see options..." }),
52
- react_1.default.createElement(index_1.Combobox, { id: "combobox-1", dropdownPlacement: "top", name: "combobox", label: "Combobox invalid", options: options, onChange: handleChange, value: value, helperText: "Error message", isInvalid: true, isRequired: true })));
50
+ react_1.default.createElement(index_1.Combobox, { id: "combobox-1", label: "Combobox", name: "combobox", onChange: handleChange, options: options, value: value }),
51
+ react_1.default.createElement(index_1.Combobox, { helperText: "Start typing to see options...", id: "combobox-1", label: "Combobox with helper text", name: "combobox", onChange: handleChange, options: options, value: value }),
52
+ react_1.default.createElement(index_1.Combobox, { helperText: "Error message", id: "combobox-1", isInvalid: true, isRequired: true, label: "Combobox invalid", name: "combobox", onChange: handleChange, options: options, value: value }),
53
+ react_1.default.createElement(index_1.Combobox, { dropdownPlacement: "top", id: "combobox-1", label: "Combobox with dropdown top", name: "combobox", onChange: handleChange, options: options, value: value })));
53
54
  }
54
55
  exports.Default = Default;
55
56
  function ComponentStructure() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/ui",
3
- "version": "1.0.0-beta.49",
3
+ "version": "1.0.0-beta.50",
4
4
  "description": "",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -51,7 +51,8 @@ function Default() {
51
51
  react_1.default.createElement(index_1.Select, { label: "Invalid select", options: options, onChange: handleChange, value: value, helperText: "Helper text", isInvalid: true }),
52
52
  react_1.default.createElement(index_1.Select, { label: "Disabled select", options: options, onChange: handleChange, value: value, helperText: "Helper text", isDisabled: true }),
53
53
  react_1.default.createElement(index_1.Select, { label: "Read only select", options: options, onChange: handleChange, value: value, helperText: "Helper text", isReadOnly: true }),
54
- react_1.default.createElement(index_1.Select, { label: "Required select", options: options, onChange: handleChange, value: value, helperText: "Helper text", isRequired: true })));
54
+ react_1.default.createElement(index_1.Select, { label: "Required select", options: options, onChange: handleChange, value: value, helperText: "Helper text", isRequired: true }),
55
+ react_1.default.createElement(index_1.Select, { dropdownPlacement: "top", label: "Select with dropdown top", options: options, onChange: handleChange, value: value, isRequired: true })));
55
56
  }
56
57
  exports.Default = Default;
57
58
  function ComponentStructure() {