@bizy/core 19.0.0

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 (155) hide show
  1. package/fesm2022/bizy-core.mjs +6836 -0
  2. package/fesm2022/bizy-core.mjs.map +1 -0
  3. package/index.d.ts +5 -0
  4. package/lib/components/accordion/accordion.component.d.ts +15 -0
  5. package/lib/components/accordion/index.d.ts +2 -0
  6. package/lib/components/bar-line-chart/bar-line-chart.component.d.ts +29 -0
  7. package/lib/components/bar-line-chart/bar-line-chart.types.d.ts +17 -0
  8. package/lib/components/bar-line-chart/index.d.ts +3 -0
  9. package/lib/components/breadcrumb/breadcrumb.component.d.ts +15 -0
  10. package/lib/components/breadcrumb/breadcrumb.types.d.ts +6 -0
  11. package/lib/components/breadcrumb/index.d.ts +3 -0
  12. package/lib/components/button/button.component.d.ts +13 -0
  13. package/lib/components/button/index.d.ts +2 -0
  14. package/lib/components/calendar/calendar.component.d.ts +47 -0
  15. package/lib/components/calendar/calendar.formatter.d.ts +7 -0
  16. package/lib/components/calendar/calendar.types.d.ts +32 -0
  17. package/lib/components/calendar/index.d.ts +3 -0
  18. package/lib/components/card/card.component.d.ts +12 -0
  19. package/lib/components/card/index.d.ts +2 -0
  20. package/lib/components/checkbox/checkbox.component.d.ts +13 -0
  21. package/lib/components/checkbox/index.d.ts +2 -0
  22. package/lib/components/date-picker/date-picker.component.d.ts +45 -0
  23. package/lib/components/date-picker/index.d.ts +2 -0
  24. package/lib/components/file-uploader/file-uploader.component.d.ts +46 -0
  25. package/lib/components/file-uploader/file-uploader.service.d.ts +51 -0
  26. package/lib/components/file-uploader/index.d.ts +4 -0
  27. package/lib/components/filter/filter-content/filter-content.component.d.ts +5 -0
  28. package/lib/components/filter/filter-section/filter-section.component.d.ts +24 -0
  29. package/lib/components/filter/filter-section-checkbox-option/filter-section-checkbox-option.component.d.ts +17 -0
  30. package/lib/components/filter/filter-section-range-option/filter-section-range-option.component.d.ts +34 -0
  31. package/lib/components/filter/filter-section-search-option/filter-section-search-option.component.d.ts +21 -0
  32. package/lib/components/filter/filter-sections/filter-sections.component.d.ts +5 -0
  33. package/lib/components/filter/filter.component.d.ts +27 -0
  34. package/lib/components/filter/index.d.ts +10 -0
  35. package/lib/components/filter/pipes/filter.pipe.d.ts +10 -0
  36. package/lib/components/filter/pipes/index.d.ts +2 -0
  37. package/lib/components/filter/pipes/range-filter.pipe.d.ts +10 -0
  38. package/lib/components/form/form.component.d.ts +19 -0
  39. package/lib/components/form/index.d.ts +2 -0
  40. package/lib/components/grid/grid-row/grid-row.component.d.ts +12 -0
  41. package/lib/components/grid/grid.component.d.ts +26 -0
  42. package/lib/components/grid/grid.directive.d.ts +13 -0
  43. package/lib/components/grid/index.d.ts +5 -0
  44. package/lib/components/index.d.ts +26 -0
  45. package/lib/components/input/index.d.ts +3 -0
  46. package/lib/components/input/input-option/input-option.component.d.ts +16 -0
  47. package/lib/components/input/input.component.d.ts +56 -0
  48. package/lib/components/list/index.d.ts +2 -0
  49. package/lib/components/list/list.component.d.ts +7 -0
  50. package/lib/components/menu/index.d.ts +4 -0
  51. package/lib/components/menu/menu-option/menu-option.component.d.ts +20 -0
  52. package/lib/components/menu/menu-title/menu-title.component.d.ts +6 -0
  53. package/lib/components/menu/menu.component.d.ts +26 -0
  54. package/lib/components/pie-chart/index.d.ts +3 -0
  55. package/lib/components/pie-chart/pie-chart.component.d.ts +28 -0
  56. package/lib/components/pie-chart/pie-chart.types.d.ts +5 -0
  57. package/lib/components/radio/index.d.ts +2 -0
  58. package/lib/components/radio/radio.component.d.ts +13 -0
  59. package/lib/components/select/index.d.ts +3 -0
  60. package/lib/components/select/select-option/select-option.component.d.ts +21 -0
  61. package/lib/components/select/select.component.d.ts +37 -0
  62. package/lib/components/sidebar/index.d.ts +5 -0
  63. package/lib/components/sidebar/sidebar-floating-option/sidebar-floating-option.component.d.ts +34 -0
  64. package/lib/components/sidebar/sidebar-floating-option-title/sidebar-floating-option-title.component.d.ts +7 -0
  65. package/lib/components/sidebar/sidebar-option/sidebar-option.component.d.ts +23 -0
  66. package/lib/components/sidebar/sidebar.component.d.ts +19 -0
  67. package/lib/components/skeleton/index.d.ts +3 -0
  68. package/lib/components/skeleton/skeleton.component.d.ts +12 -0
  69. package/lib/components/skeleton/skeleton.types.d.ts +4 -0
  70. package/lib/components/slider/index.d.ts +2 -0
  71. package/lib/components/slider/slider.component.d.ts +20 -0
  72. package/lib/components/table/directives/index.d.ts +1 -0
  73. package/lib/components/table/directives/table-column-fixed.directive.d.ts +9 -0
  74. package/lib/components/table/index.d.ts +12 -0
  75. package/lib/components/table/table-column/table-column.component.d.ts +12 -0
  76. package/lib/components/table/table-column-arrows/table-column-arrows.component.d.ts +8 -0
  77. package/lib/components/table/table-footer/table-footer.component.d.ts +19 -0
  78. package/lib/components/table/table-header/table-header.component.d.ts +23 -0
  79. package/lib/components/table/table-row/table-row.component.d.ts +28 -0
  80. package/lib/components/table/table-row-expand-content/table-row-expand-content.component.d.ts +5 -0
  81. package/lib/components/table/table-scrolling/table-scrolling.component.d.ts +23 -0
  82. package/lib/components/table/table-scrolling/table-scrolling.directive.d.ts +15 -0
  83. package/lib/components/table/table.component.d.ts +30 -0
  84. package/lib/components/tabs/index.d.ts +3 -0
  85. package/lib/components/tabs/tab/tab.component.d.ts +16 -0
  86. package/lib/components/tabs/tabs.component.d.ts +21 -0
  87. package/lib/components/tag/index.d.ts +3 -0
  88. package/lib/components/tag/tag.component.d.ts +11 -0
  89. package/lib/components/tag/tag.types.d.ts +7 -0
  90. package/lib/components/toggle/index.d.ts +3 -0
  91. package/lib/components/toggle/toggle.component.d.ts +12 -0
  92. package/lib/components/toggle/toggle.types.d.ts +1 -0
  93. package/lib/components/toolbar/index.d.ts +2 -0
  94. package/lib/components/toolbar/toolbar.component.d.ts +5 -0
  95. package/lib/directives/copy-to-clipboard.directive.d.ts +16 -0
  96. package/lib/directives/currency-format.directive.d.ts +16 -0
  97. package/lib/directives/index.d.ts +11 -0
  98. package/lib/directives/loading.directive.d.ts +16 -0
  99. package/lib/directives/long-press.directive.d.ts +12 -0
  100. package/lib/directives/only-numbers.directive.d.ts +12 -0
  101. package/lib/directives/only-phone-digits.directive.d.ts +8 -0
  102. package/lib/directives/text-ellipsis.directive.d.ts +12 -0
  103. package/lib/directives/tooltip.directive.d.ts +24 -0
  104. package/lib/directives/track-by-id.directive.d.ts +12 -0
  105. package/lib/pipes/average.pipe.d.ts +7 -0
  106. package/lib/pipes/enum-to-array.pipe.d.ts +10 -0
  107. package/lib/pipes/format-seconds.pipe.d.ts +13 -0
  108. package/lib/pipes/index.d.ts +13 -0
  109. package/lib/pipes/order-by.pipe.d.ts +8 -0
  110. package/lib/pipes/reduce.pipe.d.ts +7 -0
  111. package/lib/pipes/repeat.pipe.d.ts +7 -0
  112. package/lib/pipes/safe.pipe.d.ts +10 -0
  113. package/lib/pipes/search/index.d.ts +2 -0
  114. package/lib/pipes/search/search.model.d.ts +45 -0
  115. package/lib/pipes/search/search.pipe.d.ts +16 -0
  116. package/lib/pipes/selected.pipe.d.ts +11 -0
  117. package/lib/pipes/set-to-array.pipe.d.ts +7 -0
  118. package/lib/pipes/translate.pipe.d.ts +10 -0
  119. package/lib/services/animation.service.d.ts +24 -0
  120. package/lib/services/cache.service.d.ts +13 -0
  121. package/lib/services/copy-to-clipboard.service.d.ts +10 -0
  122. package/lib/services/export-to-csv.service.d.ts +19 -0
  123. package/lib/services/format-seconds.service.d.ts +22 -0
  124. package/lib/services/index.d.ts +17 -0
  125. package/lib/services/keyboard.service.d.ts +11 -0
  126. package/lib/services/log.service.d.ts +27 -0
  127. package/lib/services/popup/index.d.ts +2 -0
  128. package/lib/services/popup/popup-wrapper/popup-wrapper.component.d.ts +11 -0
  129. package/lib/services/popup/popup.service.d.ts +24 -0
  130. package/lib/services/popup/popup.types.d.ts +4 -0
  131. package/lib/services/router.service.d.ts +29 -0
  132. package/lib/services/storage.service.d.ts +9 -0
  133. package/lib/services/toast/index.d.ts +1 -0
  134. package/lib/services/toast/toast-wrapper/toast-wrapper.component.d.ts +19 -0
  135. package/lib/services/toast/toast.service.d.ts +45 -0
  136. package/lib/services/translate/index.d.ts +2 -0
  137. package/lib/services/translate/translate.module.d.ts +7 -0
  138. package/lib/services/translate/translate.service.d.ts +23 -0
  139. package/lib/services/user-agent/uach-retrofill.d.ts +34 -0
  140. package/lib/services/user-agent/user-agent.service.d.ts +6 -0
  141. package/lib/services/validator.service.d.ts +16 -0
  142. package/lib/services/viewport.service.d.ts +17 -0
  143. package/package.json +41 -0
  144. package/public-api.d.ts +4 -0
  145. package/styles/animations.css +186 -0
  146. package/styles/calendar.css +851 -0
  147. package/styles/date-picker.css +2 -0
  148. package/styles/file-uploader.css +2 -0
  149. package/styles/loading.css +90 -0
  150. package/styles/normalize.css +102 -0
  151. package/styles/overlay.css +1 -0
  152. package/styles/popup.css +21 -0
  153. package/styles/toast.css +83 -0
  154. package/styles/tooltip.css +55 -0
  155. package/styles/variables.css +288 -0

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.