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

merge master back into fork #1

Merged
merged 146 commits into from
Apr 2, 2019
Merged

Conversation

fabiankaegy
Copy link
Owner

Description

How has this been tested?

Screenshots

Types of changes

Checklist:

  • My code is tested.
  • My code follows the WordPress code style.
  • My code follows the accessibility standards.
  • My code has proper inline documentation.
  • I've included developer documentation if appropriate.

Aljullu and others added 30 commits March 14, 2019 13:10
* Add anchor link

* Add anchor link to second reference
* added an interactive argument to the test-e2e script

* mend

* added a way to bypass certain args from Jest, reverted to normal argument passing using double dash

* simplified the argument cleanup function

* simplified the argument cleanup function

* added a way to bypass certain args from Jest, reverted to normal argument passing using double dash

* simplified the argument cleanup function

* simplified the argument cleanup function

* cleaned up the code by moving the prefixed arguments removal to getcliargs
)

* Input Interaction: fix buffer for the triggering of multi-select

* Add inline comment

* Add e2e test
…s it (#14450)

* Input Interaction: only consider selection at edge if directed towards it

* Add e2e test
* Initial commit to update CheckboxControl readme

These changes add design documentation.

* Fix tabbing on code example
* Add thick borders to the left of blocks when they're hovred + selected.

* Add thick left border to the page title.

* Turn off block toolbar centering for alignwide blocks.

This splits the left border in two, which looks a bit weird.

* Move block breadcrump to the left side, position it on top of the block.

* Clean up the block toolbar's left border.

* Use inset borders on mobile.

* Prevent inset borders from overlapping with full-bleed content.

* Use a gray border instead of a blue one on hover.

* Use a sass variable to define the left block border width

* Fix breadcrumb potision for alignfull blocks.

* Clean up breadcrumb position for left & right-aligned blocks.

* Sync block mover animation up with the hover state.

* Darken focused block borders slightly.

From $light-gray-500 to $light-gray-800.

* Switch to using border instead of outline for block borders.

Also, change the thick left border to a solid color, to prevent weird overlap.

* Make this work better with Windows High Contrast Mode

* Adjust z-index of border + breadcrumb for child blocks.

So that they're not overlapped by the parent block's border + toolbar.

* Remove extra z-index rule from the block border.

Turns out this wasn't needed anyway.

* Remove extra z-index rule from the block border. Minor description cleanup.

* Ensure these styles are compatible with Top Toolbar mode.

* Use the new gray value for the mobile toolbar border.

* Add a matching left border to the post permalink area above the title.

* Improve border position for mobile screens, especially for elements that float left/right.

* Remove a couple unnecessary border updates from 047e1e4.

Turns out these styles can be preserved on all screen sizes with no ill effect.

* Clean up bugs related to the hover + focus states of the classic editor block.

* Classic Block toolbar icon cleanup.

Even out margins, remove white background.

* Reusable Block border cleanup.

* Keeping a light border on the classic block when it's inactive.

* Clean up borders on warning blocks.

* Switch to a solid color border color for the permalink box.

This mirrors the approach we use for block toolbars, and also ensures that we don't layer opacities and make the permalink toolbar darker than intended.

* Update z-index rule name to match the one used in the latest merge.

* Combine full-wide toolbar centering rules.

Previously, these were declared in two separate palces.

* Add a darker hover state for dark themes.

* Remove the left toolbar border on mobile screens.

This fixes some visual bugs with themes like TwentyNineteen, which include margins on either side of the block on mobile.
* Input Interaction: allow outer vertical edge to be selected

* Add e2e test
* DOM: Limit single tabbable radio input by name

* DOM: Avoid consolidating unnamed radio inputs
Add design guidelines and screenshots.
* Update MenuGroup Readme.

Add design guidelines and screenshots.

* Adjust introduction to be more concise.
* Fix: Pasting captions without an image fails

Fixes #13527
See original work in #12315

When pasting content which includes the `[caption]` shortcode we assume
that the content is well-formed (that there is not only an `<img />` in
there but also in the first position).

In this patch we fix the problem by removing the old code, which removed
the first `Element` node, and replaced it with code that removes the
first `IMG` node _if one is found_.

We're leaving other image nodes in place in case the caption contains
image nodes and we're not requiring that the `IMG` be the first child
of the caption shortcode in case people are wrapping the image in other
valid HTML like this...

```html
[caption]<a href="some.link"><img src="some.image"></a>[/caption]
```

See the new unit tests for a more complete specification of the
intended behaviors.

PR reviewed, debugged, and created by:
-> LANNISTER MOB <-
 - @codebykat
 - @dmsnell
 - @gwwar
 - @kwight
 - @mmtr
 - @obenland
 - @rodrigoi
 - @vindl

* Update stripFirstImage behavior to also remove matching topmost parent node
kjellr and others added 29 commits March 28, 2019 13:17
PR #14624 mistakenly used negative pixel values for the position of the dot inside of radio buttons. This PR restores the correct values, to ensure proper placement.
This PR fixes an issue where the sidebar would have two scrollbars when in fullscreen mode.
#14691)

* Data: Avoid unsetting insertUsage preference in block editor migration

* Update index.js
* Fix embedding Twitter URLs with a trailing slash (Closes #12664)

* Fix race condition for WordPress URLs that end in slashes, add test
* Adding design documentation to the Notice readme

* Updating copy based on feedback
* Update TextControl design documentation

* Removing `http://` from anchor links.

* Re-arrange Do/Don't image labels

To align with the formatting of other READMEs.

* Re-edit Do/Don't labels for better consistency.
Because it says to run npm install with --save-dev flag
"dependencies": {
    "@wordpress/scripts": "3.1.0"
}
```
Should say:
```
"devDependencies": {
    "@wordpress/scripts": "3.1.0"
}
```
* Updated readme and added local arg.

* Lint fixes.

* Replaced dumb namings with a more reasonable ones.

* Added --wordpress- to cleanUpPrefixes.

* Align argument name with env key.
* Add initial container block

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Add background color controls to the container block

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Add `anchor` support to container block

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Add option for editing container block padding

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Add padding with preset narrow and wide options

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Add padding toggle

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Ensure background color class name is set in block edit

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Switch padding option to disable padding instead of enabling

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Set a default background color

Co-authored-by: Andrei Draganescu <me@andreidraganescu.info>

* Add e2e test for adding container block

* Add e2e tests for the container block

* updated the default toggle text and behaviour for the container's padding and fixed a class naming problem on the front end

* removed the padding toogle and added default padding to the container block wrapper class

* Remove container block margin when a background is set. Allows consecutive container blocks to have no gap between them

* Adds keywords to aid in discoverability

* Implement same padding rules as used in columns block for container block. Ensures block mover controls remain visible.

* Removes default background

As discussed this imposes on the Theme choices. We will make the Block more perceivable via:

* #14241
* #14145

* Renames Block from Container to Section

This is in response to the wealth of feedback (particularly from the Design team) that “Container” is not a good reflection of the purpose. Rather Section is the prefered option.

See #13964 (comment)

* Utilise correct spacing variable for consistency

* Resolve block validation error when custom background color used. Caused by customBackgroundColor not being defined as an attribute.

* Feature flag the section block

* Update e2e tests with renamed section block

* Add fixture for section block for full content test

* Adds alignment for inner blocks that support alignment controls

As per this comment #13964 (comment) the Block needs the ability to align the blocks within the Section. Currently only a few Blocks support this but a wider change can be added that will enable all inner blocks to be aligned. The alignment rules are tested against the [Gutenberg Starter Theme](https://github.com/WordPress/gutenberg-starter-theme) as this enqueues no editor styles and conforms to the guidlines laid out [here](#13964 (comment)).

@kjell has noted that Twenty Nineteen will need a patch for this, the styles for which have already been scoped out.
Note that this removes the previous fix for the block mover controls which are now (again) hidden when Blocks are full width. @kjell has confirmed this is a known issue that needs to be solved globally and should not be addressed in this PR.

* Fixes width of wide Media text Block within full width Section Block

* Removes Block default padding

Remove padding to ensure alignment is consistent with canvas by default. Plan to introduce an attribute to control this later.

* Fixes alignment layout within Seciton Blocks for all alignable Block types

Previously alignment CSS was too focused on images and had too many edge cases. Refactor to cater for all Block types and in turn simplified the CSS.

* Adds specificity required to only target immediate child Blocks of Section

* Reintroduces padding on request

* Adds fix to images as edge case

Previously a 1px gap was seen on the sides of images nested within Section.

* Removes unwanted whitespace top/bottom of Block

* Fixes wide child Block alignment within full width Section

Resolves issue reported at

#13964 (comment)

Also variablises the values.

* Fixes full width image alignment within full width Section.

Alters values required to ensure full width image Block meets edges of editor canvas when within a full width Section Block.

This removes the need for the “edge case” hack in the Image Block CSS which is good as this was never a good idea.

Resolves #13964 (comment)

* Removes usage of Block name as Sass variable

Not required.

Resolves #13964 (comment)

* Updates hard coded spacing to variables

* Fixes excessive Section Block padding on tiny screens

Resolves #13964 (comment)

* Updates to add padding only when background is added to Block

Addresses #13964 (comment)

* Fixes Block overlap between adjacent Blocks when no background applied

Resolves issue highlight at #13964 (comment)

* Restores fix for Columns Block to ensure move/drag handles visible in full width Section

Resolves #13964 (comment)

* Fixes 1px of overflow on full width blocks

Resolves #13964 (comment)

* Applies another fix to 1px overflow issue

Full width Blocks were causing a 1px overflow and thus a hoz scrollbar to appear. Required adjustments to margins and the “pull/push” values (left/width) appleid to full width child Blocks

* Makes Block reusable

Resolves part of #13964 (comment)

* Removes feature flag

Resolves #13964 (comment)

* Fixes overflow issues

Utilising width’s over 100% and negative left offsets were triggering hoz scrollbars.

Also added a patch for the Block insertion point offsets which were triggering scrollbars due to their overhanging -1px indent.

* Fix width of context toolbar causing overflow-x

When the Section Block is highlighted so that the contextual toolbar is displayed it can cause hoz scrollbars to appear when the viewport becomes narrow. This is a very difficult bug to spot but careful testing will reveal it.

The -1px compensates for the `left: 1px` value on the child element `.block-editor-block-toolbar`which is causing the scrollbar to appear.

* Updates Section padding values to match paragraph Block

Addresses #13964 (comment)

* Fixes failing Block transforms e2e test

* Fixes Block overflowing off screen on <600px full width Section

This was due to negative margins being applied too early. Turns out these were mirroring a rule already in place within the editor and didn’t need to be there anyway. Removing fixes the issue as the core rules are applied at the correct media query.

* Fix to make full width children full width when background padding added

When Section has a background padding is added meaning that full width child Blocks no longer span edge-to-edge. This fix adds a compensating factor to ensure an edge-to-edge layout within the editor.

* Remove superflous Section keyword

Resolves #13964 (comment)

* Removes superflous resuable setting

It’s already the default!

Resolves #13964 (comment)

* Updates to use `block-editor` package and avoid proxy

Resolves #13964 (comment)
* ESLint Plugin: Add missing react-no-unsafe-timeout CHANGELOG

* Update packages/eslint-plugin/CHANGELOG.md

Co-Authored-By: aduth <andrew@andrewduthie.com>
* NPM Package JSON Lint Config: Remove is-plain-obj dependency

* NPM Package JSON Lint Config: Resolve syntax error in isPlainObject function call
…ded (#14746)

## Description
Currently, on the cover block, the focal points attributes are not unset even when they are not needed/used e.g: when the background is a video or when the background is fixed.

This makes the markup more complex with attributes that are irrelevant.

## How has this been tested?
Add a cover block with an image as background.
Change the focal points.
Enable the fixed background option.
Check on the code editor that there are no references to the focalPoint attribute.

Add a cover block with an image as background.
Enable the fixed background option.
Change the block to use a video background (using the media edit button + the media library).
Check on the code editor that there are no references to the hasParallax attribute.

Add a cover block with an image as background.
Change the focal points.
Change the block to use a video background (using the media edit button + the media library).
Check on the code editor that there are no references to the focalPoint attribute.
…#14551)

* Block library: Try to use Babel plugins to inline block.json metadata

* Address feedback from review

* Address feedback from code review
@fabiankaegy fabiankaegy merged commit 45a7f5c into fabiankaegy:master Apr 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.