@trudb/tru-common-lib 0.0.183 → 0.0.185

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 (90) hide show
  1. package/esm2020/lib/base-classes/tru-table-config-base.mjs +12 -0
  2. package/esm2020/lib/classes/tru-formula-eval.mjs +156 -0
  3. package/esm2020/lib/classes/tru-property-config-cloud-file.mjs +5 -0
  4. package/esm2020/lib/classes/tru-property-config-decimal.mjs +11 -0
  5. package/esm2020/lib/classes/tru-property-config-foreign-key.mjs +10 -0
  6. package/esm2020/lib/classes/tru-property-config-integer.mjs +9 -0
  7. package/esm2020/lib/classes/tru-property-config-password.mjs +8 -0
  8. package/esm2020/lib/classes/tru-property-config-percentage.mjs +9 -0
  9. package/esm2020/lib/classes/tru-property-config-scientific.mjs +9 -0
  10. package/esm2020/lib/classes/tru-property-config-text-choices.mjs +8 -0
  11. package/esm2020/lib/classes/tru-property-config-text.mjs +10 -0
  12. package/esm2020/lib/classes/tru-property-config-usa-address.mjs +8 -0
  13. package/esm2020/lib/classes/tru-property-config-zip-code.mjs +8 -0
  14. package/esm2020/lib/components/data-grid/classes/tru-data-grid-config.mjs +2 -0
  15. package/esm2020/lib/components/data-grid/enums/tru-data-grid-types.mjs +7 -0
  16. package/esm2020/lib/components/data-grid/tru-data-grid-module.mjs +67 -0
  17. package/esm2020/lib/components/data-grid/tru-data-grid.mjs +253 -0
  18. package/esm2020/lib/components/desktop/services/tru-window-action-event-handler.mjs +27 -0
  19. package/esm2020/lib/components/desktop/services/tru-window-add-view-event-args.mjs +22 -0
  20. package/esm2020/lib/components/desktop/services/tru-window-event-args.mjs +25 -0
  21. package/esm2020/lib/components/desktop/services/tru-window-event-handler.mjs +37 -0
  22. package/esm2020/lib/components/desktop/tru-desktop.mjs +2 -2
  23. package/esm2020/lib/components/desktop/window/tru-desktop-window.mjs +3 -3
  24. package/esm2020/lib/components/layout/column/tru-column-module.mjs +19 -0
  25. package/esm2020/lib/components/layout/column/tru-column.mjs +12 -0
  26. package/esm2020/lib/components/layout/form/tru-form-module.mjs +19 -0
  27. package/esm2020/lib/components/layout/form/tru-form.mjs +27 -0
  28. package/esm2020/lib/components/layout/group-box/tru-group-box-module.mjs +19 -0
  29. package/esm2020/lib/components/layout/group-box/tru-group-box.mjs +12 -0
  30. package/esm2020/lib/components/layout/row/tru-row-module.mjs +19 -0
  31. package/esm2020/lib/components/layout/row/tru-row.mjs +12 -0
  32. package/esm2020/lib/components/toolbar/classes/tru-toolbar-dropdown-option.mjs +2 -0
  33. package/esm2020/lib/components/toolbar/dropdown/tru-toolbar-dropdown.mjs +1 -1
  34. package/esm2020/lib/components/toolbar/tru-toolbar.mjs +1 -1
  35. package/esm2020/lib/directives/search-panel-position-manager/tru-search-panel-position-manager-module.mjs +19 -0
  36. package/esm2020/lib/directives/search-panel-position-manager/tru-search-panel-position-manager.mjs +151 -0
  37. package/esm2020/lib/event-handlers/tru-search-group-event-handler.mjs +41 -0
  38. package/esm2020/lib/event-handlers/tru-search-view-event-handler.mjs +20 -0
  39. package/esm2020/lib/services/tru-sort.mjs +114 -0
  40. package/esm2020/public-api.mjs +70 -34
  41. package/fesm2015/trudb-tru-common-lib.mjs +2794 -1838
  42. package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
  43. package/fesm2020/trudb-tru-common-lib.mjs +2777 -1823
  44. package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
  45. package/lib/base-classes/tru-table-config-base.d.ts +10 -0
  46. package/lib/classes/tru-formula-eval.d.ts +31 -0
  47. package/lib/classes/tru-property-config-cloud-file.d.ts +4 -0
  48. package/lib/classes/tru-property-config-decimal.d.ts +8 -0
  49. package/lib/classes/tru-property-config-foreign-key.d.ts +7 -0
  50. package/lib/classes/tru-property-config-integer.d.ts +6 -0
  51. package/lib/classes/tru-property-config-password.d.ts +5 -0
  52. package/lib/classes/tru-property-config-percentage.d.ts +6 -0
  53. package/lib/classes/tru-property-config-scientific.d.ts +6 -0
  54. package/lib/classes/tru-property-config-text-choices.d.ts +5 -0
  55. package/lib/classes/tru-property-config-text.d.ts +7 -0
  56. package/lib/classes/tru-property-config-usa-address.d.ts +5 -0
  57. package/lib/classes/tru-property-config-zip-code.d.ts +5 -0
  58. package/lib/components/data-grid/classes/tru-data-grid-config.d.ts +7 -0
  59. package/lib/components/data-grid/enums/tru-data-grid-types.d.ts +5 -0
  60. package/lib/components/data-grid/tru-data-grid-module.d.ts +15 -0
  61. package/lib/components/data-grid/tru-data-grid.d.ts +55 -0
  62. package/lib/{services → components/desktop/services}/tru-window-action-event-handler.d.ts +0 -0
  63. package/lib/{classes/tru-window-add-view-event.d.ts → components/desktop/services/tru-window-add-view-event-args.d.ts} +3 -3
  64. package/lib/{classes/tru-window-event.d.ts → components/desktop/services/tru-window-event-args.d.ts} +3 -3
  65. package/lib/{services → components/desktop/services}/tru-window-event-handler.d.ts +6 -6
  66. package/lib/components/desktop/tru-desktop.d.ts +1 -1
  67. package/lib/components/desktop/window/tru-desktop-window.d.ts +1 -1
  68. package/lib/components/layout/column/tru-column-module.d.ts +9 -0
  69. package/lib/components/layout/column/tru-column.d.ts +6 -0
  70. package/lib/components/layout/form/tru-form-module.d.ts +9 -0
  71. package/lib/components/layout/form/tru-form.d.ts +10 -0
  72. package/lib/components/layout/group-box/tru-group-box-module.d.ts +9 -0
  73. package/lib/components/layout/group-box/tru-group-box.d.ts +6 -0
  74. package/lib/components/layout/row/tru-row-module.d.ts +9 -0
  75. package/lib/components/layout/row/tru-row.d.ts +6 -0
  76. package/lib/components/toolbar/classes/tru-toolbar-dropdown-option.d.ts +4 -0
  77. package/lib/components/toolbar/dropdown/tru-toolbar-dropdown.d.ts +1 -1
  78. package/lib/components/toolbar/tru-toolbar.d.ts +0 -4
  79. package/lib/directives/search-panel-position-manager/tru-search-panel-position-manager-module.d.ts +9 -0
  80. package/lib/directives/search-panel-position-manager/tru-search-panel-position-manager.d.ts +40 -0
  81. package/lib/{services → event-handlers}/tru-search-group-event-handler.d.ts +0 -0
  82. package/lib/event-handlers/tru-search-view-event-handler.d.ts +8 -0
  83. package/lib/services/tru-sort.d.ts +56 -0
  84. package/package.json +1 -1
  85. package/public-api.d.ts +63 -33
  86. package/esm2020/lib/classes/tru-window-add-view-event.mjs +0 -22
  87. package/esm2020/lib/classes/tru-window-event.mjs +0 -25
  88. package/esm2020/lib/services/tru-search-group-event-handler.mjs +0 -41
  89. package/esm2020/lib/services/tru-window-action-event-handler.mjs +0 -27
  90. package/esm2020/lib/services/tru-window-event-handler.mjs +0 -37

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.