12345678910111213141516171819202122232425262728293031323334 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- var config = {
- map: {
- '*': {
- categoryForm: 'Magento_Catalog/catalog/category/form',
- newCategoryDialog: 'Magento_Catalog/js/new-category-dialog',
- categoryTree: 'Magento_Catalog/js/category-tree',
- productGallery: 'Magento_Catalog/js/product-gallery',
- baseImage: 'Magento_Catalog/catalog/base-image-uploader',
- productAttributes: 'Magento_Catalog/catalog/product-attributes',
- categoryCheckboxTree: 'Magento_Catalog/js/category-checkbox-tree'
- }
- },
- deps: [
- 'Magento_Catalog/catalog/product'
- ],
- config: {
- mixins: {
- 'Magento_Catalog/js/components/use-parent-settings/select': {
- 'Magento_Catalog/js/components/use-parent-settings/toggle-disabled-mixin': true
- },
- 'Magento_Catalog/js/components/use-parent-settings/textarea': {
- 'Magento_Catalog/js/components/use-parent-settings/toggle-disabled-mixin': true
- },
- 'Magento_Catalog/js/components/use-parent-settings/single-checkbox': {
- 'Magento_Catalog/js/components/use-parent-settings/toggle-disabled-mixin': true
- }
- }
- }
- };
|