diff --git a/core/modules/outside_in/css/off-canvas.css b/core/modules/outside_in/css/off-canvas.css index b5aa0c5d0d..2c012dd7da 100644 --- a/core/modules/outside_in/css/off-canvas.css +++ b/core/modules/outside_in/css/off-canvas.css @@ -3,6 +3,8 @@ * CSS for off-canvas dialog. * * @todo Move CSS into core dialog library https://www.drupal.org/node/2784443. + * + * @internal */ /* Position the off-canvas dialog container outside the right of the viewport. */ .ui-dialog-off-canvas { diff --git a/core/modules/outside_in/css/off-canvas.motion.css b/core/modules/outside_in/css/off-canvas.motion.css index e395fbb716..a02a26069f 100644 --- a/core/modules/outside_in/css/off-canvas.motion.css +++ b/core/modules/outside_in/css/off-canvas.motion.css @@ -8,6 +8,8 @@ * @todo Move motion effects file into a core Off-Canvas library and add a * configuration option for browser rendering performance to disable this * file: https://www.drupal.org/node/2784443. + * + * @internal */ /* Transition the off-canvas dialog container, with 2s delay to match main canvas speed. */ diff --git a/core/modules/outside_in/css/outside_in.details.css b/core/modules/outside_in/css/outside_in.details.css index 8ca1406f09..17e5396de3 100644 --- a/core/modules/outside_in/css/outside_in.details.css +++ b/core/modules/outside_in/css/outside_in.details.css @@ -1,8 +1,9 @@ /** * @file * Visual styling for summary and details in the Settings Tray module's off canvas tray. + * + * @internal */ - .ui-dialog-outside-in details, .ui-dialog-outside-in summary, .ui-dialog-outside-in .ui-dialog-content { diff --git a/core/modules/outside_in/css/outside_in.form.css b/core/modules/outside_in/css/outside_in.form.css index 5d4c3be820..0c66654642 100644 --- a/core/modules/outside_in/css/outside_in.form.css +++ b/core/modules/outside_in/css/outside_in.form.css @@ -1,8 +1,9 @@ /** * @file * Visual styling for forms in the Settings Tray module's off canvas tray. + * + * @internal */ - .ui-dialog-outside-in label { line-height: normal; font-size: 12px; diff --git a/core/modules/outside_in/css/outside_in.module.css b/core/modules/outside_in/css/outside_in.module.css index 9d90bf227d..ef1336afe5 100644 --- a/core/modules/outside_in/css/outside_in.module.css +++ b/core/modules/outside_in/css/outside_in.module.css @@ -1,6 +1,8 @@ /** * @file * Styling for Settings Tray module. + * + * @internal */ /* * Position the edit toolbar tab. diff --git a/core/modules/outside_in/css/outside_in.motion.css b/core/modules/outside_in/css/outside_in.motion.css index 5fae723559..8e4f61042d 100644 --- a/core/modules/outside_in/css/outside_in.motion.css +++ b/core/modules/outside_in/css/outside_in.motion.css @@ -8,6 +8,8 @@ * @todo Move motion effects file into a core Off-Canvas library and add a * configuration option for browser rendering performance to disable this * file: https://www.drupal.org/node/2784443. + * + * @internal */ /* Transition the edit icon in the toolbar. */ diff --git a/core/modules/outside_in/css/outside_in.table.css b/core/modules/outside_in/css/outside_in.table.css index dc6bb89502..5469fbcbd1 100644 --- a/core/modules/outside_in/css/outside_in.table.css +++ b/core/modules/outside_in/css/outside_in.table.css @@ -1,6 +1,8 @@ /** * @file * Visual styling for tables in the Settings Tray module's off canvas tray. + * + * @internal */ .ui-dialog-outside-in table { diff --git a/core/modules/outside_in/css/outside_in.tabledrag.css b/core/modules/outside_in/css/outside_in.tabledrag.css index 28ebeadc4f..b4a6855478 100644 --- a/core/modules/outside_in/css/outside_in.tabledrag.css +++ b/core/modules/outside_in/css/outside_in.tabledrag.css @@ -3,6 +3,9 @@ * Table drag behavior for Settings Tray module. * * @see tabledrag.js + * + * + * @internal */ /* Because base font sizes will vary widely across themes, to maintain consistency outside-in uses only pixels. */ diff --git a/core/modules/outside_in/css/outside_in.theme.css b/core/modules/outside_in/css/outside_in.theme.css index 0db7a3ce40..65658ebeb2 100644 --- a/core/modules/outside_in/css/outside_in.theme.css +++ b/core/modules/outside_in/css/outside_in.theme.css @@ -1,6 +1,9 @@ /** * @file * Visual styling for Settings Tray module. + * + * + * @internal */ /* @todo Move this into toolbar when this module is no longer experimental: diff --git a/core/modules/outside_in/css/outside_in.toolbar.css b/core/modules/outside_in/css/outside_in.toolbar.css index a199841b0f..db5deb00fa 100644 --- a/core/modules/outside_in/css/outside_in.toolbar.css +++ b/core/modules/outside_in/css/outside_in.toolbar.css @@ -1,6 +1,8 @@ /** * @file * Visual styling for the toolbar when Settings Tray module is enabled. + * + * @internal */ /* @todo Move this into toolbar when module is not experimental: diff --git a/core/modules/outside_in/js/off-canvas.es6.js b/core/modules/outside_in/js/off-canvas.es6.js index 01262bef02..bce50b2e67 100644 --- a/core/modules/outside_in/js/off-canvas.es6.js +++ b/core/modules/outside_in/js/off-canvas.es6.js @@ -5,6 +5,8 @@ * @todo This functionality should extracted into a new core library or a part * of the current drupal.dialog.ajax library. * https://www.drupal.org/node/2784443 + * + * @internal */ (function ($, Drupal, debounce, displace) { diff --git a/core/modules/outside_in/js/outside_in.es6.js b/core/modules/outside_in/js/outside_in.es6.js index 66708cea0d..b2ce6f3678 100644 --- a/core/modules/outside_in/js/outside_in.es6.js +++ b/core/modules/outside_in/js/outside_in.es6.js @@ -1,6 +1,8 @@ /** * @file * Drupal's Settings Tray library. + * + * @internal */ (function ($, Drupal) { diff --git a/core/modules/outside_in/src/Ajax/OpenOffCanvasDialogCommand.php b/core/modules/outside_in/src/Ajax/OpenOffCanvasDialogCommand.php index 2371483ed5..0dd3736f28 100644 --- a/core/modules/outside_in/src/Ajax/OpenOffCanvasDialogCommand.php +++ b/core/modules/outside_in/src/Ajax/OpenOffCanvasDialogCommand.php @@ -8,6 +8,8 @@ * Defines an AJAX command to open content in a dialog in a off-canvas dialog. * * @ingroup ajax + * + * @internal */ class OpenOffCanvasDialogCommand extends OpenDialogCommand { diff --git a/core/modules/outside_in/src/Block/BlockEntityOffCanvasForm.php b/core/modules/outside_in/src/Block/BlockEntityOffCanvasForm.php index 4e0f081fb5..75e296e17d 100644 --- a/core/modules/outside_in/src/Block/BlockEntityOffCanvasForm.php +++ b/core/modules/outside_in/src/Block/BlockEntityOffCanvasForm.php @@ -13,6 +13,8 @@ * * This form removes advanced sections of regular block form such as the * visibility settings, machine ID and region. + * + * @internal */ class BlockEntityOffCanvasForm extends BlockForm { diff --git a/core/modules/outside_in/src/Cache/Context/OutsideInCacheContext.php b/core/modules/outside_in/src/Cache/Context/OutsideInCacheContext.php index 4a24671d01..e0ed1ab011 100644 --- a/core/modules/outside_in/src/Cache/Context/OutsideInCacheContext.php +++ b/core/modules/outside_in/src/Cache/Context/OutsideInCacheContext.php @@ -10,6 +10,8 @@ * Defines the OutsideInCacheContext service, for "Outside-In or not" caching. * * Cache context ID: 'outside_in_is_applied'. + * + * @internal */ class OutsideInCacheContext implements CacheContextInterface { diff --git a/core/modules/outside_in/src/Form/SystemBrandingOffCanvasForm.php b/core/modules/outside_in/src/Form/SystemBrandingOffCanvasForm.php index 063041d136..5ecfc77bd8 100644 --- a/core/modules/outside_in/src/Form/SystemBrandingOffCanvasForm.php +++ b/core/modules/outside_in/src/Form/SystemBrandingOffCanvasForm.php @@ -12,6 +12,8 @@ * The off-canvas form handler for the SystemBrandingBlock. * * @see outside_in_block_alter() + * + * @internal */ class SystemBrandingOffCanvasForm extends PluginFormBase implements ContainerInjectionInterface { diff --git a/core/modules/outside_in/src/Form/SystemMenuOffCanvasForm.php b/core/modules/outside_in/src/Form/SystemMenuOffCanvasForm.php index 0245adad12..554b13057c 100644 --- a/core/modules/outside_in/src/Form/SystemMenuOffCanvasForm.php +++ b/core/modules/outside_in/src/Form/SystemMenuOffCanvasForm.php @@ -19,6 +19,8 @@ * The off-canvas form handler for the SystemMenuBlock. * * @see outside_in_block_alter() + * + * @internal */ class SystemMenuOffCanvasForm extends PluginFormBase implements ContainerInjectionInterface { diff --git a/core/modules/outside_in/src/OutsideInManager.php b/core/modules/outside_in/src/OutsideInManager.php index 666a93837b..8159931c46 100644 --- a/core/modules/outside_in/src/OutsideInManager.php +++ b/core/modules/outside_in/src/OutsideInManager.php @@ -8,6 +8,8 @@ /** * Manages information related to Settings Tray. + * + * @internal */ class OutsideInManager implements OutsideInManagerInterface { diff --git a/core/modules/outside_in/src/OutsideInManagerInterface.php b/core/modules/outside_in/src/OutsideInManagerInterface.php index 684adb3f0d..39dc72bf4a 100644 --- a/core/modules/outside_in/src/OutsideInManagerInterface.php +++ b/core/modules/outside_in/src/OutsideInManagerInterface.php @@ -4,6 +4,8 @@ /** * Provides an interface for managing information related to Outside-In. + * + * @internal */ interface OutsideInManagerInterface { diff --git a/core/modules/outside_in/src/Render/MainContent/OffCanvasRender.php b/core/modules/outside_in/src/Render/MainContent/OffCanvasRender.php index 9119c9b8cf..4e8b4e5b1c 100644 --- a/core/modules/outside_in/src/Render/MainContent/OffCanvasRender.php +++ b/core/modules/outside_in/src/Render/MainContent/OffCanvasRender.php @@ -12,6 +12,8 @@ /** * Default main content renderer for off-canvas dialog requests. + * + * @internal */ class OffCanvasRender extends DialogRenderer { diff --git a/core/modules/outside_in/templates/outside-in-page-wrapper.html.twig b/core/modules/outside_in/templates/outside-in-page-wrapper.html.twig index b224deb935..b99b3530bb 100644 --- a/core/modules/outside_in/templates/outside-in-page-wrapper.html.twig +++ b/core/modules/outside_in/templates/outside-in-page-wrapper.html.twig @@ -11,6 +11,8 @@ * - children: Contains the child elements of the page. * * @ingroup themeable + * + * @internal */ #} {% if children %}