@wordpress/editor 14.38.0 → 14.39.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/build/components/document-bar/useEditedSectionDetails.cjs +0 -3
- package/build/components/document-bar/useEditedSectionDetails.cjs.map +2 -2
- package/build/components/editor-interface/index.cjs +33 -9
- package/build/components/editor-interface/index.cjs.map +2 -2
- package/build/components/header/header-skeleton.cjs +100 -0
- package/build/components/header/header-skeleton.cjs.map +7 -0
- package/build/components/header/index.cjs +63 -106
- package/build/components/header/index.cjs.map +3 -3
- package/build/components/media/index.cjs +44 -0
- package/build/components/media/index.cjs.map +7 -0
- package/build/components/media/metadata-panel.cjs +96 -0
- package/build/components/media/metadata-panel.cjs.map +7 -0
- package/build/components/media/preview.cjs +39 -0
- package/build/components/media/preview.cjs.map +7 -0
- package/build/components/more-menu/index.cjs +3 -2
- package/build/components/more-menu/index.cjs.map +2 -2
- package/build/components/post-card-panel/index.cjs +33 -4
- package/build/components/post-card-panel/index.cjs.map +3 -3
- package/build/components/post-content-information/index.cjs +9 -0
- package/build/components/post-content-information/index.cjs.map +2 -2
- package/build/components/post-last-edited-panel/index.cjs +5 -6
- package/build/components/post-last-edited-panel/index.cjs.map +2 -2
- package/build/components/post-last-revision/index.cjs +5 -7
- package/build/components/post-last-revision/index.cjs.map +2 -2
- package/build/components/post-publish-button/label.cjs +6 -1
- package/build/components/post-publish-button/label.cjs.map +2 -2
- package/build/components/post-publish-button/post-publish-button-or-toggle.cjs +8 -3
- package/build/components/post-publish-button/post-publish-button-or-toggle.cjs.map +2 -2
- package/build/components/post-revisions-preview/index.cjs +44 -0
- package/build/components/post-revisions-preview/index.cjs.map +7 -0
- package/build/components/post-revisions-preview/revisions-canvas.cjs +82 -0
- package/build/components/post-revisions-preview/revisions-canvas.cjs.map +7 -0
- package/build/components/post-revisions-preview/revisions-header.cjs +119 -0
- package/build/components/post-revisions-preview/revisions-header.cjs.map +7 -0
- package/build/components/post-revisions-preview/revisions-slider.cjs +110 -0
- package/build/components/post-revisions-preview/revisions-slider.cjs.map +7 -0
- package/build/components/post-saved-state/index.cjs +8 -2
- package/build/components/post-saved-state/index.cjs.map +2 -2
- package/build/components/post-title/index.cjs +5 -4
- package/build/components/post-title/index.cjs.map +2 -2
- package/build/components/provider/index.cjs +19 -0
- package/build/components/provider/index.cjs.map +3 -3
- package/build/components/provider/use-block-editor-settings.cjs +2 -1
- package/build/components/provider/use-block-editor-settings.cjs.map +2 -2
- package/build/components/revision-author-panel/index.cjs +59 -0
- package/build/components/revision-author-panel/index.cjs.map +7 -0
- package/build/components/revision-created-panel/index.cjs +47 -0
- package/build/components/revision-created-panel/index.cjs.map +7 -0
- package/build/components/sidebar/header.cjs +27 -12
- package/build/components/sidebar/header.cjs.map +3 -3
- package/build/components/sidebar/index.cjs +36 -15
- package/build/components/sidebar/index.cjs.map +3 -3
- package/build/components/sidebar/post-summary.cjs +44 -19
- package/build/components/sidebar/post-summary.cjs.map +3 -3
- package/build/components/start-page-options/index.cjs +1 -1
- package/build/components/start-page-options/index.cjs.map +2 -2
- package/build/dataviews/store/private-actions.cjs +47 -26
- package/build/dataviews/store/private-actions.cjs.map +3 -3
- package/build/store/constants.cjs +3 -0
- package/build/store/constants.cjs.map +2 -2
- package/build/store/private-actions.cjs +40 -0
- package/build/store/private-actions.cjs.map +2 -2
- package/build/store/private-selectors.cjs +33 -2
- package/build/store/private-selectors.cjs.map +2 -2
- package/build/store/reducer.cjs +10 -0
- package/build/store/reducer.cjs.map +2 -2
- package/build/store/selectors.cjs +3 -0
- package/build/store/selectors.cjs.map +2 -2
- package/build/store/utils/notice-builder.cjs +4 -0
- package/build/store/utils/notice-builder.cjs.map +2 -2
- package/build-module/components/document-bar/useEditedSectionDetails.mjs +0 -3
- package/build-module/components/document-bar/useEditedSectionDetails.mjs.map +2 -2
- package/build-module/components/editor-interface/index.mjs +33 -9
- package/build-module/components/editor-interface/index.mjs.map +2 -2
- package/build-module/components/header/header-skeleton.mjs +69 -0
- package/build-module/components/header/header-skeleton.mjs.map +7 -0
- package/build-module/components/header/index.mjs +65 -107
- package/build-module/components/header/index.mjs.map +2 -2
- package/build-module/components/media/index.mjs +8 -0
- package/build-module/components/media/index.mjs.map +7 -0
- package/build-module/components/media/metadata-panel.mjs +65 -0
- package/build-module/components/media/metadata-panel.mjs.map +7 -0
- package/build-module/components/media/preview.mjs +21 -0
- package/build-module/components/media/preview.mjs.map +7 -0
- package/build-module/components/more-menu/index.mjs +3 -2
- package/build-module/components/more-menu/index.mjs.map +2 -2
- package/build-module/components/post-card-panel/index.mjs +35 -5
- package/build-module/components/post-card-panel/index.mjs.map +3 -3
- package/build-module/components/post-content-information/index.mjs +9 -0
- package/build-module/components/post-content-information/index.mjs.map +2 -2
- package/build-module/components/post-last-edited-panel/index.mjs +5 -6
- package/build-module/components/post-last-edited-panel/index.mjs.map +2 -2
- package/build-module/components/post-last-revision/index.mjs +6 -8
- package/build-module/components/post-last-revision/index.mjs.map +2 -2
- package/build-module/components/post-publish-button/label.mjs +6 -1
- package/build-module/components/post-publish-button/label.mjs.map +2 -2
- package/build-module/components/post-publish-button/post-publish-button-or-toggle.mjs +8 -3
- package/build-module/components/post-publish-button/post-publish-button-or-toggle.mjs.map +2 -2
- package/build-module/components/post-revisions-preview/index.mjs +8 -0
- package/build-module/components/post-revisions-preview/index.mjs.map +7 -0
- package/build-module/components/post-revisions-preview/revisions-canvas.mjs +54 -0
- package/build-module/components/post-revisions-preview/revisions-canvas.mjs.map +7 -0
- package/build-module/components/post-revisions-preview/revisions-header.mjs +92 -0
- package/build-module/components/post-revisions-preview/revisions-header.mjs.map +7 -0
- package/build-module/components/post-revisions-preview/revisions-slider.mjs +89 -0
- package/build-module/components/post-revisions-preview/revisions-slider.mjs.map +7 -0
- package/build-module/components/post-saved-state/index.mjs +8 -2
- package/build-module/components/post-saved-state/index.mjs.map +2 -2
- package/build-module/components/post-title/index.mjs +5 -4
- package/build-module/components/post-title/index.mjs.map +2 -2
- package/build-module/components/provider/index.mjs +19 -0
- package/build-module/components/provider/index.mjs.map +2 -2
- package/build-module/components/provider/use-block-editor-settings.mjs +2 -1
- package/build-module/components/provider/use-block-editor-settings.mjs.map +2 -2
- package/build-module/components/revision-author-panel/index.mjs +28 -0
- package/build-module/components/revision-author-panel/index.mjs.map +7 -0
- package/build-module/components/revision-created-panel/index.mjs +26 -0
- package/build-module/components/revision-created-panel/index.mjs.map +7 -0
- package/build-module/components/sidebar/header.mjs +22 -7
- package/build-module/components/sidebar/header.mjs.map +2 -2
- package/build-module/components/sidebar/index.mjs +38 -16
- package/build-module/components/sidebar/index.mjs.map +2 -2
- package/build-module/components/sidebar/post-summary.mjs +48 -20
- package/build-module/components/sidebar/post-summary.mjs.map +2 -2
- package/build-module/components/start-page-options/index.mjs +2 -1
- package/build-module/components/start-page-options/index.mjs.map +2 -2
- package/build-module/dataviews/store/private-actions.mjs +59 -27
- package/build-module/dataviews/store/private-actions.mjs.map +2 -2
- package/build-module/store/constants.mjs +2 -0
- package/build-module/store/constants.mjs.map +2 -2
- package/build-module/store/private-actions.mjs +38 -0
- package/build-module/store/private-actions.mjs.map +2 -2
- package/build-module/store/private-selectors.mjs +29 -1
- package/build-module/store/private-selectors.mjs.map +2 -2
- package/build-module/store/reducer.mjs +9 -0
- package/build-module/store/reducer.mjs.map +2 -2
- package/build-module/store/selectors.mjs +4 -0
- package/build-module/store/selectors.mjs.map +2 -2
- package/build-module/store/utils/notice-builder.mjs +4 -0
- package/build-module/store/utils/notice-builder.mjs.map +2 -2
- package/build-style/style-rtl.css +182 -16
- package/build-style/style.css +182 -16
- package/build-types/components/document-bar/useEditedSectionDetails.d.ts.map +1 -1
- package/build-types/components/editor-interface/index.d.ts.map +1 -1
- package/build-types/components/header/header-skeleton.d.ts +17 -0
- package/build-types/components/header/header-skeleton.d.ts.map +1 -0
- package/build-types/components/header/index.d.ts.map +1 -1
- package/build-types/components/media/index.d.ts +3 -0
- package/build-types/components/media/index.d.ts.map +1 -0
- package/build-types/components/media/metadata-panel.d.ts +12 -0
- package/build-types/components/media/metadata-panel.d.ts.map +1 -0
- package/build-types/components/media/preview.d.ts +9 -0
- package/build-types/components/media/preview.d.ts.map +1 -0
- package/build-types/components/more-menu/index.d.ts +3 -1
- package/build-types/components/more-menu/index.d.ts.map +1 -1
- package/build-types/components/post-card-panel/index.d.ts.map +1 -1
- package/build-types/components/post-content-information/index.d.ts.map +1 -1
- package/build-types/components/post-last-edited-panel/index.d.ts.map +1 -1
- package/build-types/components/post-last-revision/index.d.ts.map +1 -1
- package/build-types/components/post-publish-button/label.d.ts.map +1 -1
- package/build-types/components/post-publish-button/post-publish-button-or-toggle.d.ts.map +1 -1
- package/build-types/components/post-revisions-preview/index.d.ts +3 -0
- package/build-types/components/post-revisions-preview/index.d.ts.map +1 -0
- package/build-types/components/post-revisions-preview/revisions-canvas.d.ts +7 -0
- package/build-types/components/post-revisions-preview/revisions-canvas.d.ts.map +1 -0
- package/build-types/components/post-revisions-preview/revisions-header.d.ts +8 -0
- package/build-types/components/post-revisions-preview/revisions-header.d.ts.map +1 -0
- package/build-types/components/post-revisions-preview/revisions-slider.d.ts +8 -0
- package/build-types/components/post-revisions-preview/revisions-slider.d.ts.map +1 -0
- package/build-types/components/post-saved-state/index.d.ts.map +1 -1
- package/build-types/components/provider/index.d.ts.map +1 -1
- package/build-types/components/provider/use-block-editor-settings.d.ts.map +1 -1
- package/build-types/components/revision-author-panel/index.d.ts +2 -0
- package/build-types/components/revision-author-panel/index.d.ts.map +1 -0
- package/build-types/components/revision-created-panel/index.d.ts +2 -0
- package/build-types/components/revision-created-panel/index.d.ts.map +1 -0
- package/build-types/components/sidebar/index.d.ts.map +1 -1
- package/build-types/components/sidebar/post-summary.d.ts.map +1 -1
- package/build-types/components/start-page-options/index.d.ts.map +1 -1
- package/build-types/dataviews/store/private-actions.d.ts +1 -0
- package/build-types/dataviews/store/private-actions.d.ts.map +1 -1
- package/build-types/store/constants.d.ts +1 -0
- package/build-types/store/constants.d.ts.map +1 -1
- package/build-types/store/private-actions.d.ts +13 -0
- package/build-types/store/private-actions.d.ts.map +1 -1
- package/build-types/store/private-selectors.d.ts +25 -0
- package/build-types/store/private-selectors.d.ts.map +1 -1
- package/build-types/store/reducer.d.ts +11 -0
- package/build-types/store/reducer.d.ts.map +1 -1
- package/build-types/store/selectors.d.ts.map +1 -1
- package/build-types/store/utils/notice-builder.d.ts.map +1 -1
- package/package.json +42 -40
- package/src/components/document-bar/useEditedSectionDetails.js +0 -5
- package/src/components/editor-interface/index.js +39 -9
- package/src/components/header/header-skeleton.js +90 -0
- package/src/components/header/index.js +69 -102
- package/src/components/header/style.scss +4 -0
- package/src/components/media/index.js +2 -0
- package/src/components/media/metadata-panel.js +77 -0
- package/src/components/media/preview.js +35 -0
- package/src/components/more-menu/index.js +2 -1
- package/src/components/post-card-panel/index.js +43 -7
- package/src/components/post-content-information/index.js +11 -0
- package/src/components/post-last-edited-panel/index.js +8 -9
- package/src/components/post-last-revision/index.js +7 -8
- package/src/components/post-publish-button/label.js +9 -0
- package/src/components/post-publish-button/post-publish-button-or-toggle.js +13 -5
- package/src/components/post-revisions-preview/index.js +2 -0
- package/src/components/post-revisions-preview/revisions-canvas.js +73 -0
- package/src/components/post-revisions-preview/revisions-header.js +108 -0
- package/src/components/post-revisions-preview/revisions-slider.js +123 -0
- package/src/components/post-revisions-preview/style.scss +22 -0
- package/src/components/post-saved-state/index.js +8 -0
- package/src/components/post-title/index.js +4 -3
- package/src/components/provider/index.js +26 -0
- package/src/components/provider/use-block-editor-settings.js +2 -3
- package/src/components/revision-author-panel/index.js +36 -0
- package/src/components/revision-created-panel/index.js +36 -0
- package/src/components/sidebar/header.js +35 -14
- package/src/components/sidebar/index.js +40 -13
- package/src/components/sidebar/post-summary.js +45 -11
- package/src/components/sidebar/style.scss +7 -0
- package/src/components/start-page-options/index.js +2 -0
- package/src/dataviews/store/private-actions.ts +79 -33
- package/src/store/constants.ts +1 -0
- package/src/store/private-actions.js +70 -0
- package/src/store/private-selectors.js +54 -0
- package/src/store/reducer.js +17 -0
- package/src/store/selectors.js +6 -0
- package/src/store/test/selectors.js +7 -0
- package/src/store/utils/notice-builder.js +9 -0
- package/src/style.scss +2 -0
|
@@ -1479,15 +1479,15 @@ button.font-library__upload-area {
|
|
|
1479
1479
|
* Autogenerated by ⛋ Terrazzo. DO NOT EDIT!
|
|
1480
1480
|
* ------------------------------------------- */
|
|
1481
1481
|
:root {
|
|
1482
|
-
--wpds-border-radius-
|
|
1483
|
-
--wpds-border-radius-
|
|
1484
|
-
--wpds-border-radius-
|
|
1485
|
-
--wpds-border-radius-
|
|
1486
|
-
--wpds-border-width-
|
|
1487
|
-
--wpds-border-width-
|
|
1488
|
-
--wpds-border-width-
|
|
1489
|
-
--wpds-border-width-
|
|
1490
|
-
--wpds-border-width-
|
|
1482
|
+
--wpds-border-radius-lg: 8px; /* Large radius */
|
|
1483
|
+
--wpds-border-radius-md: 4px; /* Medium radius */
|
|
1484
|
+
--wpds-border-radius-sm: 2px; /* Small radius */
|
|
1485
|
+
--wpds-border-radius-xs: 1px; /* Extra small radius */
|
|
1486
|
+
--wpds-border-width-focus: 2px; /* Border width for focus ring */
|
|
1487
|
+
--wpds-border-width-lg: 8px; /* Large width */
|
|
1488
|
+
--wpds-border-width-md: 4px; /* Medium width */
|
|
1489
|
+
--wpds-border-width-sm: 2px; /* Small width */
|
|
1490
|
+
--wpds-border-width-xs: 1px; /* Extra small width */
|
|
1491
1491
|
--wpds-color-bg-interactive-brand-strong: #3858e9; /* Background color for interactive elements with brand tone and strong emphasis. */
|
|
1492
1492
|
--wpds-color-bg-interactive-brand-strong-active: #2e49d9; /* Background color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
|
|
1493
1493
|
--wpds-color-bg-interactive-brand-weak: #00000000; /* Background color for interactive elements with brand tone and weak emphasis. */
|
|
@@ -1662,7 +1662,7 @@ button.font-library__upload-area {
|
|
|
1662
1662
|
|
|
1663
1663
|
@media (min-resolution: 192dpi) {
|
|
1664
1664
|
:root {
|
|
1665
|
-
--wpds-border-width-
|
|
1665
|
+
--wpds-border-width-focus: 1.5px; /* Border width for focus ring */
|
|
1666
1666
|
}
|
|
1667
1667
|
}
|
|
1668
1668
|
/**
|
|
@@ -1880,9 +1880,6 @@ button.font-library__upload-area {
|
|
|
1880
1880
|
|
|
1881
1881
|
.dataviews-bulk-actions-footer__item-count {
|
|
1882
1882
|
color: #1e1e1e;
|
|
1883
|
-
font-weight: 499;
|
|
1884
|
-
font-size: 11px;
|
|
1885
|
-
text-transform: uppercase;
|
|
1886
1883
|
}
|
|
1887
1884
|
|
|
1888
1885
|
.dataviews-bulk-actions-footer__container {
|
|
@@ -3204,7 +3201,7 @@ div.dataviews-view-list {
|
|
|
3204
3201
|
background-color: color-mix(in srgb, rgb(var(--wp-admin-theme-color--rgb)) 4%, #fff);
|
|
3205
3202
|
}
|
|
3206
3203
|
|
|
3207
|
-
.dataviews-view-table
|
|
3204
|
+
.dataviews-view-table tr:focus-within .dataviews-item-actions .components-button:not(.dataviews-all-actions-button), .dataviews-view-table tr.is-hovered .dataviews-item-actions .components-button:not(.dataviews-all-actions-button), .dataviews-view-table tr:hover .dataviews-item-actions .components-button:not(.dataviews-all-actions-button) {
|
|
3208
3205
|
opacity: 1;
|
|
3209
3206
|
}
|
|
3210
3207
|
|
|
@@ -3339,6 +3336,8 @@ div.dataviews-view-list {
|
|
|
3339
3336
|
}
|
|
3340
3337
|
.dataviews-column-primary__media {
|
|
3341
3338
|
max-width: 60px;
|
|
3339
|
+
min-width: 32px;
|
|
3340
|
+
min-height: 32px;
|
|
3342
3341
|
overflow: hidden;
|
|
3343
3342
|
position: relative;
|
|
3344
3343
|
flex-shrink: 0;
|
|
@@ -3347,8 +3346,8 @@ div.dataviews-view-list {
|
|
|
3347
3346
|
}
|
|
3348
3347
|
|
|
3349
3348
|
.dataviews-column-primary__media img {
|
|
3350
|
-
width:
|
|
3351
|
-
height:
|
|
3349
|
+
width: 32px;
|
|
3350
|
+
height: 32px;
|
|
3352
3351
|
object-fit: cover;
|
|
3353
3352
|
}
|
|
3354
3353
|
|
|
@@ -3963,6 +3962,146 @@ div.dataviews-view-list {
|
|
|
3963
3962
|
line-height: 20px;
|
|
3964
3963
|
}
|
|
3965
3964
|
|
|
3965
|
+
/**
|
|
3966
|
+
* Colors
|
|
3967
|
+
*/
|
|
3968
|
+
/**
|
|
3969
|
+
* SCSS Variables.
|
|
3970
|
+
*
|
|
3971
|
+
* Please use variables from this sheet to ensure consistency across the UI.
|
|
3972
|
+
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
|
|
3973
|
+
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
|
|
3974
|
+
*/
|
|
3975
|
+
/**
|
|
3976
|
+
* Fonts & basic variables.
|
|
3977
|
+
*/
|
|
3978
|
+
/**
|
|
3979
|
+
* Typography
|
|
3980
|
+
*/
|
|
3981
|
+
/**
|
|
3982
|
+
* Grid System.
|
|
3983
|
+
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
|
3984
|
+
*/
|
|
3985
|
+
/**
|
|
3986
|
+
* Radius scale.
|
|
3987
|
+
*/
|
|
3988
|
+
/**
|
|
3989
|
+
* Elevation scale.
|
|
3990
|
+
*/
|
|
3991
|
+
/**
|
|
3992
|
+
* Dimensions.
|
|
3993
|
+
*/
|
|
3994
|
+
/**
|
|
3995
|
+
* Mobile specific styles
|
|
3996
|
+
*/
|
|
3997
|
+
/**
|
|
3998
|
+
* Editor styles.
|
|
3999
|
+
*/
|
|
4000
|
+
/**
|
|
4001
|
+
* Block & Editor UI.
|
|
4002
|
+
*/
|
|
4003
|
+
/**
|
|
4004
|
+
* Block paddings.
|
|
4005
|
+
*/
|
|
4006
|
+
/**
|
|
4007
|
+
* React Native specific.
|
|
4008
|
+
* These variables do not appear to be used anywhere else.
|
|
4009
|
+
*/
|
|
4010
|
+
.media-editor-preview {
|
|
4011
|
+
box-sizing: border-box;
|
|
4012
|
+
display: flex;
|
|
4013
|
+
justify-content: center;
|
|
4014
|
+
align-items: center;
|
|
4015
|
+
min-height: 100%;
|
|
4016
|
+
padding: 32px;
|
|
4017
|
+
position: relative;
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
.media-editor-preview__spinner {
|
|
4021
|
+
position: absolute;
|
|
4022
|
+
top: 50%;
|
|
4023
|
+
right: 50%;
|
|
4024
|
+
transform: translate(50%, -50%);
|
|
4025
|
+
}
|
|
4026
|
+
|
|
4027
|
+
.media-editor-preview--loading {
|
|
4028
|
+
width: 100%;
|
|
4029
|
+
height: 100%;
|
|
4030
|
+
}
|
|
4031
|
+
|
|
4032
|
+
.media-editor-preview--image img {
|
|
4033
|
+
max-width: 100%;
|
|
4034
|
+
max-height: 100%;
|
|
4035
|
+
object-fit: contain;
|
|
4036
|
+
width: auto;
|
|
4037
|
+
height: auto;
|
|
4038
|
+
opacity: 0;
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
@keyframes __wp-base-styles-fade-in {
|
|
4042
|
+
from {
|
|
4043
|
+
opacity: 0;
|
|
4044
|
+
}
|
|
4045
|
+
to {
|
|
4046
|
+
opacity: 1;
|
|
4047
|
+
}
|
|
4048
|
+
}
|
|
4049
|
+
@media not (prefers-reduced-motion) {
|
|
4050
|
+
.media-editor-preview--image img.loaded {
|
|
4051
|
+
animation: __wp-base-styles-fade-in 0.08s linear 0s;
|
|
4052
|
+
animation-fill-mode: forwards;
|
|
4053
|
+
}
|
|
4054
|
+
}
|
|
4055
|
+
.media-editor-preview--video video {
|
|
4056
|
+
max-width: 100%;
|
|
4057
|
+
max-height: 100%;
|
|
4058
|
+
object-fit: contain;
|
|
4059
|
+
width: auto;
|
|
4060
|
+
height: auto;
|
|
4061
|
+
}
|
|
4062
|
+
|
|
4063
|
+
.media-editor-preview--audio audio {
|
|
4064
|
+
max-width: 100%;
|
|
4065
|
+
}
|
|
4066
|
+
|
|
4067
|
+
.media-editor-preview--file {
|
|
4068
|
+
text-align: center;
|
|
4069
|
+
}
|
|
4070
|
+
|
|
4071
|
+
.media-editor-preview__file-info {
|
|
4072
|
+
background: #f0f0f0;
|
|
4073
|
+
padding: 24px;
|
|
4074
|
+
border-radius: 2px;
|
|
4075
|
+
}
|
|
4076
|
+
|
|
4077
|
+
.media-editor-preview__file-name {
|
|
4078
|
+
font-weight: 600;
|
|
4079
|
+
margin-bottom: 8px;
|
|
4080
|
+
}
|
|
4081
|
+
|
|
4082
|
+
.media-editor-preview__mime-type {
|
|
4083
|
+
color: #757575;
|
|
4084
|
+
font-size: 0.9em;
|
|
4085
|
+
margin-bottom: 16px;
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
.media-editor-preview__download-link {
|
|
4089
|
+
display: inline-block;
|
|
4090
|
+
margin-top: 8px;
|
|
4091
|
+
}
|
|
4092
|
+
|
|
4093
|
+
.media-editor-preview--error, .media-editor-preview--empty {
|
|
4094
|
+
color: #757575;
|
|
4095
|
+
text-align: center;
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
.media-editor-preview__url {
|
|
4099
|
+
font-size: 0.9em;
|
|
4100
|
+
color: #949494;
|
|
4101
|
+
word-break: break-all;
|
|
4102
|
+
margin-top: 8px;
|
|
4103
|
+
}
|
|
4104
|
+
|
|
3966
4105
|
.editor-autocompleters__user .editor-autocompleters__no-avatar::before {
|
|
3967
4106
|
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword -- dashicons don't need a generic family keyword. */
|
|
3968
4107
|
font: normal 20px/1 dashicons;
|
|
@@ -4847,6 +4986,9 @@ div.dataviews-view-list {
|
|
|
4847
4986
|
margin-inline-end: 8px;
|
|
4848
4987
|
}
|
|
4849
4988
|
}
|
|
4989
|
+
.editor-revisions-header .editor-header__center {
|
|
4990
|
+
clip-path: none;
|
|
4991
|
+
}
|
|
4850
4992
|
|
|
4851
4993
|
/**
|
|
4852
4994
|
* Buttons on the right side
|
|
@@ -5695,6 +5837,25 @@ div.dataviews-view-list {
|
|
|
5695
5837
|
transform: translateX(0%);
|
|
5696
5838
|
}
|
|
5697
5839
|
}
|
|
5840
|
+
.editor-revisions-header__slider {
|
|
5841
|
+
width: 100%;
|
|
5842
|
+
}
|
|
5843
|
+
.editor-revisions-header__slider .components-range-control__tooltip {
|
|
5844
|
+
white-space: nowrap;
|
|
5845
|
+
}
|
|
5846
|
+
|
|
5847
|
+
.editor-revisions-header__no-revisions {
|
|
5848
|
+
color: #757575;
|
|
5849
|
+
font-size: 13px;
|
|
5850
|
+
}
|
|
5851
|
+
|
|
5852
|
+
.editor-revisions-canvas__loading {
|
|
5853
|
+
display: flex;
|
|
5854
|
+
align-items: center;
|
|
5855
|
+
justify-content: center;
|
|
5856
|
+
height: 100%;
|
|
5857
|
+
}
|
|
5858
|
+
|
|
5698
5859
|
.editor-post-saved-state {
|
|
5699
5860
|
display: flex;
|
|
5700
5861
|
align-items: center;
|
|
@@ -6163,6 +6324,11 @@ textarea.editor-post-text-editor::placeholder {
|
|
|
6163
6324
|
.editor-sidebar *::after {
|
|
6164
6325
|
box-sizing: inherit;
|
|
6165
6326
|
}
|
|
6327
|
+
.editor-sidebar__revisions-block-message {
|
|
6328
|
+
padding: 16px;
|
|
6329
|
+
color: #757575;
|
|
6330
|
+
font-size: 13px;
|
|
6331
|
+
}
|
|
6166
6332
|
|
|
6167
6333
|
.editor-site-discussion-dropdown__content .components-popover__content {
|
|
6168
6334
|
min-width: 320px;
|
package/build-style/style.css
CHANGED
|
@@ -1482,15 +1482,15 @@ button.font-library__upload-area {
|
|
|
1482
1482
|
* Autogenerated by ⛋ Terrazzo. DO NOT EDIT!
|
|
1483
1483
|
* ------------------------------------------- */
|
|
1484
1484
|
:root {
|
|
1485
|
-
--wpds-border-radius-
|
|
1486
|
-
--wpds-border-radius-
|
|
1487
|
-
--wpds-border-radius-
|
|
1488
|
-
--wpds-border-radius-
|
|
1489
|
-
--wpds-border-width-
|
|
1490
|
-
--wpds-border-width-
|
|
1491
|
-
--wpds-border-width-
|
|
1492
|
-
--wpds-border-width-
|
|
1493
|
-
--wpds-border-width-
|
|
1485
|
+
--wpds-border-radius-lg: 8px; /* Large radius */
|
|
1486
|
+
--wpds-border-radius-md: 4px; /* Medium radius */
|
|
1487
|
+
--wpds-border-radius-sm: 2px; /* Small radius */
|
|
1488
|
+
--wpds-border-radius-xs: 1px; /* Extra small radius */
|
|
1489
|
+
--wpds-border-width-focus: 2px; /* Border width for focus ring */
|
|
1490
|
+
--wpds-border-width-lg: 8px; /* Large width */
|
|
1491
|
+
--wpds-border-width-md: 4px; /* Medium width */
|
|
1492
|
+
--wpds-border-width-sm: 2px; /* Small width */
|
|
1493
|
+
--wpds-border-width-xs: 1px; /* Extra small width */
|
|
1494
1494
|
--wpds-color-bg-interactive-brand-strong: #3858e9; /* Background color for interactive elements with brand tone and strong emphasis. */
|
|
1495
1495
|
--wpds-color-bg-interactive-brand-strong-active: #2e49d9; /* Background color for interactive elements with brand tone and strong emphasis that are hovered, focused, or active. */
|
|
1496
1496
|
--wpds-color-bg-interactive-brand-weak: #00000000; /* Background color for interactive elements with brand tone and weak emphasis. */
|
|
@@ -1665,7 +1665,7 @@ button.font-library__upload-area {
|
|
|
1665
1665
|
|
|
1666
1666
|
@media (min-resolution: 192dpi) {
|
|
1667
1667
|
:root {
|
|
1668
|
-
--wpds-border-width-
|
|
1668
|
+
--wpds-border-width-focus: 1.5px; /* Border width for focus ring */
|
|
1669
1669
|
}
|
|
1670
1670
|
}
|
|
1671
1671
|
/**
|
|
@@ -1883,9 +1883,6 @@ button.font-library__upload-area {
|
|
|
1883
1883
|
|
|
1884
1884
|
.dataviews-bulk-actions-footer__item-count {
|
|
1885
1885
|
color: #1e1e1e;
|
|
1886
|
-
font-weight: 499;
|
|
1887
|
-
font-size: 11px;
|
|
1888
|
-
text-transform: uppercase;
|
|
1889
1886
|
}
|
|
1890
1887
|
|
|
1891
1888
|
.dataviews-bulk-actions-footer__container {
|
|
@@ -3207,7 +3204,7 @@ div.dataviews-view-list {
|
|
|
3207
3204
|
background-color: color-mix(in srgb, rgb(var(--wp-admin-theme-color--rgb)) 4%, #fff);
|
|
3208
3205
|
}
|
|
3209
3206
|
|
|
3210
|
-
.dataviews-view-table
|
|
3207
|
+
.dataviews-view-table tr:focus-within .dataviews-item-actions .components-button:not(.dataviews-all-actions-button), .dataviews-view-table tr.is-hovered .dataviews-item-actions .components-button:not(.dataviews-all-actions-button), .dataviews-view-table tr:hover .dataviews-item-actions .components-button:not(.dataviews-all-actions-button) {
|
|
3211
3208
|
opacity: 1;
|
|
3212
3209
|
}
|
|
3213
3210
|
|
|
@@ -3342,6 +3339,8 @@ div.dataviews-view-list {
|
|
|
3342
3339
|
}
|
|
3343
3340
|
.dataviews-column-primary__media {
|
|
3344
3341
|
max-width: 60px;
|
|
3342
|
+
min-width: 32px;
|
|
3343
|
+
min-height: 32px;
|
|
3345
3344
|
overflow: hidden;
|
|
3346
3345
|
position: relative;
|
|
3347
3346
|
flex-shrink: 0;
|
|
@@ -3350,8 +3349,8 @@ div.dataviews-view-list {
|
|
|
3350
3349
|
}
|
|
3351
3350
|
|
|
3352
3351
|
.dataviews-column-primary__media img {
|
|
3353
|
-
width:
|
|
3354
|
-
height:
|
|
3352
|
+
width: 32px;
|
|
3353
|
+
height: 32px;
|
|
3355
3354
|
object-fit: cover;
|
|
3356
3355
|
}
|
|
3357
3356
|
|
|
@@ -3966,6 +3965,146 @@ div.dataviews-view-list {
|
|
|
3966
3965
|
line-height: 20px;
|
|
3967
3966
|
}
|
|
3968
3967
|
|
|
3968
|
+
/**
|
|
3969
|
+
* Colors
|
|
3970
|
+
*/
|
|
3971
|
+
/**
|
|
3972
|
+
* SCSS Variables.
|
|
3973
|
+
*
|
|
3974
|
+
* Please use variables from this sheet to ensure consistency across the UI.
|
|
3975
|
+
* Don't add to this sheet unless you're pretty sure the value will be reused in many places.
|
|
3976
|
+
* For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
|
|
3977
|
+
*/
|
|
3978
|
+
/**
|
|
3979
|
+
* Fonts & basic variables.
|
|
3980
|
+
*/
|
|
3981
|
+
/**
|
|
3982
|
+
* Typography
|
|
3983
|
+
*/
|
|
3984
|
+
/**
|
|
3985
|
+
* Grid System.
|
|
3986
|
+
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
|
3987
|
+
*/
|
|
3988
|
+
/**
|
|
3989
|
+
* Radius scale.
|
|
3990
|
+
*/
|
|
3991
|
+
/**
|
|
3992
|
+
* Elevation scale.
|
|
3993
|
+
*/
|
|
3994
|
+
/**
|
|
3995
|
+
* Dimensions.
|
|
3996
|
+
*/
|
|
3997
|
+
/**
|
|
3998
|
+
* Mobile specific styles
|
|
3999
|
+
*/
|
|
4000
|
+
/**
|
|
4001
|
+
* Editor styles.
|
|
4002
|
+
*/
|
|
4003
|
+
/**
|
|
4004
|
+
* Block & Editor UI.
|
|
4005
|
+
*/
|
|
4006
|
+
/**
|
|
4007
|
+
* Block paddings.
|
|
4008
|
+
*/
|
|
4009
|
+
/**
|
|
4010
|
+
* React Native specific.
|
|
4011
|
+
* These variables do not appear to be used anywhere else.
|
|
4012
|
+
*/
|
|
4013
|
+
.media-editor-preview {
|
|
4014
|
+
box-sizing: border-box;
|
|
4015
|
+
display: flex;
|
|
4016
|
+
justify-content: center;
|
|
4017
|
+
align-items: center;
|
|
4018
|
+
min-height: 100%;
|
|
4019
|
+
padding: 32px;
|
|
4020
|
+
position: relative;
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
.media-editor-preview__spinner {
|
|
4024
|
+
position: absolute;
|
|
4025
|
+
top: 50%;
|
|
4026
|
+
left: 50%;
|
|
4027
|
+
transform: translate(-50%, -50%);
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
.media-editor-preview--loading {
|
|
4031
|
+
width: 100%;
|
|
4032
|
+
height: 100%;
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
.media-editor-preview--image img {
|
|
4036
|
+
max-width: 100%;
|
|
4037
|
+
max-height: 100%;
|
|
4038
|
+
object-fit: contain;
|
|
4039
|
+
width: auto;
|
|
4040
|
+
height: auto;
|
|
4041
|
+
opacity: 0;
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
@keyframes __wp-base-styles-fade-in {
|
|
4045
|
+
from {
|
|
4046
|
+
opacity: 0;
|
|
4047
|
+
}
|
|
4048
|
+
to {
|
|
4049
|
+
opacity: 1;
|
|
4050
|
+
}
|
|
4051
|
+
}
|
|
4052
|
+
@media not (prefers-reduced-motion) {
|
|
4053
|
+
.media-editor-preview--image img.loaded {
|
|
4054
|
+
animation: __wp-base-styles-fade-in 0.08s linear 0s;
|
|
4055
|
+
animation-fill-mode: forwards;
|
|
4056
|
+
}
|
|
4057
|
+
}
|
|
4058
|
+
.media-editor-preview--video video {
|
|
4059
|
+
max-width: 100%;
|
|
4060
|
+
max-height: 100%;
|
|
4061
|
+
object-fit: contain;
|
|
4062
|
+
width: auto;
|
|
4063
|
+
height: auto;
|
|
4064
|
+
}
|
|
4065
|
+
|
|
4066
|
+
.media-editor-preview--audio audio {
|
|
4067
|
+
max-width: 100%;
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4070
|
+
.media-editor-preview--file {
|
|
4071
|
+
text-align: center;
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
.media-editor-preview__file-info {
|
|
4075
|
+
background: #f0f0f0;
|
|
4076
|
+
padding: 24px;
|
|
4077
|
+
border-radius: 2px;
|
|
4078
|
+
}
|
|
4079
|
+
|
|
4080
|
+
.media-editor-preview__file-name {
|
|
4081
|
+
font-weight: 600;
|
|
4082
|
+
margin-bottom: 8px;
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
.media-editor-preview__mime-type {
|
|
4086
|
+
color: #757575;
|
|
4087
|
+
font-size: 0.9em;
|
|
4088
|
+
margin-bottom: 16px;
|
|
4089
|
+
}
|
|
4090
|
+
|
|
4091
|
+
.media-editor-preview__download-link {
|
|
4092
|
+
display: inline-block;
|
|
4093
|
+
margin-top: 8px;
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.media-editor-preview--error, .media-editor-preview--empty {
|
|
4097
|
+
color: #757575;
|
|
4098
|
+
text-align: center;
|
|
4099
|
+
}
|
|
4100
|
+
|
|
4101
|
+
.media-editor-preview__url {
|
|
4102
|
+
font-size: 0.9em;
|
|
4103
|
+
color: #949494;
|
|
4104
|
+
word-break: break-all;
|
|
4105
|
+
margin-top: 8px;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
3969
4108
|
.editor-autocompleters__user .editor-autocompleters__no-avatar::before {
|
|
3970
4109
|
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword -- dashicons don't need a generic family keyword. */
|
|
3971
4110
|
font: normal 20px/1 dashicons;
|
|
@@ -4850,6 +4989,9 @@ div.dataviews-view-list {
|
|
|
4850
4989
|
margin-inline-end: 8px;
|
|
4851
4990
|
}
|
|
4852
4991
|
}
|
|
4992
|
+
.editor-revisions-header .editor-header__center {
|
|
4993
|
+
clip-path: none;
|
|
4994
|
+
}
|
|
4853
4995
|
|
|
4854
4996
|
/**
|
|
4855
4997
|
* Buttons on the right side
|
|
@@ -5700,6 +5842,25 @@ div.dataviews-view-list {
|
|
|
5700
5842
|
transform: translateX(0%);
|
|
5701
5843
|
}
|
|
5702
5844
|
}
|
|
5845
|
+
.editor-revisions-header__slider {
|
|
5846
|
+
width: 100%;
|
|
5847
|
+
}
|
|
5848
|
+
.editor-revisions-header__slider .components-range-control__tooltip {
|
|
5849
|
+
white-space: nowrap;
|
|
5850
|
+
}
|
|
5851
|
+
|
|
5852
|
+
.editor-revisions-header__no-revisions {
|
|
5853
|
+
color: #757575;
|
|
5854
|
+
font-size: 13px;
|
|
5855
|
+
}
|
|
5856
|
+
|
|
5857
|
+
.editor-revisions-canvas__loading {
|
|
5858
|
+
display: flex;
|
|
5859
|
+
align-items: center;
|
|
5860
|
+
justify-content: center;
|
|
5861
|
+
height: 100%;
|
|
5862
|
+
}
|
|
5863
|
+
|
|
5703
5864
|
.editor-post-saved-state {
|
|
5704
5865
|
display: flex;
|
|
5705
5866
|
align-items: center;
|
|
@@ -6172,6 +6333,11 @@ textarea.editor-post-text-editor::placeholder {
|
|
|
6172
6333
|
.editor-sidebar *::after {
|
|
6173
6334
|
box-sizing: inherit;
|
|
6174
6335
|
}
|
|
6336
|
+
.editor-sidebar__revisions-block-message {
|
|
6337
|
+
padding: 16px;
|
|
6338
|
+
color: #757575;
|
|
6339
|
+
font-size: 13px;
|
|
6340
|
+
}
|
|
6175
6341
|
|
|
6176
6342
|
.editor-site-discussion-dropdown__content .components-popover__content {
|
|
6177
6343
|
min-width: 320px;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useEditedSectionDetails.d.ts","sourceRoot":"","sources":["../../../src/components/document-bar/useEditedSectionDetails.js"],"names":[],"mappings":"AAaA;;;;;GAKG;AACH,mDAFY,MAAM,GAAC,IAAI,
|
|
1
|
+
{"version":3,"file":"useEditedSectionDetails.d.ts","sourceRoot":"","sources":["../../../src/components/document-bar/useEditedSectionDetails.js"],"names":[],"mappings":"AAaA;;;;;GAKG;AACH,mDAFY,MAAM,GAAC,IAAI,CAgFtB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-interface/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/editor-interface/index.js"],"names":[],"mappings":"AA8CA;;;;;;;;;;;gCA6MC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Header skeleton component providing the common layout structure.
|
|
3
|
+
*
|
|
4
|
+
* @param {Object} props Component props.
|
|
5
|
+
* @param {string} props.className Additional class name.
|
|
6
|
+
* @param {JSX.Element} props.toolbar Content for the left toolbar area.
|
|
7
|
+
* @param {JSX.Element} props.center Content for the center area.
|
|
8
|
+
* @param {JSX.Element} props.settings Content for the right settings area.
|
|
9
|
+
* @return {JSX.Element} The header skeleton component.
|
|
10
|
+
*/
|
|
11
|
+
export default function HeaderSkeleton({ className, toolbar, center, settings, }: {
|
|
12
|
+
className: string;
|
|
13
|
+
toolbar: JSX.Element;
|
|
14
|
+
center: JSX.Element;
|
|
15
|
+
settings: JSX.Element;
|
|
16
|
+
}): JSX.Element;
|
|
17
|
+
//# sourceMappingURL=header-skeleton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"header-skeleton.d.ts","sourceRoot":"","sources":["../../../src/components/header/header-skeleton.js"],"names":[],"mappings":"AA+BA;;;;;;;;;GASG;AACH,kFANG;IAA2B,SAAS,EAA5B,MAAM;IACa,OAAO,EAA1B,GAAG,CAAC,OAAO;IACQ,MAAM,EAAzB,GAAG,CAAC,OAAO;IACQ,QAAQ,EAA3B,GAAG,CAAC,OAAO;CACnB,GAAS,GAAG,CAAC,OAAO,CAkDtB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/header/index.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/header/index.js"],"names":[],"mappings":";AAiCA;;;;gCAyIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/media/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Media metadata panel for the editor sidebar.
|
|
3
|
+
* Displays a form for editing media properties with PostCardPanel header.
|
|
4
|
+
*
|
|
5
|
+
* @param {Object} props - Component props.
|
|
6
|
+
* @param {Function} props.onActionPerformed - Callback when an action is performed.
|
|
7
|
+
* @return {Element} The MediaMetadataPanel component.
|
|
8
|
+
*/
|
|
9
|
+
export default function MediaMetadataPanel({ onActionPerformed }: {
|
|
10
|
+
onActionPerformed: Function;
|
|
11
|
+
}): Element;
|
|
12
|
+
//# sourceMappingURL=metadata-panel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metadata-panel.d.ts","sourceRoot":"","sources":["../../../src/components/media/metadata-panel.js"],"names":[],"mappings":"AAgBA;;;;;;;GAOG;AACH,kEAHG;IAAwB,iBAAiB;CACzC,GAAS,OAAO,CAsDlB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Media preview component for the editor.
|
|
3
|
+
* Connects the base MediaPreview component to the editor store.
|
|
4
|
+
*
|
|
5
|
+
* @param {Object} props - Additional props to spread on MediaPreview.
|
|
6
|
+
* @return {Element} The MediaPreview component.
|
|
7
|
+
*/
|
|
8
|
+
export default function MediaPreview(props: Object): Element;
|
|
9
|
+
//# sourceMappingURL=preview.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preview.d.ts","sourceRoot":"","sources":["../../../src/components/media/preview.js"],"names":[],"mappings":"AAcA;;;;;;GAMG;AACH,4CAHW,MAAM,GACL,OAAO,CAelB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/more-menu/index.js"],"names":[],"mappings":"AA4BA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/more-menu/index.js"],"names":[],"mappings":"AA4BA;;gCAsIC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-card-panel/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-card-panel/index.js"],"names":[],"mappings":"AAgCA;;;;;;;;GAQG;AACH,gFALG;IAAgC,QAAQ;IACR,MAAM;IACN,iBAAiB;CACjD,GAAS,KAAK,CAAC,SAAS,CAwI1B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-content-information/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-content-information/index.js"],"names":[],"mappings":"AAwBA,qFA2EC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-last-edited-panel/index.js"],"names":[],"mappings":"AAaA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-last-edited-panel/index.js"],"names":[],"mappings":"AAaA,kFAoBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-last-revision/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-last-revision/index.js"],"names":[],"mappings":"AAsDA,uEAiBC;;AA5CD;;;;GAIG;AACH,qCAFY,KAAK,CAAC,SAAS,CAsB1B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/post-publish-button/label.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/post-publish-button/label.js"],"names":[],"mappings":"AAaA;;;;GAIG;AACH,8CAFY,MAAM,CAgFjB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"post-publish-button-or-toggle.d.ts","sourceRoot":"","sources":["../../../src/components/post-publish-button/post-publish-button-or-toggle.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"post-publish-button-or-toggle.d.ts","sourceRoot":"","sources":["../../../src/components/post-publish-button/post-publish-button-or-toggle.js"],"names":[],"mappings":"AAgBA;;;gCA2FC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/post-revisions-preview/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"revisions-canvas.d.ts","sourceRoot":"","sources":["../../../src/components/post-revisions-preview/revisions-canvas.js"],"names":[],"mappings":"AAqBA;;;;GAIG;AACH,2CAFY,GAAG,CAAC,OAAO,CAgDtB"}
|