@servicetitan/anvil2 2.0.0 → 2.0.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 +120 -68
- package/dist/Calendar-BFWJ7Rlq.js +2635 -0
- package/dist/Calendar-BFWJ7Rlq.js.map +1 -0
- package/dist/{Calendar-D4abBZAq.js → Calendar-BO9QiBJG.js} +2 -2
- package/dist/{Calendar-D4abBZAq.js.map → Calendar-BO9QiBJG.js.map} +1 -1
- package/dist/Calendar.js +2 -2
- package/dist/{Combobox-CeADQxTl.js → Combobox-OUK7p5gp.js} +34 -24
- package/dist/Combobox-OUK7p5gp.js.map +1 -0
- package/dist/Combobox.js +1 -1
- package/dist/{DataTable-CVtDYMKC.js → DataTable-BPJeSvOx.js} +1956 -1324
- package/dist/DataTable-BPJeSvOx.js.map +1 -0
- package/dist/DataTable.css +82 -80
- package/dist/{DateFieldRange-BfdBwpwc.js → DateFieldRange-CanMYRgZ.js} +6 -5
- package/dist/{DateFieldRange-BfdBwpwc.js.map → DateFieldRange-CanMYRgZ.js.map} +1 -1
- package/dist/DateFieldRange.js +1 -1
- package/dist/{DateFieldSingle-CVxnfM5x.js → DateFieldSingle-CShe2aHZ.js} +6 -5
- package/dist/{DateFieldSingle-CVxnfM5x.js.map → DateFieldSingle-CShe2aHZ.js.map} +1 -1
- package/dist/DateFieldSingle.js +1 -1
- package/dist/{DateFieldYearless-CgOOwwTc.js → DateFieldYearless-MBQ233Xa.js} +2 -2
- package/dist/{DateFieldYearless-CgOOwwTc.js.map → DateFieldYearless-MBQ233Xa.js.map} +1 -1
- package/dist/DateFieldYearless.js +1 -1
- package/dist/{DateFieldYearlessRange-D8dQk2WI.js → DateFieldYearlessRange-BBtaFzsE.js} +2 -2
- package/dist/{DateFieldYearlessRange-D8dQk2WI.js.map → DateFieldYearlessRange-BBtaFzsE.js.map} +1 -1
- package/dist/DateFieldYearlessRange.js +1 -1
- package/dist/{ListView-CBmaHOY-.js → ListView-CRDUPrbQ.js} +11 -9
- package/dist/ListView-CRDUPrbQ.js.map +1 -0
- package/dist/ListView.js +1 -1
- package/dist/{Menu-d3w2bIdB.js → Menu-Dh0q__vE.js} +7 -5
- package/dist/Menu-Dh0q__vE.js.map +1 -0
- package/dist/Menu.js +1 -1
- package/dist/{NumberField-r0fRpYa0.js → NumberField-Dmm1YQNn.js} +221 -7
- package/dist/NumberField-Dmm1YQNn.js.map +1 -0
- package/dist/NumberField.js +1 -1
- package/dist/{Page-DR5k0MAR.js → Page-C5nExhiH.js} +117 -13
- package/dist/Page-C5nExhiH.js.map +1 -0
- package/dist/Page.js +1 -1
- package/dist/{Pagination-XPZ5UeBs.js → Pagination-CimQTC7M.js} +3 -3
- package/dist/{Pagination-XPZ5UeBs.js.map → Pagination-CimQTC7M.js.map} +1 -1
- package/dist/Pagination.css +2 -1
- package/dist/Pagination.js +1 -1
- package/dist/{Popover-U2Eu7v1Q.js → Popover-CJLSDpgR.js} +9 -8
- package/dist/Popover-CJLSDpgR.js.map +1 -0
- package/dist/Popover.js +1 -1
- package/dist/Table.js +1 -1
- package/dist/{TimeField-BX9PovdE.js → TimeField-BeaCSkdZ.js} +3 -3
- package/dist/{TimeField-BX9PovdE.js.map → TimeField-BeaCSkdZ.js.map} +1 -1
- package/dist/TimeField.js +1 -1
- package/dist/{Toolbar-BWqguBF1.js → Toolbar-Cjo7eAhI.js} +8 -8
- package/dist/{Toolbar-BWqguBF1.js.map → Toolbar-Cjo7eAhI.js.map} +1 -1
- package/dist/Toolbar.js +1 -1
- package/dist/{YearlessDateInputWithPicker-uG9QMemw.js → YearlessDateInputWithPicker-BVRZlf9Y.js} +3 -3
- package/dist/{YearlessDateInputWithPicker-uG9QMemw.js.map → YearlessDateInputWithPicker-BVRZlf9Y.js.map} +1 -1
- package/dist/beta/components/Table/DataTable/DataTable.d.ts +8 -10
- package/dist/beta/components/Table/DataTable/DataTable.test-data.d.ts +2 -0
- package/dist/beta/components/Table/DataTable/internal/DataTableBody.d.ts +6 -1
- package/dist/beta/components/Table/DataTable/internal/DataTableBodyRow.d.ts +9 -0
- package/dist/beta/components/Table/DataTable/internal/DataTablePagination.d.ts +1 -1
- package/dist/beta/components/Table/DataTable/internal/cells/CellError.d.ts +10 -0
- package/dist/beta/components/Table/DataTable/internal/cells/CellFocusContext.d.ts +16 -0
- package/dist/beta/components/Table/DataTable/internal/cells/DataTableBodyCell.d.ts +19 -37
- package/dist/beta/components/Table/DataTable/internal/cells/DataTableBodyImmutableCell.d.ts +32 -0
- package/dist/beta/components/Table/DataTable/internal/cells/DataTableBodyMutableCell.d.ts +33 -0
- package/dist/beta/components/Table/DataTable/internal/cells/DataTableFooterCell.d.ts +2 -0
- package/dist/beta/components/Table/DataTable/internal/cells/DataTableHeaderCell.d.ts +1 -0
- package/dist/beta/components/Table/DataTable/internal/constants.d.ts +13 -0
- package/dist/beta/components/Table/DataTable/internal/context/focus/DTFocusContext.d.ts +57 -0
- package/dist/beta/components/Table/DataTable/internal/context/focus/DTFocusProvider.d.ts +9 -0
- package/dist/beta/components/Table/DataTable/internal/context/focus/useDTFocusDispatchContext.d.ts +11 -0
- package/dist/beta/components/Table/DataTable/internal/context/focus/useDTFocusStateContext.d.ts +1 -0
- package/dist/beta/components/Table/DataTable/internal/context/hover/DTHoverContext.d.ts +31 -0
- package/dist/beta/components/Table/DataTable/internal/context/hover/DTHoverProvider.d.ts +3 -0
- package/dist/beta/components/Table/DataTable/internal/context/hover/useDTHoverDispatchContext.d.ts +1 -0
- package/dist/beta/components/Table/DataTable/internal/context/hover/useDTHoverStateContext.d.ts +4 -0
- package/dist/beta/components/Table/DataTable/internal/editable-cells/DataTableEditableMultiselectCell.d.ts +19 -23
- package/dist/beta/components/Table/DataTable/internal/editable-cells/DataTableEditableSelectCell.d.ts +6 -25
- package/dist/beta/components/Table/DataTable/internal/editable-cells/DataTableEditableTextCell.d.ts +7 -17
- package/dist/beta/components/Table/DataTable/internal/editable-cells/types.d.ts +29 -37
- package/dist/beta/components/Table/DataTable/internal/util/cellPositionHelpers.d.ts +6 -0
- package/dist/beta/components/Table/DataTable/internal/util/cellTypeHelpers.d.ts +42 -0
- package/dist/beta/components/Table/{internal → DataTable/internal/util}/getTanStackColumnDef.d.ts +14 -6
- package/dist/beta/components/Table/DataTable/stories/DataTable.story-data.d.ts +4 -2
- package/dist/beta/components/Table/DataTable/types.d.ts +21 -0
- package/dist/beta/components/Table/base/TableContainer.d.ts +3 -14
- package/dist/beta/components/Table/createColumnHelper.d.ts +119 -13
- package/dist/beta/components/Table/formatters/booleanFormatter.d.ts +22 -0
- package/dist/beta/components/Table/formatters/currencyFormatter.d.ts +2 -2
- package/dist/beta/components/Table/formatters/dateFormatter.d.ts +34 -0
- package/dist/beta/components/Table/formatters/dateTimeFormatter.d.ts +66 -0
- package/dist/beta/components/Table/formatters/index.d.ts +7 -0
- package/dist/beta/components/Table/formatters/numberFormatter.d.ts +42 -0
- package/dist/beta/components/Table/formatters/percentFormatter.d.ts +1 -1
- package/dist/beta/components/Table/formatters/presets.d.ts +16 -0
- package/dist/beta/components/Table/formatters/timeFormatter.d.ts +28 -0
- package/dist/beta/components/Table/formatters/yearlessDateFormatter.d.ts +32 -0
- package/dist/beta/components/Table/internal/ResizeHandle.d.ts +2 -1
- package/dist/beta/components/Table/internal/getCommonPinningStyles.d.ts +1 -0
- package/dist/beta/components/Table/internal/scrollCellIntoView.d.ts +13 -0
- package/dist/beta/components/Table/internal/types.d.ts +13 -0
- package/dist/beta/components/Table/types.d.ts +52 -8
- package/dist/beta.js +4 -4
- package/dist/components/DateFieldRange/internal/MaskedDateRangeInput.d.ts +1 -1
- package/dist/components/DateFieldSingle/internal/MaskedDateInput.d.ts +1 -1
- package/dist/components/Page/Page.d.ts +9 -2
- package/dist/components/Page/PageHeader.d.ts +13 -4
- package/dist/components/Popover/internal/PopoverContext.d.ts +0 -1
- package/dist/components/Popover/internal/usePopoverContext.d.ts +0 -1
- package/dist/components/SearchField/SearchField.d.ts +1 -1
- package/dist/edit-DQOiktcu.js +6 -0
- package/dist/edit-DQOiktcu.js.map +1 -0
- package/dist/{index.esm-C2ZhC_8d.js → index.esm-BMOZFPwN.js} +2 -2
- package/dist/{index.esm-C2ZhC_8d.js.map → index.esm-BMOZFPwN.js.map} +1 -1
- package/dist/index.js +13 -13
- package/dist/internal/hooks/useNumberField/internal/createNumberMaskOptions.d.ts +10 -0
- package/dist/internal/hooks/useNumberField/internal/createTrailingDecimalHandlers.d.ts +13 -0
- package/dist/internal/hooks/useNumberField/internal/createTrailingZerosHandlers.d.ts +16 -0
- package/dist/internal/hooks/useNumberField/internal/numberMaskUtils.d.ts +9 -0
- package/dist/{Calendar-BEwWBsCE.js → luxon-wpz4A-OQ.js} +3 -2635
- package/dist/luxon-wpz4A-OQ.js.map +1 -0
- package/dist/{utils-CcMJa47q.js → utils-Cj6v6CZ-.js} +2 -2
- package/dist/{utils-CcMJa47q.js.map → utils-Cj6v6CZ-.js.map} +1 -1
- package/package.json +1 -1
- package/dist/Calendar-BEwWBsCE.js.map +0 -1
- package/dist/Combobox-CeADQxTl.js.map +0 -1
- package/dist/DataTable-CVtDYMKC.js.map +0 -1
- package/dist/ListView-CBmaHOY-.js.map +0 -1
- package/dist/Menu-d3w2bIdB.js.map +0 -1
- package/dist/NumberField-r0fRpYa0.js.map +0 -1
- package/dist/Page-DR5k0MAR.js.map +0 -1
- package/dist/Popover-U2Eu7v1Q.js.map +0 -1
- package/dist/beta/components/Table/DataTable/internal/DataTableContainer.d.ts +0 -7
- package/dist/beta/components/Table/DataTable/internal/DataTableContext.d.ts +0 -25
- package/dist/beta/components/Table/DataTable/internal/DataTableContextProvider.d.ts +0 -28
- package/dist/beta/components/Table/DataTable/internal/editable-cells/useEditCell.d.ts +0 -11
- package/dist/beta/components/Table/DataTable/internal/useDataTableContext.d.ts +0 -4
- package/dist/beta/components/Table/internal/focus-management/types.d.ts +0 -34
- package/dist/beta/components/Table/internal/focus-management/useFocusManagement.d.ts +0 -27
- package/dist/beta/components/Table/internal/focus-management/useHandleKeyDown.d.ts +0 -36
- package/dist/beta/components/Table/internal/focus-management/useScrollIntoView.d.ts +0 -9
- /package/dist/beta/components/Table/{internal/focus-management → DataTable/internal}/useColumnOrder.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,61 +1,113 @@
|
|
|
1
1
|
# @servicetitan/anvil2
|
|
2
2
|
|
|
3
|
+
## 2.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1902](https://github.com/servicetitan/hammer/pull/1902) [`e66f0a0`](https://github.com/servicetitan/hammer/commit/e66f0a0841fdf4b37b3b2075e2a27a8a76312ec0) Thanks [@omarmeky](https://github.com/omarmeky)! - [Popover] Fix unnecessary child remounting on reopen
|
|
8
|
+
|
|
9
|
+
- [#1905](https://github.com/servicetitan/hammer/pull/1905) [`0257c91`](https://github.com/servicetitan/hammer/commit/0257c9190e3b3e8bd00852d6b6cfa4435d420d07) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Update default date format presets to `short` for `dateFormatter`, `dateTimeFormatter`, and `yearlessDateFormatter`
|
|
10
|
+
|
|
11
|
+
## 2.0.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Fix inability to move between editable cells via click (i.e. no longer requires multiple clicks)
|
|
16
|
+
|
|
17
|
+
- [#1854](https://github.com/servicetitan/hammer/pull/1854) [`bb399a2`](https://github.com/servicetitan/hammer/commit/bb399a28543ba858d3e2dc2ce5a97792ad1d215f) Thanks [@Diveafall](https://github.com/Diveafall)! - **BETA** [DataTable]: Add imperative `refresh()` method via ref for programmatic data refetch
|
|
18
|
+
|
|
19
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Fix excessive re-renders caused by unchanged data when an editable cell was interacted with
|
|
20
|
+
|
|
21
|
+
- [#1873](https://github.com/servicetitan/hammer/pull/1873) [`70c1726`](https://github.com/servicetitan/hammer/commit/70c1726d55914069c2def6100b9691d9ca3459df) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable]: Remove `background` prop and add border styling for container distinction
|
|
22
|
+
|
|
23
|
+
- [#1890](https://github.com/servicetitan/hammer/pull/1890) [`bc4e3a2`](https://github.com/servicetitan/hammer/commit/bc4e3a2d4ff31f35f1fbf05362541133796ebbd7) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Fix `chipsFormatter` to consistently wrap chips in both string and object array modes; also prevent duplicate keys error
|
|
24
|
+
|
|
25
|
+
- [#1897](https://github.com/servicetitan/hammer/pull/1897) [`20011dc`](https://github.com/servicetitan/hammer/commit/20011dc5b1356a96d1cc2df784a9e21df7a6d24e) Thanks [@ericag1985](https://github.com/ericag1985)! - [Combobox] Fix inputValue not syncing with controlled selectedItem when selection is canceled
|
|
26
|
+
|
|
27
|
+
- [#1890](https://github.com/servicetitan/hammer/pull/1890) [`bc4e3a2`](https://github.com/servicetitan/hammer/commit/bc4e3a2d4ff31f35f1fbf05362541133796ebbd7) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Fix `currencyFormatter` and `percentFormatter` to correctly format `0` values instead of returning null
|
|
28
|
+
|
|
29
|
+
- [#1844](https://github.com/servicetitan/hammer/pull/1844) [`5f673dc`](https://github.com/servicetitan/hammer/commit/5f673dc5f8afd2a373ddf50437067663a8ee91d2) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Add support for cell-level and row-level errors
|
|
30
|
+
|
|
31
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [Menu] Fix issue where trigger element was refocused after a different interactive element was clicked
|
|
32
|
+
|
|
33
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Remove `requestAnimationFrame`-based workarounds for focus management
|
|
34
|
+
|
|
35
|
+
- [#1890](https://github.com/servicetitan/hammer/pull/1890) [`bc4e3a2`](https://github.com/servicetitan/hammer/commit/bc4e3a2d4ff31f35f1fbf05362541133796ebbd7) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Add `booleanFormatter`, `numberFormatter`, `dateFormatter`, `timeFormatter`, `dateTimeFormatter`, and `yearlessDateFormatter` utilities for formatting table cells with i18n support
|
|
36
|
+
|
|
37
|
+
- [#1877](https://github.com/servicetitan/hammer/pull/1877) [`df8258b`](https://github.com/servicetitan/hammer/commit/df8258bf04ee531fd2a5c21d9b45ac0e3efc0f97) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [NumberField] Fix input starting with a decimal point (e.g., ".5") by automatically prepending "0" to produce valid values (e.g., "0.5")
|
|
38
|
+
|
|
39
|
+
- [#1895](https://github.com/servicetitan/hammer/pull/1895) [`323e75b`](https://github.com/servicetitan/hammer/commit/323e75b103dae6749d32af383f6ba830af3a153e) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Pagination] Add white background to items per page dropdown menu
|
|
40
|
+
|
|
41
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Fix entire `DataTable` re-rendering when traversing between cells
|
|
42
|
+
|
|
43
|
+
- [#1895](https://github.com/servicetitan/hammer/pull/1895) [`323e75b`](https://github.com/servicetitan/hammer/commit/323e75b103dae6749d32af383f6ba830af3a153e) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - **BETA** [DataTable] Add `rowsPerPageOptions` and `onRowsPerPageChange` props to enable rows per page selection in pagination
|
|
44
|
+
|
|
45
|
+
- [#1857](https://github.com/servicetitan/hammer/pull/1857) [`a71c558`](https://github.com/servicetitan/hammer/commit/a71c558c22d43b936e29a4cf3f7c960a8c1e364c) Thanks [@rgdelato](https://github.com/rgdelato)! - [Page] Update `Page.Header` `title` to support inline edit
|
|
46
|
+
|
|
47
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [Menu] No longer refocuses trigger element when deprecated open prop changes
|
|
48
|
+
|
|
49
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Fix cells appearing behind footer when navigating via keyboard
|
|
50
|
+
|
|
51
|
+
- [#1877](https://github.com/servicetitan/hammer/pull/1877) [`df8258b`](https://github.com/servicetitan/hammer/commit/df8258bf04ee531fd2a5c21d9b45ac0e3efc0f97) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [NumberField] Fix inability to type trailing decimal zeros (e.g., "1.0", "1.00") in controlled mode when `minimumFractionDigits` is not set
|
|
52
|
+
|
|
53
|
+
- [#1834](https://github.com/servicetitan/hammer/pull/1834) [`621d4e0`](https://github.com/servicetitan/hammer/commit/621d4e001d3b26a3c982b69ae54f804ec99abd4a) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Introduce tighter types when `editMode` is used on columns (e.g. a number column should not have `editMode` of `"multiselect"`)
|
|
54
|
+
|
|
3
55
|
## 2.0.0
|
|
4
56
|
|
|
5
57
|
### Major Changes
|
|
6
58
|
|
|
7
|
-
- [#1837](https://github.com/servicetitan/hammer/pull/1837) [`3c638be`](https://github.com/servicetitan/hammer/commit/3c638be98b871aa1c8e18ead49bf4363d276ae2a) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)!
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[Checkbox] The `
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[Combobox
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
17
|
-
[Dialog] The
|
|
18
|
-
[
|
|
19
|
-
[
|
|
20
|
-
[
|
|
21
|
-
[
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
[Link] The deprecated `quiet` prop has been removed. Use `ghost` instead.
|
|
31
|
-
[LinkButton] The deprecated `quiet` prop has been removed. Use `ghost` instead.
|
|
32
|
-
[ListView.Option] The `event` parameter of the `onChange` prop is required.
|
|
33
|
-
[Menu] The component now requires the html popover API.
|
|
34
|
-
[Menu] The deprecated `root` has been removed. This prop has no functionality, so it can be safely removed.
|
|
35
|
-
[Popover] The exports of `PopoverButton`, `PopoverClose`, `PopoverContent`, and `PopoverTrigger` have been removed. Use `Popover.Button`, `Popover.Close`, `Popover.Content`, and `Popover.Trigger` instead.
|
|
36
|
-
[Popover] The deprecated `onOpenChange` has been removed. Use `onOpenAnimationStart`, `onOpenAnimationComplete`, and `onClose` instead.
|
|
37
|
-
[Popover] The deprecated `onOutsidePress` has been removed. Use `onClickOutside` instead.
|
|
38
|
-
[Popover] The deprecated `disableFocusLock` has been removed. Use `modal` instead.
|
|
39
|
-
[Popover] The deprecated `root` has been removed. This prop has no functionality, so it can be safely removed.
|
|
40
|
-
[Popover] The component now requires the html popover API.
|
|
41
|
-
[Popover.Trigger] The `data-state` attribute passed in the `children` render function has been replaced with `aria-expanded`.
|
|
42
|
-
[Radio] The export of `RadioGroup` has been removed. Use `Radio.Group` instead.
|
|
43
|
-
[Radio] The `event` parameter of the `onChange` prop is required.
|
|
44
|
-
[
|
|
45
|
-
[SelectCard] The export of `SelectCardElement` has been removed.
|
|
46
|
-
[SelectCard] The export of `SelectCardGroup` has been removed. Use `SelectCard.Group` instead.
|
|
47
|
-
[SelectTrigger] The deprecated `openMoreInfo` has been removed. Use `moreInfoOpen` instead.
|
|
48
|
-
[SideNav] The exports of `SideNavLink`, `SideNavGroup`, and `SideNavCollapsible` have been removed. Use `SideNav.Link`, `SideNav.Group`, and `SideNav.Collapsible` instead.
|
|
49
|
-
[Textarea] The `errorAriaLive` prop no longer accepts a boolean. Use `"off"`, `"assertive"`, or `"polite"` instead.
|
|
50
|
-
[Textarea] The `event` parameter of the `onChange` prop is required.
|
|
51
|
-
[Textarea] The deprecated `openMoreInfo` has been removed. Use `moreInfoOpen` instead.
|
|
52
|
-
[Toaster] The deprecated `duration` has been removed. The duration can be set on individual toasts.
|
|
53
|
-
[Toaster] The deprecated `forceRender` has been removed.
|
|
54
|
-
[Toolbar] The export of `ToolbarElement` has been removed.
|
|
55
|
-
[Toolbar] The exports of `ToolbarButton`, `ToolbarButtonToggle`, `ToolbarButtonLink`, and `ToolbarSelect` have been removed. Use `Toolbar.Button`, `Toolbar.ButtonToggle`, `Toolbar.ButtonLink`, and `Toolbar.Select` instead.
|
|
56
|
-
[Toolbar.Button] The `onClick` prop is required.
|
|
57
|
-
[Tooltip] The deprecated `root` has been removed. This prop has no functionality, so it can be safely removed.
|
|
58
|
-
[Tooltip] The component now requires the html popover API.
|
|
59
|
+
- [#1837](https://github.com/servicetitan/hammer/pull/1837) [`3c638be`](https://github.com/servicetitan/hammer/commit/3c638be98b871aa1c8e18ead49bf4363d276ae2a) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)!
|
|
60
|
+
- [Breadcrumbs] The export of `BreadcrumbsElement` has been removed.
|
|
61
|
+
- [Calendar] The deprecated `unavailableDates` has been removed. Use `unavailable.dates` instead.
|
|
62
|
+
- [Checkbox] The export of `CheckboxGroup` has been removed. Use `Checkbox.Group` instead.
|
|
63
|
+
- [Checkbox] The `event` parameter of the `onChange` prop is required.
|
|
64
|
+
- [Chip] `small` `Chip` only allows either `onChange` or `onClose`.
|
|
65
|
+
- [Combobox] The component now requires the html popover API.
|
|
66
|
+
- [Combobox.SelectTrigger] The deprecated `openMoreInfo` has been removed. Use `moreInfoOpen` instead.
|
|
67
|
+
- [DateField] The deprecated component has been removed. Please use `DateFieldSingle` or `DateFieldRange` instead.
|
|
68
|
+
- [Details] The exports of `DetailsSummary` and `DetailsContent` have been removed. Use `Details.Summary` and `Details.Content` instead.
|
|
69
|
+
- [Dialog] The exports of `DialogContent`, `DialogHeader`, `DialogFooter`, and `DialogCancelButton` have been removed. Use `Dialog.Content`, `Dialog.Header`, `Dialog.Footer`, and `Dialog.CancelButton` instead.
|
|
70
|
+
- [Dialog] The deprecated `onOpen` and `onOpenChange` have been removed. Use `onOpenAnimationStart`, `onOpenAnimationComplete`, and `onClose` instead.
|
|
71
|
+
- [Drawer] The deprecated `onOpen` has been removed. Use `onOpenAnimationStart` and `onOpenAnimationComplete` instead.
|
|
72
|
+
- [FieldLabel] The deprecated `openMoreInfo` has been removed. Use `moreInfoOpen` instead.
|
|
73
|
+
- [Flex] The deprecated `flexShrink` has been removed. Use `shrink` instead.
|
|
74
|
+
- [Icons] Certain icons have been updated for consistent naming.
|
|
75
|
+
- gnav_dial_pad_filled.svg -> gnav_dial_pad_active.svg
|
|
76
|
+
- gnav_dial_pad_outline.svg -> gnav_dial_pad_inactive.svg
|
|
77
|
+
- gnav_dial_pad_inactive_outline.svg -> gnav_dial_pad_disabled.svg
|
|
78
|
+
- gnav_home_filled.svg -> gnav_home_active.svg
|
|
79
|
+
- gnav_home_outline.svg -> gnav_home_inactive.svg
|
|
80
|
+
- gnav_legacy_search_filled.svg -> gnav_legacy_search_active.svg
|
|
81
|
+
- gnav_legacy_search_outline.svg -> gnav_legacy_search_inactive.svg
|
|
82
|
+
- [Link] The deprecated `quiet` prop has been removed. Use `ghost` instead.
|
|
83
|
+
- [LinkButton] The deprecated `quiet` prop has been removed. Use `ghost` instead.
|
|
84
|
+
- [ListView.Option] The `event` parameter of the `onChange` prop is required.
|
|
85
|
+
- [Menu] The component now requires the html popover API.
|
|
86
|
+
- [Menu] The deprecated `root` has been removed. This prop has no functionality, so it can be safely removed.
|
|
87
|
+
- [Popover] The exports of `PopoverButton`, `PopoverClose`, `PopoverContent`, and `PopoverTrigger` have been removed. Use `Popover.Button`, `Popover.Close`, `Popover.Content`, and `Popover.Trigger` instead.
|
|
88
|
+
- [Popover] The deprecated `onOpenChange` has been removed. Use `onOpenAnimationStart`, `onOpenAnimationComplete`, and `onClose` instead.
|
|
89
|
+
- [Popover] The deprecated `onOutsidePress` has been removed. Use `onClickOutside` instead.
|
|
90
|
+
- [Popover] The deprecated `disableFocusLock` has been removed. Use `modal` instead.
|
|
91
|
+
- [Popover] The deprecated `root` has been removed. This prop has no functionality, so it can be safely removed.
|
|
92
|
+
- [Popover] The component now requires the html popover API.
|
|
93
|
+
- [Popover.Trigger] The `data-state` attribute passed in the `children` render function has been replaced with `aria-expanded`.
|
|
94
|
+
- [Radio] The export of `RadioGroup` has been removed. Use `Radio.Group` instead.
|
|
95
|
+
- [Radio] The `event` parameter of the `onChange` prop is required.
|
|
96
|
+
- [Radio.Group] The `legend` prop is required.
|
|
97
|
+
- [SelectCard] The export of `SelectCardElement` has been removed.
|
|
98
|
+
- [SelectCard] The export of `SelectCardGroup` has been removed. Use `SelectCard.Group` instead.
|
|
99
|
+
- [SelectTrigger] The deprecated `openMoreInfo` has been removed. Use `moreInfoOpen` instead.
|
|
100
|
+
- [SideNav] The exports of `SideNavLink`, `SideNavGroup`, and `SideNavCollapsible` have been removed. Use `SideNav.Link`, `SideNav.Group`, and `SideNav.Collapsible` instead.
|
|
101
|
+
- [Textarea] The `errorAriaLive` prop no longer accepts a boolean. Use `"off"`, `"assertive"`, or `"polite"` instead.
|
|
102
|
+
- [Textarea] The `event` parameter of the `onChange` prop is required.
|
|
103
|
+
- [Textarea] The deprecated `openMoreInfo` has been removed. Use `moreInfoOpen` instead.
|
|
104
|
+
- [Toaster] The deprecated `duration` has been removed. The duration can be set on individual toasts.
|
|
105
|
+
- [Toaster] The deprecated `forceRender` has been removed.
|
|
106
|
+
- [Toolbar] The export of `ToolbarElement` has been removed.
|
|
107
|
+
- [Toolbar] The exports of `ToolbarButton`, `ToolbarButtonToggle`, `ToolbarButtonLink`, and `ToolbarSelect` have been removed. Use `Toolbar.Button`, `Toolbar.ButtonToggle`, `Toolbar.ButtonLink`, and `Toolbar.Select` instead.
|
|
108
|
+
- [Toolbar.Button] The `onClick` prop is required.
|
|
109
|
+
- [Tooltip] The deprecated `root` has been removed. This prop has no functionality, so it can be safely removed.
|
|
110
|
+
- [Tooltip] The component now requires the html popover API.
|
|
59
111
|
|
|
60
112
|
## 1.52.0
|
|
61
113
|
|
|
@@ -63,7 +115,7 @@
|
|
|
63
115
|
|
|
64
116
|
- [#1853](https://github.com/servicetitan/hammer/pull/1853) [`5d58224`](https://github.com/servicetitan/hammer/commit/5d582247697b0313f9c6f82b962fcb99c549eb2b) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Checkbox.Group, Radio.Group] Add `description`, `error`, `errorAriaLive`, and `hint` props
|
|
65
117
|
|
|
66
|
-
- [`650b010`](https://github.com/servicetitan/hammer/commit/650b010d13a03713824d7489e93a3ffc98f15f4d) Thanks [@rgdelato](https://github.com/rgdelato)! - [Spinner] Update Spinner to an official
|
|
118
|
+
- [`650b010`](https://github.com/servicetitan/hammer/commit/650b010d13a03713824d7489e93a3ffc98f15f4d) Thanks [@rgdelato](https://github.com/rgdelato)! - [Spinner] Update Spinner to an official version with size properties and dynamic stroke width
|
|
67
119
|
|
|
68
120
|
### Patch Changes
|
|
69
121
|
|
|
@@ -121,7 +173,7 @@
|
|
|
121
173
|
|
|
122
174
|
- [#1772](https://github.com/servicetitan/hammer/pull/1772) [`d7cccdf`](https://github.com/servicetitan/hammer/commit/d7cccdf68e4b3646a799311658612a237118e563) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [SelectField] Fix option click failing in Shadow DOM, as well as a list styling bug unique to Shadow DOMs.
|
|
123
175
|
|
|
124
|
-
- [#1764](https://github.com/servicetitan/hammer/pull/1764) [`c4629d9`](https://github.com/servicetitan/hammer/commit/c4629d9d90a93bb1acceab7ff441c2fe6100920d) Thanks [@AdamLantz](https://github.com/AdamLantz)! -
|
|
176
|
+
- [#1764](https://github.com/servicetitan/hammer/pull/1764) [`c4629d9`](https://github.com/servicetitan/hammer/commit/c4629d9d90a93bb1acceab7ff441c2fe6100920d) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [DataTable] Expand to 100% width by default; smaller tables can be accomplished by setting `maxWidth` on every column
|
|
125
177
|
|
|
126
178
|
## 1.50.0
|
|
127
179
|
|
|
@@ -133,7 +185,7 @@
|
|
|
133
185
|
|
|
134
186
|
### Patch Changes
|
|
135
187
|
|
|
136
|
-
- [#1761](https://github.com/servicetitan/hammer/pull/1761) [`3549783`](https://github.com/servicetitan/hammer/commit/35497832b843a84a3b24f665097c43e3e0a372ac) Thanks [@ericag1985](https://github.com/ericag1985)! - [Pagination]
|
|
188
|
+
- [#1761](https://github.com/servicetitan/hammer/pull/1761) [`3549783`](https://github.com/servicetitan/hammer/commit/35497832b843a84a3b24f665097c43e3e0a372ac) Thanks [@ericag1985](https://github.com/ericag1985)! - [Pagination] Fix `showCount` display and button disabling when `totalItemCount` is 0
|
|
137
189
|
|
|
138
190
|
- [#1765](https://github.com/servicetitan/hammer/pull/1765) [`7d45f3d`](https://github.com/servicetitan/hammer/commit/7d45f3de08ea61403a91799cc335d910faebcf8e) Thanks [@ericag1985](https://github.com/ericag1985)! - [SearchField] Fix spacer for clear button cutting off placeholder
|
|
139
191
|
|
|
@@ -187,7 +239,7 @@
|
|
|
187
239
|
|
|
188
240
|
- [#1714](https://github.com/servicetitan/hammer/pull/1714) [`93ca44e`](https://github.com/servicetitan/hammer/commit/93ca44ee1f6229844b292ec4d5ad04e716f5e671) Thanks [@AdamLantz](https://github.com/AdamLantz)! - **BETA** [SelectField, SelectFieldSync] Initial beta release of `SelectField` and `SelectFieldSync`
|
|
189
241
|
|
|
190
|
-
- [#1730](https://github.com/servicetitan/hammer/pull/1730) [`a3499fa`](https://github.com/servicetitan/hammer/commit/a3499faa64ded02fadd1d2fa1cbc229306920dd3) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - **
|
|
242
|
+
- [#1730](https://github.com/servicetitan/hammer/pull/1730) [`a3499fa`](https://github.com/servicetitan/hammer/commit/a3499faa64ded02fadd1d2fa1cbc229306920dd3) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - **BETA** [DataTable] Allow `ReactNode` in `customFooter.content`
|
|
191
243
|
|
|
192
244
|
## 1.49.4
|
|
193
245
|
|
|
@@ -197,7 +249,7 @@
|
|
|
197
249
|
|
|
198
250
|
- [#1715](https://github.com/servicetitan/hammer/pull/1715) [`885c8b6`](https://github.com/servicetitan/hammer/commit/885c8b6b5312fc715330014adf81a4771890fb52) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Toast] Fix clipping of left side of expanded toasts
|
|
199
251
|
|
|
200
|
-
- [#1707](https://github.com/servicetitan/hammer/pull/1707) [`2d79a58`](https://github.com/servicetitan/hammer/commit/2d79a5844ab73b9f27c697d1d30ca93c47830ee1) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [DataTable]
|
|
252
|
+
- [#1707](https://github.com/servicetitan/hammer/pull/1707) [`2d79a58`](https://github.com/servicetitan/hammer/commit/2d79a5844ab73b9f27c697d1d30ca93c47830ee1) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [DataTable] Remove reference to `bg-default` style
|
|
201
253
|
|
|
202
254
|
- [#1708](https://github.com/servicetitan/hammer/pull/1708) [`db62932`](https://github.com/servicetitan/hammer/commit/db62932cbb4cb8f95464a59e19a51e8fe1c11e19) Thanks [@rgdelato](https://github.com/rgdelato)! - [Combobox, SelectTrigger] Optimize `maxRows` calculation to reduce re-renders
|
|
203
255
|
|
|
@@ -205,13 +257,13 @@
|
|
|
205
257
|
|
|
206
258
|
### Patch Changes
|
|
207
259
|
|
|
208
|
-
- [#1700](https://github.com/servicetitan/hammer/pull/1700) [`9d5b72d`](https://github.com/servicetitan/hammer/commit/9d5b72d9a338b87f33f1f3c851a978f124b3e0eb) Thanks [@rgdelato](https://github.com/rgdelato)! - Add explicit `types` to `package.json` `exports`
|
|
260
|
+
- [#1700](https://github.com/servicetitan/hammer/pull/1700) [`9d5b72d`](https://github.com/servicetitan/hammer/commit/9d5b72d9a338b87f33f1f3c851a978f124b3e0eb) Thanks [@rgdelato](https://github.com/rgdelato)! - [Exports] Add explicit `types` to `package.json` `exports`
|
|
209
261
|
|
|
210
262
|
## 1.49.2
|
|
211
263
|
|
|
212
264
|
### Patch Changes
|
|
213
265
|
|
|
214
|
-
- [#1693](https://github.com/servicetitan/hammer/pull/1693) [`743b27d`](https://github.com/servicetitan/hammer/commit/743b27d9c101fada7c2cc296884f05af15f4e81c) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [Combobox] AddNew functionality
|
|
266
|
+
- [#1693](https://github.com/servicetitan/hammer/pull/1693) [`743b27d`](https://github.com/servicetitan/hammer/commit/743b27d9c101fada7c2cc296884f05af15f4e81c) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [Combobox] Fix `AddNew` functionality for single select mode
|
|
215
267
|
|
|
216
268
|
## 1.49.1
|
|
217
269
|
|
|
@@ -219,7 +271,7 @@
|
|
|
219
271
|
|
|
220
272
|
- [#1686](https://github.com/servicetitan/hammer/pull/1686) [`4303e89`](https://github.com/servicetitan/hammer/commit/4303e89d90fe7c5ffddb5738b2b4f5273da84239) Thanks [@ericag1985](https://github.com/ericag1985)! - [Calendar] Fix aria-disabled tag placement on calendar day cells
|
|
221
273
|
|
|
222
|
-
- [#1688](https://github.com/servicetitan/hammer/pull/1688) [`ece3b1e`](https://github.com/servicetitan/hammer/commit/ece3b1e50316b245faaa6145354504cd959f1ab7) Thanks [@ericag1985](https://github.com/ericag1985)! - [DateFieldSingle, DateFieldRange, DateFieldYearless, Dnd Handle, Stepper, Switch, TimeField]
|
|
274
|
+
- [#1688](https://github.com/servicetitan/hammer/pull/1688) [`ece3b1e`](https://github.com/servicetitan/hammer/commit/ece3b1e50316b245faaa6145354504cd959f1ab7) Thanks [@ericag1985](https://github.com/ericag1985)! - [DateFieldSingle, DateFieldRange, DateFieldYearless, Dnd Handle, Stepper, Switch, TimeField] Add default and fallback aria-labels for components that were missing them
|
|
223
275
|
|
|
224
276
|
## 1.49.0
|
|
225
277
|
|
|
@@ -237,7 +289,7 @@
|
|
|
237
289
|
|
|
238
290
|
- [#1662](https://github.com/servicetitan/hammer/pull/1662) [`e4e3b82`](https://github.com/servicetitan/hammer/commit/e4e3b82dc6c93d20653fc45b70117a89d5e8f09a) Thanks [@rgdelato](https://github.com/rgdelato)! - [Dependencies] Add `@emotion/is-prop-valid` to `anvil2` dependencies
|
|
239
291
|
|
|
240
|
-
- [#1664](https://github.com/servicetitan/hammer/pull/1664) [`9a2a6fe`](https://github.com/servicetitan/hammer/commit/9a2a6fe75ce27493981a829e233e0c32729d37a5) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [useLayoutPropsUtil] Fix missing styles when
|
|
292
|
+
- [#1664](https://github.com/servicetitan/hammer/pull/1664) [`9a2a6fe`](https://github.com/servicetitan/hammer/commit/9a2a6fe75ce27493981a829e233e0c32729d37a5) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [useLayoutPropsUtil] Fix missing styles when value is `0`
|
|
241
293
|
|
|
242
294
|
- [#1678](https://github.com/servicetitan/hammer/pull/1678) [`5f4fead`](https://github.com/servicetitan/hammer/commit/5f4feadbec088a662faefd87fe0083f1d7ccb0be) Thanks [@jb-servicetitan](https://github.com/jb-servicetitan)! - **BETA** [DataTable] Optimize `pagination.loadPageData` runs
|
|
243
295
|
|
|
@@ -247,7 +299,7 @@
|
|
|
247
299
|
|
|
248
300
|
- [#1678](https://github.com/servicetitan/hammer/pull/1678) [`5f4fead`](https://github.com/servicetitan/hammer/commit/5f4feadbec088a662faefd87fe0083f1d7ccb0be) Thanks [@jb-servicetitan](https://github.com/jb-servicetitan)! - **BETA** [DataTable] Fix console error on asynchronously loaded rows with expandable subrows
|
|
249
301
|
|
|
250
|
-
- [#1674](https://github.com/servicetitan/hammer/pull/1674) [`1fe3340`](https://github.com/servicetitan/hammer/commit/1fe3340ca4464c4ba93c154beac07dfcb0fda4ed) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [Overflow] undefined
|
|
302
|
+
- [#1674](https://github.com/servicetitan/hammer/pull/1674) [`1fe3340`](https://github.com/servicetitan/hammer/commit/1fe3340ca4464c4ba93c154beac07dfcb0fda4ed) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [Overflow] Fix `undefined` appearing in the list of classes
|
|
251
303
|
|
|
252
304
|
## 1.48.1
|
|
253
305
|
|
|
@@ -332,7 +384,7 @@
|
|
|
332
384
|
|
|
333
385
|
- [#1603](https://github.com/servicetitan/hammer/pull/1603) [`853ab3d`](https://github.com/servicetitan/hammer/commit/853ab3dd5ca662325957d79412a7d3668f9588a3) Thanks [@ericag1985](https://github.com/ericag1985)! - **BETA** [Calendar] Add prop for date meta data
|
|
334
386
|
|
|
335
|
-
- [#1598](https://github.com/servicetitan/hammer/pull/1598) [`b93a325`](https://github.com/servicetitan/hammer/commit/b93a32592af523e90c5f74a2731150d2711666e4) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Menu] Fix keyboard
|
|
387
|
+
- [#1598](https://github.com/servicetitan/hammer/pull/1598) [`b93a325`](https://github.com/servicetitan/hammer/commit/b93a32592af523e90c5f74a2731150d2711666e4) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Menu] Fix keyboard navigation on custom trigger
|
|
336
388
|
|
|
337
389
|
## 1.46.8
|
|
338
390
|
|
|
@@ -362,7 +414,7 @@
|
|
|
362
414
|
|
|
363
415
|
- [#1571](https://github.com/servicetitan/hammer/pull/1571) [`7f43dd6`](https://github.com/servicetitan/hammer/commit/7f43dd66c3a81b6944295f1074efe474dfa5d19b) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [Icons] New "Response" icons set
|
|
364
416
|
|
|
365
|
-
- [#1569](https://github.com/servicetitan/hammer/pull/1569) [`852546d`](https://github.com/servicetitan/hammer/commit/852546db089d6984aadde3e6281d73334aaac5db) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [DaysOfTheWeek]
|
|
417
|
+
- [#1569](https://github.com/servicetitan/hammer/pull/1569) [`852546d`](https://github.com/servicetitan/hammer/commit/852546db089d6984aadde3e6281d73334aaac5db) Thanks [@pbuckingham-st](https://github.com/pbuckingham-st)! - [DaysOfTheWeek] Fix helper element rendering without helper text
|
|
366
418
|
|
|
367
419
|
## 1.46.5
|
|
368
420
|
|
|
@@ -520,7 +572,7 @@
|
|
|
520
572
|
|
|
521
573
|
- [#1409](https://github.com/servicetitan/hammer/pull/1409) [`7646cce`](https://github.com/servicetitan/hammer/commit/7646cce3c6b02c8c883a554700f0f5eab07f56fd) Thanks [@w-a-t-s-o-n](https://github.com/w-a-t-s-o-n)! - [ListView] New `indeterminate` prop for indeterminate checkboxes on options
|
|
522
574
|
|
|
523
|
-
- [#1416](https://github.com/servicetitan/hammer/pull/1416) [`62475a4`](https://github.com/servicetitan/hammer/commit/62475a43d02c4c386dc17d3e2ffd9f41c60c193d) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [NumberField]
|
|
575
|
+
- [#1416](https://github.com/servicetitan/hammer/pull/1416) [`62475a4`](https://github.com/servicetitan/hammer/commit/62475a43d02c4c386dc17d3e2ffd9f41c60c193d) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [NumberField] Add `NumberField` component
|
|
524
576
|
|
|
525
577
|
### Patch Changes
|
|
526
578
|
|
|
@@ -554,7 +606,7 @@
|
|
|
554
606
|
|
|
555
607
|
### Minor Changes
|
|
556
608
|
|
|
557
|
-
- [#1370](https://github.com/servicetitan/hammer/pull/1370) [`1efcc9c`](https://github.com/servicetitan/hammer/commit/1efcc9c0d726253734034ccaf122c65c06bf36a9) Thanks [@ericag1985](https://github.com/ericag1985)! - [TimeField] Add
|
|
609
|
+
- [#1370](https://github.com/servicetitan/hammer/pull/1370) [`1efcc9c`](https://github.com/servicetitan/hammer/commit/1efcc9c0d726253734034ccaf122c65c06bf36a9) Thanks [@ericag1985](https://github.com/ericag1985)! - [TimeField] Add `TimeField` component
|
|
558
610
|
|
|
559
611
|
### Patch Changes
|
|
560
612
|
|
|
@@ -685,7 +737,7 @@
|
|
|
685
737
|
|
|
686
738
|
### Minor Changes
|
|
687
739
|
|
|
688
|
-
- [#1350](https://github.com/servicetitan/hammer/pull/1350) [`3faa08f`](https://github.com/servicetitan/hammer/commit/3faa08fb3fa2df9013b43c03b5482fbd0a3c5f9e) Thanks [@tounsoo](https://github.com/tounsoo)! - [Pagination]
|
|
740
|
+
- [#1350](https://github.com/servicetitan/hammer/pull/1350) [`3faa08f`](https://github.com/servicetitan/hammer/commit/3faa08fb3fa2df9013b43c03b5482fbd0a3c5f9e) Thanks [@tounsoo](https://github.com/tounsoo)! - [Pagination] Add `Pagination` component
|
|
689
741
|
|
|
690
742
|
- [#1357](https://github.com/servicetitan/hammer/pull/1357) [`a9fe6a6`](https://github.com/servicetitan/hammer/commit/a9fe6a60291bccbf7de4ae6d6d485a2a6a784aab) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [Icon] Add global nav icons for work queues; optimize some document SVG files
|
|
691
743
|
|
|
@@ -697,7 +749,7 @@
|
|
|
697
749
|
|
|
698
750
|
- [#1345](https://github.com/servicetitan/hammer/pull/1345) [`81cbe05`](https://github.com/servicetitan/hammer/commit/81cbe05ba5740cc3d630850151db5ed1a9726d14) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [DateFieldSingle] Implement DateFieldSingle component
|
|
699
751
|
|
|
700
|
-
- [#1345](https://github.com/servicetitan/hammer/pull/1345) [`81cbe05`](https://github.com/servicetitan/hammer/commit/81cbe05ba5740cc3d630850151db5ed1a9726d14) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [DateFieldRange]
|
|
752
|
+
- [#1345](https://github.com/servicetitan/hammer/pull/1345) [`81cbe05`](https://github.com/servicetitan/hammer/commit/81cbe05ba5740cc3d630850151db5ed1a9726d14) Thanks [@AdamLantz](https://github.com/AdamLantz)! - [DateFieldRange] Add `DateFieldRange` component
|
|
701
753
|
|
|
702
754
|
### Patch Changes
|
|
703
755
|
|