@servicetitan/anvil2 1.34.0 → 1.34.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @servicetitan/anvil2
2
2
 
3
+ ## 1.34.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1262](https://github.com/servicetitan/hammer/pull/1262) [`1c87a6c`](https://github.com/servicetitan/hammer/commit/1c87a6c23661f567522d7558ed07e704fa06e4ea) Thanks [@rgdelato](https://github.com/rgdelato)! - [Combobox] Increasing `setTimeout` on `Combobox.ItemAddNew` to fire after `Popover` closes
8
+
9
+ - [#1079](https://github.com/servicetitan/hammer/pull/1079) [`acae1dc`](https://github.com/servicetitan/hammer/commit/acae1dc6d9de5ef7e237a44d023ae45f16ffb469) Thanks [@tounsoo](https://github.com/tounsoo)! - [Link] Add a way to handle route handling similar to `SideNavLink`
10
+
11
+ - Updated dependencies [[`1c87a6c`](https://github.com/servicetitan/hammer/commit/1c87a6c23661f567522d7558ed07e704fa06e4ea)]:
12
+ - @servicetitan/hammer-react@1.35.1
13
+
3
14
  ## 1.34.0
4
15
 
5
16
  ### Minor Changes
@@ -9069,7 +9069,7 @@ const ComboboxSingle = function(props) {
9069
9069
  const stateInputValue = state.inputValue;
9070
9070
  setTimeout(() => {
9071
9071
  onSelectItemAddNew?.(stateInputValue);
9072
- }, 0);
9072
+ }, 250);
9073
9073
  return {
9074
9074
  ...changes,
9075
9075
  selectedItem: state.selectedItem,
@@ -9407,7 +9407,7 @@ const ComboboxMultiple = function(props) {
9407
9407
  const stateInputValue = state.inputValue;
9408
9408
  setTimeout(() => {
9409
9409
  onSelectItemAddNew?.(stateInputValue);
9410
- }, 0);
9410
+ }, 250);
9411
9411
  return {
9412
9412
  ...changes,
9413
9413
  selectedItem: state.selectedItem,
@@ -10309,4 +10309,4 @@ const Combobox = Object.assign(ComboboxElement, {
10309
10309
  });
10310
10310
 
10311
10311
  export { Combobox as C, ComboboxElement as a, ComboboxSelect as b, ComboboxSearchField as c, ComboboxSelectTrigger as d, ComboboxContent as e, ComboboxList as f, ComboboxItem as g, ComboboxItemAddNew as h, ComboboxEmpty as i, useInfiniteCombobox as u };
10312
- //# sourceMappingURL=Combobox-zE9tn7wn.js.map
10312
+ //# sourceMappingURL=Combobox-CKBF7Lc5.js.map