@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.
- package/breadcrumbs/_breadcrumbs-theme.scss +3 -3
- package/breadcrumbs/breadcrumbs/breadcrumbs.component.scss +10 -10
- package/bundles/theseam-ui-common-framework.umd.js +40 -13
- package/bundles/theseam-ui-common-framework.umd.js.map +1 -1
- package/bundles/theseam-ui-common-google-maps.umd.js +1 -1
- package/bundles/theseam-ui-common-google-maps.umd.js.map +1 -1
- package/bundles/theseam-ui-common-utils.umd.js +83 -5
- package/bundles/theseam-ui-common-utils.umd.js.map +1 -1
- package/esm2015/framework/base-layout/base-layout.module.js +4 -1
- package/esm2015/framework/base-layout/directives/base-layout-side-bar-footer.directive.js +15 -0
- package/esm2015/framework/side-nav/side-nav.component.js +16 -6
- package/esm2015/framework/side-nav/side-nav.module.js +4 -2
- package/esm2015/framework/theseam-ui-common-framework.js +10 -9
- package/esm2015/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.component.js +2 -2
- package/esm2015/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.directive.js +1 -1
- package/esm2015/utils/geo-json/coerce-feature-collection.js +1 -1
- package/esm2015/utils/geo-json/geo-json-to-area.js +1 -1
- package/esm2015/utils/geo-json/is-feature-collection.validator.js +1 -1
- package/esm2015/utils/geo-json/is-only-geometry-types.js +1 -1
- package/esm2015/utils/geo-json/is-only-geometry-types.validator.js +1 -1
- package/esm2015/utils/geo-json/merge-polygons.js +1 -1
- package/esm2015/utils/geo-json/min-max-points.validator.js +56 -0
- package/esm2015/utils/geo-json/no-inner-rings.validator.js +1 -1
- package/esm2015/utils/geo-json/no-kinks.validator.js +2 -2
- package/esm2015/utils/geo-json/split-multi-polygons.js +1 -1
- package/esm2015/utils/public-api.js +2 -1
- package/fesm2015/theseam-ui-common-framework.js +31 -6
- package/fesm2015/theseam-ui-common-framework.js.map +1 -1
- package/fesm2015/theseam-ui-common-google-maps.js +1 -1
- package/fesm2015/theseam-ui-common-google-maps.js.map +1 -1
- package/fesm2015/theseam-ui-common-utils.js +59 -6
- package/fesm2015/theseam-ui-common-utils.js.map +1 -1
- package/framework/base-layout/directives/base-layout-side-bar-footer.directive.d.ts +6 -0
- package/framework/side-nav/side-nav.component.d.ts +7 -2
- package/framework/theseam-ui-common-framework.d.ts +9 -8
- package/framework/theseam-ui-common-framework.metadata.json +1 -1
- package/framework/top-bar/_top-bar-theme.scss +5 -5
- package/google-maps/theseam-ui-common-google-maps.metadata.json +1 -1
- package/package.json +1 -1
- package/utils/geo-json/min-max-points.validator.d.ts +3 -0
- package/utils/public-api.d.ts +1 -0
- package/utils/theseam-ui-common-utils.metadata.json +1 -1
|
@@ -1493,7 +1493,7 @@ class TheSeamGoogleMapsPlacesAutoCompleteComponent {
|
|
|
1493
1493
|
TheSeamGoogleMapsPlacesAutoCompleteComponent.decorators = [
|
|
1494
1494
|
{ type: Component, args: [{
|
|
1495
1495
|
selector: 'seam-google-maps-places-autocomplete',
|
|
1496
|
-
template: "<div *ngIf=\"icon\" class=\"search-container--icon-wrapper\">\
|
|
1496
|
+
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",
|
|
1497
1497
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1498
1498
|
exportAs: 'seamGoogleMapsPlacesAutoComplete',
|
|
1499
1499
|
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"]
|