@servicetitan/anvil2-ext-common 0.5.0 → 0.6.0
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 +20 -0
- package/dist/index.js +36 -35341
- package/dist/index.js.map +1 -1
- package/dist/src/form/components/FormMultiSelect/FormMultiSelect.d.ts +1 -1
- package/dist/src/form/components/FormMultiSelect/FormMultiSelectSync.d.ts +12 -0
- package/dist/src/form/components/FormMultiSelect/index.d.ts +1 -0
- package/dist/src/form/components/FormSelect/FormSelect.d.ts +1 -1
- package/dist/src/form/components/FormSelect/FormSelectSync.d.ts +12 -0
- package/dist/src/form/components/FormSelect/index.d.ts +1 -0
- package/package.json +5 -4
- package/dist/index.css +0 -2915
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @servicetitan/anvil2-ext-common
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#2442](https://github.com/servicetitan/hammer/pull/2442) [`83b1b92`](https://github.com/servicetitan/hammer/commit/83b1b920092dd6b0c6a8c35a1a6b33241f7100af) Thanks [@hbartlett-st](https://github.com/hbartlett-st)! - [Form] Add `FormSelectSync` and `FormMultiSelectSync` binding components that wrap `SelectFieldSync` and `MultiSelectFieldSync` for client-side option sets passed via `options`, instead of asynchronous `loadOptions`
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`b49ded5`](https://github.com/servicetitan/hammer/commit/b49ded52333b9d65a73c869298b08d787b37802a), [`7eaf679`](https://github.com/servicetitan/hammer/commit/7eaf6799ae352e17b117675013164c9d74212c7a)]:
|
|
12
|
+
- @servicetitan/anvil2@3.4.0
|
|
13
|
+
|
|
14
|
+
## 0.5.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- [#2424](https://github.com/servicetitan/hammer/pull/2424) [`7015549`](https://github.com/servicetitan/hammer/commit/7015549817ceaa7400eb32b7dff172e21d8ba673) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - No longer bundles a copy of `@servicetitan/anvil2`; it is now a peer dependency. This fixes anvil2 components (e.g. `ButtonToggle`/`FilterBar`) rendering with incorrect styling in apps that load both `@servicetitan/anvil2` and `@servicetitan/anvil2-ext-common`.
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [[`e975960`](https://github.com/servicetitan/hammer/commit/e975960082858a46e7a49d01c4bb9628cb39ddb7), [`daaa703`](https://github.com/servicetitan/hammer/commit/daaa703508f434218151b09ec3e09c99e7f7ba2d), [`9eb595b`](https://github.com/servicetitan/hammer/commit/9eb595be23bd648c339b58a331f3b60d4a0d7f15), [`e536233`](https://github.com/servicetitan/hammer/commit/e53623374fc9300964e1c758d48a7bf4d1d5f5fa), [`9eb595b`](https://github.com/servicetitan/hammer/commit/9eb595be23bd648c339b58a331f3b60d4a0d7f15)]:
|
|
21
|
+
- @servicetitan/anvil2@3.3.0
|
|
22
|
+
|
|
3
23
|
## 0.5.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|