@wordpress/dataviews 2.0.0 → 2.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/CHANGELOG.md +2 -0
- package/README.md +1 -1
- package/build/index.js.map +1 -1
- package/build/item-actions.js +1 -0
- package/build/item-actions.js.map +1 -1
- package/build/view-list.js +1 -0
- package/build/view-list.js.map +1 -1
- package/build-module/index.js.map +1 -1
- package/build-module/item-actions.js +1 -0
- package/build-module/item-actions.js.map +1 -1
- package/build-module/view-list.js +1 -0
- package/build-module/view-list.js.map +1 -1
- package/build-style/style-rtl.css +7 -9
- package/build-style/style.css +7 -9
- package/build-types/index.d.ts +1 -0
- package/build-types/index.d.ts.map +1 -1
- package/build-types/view-list.d.ts.map +1 -1
- package/package.json +9 -9
- package/src/index.ts +1 -0
- package/src/item-actions.tsx +1 -0
- package/src/style.scss +6 -9
- package/src/view-list.tsx +1 -0
- package/tsconfig.tsbuildinfo +1 -1
package/src/item-actions.tsx
CHANGED
package/src/style.scss
CHANGED
|
@@ -370,8 +370,7 @@
|
|
|
370
370
|
line-height: 16px;
|
|
371
371
|
|
|
372
372
|
&:not(:empty) {
|
|
373
|
-
padding: $grid-unit-15
|
|
374
|
-
padding-top: 0;
|
|
373
|
+
padding: 0 0 $grid-unit-15;
|
|
375
374
|
}
|
|
376
375
|
|
|
377
376
|
.dataviews-view-grid__field {
|
|
@@ -437,6 +436,7 @@
|
|
|
437
436
|
.components-button {
|
|
438
437
|
opacity: 0;
|
|
439
438
|
position: fixed;
|
|
439
|
+
right: 0;
|
|
440
440
|
}
|
|
441
441
|
}
|
|
442
442
|
|
|
@@ -603,11 +603,6 @@
|
|
|
603
603
|
}
|
|
604
604
|
}
|
|
605
605
|
|
|
606
|
-
.dataviews-filters__custom-menu-radio-item-prefix {
|
|
607
|
-
display: block;
|
|
608
|
-
width: 24px;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
606
|
.dataviews-bulk-edit-button.components-button {
|
|
612
607
|
flex-shrink: 0;
|
|
613
608
|
}
|
|
@@ -892,12 +887,14 @@
|
|
|
892
887
|
}
|
|
893
888
|
|
|
894
889
|
.dataviews-bulk-actions {
|
|
895
|
-
position:
|
|
890
|
+
position: sticky;
|
|
896
891
|
display: flex;
|
|
897
892
|
flex-direction: column;
|
|
898
893
|
align-content: center;
|
|
899
894
|
flex-wrap: wrap;
|
|
900
|
-
width:
|
|
895
|
+
width: fit-content;
|
|
896
|
+
margin-left: auto;
|
|
897
|
+
margin-right: auto;
|
|
901
898
|
bottom: $grid-unit-30;
|
|
902
899
|
z-index: z-index(".dataviews-bulk-actions");
|
|
903
900
|
|
package/src/view-list.tsx
CHANGED