@wix/wix-ui-icons-common 3.152.0 → 3.154.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 (52) hide show
  1. package/dist/cjs/default/general/dist/components/CollectionCloud.js +37 -0
  2. package/dist/cjs/default/general/dist/components/CollectionCloudSmall.js +37 -0
  3. package/dist/cjs/default/general/dist/index.js +6 -0
  4. package/dist/cjs/default/general/metadata.js +15 -0
  5. package/dist/cjs/lazy/general/dist/components/CollectionCloud.js +31 -0
  6. package/dist/cjs/lazy/general/dist/components/CollectionCloudSmall.js +31 -0
  7. package/dist/cjs/lazy/general/dist/components/Donation.js +1 -1
  8. package/dist/cjs/lazy/general/dist/components/DonationSmall.js +1 -1
  9. package/dist/cjs/lazy/general/dist/index.js +6 -0
  10. package/dist/cjs/odeditor/general/dist/components/Donation.js +37 -0
  11. package/dist/cjs/odeditor/general/dist/components/DonationSmall.js +37 -0
  12. package/dist/cjs/odeditor/general/dist/index.js +6 -0
  13. package/dist/cjs/odeditor/general/metadata.js +7 -0
  14. package/dist/esm/default/general/dist/components/CollectionCloud.js +7 -0
  15. package/dist/esm/default/general/dist/components/CollectionCloudSmall.js +7 -0
  16. package/dist/esm/default/general/dist/index.js +2618 -2614
  17. package/dist/esm/default/general/metadata.js +15 -0
  18. package/dist/esm/lazy/general/dist/components/CollectionCloud.js +11 -0
  19. package/dist/esm/lazy/general/dist/components/CollectionCloudSmall.js +11 -0
  20. package/dist/esm/lazy/general/dist/components/Donation.js +1 -1
  21. package/dist/esm/lazy/general/dist/components/DonationSmall.js +1 -1
  22. package/dist/esm/lazy/general/dist/index.js +3078 -3074
  23. package/dist/esm/odeditor/general/dist/components/Donation.js +7 -0
  24. package/dist/esm/odeditor/general/dist/components/DonationSmall.js +7 -0
  25. package/dist/esm/odeditor/general/dist/index.js +1464 -1460
  26. package/dist/esm/odeditor/general/metadata.js +7 -0
  27. package/dist/statics/icons/default/general/CollectionCloud.d4cd.json +3 -0
  28. package/dist/statics/icons/default/general/CollectionCloudSmall.3afc.json +3 -0
  29. package/dist/statics/icons/odeditor/general/Donation.100e.json +3 -0
  30. package/dist/statics/icons/odeditor/general/DonationSmall.005d.json +3 -0
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/dist/types/default/general/dist/components/CollectionCloud.d.ts +7 -0
  33. package/dist/types/default/general/dist/components/CollectionCloud.d.ts.map +1 -0
  34. package/dist/types/default/general/dist/components/CollectionCloudSmall.d.ts +7 -0
  35. package/dist/types/default/general/dist/components/CollectionCloudSmall.d.ts.map +1 -0
  36. package/dist/types/default/general/dist/index.d.ts +2 -0
  37. package/dist/types/default/general/dist/index.d.ts.map +1 -1
  38. package/dist/types/default/general/metadata.d.ts.map +1 -1
  39. package/dist/types/lazy/general/dist/components/CollectionCloud.d.ts +3 -0
  40. package/dist/types/lazy/general/dist/components/CollectionCloud.d.ts.map +1 -0
  41. package/dist/types/lazy/general/dist/components/CollectionCloudSmall.d.ts +3 -0
  42. package/dist/types/lazy/general/dist/components/CollectionCloudSmall.d.ts.map +1 -0
  43. package/dist/types/lazy/general/dist/index.d.ts +2 -0
  44. package/dist/types/lazy/general/dist/index.d.ts.map +1 -1
  45. package/dist/types/odeditor/general/dist/components/Donation.d.ts +7 -0
  46. package/dist/types/odeditor/general/dist/components/Donation.d.ts.map +1 -0
  47. package/dist/types/odeditor/general/dist/components/DonationSmall.d.ts +7 -0
  48. package/dist/types/odeditor/general/dist/components/DonationSmall.d.ts.map +1 -0
  49. package/dist/types/odeditor/general/dist/index.d.ts +2 -0
  50. package/dist/types/odeditor/general/dist/index.d.ts.map +1 -1
  51. package/dist/types/odeditor/general/metadata.d.ts.map +1 -1
  52. package/package.json +6 -6
@@ -5571,6 +5571,21 @@ const generalIconsMetadata = [
5571
5571
  tags: ["revert", "clockwise", "action", "button"],
5572
5572
  sizes: { "18": "RevertClockwiseSmall", "24": "RevertClockwise" }
5573
5573
  },
5574
+ {
5575
+ title: "CollectionCloud",
5576
+ category: IconCategory.WebAppsAndTechnology,
5577
+ description: "Icon - represents external or cloud collection",
5578
+ tags: [
5579
+ "collection",
5580
+ "cloud",
5581
+ "storage",
5582
+ "sync",
5583
+ "external",
5584
+ "CMS",
5585
+ "system"
5586
+ ],
5587
+ sizes: { "18": "CollectionCloudSmall", "24": "CollectionCloud" }
5588
+ },
5574
5589
  {
5575
5590
  title: "Moon",
5576
5591
  category: IconCategory.General,
@@ -0,0 +1,11 @@
1
+ import { icon } from "@wix/wix-ui-icons-common/core";
2
+ var CollectionCloud_default = icon({
3
+ name: "CollectionCloud",
4
+ hashes: { "default": "d4cd" },
5
+ category: "general",
6
+ width: 24,
7
+ height: 24
8
+ });
9
+ export {
10
+ CollectionCloud_default as default
11
+ };
@@ -0,0 +1,11 @@
1
+ import { icon } from "@wix/wix-ui-icons-common/core";
2
+ var CollectionCloudSmall_default = icon({
3
+ name: "CollectionCloudSmall",
4
+ hashes: { "default": "3afc" },
5
+ category: "general",
6
+ width: 18,
7
+ height: 18
8
+ });
9
+ export {
10
+ CollectionCloudSmall_default as default
11
+ };
@@ -1,7 +1,7 @@
1
1
  import { icon } from "@wix/wix-ui-icons-common/core";
2
2
  var Donation_default = icon({
3
3
  name: "Donation",
4
- hashes: { "default": "fd0f" },
4
+ hashes: { "default": "fd0f", "odeditor": "100e" },
5
5
  category: "general",
6
6
  width: 24,
7
7
  height: 24
@@ -1,7 +1,7 @@
1
1
  import { icon } from "@wix/wix-ui-icons-common/core";
2
2
  var DonationSmall_default = icon({
3
3
  name: "DonationSmall",
4
- hashes: { "default": "f0a3" },
4
+ hashes: { "default": "f0a3", "odeditor": "005d" },
5
5
  category: "general",
6
6
  width: 18,
7
7
  height: 18