@commercetools-frontend/assets 20.12.0 → 21.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +10 -8
  3. package/application-icons/{11.ShoppingBag.svg → bag.svg} +0 -0
  4. package/application-icons/{18.Bell.svg → bell.svg} +0 -0
  5. package/application-icons/{15.Box.svg → box.svg} +0 -0
  6. package/application-icons/{29.Chat.svg → chat.svg} +0 -0
  7. package/application-icons/{19.Code.svg → code.svg} +0 -0
  8. package/application-icons/{06.Export.svg → export.svg} +0 -0
  9. package/application-icons/{02.Files.svg → files.svg} +0 -0
  10. package/application-icons/{03.Folder.svg → folder.svg} +0 -0
  11. package/application-icons/{07.Gift.svg → gift.svg} +0 -0
  12. package/application-icons/{17.Globe.svg → globe.svg} +0 -0
  13. package/application-icons/{23.Graph.svg → graph.svg} +0 -0
  14. package/application-icons/{28.Headphones.svg → headphones.svg} +0 -0
  15. package/application-icons/{05.Import.svg → import.svg} +0 -0
  16. package/application-icons/{16.Location.svg → location.svg} +0 -0
  17. package/application-icons/{25.Network.svg → network.svg} +0 -0
  18. package/application-icons/{08.Percentage.svg → percentage.svg} +0 -0
  19. package/application-icons/{09.Pricetag.svg → pricetag.svg} +0 -0
  20. package/application-icons/{04.Rocket.svg → rocket.svg} +0 -0
  21. package/application-icons/{22.Monitor.svg → screen.svg} +0 -0
  22. package/application-icons/{27.Search.svg → search.svg} +0 -0
  23. package/application-icons/{20.Settings.svg → settings.svg} +0 -0
  24. package/application-icons/{30.Special.svg → special.svg} +0 -0
  25. package/application-icons/{01.Stack.svg → stack.svg} +0 -0
  26. package/application-icons/{10.DolarStamp.svg → stamp.svg} +0 -0
  27. package/application-icons/{12.Star.svg → star.svg} +0 -0
  28. package/application-icons/{24.Stats.svg → stats.svg} +0 -0
  29. package/application-icons/{13.ShoppingCart.svg → trolley.svg} +0 -0
  30. package/application-icons/{14.Truck.svg → truck.svg} +0 -0
  31. package/application-icons/{26.Users.svg → users.svg} +0 -0
  32. package/application-icons/{21.Wrench.svg → wrench.svg} +0 -0
  33. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @commercetools-frontend/assets
2
2
 
3
+ ## 21.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2430](https://github.com/commercetools/merchant-center-application-kit/pull/2430) [`bb1f7d75`](https://github.com/commercetools/merchant-center-application-kit/commit/bb1f7d75ff54f7fef05c4d2b3328b88e400b4867) Thanks [@emmenko](https://github.com/emmenko)! - Update readme
8
+
9
+ ## 21.0.0-rc.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#2430](https://github.com/commercetools/merchant-center-application-kit/pull/2430) [`1bee4f25`](https://github.com/commercetools/merchant-center-application-kit/commit/1bee4f25043af3e6408f624fa3e632bd7e39a587) Thanks [@emmenko](https://github.com/emmenko)! - Update readme
14
+
15
+ ## 20.12.3
16
+
17
+ ### Patch Changes
18
+
19
+ - [#2434](https://github.com/commercetools/merchant-center-application-kit/pull/2434) [`630ee1b5`](https://github.com/commercetools/merchant-center-application-kit/commit/630ee1b5d0c70c05104eaf4712b1db662fe8f8f7) Thanks [@emmenko](https://github.com/emmenko)! - Lowercase application icons
20
+
21
+ ## 20.12.1
22
+
23
+ ### Patch Changes
24
+
25
+ - [#2424](https://github.com/commercetools/merchant-center-application-kit/pull/2424) [`6f02335c`](https://github.com/commercetools/merchant-center-application-kit/commit/6f02335cd1fc05751e0398945b9d0fde0ef86c35) Thanks [@emmenko](https://github.com/emmenko)! - Use simpler names for application icons
26
+
3
27
  ## 20.12.0
4
28
 
5
29
  ### Minor Changes
package/README.md CHANGED
@@ -4,9 +4,17 @@
4
4
  <a href="https://www.npmjs.com/package/@commercetools-frontend/assets"><img src="https://badgen.net/npm/v/@commercetools-frontend/assets" alt="Latest release (latest dist-tag)" /></a> <a href="https://www.npmjs.com/package/@commercetools-frontend/assets"><img src="https://badgen.net/npm/v/@commercetools-frontend/assets/next" alt="Latest release (next dist-tag)" /></a> <a href="https://bundlephobia.com/result?p=@commercetools-frontend/assets"><img src="https://badgen.net/bundlephobia/minzip/@commercetools-frontend/assets" alt="Minified + GZipped size" /></a> <a href="https://github.com/commercetools/merchant-center-application-kit/blob/main/LICENSE"><img src="https://badgen.net/github/license/commercetools/merchant-center-application-kit" alt="GitHub license" /></a>
5
5
  </p>
6
6
 
7
- This package contains image assets that can be used in the creation of Merchant Center applications. These are used within the package `application-shell`. The images can be used directly, from the `images` folder.
7
+ This package contains various assets that can be used in Merchant Center Custom Applications.
8
8
 
9
- ## Usage
9
+ ## Install
10
+
11
+ ```bash
12
+ $ npm install --save @commercetools-frontend/assets
13
+ ```
14
+
15
+ ## Using SVG images
16
+
17
+ The `images` folder contains SVG images to be imported and used as `<img src>` URLs.
10
18
 
11
19
  ```js
12
20
  import React from 'react';
@@ -19,9 +27,3 @@ const Component = () => (
19
27
  </div>
20
28
  );
21
29
  ```
22
-
23
- ## Install
24
-
25
- ```bash
26
- $ npm install --save @commercetools-frontend/assets
27
- ```
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools-frontend/assets",
3
- "version": "20.12.0",
3
+ "version": "21.0.0",
4
4
  "description": "Assets for building mc apps",
5
5
  "bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
6
6
  "repository": {