@colijnit/corecomponents_v12 12.2.12 → 12.2.14

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 (73) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +723 -281
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
  3. package/colijnit-corecomponents_v12.d.ts +11 -7
  4. package/colijnit-corecomponents_v12.metadata.json +1 -1
  5. package/esm2015/colijnit-corecomponents_v12.js +12 -8
  6. package/esm2015/lib/components/base/dialog-base.component.js +6 -0
  7. package/esm2015/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.js +79 -0
  8. package/esm2015/lib/components/core-dialog/core-dialog.module.js +39 -0
  9. package/esm2015/lib/components/core-dialog/core-dialog.service.js +67 -0
  10. package/esm2015/lib/components/core-dialog/core-dynamic-component.service.js +93 -0
  11. package/esm2015/lib/components/filter-item/filter-item.component.js +145 -145
  12. package/esm2015/lib/components/input-scanner/bar-code-scanner.js +23 -0
  13. package/esm2015/lib/components/input-scanner/input-scanner.component.js +69 -0
  14. package/esm2015/lib/components/input-scanner/input-scanner.module.js +21 -0
  15. package/esm2015/lib/components/input-scanner/scanner.service.js +28 -0
  16. package/esm2015/lib/components/input-search/input-search.component.js +2 -1
  17. package/esm2015/lib/components/input-text/input-text.component.js +2 -1
  18. package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +37 -27
  19. package/esm2015/lib/components/simple-grid/simple-grid.component.js +55 -35
  20. package/esm2015/lib/components/simple-grid/simple-grid.module.js +4 -2
  21. package/esm2015/lib/components/validation-error/validation-error.component.js +6 -6
  22. package/esm2015/lib/core/enum/core-components-icon.enum.js +2 -1
  23. package/esm2015/lib/core/model/core-components-icon-svg.js +2 -1
  24. package/esm2015/lib/interfaces/dialog-response.interface.js +2 -0
  25. package/esm2015/lib/interfaces/scanner-input.interface.js +2 -0
  26. package/esm2015/lib/model/enum/app-button-type.enum.js +11 -0
  27. package/esm2015/lib/model/enum/app-popup-type.enum.js +8 -0
  28. package/esm2015/lib/translation/core-components-translation.module.js +6 -6
  29. package/esm2015/lib/translation/core-components-translation.service.js +3 -3
  30. package/esm2015/lib/translation/core-dictionary.service.js +29 -0
  31. package/esm2015/lib/translation/core-localize.pipe.js +26 -0
  32. package/esm2015/public-api.js +16 -11
  33. package/fesm2015/colijnit-corecomponents_v12.js +870 -425
  34. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  35. package/lib/components/base/dialog-base.component.d.ts +4 -0
  36. package/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +20 -0
  37. package/lib/components/core-dialog/confirmation-dialog/style/_layout.scss +30 -0
  38. package/lib/components/core-dialog/confirmation-dialog/style/_material-definition.scss +2 -0
  39. package/lib/components/core-dialog/confirmation-dialog/style/_theme.scss +6 -0
  40. package/lib/components/core-dialog/confirmation-dialog/style/material.scss +4 -0
  41. package/lib/components/core-dialog/core-dialog.module.d.ts +4 -0
  42. package/lib/components/core-dialog/core-dialog.service.d.ts +15 -0
  43. package/lib/components/core-dialog/core-dynamic-component.service.d.ts +12 -0
  44. package/lib/components/core-dialog/style/_layout.scss +6 -0
  45. package/lib/components/core-dialog/style/_material-definition.scss +0 -0
  46. package/lib/components/core-dialog/style/_theme.scss +6 -0
  47. package/lib/components/core-dialog/style/material.scss +4 -0
  48. package/lib/components/input-scanner/bar-code-scanner.d.ts +7 -0
  49. package/lib/components/input-scanner/input-scanner.component.d.ts +23 -0
  50. package/lib/components/input-scanner/input-scanner.module.d.ts +2 -0
  51. package/lib/components/input-scanner/scanner.service.d.ts +11 -0
  52. package/lib/components/input-scanner/style/_layout.scss +4 -0
  53. package/lib/components/input-scanner/style/_material-definition.scss +0 -0
  54. package/lib/components/input-scanner/style/_theme.scss +4 -0
  55. package/lib/components/input-scanner/style/material.scss +4 -0
  56. package/lib/components/simple-grid/simple-grid-cell.component.d.ts +4 -2
  57. package/lib/components/simple-grid/simple-grid.component.d.ts +5 -3
  58. package/lib/components/simple-grid/style/_layout.scss +30 -4
  59. package/lib/components/simple-grid/style/_material-definition.scss +9 -2
  60. package/lib/components/simple-grid/style/_theme.scss +3 -0
  61. package/lib/core/enum/core-components-icon.enum.d.ts +1 -0
  62. package/lib/interfaces/dialog-response.interface.d.ts +6 -0
  63. package/lib/interfaces/scanner-input.interface.d.ts +3 -0
  64. package/lib/model/enum/app-button-type.enum.d.ts +9 -0
  65. package/lib/model/enum/app-popup-type.enum.d.ts +6 -0
  66. package/lib/translation/core-components-translation.service.d.ts +2 -2
  67. package/lib/translation/{dictionary.service.d.ts → core-dictionary.service.d.ts} +1 -1
  68. package/lib/translation/core-localize.pipe.d.ts +7 -0
  69. package/package.json +1 -1
  70. package/public-api.d.ts +15 -10
  71. package/esm2015/lib/translation/dictionary.service.js +0 -29
  72. package/esm2015/lib/translation/localize.pipe.js +0 -26
  73. package/lib/translation/localize.pipe.d.ts +0 -7

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.