@seniorsistemas/angular-components 16.2.3 → 16.3.1
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.
- package/bundles/seniorsistemas-angular-components.umd.js +258 -11
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +2 -2
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/profile-picture-picker/index.d.ts +3 -0
- package/components/profile-picture-picker/models/confirmation-texts.d.ts +6 -0
- package/components/profile-picture-picker/models/cropper-labels-config.d.ts +9 -0
- package/components/profile-picture-picker/models/file-validation-errors.d.ts +10 -0
- package/components/profile-picture-picker/models/index.d.ts +2 -0
- package/components/profile-picture-picker/profile-picture-picker.component.d.ts +42 -0
- package/components/profile-picture-picker/profile-picture-picker.module.d.ts +2 -0
- package/components/thumbnail/thumbnail.service.d.ts +0 -1
- package/esm2015/components/image-cropper/image-cropper.component.js +8 -6
- package/esm2015/components/profile-picture-picker/index.js +4 -0
- package/esm2015/components/profile-picture-picker/models/confirmation-texts.js +1 -0
- package/esm2015/components/profile-picture-picker/models/cropper-labels-config.js +1 -0
- package/esm2015/components/profile-picture-picker/models/file-validation-errors.js +8 -0
- package/esm2015/components/profile-picture-picker/models/index.js +2 -0
- package/esm2015/components/profile-picture-picker/profile-picture-picker.component.js +214 -0
- package/esm2015/components/profile-picture-picker/profile-picture-picker.module.js +31 -0
- package/esm2015/components/thumbnail/thumbnail.component.js +5 -4
- package/esm2015/components/thumbnail/thumbnail.service.js +1 -2
- package/esm2015/public-api.js +2 -1
- package/esm5/components/image-cropper/image-cropper.component.js +8 -6
- package/esm5/components/profile-picture-picker/index.js +4 -0
- package/esm5/components/profile-picture-picker/models/confirmation-texts.js +1 -0
- package/esm5/components/profile-picture-picker/models/cropper-labels-config.js +1 -0
- package/esm5/components/profile-picture-picker/models/file-validation-errors.js +8 -0
- package/esm5/components/profile-picture-picker/models/index.js +2 -0
- package/esm5/components/profile-picture-picker/profile-picture-picker.component.js +217 -0
- package/esm5/components/profile-picture-picker/profile-picture-picker.module.js +34 -0
- package/esm5/components/thumbnail/thumbnail.component.js +5 -4
- package/esm5/components/thumbnail/thumbnail.service.js +1 -1
- package/esm5/public-api.js +2 -1
- package/fesm2015/seniorsistemas-angular-components.js +249 -9
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +255 -8
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/seniorsistemas-angular-components.metadata.json +1 -1
package/package.json
CHANGED
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";
|