@smart-webcomponents-angular/combobox 9.2.73 → 13.0.10

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 (51) hide show
  1. package/README.md +10 -2
  2. package/combobox/index.d.ts +1 -0
  3. package/combobox/smart-webcomponents-angular-combobox.d.ts +2 -2
  4. package/combobox/smart.combobox.d.ts +6 -6
  5. package/combobox/smart.combobox.module.d.ts +7 -0
  6. package/combobox/smart.element.d.ts +4 -1
  7. package/combobox/smart.listitem.d.ts +3 -0
  8. package/combobox/smart.listitemsgroup.d.ts +3 -0
  9. package/common/i18n.phonenumbers.min.js +501 -0
  10. package/common/runtime.js +748 -0
  11. package/esm2020/combobox/index.mjs +2 -0
  12. package/{esm2015/combobox/public_api.js → esm2020/combobox/public_api.mjs} +1 -1
  13. package/{esm2015/combobox/smart-webcomponents-angular-combobox.js → esm2020/combobox/smart-webcomponents-angular-combobox.mjs} +2 -3
  14. package/esm2020/combobox/smart.combobox.mjs +1042 -0
  15. package/esm2020/combobox/smart.combobox.module.mjs +20 -0
  16. package/esm2020/combobox/smart.element.mjs +96 -0
  17. package/esm2020/combobox/smart.listitem.mjs +150 -0
  18. package/esm2020/combobox/smart.listitemsgroup.mjs +60 -0
  19. package/fesm2015/{smart-webcomponents-angular-combobox.js → smart-webcomponents-angular-combobox.mjs} +235 -146
  20. package/fesm2015/smart-webcomponents-angular-combobox.mjs.map +1 -0
  21. package/fesm2020/smart-webcomponents-angular-combobox.mjs +1366 -0
  22. package/fesm2020/smart-webcomponents-angular-combobox.mjs.map +1 -0
  23. package/images/flags.png +0 -0
  24. package/index.d.ts +31835 -28915
  25. package/package.json +26 -24
  26. package/source/modules/smart.combobox.js +1 -1
  27. package/source/smart.button.js +2 -2
  28. package/source/smart.checkbox.js +2 -2
  29. package/source/smart.combobox.js +2 -2
  30. package/source/smart.dropdownlist.js +2 -2
  31. package/source/smart.element.js +2 -2
  32. package/source/smart.listbox.js +2 -2
  33. package/source/smart.radiobutton.js +2 -2
  34. package/source/smart.scrollbar.js +2 -2
  35. package/styles/font/smart-icons.eot +0 -0
  36. package/styles/font/smart-icons.svg +64 -2
  37. package/styles/font/smart-icons.ttf +0 -0
  38. package/styles/font/smart-icons.woff +0 -0
  39. package/styles/font/smart-icons.woff2 +0 -0
  40. package/styles/smart.base.css +4 -4
  41. package/styles/smart.combobox.css +2 -2
  42. package/styles/smart.common.css +1 -1
  43. package/bundles/smart-webcomponents-angular-combobox.umd.js +0 -2011
  44. package/bundles/smart-webcomponents-angular-combobox.umd.min.js +0 -25
  45. package/combobox/smart-webcomponents-angular-combobox.metadata.json +0 -1
  46. package/esm2015/combobox/smart.combobox.js +0 -986
  47. package/esm2015/combobox/smart.combobox.module.js +0 -15
  48. package/esm2015/combobox/smart.element.js +0 -83
  49. package/esm2015/combobox/smart.listitem.js +0 -140
  50. package/esm2015/combobox/smart.listitemsgroup.js +0 -60
  51. package/fesm2015/smart-webcomponents-angular-combobox.js.map +0 -1
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
  Smart.ComboBox represents a feature-complete, responsive and touch friendly Angular ComboBox component.
3
3
  > This is a commercial product and requires a paid license for use. You can purchase a license at https://www.jqwidgets.com/license/ or start a free 30-day trial.
4
4
  >
5
+ ## Angular 13 support
6
+
7
+ The Smart UI for Angular components are packaged using the latest Angular Package Format guidelines.
8
+
5
9
  ## Resources
6
10
  * [Getting Started](https://www.htmlelements.com/docs/angular-cli/)
7
11
  * [View Online Demos](https://www.htmlelements.com/angular/)
@@ -34,8 +38,12 @@ npm install @smart-webcomponents-angular/combobox
34
38
  The CSS files are available in ../node_modules/@smart-webcomponents-angular/combobox/styles/ folder.
35
39
  ```javascript
36
40
  "styles": [
37
- "node_modules/@smart-webcomponents-angular/combobox/styles/smart.combobox.css"
41
+ "node_modules/@smart-webcomponents-angular/combobox/styles/smart.base.css",
42
+ "node_modules/@smart-webcomponents-angular/combobox/styles/smart.combobox.css",
43
+ "node_modules/@smart-webcomponents-angular/combobox/styles/smart.common.css"
38
44
  ]
45
+
46
+ If you use more than one Smart UI component in your application, firstly add 'smart.base.css', then your components css files like 'smart.grid.css', 'smart.scheduler.css' and finally 'smart.common.css'.
39
47
  ```
40
48
  * Add the Component Module in your application
41
49
 
@@ -62,5 +70,5 @@ export class AppModule { }
62
70
  Check the license detail [here](https://jqwidgets.com/license/).
63
71
  ## Release Notes
64
72
  Check the release notes [here](https://www.htmlelements.com/docs/release-notes/)
65
- © Copyright 2021 jQWidgets, Ltd. All Rights Reserved.
73
+ © Copyright 2022 jQWidgets, Ltd. All Rights Reserved.
66
74
 
@@ -0,0 +1 @@
1
+ export * from './public_api';
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
- export * from './public_api';
5
- export { BaseElement as ɵa } from './smart.element';
4
+ /// <amd-module name="smart-webcomponents-angular/combobox" />
5
+ export * from './index';
@@ -1,11 +1,12 @@
1
1
  import { ComboBox } from './../index';
2
- import { Animation, AutoComplete, DropDownButtonPosition, DropDownOpenMode, DropDownPosition, ComboBoxEscKeyMode, FilterMode, HorizontalScrollBarVisibility, SearchMode, ListItemMeasureMode, VerticalAlignment, ResizeMode, SelectionDisplayMode, ListSelectionMode, VerticalScrollBarVisibility } from './../index';
2
+ import { AutoComplete, DropDownButtonPosition, DropDownOpenMode, DropDownPosition, ComboBoxEscKeyMode, FilterMode, HorizontalScrollBarVisibility, SearchMode, ListItemMeasureMode, VerticalAlignment, ResizeMode, SelectionDisplayMode, ListSelectionMode, VerticalScrollBarVisibility } from './../index';
3
3
  import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges, EventEmitter } from '@angular/core';
4
4
  import { BaseElement } from './smart.element';
5
- export { Animation, AutoComplete, DropDownButtonPosition, DropDownOpenMode, DropDownPosition, ComboBoxEscKeyMode, FilterMode, HorizontalScrollBarVisibility, SearchMode, ListItemMeasureMode, VerticalAlignment, ResizeMode, SelectionDisplayMode, ListSelectionMode, VerticalScrollBarVisibility, ElementRenderMode } from './../index';
5
+ import { ControlValueAccessor } from '@angular/forms';
6
+ import * as i0 from "@angular/core";
7
+ export { AutoComplete, DropDownButtonPosition, DropDownOpenMode, DropDownPosition, ComboBoxEscKeyMode, FilterMode, HorizontalScrollBarVisibility, SearchMode, ListItemMeasureMode, VerticalAlignment, ResizeMode, SelectionDisplayMode, ListSelectionMode, VerticalScrollBarVisibility, ElementRenderMode } from './../index';
6
8
  export { Smart } from './smart.element';
7
9
  export { ComboBox } from './../index';
8
- import { ControlValueAccessor } from '@angular/forms';
9
10
  export declare class ComboBoxComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges, ControlValueAccessor {
10
11
  constructor(ref: ElementRef<ComboBox>);
11
12
  private eventHandlers;
@@ -24,9 +25,6 @@ export declare class ComboBoxComponent extends BaseElement implements OnInit, Af
24
25
  * The registered callback function called when a blur event occurs on the form elements.
25
26
  */
26
27
  _onTouched: () => any;
27
- /** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */
28
- get animation(): Animation;
29
- set animation(value: Animation);
30
28
  /** @description Used only when dropDownOpenMode is set to 'auto'. Determines the delay before the opened drop down closes if the pointer is not over the element. */
31
29
  get autoCloseDelay(): number;
32
30
  set autoCloseDelay(value: number);
@@ -347,4 +345,6 @@ export declare class ComboBoxComponent extends BaseElement implements OnInit, Af
347
345
  private listen;
348
346
  /** @description Remove event listeners. */
349
347
  private unlisten;
348
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComboBoxComponent, never>;
349
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ComboBoxComponent, "smart-combo-box, [smart-combo-box]", never, { "autoCloseDelay": "autoCloseDelay"; "autoComplete": "autoComplete"; "autoCompleteDelay": "autoCompleteDelay"; "autoOpenShortcutKey": "autoOpenShortcutKey"; "dataSource": "dataSource"; "disabled": "disabled"; "displayLoadingIndicator": "displayLoadingIndicator"; "displayMember": "displayMember"; "dropDownAppendTo": "dropDownAppendTo"; "dropDownButtonPosition": "dropDownButtonPosition"; "dropDownHeight": "dropDownHeight"; "dropDownMaxHeight": "dropDownMaxHeight"; "dropDownMaxWidth": "dropDownMaxWidth"; "dropDownMinHeight": "dropDownMinHeight"; "dropDownMinWidth": "dropDownMinWidth"; "dropDownOpenMode": "dropDownOpenMode"; "dropDownOverlay": "dropDownOverlay"; "dropDownPlaceholder": "dropDownPlaceholder"; "dropDownPosition": "dropDownPosition"; "dropDownWidth": "dropDownWidth"; "escKeyMode": "escKeyMode"; "filterable": "filterable"; "filterInputPlaceholder": "filterInputPlaceholder"; "filterMode": "filterMode"; "grouped": "grouped"; "groupMember": "groupMember"; "hint": "hint"; "horizontalScrollBarVisibility": "horizontalScrollBarVisibility"; "inputMember": "inputMember"; "inputPurpose": "inputPurpose"; "incrementalSearchDelay": "incrementalSearchDelay"; "incrementalSearchMode": "incrementalSearchMode"; "itemHeight": "itemHeight"; "itemMeasureMode": "itemMeasureMode"; "items": "items"; "itemTemplate": "itemTemplate"; "label": "label"; "loadingIndicatorPlaceholder": "loadingIndicatorPlaceholder"; "loadingIndicatorPosition": "loadingIndicatorPosition"; "locale": "locale"; "localizeFormatFunction": "localizeFormatFunction"; "messages": "messages"; "minLength": "minLength"; "name": "name"; "opened": "opened"; "placeholder": "placeholder"; "readonly": "readonly"; "rightToLeft": "rightToLeft"; "resizeIndicator": "resizeIndicator"; "resizeMode": "resizeMode"; "selectionDisplayMode": "selectionDisplayMode"; "selectedIndexes": "selectedIndexes"; "selectedValues": "selectedValues"; "selectionMode": "selectionMode"; "sorted": "sorted"; "sortDirection": "sortDirection"; "theme": "theme"; "tokenTemplate": "tokenTemplate"; "unfocusable": "unfocusable"; "value": "value"; "valueMember": "valueMember"; "verticalScrollBarVisibility": "verticalScrollBarVisibility"; "virtualized": "virtualized"; }, { "onChange": "onChange"; "onClose": "onClose"; "onClosing": "onClosing"; "onItemClick": "onItemClick"; "onOpen": "onOpen"; "onOpening": "onOpening"; "onResizeStart": "onResizeStart"; "onResizeEnd": "onResizeEnd"; "onScrollBottomReached": "onScrollBottomReached"; "onScrollTopReached": "onScrollTopReached"; "onTokenClick": "onTokenClick"; }, never>;
350
350
  }
@@ -1,2 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./smart.combobox";
3
+ import * as i2 from "./smart.listitem";
4
+ import * as i3 from "./smart.listitemsgroup";
1
5
  export declare class ComboBoxModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComboBoxModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ComboBoxModule, [typeof i1.ComboBoxComponent, typeof i2.ListItemComponent, typeof i3.ListItemsGroupComponent], never, [typeof i1.ComboBoxComponent, typeof i2.ListItemComponent, typeof i3.ListItemsGroupComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<ComboBoxModule>;
2
9
  }
@@ -1,9 +1,10 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
1
3
  declare global {
2
4
  interface Window {
3
5
  Smart: any;
4
6
  }
5
7
  }
6
- import { ElementRef, EventEmitter } from '@angular/core';
7
8
  export declare class BaseElement {
8
9
  constructor(ref: ElementRef);
9
10
  onCreate: EventEmitter<any>;
@@ -32,5 +33,7 @@ export declare class BaseElement {
32
33
  /** @description Determines the theme. Theme defines the look of the element */
33
34
  get theme(): string;
34
35
  set theme(value: string);
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseElement, never>;
37
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseElement, never, never, { "locale": "locale"; "localizeFormatFunction": "localizeFormatFunction"; "messages": "messages"; "rightToLeft": "rightToLeft"; "theme": "theme"; }, { "onCreate": "onCreate"; "onReady": "onReady"; "onAttach": "onAttach"; "onDetach": "onDetach"; }, never>;
35
38
  }
36
39
  export declare const Smart: any;
@@ -2,6 +2,7 @@ import { ListItem } from './../index';
2
2
  import { ListItemDisplayMode } from './../index';
3
3
  import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
4
4
  import { BaseElement } from './smart.element';
5
+ import * as i0 from "@angular/core";
5
6
  export { ListItemDisplayMode, ElementRenderMode } from './../index';
6
7
  export { Smart } from './smart.element';
7
8
  export { ListItem } from './../index';
@@ -51,4 +52,6 @@ export declare class ListItemComponent extends BaseElement implements OnInit, Af
51
52
  ngAfterViewInit(): void;
52
53
  ngOnDestroy(): void;
53
54
  ngOnChanges(changes: SimpleChanges): void;
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListItemComponent, never>;
56
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ListItemComponent, "smart-list-item, [smart-list-item]", never, { "alternationIndex": "alternationIndex"; "color": "color"; "displayMode": "displayMode"; "grouped": "grouped"; "selected": "selected"; "value": "value"; "label": "label"; "details": "details"; "group": "group"; "hidden": "hidden"; "readonly": "readonly"; }, {}, never>;
54
57
  }
@@ -1,6 +1,7 @@
1
1
  import { ListItemsGroup } from './../index';
2
2
  import { AfterViewInit, ElementRef, OnInit, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
3
3
  import { BaseElement } from './smart.element';
4
+ import * as i0 from "@angular/core";
4
5
  export { ElementRenderMode } from './../index';
5
6
  export { Smart } from './smart.element';
6
7
  export { ListItemsGroup } from './../index';
@@ -20,4 +21,6 @@ export declare class ListItemsGroupComponent extends BaseElement implements OnIn
20
21
  ngAfterViewInit(): void;
21
22
  ngOnDestroy(): void;
22
23
  ngOnChanges(changes: SimpleChanges): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListItemsGroupComponent, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ListItemsGroupComponent, "smart-list-items-group, [smart-list-items-group]", never, { "label": "label"; }, {}, never>;
23
26
  }