blue-react 8.0.0-next.5 → 8.1.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/README.md +13 -13
- package/dist/components/Search.js +1 -1
- package/dist/style.css +50 -9
- package/dist/style.min.css +3 -3
- package/dist/style.scss +1 -1
- package/dist/styles/_grid.scss +11 -2
- package/dist/styles/_search.scss +0 -1
- package/dist/styles/mixins/_sidebar.scss +18 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,19 +11,19 @@ use Blue React.
|
|
|
11
11
|
|
|
12
12
|
## Breaking changes between v7 and v8
|
|
13
13
|
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-
|
|
14
|
+
- Removed deprecated components:
|
|
15
|
+
- Actions (Alternative: ActionMenu)
|
|
16
|
+
- ActionMenuItem (Alternative: MenuItem)
|
|
17
|
+
- FluentBtn (Alternative: button, bzw. a)
|
|
18
|
+
- HeaderActions
|
|
19
|
+
- DropdownMenuItem (Alternative: MenuItem)
|
|
20
|
+
- Stylesheets
|
|
21
|
+
- Renamed all `.blue-app-*` to `.blue-*`
|
|
22
|
+
- Renamed all `.blue-sidebar-*` to `.blue-menu-item-*`
|
|
23
|
+
- Renamed `Grid` to `Layout`
|
|
24
|
+
- `.blue-grid` ➡ `.blue-layout`
|
|
25
|
+
- `Grid.tsx` ➡ `Layout.tsx`
|
|
26
|
+
- Global `window.blueGridRef` ➡ `window.blueLayoutRef`
|
|
27
27
|
|
|
28
28
|
## Developing
|
|
29
29
|
|
|
@@ -117,7 +117,7 @@ function Search(props) {
|
|
|
117
117
|
className: "input-group-btn"
|
|
118
118
|
}, /*#__PURE__*/_react.default.createElement("button", {
|
|
119
119
|
type: "button",
|
|
120
|
-
className: "blue-search-reset-btn btn btn-link
|
|
120
|
+
className: "blue-search-reset-btn btn btn-link",
|
|
121
121
|
onClick: function onClick() {
|
|
122
122
|
var _document$getElementB2;
|
|
123
123
|
|