@talxis/base-controls 1.2509.6 → 1.2512.1
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/dist/components/DatasetControl/DatasetControl.d.ts +2 -2
- package/dist/components/DatasetControl/DatasetControl.js +78 -57
- package/dist/components/DatasetControl/DatasetControl.js.map +1 -1
- package/dist/components/DatasetControl/DatasetControlModel.d.ts +16 -0
- package/dist/components/DatasetControl/DatasetControlModel.js +32 -0
- package/dist/components/DatasetControl/DatasetControlModel.js.map +1 -0
- package/dist/components/DatasetControl/Filtering/DatasetColumnFiltering.d.ts +3 -0
- package/dist/components/DatasetControl/Filtering/DatasetColumnFiltering.js +166 -0
- package/dist/components/DatasetControl/Filtering/DatasetColumnFiltering.js.map +1 -0
- package/dist/components/DatasetControl/Filtering/DatasetColumnFilteringModel.d.ts +15 -0
- package/dist/components/DatasetControl/Filtering/DatasetColumnFilteringModel.js +59 -0
- package/dist/components/DatasetControl/Filtering/DatasetColumnFilteringModel.js.map +1 -0
- package/dist/components/DatasetControl/Filtering/interfaces.d.ts +31 -0
- package/dist/components/DatasetControl/Filtering/styles.d.ts +16 -0
- package/dist/components/DatasetControl/Filtering/styles.js +23 -0
- package/dist/components/DatasetControl/Filtering/styles.js.map +1 -0
- package/dist/components/DatasetControl/Filtering/translations.d.ts +154 -0
- package/dist/components/DatasetControl/Filtering/translations.js +43 -0
- package/dist/components/DatasetControl/Filtering/translations.js.map +1 -0
- package/dist/components/DatasetControl/Header/Header.d.ts +5 -0
- package/dist/components/DatasetControl/Header/Header.js +79 -0
- package/dist/components/DatasetControl/Header/Header.js.map +1 -0
- package/dist/components/DatasetControl/Header/styles.d.ts +19 -0
- package/dist/components/DatasetControl/Header/styles.js +26 -0
- package/dist/components/DatasetControl/Header/styles.js.map +1 -0
- package/dist/components/DatasetControl/Pagination/Pagination.d.ts +5 -0
- package/dist/components/DatasetControl/Pagination/Pagination.js +93 -0
- package/dist/components/DatasetControl/Pagination/Pagination.js.map +1 -0
- package/dist/components/DatasetControl/Pagination/PaginationModel.d.ts +10 -0
- package/dist/components/DatasetControl/Pagination/PaginationModel.js +45 -0
- package/dist/components/DatasetControl/Pagination/PaginationModel.js.map +1 -0
- package/dist/components/DatasetControl/Pagination/styles.d.ts +23 -0
- package/dist/components/DatasetControl/Pagination/styles.js +29 -0
- package/dist/components/DatasetControl/Pagination/styles.js.map +1 -0
- package/dist/components/DatasetControl/QuickFind/QuickFind.d.ts +4 -12
- package/dist/components/DatasetControl/QuickFind/QuickFind.js +37 -32
- package/dist/components/DatasetControl/QuickFind/QuickFind.js.map +1 -1
- package/dist/components/DatasetControl/QuickFind/styles.d.ts +1 -1
- package/dist/components/DatasetControl/QuickFind/styles.js +2 -2
- package/dist/components/DatasetControl/QuickFind/styles.js.map +1 -1
- package/dist/components/DatasetControl/index.d.ts +0 -1
- package/dist/components/DatasetControl/index.js +0 -2
- package/dist/components/DatasetControl/index.js.map +1 -1
- package/dist/components/DatasetControl/interfaces.d.ts +68 -23
- package/dist/components/DatasetControl/styles.d.ts +4 -11
- package/dist/components/DatasetControl/styles.js +5 -11
- package/dist/components/DatasetControl/styles.js.map +1 -1
- package/dist/components/DatasetControl/translations.d.ts +44 -0
- package/dist/components/DatasetControl/translations.js +15 -1
- package/dist/components/DatasetControl/translations.js.map +1 -1
- package/dist/components/DatasetControl/useModel.d.ts +4 -0
- package/dist/components/DatasetControl/useModel.js +9 -0
- package/dist/components/DatasetControl/useModel.js.map +1 -0
- package/dist/components/Grid/{core/components/Cell → cells/cell}/Cell.d.ts +3 -3
- package/dist/components/Grid/cells/cell/Cell.js +231 -0
- package/dist/components/Grid/cells/cell/Cell.js.map +1 -0
- package/dist/components/Grid/cells/cell/content/CellContent.d.ts +3 -0
- package/dist/components/Grid/{core/components/Cell/CellContent → cells/cell/content}/CellContent.js +44 -35
- package/dist/components/Grid/cells/cell/content/CellContent.js.map +1 -0
- package/dist/components/Grid/{core/components/Cell/CellContent → cells/cell/content}/styles.d.ts +4 -1
- package/dist/components/Grid/{core/components/Cell/CellContent → cells/cell/content}/styles.js +8 -3
- package/dist/components/Grid/cells/cell/content/styles.js.map +1 -0
- package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/Notifications.d.ts +1 -1
- package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/Notifications.js +5 -5
- package/dist/components/Grid/cells/cell/notifications/Notifications.js.map +1 -0
- package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/styles.js +1 -1
- package/dist/components/Grid/cells/cell/notifications/styles.js.map +1 -0
- package/dist/components/Grid/{core/components/Cell → cells/cell}/styles.d.ts +12 -6
- package/dist/components/Grid/{core/components/Cell → cells/cell}/styles.js +14 -20
- package/dist/components/Grid/cells/cell/styles.js.map +1 -0
- package/dist/components/Grid/cells/selection-cell/SelectionCell.d.ts +8 -0
- package/dist/components/Grid/cells/selection-cell/SelectionCell.js +78 -0
- package/dist/components/Grid/cells/selection-cell/SelectionCell.js.map +1 -0
- package/dist/components/Grid/cells/selection-cell/SelectionCellModel.d.ts +7 -0
- package/dist/components/Grid/cells/selection-cell/record-save-error-callout/RecordSaveErrorCallout.d.ts +11 -0
- package/dist/components/Grid/cells/selection-cell/record-save-error-callout/RecordSaveErrorCallout.js +19 -0
- package/dist/components/Grid/cells/selection-cell/record-save-error-callout/RecordSaveErrorCallout.js.map +1 -0
- package/dist/components/Grid/cells/selection-cell/record-save-error-callout/styles.d.ts +17 -0
- package/dist/components/Grid/cells/selection-cell/record-save-error-callout/styles.js +24 -0
- package/dist/components/Grid/cells/selection-cell/record-save-error-callout/styles.js.map +1 -0
- package/dist/components/Grid/cells/selection-cell/styles.d.ts +27 -0
- package/dist/components/Grid/cells/selection-cell/styles.js +33 -0
- package/dist/components/Grid/cells/selection-cell/styles.js.map +1 -0
- package/dist/components/Grid/{core/components/ColumnHeader → column-headers/column-header}/ColumnHeader.d.ts +1 -1
- package/dist/components/Grid/column-headers/column-header/ColumnHeader.js +88 -0
- package/dist/components/Grid/column-headers/column-header/ColumnHeader.js.map +1 -0
- package/dist/components/Grid/{sorting/components/SortingContextualMenu/SortingContextualMenu.d.ts → column-headers/column-header/ColumnHeaderContextualMenu.d.ts} +3 -3
- package/dist/components/Grid/column-headers/column-header/ColumnHeaderContextualMenu.js +115 -0
- package/dist/components/Grid/column-headers/column-header/ColumnHeaderContextualMenu.js.map +1 -0
- package/dist/components/Grid/{filtering/components/FilterCallout → column-headers/column-header}/FilterCallout.d.ts +1 -1
- package/dist/components/Grid/column-headers/column-header/FilterCallout.js +107 -0
- package/dist/components/Grid/column-headers/column-header/FilterCallout.js.map +1 -0
- package/dist/components/Grid/column-headers/column-header/styles.d.ts +84 -0
- package/dist/components/Grid/{filtering/components/FilterCallout → column-headers/column-header}/styles.js +20 -11
- package/dist/components/Grid/column-headers/column-header/styles.js.map +1 -0
- package/dist/components/Grid/column-headers/record-selection-checkbox/RecordSelectionCheckbox.d.ts +2 -0
- package/dist/components/Grid/column-headers/record-selection-checkbox/RecordSelectionCheckbox.js +45 -0
- package/dist/components/Grid/column-headers/record-selection-checkbox/RecordSelectionCheckbox.js.map +1 -0
- package/dist/components/Grid/{core/components/ColumnHeader/components/GlobalCheckbox → column-headers/record-selection-checkbox}/styles.d.ts +1 -3
- package/dist/components/Grid/{core/components/ColumnHeader/components/GlobalCheckbox → column-headers/record-selection-checkbox}/styles.js +1 -2
- package/dist/components/Grid/column-headers/record-selection-checkbox/styles.js.map +1 -0
- package/dist/components/Grid/errors/FullWidthCellRendererError/FullWidthCellRendererError.d.ts +6 -0
- package/dist/components/Grid/errors/FullWidthCellRendererError/FullWidthCellRendererError.js +15 -0
- package/dist/components/Grid/errors/FullWidthCellRendererError/FullWidthCellRendererError.js.map +1 -0
- package/dist/components/Grid/errors/FullWidthCellRendererError/styles.d.ts +6 -0
- package/dist/components/Grid/errors/FullWidthCellRendererError/styles.js +13 -0
- package/dist/components/Grid/errors/FullWidthCellRendererError/styles.js.map +1 -0
- package/dist/components/Grid/{core/components/AgGrid/AgGrid.d.ts → grid/Grid.d.ts} +2 -2
- package/dist/components/Grid/grid/Grid.js +64 -0
- package/dist/components/Grid/grid/Grid.js.map +1 -0
- package/dist/components/Grid/grid/GridContext.d.ts +3 -0
- package/dist/components/Grid/grid/GridContext.js.map +1 -0
- package/dist/components/Grid/grid/GridModel.d.ts +110 -0
- package/dist/components/Grid/grid/GridModel.js +767 -0
- package/dist/components/Grid/grid/GridModel.js.map +1 -0
- package/dist/components/Grid/{core/components/AgGrid/model/Comparator.d.ts → grid/ValueComparator.d.ts} +1 -1
- package/dist/components/Grid/{core/components/AgGrid/model/Comparator.js → grid/ValueComparator.js} +7 -1
- package/dist/components/Grid/grid/ValueComparator.js.map +1 -0
- package/dist/components/Grid/{core/components/AgGrid/context.d.ts → grid/ag-grid/AgGridContext.d.ts} +2 -2
- package/dist/components/Grid/{core/components/AgGrid/context.js → grid/ag-grid/AgGridContext.js} +1 -1
- package/dist/components/Grid/grid/ag-grid/AgGridContext.js.map +1 -0
- package/dist/components/Grid/grid/ag-grid/AgGridModel.d.ts +90 -0
- package/dist/components/Grid/grid/ag-grid/AgGridModel.js +657 -0
- package/dist/components/Grid/grid/ag-grid/AgGridModel.js.map +1 -0
- package/dist/components/Grid/grid/ag-grid/ServerSideDatasource.d.ts +7 -0
- package/dist/components/Grid/grid/ag-grid/ServerSideDatasource.js +38 -0
- package/dist/components/Grid/grid/ag-grid/ServerSideDatasource.js.map +1 -0
- package/dist/components/Grid/grid/ag-grid/useAgGridInstance.d.ts +2 -0
- package/dist/components/Grid/grid/ag-grid/useAgGridInstance.js +9 -0
- package/dist/components/Grid/grid/ag-grid/useAgGridInstance.js.map +1 -0
- package/dist/components/Grid/{core/components/AgGrid → grid}/styles.d.ts +24 -4
- package/dist/components/Grid/{core/components/AgGrid → grid}/styles.js +37 -6
- package/dist/components/Grid/grid/styles.js.map +1 -0
- package/dist/components/Grid/grid/useGridInstance.d.ts +2 -0
- package/dist/components/Grid/{core/hooks → grid}/useGridInstance.js +2 -2
- package/dist/components/Grid/grid/useGridInstance.js.map +1 -0
- package/dist/components/Grid/index.d.ts +1 -1
- package/dist/components/Grid/index.js +1 -1
- package/dist/components/Grid/interfaces.d.ts +10 -1
- package/dist/components/Grid/loading/full-row/FullRowLoading.d.ts +3 -0
- package/dist/components/Grid/loading/full-row/FullRowLoading.js +33 -0
- package/dist/components/Grid/loading/full-row/FullRowLoading.js.map +1 -0
- package/dist/components/Grid/loading/full-row/styles.d.ts +9 -0
- package/dist/components/Grid/loading/full-row/styles.js +16 -0
- package/dist/components/Grid/loading/full-row/styles.js.map +1 -0
- package/dist/components/Grid/overlays/empty-records/EmptyRecordsOverlay.js +13 -0
- package/dist/components/Grid/overlays/empty-records/EmptyRecordsOverlay.js.map +1 -0
- package/dist/components/Grid/{core/components/AgGrid/components/EmptyRecordsOverlay → overlays/empty-records}/styles.d.ts +1 -1
- package/dist/components/Grid/{core/components/AgGrid/components/EmptyRecordsOverlay → overlays/empty-records}/styles.js +1 -1
- package/dist/components/Grid/overlays/empty-records/styles.js.map +1 -0
- package/dist/components/Grid/overlays/loading/LoadingOverlay.js.map +1 -0
- package/dist/components/Grid/translations.d.ts +21 -177
- package/dist/components/Grid/translations.js +6 -48
- package/dist/components/Grid/translations.js.map +1 -1
- package/dist/components/GridCellRenderer/GridCellRenderer.js +99 -282
- package/dist/components/GridCellRenderer/GridCellRenderer.js.map +1 -1
- package/dist/components/GridCellRenderer/GridCellRendererModel.d.ts +51 -0
- package/dist/components/GridCellRenderer/GridCellRendererModel.js +211 -0
- package/dist/components/GridCellRenderer/GridCellRendererModel.js.map +1 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/ColorfulOptionSetValueRenderer.d.ts +9 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/ColorfulOptionSetValueRenderer.js +53 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/ColorfulOptionSetValueRenderer.js.map +1 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/styles.d.ts +20 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/styles.js +29 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ColorfulOptionSetValueRenderer/styles.js.map +1 -0
- package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/FileRenderer.d.ts +7 -0
- package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/FileRenderer.js +76 -0
- package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/FileRenderer.js.map +1 -0
- package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/styles.d.ts +18 -0
- package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/styles.js +25 -0
- package/dist/components/GridCellRenderer/ValueRenderer/FileRenderer/styles.js.map +1 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ValueRenderer.d.ts +3 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ValueRenderer.js +52 -0
- package/dist/components/GridCellRenderer/ValueRenderer/ValueRenderer.js.map +1 -0
- package/dist/components/GridCellRenderer/ValueRenderer/styles.d.ts +1666 -0
- package/dist/components/GridCellRenderer/ValueRenderer/styles.js +31 -0
- package/dist/components/GridCellRenderer/ValueRenderer/styles.js.map +1 -0
- package/dist/components/GridCellRenderer/interfaces.d.ts +53 -42
- package/dist/components/GridCellRenderer/properties/Email.d.ts +5 -0
- package/dist/components/GridCellRenderer/properties/Email.js +15 -0
- package/dist/components/GridCellRenderer/properties/Email.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/File.d.ts +19 -0
- package/dist/components/GridCellRenderer/properties/File.js +99 -0
- package/dist/components/GridCellRenderer/properties/File.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/Image.d.ts +4 -0
- package/dist/components/GridCellRenderer/properties/Image.js +15 -0
- package/dist/components/GridCellRenderer/properties/Image.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/Lookup.d.ts +5 -0
- package/dist/components/GridCellRenderer/properties/Lookup.js +16 -0
- package/dist/components/GridCellRenderer/properties/Lookup.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/MultiSelectOptionSet.d.ts +5 -0
- package/dist/components/GridCellRenderer/properties/MultiSelectOptionSet.js +11 -0
- package/dist/components/GridCellRenderer/properties/MultiSelectOptionSet.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/MultilineText.d.ts +4 -0
- package/dist/components/GridCellRenderer/properties/MultilineText.js +10 -0
- package/dist/components/GridCellRenderer/properties/MultilineText.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/OptionSet.d.ts +5 -0
- package/dist/components/GridCellRenderer/properties/OptionSet.js +11 -0
- package/dist/components/GridCellRenderer/properties/OptionSet.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/OptionSetBase.d.ts +7 -0
- package/dist/components/GridCellRenderer/properties/OptionSetBase.js +19 -0
- package/dist/components/GridCellRenderer/properties/OptionSetBase.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/Phone.d.ts +9 -0
- package/dist/components/GridCellRenderer/properties/Phone.js +15 -0
- package/dist/components/GridCellRenderer/properties/Phone.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/Property.d.ts +19 -0
- package/dist/components/GridCellRenderer/properties/Property.js +59 -0
- package/dist/components/GridCellRenderer/properties/Property.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/TwoOptions.d.ts +5 -0
- package/dist/components/GridCellRenderer/properties/TwoOptions.js +11 -0
- package/dist/components/GridCellRenderer/properties/TwoOptions.js.map +1 -0
- package/dist/components/GridCellRenderer/properties/Url.d.ts +5 -0
- package/dist/components/GridCellRenderer/properties/Url.js +15 -0
- package/dist/components/GridCellRenderer/properties/Url.js.map +1 -0
- package/dist/components/GridCellRenderer/styles.d.ts +34 -60
- package/dist/components/GridCellRenderer/styles.js +69 -77
- package/dist/components/GridCellRenderer/styles.js.map +1 -1
- package/dist/components/GridCellRenderer/translations.d.ts +1 -1
- package/dist/components/GridCellRenderer/translations.js +30 -32
- package/dist/components/GridCellRenderer/translations.js.map +1 -1
- package/dist/components/GridCellRenderer/useModel.d.ts +4 -0
- package/dist/components/GridCellRenderer/useModel.js +9 -0
- package/dist/components/GridCellRenderer/useModel.js.map +1 -0
- package/dist/components/GridColumnHeader/GridColumnHeader.d.ts +3 -0
- package/dist/components/GridColumnHeader/GridColumnHeader.js +134 -0
- package/dist/components/GridColumnHeader/GridColumnHeader.js.map +1 -0
- package/dist/components/GridColumnHeader/GridColumnHeaderModel.d.ts +26 -0
- package/dist/components/GridColumnHeader/GridColumnHeaderModel.js +85 -0
- package/dist/components/GridColumnHeader/GridColumnHeaderModel.js.map +1 -0
- package/dist/components/GridColumnHeader/interfaces.d.ts +48 -0
- package/dist/components/GridColumnHeader/styles.d.ts +37 -0
- package/dist/components/GridColumnHeader/styles.js +55 -0
- package/dist/components/GridColumnHeader/styles.js.map +1 -0
- package/dist/components/GridColumnHeader/translations.d.ts +26 -0
- package/dist/components/GridColumnHeader/translations.js +29 -0
- package/dist/components/GridColumnHeader/translations.js.map +1 -0
- package/dist/components/GridInlineRibbon/GridInlineRibbon.d.ts +3 -0
- package/dist/components/GridInlineRibbon/GridInlineRibbon.js +113 -0
- package/dist/components/GridInlineRibbon/GridInlineRibbon.js.map +1 -0
- package/dist/components/GridInlineRibbon/GridInlineRibbonModel.d.ts +25 -0
- package/dist/components/GridInlineRibbon/GridInlineRibbonModel.js +49 -0
- package/dist/components/GridInlineRibbon/GridInlineRibbonModel.js.map +1 -0
- package/dist/components/GridInlineRibbon/index.d.ts +2 -0
- package/dist/components/GridInlineRibbon/index.js +2 -0
- package/dist/components/GridInlineRibbon/interfaces.d.ts +28 -0
- package/dist/components/GridInlineRibbon/styles.d.ts +22 -0
- package/dist/components/GridInlineRibbon/styles.js +29 -0
- package/dist/components/GridInlineRibbon/styles.js.map +1 -0
- package/dist/components/MultiSelectOptionSet/MultiSelectOptionSet.js +2 -2
- package/dist/components/MultiSelectOptionSet/MultiSelectOptionSet.js.map +1 -1
- package/dist/components/NestedControlRenderer/NestedControl.d.ts +2 -0
- package/dist/components/NestedControlRenderer/NestedControl.js +5 -2
- package/dist/components/NestedControlRenderer/NestedControl.js.map +1 -1
- package/dist/components/NestedControlRenderer/NestedControlRenderer.js +19 -6
- package/dist/components/NestedControlRenderer/NestedControlRenderer.js.map +1 -1
- package/dist/components/NestedControlRenderer/index.d.ts +1 -0
- package/dist/components/NestedControlRenderer/interfaces.d.ts +4 -0
- package/dist/components/NestedControlRenderer/properties/FileProperty.js +1 -1
- package/dist/components/NestedControlRenderer/properties/FileProperty.js.map +1 -1
- package/dist/components/OptionSet/OptionSet.js +5 -4
- package/dist/components/OptionSet/OptionSet.js.map +1 -1
- package/dist/components/Ribbon/Ribbon.d.ts +3 -0
- package/dist/components/Ribbon/Ribbon.js +118 -0
- package/dist/components/Ribbon/Ribbon.js.map +1 -0
- package/dist/components/Ribbon/RibbonModel.d.ts +17 -0
- package/dist/components/Ribbon/RibbonModel.js +74 -0
- package/dist/components/Ribbon/RibbonModel.js.map +1 -0
- package/dist/components/Ribbon/interfaces.d.ts +24 -0
- package/dist/components/Ribbon/styles.d.ts +16 -0
- package/dist/components/Ribbon/styles.js +23 -0
- package/dist/components/Ribbon/styles.js.map +1 -0
- package/dist/components/TextField/TextField.js.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +2 -3
- package/dist/components/index.js.map +1 -1
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/useControl.d.ts +1 -0
- package/dist/hooks/useControl.js +1 -0
- package/dist/hooks/useControl.js.map +1 -1
- package/dist/hooks/useEventEmitter.d.ts +2 -0
- package/dist/hooks/useEventEmitter.js +23 -0
- package/dist/hooks/useEventEmitter.js.map +1 -0
- package/dist/hooks/useInputBasedControl.js +2 -1
- package/dist/hooks/useInputBasedControl.js.map +1 -1
- package/dist/index.d.ts +508 -522
- package/dist/index.js +3 -3
- package/dist/interfaces/property.d.ts +1 -1
- package/dist/utils/BaseControls.d.ts +4 -1
- package/dist/utils/BaseControls.js +13 -1
- package/dist/utils/BaseControls.js.map +1 -1
- package/dist/utils/dataset/adapters/DatasetAdapter.d.ts +51 -40
- package/dist/utils/dataset/adapters/DatasetAdapter.js +221 -160
- package/dist/utils/dataset/adapters/DatasetAdapter.js.map +1 -1
- package/dist/utils/dataset/adapters/VirtualDatasetAdapter.d.ts +60 -28
- package/dist/utils/dataset/adapters/VirtualDatasetAdapter.js +183 -119
- package/dist/utils/dataset/adapters/VirtualDatasetAdapter.js.map +1 -1
- package/dist/utils/dataset-control/DatasetControl.d.ts +69 -0
- package/dist/utils/dataset-control/DatasetControl.js +171 -0
- package/dist/utils/dataset-control/DatasetControl.js.map +1 -0
- package/dist/utils/dataset-control/index.d.ts +1 -0
- package/dist/utils/dataset-control/index.js +2 -0
- package/dist/utils/theme/components/ThemeWrapper.d.ts +1 -1
- package/dist/utils/theme/components/ThemeWrapper.js.map +1 -1
- package/dist/utils/theme/hooks/useControlTheme.js +2 -1
- package/dist/utils/theme/hooks/useControlTheme.js.map +1 -1
- package/package.json +9 -5
- package/dist/components/DatasetControl/Paging/DatasetPaging.d.ts +0 -3
- package/dist/components/DatasetControl/Paging/DatasetPaging.js +0 -69
- package/dist/components/DatasetControl/Paging/DatasetPaging.js.map +0 -1
- package/dist/components/DatasetControl/Paging/Paging.d.ts +0 -26
- package/dist/components/DatasetControl/Paging/Paging.js +0 -80
- package/dist/components/DatasetControl/Paging/Paging.js.map +0 -1
- package/dist/components/DatasetControl/Paging/index.d.ts +0 -3
- package/dist/components/DatasetControl/Paging/index.js +0 -3
- package/dist/components/DatasetControl/Paging/index.js.map +0 -1
- package/dist/components/DatasetControl/Paging/interfaces.d.ts +0 -16
- package/dist/components/DatasetControl/Paging/styles.d.ts +0 -35
- package/dist/components/DatasetControl/Paging/styles.js +0 -41
- package/dist/components/DatasetControl/Paging/styles.js.map +0 -1
- package/dist/components/DatasetControl/Paging/translations.d.ts +0 -38
- package/dist/components/DatasetControl/Paging/translations.js +0 -14
- package/dist/components/DatasetControl/Paging/translations.js.map +0 -1
- package/dist/components/Grid/Grid.d.ts +0 -3
- package/dist/components/Grid/Grid.js +0 -37
- package/dist/components/Grid/Grid.js.map +0 -1
- package/dist/components/Grid/GridContext.d.ts +0 -3
- package/dist/components/Grid/GridContext.js.map +0 -1
- package/dist/components/Grid/aggregation/Aggregation.d.ts +0 -18
- package/dist/components/Grid/aggregation/Aggregation.js +0 -129
- package/dist/components/Grid/aggregation/Aggregation.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/AgGrid.js +0 -203
- package/dist/components/Grid/core/components/AgGrid/AgGrid.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/components/EmptyRecordsOverlay/EmptyRecords.js +0 -12
- package/dist/components/Grid/core/components/AgGrid/components/EmptyRecordsOverlay/EmptyRecords.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/components/EmptyRecordsOverlay/styles.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/components/LoadingOverlay/LoadingOverlay.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/context.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/model/AgGrid.d.ts +0 -52
- package/dist/components/Grid/core/components/AgGrid/model/AgGrid.js +0 -343
- package/dist/components/Grid/core/components/AgGrid/model/AgGrid.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/model/Comparator.js.map +0 -1
- package/dist/components/Grid/core/components/AgGrid/styles.js.map +0 -1
- package/dist/components/Grid/core/components/Cell/Cell.js +0 -158
- package/dist/components/Grid/core/components/Cell/Cell.js.map +0 -1
- package/dist/components/Grid/core/components/Cell/CellContent/CellContent.d.ts +0 -8
- package/dist/components/Grid/core/components/Cell/CellContent/CellContent.js.map +0 -1
- package/dist/components/Grid/core/components/Cell/CellContent/styles.js.map +0 -1
- package/dist/components/Grid/core/components/Cell/Notifications/Notifications.js.map +0 -1
- package/dist/components/Grid/core/components/Cell/Notifications/styles.js.map +0 -1
- package/dist/components/Grid/core/components/Cell/styles.js.map +0 -1
- package/dist/components/Grid/core/components/ColumnHeader/ColumnHeader.js +0 -61
- package/dist/components/Grid/core/components/ColumnHeader/ColumnHeader.js.map +0 -1
- package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/GlobalCheckbox.d.ts +0 -2
- package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/GlobalCheckbox.js +0 -50
- package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/GlobalCheckbox.js.map +0 -1
- package/dist/components/Grid/core/components/ColumnHeader/components/GlobalCheckbox/styles.js.map +0 -1
- package/dist/components/Grid/core/components/ColumnHeader/styles.d.ts +0 -42
- package/dist/components/Grid/core/components/ColumnHeader/styles.js +0 -48
- package/dist/components/Grid/core/components/ColumnHeader/styles.js.map +0 -1
- package/dist/components/Grid/core/components/Dialog/Constants.d.ts +0 -2
- package/dist/components/Grid/core/components/Dialog/Constants.js +0 -9
- package/dist/components/Grid/core/components/Dialog/Constants.js.map +0 -1
- package/dist/components/Grid/core/components/Dialog/Styles.d.ts +0 -2
- package/dist/components/Grid/core/components/Dialog/Styles.js +0 -61
- package/dist/components/Grid/core/components/Dialog/Styles.js.map +0 -1
- package/dist/components/Grid/core/components/Dialog/index.d.ts +0 -4
- package/dist/components/Grid/core/components/Dialog/index.js +0 -16
- package/dist/components/Grid/core/components/Dialog/index.js.map +0 -1
- package/dist/components/Grid/core/components/Dialog/interfaces/index.d.ts +0 -6
- package/dist/components/Grid/core/components/Dialog/interfaces/index.js +0 -2
- package/dist/components/Grid/core/components/Save/Save.d.ts +0 -2
- package/dist/components/Grid/core/components/Save/Save.js +0 -59
- package/dist/components/Grid/core/components/Save/Save.js.map +0 -1
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/ChangeEditor.d.ts +0 -7
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/ChangeEditor.js +0 -73
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/ChangeEditor.js.map +0 -1
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/ChangeGrid.d.ts +0 -11
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/ChangeGrid.js +0 -231
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/ChangeGrid.js.map +0 -1
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/styles.d.ts +0 -39
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/styles.js +0 -45
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/components/ChangeGrid/styles.js.map +0 -1
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/styles.d.ts +0 -31
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/styles.js +0 -37
- package/dist/components/Grid/core/components/Save/components/ChangeEditor/styles.js.map +0 -1
- package/dist/components/Grid/core/components/Save/styles.d.ts +0 -35
- package/dist/components/Grid/core/components/Save/styles.js +0 -42
- package/dist/components/Grid/core/components/Save/styles.js.map +0 -1
- package/dist/components/Grid/core/controllers/useGridController.d.ts +0 -7
- package/dist/components/Grid/core/controllers/useGridController.js +0 -29
- package/dist/components/Grid/core/controllers/useGridController.js.map +0 -1
- package/dist/components/Grid/core/enums/ConditionOperator.d.ts +0 -48
- package/dist/components/Grid/core/enums/ConditionOperator.js +0 -52
- package/dist/components/Grid/core/enums/ConditionOperator.js.map +0 -1
- package/dist/components/Grid/core/enums/DataType.d.ts +0 -25
- package/dist/components/Grid/core/enums/DataType.js +0 -30
- package/dist/components/Grid/core/enums/DataType.js.map +0 -1
- package/dist/components/Grid/core/hooks/useGridInstance.d.ts +0 -2
- package/dist/components/Grid/core/hooks/useGridInstance.js.map +0 -1
- package/dist/components/Grid/core/hooks/useRefreshCallback.d.ts +0 -2
- package/dist/components/Grid/core/hooks/useRefreshCallback.js +0 -20
- package/dist/components/Grid/core/hooks/useRefreshCallback.js.map +0 -1
- package/dist/components/Grid/core/interfaces/IGridColumn.d.ts +0 -13
- package/dist/components/Grid/core/interfaces/IGridContext.d.ts +0 -4
- package/dist/components/Grid/core/model/Grid.d.ts +0 -83
- package/dist/components/Grid/core/model/Grid.js +0 -528
- package/dist/components/Grid/core/model/Grid.js.map +0 -1
- package/dist/components/Grid/core/model/GridDependency.d.ts +0 -13
- package/dist/components/Grid/core/model/GridDependency.js +0 -28
- package/dist/components/Grid/core/model/GridDependency.js.map +0 -1
- package/dist/components/Grid/core/services/KeyListener.d.ts +0 -12
- package/dist/components/Grid/core/services/KeyListener.js +0 -31
- package/dist/components/Grid/core/services/KeyListener.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/FilterCallout.js +0 -59
- package/dist/components/Grid/filtering/components/FilterCallout/FilterCallout.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionOperator/ConditionOperator.d.ts +0 -7
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionOperator/ConditionOperator.js +0 -56
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionOperator/ConditionOperator.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValue.d.ts +0 -7
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValue.js +0 -73
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValue.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValueBetween.d.ts +0 -7
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValueBetween.js +0 -90
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/ConditionValueBetween.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/model/ConditionComponentValue.d.ts +0 -48
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/model/ConditionComponentValue.js +0 -146
- package/dist/components/Grid/filtering/components/FilterCallout/components/ConditionValue/model/ConditionComponentValue.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/Component.d.ts +0 -11
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/Component.js +0 -53
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/Component.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/controller/useComponentController.d.ts +0 -9
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/controller/useComponentController.js +0 -31
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/controller/useComponentController.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/model/Component.d.ts +0 -10
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/model/Component.js +0 -294
- package/dist/components/Grid/filtering/components/FilterCallout/components/LegacyControlRendering/model/Component.js.map +0 -1
- package/dist/components/Grid/filtering/components/FilterCallout/styles.d.ts +0 -35
- package/dist/components/Grid/filtering/components/FilterCallout/styles.js.map +0 -1
- package/dist/components/Grid/filtering/constants.d.ts +0 -5
- package/dist/components/Grid/filtering/constants.js +0 -53
- package/dist/components/Grid/filtering/constants.js.map +0 -1
- package/dist/components/Grid/filtering/controller/useColumnFilterConditionController.d.ts +0 -21
- package/dist/components/Grid/filtering/controller/useColumnFilterConditionController.js +0 -44
- package/dist/components/Grid/filtering/controller/useColumnFilterConditionController.js.map +0 -1
- package/dist/components/Grid/filtering/model/Condition.d.ts +0 -49
- package/dist/components/Grid/filtering/model/Condition.js +0 -347
- package/dist/components/Grid/filtering/model/Condition.js.map +0 -1
- package/dist/components/Grid/filtering/model/Filtering.d.ts +0 -11
- package/dist/components/Grid/filtering/model/Filtering.js +0 -78
- package/dist/components/Grid/filtering/model/Filtering.js.map +0 -1
- package/dist/components/Grid/filtering/utils/FilteringUtilts.d.ts +0 -34
- package/dist/components/Grid/filtering/utils/FilteringUtilts.js +0 -195
- package/dist/components/Grid/filtering/utils/FilteringUtilts.js.map +0 -1
- package/dist/components/Grid/selection/model/Selection.d.ts +0 -12
- package/dist/components/Grid/selection/model/Selection.js +0 -55
- package/dist/components/Grid/selection/model/Selection.js.map +0 -1
- package/dist/components/Grid/sorting/Sorting.d.ts +0 -10
- package/dist/components/Grid/sorting/Sorting.js +0 -31
- package/dist/components/Grid/sorting/Sorting.js.map +0 -1
- package/dist/components/Grid/sorting/components/SortingContextualMenu/SortingContextualMenu.js +0 -157
- package/dist/components/Grid/sorting/components/SortingContextualMenu/SortingContextualMenu.js.map +0 -1
- package/dist/components/Grid/sorting/components/SortingContextualMenu/styles.d.ts +0 -9
- package/dist/components/Grid/sorting/components/SortingContextualMenu/styles.js +0 -15
- package/dist/components/Grid/sorting/components/SortingContextualMenu/styles.js.map +0 -1
- package/dist/components/Grid/sorting/controllers/useColumnSortingController.d.ts +0 -9
- package/dist/components/Grid/sorting/controllers/useColumnSortingController.js +0 -22
- package/dist/components/Grid/sorting/controllers/useColumnSortingController.js.map +0 -1
- package/dist/components/GridCellRenderer/DefaultContentRenderer/DefaultContentRenderer.d.ts +0 -2
- package/dist/components/GridCellRenderer/DefaultContentRenderer/DefaultContentRenderer.js +0 -11
- package/dist/components/GridCellRenderer/DefaultContentRenderer/DefaultContentRenderer.js.map +0 -1
- package/dist/components/GridCellRenderer/DefaultContentRenderer/index.d.ts +0 -1
- package/dist/components/GridCellRenderer/DefaultContentRenderer/index.js +0 -2
- package/dist/components/GridCellRenderer/OptionSet/OptionSet.d.ts +0 -5
- package/dist/components/GridCellRenderer/OptionSet/OptionSet.js +0 -75
- package/dist/components/GridCellRenderer/OptionSet/OptionSet.js.map +0 -1
- package/dist/components/GridCellRenderer/OptionSet/index.d.ts +0 -1
- package/dist/components/GridCellRenderer/OptionSet/index.js +0 -2
- package/dist/components/GridCellRenderer/OptionSet/index.js.map +0 -1
- package/dist/components/GridCellRenderer/OptionSet/styles.d.ts +0 -20
- package/dist/components/GridCellRenderer/OptionSet/styles.js +0 -29
- package/dist/components/GridCellRenderer/OptionSet/styles.js.map +0 -1
- package/dist/components/GridCellRenderer/RecordCommands/Icon.d.ts +0 -7
- package/dist/components/GridCellRenderer/RecordCommands/Icon.js +0 -32
- package/dist/components/GridCellRenderer/RecordCommands/Icon.js.map +0 -1
- package/dist/components/GridCellRenderer/RecordCommands/RecordCommands.d.ts +0 -13
- package/dist/components/GridCellRenderer/RecordCommands/RecordCommands.js +0 -103
- package/dist/components/GridCellRenderer/RecordCommands/RecordCommands.js.map +0 -1
- package/dist/components/GridCellRenderer/RecordCommands/styles.d.ts +0 -13
- package/dist/components/GridCellRenderer/RecordCommands/styles.js +0 -32
- package/dist/components/GridCellRenderer/RecordCommands/styles.js.map +0 -1
- package/dist/components/GridCellRenderer/useComponentProps.d.ts +0 -6
- package/dist/components/GridCellRenderer/useComponentProps.js +0 -10
- package/dist/components/GridCellRenderer/useComponentProps.js.map +0 -1
- /package/dist/components/Grid/{core/components/Cell/Notifications → cells/cell/notifications}/styles.d.ts +0 -0
- /package/dist/components/Grid/{GridContext.js → grid/GridContext.js} +0 -0
- /package/dist/components/Grid/{core/components/AgGrid/components/EmptyRecordsOverlay/EmptyRecords.d.ts → overlays/empty-records/EmptyRecordsOverlay.d.ts} +0 -0
- /package/dist/components/Grid/{core/components/AgGrid/components/LoadingOverlay → overlays/loading}/LoadingOverlay.d.ts +0 -0
- /package/dist/components/Grid/{core/components/AgGrid/components/LoadingOverlay → overlays/loading}/LoadingOverlay.js +0 -0
- /package/dist/components/{Grid/core/components/Dialog/interfaces → GridInlineRibbon}/index.js.map +0 -0
- /package/dist/{components/GridCellRenderer/DefaultContentRenderer → utils/dataset-control}/index.js.map +0 -0
|
@@ -1,180 +1,4 @@
|
|
|
1
1
|
export declare const gridTranslations: {
|
|
2
|
-
"condition-none": {
|
|
3
|
-
1029: string;
|
|
4
|
-
1033: string;
|
|
5
|
-
};
|
|
6
|
-
"condition-equal": {
|
|
7
|
-
1029: string;
|
|
8
|
-
1033: string;
|
|
9
|
-
};
|
|
10
|
-
"condition-notequal": {
|
|
11
|
-
1029: string;
|
|
12
|
-
1033: string;
|
|
13
|
-
};
|
|
14
|
-
"condition-greaterthan": {
|
|
15
|
-
1029: string;
|
|
16
|
-
1033: string;
|
|
17
|
-
};
|
|
18
|
-
"condition-lessthan": {
|
|
19
|
-
1029: string;
|
|
20
|
-
1033: string;
|
|
21
|
-
};
|
|
22
|
-
"condition-greaterequal": {
|
|
23
|
-
1029: string;
|
|
24
|
-
1033: string;
|
|
25
|
-
};
|
|
26
|
-
"condition-lessequal": {
|
|
27
|
-
1029: string;
|
|
28
|
-
1033: string;
|
|
29
|
-
};
|
|
30
|
-
"condition-like": {
|
|
31
|
-
1029: string;
|
|
32
|
-
1033: string;
|
|
33
|
-
};
|
|
34
|
-
"condition-notlike": {
|
|
35
|
-
1029: string;
|
|
36
|
-
1033: string;
|
|
37
|
-
};
|
|
38
|
-
"condition-null": {
|
|
39
|
-
1029: string;
|
|
40
|
-
1033: string;
|
|
41
|
-
};
|
|
42
|
-
"condition-notnull": {
|
|
43
|
-
1029: string;
|
|
44
|
-
1033: string;
|
|
45
|
-
};
|
|
46
|
-
"condition-beginwith": {
|
|
47
|
-
1029: string;
|
|
48
|
-
1033: string;
|
|
49
|
-
};
|
|
50
|
-
"condition-doesnotbeginwith": {
|
|
51
|
-
1029: string;
|
|
52
|
-
1033: string;
|
|
53
|
-
};
|
|
54
|
-
"condition-endswith": {
|
|
55
|
-
1029: string;
|
|
56
|
-
1033: string;
|
|
57
|
-
};
|
|
58
|
-
"condition-doesnotendwith": {
|
|
59
|
-
1029: string;
|
|
60
|
-
1033: string;
|
|
61
|
-
};
|
|
62
|
-
"condition-yesterday": {
|
|
63
|
-
1029: string;
|
|
64
|
-
1033: string;
|
|
65
|
-
};
|
|
66
|
-
"condition-today": {
|
|
67
|
-
1029: string;
|
|
68
|
-
1033: string;
|
|
69
|
-
};
|
|
70
|
-
"condition-tomorrow": {
|
|
71
|
-
1029: string;
|
|
72
|
-
1033: string;
|
|
73
|
-
};
|
|
74
|
-
"condition-last7days": {
|
|
75
|
-
1029: string;
|
|
76
|
-
1033: string;
|
|
77
|
-
};
|
|
78
|
-
"condition-next7days": {
|
|
79
|
-
1029: string;
|
|
80
|
-
1033: string;
|
|
81
|
-
};
|
|
82
|
-
"condition-lastweek": {
|
|
83
|
-
1029: string;
|
|
84
|
-
1033: string;
|
|
85
|
-
};
|
|
86
|
-
"condition-thisweek": {
|
|
87
|
-
1029: string;
|
|
88
|
-
1033: string;
|
|
89
|
-
};
|
|
90
|
-
"condition-lastmonth": {
|
|
91
|
-
1029: string;
|
|
92
|
-
1033: string;
|
|
93
|
-
};
|
|
94
|
-
"condition-thismonth": {
|
|
95
|
-
1029: string;
|
|
96
|
-
1033: string;
|
|
97
|
-
};
|
|
98
|
-
"condition-on": {
|
|
99
|
-
1029: string;
|
|
100
|
-
1033: string;
|
|
101
|
-
};
|
|
102
|
-
"condition-onorbefore": {
|
|
103
|
-
1029: string;
|
|
104
|
-
1033: string;
|
|
105
|
-
};
|
|
106
|
-
"condition-onorafter": {
|
|
107
|
-
1029: string;
|
|
108
|
-
1033: string;
|
|
109
|
-
};
|
|
110
|
-
"condition-lastyear": {
|
|
111
|
-
1029: string;
|
|
112
|
-
1033: string;
|
|
113
|
-
};
|
|
114
|
-
"condition-thisyear": {
|
|
115
|
-
1029: string;
|
|
116
|
-
1033: string;
|
|
117
|
-
};
|
|
118
|
-
"condition-lastxdays": {
|
|
119
|
-
1029: string;
|
|
120
|
-
1033: string;
|
|
121
|
-
};
|
|
122
|
-
"condition-nextxdays": {
|
|
123
|
-
1029: string;
|
|
124
|
-
1033: string;
|
|
125
|
-
};
|
|
126
|
-
"condition-lastxmonths": {
|
|
127
|
-
1029: string;
|
|
128
|
-
1033: string;
|
|
129
|
-
};
|
|
130
|
-
"condition-nextxmonths": {
|
|
131
|
-
1029: string;
|
|
132
|
-
1033: string;
|
|
133
|
-
};
|
|
134
|
-
"condition-contains": {
|
|
135
|
-
1029: string;
|
|
136
|
-
1033: string;
|
|
137
|
-
};
|
|
138
|
-
"condition-infiscalperiodandyear": {
|
|
139
|
-
1029: string;
|
|
140
|
-
1033: string;
|
|
141
|
-
};
|
|
142
|
-
"condition-above": {
|
|
143
|
-
1029: string;
|
|
144
|
-
1033: string;
|
|
145
|
-
};
|
|
146
|
-
"condition-under": {
|
|
147
|
-
1029: string;
|
|
148
|
-
1033: string;
|
|
149
|
-
};
|
|
150
|
-
"condition-notunder": {
|
|
151
|
-
1029: string;
|
|
152
|
-
1033: string;
|
|
153
|
-
};
|
|
154
|
-
"condition-aboveorequal": {
|
|
155
|
-
1029: string;
|
|
156
|
-
1033: string;
|
|
157
|
-
};
|
|
158
|
-
"condition-underorequal": {
|
|
159
|
-
1029: string;
|
|
160
|
-
1033: string;
|
|
161
|
-
};
|
|
162
|
-
"condition-containvalues": {
|
|
163
|
-
1029: string;
|
|
164
|
-
1033: string;
|
|
165
|
-
};
|
|
166
|
-
"condition-doesnotcontainvalues": {
|
|
167
|
-
1029: string;
|
|
168
|
-
1033: string;
|
|
169
|
-
};
|
|
170
|
-
"condition-between": {
|
|
171
|
-
1029: string;
|
|
172
|
-
1033: string;
|
|
173
|
-
};
|
|
174
|
-
"condition-notbetween": {
|
|
175
|
-
1029: string;
|
|
176
|
-
1033: string;
|
|
177
|
-
};
|
|
178
2
|
"filtermenu-filterby": {
|
|
179
3
|
1029: string;
|
|
180
4
|
1033: string;
|
|
@@ -267,6 +91,14 @@ export declare const gridTranslations: {
|
|
|
267
91
|
1029: string;
|
|
268
92
|
1033: string;
|
|
269
93
|
};
|
|
94
|
+
"filtersortmenu-group": {
|
|
95
|
+
1029: string;
|
|
96
|
+
1033: string;
|
|
97
|
+
};
|
|
98
|
+
"filtersortmenu-ungroup": {
|
|
99
|
+
1029: string;
|
|
100
|
+
1033: string;
|
|
101
|
+
};
|
|
270
102
|
norecordsfound: {
|
|
271
103
|
1029: string;
|
|
272
104
|
1033: string;
|
|
@@ -315,6 +147,18 @@ export declare const gridTranslations: {
|
|
|
315
147
|
1029: string;
|
|
316
148
|
1033: string;
|
|
317
149
|
};
|
|
150
|
+
"saving-autosave-success": {
|
|
151
|
+
1029: string;
|
|
152
|
+
1033: string;
|
|
153
|
+
};
|
|
154
|
+
"saving-autosave-error": {
|
|
155
|
+
1029: string;
|
|
156
|
+
1033: string;
|
|
157
|
+
};
|
|
158
|
+
"saving-unsaved-changes": {
|
|
159
|
+
1029: string;
|
|
160
|
+
1033: string;
|
|
161
|
+
};
|
|
318
162
|
"saving-discard-all-confirmation": {
|
|
319
163
|
1029: string;
|
|
320
164
|
1033: string;
|
|
@@ -359,7 +203,7 @@ export declare const gridTranslations: {
|
|
|
359
203
|
1029: string;
|
|
360
204
|
1033: string;
|
|
361
205
|
};
|
|
362
|
-
|
|
206
|
+
maximumGroupChildrenLimitReached: {
|
|
363
207
|
1029: string;
|
|
364
208
|
1033: string;
|
|
365
209
|
};
|
|
@@ -1,48 +1,4 @@
|
|
|
1
1
|
const gridTranslations = {
|
|
2
|
-
"condition-none": { 1029: "Žádná", 1033: "None" },
|
|
3
|
-
"condition-equal": { 1029: "Je rovno", 1033: "Equals" },
|
|
4
|
-
"condition-notequal": { 1029: "Není rovno", 1033: "Does not equal" },
|
|
5
|
-
"condition-greaterthan": { 1029: "Větší než", 1033: "Greater than" },
|
|
6
|
-
"condition-lessthan": { 1029: "Menší než", 1033: "Less than" },
|
|
7
|
-
"condition-greaterequal": { 1029: "Větší než nebo rovno", 1033: "Greater than or equal to" },
|
|
8
|
-
"condition-lessequal": { 1029: "Menší než nebo rovno", 1033: "Less than or equal to" },
|
|
9
|
-
"condition-like": { 1029: "Obsahuje", 1033: "Contains" },
|
|
10
|
-
"condition-notlike": { 1029: "Neobsahuje", 1033: "Does not contain" },
|
|
11
|
-
"condition-null": { 1029: "Neobsahuje data", 1033: "Does not contain data" },
|
|
12
|
-
"condition-notnull": { 1029: "Obsahuje data", 1033: "Contains data" },
|
|
13
|
-
"condition-beginwith": { 1029: "Začíná na", 1033: "Begins with" },
|
|
14
|
-
"condition-doesnotbeginwith": { 1029: "Nezačíná na", 1033: "Does not begin with" },
|
|
15
|
-
"condition-endswith": { 1029: "Končí na", 1033: "Ends with" },
|
|
16
|
-
"condition-doesnotendwith": { 1029: "Nekončí na", 1033: "Does not end with" },
|
|
17
|
-
"condition-yesterday": { 1029: "Včera", 1033: "Yesterday" },
|
|
18
|
-
"condition-today": { 1029: "Dneska", 1033: "Today" },
|
|
19
|
-
"condition-tomorrow": { 1029: "Zítra", 1033: "Tomorrow" },
|
|
20
|
-
"condition-last7days": { 1029: "Posledních 7 dnů", 1033: "Last 7 days" },
|
|
21
|
-
"condition-next7days": { 1029: "Příštích 7 dnů", 1033: "Next 7 days" },
|
|
22
|
-
"condition-lastweek": { 1029: "Minulý týden", 1033: "Last week" },
|
|
23
|
-
"condition-thisweek": { 1029: "Tento týden", 1033: "This week" },
|
|
24
|
-
"condition-lastmonth": { 1029: "Minulý měsíc", 1033: "Last month" },
|
|
25
|
-
"condition-thismonth": { 1029: "Tento měsíc", 1033: "This month" },
|
|
26
|
-
"condition-on": { 1029: "V den", 1033: "On" },
|
|
27
|
-
"condition-onorbefore": { 1029: "Před dnem (včetně)", 1033: "On or before" },
|
|
28
|
-
"condition-onorafter": { 1029: "Po dni (včetně)", 1033: "On or after" },
|
|
29
|
-
"condition-lastyear": { 1029: "Poslední rok", 1033: "Last year" },
|
|
30
|
-
"condition-thisyear": { 1029: "Tento rok", 1033: "This year" },
|
|
31
|
-
"condition-lastxdays": { 1029: "Posledních X dnů", 1033: "Last X days" },
|
|
32
|
-
"condition-nextxdays": { 1029: "Příštích X dnů", 1033: "Next X days" },
|
|
33
|
-
"condition-lastxmonths": { 1029: "Posledních X měsíců", 1033: "Last X months" },
|
|
34
|
-
"condition-nextxmonths": { 1029: "Příštích X měsíců", 1033: "Next X months" },
|
|
35
|
-
"condition-contains": { 1029: "Obsahuje", 1033: "Contains" },
|
|
36
|
-
"condition-infiscalperiodandyear": { 1029: "Toto fiskální období a rok", 1033: "In fiscal period and year" },
|
|
37
|
-
"condition-above": { 1029: "Nad", 1033: "Above" },
|
|
38
|
-
"condition-under": { 1029: "Pod", 1033: "Under" },
|
|
39
|
-
"condition-notunder": { 1029: "Není pod", 1033: "Not under" },
|
|
40
|
-
"condition-aboveorequal": { 1029: "Je nad nebo se rovná", 1033: "Above or equal" },
|
|
41
|
-
"condition-underorequal": { 1029: "Je pod nebo se rovná", 1033: "Under or equal" },
|
|
42
|
-
"condition-containvalues": { 1029: "Obsahuje hodnoty", 1033: "Contain values" },
|
|
43
|
-
"condition-doesnotcontainvalues": { 1029: "Neobsahuje hodnoty", 1033: "Does not contain values" },
|
|
44
|
-
"condition-between": { 1029: "Mezi", 1033: "Between" },
|
|
45
|
-
"condition-notbetween": { 1029: "Není mezi", 1033: "Not between" },
|
|
46
2
|
"filtermenu-filterby": { 1029: "Filtrovat podle", 1033: "Filter By" },
|
|
47
3
|
"filtermenu-applybutton": { 1029: "Použít", 1033: "Apply" },
|
|
48
4
|
"filtermenu-clearbutton": { 1029: "Vymazat", 1033: "Clear" },
|
|
@@ -66,6 +22,8 @@ const gridTranslations = {
|
|
|
66
22
|
"filtersortmenu-total-count": { 1029: 'Počet (včetně prázdných hodnot)', 1033: 'Count (including empty values)' },
|
|
67
23
|
"filtersortmenu-total-countcolumn": { 1029: 'Počet', 1033: 'Count' },
|
|
68
24
|
"filtersortmenu-total": { 1029: 'Součty', 1033: 'Totals' },
|
|
25
|
+
"filtersortmenu-group": { 1029: 'Seskupit', 1033: 'Group' },
|
|
26
|
+
"filtersortmenu-ungroup": { 1029: 'Zrušit seskupení', 1033: 'Ungroup' },
|
|
69
27
|
"norecordsfound": { 1029: 'Nenašli jsme nic, co by se zde dalo zobrazit.', 1033: 'No records found.' },
|
|
70
28
|
"saving-changenotification": { 1029: "Počet upravených záznamů: <b>{{numOfChanges}}</b>.", 1033: "Number of updated records: <b>{{numOfChanges}}</b>." },
|
|
71
29
|
"saving-clickreview": { 1029: "Klikněte <u>zde</u> pro jejich zobrazení.", 1033: "Click <u>here</u> to review" },
|
|
@@ -78,6 +36,9 @@ const gridTranslations = {
|
|
|
78
36
|
"saving-discard": { 1029: "Zrušit změnu", 1033: "Discard Change" },
|
|
79
37
|
"saving-discard-changes": { 1029: "Zrušit změny", 1033: "Discard Changes" },
|
|
80
38
|
"saving-save-changes": { 1029: "Uložit změny", 1033: "Save Changes" },
|
|
39
|
+
"saving-autosave-success": { 1029: "Změny byly úspěšně uloženy.", 1033: "Changes were successfully saved." },
|
|
40
|
+
"saving-autosave-error": { 1029: "Při ukládání změn došlo k chybě.", 1033: "An error occurred while saving changes." },
|
|
41
|
+
"saving-unsaved-changes": { 1029: "Máte neuložené změny. Opravdu si přejete opustit tuto stránku?", 1033: "You have unsaved changes. Are you sure you want to leave this page?" },
|
|
81
42
|
"saving-discard-all-confirmation": { 1029: "Opravdu si přejete zrušit všechny provedené změny? Tuto akci není možné vrátit.", 1033: "Are you sure you want to discard all changes? This action cannot be reversed." },
|
|
82
43
|
"validation-input-value": { 1029: 'Zadejte hodnotu', 1033: 'Please enter value.' },
|
|
83
44
|
"validation-email": { 1029: 'Neplatný formát emailové adresy.', 1033: 'Invalid Email address format.' },
|
|
@@ -89,10 +50,7 @@ const gridTranslations = {
|
|
|
89
50
|
"value-not-editable": { 1029: 'Tuto hodnotu nelze upravit.', 1033: 'This value cannot be edited.' },
|
|
90
51
|
"original-value": { 1029: 'Původní hodnota', 1033: 'Previous value' },
|
|
91
52
|
"new-value": { 1029: 'Nová hodnota', 1033: 'New value' },
|
|
92
|
-
"
|
|
93
|
-
1029: 'Kalkulace překročila maximální limit kvůli velkému počtu řádků. Zmenšete prosím rozsah dat nebo kontaktujte podporu.',
|
|
94
|
-
1033: 'The calculation exceeded the maximum limit due to a large number of rows. Please reduce the data range or contact support for assistance.'
|
|
95
|
-
}
|
|
53
|
+
"maximumGroupChildrenLimitReached": { 1029: "Bylo dosaženo maximálního limitu {{maxGroupChildren}} podřízených záznamů. Záznamy nad tento limit nebudou načteny.", 1033: "The maximum limit of {{maxGroupChildren}} child records has been reached. Records above this limit will not be loaded." },
|
|
96
54
|
};
|
|
97
55
|
|
|
98
56
|
export { gridTranslations };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translations.js","sources":["../../../src/components/Grid/translations.ts"],"sourcesContent":["export const gridTranslations = {\n \"condition-none\": { 1029: \"Žádná\", 1033: \"None\" },\n \"condition-equal\": { 1029: \"Je rovno\", 1033: \"Equals\" },\n \"condition-notequal\": { 1029: \"Není rovno\", 1033: \"Does not equal\" },\n \"condition-greaterthan\": { 1029: \"Větší než\", 1033: \"Greater than\" },\n \"condition-lessthan\": { 1029: \"Menší než\", 1033: \"Less than\" },\n \"condition-greaterequal\": { 1029: \"Větší než nebo rovno\", 1033: \"Greater than or equal to\" },\n \"condition-lessequal\": { 1029: \"Menší než nebo rovno\", 1033: \"Less than or equal to\" },\n \"condition-like\": { 1029: \"Obsahuje\", 1033: \"Contains\" },\n \"condition-notlike\": { 1029: \"Neobsahuje\", 1033: \"Does not contain\" },\n \"condition-null\": { 1029: \"Neobsahuje data\", 1033: \"Does not contain data\" },\n \"condition-notnull\": { 1029: \"Obsahuje data\", 1033: \"Contains data\" },\n \"condition-beginwith\": { 1029: \"Začíná na\", 1033: \"Begins with\" },\n \"condition-doesnotbeginwith\": { 1029: \"Nezačíná na\", 1033: \"Does not begin with\" },\n \"condition-endswith\": { 1029: \"Končí na\", 1033: \"Ends with\" },\n \"condition-doesnotendwith\": { 1029: \"Nekončí na\", 1033: \"Does not end with\" },\n \"condition-yesterday\": { 1029: \"Včera\", 1033: \"Yesterday\" },\n \"condition-today\": { 1029: \"Dneska\", 1033: \"Today\" },\n \"condition-tomorrow\": { 1029: \"Zítra\", 1033: \"Tomorrow\" },\n \"condition-last7days\": { 1029: \"Posledních 7 dnů\", 1033: \"Last 7 days\" },\n \"condition-next7days\": { 1029: \"Příštích 7 dnů\", 1033: \"Next 7 days\" },\n \"condition-lastweek\": { 1029: \"Minulý týden\", 1033: \"Last week\" },\n \"condition-thisweek\": { 1029: \"Tento týden\", 1033: \"This week\" },\n \"condition-lastmonth\": { 1029: \"Minulý měsíc\", 1033: \"Last month\" },\n \"condition-thismonth\": { 1029: \"Tento měsíc\", 1033: \"This month\" },\n \"condition-on\": { 1029: \"V den\", 1033: \"On\" },\n \"condition-onorbefore\": { 1029: \"Před dnem (včetně)\", 1033: \"On or before\" },\n \"condition-onorafter\": { 1029: \"Po dni (včetně)\", 1033: \"On or after\" },\n \"condition-lastyear\": { 1029: \"Poslední rok\", 1033: \"Last year\" },\n \"condition-thisyear\": { 1029: \"Tento rok\", 1033: \"This year\" },\n \"condition-lastxdays\": { 1029: \"Posledních X dnů\", 1033: \"Last X days\" },\n \"condition-nextxdays\": { 1029: \"Příštích X dnů\", 1033: \"Next X days\" },\n \"condition-lastxmonths\": { 1029: \"Posledních X měsíců\", 1033: \"Last X months\" },\n \"condition-nextxmonths\": { 1029: \"Příštích X měsíců\", 1033: \"Next X months\" },\n \"condition-contains\": { 1029: \"Obsahuje\", 1033: \"Contains\" },\n \"condition-infiscalperiodandyear\": { 1029: \"Toto fiskální období a rok\", 1033: \"In fiscal period and year\" },\n \"condition-above\": { 1029: \"Nad\", 1033: \"Above\" },\n \"condition-under\": { 1029: \"Pod\", 1033: \"Under\" },\n \"condition-notunder\": { 1029: \"Není pod\", 1033: \"Not under\" },\n \"condition-aboveorequal\": { 1029: \"Je nad nebo se rovná\", 1033: \"Above or equal\" },\n \"condition-underorequal\": { 1029: \"Je pod nebo se rovná\", 1033: \"Under or equal\" },\n \"condition-containvalues\": { 1029: \"Obsahuje hodnoty\", 1033: \"Contain values\" },\n \"condition-doesnotcontainvalues\": { 1029: \"Neobsahuje hodnoty\", 1033: \"Does not contain values\" },\n \"condition-between\": { 1029: \"Mezi\", 1033: \"Between\" },\n \"condition-notbetween\": { 1029: \"Není mezi\", 1033: \"Not between\" },\n \"filtermenu-filterby\": { 1029: \"Filtrovat podle\", 1033: \"Filter By\" },\n \"filtermenu-applybutton\": { 1029: \"Použít\", 1033: \"Apply\" },\n \"filtermenu-clearbutton\": { 1029: \"Vymazat\", 1033: \"Clear\" },\n \"filtersortmenu-sorttext-a-z\": { 1029: \"Seřadit od A do Z\", 1033: \"Sort A to Z\" },\n \"filtersortmenu-sorttext-z-a\": { 1029: \"Seřadit od Z do A\", 1033: \"Sort Z to A\" },\n \"filtersortmenu-sortdate-a-z\": { 1029: \"Seřadit od nejstarších\", 1033: \"Sort older to newer\" },\n \"filtersortmenu-sortdate-z-a\": { 1029: \"Seřadit od nejnovějších\", 1033: \"Sort newer to older\" },\n \"filtersortmenu-sortnumber-a-z\": { 1029: \"Seřadit od nejmenších\", 1033: \"Sort smaller to larger\" },\n \"filtersortmenu-sortnumber-z-a\": { 1029: \"Seřadit od největších\", 1033: \"Sort larger to smaller\" },\n \"filtersortmenu-sorttwooption-a-z\": { 1029: \"Seřadit od nejmenších\", 1033: \"No to Yes\" },\n \"filtersortmenu-sorttwooption-z-a\": { 1029: \"Seřadit od největších\", 1033: \"Yes to No\" },\n \"filtersortmenu-sorttwooption-joint\": { 1029: \"až\", 1033: \"to\" },\n \"filtersortmenu-filterby\": { 1029: \"Filtrovat podle\", 1033: \"Filter by\" },\n \"filtersortmenu-clearfilter\": { 1029: \"Vymazat filtr\", 1033: \"Clear filter\" },\n \"filtersortmenu-clearsorting\": { 1029: \"Vymazat řazení\", 1033: \"Clear sorting\" },\n \"filtersortmenu-total-none\": { 1029: 'Žádný', 1033: 'None' },\n \"filtersortmenu-total-avg\": { 1029: 'Průměr', 1033: 'Average' },\n \"filtersortmenu-total-max\": { 1029: 'Maximum', 1033: 'Maximum' },\n \"filtersortmenu-total-min\": { 1029: 'Minimum', 1033: 'Minimum' },\n \"filtersortmenu-total-sum\": { 1029: 'Součet', 1033: 'Sum' },\n \"filtersortmenu-total-count\": { 1029: 'Počet (včetně prázdných hodnot)', 1033: 'Count (including empty values)' },\n \"filtersortmenu-total-countcolumn\": { 1029: 'Počet', 1033: 'Count' },\n \"filtersortmenu-total\": { 1029: 'Součty', 1033: 'Totals' },\n \"norecordsfound\": { 1029: 'Nenašli jsme nic, co by se zde dalo zobrazit.', 1033: 'No records found.' },\n \"saving-changenotification\": { 1029: \"Počet upravených záznamů: <b>{{numOfChanges}}</b>.\", 1033: \"Number of updated records: <b>{{numOfChanges}}</b>.\" },\n \"saving-clickreview\": { 1029: \"Klikněte <u>zde</u> pro jejich zobrazení.\", 1033: \"Click <u>here</u> to review\" },\n \"saving-save\": { 1029: \"Uložit\", 1033: \"Save\" },\n \"saving-saving\": { 1029: \"Ukládání...\", 1033: \"Saving...\" },\n \"saving-changepreview-title\": { 1033: 'Number of updated rows: {{numOfChanges}}', 1029: 'Počet upravených záznamů: {{numOfChanges}}' },\n \"saving-validation-error\": { 1029: 'Pro uložení záznamu je nutné opravit chybové hodnoty následujících sloupců: <b>{{columnDisplayNames}}</b>', 1033: 'Folowing columns have validation errors: <b>{{columnDisplayNames}}</b>' },\n \"saving-save-all\": { 1029: \"Uložit všechny změny\", 1033: \"Save All Changes\" },\n \"saving-discard-all\": { 1029: \"Zrušit všechny změny\", 1033: \"Discard All Changes\" },\n \"saving-discard\": { 1029: \"Zrušit změnu\", 1033: \"Discard Change\" },\n \"saving-discard-changes\": { 1029: \"Zrušit změny\", 1033: \"Discard Changes\" },\n \"saving-save-changes\": { 1029: \"Uložit změny\", 1033: \"Save Changes\" },\n \"saving-discard-all-confirmation\": { 1029: \"Opravdu si přejete zrušit všechny provedené změny? Tuto akci není možné vrátit.\", 1033: \"Are you sure you want to discard all changes? This action cannot be reversed.\" },\n \"validation-input-value\": { 1029: 'Zadejte hodnotu', 1033: 'Please enter value.' },\n \"validation-email\": { 1029: 'Neplatný formát emailové adresy.', 1033: 'Invalid Email address format.' },\n \"validation-url\": { 1029: 'Neplatný formát webové adresy.', 1033: 'Invalid URL format.' },\n \"validation-date\": { 1029: 'Neplatný formát datumu.', 1033: 'Invalid Date format.' },\n \"validation-number\": { 1029: 'Neplatný formát čísla.', 1033: 'Invalid Number format.' },\n \"no-name\": { 1029: '(Bez názvu)', 1033: '(No Name)' },\n \"download\": { 1029: 'Stáhnout', 1033: 'Download' },\n \"value-not-editable\": { 1029: 'Tuto hodnotu nelze upravit.', 1033: 'This value cannot be edited.' },\n \"original-value\": { 1029: 'Původní hodnota', 1033: 'Previous value' },\n \"new-value\": { 1029: 'Nová hodnota', 1033: 'New value' },\n \"error-2147750198\": {\n 1029: 'Kalkulace překročila maximální limit kvůli velkému počtu řádků. Zmenšete prosím rozsah dat nebo kontaktujte podporu.',\n 1033: 'The calculation exceeded the maximum limit due to a large number of rows. Please reduce the data range or contact support for assistance.'\n }\n};\n\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"translations.js","sources":["../../../src/components/Grid/translations.ts"],"sourcesContent":["export const gridTranslations = {\n \"filtermenu-filterby\": { 1029: \"Filtrovat podle\", 1033: \"Filter By\" },\n \"filtermenu-applybutton\": { 1029: \"Použít\", 1033: \"Apply\" },\n \"filtermenu-clearbutton\": { 1029: \"Vymazat\", 1033: \"Clear\" },\n \"filtersortmenu-sorttext-a-z\": { 1029: \"Seřadit od A do Z\", 1033: \"Sort A to Z\" },\n \"filtersortmenu-sorttext-z-a\": { 1029: \"Seřadit od Z do A\", 1033: \"Sort Z to A\" },\n \"filtersortmenu-sortdate-a-z\": { 1029: \"Seřadit od nejstarších\", 1033: \"Sort older to newer\" },\n \"filtersortmenu-sortdate-z-a\": { 1029: \"Seřadit od nejnovějších\", 1033: \"Sort newer to older\" },\n \"filtersortmenu-sortnumber-a-z\": { 1029: \"Seřadit od nejmenších\", 1033: \"Sort smaller to larger\" },\n \"filtersortmenu-sortnumber-z-a\": { 1029: \"Seřadit od největších\", 1033: \"Sort larger to smaller\" },\n \"filtersortmenu-sorttwooption-a-z\": { 1029: \"Seřadit od nejmenších\", 1033: \"No to Yes\" },\n \"filtersortmenu-sorttwooption-z-a\": { 1029: \"Seřadit od největších\", 1033: \"Yes to No\" },\n \"filtersortmenu-sorttwooption-joint\": { 1029: \"až\", 1033: \"to\" },\n \"filtersortmenu-filterby\": { 1029: \"Filtrovat podle\", 1033: \"Filter by\" },\n \"filtersortmenu-clearfilter\": { 1029: \"Vymazat filtr\", 1033: \"Clear filter\" },\n \"filtersortmenu-clearsorting\": { 1029: \"Vymazat řazení\", 1033: \"Clear sorting\" },\n \"filtersortmenu-total-none\": { 1029: 'Žádný', 1033: 'None' },\n \"filtersortmenu-total-avg\": { 1029: 'Průměr', 1033: 'Average' },\n \"filtersortmenu-total-max\": { 1029: 'Maximum', 1033: 'Maximum' },\n \"filtersortmenu-total-min\": { 1029: 'Minimum', 1033: 'Minimum' },\n \"filtersortmenu-total-sum\": { 1029: 'Součet', 1033: 'Sum' },\n \"filtersortmenu-total-count\": { 1029: 'Počet (včetně prázdných hodnot)', 1033: 'Count (including empty values)' },\n \"filtersortmenu-total-countcolumn\": { 1029: 'Počet', 1033: 'Count' },\n \"filtersortmenu-total\": { 1029: 'Součty', 1033: 'Totals' },\n \"filtersortmenu-group\": { 1029: 'Seskupit', 1033: 'Group' },\n \"filtersortmenu-ungroup\": { 1029: 'Zrušit seskupení', 1033: 'Ungroup' },\n \"norecordsfound\": { 1029: 'Nenašli jsme nic, co by se zde dalo zobrazit.', 1033: 'No records found.' },\n \"saving-changenotification\": { 1029: \"Počet upravených záznamů: <b>{{numOfChanges}}</b>.\", 1033: \"Number of updated records: <b>{{numOfChanges}}</b>.\" },\n \"saving-clickreview\": { 1029: \"Klikněte <u>zde</u> pro jejich zobrazení.\", 1033: \"Click <u>here</u> to review\" },\n \"saving-save\": { 1029: \"Uložit\", 1033: \"Save\" },\n \"saving-saving\": { 1029: \"Ukládání...\", 1033: \"Saving...\" },\n \"saving-changepreview-title\": { 1033: 'Number of updated rows: {{numOfChanges}}', 1029: 'Počet upravených záznamů: {{numOfChanges}}' },\n \"saving-validation-error\": { 1029: 'Pro uložení záznamu je nutné opravit chybové hodnoty následujících sloupců: <b>{{columnDisplayNames}}</b>', 1033: 'Folowing columns have validation errors: <b>{{columnDisplayNames}}</b>' },\n \"saving-save-all\": { 1029: \"Uložit všechny změny\", 1033: \"Save All Changes\" },\n \"saving-discard-all\": { 1029: \"Zrušit všechny změny\", 1033: \"Discard All Changes\" },\n \"saving-discard\": { 1029: \"Zrušit změnu\", 1033: \"Discard Change\" },\n \"saving-discard-changes\": { 1029: \"Zrušit změny\", 1033: \"Discard Changes\" },\n \"saving-save-changes\": { 1029: \"Uložit změny\", 1033: \"Save Changes\" },\n \"saving-autosave-success\": { 1029: \"Změny byly úspěšně uloženy.\", 1033: \"Changes were successfully saved.\" },\n \"saving-autosave-error\": { 1029: \"Při ukládání změn došlo k chybě.\", 1033: \"An error occurred while saving changes.\" },\n \"saving-unsaved-changes\": { 1029: \"Máte neuložené změny. Opravdu si přejete opustit tuto stránku?\", 1033: \"You have unsaved changes. Are you sure you want to leave this page?\" },\n \"saving-discard-all-confirmation\": { 1029: \"Opravdu si přejete zrušit všechny provedené změny? Tuto akci není možné vrátit.\", 1033: \"Are you sure you want to discard all changes? This action cannot be reversed.\" },\n \"validation-input-value\": { 1029: 'Zadejte hodnotu', 1033: 'Please enter value.' },\n \"validation-email\": { 1029: 'Neplatný formát emailové adresy.', 1033: 'Invalid Email address format.' },\n \"validation-url\": { 1029: 'Neplatný formát webové adresy.', 1033: 'Invalid URL format.' },\n \"validation-date\": { 1029: 'Neplatný formát datumu.', 1033: 'Invalid Date format.' },\n \"validation-number\": { 1029: 'Neplatný formát čísla.', 1033: 'Invalid Number format.' },\n \"no-name\": { 1029: '(Bez názvu)', 1033: '(No Name)' },\n \"download\": { 1029: 'Stáhnout', 1033: 'Download' },\n \"value-not-editable\": { 1029: 'Tuto hodnotu nelze upravit.', 1033: 'This value cannot be edited.' },\n \"original-value\": { 1029: 'Původní hodnota', 1033: 'Previous value' },\n \"new-value\": { 1029: 'Nová hodnota', 1033: 'New value' },\n \"maximumGroupChildrenLimitReached\": { 1029: \"Bylo dosaženo maximálního limitu {{maxGroupChildren}} podřízených záznamů. Záznamy nad tento limit nebudou načteny.\", 1033: \"The maximum limit of {{maxGroupChildren}} child records has been reached. Records above this limit will not be loaded.\" },\n};\n\n"],"names":[],"mappings":"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"}
|