Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creator: Add welcome guide on first load. #97

Merged
merged 21 commits into from
Jun 28, 2021
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
892af06
Add in the initial guide without the correct images.
StevenDufresne May 7, 2021
9d1207f
Add in the real svg's even though backgrounds are not working properly.
StevenDufresne May 10, 2021
19652a1
Update the close button colors to make them more visible.
StevenDufresne May 10, 2021
d26fc4b
Update the background images to the updated svgs.
StevenDufresne May 11, 2021
6be61b0
Add in the correct third panel.
StevenDufresne Jun 7, 2021
fd1a270
Move the dot controls down.
StevenDufresne Jun 7, 2021
2d43b6a
Clean up yarn.lock.
StevenDufresne Jun 8, 2021
d903c4b
Merge trunk.
StevenDufresne Jun 9, 2021
8126cc7
Integrate the welcome guide as a plugin to match new structure.
StevenDufresne Jun 9, 2021
45c65d5
Remove the editor component. No longer used.
StevenDufresne Jun 9, 2021
3bafd97
Add in the primitives library.
StevenDufresne Jun 9, 2021
0204bc1
Run the formatting.
StevenDufresne Jun 9, 2021
382afcd
Update welcome pattern guide id.
StevenDufresne Jun 9, 2021
aa7903a
Rename the guide back to welcome guide to replace the default.
StevenDufresne Jun 9, 2021
0e4a046
Improve css and namespace some of the styles.
StevenDufresne Jun 11, 2021
6a1d161
Turn off more tools and the welcome guide. Replace with ours.
StevenDufresne Jun 15, 2021
e56b5f4
Rename the gutenberg modifier to be more specific to what it does.
StevenDufresne Jun 15, 2021
8ee3f91
Remove the edit-post plugin removal, we'll remove the whole menu.
StevenDufresne Jun 16, 2021
f923f11
Merge in Trunk:
StevenDufresne Jun 28, 2021
df6eb99
Fix package.json conflict.
StevenDufresne Jun 28, 2021
4066d9e
Add back in primitives.
StevenDufresne Jun 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions public_html/wp-content/plugins/pattern-creator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
"start": "wp-scripts start"
},
"devDependencies": {
"@wordpress/primitives": "1.12.3",
"@wordpress/scripts": "14.0.1",
"autoprefixer": "9.8.6",
"postcss-custom-properties": "10.0.0",
"@wordpress/scripts": "14.0.1"
"postcss-custom-properties": "10.0.0"
},
"dependencies": {
"classnames": "2.2.6",
"lodash": "4.17.21",
"@wordpress/a11y": "2.15.0",
"@wordpress/block-editor": "5.3.0",
"@wordpress/block-library": "2.29.0",
Expand All @@ -32,7 +31,9 @@
"@wordpress/format-library": "1.27.0",
"@wordpress/i18n": "3.19.0",
"@wordpress/icons": "2.10.0",
"@wordpress/interface": "1.1.0"
"@wordpress/interface": "1.1.0",
"classnames": "2.2.6",
"lodash": "4.17.21"
},
"eslintConfig": {
"extends": "../../../../.eslintrc.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import EditorInitialization from '@wordpress/edit-post/build/components/editor-i
* Internal dependencies
*/
import Layout from '../layout';
import WelcomeGuide from '../welcome-guide';

const AUTOSAVE_INTERVAL = 30;

Expand Down Expand Up @@ -75,6 +76,7 @@ export default function Provider( { settings, onError, postId, postType, initial
<UnsavedChangesWarning />
<AutosaveMonitor interval={ AUTOSAVE_INTERVAL } />
<LocalAutosaveMonitor />
<WelcomeGuide />
<Layout />
<Popover.Slot />
</ErrorBoundary>
Expand Down
Loading