@theseam/ui-common 0.3.7 → 0.3.9

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 (42) hide show
  1. package/breadcrumbs/_breadcrumbs-theme.scss +3 -3
  2. package/breadcrumbs/breadcrumbs/breadcrumbs.component.scss +10 -10
  3. package/bundles/theseam-ui-common-framework.umd.js +40 -13
  4. package/bundles/theseam-ui-common-framework.umd.js.map +1 -1
  5. package/bundles/theseam-ui-common-google-maps.umd.js +1 -1
  6. package/bundles/theseam-ui-common-google-maps.umd.js.map +1 -1
  7. package/bundles/theseam-ui-common-utils.umd.js +83 -5
  8. package/bundles/theseam-ui-common-utils.umd.js.map +1 -1
  9. package/esm2015/framework/base-layout/base-layout.module.js +4 -1
  10. package/esm2015/framework/base-layout/directives/base-layout-side-bar-footer.directive.js +15 -0
  11. package/esm2015/framework/side-nav/side-nav.component.js +16 -6
  12. package/esm2015/framework/side-nav/side-nav.module.js +4 -2
  13. package/esm2015/framework/theseam-ui-common-framework.js +10 -9
  14. package/esm2015/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.component.js +2 -2
  15. package/esm2015/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.directive.js +1 -1
  16. package/esm2015/utils/geo-json/coerce-feature-collection.js +1 -1
  17. package/esm2015/utils/geo-json/geo-json-to-area.js +1 -1
  18. package/esm2015/utils/geo-json/is-feature-collection.validator.js +1 -1
  19. package/esm2015/utils/geo-json/is-only-geometry-types.js +1 -1
  20. package/esm2015/utils/geo-json/is-only-geometry-types.validator.js +1 -1
  21. package/esm2015/utils/geo-json/merge-polygons.js +1 -1
  22. package/esm2015/utils/geo-json/min-max-points.validator.js +56 -0
  23. package/esm2015/utils/geo-json/no-inner-rings.validator.js +1 -1
  24. package/esm2015/utils/geo-json/no-kinks.validator.js +2 -2
  25. package/esm2015/utils/geo-json/split-multi-polygons.js +1 -1
  26. package/esm2015/utils/public-api.js +2 -1
  27. package/fesm2015/theseam-ui-common-framework.js +31 -6
  28. package/fesm2015/theseam-ui-common-framework.js.map +1 -1
  29. package/fesm2015/theseam-ui-common-google-maps.js +1 -1
  30. package/fesm2015/theseam-ui-common-google-maps.js.map +1 -1
  31. package/fesm2015/theseam-ui-common-utils.js +59 -6
  32. package/fesm2015/theseam-ui-common-utils.js.map +1 -1
  33. package/framework/base-layout/directives/base-layout-side-bar-footer.directive.d.ts +6 -0
  34. package/framework/side-nav/side-nav.component.d.ts +7 -2
  35. package/framework/theseam-ui-common-framework.d.ts +9 -8
  36. package/framework/theseam-ui-common-framework.metadata.json +1 -1
  37. package/framework/top-bar/_top-bar-theme.scss +5 -5
  38. package/google-maps/theseam-ui-common-google-maps.metadata.json +1 -1
  39. package/package.json +1 -1
  40. package/utils/geo-json/min-max-points.validator.d.ts +3 -0
  41. package/utils/public-api.d.ts +1 -0
  42. package/utils/theseam-ui-common-utils.metadata.json +1 -1
@@ -1925,7 +1925,7 @@
1925
1925
  TheSeamGoogleMapsPlacesAutoCompleteComponent.decorators = [
1926
1926
  { type: core.Component, args: [{
1927
1927
  selector: 'seam-google-maps-places-autocomplete',
1928
- template: "<div *ngIf=\"icon\" class=\"search-container--icon-wrapper\">\r\n <seam-icon [icon]=\"icon\" class=\"text-muted\" size=\"lg\"></seam-icon>\r\n</div>\r\n<label *ngIf=\"label || placeholder\" [attr.for]=\"inp.id\" class=\"sr-only\">{{ label || placeholder }}</label>\r\n<input #inp=\"seamInput\"\r\n seamInput\r\n seamGoogleMapsPlacesAutocomplete\r\n [disabled]=\"disabled\"\r\n [attr.placeholder]=\"placeholder\"\r\n [attr.autocorrect]=\"autocorrect\"\r\n [attr.autocapitalize]=\"autocapitalize\"\r\n [options]=\"_options\"\r\n/>\r\n",
1928
+ template: "<div *ngIf=\"icon\" class=\"search-container--icon-wrapper\">\n <seam-icon [icon]=\"icon\" class=\"text-muted\" size=\"lg\"></seam-icon>\n</div>\n<label *ngIf=\"label || placeholder\" [attr.for]=\"inp.id\" class=\"sr-only\">{{ label || placeholder }}</label>\n<input #inp=\"seamInput\"\n seamInput\n seamGoogleMapsPlacesAutocomplete\n [disabled]=\"disabled\"\n [attr.placeholder]=\"placeholder\"\n [attr.autocorrect]=\"autocorrect\"\n [attr.autocapitalize]=\"autocapitalize\"\n [options]=\"_options\"\n/>\n",
1929
1929
  changeDetection: core.ChangeDetectionStrategy.OnPush,
1930
1930
  exportAs: 'seamGoogleMapsPlacesAutoComplete',
1931
1931
  styles: [":host{position:relative;width:100%}:host>input{padding-left:40px}:host .search-container--icon-wrapper{position:absolute;top:6px;left:10px;bottom:0px}:host .search-container--icon-wrapper ::ng-deep .svg-inline--fa{vertical-align:middle}\n"]