ngx-bimplus-components 0.0.158 → 0.0.159-28783-2

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 (154) hide show
  1. package/assets/images/default/Attachment_18_gray.svg +1 -0
  2. package/assets/images/default/Attachment_18_maincolor.svg +3 -0
  3. package/assets/images/default/Attachmentlink_18_gray.svg +7 -0
  4. package/assets/images/default/Attachmentlink_18_maincolor.svg +7 -0
  5. package/assets/images/default/Comments_18_gray.svg +1 -0
  6. package/assets/images/default/Comments_18_maincolor.svg +4 -0
  7. package/assets/images/default/Links_18_gray.svg +1 -0
  8. package/assets/images/default/Links_18_maincolor.svg +4 -0
  9. package/assets/images/default/Refresh_18_gray.svg +1 -0
  10. package/assets/images/default/bimplus_WebIcons_Cross_Disabled.svg +1 -0
  11. package/assets/images/default/ic_models.svg +3 -0
  12. package/assets/images/default/ic_models_maincolor.svg +3 -0
  13. package/assets/images/default/icn_grid_attachments.png +0 -0
  14. package/assets/images/default/icn_grid_hyperlinks.png +0 -0
  15. package/assets/images/default/progress-spinner.svg +1 -0
  16. package/esm2022/lib/components/bimplus-attachments/bimplus-attachments.component.mjs +104 -0
  17. package/esm2022/lib/components/bimplus-attachments/bimplus-attachments.interface.mjs +38 -0
  18. package/esm2022/lib/components/bimplus-attachments/components/bimplus-attachment-item/bimplus-attachment-item.component.mjs +92 -0
  19. package/esm2022/lib/components/bimplus-attachments/services/bimplus-attachments.service.mjs +32 -0
  20. package/esm2022/lib/components/bimplus-buttons-row/bimplus-buttons-row.component.mjs +37 -5
  21. package/esm2022/lib/components/bimplus-buttons-row/bimplus-buttons-row.interface.mjs +5 -2
  22. package/esm2022/lib/components/bimplus-comment/IComment.mjs +2 -0
  23. package/esm2022/lib/components/bimplus-comment/bimplus-comment.component.mjs +118 -0
  24. package/esm2022/lib/components/bimplus-connection-designer/bimplus-connection-designer.component.mjs +5 -5
  25. package/esm2022/lib/components/bimplus-connection-designer-results/bimplus-connection-designer-results.component.mjs +3 -3
  26. package/esm2022/lib/components/bimplus-flat-tree/bimplus-flat-tree.component.mjs +115 -7
  27. package/esm2022/lib/components/bimplus-flat-tree/bimplus-flat-tree.interface.mjs +1 -1
  28. package/esm2022/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.mjs +1 -1
  29. package/esm2022/lib/components/bimplus-general-overlay-dialog/bimplus-general-dialog-config-settings.mjs +1 -1
  30. package/esm2022/lib/components/bimplus-general-overlay-dialog/bimplus-general-overlay-dialog.component.mjs +3 -3
  31. package/esm2022/lib/components/bimplus-input-checkbox/bimplus-input-checkbox.component.mjs +64 -0
  32. package/esm2022/lib/components/bimplus-input-combobox/bimplus-input-combobox.component.mjs +161 -0
  33. package/esm2022/lib/components/bimplus-input-number/bimplus-input-number.component.mjs +85 -0
  34. package/esm2022/lib/components/bimplus-input-text-field/bimplus-input-text-field.component.mjs +92 -0
  35. package/esm2022/lib/components/bimplus-link-tooltip-message/bimplus-link-tooltip-message.component.mjs +78 -0
  36. package/esm2022/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.component.mjs +342 -0
  37. package/esm2022/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.service.mjs +69 -0
  38. package/esm2022/lib/components/bimplus-object-comments-list/bimplusObjectCommentsI.mjs +2 -0
  39. package/esm2022/lib/components/bimplus-object-complex-properties/bimplus-object-complex-properties.component.mjs +3 -3
  40. package/esm2022/lib/components/bimplus-object-navigator/bimplus-object-navigator.component.mjs +22 -3
  41. package/esm2022/lib/components/bimplus-object-navigator/criteria-select-object-properties/criteria-select-object-properties.component.mjs +3 -3
  42. package/esm2022/lib/components/bimplus-object-navigator/criteria-select-object-properties/criteria-select-object-properties.interface.mjs +1 -1
  43. package/esm2022/lib/components/bimplus-object-navigator/object-filter-result/object-filter-result.component.mjs +3 -3
  44. package/esm2022/lib/components/bimplus-object-structure/bimplus-object-structure.component.mjs +42 -4
  45. package/esm2022/lib/components/bimplus-object-structure/bimplus-object-structure.interface.mjs +4 -2
  46. package/esm2022/lib/components/bimplus-overlay-dialog-confirm/bimplus-overlay-dialog-confirm.component.mjs +77 -0
  47. package/esm2022/lib/components/bimplus-overlay-dialog-delete/bimplus-overlay-dialog-delete.component.mjs +83 -0
  48. package/esm2022/lib/components/bimplus-overlay-dialog-error/bimplus-overlay-dialog-error.component.mjs +31 -8
  49. package/esm2022/lib/components/bimplus-overlay-dialog-warning/bimplus-overlay-dialog-warning.component.mjs +34 -8
  50. package/esm2022/lib/components/bimplus-scrollable-container/bimplus-scrollable-container.component.mjs +1 -1
  51. package/esm2022/lib/components/bimplus-sidenav-drawer-content/bimplus-sidenav-drawer-content.component.mjs +3 -3
  52. package/esm2022/lib/components/bimplus-status-bar/bimplus-status-bar.component.mjs +35 -0
  53. package/esm2022/lib/components/bimplus-status-bar/bimplus-status-bar.service.mjs +35 -0
  54. package/esm2022/lib/components/bimplus-status-bar/statusBar.mjs +2 -0
  55. package/esm2022/lib/components/bimplus-tabs-switcher/bimplus-tabs-switcher.component.mjs +38 -0
  56. package/esm2022/lib/components/bimplus-tabs-switcher/bimplus-tabs-switcher.interface.mjs +10 -0
  57. package/esm2022/lib/components/bimplus-tabs-switcher/components/bimplus-tab/bimplus-tab.component.mjs +89 -0
  58. package/esm2022/lib/components/bimplus-tabs-switcher/services/bimplus-tabs-switcher.service.mjs +33 -0
  59. package/esm2022/lib/components/bimplus-textarea/autoResizeTextarea.directive.mjs +83 -0
  60. package/esm2022/lib/components/bimplus-textarea/bimplus-textarea.component.mjs +128 -0
  61. package/esm2022/lib/components/links-to-documents/links-to-documents.component.mjs +380 -0
  62. package/esm2022/lib/components/object-hyperlinks/object-hyperlinks.component.mjs +145 -0
  63. package/esm2022/lib/components/object-hyperlinks-item/object-hyperlinks-item.component.mjs +36 -0
  64. package/esm2022/lib/components/object-preview/object-preview.component.mjs +283 -0
  65. package/esm2022/lib/components/object-preview/object-preview.interface.mjs +2 -0
  66. package/esm2022/lib/components/object-properties/object-properties.component.mjs +536 -0
  67. package/esm2022/lib/components/object-properties/object-properties.interface.mjs +2 -0
  68. package/esm2022/lib/components/object-properties/object-properties.service.mjs +26 -0
  69. package/esm2022/lib/components/object-properties-group/object-properties-group.component.mjs +124 -0
  70. package/esm2022/lib/components/object-properties-group/object-property-value/object-property-value.component.mjs +55 -0
  71. package/esm2022/lib/components/object-properties-header/object-properties-header.component.mjs +48 -6
  72. package/esm2022/lib/components/object-properties-header/object-properties-header.interface.mjs +1 -1
  73. package/esm2022/lib/components/resizable-panel/resizable-panel.component.mjs +54 -10
  74. package/esm2022/lib/pipes/bit-converter.pipe.mjs +46 -0
  75. package/esm2022/lib/pipes/get-attribute-value-as-string.pipe.mjs +173 -0
  76. package/esm2022/lib/pipes/get-attribute-value.pipe.mjs +162 -0
  77. package/esm2022/lib/pipes/round.pipe.mjs +20 -0
  78. package/esm2022/lib/utils/objectProperties.mjs +9 -0
  79. package/esm2022/lib/validators/double-enum.validator.mjs +17 -0
  80. package/esm2022/lib/validators/double.validator.mjs +23 -0
  81. package/esm2022/lib/validators/guid-enum.validator.mjs +17 -0
  82. package/esm2022/lib/validators/guid.validator.mjs +11 -0
  83. package/esm2022/lib/validators/integer.validator.mjs +20 -0
  84. package/esm2022/lib/validators/string-combobox.validator.mjs +17 -0
  85. package/esm2022/lib/validators/string-enum.validator.mjs +17 -0
  86. package/esm2022/public-api.mjs +22 -1
  87. package/fesm2022/ngx-bimplus-components.mjs +4195 -82
  88. package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
  89. package/lib/components/bimplus-attachments/bimplus-attachments.component.d.ts +39 -0
  90. package/lib/components/bimplus-attachments/bimplus-attachments.interface.d.ts +33 -0
  91. package/lib/components/bimplus-attachments/components/bimplus-attachment-item/bimplus-attachment-item.component.d.ts +30 -0
  92. package/lib/components/bimplus-attachments/services/bimplus-attachments.service.d.ts +8 -0
  93. package/lib/components/bimplus-buttons-row/bimplus-buttons-row.component.d.ts +13 -3
  94. package/lib/components/bimplus-buttons-row/bimplus-buttons-row.interface.d.ts +7 -1
  95. package/lib/components/bimplus-comment/IComment.d.ts +4 -0
  96. package/lib/components/bimplus-comment/bimplus-comment.component.d.ts +39 -0
  97. package/lib/components/bimplus-flat-tree/bimplus-flat-tree.component.d.ts +16 -3
  98. package/lib/components/bimplus-flat-tree/bimplus-flat-tree.interface.d.ts +4 -0
  99. package/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.d.ts +1 -1
  100. package/lib/components/bimplus-general-overlay-dialog/bimplus-general-dialog-config-settings.d.ts +3 -3
  101. package/lib/components/bimplus-input-checkbox/bimplus-input-checkbox.component.d.ts +18 -0
  102. package/lib/components/bimplus-input-combobox/bimplus-input-combobox.component.d.ts +41 -0
  103. package/lib/components/bimplus-input-number/bimplus-input-number.component.d.ts +26 -0
  104. package/lib/components/bimplus-input-text-field/bimplus-input-text-field.component.d.ts +28 -0
  105. package/lib/components/bimplus-link-tooltip-message/bimplus-link-tooltip-message.component.d.ts +22 -0
  106. package/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.component.d.ts +84 -0
  107. package/lib/components/bimplus-object-comments-list/bimplus-object-comments-list.service.d.ts +15 -0
  108. package/lib/components/bimplus-object-comments-list/bimplusObjectCommentsI.d.ts +11 -0
  109. package/lib/components/bimplus-object-navigator/bimplus-object-navigator.component.d.ts +5 -1
  110. package/lib/components/bimplus-object-navigator/criteria-select-object-properties/criteria-select-object-properties.component.d.ts +12 -12
  111. package/lib/components/bimplus-object-navigator/criteria-select-object-properties/criteria-select-object-properties.interface.d.ts +3 -3
  112. package/lib/components/bimplus-object-structure/bimplus-object-structure.component.d.ts +5 -1
  113. package/lib/components/bimplus-object-structure/bimplus-object-structure.interface.d.ts +2 -0
  114. package/lib/components/bimplus-overlay-dialog-confirm/bimplus-overlay-dialog-confirm.component.d.ts +29 -0
  115. package/lib/components/bimplus-overlay-dialog-delete/bimplus-overlay-dialog-delete.component.d.ts +24 -0
  116. package/lib/components/bimplus-overlay-dialog-error/bimplus-overlay-dialog-error.component.d.ts +8 -1
  117. package/lib/components/bimplus-overlay-dialog-warning/bimplus-overlay-dialog-warning.component.d.ts +11 -1
  118. package/lib/components/bimplus-scrollable-container/bimplus-scrollable-container.component.d.ts +1 -1
  119. package/lib/components/bimplus-status-bar/bimplus-status-bar.component.d.ts +14 -0
  120. package/lib/components/bimplus-status-bar/bimplus-status-bar.service.d.ts +14 -0
  121. package/lib/components/bimplus-status-bar/statusBar.d.ts +4 -0
  122. package/lib/components/bimplus-tabs-switcher/bimplus-tabs-switcher.component.d.ts +16 -0
  123. package/lib/components/bimplus-tabs-switcher/bimplus-tabs-switcher.interface.d.ts +18 -0
  124. package/lib/components/bimplus-tabs-switcher/components/bimplus-tab/bimplus-tab.component.d.ts +36 -0
  125. package/lib/components/bimplus-tabs-switcher/services/bimplus-tabs-switcher.service.d.ts +15 -0
  126. package/lib/components/bimplus-textarea/autoResizeTextarea.directive.d.ts +24 -0
  127. package/lib/components/bimplus-textarea/bimplus-textarea.component.d.ts +42 -0
  128. package/lib/components/links-to-documents/links-to-documents.component.d.ts +68 -0
  129. package/lib/components/object-hyperlinks/object-hyperlinks.component.d.ts +32 -0
  130. package/lib/components/object-hyperlinks-item/object-hyperlinks-item.component.d.ts +15 -0
  131. package/lib/components/object-preview/object-preview.component.d.ts +45 -0
  132. package/lib/components/object-preview/object-preview.interface.d.ts +5 -0
  133. package/lib/components/object-properties/object-properties.component.d.ts +78 -0
  134. package/lib/components/object-properties/object-properties.interface.d.ts +22 -0
  135. package/lib/components/object-properties/object-properties.service.d.ts +12 -0
  136. package/lib/components/object-properties-group/object-properties-group.component.d.ts +29 -0
  137. package/lib/components/object-properties-group/object-property-value/object-property-value.component.d.ts +14 -0
  138. package/lib/components/object-properties-header/object-properties-header.component.d.ts +13 -4
  139. package/lib/components/object-properties-header/object-properties-header.interface.d.ts +8 -0
  140. package/lib/components/resizable-panel/resizable-panel.component.d.ts +12 -3
  141. package/lib/pipes/bit-converter.pipe.d.ts +17 -0
  142. package/lib/pipes/get-attribute-value-as-string.pipe.d.ts +35 -0
  143. package/lib/pipes/get-attribute-value.pipe.d.ts +35 -0
  144. package/lib/pipes/round.pipe.d.ts +7 -0
  145. package/lib/utils/objectProperties.d.ts +2 -0
  146. package/lib/validators/double-enum.validator.d.ts +2 -0
  147. package/lib/validators/double.validator.d.ts +2 -0
  148. package/lib/validators/guid-enum.validator.d.ts +2 -0
  149. package/lib/validators/guid.validator.d.ts +2 -0
  150. package/lib/validators/integer.validator.d.ts +2 -0
  151. package/lib/validators/string-combobox.validator.d.ts +2 -0
  152. package/lib/validators/string-enum.validator.d.ts +2 -0
  153. package/package.json +12 -4
  154. package/public-api.d.ts +21 -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.