@wordpress/dataviews 10.1.0 → 10.1.1-next.36001005c.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 +1 -0
- package/build-style/style-rtl.css +12 -12
- package/build-style/style.css +12 -12
- package/build-wp/index.js +81 -79
- package/package.json +15 -15
- package/src/components/dataviews/style.scss +1 -1
- package/src/components/dataviews-bulk-actions/style.scss +1 -1
- package/src/components/dataviews-filters/style.scss +1 -1
- package/src/components/dataviews-pagination/style.scss +2 -2
- package/src/dataviews-layouts/table/style.scss +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
### Enhancements
|
|
8
8
|
|
|
9
|
+
- Consistently use font-weight 499 instead of 500 ([#72473](https://github.com/WordPress/gutenberg/pull/72473)).
|
|
9
10
|
- Dataviews: Use text based buttons for actions instead of text. [#72417](https://github.com/WordPress/gutenberg/pull/72417)
|
|
10
11
|
|
|
11
12
|
## 10.0.0 (2025-10-17)
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
}
|
|
145
145
|
.dataviews-title-field {
|
|
146
146
|
font-size: 13px;
|
|
147
|
-
font-weight:
|
|
147
|
+
font-weight: 499;
|
|
148
148
|
color: #2f2f2f;
|
|
149
149
|
text-overflow: ellipsis;
|
|
150
150
|
white-space: nowrap;
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
|
|
232
232
|
.dataviews-bulk-actions-footer__item-count {
|
|
233
233
|
color: #1e1e1e;
|
|
234
|
-
font-weight:
|
|
234
|
+
font-weight: 499;
|
|
235
235
|
font-size: 11px;
|
|
236
236
|
text-transform: uppercase;
|
|
237
237
|
}
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
|
333
333
|
}
|
|
334
334
|
.dataviews-filters__summary-chip-container .dataviews-filters__summary-chip .dataviews-filters-__summary-filter-text-name {
|
|
335
|
-
font-weight:
|
|
335
|
+
font-weight: 499;
|
|
336
336
|
}
|
|
337
337
|
.dataviews-filters__summary-chip-container .dataviews-filters__summary-chip-remove {
|
|
338
338
|
width: 24px;
|
|
@@ -800,13 +800,13 @@
|
|
|
800
800
|
}
|
|
801
801
|
.dataviews-pagination__page-select {
|
|
802
802
|
font-size: 11px;
|
|
803
|
-
font-weight:
|
|
803
|
+
font-weight: 499;
|
|
804
804
|
text-transform: uppercase;
|
|
805
805
|
}
|
|
806
806
|
@media (min-width: 600px) {
|
|
807
807
|
.dataviews-pagination__page-select .components-select-control__input {
|
|
808
808
|
font-size: 11px !important;
|
|
809
|
-
font-weight:
|
|
809
|
+
font-weight: 499;
|
|
810
810
|
}
|
|
811
811
|
}
|
|
812
812
|
|
|
@@ -1116,7 +1116,7 @@
|
|
|
1116
1116
|
|
|
1117
1117
|
.dataviews-view-grid__group-header {
|
|
1118
1118
|
font-size: 15px;
|
|
1119
|
-
font-weight:
|
|
1119
|
+
font-weight: 499;
|
|
1120
1120
|
color: #1e1e1e;
|
|
1121
1121
|
margin: 0 0 8px 0;
|
|
1122
1122
|
padding: 0 48px;
|
|
@@ -1317,7 +1317,7 @@ div.dataviews-view-list {
|
|
|
1317
1317
|
|
|
1318
1318
|
.dataviews-view-list__group-header {
|
|
1319
1319
|
font-size: 15px;
|
|
1320
|
-
font-weight:
|
|
1320
|
+
font-weight: 499;
|
|
1321
1321
|
color: #1e1e1e;
|
|
1322
1322
|
margin: 0 0 8px 0;
|
|
1323
1323
|
padding: 0 24px;
|
|
@@ -1452,7 +1452,7 @@ div.dataviews-view-list {
|
|
|
1452
1452
|
padding-right: 12px;
|
|
1453
1453
|
font-size: 11px;
|
|
1454
1454
|
text-transform: uppercase;
|
|
1455
|
-
font-weight:
|
|
1455
|
+
font-weight: 499;
|
|
1456
1456
|
}
|
|
1457
1457
|
.dataviews-view-table thead th:has(.dataviews-view-table-header-button):not(:first-child) {
|
|
1458
1458
|
padding-right: 4px;
|
|
@@ -1478,7 +1478,7 @@ div.dataviews-view-list {
|
|
|
1478
1478
|
padding: 4px 8px;
|
|
1479
1479
|
font-size: 11px;
|
|
1480
1480
|
text-transform: uppercase;
|
|
1481
|
-
font-weight:
|
|
1481
|
+
font-weight: 499;
|
|
1482
1482
|
}
|
|
1483
1483
|
.dataviews-view-table .dataviews-view-table-header-button:not(:hover) {
|
|
1484
1484
|
color: #1e1e1e;
|
|
@@ -1566,7 +1566,7 @@ div.dataviews-view-list {
|
|
|
1566
1566
|
}
|
|
1567
1567
|
|
|
1568
1568
|
.dataviews-view-table__group-header-row .dataviews-view-table__group-header-cell {
|
|
1569
|
-
font-weight:
|
|
1569
|
+
font-weight: 499;
|
|
1570
1570
|
padding: 12px 48px;
|
|
1571
1571
|
color: #1e1e1e;
|
|
1572
1572
|
}
|
|
@@ -1702,7 +1702,7 @@ div.dataviews-view-list {
|
|
|
1702
1702
|
|
|
1703
1703
|
.dataviews-view-picker-grid-group__header {
|
|
1704
1704
|
font-size: 15px;
|
|
1705
|
-
font-weight:
|
|
1705
|
+
font-weight: 499;
|
|
1706
1706
|
color: #1e1e1e;
|
|
1707
1707
|
margin: 0 0 8px 0;
|
|
1708
1708
|
padding: 0 48px;
|
|
@@ -1818,7 +1818,7 @@ div.dataviews-view-list {
|
|
|
1818
1818
|
|
|
1819
1819
|
.dataforms-layouts-card__field-header-label {
|
|
1820
1820
|
font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
1821
|
-
font-weight:
|
|
1821
|
+
font-weight: 499;
|
|
1822
1822
|
font-size: 15px;
|
|
1823
1823
|
line-height: 20px;
|
|
1824
1824
|
}
|
package/build-style/style.css
CHANGED
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
}
|
|
145
145
|
.dataviews-title-field {
|
|
146
146
|
font-size: 13px;
|
|
147
|
-
font-weight:
|
|
147
|
+
font-weight: 499;
|
|
148
148
|
color: #2f2f2f;
|
|
149
149
|
text-overflow: ellipsis;
|
|
150
150
|
white-space: nowrap;
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
|
|
232
232
|
.dataviews-bulk-actions-footer__item-count {
|
|
233
233
|
color: #1e1e1e;
|
|
234
|
-
font-weight:
|
|
234
|
+
font-weight: 499;
|
|
235
235
|
font-size: 11px;
|
|
236
236
|
text-transform: uppercase;
|
|
237
237
|
}
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
box-shadow: 0 0 0 var(--wp-admin-border-width-focus) var(--wp-admin-theme-color);
|
|
333
333
|
}
|
|
334
334
|
.dataviews-filters__summary-chip-container .dataviews-filters__summary-chip .dataviews-filters-__summary-filter-text-name {
|
|
335
|
-
font-weight:
|
|
335
|
+
font-weight: 499;
|
|
336
336
|
}
|
|
337
337
|
.dataviews-filters__summary-chip-container .dataviews-filters__summary-chip-remove {
|
|
338
338
|
width: 24px;
|
|
@@ -800,13 +800,13 @@
|
|
|
800
800
|
}
|
|
801
801
|
.dataviews-pagination__page-select {
|
|
802
802
|
font-size: 11px;
|
|
803
|
-
font-weight:
|
|
803
|
+
font-weight: 499;
|
|
804
804
|
text-transform: uppercase;
|
|
805
805
|
}
|
|
806
806
|
@media (min-width: 600px) {
|
|
807
807
|
.dataviews-pagination__page-select .components-select-control__input {
|
|
808
808
|
font-size: 11px !important;
|
|
809
|
-
font-weight:
|
|
809
|
+
font-weight: 499;
|
|
810
810
|
}
|
|
811
811
|
}
|
|
812
812
|
|
|
@@ -1116,7 +1116,7 @@
|
|
|
1116
1116
|
|
|
1117
1117
|
.dataviews-view-grid__group-header {
|
|
1118
1118
|
font-size: 15px;
|
|
1119
|
-
font-weight:
|
|
1119
|
+
font-weight: 499;
|
|
1120
1120
|
color: #1e1e1e;
|
|
1121
1121
|
margin: 0 0 8px 0;
|
|
1122
1122
|
padding: 0 48px;
|
|
@@ -1317,7 +1317,7 @@ div.dataviews-view-list {
|
|
|
1317
1317
|
|
|
1318
1318
|
.dataviews-view-list__group-header {
|
|
1319
1319
|
font-size: 15px;
|
|
1320
|
-
font-weight:
|
|
1320
|
+
font-weight: 499;
|
|
1321
1321
|
color: #1e1e1e;
|
|
1322
1322
|
margin: 0 0 8px 0;
|
|
1323
1323
|
padding: 0 24px;
|
|
@@ -1452,7 +1452,7 @@ div.dataviews-view-list {
|
|
|
1452
1452
|
padding-left: 12px;
|
|
1453
1453
|
font-size: 11px;
|
|
1454
1454
|
text-transform: uppercase;
|
|
1455
|
-
font-weight:
|
|
1455
|
+
font-weight: 499;
|
|
1456
1456
|
}
|
|
1457
1457
|
.dataviews-view-table thead th:has(.dataviews-view-table-header-button):not(:first-child) {
|
|
1458
1458
|
padding-left: 4px;
|
|
@@ -1478,7 +1478,7 @@ div.dataviews-view-list {
|
|
|
1478
1478
|
padding: 4px 8px;
|
|
1479
1479
|
font-size: 11px;
|
|
1480
1480
|
text-transform: uppercase;
|
|
1481
|
-
font-weight:
|
|
1481
|
+
font-weight: 499;
|
|
1482
1482
|
}
|
|
1483
1483
|
.dataviews-view-table .dataviews-view-table-header-button:not(:hover) {
|
|
1484
1484
|
color: #1e1e1e;
|
|
@@ -1566,7 +1566,7 @@ div.dataviews-view-list {
|
|
|
1566
1566
|
}
|
|
1567
1567
|
|
|
1568
1568
|
.dataviews-view-table__group-header-row .dataviews-view-table__group-header-cell {
|
|
1569
|
-
font-weight:
|
|
1569
|
+
font-weight: 499;
|
|
1570
1570
|
padding: 12px 48px;
|
|
1571
1571
|
color: #1e1e1e;
|
|
1572
1572
|
}
|
|
@@ -1702,7 +1702,7 @@ div.dataviews-view-list {
|
|
|
1702
1702
|
|
|
1703
1703
|
.dataviews-view-picker-grid-group__header {
|
|
1704
1704
|
font-size: 15px;
|
|
1705
|
-
font-weight:
|
|
1705
|
+
font-weight: 499;
|
|
1706
1706
|
color: #1e1e1e;
|
|
1707
1707
|
margin: 0 0 8px 0;
|
|
1708
1708
|
padding: 0 48px;
|
|
@@ -1818,7 +1818,7 @@ div.dataviews-view-list {
|
|
|
1818
1818
|
|
|
1819
1819
|
.dataforms-layouts-card__field-header-label {
|
|
1820
1820
|
font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
|
1821
|
-
font-weight:
|
|
1821
|
+
font-weight: 499;
|
|
1822
1822
|
font-size: 15px;
|
|
1823
1823
|
line-height: 20px;
|
|
1824
1824
|
}
|