@theseam/ui-common 0.4.24 → 0.4.26

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 (71) hide show
  1. package/esm2020/data-filters/filters/data-filter-search/data-filter-search.component.mjs +1 -1
  2. package/esm2020/data-filters/filters/data-filter-text/data-filter-text.component.mjs +1 -1
  3. package/esm2020/datatable/datatable/datatable.component.mjs +3 -3
  4. package/esm2020/datatable/datatable-action-menu/datatable-action-menu.component.mjs +3 -3
  5. package/esm2020/datatable/datatable-column-preferences/datatable-column-preferences.component.mjs +1 -1
  6. package/esm2020/form-field/input.directive.mjs +8 -4
  7. package/esm2020/framework/schema-form-controls/schema-form-input/schema-form-input.component.mjs +1 -1
  8. package/esm2020/framework/schema-form-controls/schema-form-number/schema-form-number.component.mjs +1 -1
  9. package/esm2020/framework/schema-form-controls/schema-form-select/schema-form-select.component.mjs +2 -2
  10. package/esm2020/framework/schema-form-controls/schema-form-tel/schema-form-tel.component.mjs +2 -2
  11. package/esm2020/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.component.mjs +3 -3
  12. package/esm2020/rich-text/public-api.mjs +5 -0
  13. package/esm2020/rich-text/rich-text/rich-text.component.mjs +573 -0
  14. package/esm2020/rich-text/rich-text.module.mjs +32 -0
  15. package/esm2020/rich-text/theseam-ui-common-rich-text.mjs +5 -0
  16. package/esm2020/rich-text/utils/models.mjs +24 -0
  17. package/esm2020/rich-text/utils/utils.mjs +123 -0
  18. package/esm2020/tel-input/tel-input/tel-input.component.mjs +2 -2
  19. package/esm2020/utils/geo-json/coerce-feature-collection.mjs +1 -1
  20. package/esm2020/utils/geo-json/is-feature-collection.validator.mjs +1 -1
  21. package/esm2020/utils/geo-json/is-only-geometry-types.mjs +1 -1
  22. package/esm2020/utils/geo-json/merge-polygons.mjs +1 -1
  23. package/esm2020/utils/geo-json/no-inner-rings.validator.mjs +1 -1
  24. package/esm2020/utils/geo-json/split-multi-polygons.mjs +1 -1
  25. package/esm2020/utils/is-null-or-undefined-or-empty.mjs +4 -0
  26. package/esm2020/utils/not-null-or-undefined-or-empty.mjs +4 -0
  27. package/esm2020/utils/public-api.mjs +3 -1
  28. package/fesm2015/theseam-ui-common-data-filters.mjs +2 -2
  29. package/fesm2015/theseam-ui-common-data-filters.mjs.map +1 -1
  30. package/fesm2015/theseam-ui-common-datatable.mjs +5 -5
  31. package/fesm2015/theseam-ui-common-datatable.mjs.map +1 -1
  32. package/fesm2015/theseam-ui-common-form-field.mjs +7 -3
  33. package/fesm2015/theseam-ui-common-form-field.mjs.map +1 -1
  34. package/fesm2015/theseam-ui-common-framework.mjs +4 -4
  35. package/fesm2015/theseam-ui-common-framework.mjs.map +1 -1
  36. package/fesm2015/theseam-ui-common-google-maps.mjs +2 -2
  37. package/fesm2015/theseam-ui-common-google-maps.mjs.map +1 -1
  38. package/fesm2015/theseam-ui-common-rich-text.mjs +744 -0
  39. package/fesm2015/theseam-ui-common-rich-text.mjs.map +1 -0
  40. package/fesm2015/theseam-ui-common-tel-input.mjs +1 -1
  41. package/fesm2015/theseam-ui-common-tel-input.mjs.map +1 -1
  42. package/fesm2015/theseam-ui-common-utils.mjs +9 -1
  43. package/fesm2015/theseam-ui-common-utils.mjs.map +1 -1
  44. package/fesm2020/theseam-ui-common-data-filters.mjs +2 -2
  45. package/fesm2020/theseam-ui-common-data-filters.mjs.map +1 -1
  46. package/fesm2020/theseam-ui-common-datatable.mjs +5 -5
  47. package/fesm2020/theseam-ui-common-datatable.mjs.map +1 -1
  48. package/fesm2020/theseam-ui-common-form-field.mjs +7 -3
  49. package/fesm2020/theseam-ui-common-form-field.mjs.map +1 -1
  50. package/fesm2020/theseam-ui-common-framework.mjs +4 -4
  51. package/fesm2020/theseam-ui-common-framework.mjs.map +1 -1
  52. package/fesm2020/theseam-ui-common-google-maps.mjs +2 -2
  53. package/fesm2020/theseam-ui-common-google-maps.mjs.map +1 -1
  54. package/fesm2020/theseam-ui-common-rich-text.mjs +752 -0
  55. package/fesm2020/theseam-ui-common-rich-text.mjs.map +1 -0
  56. package/fesm2020/theseam-ui-common-tel-input.mjs +1 -1
  57. package/fesm2020/theseam-ui-common-tel-input.mjs.map +1 -1
  58. package/fesm2020/theseam-ui-common-utils.mjs +9 -1
  59. package/fesm2020/theseam-ui-common-utils.mjs.map +1 -1
  60. package/form-field/input.directive.d.ts +2 -1
  61. package/package.json +9 -1
  62. package/rich-text/index.d.ts +5 -0
  63. package/rich-text/public-api.d.ts +4 -0
  64. package/rich-text/rich-text/rich-text.component.d.ts +192 -0
  65. package/rich-text/rich-text.module.d.ts +10 -0
  66. package/rich-text/utils/models.d.ts +343 -0
  67. package/rich-text/utils/utils.d.ts +14 -0
  68. package/styles/vendor/quill/_quill.scss +162 -10
  69. package/utils/is-null-or-undefined-or-empty.d.ts +1 -0
  70. package/utils/not-null-or-undefined-or-empty.d.ts +1 -0
  71. package/utils/public-api.d.ts +2 -0
@@ -1845,13 +1845,13 @@ class TheSeamGoogleMapsPlacesAutoCompleteComponent {
1845
1845
  }
1846
1846
  }
1847
1847
  TheSeamGoogleMapsPlacesAutoCompleteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TheSeamGoogleMapsPlacesAutoCompleteComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
1848
- TheSeamGoogleMapsPlacesAutoCompleteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TheSeamGoogleMapsPlacesAutoCompleteComponent, selector: "seam-google-maps-places-autocomplete", inputs: { label: "label", icon: "icon", disabled: "disabled", placeholder: "placeholder", autocorrect: "autocorrect", autocapitalize: "autocapitalize", tabIndex: "tabIndex", options: "options" }, outputs: { placeChanged: "placeChanged" }, host: { listeners: { "click": "_onClick(event)", "focus": "_onFocus($event)" }, properties: { "attr.tabindex": "this._attrTabIndex" } }, viewQueries: [{ propertyName: "_inputDirective", first: true, predicate: ["inp"], descendants: true, read: InputDirective, static: true }, { propertyName: "__autocompleteDirective", first: true, predicate: TheSeamGoogleMapsPlacesAutocompleteDirective, descendants: true, static: true }], exportAs: ["seamGoogleMapsPlacesAutoComplete"], ngImport: i0, 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", styles: [":host{position:relative;width:100%}:host>input{padding-left:40px}:host .search-container--icon-wrapper{position:absolute;top:6px;left:10px;bottom:0}:host .search-container--icon-wrapper ::ng-deep .svg-inline--fa{vertical-align:middle}\n"], dependencies: [{ kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.IconComponent, selector: "seam-icon", inputs: ["grayscaleOnDisable", "disabled", "iconClass", "icon", "size", "showDefaultOnError", "defaultIcon", "iconType"] }, { kind: "directive", type: i3.InputDirective, selector: "input[seamInput], textarea[seamInput], ng-select[seamInput], seam-checkbox[seamInput] [ngbRadioGroup], seam-tel-input[seamInput], quill-editor[seamInput], seam-google-maps[seamInput]", inputs: ["seamInputSize", "id", "type", "placeholder", "required", "disabled", "readonly"], exportAs: ["seamInput"] }, { kind: "directive", type: TheSeamGoogleMapsPlacesAutocompleteDirective, selector: "input[seamGoogleMapsPlacesAutocomplete]", inputs: ["options"], outputs: ["placeChanged"], exportAs: ["seamGoogleMapsPlacesAutocomplete"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1848
+ TheSeamGoogleMapsPlacesAutoCompleteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: TheSeamGoogleMapsPlacesAutoCompleteComponent, selector: "seam-google-maps-places-autocomplete", inputs: { label: "label", icon: "icon", disabled: "disabled", placeholder: "placeholder", autocorrect: "autocorrect", autocapitalize: "autocapitalize", tabIndex: "tabIndex", options: "options" }, outputs: { placeChanged: "placeChanged" }, host: { listeners: { "click": "_onClick(event)", "focus": "_onFocus($event)" }, properties: { "attr.tabindex": "this._attrTabIndex" } }, viewQueries: [{ propertyName: "_inputDirective", first: true, predicate: ["inp"], descendants: true, read: InputDirective, static: true }, { propertyName: "__autocompleteDirective", first: true, predicate: TheSeamGoogleMapsPlacesAutocompleteDirective, descendants: true, static: true }], exportAs: ["seamGoogleMapsPlacesAutoComplete"], ngImport: i0, 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", styles: [":host{position:relative;width:100%}:host>input{padding-left:40px}:host .search-container--icon-wrapper{position:absolute;top:6px;left:10px;bottom:0}:host .search-container--icon-wrapper ::ng-deep .svg-inline--fa{vertical-align:middle}\n"], dependencies: [{ kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.IconComponent, selector: "seam-icon", inputs: ["grayscaleOnDisable", "disabled", "iconClass", "icon", "size", "showDefaultOnError", "defaultIcon", "iconType"] }, { kind: "directive", type: i3.InputDirective, selector: "input[seamInput], textarea[seamInput], ng-select[seamInput], seam-checkbox[seamInput] [ngbRadioGroup], seam-tel-input[seamInput], quill-editor[seamInput], seam-google-maps[seamInput], seam-rich-text[seamInput]", inputs: ["seamInputSize", "id", "type", "placeholder", "required", "disabled", "readonly"], exportAs: ["seamInput"] }, { kind: "directive", type: TheSeamGoogleMapsPlacesAutocompleteDirective, selector: "input[seamGoogleMapsPlacesAutocomplete]", inputs: ["options"], outputs: ["placeChanged"], exportAs: ["seamGoogleMapsPlacesAutocomplete"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
1849
1849
  __decorate([
1850
1850
  InputBoolean()
1851
1851
  ], TheSeamGoogleMapsPlacesAutoCompleteComponent.prototype, "disabled", void 0);
1852
1852
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TheSeamGoogleMapsPlacesAutoCompleteComponent, decorators: [{
1853
1853
  type: Component,
1854
- args: [{ selector: 'seam-google-maps-places-autocomplete', changeDetection: ChangeDetectionStrategy.OnPush, exportAs: 'seamGoogleMapsPlacesAutoComplete', 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", styles: [":host{position:relative;width:100%}:host>input{padding-left:40px}:host .search-container--icon-wrapper{position:absolute;top:6px;left:10px;bottom:0}:host .search-container--icon-wrapper ::ng-deep .svg-inline--fa{vertical-align:middle}\n"] }]
1854
+ args: [{ selector: 'seam-google-maps-places-autocomplete', changeDetection: ChangeDetectionStrategy.OnPush, exportAs: 'seamGoogleMapsPlacesAutoComplete', 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", styles: [":host{position:relative;width:100%}:host>input{padding-left:40px}:host .search-container--icon-wrapper{position:absolute;top:6px;left:10px;bottom:0}:host .search-container--icon-wrapper ::ng-deep .svg-inline--fa{vertical-align:middle}\n"] }]
1855
1855
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { label: [{
1856
1856
  type: Input
1857
1857
  }], icon: [{