mis-crystal-design-system 1.1.9 → 1.1.91

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 (54) hide show
  1. package/bundles/mis-crystal-design-system-src-datepicker.umd.js +1 -1
  2. package/bundles/mis-crystal-design-system-src-datepicker.umd.js.map +1 -1
  3. package/bundles/mis-crystal-design-system-src-datepicker.umd.min.js.map +1 -1
  4. package/bundles/mis-crystal-design-system.umd.js +437 -30
  5. package/bundles/mis-crystal-design-system.umd.js.map +1 -1
  6. package/bundles/mis-crystal-design-system.umd.min.js +6 -6
  7. package/bundles/mis-crystal-design-system.umd.min.js.map +1 -1
  8. package/drawer/drawer-body/drawer-body.component.d.ts +12 -0
  9. package/drawer/drawer-constants.d.ts +3 -0
  10. package/drawer/drawer-ref.d.ts +13 -0
  11. package/drawer/drawer.module.d.ts +5 -0
  12. package/drawer/drawer.scss +20 -0
  13. package/drawer/drawer.service.d.ts +18 -0
  14. package/drawer/index.d.ts +1 -0
  15. package/drawer/public_api.d.ts +4 -0
  16. package/esm2015/chip/chip.module.js +1 -1
  17. package/esm2015/drawer/drawer-body/drawer-body.component.js +44 -0
  18. package/esm2015/drawer/drawer-constants.js +4 -0
  19. package/esm2015/drawer/drawer-ref.js +28 -0
  20. package/esm2015/drawer/drawer.module.js +28 -0
  21. package/esm2015/drawer/drawer.service.js +59 -0
  22. package/esm2015/drawer/index.js +2 -0
  23. package/esm2015/drawer/public_api.js +5 -0
  24. package/esm2015/fab/fab.component.js +66 -0
  25. package/esm2015/fab/fab.module.js +16 -0
  26. package/esm2015/fab/index.js +2 -0
  27. package/esm2015/fab/public_api.js +3 -0
  28. package/esm2015/mis-crystal-design-system.js +1 -23
  29. package/esm2015/multi-select-dropdown/multi-select-dropdown.component.js +1 -1
  30. package/esm2015/nested-multi-select-dropdown/nested-multi-select-dropdown.component.js +1 -1
  31. package/esm2015/public-api.js +16 -13
  32. package/esm2015/table/table.component.js +1 -1
  33. package/esm2015/toast/index.js +2 -0
  34. package/esm2015/toast/public_api.js +3 -0
  35. package/esm2015/toast/toast.component.js +30 -0
  36. package/esm2015/toast/toast.data.service.js +29 -0
  37. package/esm2015/toast/toast.module.js +28 -0
  38. package/esm2015/toast/toast.service.js +99 -0
  39. package/fab/fab.component.d.ts +29 -0
  40. package/fab/fab.module.d.ts +4 -0
  41. package/fab/index.d.ts +1 -0
  42. package/fab/public_api.d.ts +2 -0
  43. package/fesm2015/mis-crystal-design-system.js +396 -8
  44. package/fesm2015/mis-crystal-design-system.js.map +1 -1
  45. package/mis-crystal-design-system.d.ts +0 -22
  46. package/mis-crystal-design-system.metadata.json +1 -1
  47. package/package.json +3 -2
  48. package/public-api.d.ts +15 -12
  49. package/toast/index.d.ts +1 -0
  50. package/toast/public_api.d.ts +2 -0
  51. package/toast/toast.component.d.ts +5 -0
  52. package/toast/toast.data.service.d.ts +8 -0
  53. package/toast/toast.module.d.ts +5 -0
  54. package/toast/toast.service.d.ts +35 -0
@@ -323,7 +323,7 @@
323
323
  ar[i] = from[i];
324
324
  }
325
325
  }
326
- return to.concat(ar || from);
326
+ return to.concat(ar || Array.prototype.slice.call(from));
327
327
  }
328
328
  function __await(v) {
329
329
  return this instanceof __await ? (this.v = v, this) : new __await(v);