@smartbit4all/ng-client 7.0.6 → 7.0.9
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/MIGRATION-7.0.md +1722 -1722
- package/README.md +199 -199
- package/WIDGETS.md +215 -206
- package/fesm2022/smartbit4all-ng-client.mjs +600 -583
- package/fesm2022/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-7.0.9.tgz +0 -0
- package/types/smartbit4all-ng-client.d.ts +23 -4
- package/smartbit4all-ng-client-7.0.6.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartbit4all/ng-client",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.9",
|
|
4
4
|
"description": "Angular client library for the smartbit4all platform — a server-driven UI framework that renders views, pages, forms, grids, trees and dialogs from backend (ViewApi/PageApi) definitions. Provides reactive view-context state management, dynamic component layouts and OpenAPI-generated BFF clients.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
Binary file
|
|
@@ -7125,10 +7125,8 @@ declare class Table implements OnInit, OnDestroy {
|
|
|
7125
7125
|
showCellToolbar(row: any, columnName: string): boolean;
|
|
7126
7126
|
getRowMenuActionModel(element: any): any;
|
|
7127
7127
|
private rowMenuActionModelArrayCache;
|
|
7128
|
-
|
|
7128
|
+
getMenuActions(element: any): any[];
|
|
7129
7129
|
shouldShowMenuButton(row: any): boolean;
|
|
7130
|
-
getMenuButtons(row: any, button: SmartTableButton): SmartTableButton[];
|
|
7131
|
-
getMenuItemButtonsPropertyName(element: any, button: SmartTableButton): any[];
|
|
7132
7130
|
static ɵfac: i0.ɵɵFactoryDeclaration<Table, never>;
|
|
7133
7131
|
static ɵcmp: i0.ɵɵComponentDeclaration<Table, "ng-component", never, { "smartTable": { "alias": "smartTable"; "required": false; }; }, {}, never, never, true, never>;
|
|
7134
7132
|
}
|
|
@@ -9267,6 +9265,7 @@ declare class SmartComponentLayoutComponent implements AfterViewInit, AfterViewC
|
|
|
9267
9265
|
smartGrid?: SmartGrid;
|
|
9268
9266
|
mapId?: string;
|
|
9269
9267
|
smartDiagramId?: string;
|
|
9268
|
+
filterId?: string;
|
|
9270
9269
|
toolbarId?: string;
|
|
9271
9270
|
toolbarPropertes?: ToolbarProperties;
|
|
9272
9271
|
treeService?: SmarttreeGenericService;
|
|
@@ -9287,6 +9286,7 @@ declare class SmartComponentLayoutComponent implements AfterViewInit, AfterViewC
|
|
|
9287
9286
|
constructGrid(): void;
|
|
9288
9287
|
constructMap(): void;
|
|
9289
9288
|
construcDiagram(): void;
|
|
9289
|
+
constructFilter(): void;
|
|
9290
9290
|
constructTree(): void;
|
|
9291
9291
|
constructToolbar(): void;
|
|
9292
9292
|
constructEmbeddedSlot(): void;
|
|
@@ -9950,6 +9950,25 @@ declare class SmartFilterEditorContentComponent implements OnInit, AfterViewInit
|
|
|
9950
9950
|
static ɵcmp: i0.ɵɵComponentDeclaration<SmartFilterEditorContentComponent, "smart-filter-expression-editor", never, { "service": { "alias": "service"; "required": false; }; }, {}, never, never, true, never>;
|
|
9951
9951
|
}
|
|
9952
9952
|
|
|
9953
|
+
/**
|
|
9954
|
+
* A filter builder placed in a component layout. The identifier is the builder's filterId in the
|
|
9955
|
+
* view: the widget loads the builder by it, and the editor inside registers itself with the
|
|
9956
|
+
* screen component above under the same id for push updates. Each widget owns its own
|
|
9957
|
+
* SmartFilterEditorService.
|
|
9958
|
+
*/
|
|
9959
|
+
declare class SmartFilterWidgetComponent implements OnChanges {
|
|
9960
|
+
readonly service: SmartFilterEditorService;
|
|
9961
|
+
/** The screen component this builder belongs to; the source of its uuid. (ADR-0005) */
|
|
9962
|
+
private readonly smartComponent;
|
|
9963
|
+
readonly identifier: i0.InputSignal<string>;
|
|
9964
|
+
uuid?: string;
|
|
9965
|
+
constructor();
|
|
9966
|
+
ngOnChanges(): void;
|
|
9967
|
+
private configure;
|
|
9968
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartFilterWidgetComponent, never>;
|
|
9969
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartFilterWidgetComponent, "smart-filter-widget", never, { "identifier": { "alias": "identifier"; "required": true; "isSignal": true; }; "uuid": { "alias": "uuid"; "required": false; }; }, {}, never, never, true, never>;
|
|
9970
|
+
}
|
|
9971
|
+
|
|
9953
9972
|
declare const USE_ADVANCED_FILTER: InjectionToken<boolean>;
|
|
9954
9973
|
|
|
9955
9974
|
declare class SmartTooltipDirective {
|
|
@@ -10365,5 +10384,5 @@ declare class InvalidSmartlinkComponent extends SmartComponent<Object> {
|
|
|
10365
10384
|
static ɵcmp: i0.ɵɵComponentDeclaration<InvalidSmartlinkComponent, "lib-invalid-smartlink", never, {}, {}, never, never, true, never>;
|
|
10366
10385
|
}
|
|
10367
10386
|
|
|
10368
|
-
export { ACLEntry, APIS, AclEditingViewComponent, ApiQueueService, BASE_PATH, COLLECTION_FORMATS, CUSTOM_DIAGRAM_OPTIONS, CloseResult, ComponentFactoryService, ComponentType, ComponentWidgetType, Configuration$1 as Configuration, DIALOG_DISABLE_CLOSE, DataChangeKind, DefaultChartOptionsProvider, DefaultUiActionCode_CLOSE, DiagramShape, DrawTime, EMPTY_PARAMS, ExpandableSectionButtonIconPosition, ExpandableSectionButtonType, ExpandableSectionComponent, FilterExpressionBoolOperator$1 as FilterExpressionBoolOperator, FilterExpressionBuilderGroupBuilderGroupKindEnum, FilterExpressionBuilderUiModelTypeEnum, FilterExpressionDataType$1 as FilterExpressionDataType, FilterExpressionFieldWidgetType, FilterExpressionOperation$1 as FilterExpressionOperation, FilterExpressionOrderByOrderEnum, GenericPageComponent, GeoMapDataLoadingMode, GeoMapDataSourceType, GeoMapItemKind, GeoMapOperationMode, GeoMapSelectionMode, GeoMapTextType, GridColumnContentType, GridDataAccessConfigKindEnum, GridSelectionMode, GridSelectionType, GridUiActionType, GridViewDescriptorKindEnum, HighlightPipe, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, InvalidSmartlinkComponent, LayoutDirection, LinkTargetEnum, MAP_ENGINE, MapEngine, MenuOpenDirection, MenuTriggerType, MessageOptionType, MessageTextType, MessageType, NAMED_VALIDATOR, NamedValidatorOperationEnum, NamedValidatorService, NoPermissionPageComponent, REUSE_ROUTER_SLOT_COMPONENT, ROOT_CONTAINER_UUID, ROUTER_SLOT_ID, RecordingUploaderPropertiesOpenDirectionEnum, SMART_DATE_FORMATS, SMART_DEFAULT_VIEW_COMPONENTS, SMART_NG_CLIENT_CONFIG, SearchPageComponent, SelectionDefinitionTypeEnum, SelectionDefinitionValueSetValueTypeEnum, ServerRequestType, SessionAPIS, SessionErrorBehaviour, SessionService, SmartActionHost, SmartActionType, SmartBackendBootstrapService, SmartComponent, SmartComponentApiClient, SmartComponentDetachedDirective, SmartComponentHost, SmartComponentLayoutComponent, SmartDateFnsAdapter, SmartDatePipe, SmartDateTimePipe, SmartDefaultErrorUiService, SmartDiagramComponent, SmartDialog, SmartEmbeddedSlotDirective, SmartExpandableSectionService, SmartFileEditorComponent, SmartFilterComponent, SmartFilterEditorContentComponent, SmartFilterEditorService, SmartFilterExpressionFieldComponent, SmartFilterPosition, SmartFilterType, SmartFormInputMode, SmartFormTextFieldButtonIconPosition, SmartFormWidgetDirection, SmartFormWidgetType, SmartFormWidgetWidth, SmartGridButtonType, SmartGridComponent, SmartGridDataLayout, SmartGridService, SmartGridType, SmartIconComponent, SmartIconService, SmartLayoutDef, SmartLinkChannelVariableInPath, SmartLinkMigrationStatusStatusEnum, SmartLinkUuidVariableInPath, SmartMapComponent, SmartMultiFileEditorComponent, SmartNavbarComponent, SmartNavbarService, SmartNavigationService, SmartNgClientFeatureKind, SmartService, SmartSessionService, SmartSessionTimerComponent, SmartTable, SmartTableButtonType, SmartTableHeaderPropertyType, SmartTableInterfaceTypeEnum, SmartTableOptionButtonDirection, SmartTableOrder, SmartTableType, SmartTimePipe, SmartTooltipDirective, SmartTreeComponent, SmartTreeNodeButtonType, SmartUserSettinsIconPosition, SmartValidatorName, SmartViewContextService, SmartViewRedirect, SmartVoiceRecorderComponent, SmartWidgetHintPosition, SmartWidgetHintPositionEnum, SmartdialogService, SmartfileuploaderComponent, SmartformComponent, SmartformLayoutDefinitionService, SmarttreeGenericService, SmarttreeService, SubjectSelectorComponent, ThemeService, ToggleLabelPosition, ToolbarAlignment, ToolbarDirection, TreeArrowPosition, USE_ADVANCED_FILTER, UiActionButtonComponent, UiActionButtonType, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogButtonComponent, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, UiBadgeComponent, UiBadgeDirective, UploadWidgetType, ValidationResultPageComponent, ValueChangeMode, ViewContextRebuiltError, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType, barChart, bubbleChart, createBasicOptions, doughnutChart, horizontalBarChart, horizontalStackedBarChart, injectSmartComponent, multiAxisLineChart, pieChart, polarAreaChart, provideSmartNgClient, radarChart, registerSmartWidget, resolveDateLocale, resolveSlot, resolveSmartNgClientConfig, resolveViewHandler, scatterChart, stackedBarChart, transformDataToBarLikeDataSet, transformDataToBasicDataSets, transformDataToBubble, transformDataToScatter, withSmartDiagram, withSmartMap };
|
|
10387
|
+
export { ACLEntry, APIS, AclEditingViewComponent, ApiQueueService, BASE_PATH, COLLECTION_FORMATS, CUSTOM_DIAGRAM_OPTIONS, CloseResult, ComponentFactoryService, ComponentType, ComponentWidgetType, Configuration$1 as Configuration, DIALOG_DISABLE_CLOSE, DataChangeKind, DefaultChartOptionsProvider, DefaultUiActionCode_CLOSE, DiagramShape, DrawTime, EMPTY_PARAMS, ExpandableSectionButtonIconPosition, ExpandableSectionButtonType, ExpandableSectionComponent, FilterExpressionBoolOperator$1 as FilterExpressionBoolOperator, FilterExpressionBuilderGroupBuilderGroupKindEnum, FilterExpressionBuilderUiModelTypeEnum, FilterExpressionDataType$1 as FilterExpressionDataType, FilterExpressionFieldWidgetType, FilterExpressionOperation$1 as FilterExpressionOperation, FilterExpressionOrderByOrderEnum, GenericPageComponent, GeoMapDataLoadingMode, GeoMapDataSourceType, GeoMapItemKind, GeoMapOperationMode, GeoMapSelectionMode, GeoMapTextType, GridColumnContentType, GridDataAccessConfigKindEnum, GridSelectionMode, GridSelectionType, GridUiActionType, GridViewDescriptorKindEnum, HighlightPipe, IS_ASYNC_PARAM_NAME, IconPosition, ImageResourceKindEnum, InvalidSmartlinkComponent, LayoutDirection, LinkTargetEnum, MAP_ENGINE, MapEngine, MenuOpenDirection, MenuTriggerType, MessageOptionType, MessageTextType, MessageType, NAMED_VALIDATOR, NamedValidatorOperationEnum, NamedValidatorService, NoPermissionPageComponent, REUSE_ROUTER_SLOT_COMPONENT, ROOT_CONTAINER_UUID, ROUTER_SLOT_ID, RecordingUploaderPropertiesOpenDirectionEnum, SMART_DATE_FORMATS, SMART_DEFAULT_VIEW_COMPONENTS, SMART_NG_CLIENT_CONFIG, SearchPageComponent, SelectionDefinitionTypeEnum, SelectionDefinitionValueSetValueTypeEnum, ServerRequestType, SessionAPIS, SessionErrorBehaviour, SessionService, SmartActionHost, SmartActionType, SmartBackendBootstrapService, SmartComponent, SmartComponentApiClient, SmartComponentDetachedDirective, SmartComponentHost, SmartComponentLayoutComponent, SmartDateFnsAdapter, SmartDatePipe, SmartDateTimePipe, SmartDefaultErrorUiService, SmartDiagramComponent, SmartDialog, SmartEmbeddedSlotDirective, SmartExpandableSectionService, SmartFileEditorComponent, SmartFilterComponent, SmartFilterEditorContentComponent, SmartFilterEditorService, SmartFilterExpressionFieldComponent, SmartFilterPosition, SmartFilterType, SmartFilterWidgetComponent, SmartFormInputMode, SmartFormTextFieldButtonIconPosition, SmartFormWidgetDirection, SmartFormWidgetType, SmartFormWidgetWidth, SmartGridButtonType, SmartGridComponent, SmartGridDataLayout, SmartGridService, SmartGridType, SmartIconComponent, SmartIconService, SmartLayoutDef, SmartLinkChannelVariableInPath, SmartLinkMigrationStatusStatusEnum, SmartLinkUuidVariableInPath, SmartMapComponent, SmartMultiFileEditorComponent, SmartNavbarComponent, SmartNavbarService, SmartNavigationService, SmartNgClientFeatureKind, SmartService, SmartSessionService, SmartSessionTimerComponent, SmartTable, SmartTableButtonType, SmartTableHeaderPropertyType, SmartTableInterfaceTypeEnum, SmartTableOptionButtonDirection, SmartTableOrder, SmartTableType, SmartTimePipe, SmartTooltipDirective, SmartTreeComponent, SmartTreeNodeButtonType, SmartUserSettinsIconPosition, SmartValidatorName, SmartViewContextService, SmartViewRedirect, SmartVoiceRecorderComponent, SmartWidgetHintPosition, SmartWidgetHintPositionEnum, SmartdialogService, SmartfileuploaderComponent, SmartformComponent, SmartformLayoutDefinitionService, SmarttreeGenericService, SmarttreeService, SubjectSelectorComponent, ThemeService, ToggleLabelPosition, ToolbarAlignment, ToolbarDirection, TreeArrowPosition, USE_ADVANCED_FILTER, UiActionButtonComponent, UiActionButtonType, UiActionConfirmDialogService, UiActionDescriptorService, UiActionDialogButtonComponent, UiActionDialogType, UiActionFeedbackType, UiActionInputDialogService, UiActionInputType, UiActionService, UiActionToolbarComponent, UiActionTooltipTooltipPositionEnum, UiBadgeComponent, UiBadgeDirective, UploadWidgetType, ValidationResultPageComponent, ValueChangeMode, ViewContextRebuiltError, ViewEventHandlerViewEventTypeEnum, ViewService, ViewState, ViewType, barChart, bubbleChart, createBasicOptions, doughnutChart, horizontalBarChart, horizontalStackedBarChart, injectSmartComponent, multiAxisLineChart, pieChart, polarAreaChart, provideSmartNgClient, radarChart, registerSmartWidget, resolveDateLocale, resolveSlot, resolveSmartNgClientConfig, resolveViewHandler, scatterChart, stackedBarChart, transformDataToBarLikeDataSet, transformDataToBasicDataSets, transformDataToBubble, transformDataToScatter, withSmartDiagram, withSmartMap };
|
|
10369
10388
|
export type { ACL, AccountInfo, ApiError, ApiQueueCall, AuthenticationProviderData, BackgroundProcessInfo, BadgeDescriptor, ClipboardData, ComponentConstraint, ComponentModel, ComponentModelChange, ConfigurationParameters$1 as ConfigurationParameters, Coord, DataChange, DataChangeEvent, DataFormat$1 as DataFormat, DataType$1 as DataType, DateFieldProperties, DefaultErrorUiLanguage, DefaultErrorUiOptions, DefaultErrorUiStrings, DefaultViewComponentEntry, DeviceInfo, DiagramColor, DiagramDataContainer, DiagramDataItem, DiagramDataSet, DiagramDescriptor, DiagramFactory, DiagramModel, DivProperties, DownloadedFile, EditFolderAction, ExecuteUiActionOptions, ExpandableSection, ExpandableSectionButton, ExpandableSectionStateChange, FileUploaderProperties, FilterExpressionBuilderApiConfig, FilterExpressionBuilderField, FilterExpressionBuilderGroup, FilterExpressionBuilderModel, FilterExpressionBuilderUiModel, FilterExpressionData$1 as FilterExpressionData, FilterExpressionField, FilterExpressionFieldEditor, FilterExpressionFieldList, FilterExpressionList$1 as FilterExpressionList, FilterExpressionOperandData$1 as FilterExpressionOperandData, FilterExpressionOrderBy, GPSPosition, GPSRoute, GeoMapChange, GeoMapDataSourceDescriptor, GeoMapEditingSession, GeoMapInteraction, GeoMapItem, GeoMapLayer, GeoMapLayerChange, GeoMapLayerDescriptor, GeoMapModel, GeoMapServerModel, GeoMapViewState, GeoMapViewport, GetAuthenticationProvidersResponse, GridColumnMeta, GridDataAccessConfig, GridExportDescriptor, GridModel, GridOptions, GridPage, GridRow, GridRowLayoutDescriptor, GridSelectionChange, GridServerModel, GridUpdateData, GridView, GridViewDescriptor, HeaderParam, ISmartFilterEditorService, ImageProperties, ImageResource, InvocationRequest$1 as InvocationRequest, LabelText, LayoutDefinitionDescriptor, Link, MapClickedEvent, MapDraggedEvent, MapEditingItemClickedEvent, MapEditingItemDraggedEvent, MapItemClickedEvent, MapItemConfiguration, MapZoomChangedEvent, MenuDescriptor, MessageData, MessageOption, MessageResult, MultiComboBoxElement, MultiComboBoxModel, MultiFileUploaderProperties, NamedValidator, OpenPendingData, Param$1 as Param, ParamLocation$1 as ParamLocation, ParamStyle$1 as ParamStyle, PropertyDefinitionData, PropertyMapping, PublishedViewData, RecordingUploaderProperties, RefreshSessionRequest, ResolvedSlot, ResolvedSmartNgClientConfig, SearchIndexObjectDefinitionData, SearchIndexPropertyDefinitionData, SearchPageModel, SelectionDefinition, ServerRequestExecutionStat, ServerRequestTrack, Session, SessionError, SessionInfoData, ShellProperty, SlotKind, SmartBackendBootstrapConfig, SmartBackendBootstrapCredentials, SmartButton, SmartCheckBox, SmartCheckBox2, SmartComponentCollectInvalidFieldsCommand, SmartComponentCommand, SmartComponentFileUploader, SmartComponentInvalidFields, SmartComponentLayoutDefinition, SmartComponentSubmitCommand, SmartComponentWidgetChangedCommand, SmartComponentWidgetDefinition, SmartContainer, SmartContent, SmartDatePicker, SmartDateTimePicker, SmartDialogData, SmartDialogSize, SmartDiv, SmartDivider, SmartEmbeddedViewRef, SmartErrorDialogLabels, SmartFileUploader, SmartFileUploaderI18n, SmartFilter, SmartFilterEditorConfig, SmartForm, SmartFormComponentConstraint, SmartFormInlineComponent, SmartFormInvalidFields, SmartFormTextFieldButton, SmartFormWidget, SmartGrid, SmartGridButton, SmartGridData, SmartIconSet, SmartImage, SmartIndicator, SmartIndicatorItem, SmartItem, SmartItemGroup, SmartItems, SmartLabel, SmartLayoutDefinition, SmartLinkData, SmartLinkMigrationStatus, SmartMatrix, SmartMatrixButton, SmartMatrixModel, SmartMonthPicker, SmartMultiFileUploader, SmartNavbar, SmartNgClientConfig, SmartNgClientFeature, SmartNotification, SmartRadioButton, SmartRecordingUploader, SmartRichText, SmartSearchBar, SmartSearchRequest, SmartSelect, SmartSelectMultiple, SmartSessionHandlerService, SmartSortable, SmartSvg, SmartTableButton, SmartTableGridInterface, SmartTableHeader, SmartTableHeaderIcons, SmartTableHeaderProperties, SmartTableIcon, SmartTableInterface, SmartTableInterfaceType, SmartTableOption, SmartTableRowExpander, SmartTextBox, SmartTextField, SmartTextFieldChips, SmartTextFieldLookup, SmartTextFieldNumber, SmartTime, SmartToggle, SmartTreeModel, SmartTreeNode, SmartTreeNodeButton, SmartTreeNodeType, SmartUserSetting, SmartUserSettings, SmartValidator, SmartViewContextApiError, SmartViewContextApiErrors, SmartViewDialogRef, SmartViewHandlerModel, SmartWidgetDefinition, SmartWidgetHint, SmartWidgetHintConfig, SmartWidgetRegistration, SmartYoutubePlayer, SmartformLayoutCreateWidgetConfig, SmarttreeConfiguration, SophisticatedValueChange, SortDefinition, StandardDataFormat$1 as StandardDataFormat, StandardDataType$1 as StandardDataType, StandardParamStyle$1 as StandardParamStyle, StatisticRecord, StoredCollectionDescriptor, Style, Subject, TextBoxProperties, TextFieldProperties, ThemeDefinition, ThemeDescriptor, ThemeShellDescriptor, ToolbarEntry, ToolbarProperties, TreeStyle, UiAction, UiActionAdditionalParams, UiActionButtonDescriptor, UiActionConstraint, UiActionDefinition, UiActionDefinitionEntry, UiActionDescriptor, UiActionDialogDescriptor, UiActionExecutor, UiActionModel, UiActionRequest, UiActionSchedule, UiActionSpecificDemandResponse, UiActionTooltip, UiActionUploadDescriptor, UploadedFile, UserActivityLog, ValidatedWidget, ValidatorFactory, ValidatorParameters, Value$1 as Value, ValueSet, ValueSetData, View, ViewApiError, ViewConstraint, ViewContext, ViewContextChange, ViewContextData, ViewContextUpdate, ViewData, ViewEventHandler, ViewPlaceholder, ViewStateUpdate };
|
|
Binary file
|