@aragon/gov-ui-kit 1.5.0 → 1.7.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.
Files changed (63) hide show
  1. package/CHANGELOG.md +78 -11
  2. package/build.css +1 -5
  3. package/dist/index.es.js +1 -1
  4. package/dist/index.es.js.map +1 -1
  5. package/dist/types/src/core/assets/copy/coreCopy.d.ts +3 -0
  6. package/dist/types/src/core/components/clipboard/clipboard.d.ts +28 -0
  7. package/dist/types/src/core/components/clipboard/index.d.ts +1 -0
  8. package/dist/types/src/core/components/definitionList/definitionListItem/definitionListItem.d.ts +8 -4
  9. package/dist/types/src/core/components/definitionList/definitionListItem/definitionListItemContent.d.ts +13 -0
  10. package/dist/types/src/core/components/documentParser/documentParser.d.ts +4 -0
  11. package/dist/types/src/core/components/index.d.ts +1 -0
  12. package/dist/types/src/core/components/link/link/link.api.d.ts +6 -7
  13. package/dist/types/src/core/components/toggles/toggleGroup/toggleGroup.d.ts +5 -0
  14. package/dist/types/src/core/components/tooltip/tooltip.d.ts +4 -0
  15. package/dist/types/src/core/hooks/index.d.ts +1 -0
  16. package/dist/types/src/core/hooks/useCopy/index.d.ts +1 -0
  17. package/dist/types/src/core/hooks/useCopy/useCopy.d.ts +11 -0
  18. package/dist/types/src/modules/assets/copy/modulesCopy.d.ts +16 -12
  19. package/dist/types/src/modules/components/proposal/proposalUtils.d.ts +2 -11
  20. package/dist/types/src/modules/components/proposal/proposalVoting/index.d.ts +3 -1
  21. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBodyContent/proposalVotingBodyContent.d.ts +7 -7
  22. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBodySummaryList/proposalVotingBodySummaryList.d.ts +2 -2
  23. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBodySummaryListItem/proposalVotingBodySummaryListItem.d.ts +3 -3
  24. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBreakdownMultisig/proposalVotingBreakdownMultisig.d.ts +10 -1
  25. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBreakdownToken/proposalVotingBreakdownToken.d.ts +5 -0
  26. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContainer/proposalVotingContainer.d.ts +7 -5
  27. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContext/index.d.ts +2 -0
  28. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContext/proposalVotingContext.api.d.ts +21 -0
  29. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContext/proposalVotingContext.d.ts +3 -0
  30. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingProgress/proposalVotingProgressItem.d.ts +13 -4
  31. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStage/proposalVotingStage.d.ts +12 -11
  32. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContainer/index.d.ts +1 -0
  33. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContainer/proposalVotingStageContainer.d.ts +12 -0
  34. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStatus/index.d.ts +1 -0
  35. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStatus/proposalVotingStatus.d.ts +26 -0
  36. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStatus/proposalVotingStatusAdvanceable.d.ts +12 -0
  37. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingTabs/proposalVotingTabs.d.ts +2 -2
  38. package/dist/types/src/modules/components/vote/voteDataListItem/voteDataListItemStructure/voteDataListItemStructure.d.ts +7 -2
  39. package/dist/types/src/modules/components/vote/voteProposalDataListItem/voteProposalDataListItemStructure/voteProposalDataListItemStructure.d.ts +7 -2
  40. package/dist/types/src/modules/components/vote/voteUtils.d.ts +2 -2
  41. package/dist/types/src/modules/types/definitionSetting.d.ts +1 -1
  42. package/index.css +1 -4
  43. package/package.json +30 -34
  44. package/src/core/components/illustrations/index.css +2 -2
  45. package/src/theme/index.css +2 -1
  46. package/src/theme/tokens/index.css +1 -1
  47. package/src/theme/tokens/primitives/borderRadius.css +9 -8
  48. package/src/theme/tokens/primitives/breakpoints.css +16 -0
  49. package/src/theme/tokens/primitives/colors.css +69 -59
  50. package/src/theme/tokens/primitives/focusRing.css +56 -0
  51. package/src/theme/tokens/primitives/index.css +3 -1
  52. package/src/theme/tokens/primitives/shadows.css +40 -38
  53. package/src/theme/tokens/primitives/spacing.css +2 -36
  54. package/src/theme/tokens/primitives/typography.css +20 -22
  55. package/src/theme/utils/animations.css +23 -0
  56. package/src/theme/utils/index.css +3 -0
  57. package/src/theme/utils/prose.css +72 -0
  58. package/src/theme/utils/pseudoElements.css +27 -0
  59. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContext/index.d.ts +0 -1
  60. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContext/proposalVotingStageContext.d.ts +0 -17
  61. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageStatus/index.d.ts +0 -1
  62. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageStatus/proposalVotingStageStatus.d.ts +0 -18
  63. package/tailwind.config.js +0 -376
package/CHANGELOG.md CHANGED
@@ -1,26 +1,93 @@
1
1
  # @aragon/gov-ui-kit
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#485](https://github.com/aragon/gov-ui-kit/pull/485) [`92244aa`](https://github.com/aragon/gov-ui-kit/commit/92244aaec9022d24375e58fcf0fe153dafdffad7) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch NPM dependencies
8
+
9
+ - [#490](https://github.com/aragon/gov-ui-kit/pull/490) [`b5d7769`](https://github.com/aragon/gov-ui-kit/commit/b5d77699d6fcf6cef802755ed0d773598b267276) Thanks [@milosh86](https://github.com/milosh86)! - Update `<VoteDataListItem />` and `<VoteProposalDataListItem />` module components to support veto variant and `isVeto` property
10
+
11
+ **BREAKING**: Rename `confirmationLabel` property to `voteIndicatorDescription`
12
+
13
+ - [#478](https://github.com/aragon/gov-ui-kit/pull/478) [`174572b`](https://github.com/aragon/gov-ui-kit/commit/174572b088b58887ea32b3ea577dc765f1247313) Thanks [@shan8851](https://github.com/shan8851)! - Update status handling of `<ProposalVoting />` module component to correctly show advanceable, executed and executable statuses
14
+
15
+ **BREAKING**: Remove `ProposalVotingStatus` enum in favor of `ProposalStatus`
16
+
17
+ - [#481](https://github.com/aragon/gov-ui-kit/pull/481) [`d42310b`](https://github.com/aragon/gov-ui-kit/commit/d42310b7ea7a34b31941620fea0a873ed6037340) Thanks [@milosh86](https://github.com/milosh86)! - Update `<ToggleGroup />` core component to support `orientation` property
18
+
19
+ - [#489](https://github.com/aragon/gov-ui-kit/pull/489) [`55bd74f`](https://github.com/aragon/gov-ui-kit/commit/55bd74f187dbdac1c55a3e151bbf005ac4a213e6) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update `<Wallet />` module component to hide connected user info on breakpoints lower than `XL`
20
+
21
+ - [#486](https://github.com/aragon/gov-ui-kit/pull/486) [`42db993`](https://github.com/aragon/gov-ui-kit/commit/42db99314f5a2f19a16b97a73bd4edca07226175) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump `vercel` to v42
22
+
23
+ - [#483](https://github.com/aragon/gov-ui-kit/pull/483) [`5bec051`](https://github.com/aragon/gov-ui-kit/commit/5bec051e6f4defe20570dd435e2712b4bc6043e6) Thanks [@cgero-eth](https://github.com/cgero-eth)! - **BREAKING** Refactor ProposalVoting component to improve handling of stages:
24
+
25
+ - Mark `name` property of `BodyContent` and `Stage` components as required
26
+ - Rename `Container` component to `StageContainer`, implement new `Container` component for simple governance proposals
27
+
28
+ - [#475](https://github.com/aragon/gov-ui-kit/pull/475) [`a6c5f35`](https://github.com/aragon/gov-ui-kit/commit/a6c5f35f80b9133e4133c0db987a7bb8e6925888) Thanks [@milosh86](https://github.com/milosh86)! - Implement `<Clipboard />` core component and `useCopy` hook
29
+
30
+ - [#479](https://github.com/aragon/gov-ui-kit/pull/479) [`14708eb`](https://github.com/aragon/gov-ui-kit/commit/14708ebe56599e327e77ccf3b4f144642541d026) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch NPM dependencies
31
+
32
+ - [#487](https://github.com/aragon/gov-ui-kit/pull/487) [`5780554`](https://github.com/aragon/gov-ui-kit/commit/5780554a4d82824c98f635ca826793050a1416a0) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump `rollup-plugin-visualizer` to v6
33
+
34
+ - [#480](https://github.com/aragon/gov-ui-kit/pull/480) [`e2d03bd`](https://github.com/aragon/gov-ui-kit/commit/e2d03bd56578db580634d2909fbc0c37631efdfd) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Update style, labels and layout of breakdown components displayed on `<ProposalVoting >` module component
35
+
36
+ **BREAKING**: Update multisig breakdown component to require `membersCount` property
37
+
38
+ - [#476](https://github.com/aragon/gov-ui-kit/pull/476) [`42ff840`](https://github.com/aragon/gov-ui-kit/commit/42ff84020c93c537e2527d452ac0465361e78f24) Thanks [@milosh86](https://github.com/milosh86)! - Update `<Link />` core component colors and spacing, add `description` property to `<DefinitionListItem />` component and update `line-height`
39
+
40
+ **BREAKING**: Remove `description` prop from `Link` component in favour of `showUrl` and `iconRight` prop in favour of `isExternal`
41
+
42
+ - [#480](https://github.com/aragon/gov-ui-kit/pull/480) [`e2d03bd`](https://github.com/aragon/gov-ui-kit/commit/e2d03bd56578db580634d2909fbc0c37631efdfd) Thanks [@cgero-eth](https://github.com/cgero-eth)! - **BREAKING**: Update multisig breakdown component to require "membersCount" property
43
+
44
+ - [#481](https://github.com/aragon/gov-ui-kit/pull/481) [`d42310b`](https://github.com/aragon/gov-ui-kit/commit/d42310b7ea7a34b31941620fea0a873ed6037340) Thanks [@milosh86](https://github.com/milosh86)! - Update `<ProposalVoting />` module component and sub-components to handle veto proposals
45
+
46
+ - [#446](https://github.com/aragon/gov-ui-kit/pull/446) [`788134d`](https://github.com/aragon/gov-ui-kit/commit/788134d6f19c7fe88096684c60e4b91ea00c5a4d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Migrate library to Tailwind CSS v4
47
+
48
+ **Breaking**:
49
+
50
+ - Remove `rounded` class in favour of `rounded-md`
51
+ - Remove `guk` prefix on primitive CSS custom properties
52
+ - Implement `focus-ring-[variant]` utilities to be used instead of custom ring classes
53
+
54
+ ### Patch Changes
55
+
56
+ - [#446](https://github.com/aragon/gov-ui-kit/pull/446) [`788134d`](https://github.com/aragon/gov-ui-kit/commit/788134d6f19c7fe88096684c60e4b91ea00c5a4d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Fix icon color of `<Button />` core component on ghost variant
57
+
58
+ - [#492](https://github.com/aragon/gov-ui-kit/pull/492) [`8b35979`](https://github.com/aragon/gov-ui-kit/commit/8b35979d736f86a54847e026052f615793251e1a) Thanks [@evanaronson](https://github.com/evanaronson)! - Fix `<TextAreaRichText />` core component to format markdown text pasted from the clipboard
59
+
60
+ ## 1.6.0
61
+
62
+ ### Minor Changes
63
+
64
+ - [#473](https://github.com/aragon/gov-ui-kit/pull/473) [`3d73db8`](https://github.com/aragon/gov-ui-kit/commit/3d73db8dfc004a5917ba8d2ea90b51e46289687e) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Update `<DocumentParser />` core component to expose `immediatelyRender` property for SSR usage
65
+
66
+ ### Patch Changes
67
+
68
+ - [#474](https://github.com/aragon/gov-ui-kit/pull/474) [`8f5d5ce`](https://github.com/aragon/gov-ui-kit/commit/8f5d5ce43f631dcff5bd682ec9ac6a5ae783d7a9) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Fix `<ProposalVotingBodyContent />` module component to support single external body scenarios
69
+
3
70
  ## 1.5.0
4
71
 
5
72
  ### Minor Changes
6
73
 
7
74
  - [#472](https://github.com/aragon/gov-ui-kit/pull/472) [`6b2c13f`](https://github.com/aragon/gov-ui-kit/commit/6b2c13fc32983705b701d8e67efbbf54a4e2e107) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch NPM dependencies
8
75
 
9
- - [#471](https://github.com/aragon/gov-ui-kit/pull/471) [`80fa61d`](https://github.com/aragon/gov-ui-kit/commit/80fa61df455704c6f561bb01a42753a595089b65) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump lint-staged to v16
76
+ - [#471](https://github.com/aragon/gov-ui-kit/pull/471) [`80fa61d`](https://github.com/aragon/gov-ui-kit/commit/80fa61df455704c6f561bb01a42753a595089b65) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump `lint-staged` to v16
10
77
 
11
78
  - [#468](https://github.com/aragon/gov-ui-kit/pull/468) [`3965c45`](https://github.com/aragon/gov-ui-kit/commit/3965c45159cbf3fcf566cd874f35771a6a2bf2bd) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch NPM dependencies
12
79
 
13
80
  ### Patch Changes
14
81
 
15
- - [#470](https://github.com/aragon/gov-ui-kit/pull/470) [`8f005a0`](https://github.com/aragon/gov-ui-kit/commit/8f005a043910782cc852f2f07a1acfa7b7f2c0b2) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Implement ProposalActionItemsSkeleton component, update ProposalActions component to support loading state
82
+ - [#470](https://github.com/aragon/gov-ui-kit/pull/470) [`8f005a0`](https://github.com/aragon/gov-ui-kit/commit/8f005a043910782cc852f2f07a1acfa7b7f2c0b2) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Implement `<ProposalActionItemsSkeleton />` component, update `<ProposalActions />` component to support loading state
16
83
 
17
- - [#469](https://github.com/aragon/gov-ui-kit/pull/469) [`b963051`](https://github.com/aragon/gov-ui-kit/commit/b963051712b6982e3be31ac34ca466af27f868c8) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update ProposalVoting module component to support branded bodies
84
+ - [#469](https://github.com/aragon/gov-ui-kit/pull/469) [`b963051`](https://github.com/aragon/gov-ui-kit/commit/b963051712b6982e3be31ac34ca466af27f868c8) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update `<ProposalVoting />` module component to support branded bodies
18
85
 
19
86
  ## 1.4.0
20
87
 
21
88
  ### Minor Changes
22
89
 
23
- - [#465](https://github.com/aragon/gov-ui-kit/pull/465) [`7ea0aa2`](https://github.com/aragon/gov-ui-kit/commit/7ea0aa205cecc4cbf69e77ef9f9c763d9191f432) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump aragon/github-templates to 0.4
90
+ - [#465](https://github.com/aragon/gov-ui-kit/pull/465) [`7ea0aa2`](https://github.com/aragon/gov-ui-kit/commit/7ea0aa205cecc4cbf69e77ef9f9c763d9191f432) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump `aragon/github-templates` to 0.4
24
91
 
25
92
  - [#467](https://github.com/aragon/gov-ui-kit/pull/467) [`4315e9c`](https://github.com/aragon/gov-ui-kit/commit/4315e9c91e0ff846e138c82721e3a99e4b894363) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Update module components to set ethereum mainnet as default value for chain-id property
26
93
 
@@ -28,7 +95,7 @@
28
95
 
29
96
  ### Patch Changes
30
97
 
31
- - [#466](https://github.com/aragon/gov-ui-kit/pull/466) [`83762be`](https://github.com/aragon/gov-ui-kit/commit/83762bea8b74b8b255d28c18b6671795c6965987) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Implement 'link' prop and component within `<DefinitionList.Item />`
98
+ - [#466](https://github.com/aragon/gov-ui-kit/pull/466) [`83762be`](https://github.com/aragon/gov-ui-kit/commit/83762bea8b74b8b255d28c18b6671795c6965987) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update `<DefinitionList.Item />` component to support `link` property
32
99
 
33
100
  ## 1.3.0
34
101
 
@@ -36,13 +103,13 @@
36
103
 
37
104
  - [#460](https://github.com/aragon/gov-ui-kit/pull/460) [`94b3bba`](https://github.com/aragon/gov-ui-kit/commit/94b3bba28c35be1b35633adfb5e18c21642d5666) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch dependencies
38
105
 
39
- - [#463](https://github.com/aragon/gov-ui-kit/pull/463) [`3dd95c9`](https://github.com/aragon/gov-ui-kit/commit/3dd95c992de4f8353c9eb56293fedacbeaa37de6) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Support customisation of visible tabs on the ProposalVoting component
106
+ - [#463](https://github.com/aragon/gov-ui-kit/pull/463) [`3dd95c9`](https://github.com/aragon/gov-ui-kit/commit/3dd95c992de4f8353c9eb56293fedacbeaa37de6) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Support customisation of visible tabs on the `<ProposalVoting />` component
40
107
 
41
- - [#461](https://github.com/aragon/gov-ui-kit/pull/461) [`ed8a0f2`](https://github.com/aragon/gov-ui-kit/commit/ed8a0f2333cf04000ddc719f66ae68cc4525236a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump softprops/action-gh-release to 2.2.2
108
+ - [#461](https://github.com/aragon/gov-ui-kit/pull/461) [`ed8a0f2`](https://github.com/aragon/gov-ui-kit/commit/ed8a0f2333cf04000ddc719f66ae68cc4525236a) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump `softprops/action-gh-release` to 2.2.2
42
109
 
43
110
  ### Patch Changes
44
111
 
45
- - [#456](https://github.com/aragon/gov-ui-kit/pull/456) [`5ae74a6`](https://github.com/aragon/gov-ui-kit/commit/5ae74a6da4f912a1def4efdeb477684b3d84c4b0) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update `DialogAlert` core component to support `size` property
112
+ - [#456](https://github.com/aragon/gov-ui-kit/pull/456) [`5ae74a6`](https://github.com/aragon/gov-ui-kit/commit/5ae74a6da4f912a1def4efdeb477684b3d84c4b0) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update `<DialogAlert />` core component to support `size` property
46
113
 
47
114
  - [#457](https://github.com/aragon/gov-ui-kit/pull/457) [`d29c913`](https://github.com/aragon/gov-ui-kit/commit/d29c9132d77e7ca712502d6dee76c5d596758a1b) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Update Storybook deploy workflow to retrieve secrets from 1Password
48
115
 
@@ -56,11 +123,11 @@
56
123
 
57
124
  - [#453](https://github.com/aragon/gov-ui-kit/pull/453) [`2de2ac9`](https://github.com/aragon/gov-ui-kit/commit/2de2ac95d38e4e9343fd27739dd2dfa633dd4feb) Thanks [@shan8851](https://github.com/shan8851)! - Add outline none to dialog to fix unwanted styling when user focuses inside
58
125
 
59
- - [#454](https://github.com/aragon/gov-ui-kit/pull/454) [`ee9bf52`](https://github.com/aragon/gov-ui-kit/commit/ee9bf5243bc2e7f9009c8b9f551b46fca51052a5) Thanks [@shan8851](https://github.com/shan8851)! - Fix `DropdownItem` core component to prevent default click behaviour when disabled
126
+ - [#454](https://github.com/aragon/gov-ui-kit/pull/454) [`ee9bf52`](https://github.com/aragon/gov-ui-kit/commit/ee9bf5243bc2e7f9009c8b9f551b46fca51052a5) Thanks [@shan8851](https://github.com/shan8851)! - Fix `<DropdownItem />` core component to prevent default click behaviour when disabled
60
127
 
61
- - [#452](https://github.com/aragon/gov-ui-kit/pull/452) [`858ffa2`](https://github.com/aragon/gov-ui-kit/commit/858ffa257cf60474aca77084ce0a8b0ea9102d03) Thanks [@shan8851](https://github.com/shan8851)! - Update core `DataListPagination` component to apply different variant to the progress bar when there are no more items to show
128
+ - [#452](https://github.com/aragon/gov-ui-kit/pull/452) [`858ffa2`](https://github.com/aragon/gov-ui-kit/commit/858ffa257cf60474aca77084ce0a8b0ea9102d03) Thanks [@shan8851](https://github.com/shan8851)! - Update `<DataListPagination />` core component to apply neutral variant to the progress bar when there are no more items to show
62
129
 
63
- - [#450](https://github.com/aragon/gov-ui-kit/pull/450) [`513c119`](https://github.com/aragon/gov-ui-kit/commit/513c119e87b4424dd98763a428e0b5e63e6dba0f) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update DURATION formatting to round to nearest significant unit
130
+ - [#450](https://github.com/aragon/gov-ui-kit/pull/450) [`513c119`](https://github.com/aragon/gov-ui-kit/commit/513c119e87b4424dd98763a428e0b5e63e6dba0f) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Update `DURATION` formatting to round dates to nearest significant unit
64
131
 
65
132
  ## 1.1.0
66
133