@servicetitan/anvil2 1.43.0 → 1.43.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/CHANGELOG.md +17 -0
- package/dist/{Combobox-C7ANSGIu.js → Combobox-Ct30JT3y.js} +7 -7
- package/dist/{Combobox-C7ANSGIu.js.map → Combobox-Ct30JT3y.js.map} +1 -1
- package/dist/Combobox.js +1 -1
- package/dist/assets/icons/st/ai_mark.svg +1 -0
- package/dist/assets/icons/st/gnav_home_filled.svg +1 -0
- package/dist/assets/icons/st/gnav_home_outline.svg +1 -0
- package/dist/assets/icons/st.ts +3 -0
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @servicetitan/anvil2
|
|
2
2
|
|
|
3
|
+
## 1.43.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1486](https://github.com/servicetitan/hammer/pull/1486) [`045ed38`](https://github.com/servicetitan/hammer/commit/045ed3862064dc4a61d9ad6e6a45fcc88009b65f) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Icons] Add `ai_mark` icon
|
|
8
|
+
|
|
9
|
+
## 1.43.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#1426](https://github.com/servicetitan/hammer/pull/1426) [`1cd7d09`](https://github.com/servicetitan/hammer/commit/1cd7d09176e98b1ad454336d49a32b3fd428b0a3) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Icons] Add gnav_home_filled and gnav_home_outline icons
|
|
14
|
+
|
|
15
|
+
- [#1424](https://github.com/servicetitan/hammer/pull/1424) [`fa87b98`](https://github.com/servicetitan/hammer/commit/fa87b98bad36fb124a4ed946429266d7a7e58e79) Thanks [@rgdelato](https://github.com/rgdelato)! - [Combobox] Fix `Combobox` `disabled` and `readOnly` behavior
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`fa87b98`](https://github.com/servicetitan/hammer/commit/fa87b98bad36fb124a4ed946429266d7a7e58e79)]:
|
|
18
|
+
- @servicetitan/hammer-react@1.41.1
|
|
19
|
+
|
|
3
20
|
## 1.43.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -8145,8 +8145,8 @@ const ComboboxTrigger = function(props) {
|
|
|
8145
8145
|
const inputWrapperProps = {
|
|
8146
8146
|
...select ? {
|
|
8147
8147
|
...getToggleButtonProps({
|
|
8148
|
-
disabled,
|
|
8149
|
-
readOnly,
|
|
8148
|
+
disabled: isDisabled,
|
|
8149
|
+
readOnly: isReadOnly,
|
|
8150
8150
|
id,
|
|
8151
8151
|
ref: context?.invoker.ref
|
|
8152
8152
|
})
|
|
@@ -8226,8 +8226,8 @@ const ComboboxTrigger = function(props) {
|
|
|
8226
8226
|
...getDropdownProps != null && getInputProps != null ? getInputProps(
|
|
8227
8227
|
getDropdownProps({
|
|
8228
8228
|
...rest,
|
|
8229
|
-
disabled,
|
|
8230
|
-
readOnly,
|
|
8229
|
+
disabled: isDisabled,
|
|
8230
|
+
readOnly: isReadOnly,
|
|
8231
8231
|
required,
|
|
8232
8232
|
autoComplete: "off",
|
|
8233
8233
|
id,
|
|
@@ -8236,8 +8236,8 @@ const ComboboxTrigger = function(props) {
|
|
|
8236
8236
|
})
|
|
8237
8237
|
) : getInputProps != null ? getInputProps({
|
|
8238
8238
|
...rest,
|
|
8239
|
-
disabled,
|
|
8240
|
-
readOnly,
|
|
8239
|
+
disabled: isDisabled,
|
|
8240
|
+
readOnly: isReadOnly,
|
|
8241
8241
|
required,
|
|
8242
8242
|
autoComplete: "off",
|
|
8243
8243
|
id,
|
|
@@ -10315,4 +10315,4 @@ const Combobox = Object.assign(ComboboxElement, {
|
|
|
10315
10315
|
});
|
|
10316
10316
|
|
|
10317
10317
|
export { Combobox as C, ComboboxElement as a, ComboboxSelect as b, ComboboxContent as c, ComboboxSearchField as d, ComboboxSelectTrigger as e, ComboboxList as f, ComboboxItem as g, ComboboxItemAddNew as h, ComboboxEmpty as i, useInfiniteCombobox as u };
|
|
10318
|
-
//# sourceMappingURL=Combobox-
|
|
10318
|
+
//# sourceMappingURL=Combobox-Ct30JT3y.js.map
|