0a1,79 > diff --git a/core/modules/block/config/optional/tour.tour.block-layout.yml b/core/modules/block/config/optional/tour.tour.block-layout.yml > index c580d9c3ff..e5995a28b5 100644 > --- a/core/modules/block/config/optional/tour.tour.block-layout.yml > +++ b/core/modules/block/config/optional/tour.tour.block-layout.yml > @@ -21,21 +21,21 @@ tips: > plugin: text > label: 'Place Blocks' > weight: 2 > - selector: .button--small > + selector: '.button--small' > body: 'Any custom or contributed block can be added to a particular region by clicking on a button Place block. A new block can also be created by clicking on Place Block' > block-region: > id: block-region > plugin: text > label: 'Block Region' > weight: 3 > - selector: .block-region-select > + selector: '.block-region-select' > body: 'Assign or change the region of a block by clicking here. A dropdown list with all the regions will appear.You can place one block in multiple regions.' > configure-block: > id: configure-block > plugin: text > label: 'Configure Block' > weight: 4 > - selector: .dropbutton-widget > + selector: '.dropbutton-widget' > body: 'By Clicking on "Configure" you can go ahead and edit the contents of the block, deal with the visibility settings and even change the placement of where it is on your theme.' > custom-block-library: > id: custom-block-library > diff --git a/core/modules/language/config/optional/tour.tour.language.yml b/core/modules/language/config/optional/tour.tour.language.yml > index 08f2ede4ff..43eb19b21f 100644 > --- a/core/modules/language/config/optional/tour.tour.language.yml > +++ b/core/modules/language/config/optional/tour.tour.language.yml > @@ -21,28 +21,28 @@ tips: > plugin: text > label: 'Adding languages' > weight: 2 > - selector: .button-action > + selector: '.button-action' > body: '
To add more languages to your site, click the "Add language" button.
Added languages will be displayed in the language list and can then be edited or deleted.
' > language-reorder: > id: language-reorder > plugin: text > label: 'Reordering languages' > weight: 3 > - selector: .draggable > + selector: '.draggable' > body: 'To reorder the languages on your site, use the drag icons next to each language.
The order shown here is the display order for language lists on the site such as in the language switcher blocks provided by the Interface Translation and Content Translation modules.
When you are done with reordering the languages, click the "Save configuration" button for the changes to take effect.
' > language-default: > id: language-default > plugin: text > label: 'Set a language as default' > weight: 4 > - selector: .js-form-item-site-default-language > + selector: '.js-form-item-site-default-language' > body: 'You can change the default language of the site by choosing one of your configured languages as default. The site will use the default language in situations where no choice is made but a language should be set, for example as the language of the displayed interface.
' > language-operations: > id: language-operations > plugin: text > label: 'Modifying languages' > weight: 5 > - selector: .dropbutton-wrapper > + selector: '.dropbutton-wrapper' > body: 'Operations are provided for editing and deleting your languages.
You can edit the name and the direction of the language.
Deleted languages can be added back at a later time. Deleting a language will remove all interface translations associated with it, and content in this language will be set to be language neutral. Note that you cannot delete the default language of the site.
' > language-continue: > id: language-continue > diff --git a/core/modules/locale/config/optional/tour.tour.locale.yml b/core/modules/locale/config/optional/tour.tour.locale.yml > index e79a088cfb..4ad9371c2a 100644 > --- a/core/modules/locale/config/optional/tour.tour.locale.yml > +++ b/core/modules/locale/config/optional/tour.tour.locale.yml > @@ -49,7 +49,7 @@ tips: > plugin: text > label: Translate > weight: 6 > - selector: .js-form-type-textarea > + selector: '.js-form-type-textarea' > body: 'You can write your own translation in the text fields of the right column. Try to figure out in which context the text will be used in order to translate it in the appropriate way.' > locale-validate: > id: locale-validate 52c131 < @@ -28,28 +28,6 @@ abstract class TipPluginBase extends PluginBase implements TipPluginInterface { --- > @@ -28,28 +28,6 @@ 207c286 < index d9b7c658f1..97a6884b5e 100644 --- > index d9b7c658f1..9a0e2b9dc1 100644 210c289,290 < @@ -53,51 +53,37 @@ public function viewMultiple(array $entities = [], $view_mode = 'full', $langcod --- > @@ -52,52 +52,37 @@ public function viewMultiple(array $entities = [], $view_mode = 'full', $langcod > // '-start' to provide the same experience as Joyride. 213c293 < --- > - 818a899,911 > diff --git a/core/modules/tour/tests/tour_test/config/install/tour.tour.tour-test.yml b/core/modules/tour/tests/tour_test/config/install/tour.tour.tour-test.yml > index 5ca1fa4899..018f1ce4c6 100644 > --- a/core/modules/tour/tests/tour_test/config/install/tour.tour.tour-test.yml > +++ b/core/modules/tour/tests/tour_test/config/install/tour.tour.tour-test.yml > @@ -22,7 +22,7 @@ tips: > plugin: text > label: 'The action' > weight: 2 > - selector: .button-action > + selector: '.button-action' > body: 'The action button of awesome' > tour-test-3: > id: tour-test-3 963c1056 < index f9396a6c7c..0000000000 --- > index 9e31ddd9b2..0000000000 966c1059 < @@ -1,21 +0,0 @@ --- > @@ -1,15 +0,0 @@ 974,976d1066 < -use Drupal\Core\Config\Entity\ConfigEntityUpdater; < -use Drupal\tour\Entity\Tour; < - 978,980c1068 < - * Convert Joyride selectors to `selector` property. < - * < - * @see tour_tour_presave() --- > - * Implements hook_removed_post_updates(). 982,986c1070,1073 < -function tour_post_update_joyride_selectors_to_selector_property(array &$sandbox = NULL) { < - $config_entity_updater = \Drupal::classResolver(ConfigEntityUpdater::class); < - $config_entity_updater->update($sandbox, 'tour', function (Tour $tour) { < - return _tour_update_joyride($tour, FALSE); < - }); --- > -function tour_removed_post_updates() { > - return [ > - 'tour_post_update_joyride_selectors_to_selector_property' => '10.0.0', > - ]; 987a1075,1112 > diff --git a/core/modules/views_ui/config/optional/tour.tour.views-ui.yml b/core/modules/views_ui/config/optional/tour.tour.views-ui.yml > index 644b51f036..d6dc6b65d3 100644 > --- a/core/modules/views_ui/config/optional/tour.tour.views-ui.yml > +++ b/core/modules/views_ui/config/optional/tour.tour.views-ui.yml > @@ -38,21 +38,21 @@ tips: > plugin: text > label: 'Output format' > weight: 4 > - selector: .views-ui-display-tab-bucket.format > + selector: '.views-ui-display-tab-bucket.format' > body: 'Choose how to output results. E.g., choose Content to output each item completely, using your configured display settings. Or choose Fields, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to extend Drupal''s base functionality.' > views-ui-fields: > id: views-ui-fields > plugin: text > label: Fields > weight: 5 > - selector: .views-ui-display-tab-bucket.field > + selector: '.views-ui-display-tab-bucket.field' > body: 'If this view uses fields, they are listed here. You can click on a field to configure it.' > views-ui-filter: > id: views-ui-filter > plugin: text > label: 'Filter your view' > weight: 6 > - selector: .views-ui-display-tab-bucket.filter > + selector: '.views-ui-display-tab-bucket.filter' > body: 'Add filters to limit the results in the output. E.g., to only show content that is published, you would add a filter for Published and select Yes.' > views-ui-filter-operations: > id: views-ui-filter-operations > @@ -66,7 +66,7 @@ tips: > plugin: text > label: 'Sort Criteria' > weight: 8 > - selector: .views-ui-display-tab-bucket.sort > + selector: '.views-ui-display-tab-bucket.sort' > body: 'Control the order in which the results are output. Click on an active sort rule to configure it.' > views-ui-sorts-operations: > id: views-ui-sorts-operations