@trudb/tru-common-lib 0.0.183 → 0.0.184
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.
- package/esm2020/lib/base-classes/tru-table-config-base.mjs +12 -0
- package/esm2020/lib/classes/tru-formula-eval.mjs +156 -0
- package/esm2020/lib/classes/tru-property-config-cloud-file.mjs +5 -0
- package/esm2020/lib/classes/tru-property-config-decimal.mjs +11 -0
- package/esm2020/lib/classes/tru-property-config-foreign-key.mjs +10 -0
- package/esm2020/lib/classes/tru-property-config-integer.mjs +9 -0
- package/esm2020/lib/classes/tru-property-config-password.mjs +8 -0
- package/esm2020/lib/classes/tru-property-config-percentage.mjs +9 -0
- package/esm2020/lib/classes/tru-property-config-scientific.mjs +9 -0
- package/esm2020/lib/classes/tru-property-config-text-choices.mjs +8 -0
- package/esm2020/lib/classes/tru-property-config-text.mjs +10 -0
- package/esm2020/lib/classes/tru-property-config-usa-address.mjs +8 -0
- package/esm2020/lib/classes/tru-property-config-zip-code.mjs +8 -0
- package/esm2020/lib/components/data-grid/classes/tru-data-grid-config.mjs +2 -0
- package/esm2020/lib/components/data-grid/enums/tru-data-grid-types.mjs +7 -0
- package/esm2020/lib/components/data-grid/tru-data-grid-module.mjs +67 -0
- package/esm2020/lib/components/data-grid/tru-data-grid.mjs +253 -0
- package/esm2020/lib/components/desktop/services/tru-window-action-event-handler.mjs +27 -0
- package/esm2020/lib/components/desktop/services/tru-window-add-view-event-args.mjs +22 -0
- package/esm2020/lib/components/desktop/services/tru-window-event-args.mjs +25 -0
- package/esm2020/lib/components/desktop/services/tru-window-event-handler.mjs +37 -0
- package/esm2020/lib/components/desktop/tru-desktop.mjs +2 -2
- package/esm2020/lib/components/desktop/window/tru-desktop-window.mjs +3 -3
- package/esm2020/lib/components/layout/column/tru-column-module.mjs +19 -0
- package/esm2020/lib/components/layout/column/tru-column.mjs +12 -0
- package/esm2020/lib/components/layout/form/tru-form-module.mjs +19 -0
- package/esm2020/lib/components/layout/form/tru-form.mjs +27 -0
- package/esm2020/lib/components/layout/group-box/tru-group-box-module.mjs +19 -0
- package/esm2020/lib/components/layout/group-box/tru-group-box.mjs +12 -0
- package/esm2020/lib/components/layout/row/tru-row-module.mjs +19 -0
- package/esm2020/lib/components/layout/row/tru-row.mjs +12 -0
- package/esm2020/lib/components/toolbar/classes/tru-toolbar-dropdown-option.mjs +2 -0
- package/esm2020/lib/components/toolbar/dropdown/tru-toolbar-dropdown.mjs +1 -1
- package/esm2020/lib/components/toolbar/tru-toolbar.mjs +1 -1
- package/esm2020/lib/directives/search-panel-position-manager/tru-search-panel-position-manager-module.mjs +19 -0
- package/esm2020/lib/directives/search-panel-position-manager/tru-search-panel-position-manager.mjs +151 -0
- package/esm2020/lib/event-handlers/tru-search-group-event-handler.mjs +41 -0
- package/esm2020/lib/event-handlers/tru-search-view-event-handler.mjs +20 -0
- package/esm2020/lib/services/tru-sort.mjs +114 -0
- package/esm2020/public-api.mjs +68 -34
- package/fesm2015/trudb-tru-common-lib.mjs +2794 -1838
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +2777 -1823
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/base-classes/tru-table-config-base.d.ts +10 -0
- package/lib/classes/tru-formula-eval.d.ts +31 -0
- package/lib/classes/tru-property-config-cloud-file.d.ts +4 -0
- package/lib/classes/tru-property-config-decimal.d.ts +8 -0
- package/lib/classes/tru-property-config-foreign-key.d.ts +7 -0
- package/lib/classes/tru-property-config-integer.d.ts +6 -0
- package/lib/classes/tru-property-config-password.d.ts +5 -0
- package/lib/classes/tru-property-config-percentage.d.ts +6 -0
- package/lib/classes/tru-property-config-scientific.d.ts +6 -0
- package/lib/classes/tru-property-config-text-choices.d.ts +5 -0
- package/lib/classes/tru-property-config-text.d.ts +7 -0
- package/lib/classes/tru-property-config-usa-address.d.ts +5 -0
- package/lib/classes/tru-property-config-zip-code.d.ts +5 -0
- package/lib/components/data-grid/classes/tru-data-grid-config.d.ts +7 -0
- package/lib/components/data-grid/enums/tru-data-grid-types.d.ts +5 -0
- package/lib/components/data-grid/tru-data-grid-module.d.ts +15 -0
- package/lib/components/data-grid/tru-data-grid.d.ts +55 -0
- package/lib/{services → components/desktop/services}/tru-window-action-event-handler.d.ts +0 -0
- package/lib/{classes/tru-window-add-view-event.d.ts → components/desktop/services/tru-window-add-view-event-args.d.ts} +3 -3
- package/lib/{classes/tru-window-event.d.ts → components/desktop/services/tru-window-event-args.d.ts} +3 -3
- package/lib/{services → components/desktop/services}/tru-window-event-handler.d.ts +6 -6
- package/lib/components/desktop/tru-desktop.d.ts +1 -1
- package/lib/components/desktop/window/tru-desktop-window.d.ts +1 -1
- package/lib/components/layout/column/tru-column-module.d.ts +9 -0
- package/lib/components/layout/column/tru-column.d.ts +6 -0
- package/lib/components/layout/form/tru-form-module.d.ts +9 -0
- package/lib/components/layout/form/tru-form.d.ts +10 -0
- package/lib/components/layout/group-box/tru-group-box-module.d.ts +9 -0
- package/lib/components/layout/group-box/tru-group-box.d.ts +6 -0
- package/lib/components/layout/row/tru-row-module.d.ts +9 -0
- package/lib/components/layout/row/tru-row.d.ts +6 -0
- package/lib/components/toolbar/classes/tru-toolbar-dropdown-option.d.ts +4 -0
- package/lib/components/toolbar/dropdown/tru-toolbar-dropdown.d.ts +1 -1
- package/lib/components/toolbar/tru-toolbar.d.ts +0 -4
- package/lib/directives/search-panel-position-manager/tru-search-panel-position-manager-module.d.ts +9 -0
- package/lib/directives/search-panel-position-manager/tru-search-panel-position-manager.d.ts +40 -0
- package/lib/{services → event-handlers}/tru-search-group-event-handler.d.ts +0 -0
- package/lib/event-handlers/tru-search-view-event-handler.d.ts +8 -0
- package/lib/services/tru-sort.d.ts +56 -0
- package/package.json +1 -1
- package/public-api.d.ts +61 -33
- package/esm2020/lib/classes/tru-window-add-view-event.mjs +0 -22
- package/esm2020/lib/classes/tru-window-event.mjs +0 -25
- package/esm2020/lib/services/tru-search-group-event-handler.mjs +0 -41
- package/esm2020/lib/services/tru-window-action-event-handler.mjs +0 -27
- 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.