@smart-webcomponents-angular/combobox 9.2.22 → 13.0.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 (59) 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/demo/angular.json +2 -2
  12. package/demo/src/tsconfig.app.json +15 -15
  13. package/demo/src/tsconfig.json +23 -23
  14. package/esm2020/combobox/index.mjs +2 -0
  15. package/{esm2015/combobox/public_api.js → esm2020/combobox/public_api.mjs} +0 -0
  16. package/{esm2015/combobox/smart-webcomponents-angular-combobox.js → esm2020/combobox/smart-webcomponents-angular-combobox.mjs} +2 -3
  17. package/esm2020/combobox/smart.combobox.mjs +1042 -0
  18. package/esm2020/combobox/smart.combobox.module.mjs +20 -0
  19. package/esm2020/combobox/smart.element.mjs +99 -0
  20. package/esm2020/combobox/smart.listitem.mjs +150 -0
  21. package/esm2020/combobox/smart.listitemsgroup.mjs +60 -0
  22. package/fesm2015/{smart-webcomponents-angular-combobox.js → smart-webcomponents-angular-combobox.mjs} +238 -146
  23. package/fesm2015/smart-webcomponents-angular-combobox.mjs.map +1 -0
  24. package/fesm2020/smart-webcomponents-angular-combobox.mjs +1369 -0
  25. package/fesm2020/smart-webcomponents-angular-combobox.mjs.map +1 -0
  26. package/images/flags.png +0 -0
  27. package/index.d.ts +3578 -658
  28. package/package.json +26 -24
  29. package/source/modules/smart.combobox.js +1 -1
  30. package/source/smart.button.js +2 -2
  31. package/source/smart.checkbox.js +2 -2
  32. package/source/smart.combobox.js +2 -2
  33. package/source/smart.dropdownlist.js +2 -2
  34. package/source/smart.element.js +2 -2
  35. package/source/smart.listbox.js +2 -2
  36. package/source/smart.radiobutton.js +2 -2
  37. package/source/smart.scrollbar.js +2 -2
  38. package/styles/font/smart-icons.eot +0 -0
  39. package/styles/font/smart-icons.svg +64 -2
  40. package/styles/font/smart-icons.ttf +0 -0
  41. package/styles/font/smart-icons.woff +0 -0
  42. package/styles/font/smart-icons.woff2 +0 -0
  43. package/styles/smart.base.css +4 -4
  44. package/styles/smart.combobox.css +2 -2
  45. package/styles/smart.common.css +1 -1
  46. package/bundles/smart-webcomponents-angular-combobox.umd.js +0 -2011
  47. package/bundles/smart-webcomponents-angular-combobox.umd.min.js +0 -25
  48. package/combobox/smart-webcomponents-angular-combobox.metadata.json +0 -1
  49. package/demo/src/app/app.component.ts +0 -29
  50. package/demo/src/app/app.module.ts +0 -15
  51. package/demo/src/app/main.ts +0 -6
  52. package/demo/src/main.ts +0 -16
  53. package/demo/src/polyfills.ts +0 -73
  54. package/esm2015/combobox/smart.combobox.js +0 -986
  55. package/esm2015/combobox/smart.combobox.module.js +0 -15
  56. package/esm2015/combobox/smart.element.js +0 -83
  57. package/esm2015/combobox/smart.listitem.js +0 -140
  58. package/esm2015/combobox/smart.listitemsgroup.js +0 -60
  59. package/fesm2015/smart-webcomponents-angular-combobox.js.map +0 -1
package/demo/angular.json CHANGED
@@ -22,8 +22,8 @@
22
22
  "src/assets"
23
23
  ],
24
24
  "styles": [
25
- "./node_modules/@smart-webcomponents-angular/combobox/styles/smart.base.css",
26
- "./node_modules/@smart-webcomponents-angular/combobox/styles/smart.combobox.css",
25
+ "./node_modules/@smart-webcomponents-angular/combobox/styles/smart.base.css",
26
+ "./node_modules/@smart-webcomponents-angular/combobox/styles/smart.combobox.css",
27
27
  "./node_modules/@smart-webcomponents-angular/combobox/styles/smart.common.css",
28
28
  "src/assets/fonts.css",
29
29
  "src/assets/styles.css"
@@ -1,15 +1,15 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "./tsconfig.json",
4
- "compilerOptions": {
5
- "outDir": "./out-tsc/app",
6
- "types": []
7
- },
8
- "files": [
9
- "main.ts",
10
- "polyfills.ts"
11
- ],
12
- "include": [
13
- "src/**/*.d.ts"
14
- ]
15
- }
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "./tsconfig.json",
4
+ "compilerOptions": {
5
+ "outDir": "./out-tsc/app",
6
+ "types": []
7
+ },
8
+ "files": [
9
+ "main.ts",
10
+ "polyfills.ts"
11
+ ],
12
+ "include": [
13
+ "src/**/*.d.ts"
14
+ ]
15
+ }
@@ -1,23 +1,23 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "compileOnSave": false,
4
- "compilerOptions": {
5
- "baseUrl": "./",
6
- "outDir": "./dist/out-tsc",
7
- "sourceMap": true,
8
- "declaration": false,
9
- "downlevelIteration": true,
10
- "experimentalDecorators": true,
11
- "moduleResolution": "node",
12
- "importHelpers": true,
13
- "target": "es2015",
14
- "module": "es2020",
15
- "lib": [
16
- "es2018",
17
- "dom"
18
- ]
19
- },
20
- "angularCompilerOptions": {
21
- "enableI18nLegacyMessageIdFormat": false
22
- }
23
- }
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "compileOnSave": false,
4
+ "compilerOptions": {
5
+ "baseUrl": "./",
6
+ "outDir": "./dist/out-tsc",
7
+ "sourceMap": true,
8
+ "declaration": false,
9
+ "downlevelIteration": true,
10
+ "experimentalDecorators": true,
11
+ "moduleResolution": "node",
12
+ "importHelpers": true,
13
+ "target": "es2015",
14
+ "module": "es2020",
15
+ "lib": [
16
+ "es2018",
17
+ "dom"
18
+ ]
19
+ },
20
+ "angularCompilerOptions": {
21
+ "enableI18nLegacyMessageIdFormat": false
22
+ }
23
+ }
@@ -0,0 +1,2 @@
1
+ export * from './public_api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9jb21ib2JveC9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpY19hcGknOyJdfQ==
@@ -10,6 +10,5 @@ import './../../source/modules/smart.combobox';
10
10
  /**
11
11
  * Generated bundle index. Do not edit.
12
12
  */
13
- export * from './public_api';
14
- export { BaseElement as ɵa } from './smart.element';
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtd2ViY29tcG9uZW50cy1hbmd1bGFyLWNvbWJvYm94LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vY29tYm9ib3gvc3JjL3NtYXJ0LXdlYmNvbXBvbmVudHMtYW5ndWxhci1jb21ib2JveC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDO0FBRTdCLE9BQU8sRUFBQyxXQUFXLElBQUksRUFBRSxFQUFDLE1BQU0saUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljX2FwaSc7XG5cbmV4cG9ydCB7QmFzZUVsZW1lbnQgYXMgybVhfSBmcm9tICcuL3NtYXJ0LmVsZW1lbnQnOyJdfQ==
13
+ export * from './index';
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtd2ViY29tcG9uZW50cy1hbmd1bGFyLWNvbWJvYm94LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vY29tYm9ib3gvc3JjL3NtYXJ0LXdlYmNvbXBvbmVudHMtYW5ndWxhci1jb21ib2JveC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==