awing-library 2.1.2-dev.86 → 2.1.2-dev.88
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ConfigArrayEdit, ConfigResult, ParamConfiguration, WorkspaceSharingInputForm, type SharingWorkspace, type WorkspaceSharing, type Configuration, ObjectDataInputOfSharingWorkspaceConfigInput, ObjectDataInputOfSharingWorkspaceInput } from './Types';
|
|
2
2
|
import { type WorkspaceOption } from './Atoms';
|
|
3
|
+
export declare const generateUniqueId: () => number;
|
|
3
4
|
export declare const checkValid: (cws?: WorkspaceSharing) => boolean;
|
|
4
5
|
/** Lấy tất cả param trong dấu {}:
|
|
5
6
|
* VD any(o.MediaPlanApprovals, i.CustomerId = {CustomerId}) => return: ["CustomerId"]
|
|
@@ -3,3 +3,4 @@ export declare function Sharing(props: SharingProps): import("react/jsx-runtime"
|
|
|
3
3
|
export * from './Types';
|
|
4
4
|
export default Sharing;
|
|
5
5
|
export { default as ParamConfigurationInputs } from './component/ParamConfigurationInputs';
|
|
6
|
+
export { getAllStringsBetweenBraces } from './Utils';
|
|
@@ -7,4 +7,4 @@ export { default as UserSystem } from './User';
|
|
|
7
7
|
export { default as SchemaSystem } from './Schema';
|
|
8
8
|
export { default as WorkflowSystem } from './Workflow';
|
|
9
9
|
export { default as DirectorySystem } from './Directory';
|
|
10
|
-
export { default as SharingSystem, ParamConfigurationInputs, type Configuration, type ParamConfiguration } from './Sharing';
|
|
10
|
+
export { default as SharingSystem, ParamConfigurationInputs, type Configuration, type ParamConfiguration, getAllStringsBetweenBraces } from './Sharing';
|
package/dist/esm/index.js
CHANGED
|
@@ -188666,6 +188666,12 @@ var SharingConfigParamType;
|
|
|
188666
188666
|
SharingConfigParamType["Schema"] = "SCHEMA";
|
|
188667
188667
|
})(SharingConfigParamType || (SharingConfigParamType = {}));
|
|
188668
188668
|
|
|
188669
|
+
// Utility function to generate unique IDs
|
|
188670
|
+
let uniqueIdCounter = 0;
|
|
188671
|
+
const generateUniqueId = () => {
|
|
188672
|
+
uniqueIdCounter += 1;
|
|
188673
|
+
return Date.now() + uniqueIdCounter;
|
|
188674
|
+
};
|
|
188669
188675
|
/** Lấy tất cả param trong dấu {}:
|
|
188670
188676
|
* VD any(o.MediaPlanApprovals, i.CustomerId = {CustomerId}) => return: ["CustomerId"]
|
|
188671
188677
|
*/
|
|
@@ -188854,7 +188860,7 @@ const getWorkspacesConfigByFilter = (workspaces, workspaceOptions, filterParams)
|
|
|
188854
188860
|
});
|
|
188855
188861
|
_$3.each(_$3.difference(getLowerCase(filterParams), getLowerCase(restFilter)), r => {
|
|
188856
188862
|
nConfigs.push({
|
|
188857
|
-
id:
|
|
188863
|
+
id: generateUniqueId(),
|
|
188858
188864
|
paramName: filterParams[_$3.findIndex(getLowerCase(filterParams), f => f === r)],
|
|
188859
188865
|
paramValue: getDefaultValues(r, currentWorkspace),
|
|
188860
188866
|
paramType: SharingConfigParamType.Filter
|
|
@@ -189403,13 +189409,13 @@ function WorkspaceSharingConfig(props) {
|
|
|
189403
189409
|
return false;
|
|
189404
189410
|
});
|
|
189405
189411
|
const restFilter = lodashExports.map(lodashExports.difference(filter, pushedFilter), i => ({
|
|
189406
|
-
id:
|
|
189412
|
+
id: generateUniqueId(),
|
|
189407
189413
|
paramName: i,
|
|
189408
189414
|
paramValue: getDefaultValues(i, currentWorkspaceByOption),
|
|
189409
189415
|
paramType: SharingConfigParamType.Filter
|
|
189410
189416
|
}));
|
|
189411
189417
|
const restSchema = lodashExports.map(lodashExports.difference(schema, pushedSchema), i => ({
|
|
189412
|
-
id:
|
|
189418
|
+
id: generateUniqueId(),
|
|
189413
189419
|
paramName: i,
|
|
189414
189420
|
paramValue: undefined,
|
|
189415
189421
|
paramType: SharingConfigParamType.Schema
|
|
@@ -189420,13 +189426,13 @@ function WorkspaceSharingConfig(props) {
|
|
|
189420
189426
|
});
|
|
189421
189427
|
} else {
|
|
189422
189428
|
const crFilter = lodashExports.map(filter, i => ({
|
|
189423
|
-
id:
|
|
189429
|
+
id: generateUniqueId(),
|
|
189424
189430
|
paramName: i,
|
|
189425
189431
|
paramValue: undefined,
|
|
189426
189432
|
paramType: SharingConfigParamType.Filter
|
|
189427
189433
|
}));
|
|
189428
189434
|
const crSchema = lodashExports.map(schema, i => ({
|
|
189429
|
-
id:
|
|
189435
|
+
id: generateUniqueId(),
|
|
189430
189436
|
paramName: i,
|
|
189431
189437
|
paramValue: undefined,
|
|
189432
189438
|
paramType: SharingConfigParamType.Schema
|
|
@@ -189457,7 +189463,7 @@ function WorkspaceSharingConfig(props) {
|
|
|
189457
189463
|
const handleSubmit = () => {
|
|
189458
189464
|
if (isCreate) {
|
|
189459
189465
|
workspaceSelected !== -1 && lodashExports.isFunction(onChangeConfigurations) && onChangeConfigurations({
|
|
189460
|
-
id:
|
|
189466
|
+
id: generateUniqueId(),
|
|
189461
189467
|
workspaceId: workspaceSelected,
|
|
189462
189468
|
configurations: [...configuration.filter, ...configuration.schema.filter(s => s.paramValue !== undefined && s.paramValue !== '' && s.paramValue !== null)]
|
|
189463
189469
|
});
|
|
@@ -189478,7 +189484,7 @@ function WorkspaceSharingConfig(props) {
|
|
|
189478
189484
|
const currentWorkspace = lodashExports.find(workspaceOptions, w => w.id === workspaceSelected);
|
|
189479
189485
|
if (isCreate && currentWorkspace) {
|
|
189480
189486
|
const crFilter = lodashExports.map(lodashExports.cloneDeep(configuration.filter), i => ({
|
|
189481
|
-
id:
|
|
189487
|
+
id: generateUniqueId(),
|
|
189482
189488
|
paramName: i.paramName,
|
|
189483
189489
|
paramValue: getDefaultValues(i.paramName, currentWorkspace),
|
|
189484
189490
|
paramType: SharingConfigParamType.Filter
|
|
@@ -189587,13 +189593,13 @@ function AllWorkspaceConfig(props) {
|
|
|
189587
189593
|
const currentWorkspace = lodashExports.find(workspaceOptions, w => w.id === id);
|
|
189588
189594
|
if (currentWorkspace) {
|
|
189589
189595
|
const crFilter = lodashExports.map(lodashExports.cloneDeep(filter), i => ({
|
|
189590
|
-
id:
|
|
189596
|
+
id: generateUniqueId(),
|
|
189591
189597
|
paramName: i,
|
|
189592
189598
|
paramValue: getDefaultValues(i, currentWorkspace),
|
|
189593
189599
|
paramType: SharingConfigParamType.Filter
|
|
189594
189600
|
}));
|
|
189595
189601
|
const crSchema = lodashExports.map(schema, i => ({
|
|
189596
|
-
id:
|
|
189602
|
+
id: generateUniqueId(),
|
|
189597
189603
|
paramName: i,
|
|
189598
189604
|
paramValue: undefined,
|
|
189599
189605
|
paramType: SharingConfigParamType.Schema
|
|
@@ -189733,7 +189739,7 @@ function TargetWorkspace(props) {
|
|
|
189733
189739
|
if (newWorkspaceAdded) {
|
|
189734
189740
|
newWorkspaces.push({
|
|
189735
189741
|
__typename: 'SharingWorkspace',
|
|
189736
|
-
id: 0 -
|
|
189742
|
+
id: 0 - generateUniqueId(),
|
|
189737
189743
|
targetWorkspaceId: config.workspaceId,
|
|
189738
189744
|
targetWorkspace: {
|
|
189739
189745
|
id: newWorkspaceAdded.customerId,
|
|
@@ -189754,7 +189760,7 @@ function TargetWorkspace(props) {
|
|
|
189754
189760
|
if (newWorkspaceAdded) {
|
|
189755
189761
|
newWorkspaces.push({
|
|
189756
189762
|
__typename: 'SharingWorkspace',
|
|
189757
|
-
id:
|
|
189763
|
+
id: generateUniqueId(),
|
|
189758
189764
|
targetWorkspaceId: c.workspaceId,
|
|
189759
189765
|
targetWorkspace: {
|
|
189760
189766
|
id: newWorkspaceAdded.customerId,
|
|
@@ -206467,4 +206473,4 @@ var index_es = /*#__PURE__*/Object.freeze({
|
|
|
206467
206473
|
vectorsRatio: vectorsRatio
|
|
206468
206474
|
});
|
|
206469
206475
|
|
|
206470
|
-
export { Container$n as Action, AdvancedSearch, AppContext, AppProvider, AsyncAutocomplete, AwingContext, BarLineChart, BoxResizableSplit, ButtonDateRangePicker, ButtonSelect, CircularProgress, DrawerBase as ClassicBaseDrawer, DrawerWrapper$1 as ClassicDrawer, CloseAction, ContentHeader, ControlPanels, CopyButton, CronTab, DataForm, DataGrid, DataGridGroup, DataGridSortType, InputFactory as DataInput, DateAutoFormat, Container$g as DatePicker, DateRangePicker$1 as DateRangePicker, Container$h as DateRangePickerOld, EnhancedDialog as DeprecatedEnhancedDialog, CreateDirectory as DirectoryForm, PermissionWarpper as DirectoryPermission, DirectoryRoot, DirectorySystem, DirectoryTree, DrawerWrapper as Drawer, DrawerNavigate, DrawerStateEnum, Container$m as EnhancedAutoComplete, EnumFieldInputType, EnumSelectedPlaceType, FIELD_TYPE, FilterNotification, FilterOperationType, FilterTreeView, FooterContainer as Footer, GoogleMap, GroupSystem, GroupTable, HierarchyTree, I18nProvider, INT_NUMBER_LIMIT, Container as Layout, Notifications as LayoutNotifications, LogicExpressionInput as LogicExpression, LogicalOperatorType, MemoWrap, MonacoEditor$1 as MonacoEditor, MultipleChoice, MultipleHierarchicalChoice, NoData, NotificationConfig, NotificationFilter as NotificationObjectFilter, NumberFormat, AsynchronousAutocomplete as OldAsyncAutoComplete, Page, PageManagement, Pagination, ParamConfigurationInputs, PieChart, PlaceFilter, RoleSystem, RoleTagSystem, SchemaSystem, SearchBox, Sharing as SharingSystem, ShowTreeItem, SimpleTreeItemWrapper, SortEnumType, Sortable, SortableTree, StatisticsCommon as Statistics, SubscriptionConfig, TIMELINE_TYPE, TYPE_CHART, TYPE_FILTERS, TabLabel, TableCellEditable$1 as TableCellEditable, TableEditable$1 as TableEditable, TableEditableBody$1 as TableEditableBody, TableEditable as TableEditableCollapsible, TableEditableBody as TableEditableCollapsibleBody, TableCellEditable as TableEditableCollapsibleCell, TableHeader as TableEditableCollapsibleTableHeader, TopBarActions as TableEditableCollapsibleTopBarActions, TableHeader$1 as TableHeader, TablePaginationActions, Template as TemplateConfig, ThemeProvider, ToolbarLayout as Toolbar, TopBarActions$1 as TopBarActions, TreeItemWithAction, User as UserSystem, WMAPEcalculator, WorkflowFeature as WorkflowSystem, WorkspaceType, Wrapper, arrayIsNotEmptyValid, calculateValue, calculatorDirectoryIdRoot, changeToAlias, checkValidMacAddress, checkValidStringListAP, checkValidUrl, colorValid, containsOnlyDigits, convertArrayFiltersToCondition, convertArrayToObject, convertDataSetPattern, convertDateTimeToTimestamp, convertFilterExpressionToCondition, convertFormulaToBinaryTree, convertTimeLine, convertTimelineToDateTime, convertTimestampToDateTime, convertToPostfix, darkTheme, dateRangeValid, dateTimeToString, dateToString, dateToStringDDMMYYYY, dateValid, download, downloadWithDataSet, emailValid, fillMissingDates, flattenTree, formatChartNumber, formatJSON$1 as formatJSON, formatNumberByLocale, formatNumberWithLanguage, generateUUID, getCookie, getGUID, getPrecedence, getQueryVariable, getRandomKey, getRoutePath, getStartOfDay, getToday, handleExportExcel, i18n as i18nLib, isOperand, isOperator, lightTheme, nameExportStandard, notNullValid, numberNotNullValid, numberOnlyValid, numberPercentageNotNullValid, off, offlinePaginate, parseJSON, passwordValid, positiveNumberNotNullValid, pub, replaceFieldsValue, roundDecimalNumber, setObject, stringNotNullValid, stringNullableValid, sub, textValidation, timestampToStringDDMMYYYY, toCapitalize, tokenize, updateGUID, updateObjectFields, urlValid, useAppHelper, useAwing, useDrawer, useGetContext$8 as useGetContext, useGetData, usePath, validateNumber };
|
|
206476
|
+
export { Container$n as Action, AdvancedSearch, AppContext, AppProvider, AsyncAutocomplete, AwingContext, BarLineChart, BoxResizableSplit, ButtonDateRangePicker, ButtonSelect, CircularProgress, DrawerBase as ClassicBaseDrawer, DrawerWrapper$1 as ClassicDrawer, CloseAction, ContentHeader, ControlPanels, CopyButton, CronTab, DataForm, DataGrid, DataGridGroup, DataGridSortType, InputFactory as DataInput, DateAutoFormat, Container$g as DatePicker, DateRangePicker$1 as DateRangePicker, Container$h as DateRangePickerOld, EnhancedDialog as DeprecatedEnhancedDialog, CreateDirectory as DirectoryForm, PermissionWarpper as DirectoryPermission, DirectoryRoot, DirectorySystem, DirectoryTree, DrawerWrapper as Drawer, DrawerNavigate, DrawerStateEnum, Container$m as EnhancedAutoComplete, EnumFieldInputType, EnumSelectedPlaceType, FIELD_TYPE, FilterNotification, FilterOperationType, FilterTreeView, FooterContainer as Footer, GoogleMap, GroupSystem, GroupTable, HierarchyTree, I18nProvider, INT_NUMBER_LIMIT, Container as Layout, Notifications as LayoutNotifications, LogicExpressionInput as LogicExpression, LogicalOperatorType, MemoWrap, MonacoEditor$1 as MonacoEditor, MultipleChoice, MultipleHierarchicalChoice, NoData, NotificationConfig, NotificationFilter as NotificationObjectFilter, NumberFormat, AsynchronousAutocomplete as OldAsyncAutoComplete, Page, PageManagement, Pagination, ParamConfigurationInputs, PieChart, PlaceFilter, RoleSystem, RoleTagSystem, SchemaSystem, SearchBox, Sharing as SharingSystem, ShowTreeItem, SimpleTreeItemWrapper, SortEnumType, Sortable, SortableTree, StatisticsCommon as Statistics, SubscriptionConfig, TIMELINE_TYPE, TYPE_CHART, TYPE_FILTERS, TabLabel, TableCellEditable$1 as TableCellEditable, TableEditable$1 as TableEditable, TableEditableBody$1 as TableEditableBody, TableEditable as TableEditableCollapsible, TableEditableBody as TableEditableCollapsibleBody, TableCellEditable as TableEditableCollapsibleCell, TableHeader as TableEditableCollapsibleTableHeader, TopBarActions as TableEditableCollapsibleTopBarActions, TableHeader$1 as TableHeader, TablePaginationActions, Template as TemplateConfig, ThemeProvider, ToolbarLayout as Toolbar, TopBarActions$1 as TopBarActions, TreeItemWithAction, User as UserSystem, WMAPEcalculator, WorkflowFeature as WorkflowSystem, WorkspaceType, Wrapper, arrayIsNotEmptyValid, calculateValue, calculatorDirectoryIdRoot, changeToAlias, checkValidMacAddress, checkValidStringListAP, checkValidUrl, colorValid, containsOnlyDigits, convertArrayFiltersToCondition, convertArrayToObject, convertDataSetPattern, convertDateTimeToTimestamp, convertFilterExpressionToCondition, convertFormulaToBinaryTree, convertTimeLine, convertTimelineToDateTime, convertTimestampToDateTime, convertToPostfix, darkTheme, dateRangeValid, dateTimeToString, dateToString, dateToStringDDMMYYYY, dateValid, download, downloadWithDataSet, emailValid, fillMissingDates, flattenTree, formatChartNumber, formatJSON$1 as formatJSON, formatNumberByLocale, formatNumberWithLanguage, generateUUID, getAllStringsBetweenBraces, getCookie, getGUID, getPrecedence, getQueryVariable, getRandomKey, getRoutePath, getStartOfDay, getToday, handleExportExcel, i18n as i18nLib, isOperand, isOperator, lightTheme, nameExportStandard, notNullValid, numberNotNullValid, numberOnlyValid, numberPercentageNotNullValid, off, offlinePaginate, parseJSON, passwordValid, positiveNumberNotNullValid, pub, replaceFieldsValue, roundDecimalNumber, setObject, stringNotNullValid, stringNullableValid, sub, textValidation, timestampToStringDDMMYYYY, toCapitalize, tokenize, updateGUID, updateObjectFields, urlValid, useAppHelper, useAwing, useDrawer, useGetContext$8 as useGetContext, useGetData, usePath, validateNumber };
|
package/dist/index.d.ts
CHANGED
|
@@ -3258,6 +3258,11 @@ type ParamConfigurationInputsProps = {
|
|
|
3258
3258
|
};
|
|
3259
3259
|
declare function ParamConfigurationInputs(props: ParamConfigurationInputsProps): react_jsx_runtime.JSX.Element;
|
|
3260
3260
|
|
|
3261
|
+
/** Lấy tất cả param trong dấu {}:
|
|
3262
|
+
* VD any(o.MediaPlanApprovals, i.CustomerId = {CustomerId}) => return: ["CustomerId"]
|
|
3263
|
+
*/
|
|
3264
|
+
declare const getAllStringsBetweenBraces: (input: string) => string[];
|
|
3265
|
+
|
|
3261
3266
|
declare function Sharing(props: SharingProps): react_jsx_runtime.JSX.Element;
|
|
3262
3267
|
|
|
3263
3268
|
/**
|
|
@@ -3534,4 +3539,4 @@ declare function ThemeProvider(props: {
|
|
|
3534
3539
|
};
|
|
3535
3540
|
}): react_jsx_runtime.JSX.Element;
|
|
3536
3541
|
|
|
3537
|
-
export { Container$4 as Action, type ActionsProps, AdvancedSearch, type AdvancedSearchField, type AdvancedSearchProps, type AnalyticDataProviderModel, AppContext, AppProvider, AsyncAutocomplete, type AsyncAutocompleteProps, type AsynchronousAutocompleteProps, AwingContext, BarLineChart, type BaseDirectoryPermission, type BaseFieldDefinition, type BaseFieldRender, type BinaryTreeNode, BoxResizableSplit, type BoxResizableSplitProps, ButtonDateRangePicker, type ButtonDateRangePickerProps, ButtonSelect, type ButtonSelectProps, type Cell, type CellDefinition$1 as CellDefinition, type ChartContentProps, CircularProgress, DrawerBase as ClassicBaseDrawer, DrawerWrapper as ClassicDrawer, CloseAction, type ColumnDefinition$1 as ColumnDefinition, type CombinedProps, type Configuration, ContentHeader, type OwnProps as ContentHeaderProps, ControlPanels, CopyButton, type CopyButtonProps, CronTab, type CronTabProps, type CronTabValue, type DataExportEntity, DataForm, type DataFormProps, DataGrid, type DataGridColumnDefinitionBase, DataGridGroup, type DataGridProps, DataGridSortType, InputFactory as DataInput, type DataSet, DateAutoFormat, type DateAutoFormatProps, Container$2 as DatePicker, type DatePickerProps, type DateRange, DateRangePicker, Container$3 as DateRangePickerOld, type DateRangePickerOldProps, type DateRangePickerProps, type DayInterval, type DayIntervalPickerProps, EnhancedDialog as DeprecatedEnhancedDialog, type Directory$2 as Directory, CreateDirectory as DirectoryForm, PermissionWarpper as DirectoryPermission, type DirectoryPermissionServices, type DirectoryProps, DirectoryRoot, DirectorySystem, DirectoryTree, type DirectoryTreeProps, DrawerWrapper$1 as Drawer, type DrawerBaseProps, type DrawerHandle, DrawerNavigate, type DrawerNavigateProps, type DrawerProps, DrawerStateEnum, Container$1 as EnhancedAutoComplete, type EnhancedAutoCompleteProps, type EnhancedDialogProps, EnumFieldInputType, EnumSelectedPlaceType, FIELD_TYPE, type FieldDefinitionProps, type FileResponse, type FilterExpression, type FilterGroup, type FilterItem, FilterNotification, FilterOperationType, FilterTreeView, type FilterTreeViewProps, type FiltersType, FooterContainer as Footer, type FunctionStructure, GoogleMap, type GridSortDirection, type GridSortModel, type GroupComponentProps, type GroupFilter, GroupSystem, GroupTable, type GroupTableProps, type HeadCell, HierarchyTree, I18nProvider, type IChartJsContainer, type ICircularProgress, type IConfigChart, type IControlPanel, type DataGridGroupsProps as IDataGridGroups, type IDirectoryTreeViewProps, type IFilterField, type IGoogleMapProps, type IMenu, type IMonacoEditorProps, type IMultipleChoiceComponentProps, type IMultipleChoiceProps, type IMultipleHierarchicalChoice, type IMultipleHierarchicalChoiceInput, type IMultipleHierarchicalChoiceProps, type IMultipleSelect, INT_NUMBER_LIMIT, type IOption, type IPieContainer, type IStatisticsProps, type ITag, Container as Layout, Notifications as LayoutNotifications, type Locale, LogicExpressionInput as LogicExpression, type LogicExpressionInputProps, LogicalOperatorType, MemoWrap, type MemoWrapProps, type MenuOption, type ModalDrawerProps, MonacoEditor, MultipleChoice, type MultipleHierarChicalChoiceComponentProps, MultipleHierarchicalChoice, NoData, NotificationConfig, NotificationFilter$1 as NotificationObjectFilter, NumberFormat, type ObjectDefinition$4 as ObjectDefinition, type ObjectStructure, AsynchronousAutocomplete as OldAsyncAutoComplete, Page, PageManagement, type PageManagementProps, type PageProps, Pagination, type ParamConfiguration, ParamConfigurationInputs, type PermissionContainerProps, PieChart, PlaceFilter, type PlaceFilterProps, type QueryInput, type QueryInputStatistics, type Role, type RoleServices, RoleSystem, type RoleTag$3 as RoleTag, type RoleTagServices, RoleTagSystem, type Row, type RowActionDefinition, type RowId, type RowProps, type SchedulePermission, SchemaSystem, SearchBox, type SearchBoxProps, type SearchType, type SharingProps, Sharing as SharingSystem, ShowTreeItem, SimpleTreeItemWrapper, SortEnumType, Sortable, SortableTree, type SortableTreeProps, StatisticsCommon as Statistics, SubscriptionConfig, TIMELINE_TYPE, TYPE_CHART, TYPE_FILTERS, TabLabel, TableCellEditable$1 as TableCellEditable, type TableCellEditableProps$1 as TableCellEditableProps, TableEditable$1 as TableEditable, TableEditableBody$1 as TableEditableBody, type TableEditableBodyProps$1 as TableEditableBodyProps, TableEditable as TableEditableCollapsible, TableEditableBody as TableEditableCollapsibleBody, TableCellEditable as TableEditableCollapsibleCell, type CellDefinition$1 as TableEditableCollapsibleCellDefinition, type ColumnDefinition$1 as TableEditableCollapsibleColumnDefinition, type TableCellEditableProps$1 as TableEditableCollapsibleTableCellEditableProps, type TableEditableBodyProps$1 as TableEditableCollapsibleTableEditableBodyProps, type TableEditableProps$1 as TableEditableCollapsibleTableEditableProps, TableHeader as TableEditableCollapsibleTableHeader, type TableHeaderProps$1 as TableEditableCollapsibleTableHeaderProps, TopBarActions as TableEditableCollapsibleTopBarActions, type TopBarActionsProps$1 as TableEditableCollapsibleTopBarActionsProps, type TableEditableProps$1 as TableEditableProps, type TableGridProps, TableHeader$1 as TableHeader, type TableHeaderProps$1 as TableHeaderProps, type TableLabelProps, TablePaginationActions, type TablePaginationActionsProps, Template as TemplateConfig, ThemeProvider, type Timestamp, ToolbarLayout as Toolbar, TopBarActions$1 as TopBarActions, type TopBarActionsProps$1 as TopBarActionsProps, type TreeItem, type TreeItemOption, TreeItemWithAction, type TreeItemWithActionProps, type TreeItems, User as UserSystem, type Value, type ValueBase, WMAPEcalculator, WorkflowFeature as WorkflowSystem, WorkspaceType, Wrapper, arrayIsNotEmptyValid, calculateValue, calculatorDirectoryIdRoot, changeToAlias, checkValidMacAddress, checkValidStringListAP, checkValidUrl, colorValid, containsOnlyDigits, convertArrayFiltersToCondition, convertArrayToObject, convertDataSetPattern, convertDateTimeToTimestamp, convertFilterExpressionToCondition, convertFormulaToBinaryTree, convertTimeLine, convertTimelineToDateTime, convertTimestampToDateTime, convertToPostfix, darkTheme, dateRangeValid, dateTimeToString, dateToString, dateToStringDDMMYYYY, dateValid, download, downloadWithDataSet, emailValid, fillMissingDates, flattenTree, formatChartNumber, formatJSON, formatNumberByLocale, formatNumberWithLanguage, generateUUID, getCookie, getGUID, getPrecedence, getQueryVariable, getRandomKey, getRoutePath, getStartOfDay, getToday, handleExportExcel, i18n as i18nLib, isOperand, isOperator, lightTheme, nameExportStandard, notNullValid, numberNotNullValid, numberOnlyValid, numberPercentageNotNullValid, off, offlinePaginate, parseJSON, passwordValid, positiveNumberNotNullValid, pub, replaceFieldsValue, roundDecimalNumber, setObject, stringNotNullValid, stringNullableValid, sub, textValidation, timestampToStringDDMMYYYY, toCapitalize, tokenize, updateGUID, updateObjectFields, urlValid, useAppHelper, useAwing, useDrawer, useGetContext, useGetData, usePath, validateNumber };
|
|
3542
|
+
export { Container$4 as Action, type ActionsProps, AdvancedSearch, type AdvancedSearchField, type AdvancedSearchProps, type AnalyticDataProviderModel, AppContext, AppProvider, AsyncAutocomplete, type AsyncAutocompleteProps, type AsynchronousAutocompleteProps, AwingContext, BarLineChart, type BaseDirectoryPermission, type BaseFieldDefinition, type BaseFieldRender, type BinaryTreeNode, BoxResizableSplit, type BoxResizableSplitProps, ButtonDateRangePicker, type ButtonDateRangePickerProps, ButtonSelect, type ButtonSelectProps, type Cell, type CellDefinition$1 as CellDefinition, type ChartContentProps, CircularProgress, DrawerBase as ClassicBaseDrawer, DrawerWrapper as ClassicDrawer, CloseAction, type ColumnDefinition$1 as ColumnDefinition, type CombinedProps, type Configuration, ContentHeader, type OwnProps as ContentHeaderProps, ControlPanels, CopyButton, type CopyButtonProps, CronTab, type CronTabProps, type CronTabValue, type DataExportEntity, DataForm, type DataFormProps, DataGrid, type DataGridColumnDefinitionBase, DataGridGroup, type DataGridProps, DataGridSortType, InputFactory as DataInput, type DataSet, DateAutoFormat, type DateAutoFormatProps, Container$2 as DatePicker, type DatePickerProps, type DateRange, DateRangePicker, Container$3 as DateRangePickerOld, type DateRangePickerOldProps, type DateRangePickerProps, type DayInterval, type DayIntervalPickerProps, EnhancedDialog as DeprecatedEnhancedDialog, type Directory$2 as Directory, CreateDirectory as DirectoryForm, PermissionWarpper as DirectoryPermission, type DirectoryPermissionServices, type DirectoryProps, DirectoryRoot, DirectorySystem, DirectoryTree, type DirectoryTreeProps, DrawerWrapper$1 as Drawer, type DrawerBaseProps, type DrawerHandle, DrawerNavigate, type DrawerNavigateProps, type DrawerProps, DrawerStateEnum, Container$1 as EnhancedAutoComplete, type EnhancedAutoCompleteProps, type EnhancedDialogProps, EnumFieldInputType, EnumSelectedPlaceType, FIELD_TYPE, type FieldDefinitionProps, type FileResponse, type FilterExpression, type FilterGroup, type FilterItem, FilterNotification, FilterOperationType, FilterTreeView, type FilterTreeViewProps, type FiltersType, FooterContainer as Footer, type FunctionStructure, GoogleMap, type GridSortDirection, type GridSortModel, type GroupComponentProps, type GroupFilter, GroupSystem, GroupTable, type GroupTableProps, type HeadCell, HierarchyTree, I18nProvider, type IChartJsContainer, type ICircularProgress, type IConfigChart, type IControlPanel, type DataGridGroupsProps as IDataGridGroups, type IDirectoryTreeViewProps, type IFilterField, type IGoogleMapProps, type IMenu, type IMonacoEditorProps, type IMultipleChoiceComponentProps, type IMultipleChoiceProps, type IMultipleHierarchicalChoice, type IMultipleHierarchicalChoiceInput, type IMultipleHierarchicalChoiceProps, type IMultipleSelect, INT_NUMBER_LIMIT, type IOption, type IPieContainer, type IStatisticsProps, type ITag, Container as Layout, Notifications as LayoutNotifications, type Locale, LogicExpressionInput as LogicExpression, type LogicExpressionInputProps, LogicalOperatorType, MemoWrap, type MemoWrapProps, type MenuOption, type ModalDrawerProps, MonacoEditor, MultipleChoice, type MultipleHierarChicalChoiceComponentProps, MultipleHierarchicalChoice, NoData, NotificationConfig, NotificationFilter$1 as NotificationObjectFilter, NumberFormat, type ObjectDefinition$4 as ObjectDefinition, type ObjectStructure, AsynchronousAutocomplete as OldAsyncAutoComplete, Page, PageManagement, type PageManagementProps, type PageProps, Pagination, type ParamConfiguration, ParamConfigurationInputs, type PermissionContainerProps, PieChart, PlaceFilter, type PlaceFilterProps, type QueryInput, type QueryInputStatistics, type Role, type RoleServices, RoleSystem, type RoleTag$3 as RoleTag, type RoleTagServices, RoleTagSystem, type Row, type RowActionDefinition, type RowId, type RowProps, type SchedulePermission, SchemaSystem, SearchBox, type SearchBoxProps, type SearchType, type SharingProps, Sharing as SharingSystem, ShowTreeItem, SimpleTreeItemWrapper, SortEnumType, Sortable, SortableTree, type SortableTreeProps, StatisticsCommon as Statistics, SubscriptionConfig, TIMELINE_TYPE, TYPE_CHART, TYPE_FILTERS, TabLabel, TableCellEditable$1 as TableCellEditable, type TableCellEditableProps$1 as TableCellEditableProps, TableEditable$1 as TableEditable, TableEditableBody$1 as TableEditableBody, type TableEditableBodyProps$1 as TableEditableBodyProps, TableEditable as TableEditableCollapsible, TableEditableBody as TableEditableCollapsibleBody, TableCellEditable as TableEditableCollapsibleCell, type CellDefinition$1 as TableEditableCollapsibleCellDefinition, type ColumnDefinition$1 as TableEditableCollapsibleColumnDefinition, type TableCellEditableProps$1 as TableEditableCollapsibleTableCellEditableProps, type TableEditableBodyProps$1 as TableEditableCollapsibleTableEditableBodyProps, type TableEditableProps$1 as TableEditableCollapsibleTableEditableProps, TableHeader as TableEditableCollapsibleTableHeader, type TableHeaderProps$1 as TableEditableCollapsibleTableHeaderProps, TopBarActions as TableEditableCollapsibleTopBarActions, type TopBarActionsProps$1 as TableEditableCollapsibleTopBarActionsProps, type TableEditableProps$1 as TableEditableProps, type TableGridProps, TableHeader$1 as TableHeader, type TableHeaderProps$1 as TableHeaderProps, type TableLabelProps, TablePaginationActions, type TablePaginationActionsProps, Template as TemplateConfig, ThemeProvider, type Timestamp, ToolbarLayout as Toolbar, TopBarActions$1 as TopBarActions, type TopBarActionsProps$1 as TopBarActionsProps, type TreeItem, type TreeItemOption, TreeItemWithAction, type TreeItemWithActionProps, type TreeItems, User as UserSystem, type Value, type ValueBase, WMAPEcalculator, WorkflowFeature as WorkflowSystem, WorkspaceType, Wrapper, arrayIsNotEmptyValid, calculateValue, calculatorDirectoryIdRoot, changeToAlias, checkValidMacAddress, checkValidStringListAP, checkValidUrl, colorValid, containsOnlyDigits, convertArrayFiltersToCondition, convertArrayToObject, convertDataSetPattern, convertDateTimeToTimestamp, convertFilterExpressionToCondition, convertFormulaToBinaryTree, convertTimeLine, convertTimelineToDateTime, convertTimestampToDateTime, convertToPostfix, darkTheme, dateRangeValid, dateTimeToString, dateToString, dateToStringDDMMYYYY, dateValid, download, downloadWithDataSet, emailValid, fillMissingDates, flattenTree, formatChartNumber, formatJSON, formatNumberByLocale, formatNumberWithLanguage, generateUUID, getAllStringsBetweenBraces, getCookie, getGUID, getPrecedence, getQueryVariable, getRandomKey, getRoutePath, getStartOfDay, getToday, handleExportExcel, i18n as i18nLib, isOperand, isOperator, lightTheme, nameExportStandard, notNullValid, numberNotNullValid, numberOnlyValid, numberPercentageNotNullValid, off, offlinePaginate, parseJSON, passwordValid, positiveNumberNotNullValid, pub, replaceFieldsValue, roundDecimalNumber, setObject, stringNotNullValid, stringNullableValid, sub, textValidation, timestampToStringDDMMYYYY, toCapitalize, tokenize, updateGUID, updateObjectFields, urlValid, useAppHelper, useAwing, useDrawer, useGetContext, useGetData, usePath, validateNumber };
|