@smartbit4all/ng-client 3.3.139 → 3.3.141
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/smart-client/smart-component-api-client.mjs +34 -31
- package/esm2020/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.mjs +1 -1
- package/esm2020/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-component-layout/smart-component-layout-utility.mjs +48 -9
- package/esm2020/lib/smart-component-layout/smart-component-layout.component.mjs +67 -28
- package/esm2020/lib/smart-component-layout/smart-component-layout.module.mjs +1 -5
- package/esm2020/lib/smart-dialog/smartdialog.model.mjs +1 -1
- package/esm2020/lib/smart-dialog/smartdialog.module.mjs +5 -5
- package/esm2020/lib/smart-expandable-section/expandable-section.component.mjs +12 -6
- package/esm2020/lib/smart-expandable-section/expandable-section.model.mjs +1 -1
- package/esm2020/lib/smart-filter/api/filter/model/filterExpressionFieldWidgetType.mjs +2 -1
- package/esm2020/lib/smart-filter/smart-filter.module.mjs +5 -5
- package/esm2020/lib/smart-filter-editor/api/model/filterExpressionField.mjs +1 -1
- package/esm2020/lib/smart-filter-editor/api/model/filterExpressionFieldWidgetType.mjs +2 -1
- package/esm2020/lib/smart-filter-editor/api/model/smartFilterType.mjs +17 -0
- package/esm2020/lib/smart-filter-editor/smart-filter-editor.module.mjs +1 -8
- package/esm2020/lib/smart-form/api/model/smartFormWidgetType.mjs +1 -1
- package/esm2020/lib/smart-form/api/model/smartMatrixModel.mjs +1 -1
- package/esm2020/lib/smart-form/api/model/smartWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-form/api/model/valueChangeMode.mjs +1 -1
- package/esm2020/lib/smart-form/projects.mjs +1 -2
- package/esm2020/lib/smart-form/services/smartform.layout-definition.service.mjs +21 -3
- package/esm2020/lib/smart-form/services/smartform.service.mjs +6 -1
- package/esm2020/lib/smart-form/smartform.component.mjs +19 -3
- package/esm2020/lib/smart-form/smartform.form-model.mjs +1 -1
- package/esm2020/lib/smart-form/widgets/smartformwidget/smartformwidget.component.mjs +118 -32
- package/esm2020/lib/smart-grid/api/grid-api/model/gridColumnMeta.mjs +1 -1
- package/esm2020/lib/smart-grid/api/grid-api/model/gridModel.mjs +1 -1
- package/esm2020/lib/smart-grid/api/grid-api/model/gridServerModel.mjs +1 -1
- package/esm2020/lib/smart-grid/smart-grid.component.mjs +26 -11
- package/esm2020/lib/smart-grid/smart-grid.module.mjs +3 -6
- package/esm2020/lib/smart-navbar/smart-navbar.module.mjs +5 -5
- package/esm2020/lib/smart-ng-client.module.mjs +1 -8
- package/esm2020/lib/smart-table/tables/table.mjs +6 -4
- package/esm2020/lib/smart-tree/smarttree-generic.service.mjs +20 -13
- package/esm2020/lib/smart-tree/smarttree.module.mjs +11 -3
- package/esm2020/lib/view-context/api/model/uiAction.mjs +1 -1
- package/esm2020/lib/view-context/api/model/uiActionRequest.mjs +1 -1
- package/esm2020/lib/view-context/api/model/valueSet.mjs +1 -1
- package/esm2020/lib/view-context/api/model/viewContextChange.mjs +1 -1
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.mjs +15 -12
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.mjs +2 -2
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.mjs +13 -10
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.mjs +2 -2
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component.mjs +17 -11
- package/esm2020/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.mjs +2 -2
- package/esm2020/lib/view-context/smart-ui-action/ui-action-toolbar.component.mjs +11 -6
- package/esm2020/lib/view-context/smart-ui-action/ui-action.model.mjs +1 -1
- package/esm2020/lib/view-context/smart-ui-action/ui-action.service.mjs +14 -8
- package/esm2020/lib/view-context/smart-view-context.module.mjs +132 -10
- package/esm2020/lib/view-context/smart-view-context.service.mjs +8 -1
- package/fesm2015/smartbit4all-ng-client.mjs +3962 -3728
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +3776 -3550
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-client/smart-component-api-client.d.ts +2 -1
- package/lib/smart-component-layout/api/model/smartComponentLayoutDefinition.d.ts +3 -5
- package/lib/smart-component-layout/api/model/smartComponentWidgetDefinition.d.ts +2 -2
- package/lib/smart-component-layout/smart-component-layout-utility.d.ts +4 -3
- package/lib/smart-component-layout/smart-component-layout.component.d.ts +10 -6
- package/lib/smart-component-layout/smart-component-layout.module.d.ts +5 -6
- package/lib/smart-dialog/smartdialog.model.d.ts +2 -2
- package/lib/smart-dialog/smartdialog.module.d.ts +2 -2
- package/lib/smart-expandable-section/expandable-section.model.d.ts +4 -2
- package/lib/smart-filter/api/filter/model/filterExpressionFieldWidgetType.d.ts +1 -0
- package/lib/smart-filter/smart-filter.module.d.ts +2 -2
- package/lib/smart-filter-editor/api/model/filterExpressionField.d.ts +3 -0
- package/lib/smart-filter-editor/api/model/filterExpressionFieldWidgetType.d.ts +1 -0
- package/lib/smart-filter-editor/api/model/smartFilterType.d.ts +15 -0
- package/lib/smart-filter-editor/smart-filter-editor.module.d.ts +4 -5
- package/lib/smart-form/api/model/smartWidgetDefinition.d.ts +2 -1
- package/lib/smart-form/projects.d.ts +0 -1
- package/lib/smart-form/services/smartform.layout-definition.service.d.ts +1 -0
- package/lib/smart-form/smartform.component.d.ts +6 -2
- package/lib/smart-form/smartform.form-model.d.ts +17 -1
- package/lib/smart-form/widgets/smartformwidget/smartformwidget.component.d.ts +31 -1
- package/lib/smart-grid/api/grid-api/model/gridColumnMeta.d.ts +4 -0
- package/lib/smart-grid/api/grid-api/model/gridModel.d.ts +2 -0
- package/lib/smart-grid/api/grid-api/model/gridServerModel.d.ts +2 -0
- package/lib/smart-grid/smart-grid.component.d.ts +2 -1
- package/lib/smart-grid/smart-grid.module.d.ts +3 -4
- package/lib/smart-navbar/smart-navbar.module.d.ts +2 -2
- package/lib/smart-ng-client.module.d.ts +12 -13
- package/lib/smart-tree/smarttree-generic.service.d.ts +2 -3
- package/lib/view-context/api/model/uiAction.d.ts +4 -0
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.component.d.ts +5 -5
- package/lib/view-context/smart-ui-action/dialogs/ui-action-confirm-dialog/ui-action-confirm-dialog.service.d.ts +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.component.d.ts +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-file-upload-dialog/ui-action-file-upload-dialog.service.d.ts +1 -1
- package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.component.d.ts +2 -2
- package/lib/view-context/smart-ui-action/dialogs/ui-action-input-dialog/ui-action-input-dialog.service.d.ts +1 -1
- package/lib/view-context/smart-ui-action/ui-action.model.d.ts +1 -1
- package/lib/view-context/smart-ui-action/ui-action.service.d.ts +3 -3
- package/lib/view-context/smart-view-context.module.d.ts +34 -11
- package/lib/view-context/smart-view-context.service.d.ts +2 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.141.tgz +0 -0
- package/esm2020/lib/smart-form/smartform.module.mjs +0 -157
- package/lib/smart-form/smartform.module.d.ts +0 -35
- package/smartbit4all-ng-client-3.3.139.tgz +0 -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.