@aragon/gov-ui-kit 1.6.0 → 1.8.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 (66) hide show
  1. package/CHANGELOG.md +98 -13
  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/.storybook/main.d.ts +1 -1
  6. package/dist/types/.storybook/preview.d.ts +1 -1
  7. package/dist/types/.storybook/theme.d.ts +1 -1
  8. package/dist/types/src/core/assets/copy/coreCopy.d.ts +3 -0
  9. package/dist/types/src/core/components/clipboard/clipboard.d.ts +28 -0
  10. package/dist/types/src/core/components/clipboard/index.d.ts +1 -0
  11. package/dist/types/src/core/components/dataList/dataListItem/dataListItem.d.ts +2 -2
  12. package/dist/types/src/core/components/definitionList/definitionListItem/definitionListItem.d.ts +8 -4
  13. package/dist/types/src/core/components/definitionList/definitionListItem/definitionListItemContent.d.ts +13 -0
  14. package/dist/types/src/core/components/index.d.ts +1 -0
  15. package/dist/types/src/core/components/link/link/link.api.d.ts +6 -7
  16. package/dist/types/src/core/components/toggles/toggleGroup/toggleGroup.d.ts +5 -0
  17. package/dist/types/src/core/components/tooltip/tooltip.d.ts +4 -0
  18. package/dist/types/src/core/hooks/index.d.ts +1 -0
  19. package/dist/types/src/core/hooks/useCopy/index.d.ts +1 -0
  20. package/dist/types/src/core/hooks/useCopy/useCopy.d.ts +11 -0
  21. package/dist/types/src/modules/assets/copy/modulesCopy.d.ts +16 -12
  22. package/dist/types/src/modules/components/proposal/proposalUtils.d.ts +2 -11
  23. package/dist/types/src/modules/components/proposal/proposalVoting/index.d.ts +3 -1
  24. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBodyContent/proposalVotingBodyContent.d.ts +7 -7
  25. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBodySummaryList/proposalVotingBodySummaryList.d.ts +2 -2
  26. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBodySummaryListItem/proposalVotingBodySummaryListItem.d.ts +3 -3
  27. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBreakdownMultisig/proposalVotingBreakdownMultisig.d.ts +10 -1
  28. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingBreakdownToken/proposalVotingBreakdownToken.d.ts +5 -0
  29. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContainer/proposalVotingContainer.d.ts +7 -5
  30. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContext/index.d.ts +2 -0
  31. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContext/proposalVotingContext.api.d.ts +21 -0
  32. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingContext/proposalVotingContext.d.ts +3 -0
  33. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingProgress/proposalVotingProgressItem.d.ts +13 -4
  34. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStage/proposalVotingStage.d.ts +12 -11
  35. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContainer/index.d.ts +1 -0
  36. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContainer/proposalVotingStageContainer.d.ts +12 -0
  37. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStatus/index.d.ts +1 -0
  38. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStatus/proposalVotingStatus.d.ts +26 -0
  39. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStatus/proposalVotingStatusAdvanceable.d.ts +12 -0
  40. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingTabs/proposalVotingTabs.d.ts +2 -2
  41. package/dist/types/src/modules/components/vote/voteDataListItem/voteDataListItemStructure/voteDataListItemStructure.d.ts +7 -2
  42. package/dist/types/src/modules/components/vote/voteProposalDataListItem/voteProposalDataListItemStructure/voteProposalDataListItemStructure.d.ts +7 -2
  43. package/dist/types/src/modules/components/vote/voteUtils.d.ts +2 -2
  44. package/dist/types/src/modules/types/definitionSetting.d.ts +1 -1
  45. package/index.css +1 -4
  46. package/package.json +50 -56
  47. package/src/core/components/illustrations/index.css +2 -2
  48. package/src/theme/index.css +2 -1
  49. package/src/theme/tokens/index.css +1 -1
  50. package/src/theme/tokens/primitives/borderRadius.css +9 -8
  51. package/src/theme/tokens/primitives/breakpoints.css +16 -0
  52. package/src/theme/tokens/primitives/colors.css +69 -59
  53. package/src/theme/tokens/primitives/focusRing.css +56 -0
  54. package/src/theme/tokens/primitives/index.css +3 -1
  55. package/src/theme/tokens/primitives/shadows.css +40 -38
  56. package/src/theme/tokens/primitives/spacing.css +2 -36
  57. package/src/theme/tokens/primitives/typography.css +20 -22
  58. package/src/theme/utils/animations.css +23 -0
  59. package/src/theme/utils/index.css +3 -0
  60. package/src/theme/utils/prose.css +72 -0
  61. package/src/theme/utils/pseudoElements.css +27 -0
  62. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContext/index.d.ts +0 -1
  63. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageContext/proposalVotingStageContext.d.ts +0 -17
  64. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageStatus/index.d.ts +0 -1
  65. package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStageStatus/proposalVotingStageStatus.d.ts +0 -18
  66. package/tailwind.config.js +0 -376
package/CHANGELOG.md CHANGED
@@ -1,14 +1,99 @@
1
1
  # @aragon/gov-ui-kit
2
2
 
3
+ ## 1.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#495](https://github.com/aragon/gov-ui-kit/pull/495) [`40d2eb8`](https://github.com/aragon/gov-ui-kit/commit/40d2eb8675fdb57e3053e4bb1aa7483264e77cda) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch NPM dependencies
8
+
9
+ - [#504](https://github.com/aragon/gov-ui-kit/pull/504) [`6dea2ef`](https://github.com/aragon/gov-ui-kit/commit/6dea2ef6a0ade5ee86c8cf21e3b260ed58f527a2) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update jest to v30
10
+
11
+ - [#507](https://github.com/aragon/gov-ui-kit/pull/507) [`a3ca3bd`](https://github.com/aragon/gov-ui-kit/commit/a3ca3bd3f6a3836d20d6d2277907698644bdac97) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump softprops/action-gh-release to 2.3.2
12
+
13
+ - [#493](https://github.com/aragon/gov-ui-kit/pull/493) [`a28f933`](https://github.com/aragon/gov-ui-kit/commit/a28f93305dd485e4f1fbf6536647c4165644c983) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update Storybook to v9
14
+
15
+ - [#499](https://github.com/aragon/gov-ui-kit/pull/499) [`f79bc0d`](https://github.com/aragon/gov-ui-kit/commit/f79bc0d705be2878cd7234663143f7ce3d743d20) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch NPM dependencies
16
+
17
+ - [#501](https://github.com/aragon/gov-ui-kit/pull/501) [`e9596f9`](https://github.com/aragon/gov-ui-kit/commit/e9596f99d1f165feb00d890c250b93e13f08b549) Thanks [@milosh86](https://github.com/milosh86)! - Update `DataListItem` component to wrap in `div` when non-interactive
18
+
19
+ - [#505](https://github.com/aragon/gov-ui-kit/pull/505) [`db681e5`](https://github.com/aragon/gov-ui-kit/commit/db681e5d6663f36ac862456bdca442911f6dfe28) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update minor and patch NPM dependencies
20
+
21
+ - [#506](https://github.com/aragon/gov-ui-kit/pull/506) [`af6e520`](https://github.com/aragon/gov-ui-kit/commit/af6e52056559b72e76812b5754ec3a0ce7963e14) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump Vercel to 43.2.0
22
+
23
+ ### Patch Changes
24
+
25
+ - [#509](https://github.com/aragon/gov-ui-kit/pull/509) [`2c31c85`](https://github.com/aragon/gov-ui-kit/commit/2c31c85c7f9f05abfd0c6272a2aec94620f1395a) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Update release workflow
26
+
27
+ - [#502](https://github.com/aragon/gov-ui-kit/pull/502) [`cb04c79`](https://github.com/aragon/gov-ui-kit/commit/cb04c79e9b948127a2b6917b972da4deee900a7a) Thanks [@cgero-eth](https://github.com/cgero-eth)! - Fix style of threshold indicator on `<Progress />` core component
28
+
29
+ - [#497](https://github.com/aragon/gov-ui-kit/pull/497) [`3efaf5b`](https://github.com/aragon/gov-ui-kit/commit/3efaf5b29f0fb372ef2023cdd670c298686f9a7c) Thanks [@thekidnamedkd](https://github.com/thekidnamedkd)! - Fix rendering of threshold indicator on `Progress` core component
30
+
31
+ ## 1.7.0
32
+
33
+ ### Minor Changes
34
+
35
+ - [#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
36
+
37
+ - [#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
38
+
39
+ **BREAKING**: Rename `confirmationLabel` property to `voteIndicatorDescription`
40
+
41
+ - [#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
42
+
43
+ **BREAKING**: Remove `ProposalVotingStatus` enum in favor of `ProposalStatus`
44
+
45
+ - [#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
46
+
47
+ - [#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`
48
+
49
+ - [#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
50
+
51
+ - [#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:
52
+
53
+ - Mark `name` property of `BodyContent` and `Stage` components as required
54
+ - Rename `Container` component to `StageContainer`, implement new `Container` component for simple governance proposals
55
+
56
+ - [#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
57
+
58
+ - [#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
59
+
60
+ - [#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
61
+
62
+ - [#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
63
+
64
+ **BREAKING**: Update multisig breakdown component to require `membersCount` property
65
+
66
+ - [#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`
67
+
68
+ **BREAKING**: Remove `description` prop from `Link` component in favour of `showUrl` and `iconRight` prop in favour of `isExternal`
69
+
70
+ - [#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
71
+
72
+ - [#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
73
+
74
+ - [#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
75
+
76
+ **Breaking**:
77
+
78
+ - Remove `rounded` class in favour of `rounded-md`
79
+ - Remove `guk` prefix on primitive CSS custom properties
80
+ - Implement `focus-ring-[variant]` utilities to be used instead of custom ring classes
81
+
82
+ ### Patch Changes
83
+
84
+ - [#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
85
+
86
+ - [#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
87
+
3
88
  ## 1.6.0
4
89
 
5
90
  ### Minor Changes
6
91
 
7
- - [#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 prop
92
+ - [#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
8
93
 
9
94
  ### Patch Changes
10
95
 
11
- - [#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 to support single external body scenarios
96
+ - [#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
12
97
 
13
98
  ## 1.5.0
14
99
 
@@ -16,21 +101,21 @@
16
101
 
17
102
  - [#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
18
103
 
19
- - [#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
104
+ - [#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
20
105
 
21
106
  - [#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
22
107
 
23
108
  ### Patch Changes
24
109
 
25
- - [#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
110
+ - [#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
26
111
 
27
- - [#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
112
+ - [#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
28
113
 
29
114
  ## 1.4.0
30
115
 
31
116
  ### Minor Changes
32
117
 
33
- - [#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
118
+ - [#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
34
119
 
35
120
  - [#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
36
121
 
@@ -38,7 +123,7 @@
38
123
 
39
124
  ### Patch Changes
40
125
 
41
- - [#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 />`
126
+ - [#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
42
127
 
43
128
  ## 1.3.0
44
129
 
@@ -46,13 +131,13 @@
46
131
 
47
132
  - [#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
48
133
 
49
- - [#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
134
+ - [#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
50
135
 
51
- - [#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
136
+ - [#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
52
137
 
53
138
  ### Patch Changes
54
139
 
55
- - [#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
140
+ - [#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
56
141
 
57
142
  - [#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
58
143
 
@@ -66,11 +151,11 @@
66
151
 
67
152
  - [#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
68
153
 
69
- - [#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
154
+ - [#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
70
155
 
71
- - [#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
156
+ - [#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
72
157
 
73
- - [#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
158
+ - [#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
74
159
 
75
160
  ## 1.1.0
76
161