Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into 4762_ColorPickerComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
diazwatson authored Jul 9, 2019
2 parents 8241902 + 3fbeb2a commit f49184b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
16 changes: 15 additions & 1 deletion guides/v2.2/ui_comp_guide/concepts/ui_comp_linking_concept.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,23 @@ Example of setting `exports` in a component's `.js` file:
}
}
```

Here `visible` is the `key`, `${ $.provider }:visibility` is the `value`. The value of the local `visible` property is assigned to the `visibility` property of the `provider` component. The latter is changed automatically if the value of `visible` changes if the local `visible` property is observable (which it isn't given only the code example above).

Example of setting `exports` directly using the destination component name:

```json
{
"exports": {
"items": "checkout.sidebar.summary.cart_items:items"
}
}
```

The syntax for the destination component name is determined by the hierarchy in the XML handle. Separate parent names with a `.` (dot) followed by the component name.

{:.bs-callout .bs-callout-info}
To retrieve the full name of the destination component name, open your browser in developer mode, select the element that you want on the **Elements** tab, go to the **Console** tab, and execute the following code: `require('ko').contextFor($0).$data.name`.

Example of setting `exports` in a component's configuration `.xml` file:

```xml
Expand Down
4 changes: 3 additions & 1 deletion guides/v2.3/release-notes/ReleaseNotes2.3.2Commerce.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ group: release-notes
title: Magento Commerce 2.3.2 Release Notes
---

*Patch code and release notes published on June 25, 2019. Release notes last updated on June 26, 2019.*
*Patch code and release notes published on June 25, 2019. Release notes last updated on July 8, 2019.*

We are pleased to present Magento Commerce 2.3.2. This release includes over 200 functional fixes to the core product, over 350 pull requests contributed by the community, and over 75 security enhancements. It includes contributions from our community members. These contributions range from minor clean-up of core code to significant enhancements to Inventory Management and GraphQL.

Expand Down Expand Up @@ -741,6 +741,8 @@ has been changed to `<argument name="resourceStockItem" xsi:type="object">Magent

### Infrastructure

* The default behavior of view models has changed in this release. Instances of view models are now shared by default. As a result, you must add the `attribute shared="false"` on the argument node of the `layout.xml` file if you want a new instance of a view model.

<!--- ENGCOM-4474-->
* The `FrontController` now explicitly requires actions to specify if they respond to `HEAD` requests. `HEAD` action mapping has also been changed to the `GET` action interface, which results in `HEAD` requests returning `200` instead of `404`. *Fix submitted by [Matti Vapa](https://github.com/mattijv) in pull request [21378](https://github.com/magento/magento2/pull/21378)*. [GitHub-21299](https://github.com/magento/magento2/issues/21299)

Expand Down
6 changes: 4 additions & 2 deletions guides/v2.3/release-notes/ReleaseNotes2.3.2OpenSource.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ group: release-notes
title: Magento Open Source 2.3.2 Release Notes
---

*Patch code and release notes published on June 25, 2019. Release notes last updated on June 26, 2019.*
*Patch code and release notes published on June 25, 2019. Release notes last updated July 8, 2019.*

We are pleased to present Magento Open Source 2.3.2. This release includes over 200 functional fixes to the core product, over 350 pull requests contributed by the community, and over 75 security enhancements. It includes significant contributions from our community members.

Expand Down Expand Up @@ -649,6 +649,8 @@ has been changed to `<argument name="resourceStockItem" xsi:type="object">Magent

### Infrastructure

* The default behavior of view models has changed in this release. Instances of view models are now shared by default. As a result, you must add the `attribute shared="false"` on the argument node of the `layout.xml` file if you want a new instance of a view model.

<!--- ENGCOM-4474-->
* The `FrontController` now explicitly requires actions to specify if they respond to `HEAD` requests. `HEAD` action mapping has also been changed to the `GET` action interface, which results in `HEAD` requests returning `200` instead of `404`. *Fix submitted by [Matti Vapa](https://github.com/mattijv) in pull request [21378](https://github.com/magento/magento2/pull/21378)*. [GitHub-21299](https://github.com/magento/magento2/issues/21299)

Expand Down Expand Up @@ -1013,7 +1015,7 @@ label, types and disabled, but the actual `file-content` was not replaced with t
* You can now insert widgets that contain a WYSIWYG field into a form. Previously, widgets with a `WYSIWYG` parameter failed when inserting them into a WYSIWYG in a form. *Fix submitted by [James Dinsdale](https://github.com/molovo) in pull request [20174](https://github.com/magento/magento2/pull/20174)*. [GitHub-19742](https://github.com/magento/magento2/issues/19742)


# Known issues
## Known issues

* **Issue**: The Async/Bulk Web APIs support only the default store view. A hot fix for this issue will be available in the near future. This issue has been resolved with the Scope parameter for Async/Bulk API patch, which is now available. See [Patch for Magento Framework Message Queue and Store Scopes](https://community.magento.com/t5/Magento-DevBlog/Patch-for-Magento-Framework-Message-Queue-and-Store-Scopes/ba-p/135209) for a full discussion of this scope-related issue and patch contents.

Expand Down

0 comments on commit f49184b

Please sign in to comment.