Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

Commit 5cb9f14

Browse files
committed
Merge branch 'master' into box-v2
2 parents cf8191b + e99f5aa commit 5cb9f14

44 files changed

Lines changed: 10965 additions & 1639 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
- name: Checkout source code
88
uses: actions/checkout@v2
99
- name: Setup Node
10-
uses: actions/setup-node@v1
10+
uses: actions/setup-node@v2
1111
with:
12-
node_version: 12.x
12+
node-version: '12'
1313
- name: Install dependencies
1414
run: npm install
1515
- name: Run lerna bootstrap

CHANGELOG.md

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
# Upcoming
1+
2+
3+
# 7.1.2
4+
5+
## New Component
6+
- Add TopNav component
7+
8+
# 7.1.1
9+
10+
## Updates
11+
12+
- Add optional alwaysUpdateInnerCheckboxState prop to TriStateCheckbox
13+
- Allow additional className to be applied to Modal components
14+
15+
# 7.1.0
16+
17+
## Updates
18+
19+
- Add new Badge variants
20+
21+
# 7.0.2
22+
23+
## Fix
24+
25+
- Fix Badge PropTypes
26+
27+
# 7.0.1
28+
29+
## Updates
30+
31+
- Update Badge docs
32+
33+
# 7.0.0
34+
35+
## New Feature
36+
37+
- Add selectable rows to DataTable.
38+
39+
## Breaking Changes in DataTable
40+
41+
- renderToolbar's data prop now return an array of objects instead of array of arrays.
42+
- Before: data = [['first', 'last']], After: data = [{row: ['first', 'last'], selected: true}]
243

344
## New Feature
445

@@ -8,7 +49,7 @@
849

950
## New Component
1051

11-
- Add Chip component
52+
- Add Badge component
1253

1354
# 6.10.0
1455

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "6.10.0",
5+
"version": "7.1.2",
66
"lerna": "2.9.0"
77
}

0 commit comments

Comments
 (0)