@seniorsistemas/angular-components 16.2.3 → 16.3.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 (38) hide show
  1. package/bundles/seniorsistemas-angular-components.umd.js +230 -7
  2. package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
  3. package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
  4. package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
  5. package/components/profile-picture-picker/index.d.ts +3 -0
  6. package/components/profile-picture-picker/models/cropper-labels-config.d.ts +9 -0
  7. package/components/profile-picture-picker/models/file-validation-errors.d.ts +10 -0
  8. package/components/profile-picture-picker/models/index.d.ts +2 -0
  9. package/components/profile-picture-picker/profile-picture-picker.component.d.ts +38 -0
  10. package/components/profile-picture-picker/profile-picture-picker.module.d.ts +2 -0
  11. package/components/thumbnail/thumbnail.service.d.ts +0 -1
  12. package/esm2015/components/image-cropper/image-cropper.component.js +8 -6
  13. package/esm2015/components/profile-picture-picker/index.js +4 -0
  14. package/esm2015/components/profile-picture-picker/models/cropper-labels-config.js +1 -0
  15. package/esm2015/components/profile-picture-picker/models/file-validation-errors.js +8 -0
  16. package/esm2015/components/profile-picture-picker/models/index.js +2 -0
  17. package/esm2015/components/profile-picture-picker/profile-picture-picker.component.js +194 -0
  18. package/esm2015/components/profile-picture-picker/profile-picture-picker.module.js +25 -0
  19. package/esm2015/components/thumbnail/thumbnail.component.js +5 -4
  20. package/esm2015/components/thumbnail/thumbnail.service.js +1 -2
  21. package/esm2015/public-api.js +2 -1
  22. package/esm5/components/image-cropper/image-cropper.component.js +8 -6
  23. package/esm5/components/profile-picture-picker/index.js +4 -0
  24. package/esm5/components/profile-picture-picker/models/cropper-labels-config.js +1 -0
  25. package/esm5/components/profile-picture-picker/models/file-validation-errors.js +8 -0
  26. package/esm5/components/profile-picture-picker/models/index.js +2 -0
  27. package/esm5/components/profile-picture-picker/profile-picture-picker.component.js +196 -0
  28. package/esm5/components/profile-picture-picker/profile-picture-picker.module.js +28 -0
  29. package/esm5/components/thumbnail/thumbnail.component.js +5 -4
  30. package/esm5/components/thumbnail/thumbnail.service.js +1 -1
  31. package/esm5/public-api.js +2 -1
  32. package/fesm2015/seniorsistemas-angular-components.js +224 -9
  33. package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
  34. package/fesm5/seniorsistemas-angular-components.js +229 -8
  35. package/fesm5/seniorsistemas-angular-components.js.map +1 -1
  36. package/package.json +1 -1
  37. package/public-api.d.ts +1 -0
  38. package/seniorsistemas-angular-components.metadata.json +1 -1
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "http://git.senior.com.br/arquitetura/angular-components"
7
7
  },
8
- "version": "16.2.3",
8
+ "version": "16.3.0",
9
9
  "peerDependencies": {
10
10
  "@angular/animations": "~9.1.13",
11
11
  "@angular/cdk": "~9.2.4",
package/public-api.d.ts CHANGED
@@ -31,6 +31,7 @@ export * from "./components/table/index";
31
31
  export * from "./components/thumbnail/index";
32
32
  export * from "./components/tile/index";
33
33
  export * from "./components/token-list/index";
34
+ export * from "./components/profile-picture-picker";
34
35
  export * from "./components/utils/index";
35
36
  export * from "./components/global-search/index";
36
37
  export * from "./components/code-editor/index";