@trackunit/react-table 0.0.1-alpha-d77630157e.0
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/README.md +22 -0
- package/index.cjs.d.ts +1 -0
- package/index.cjs.js +9242 -0
- package/index.esm.js +9207 -0
- package/package.json +30 -0
- package/src/ActionSheet/ActionSheet.d.ts +16 -0
- package/src/ActionSheet/ActionSheet.variants.d.ts +1 -0
- package/src/ActionSheet/Actions.d.ts +21 -0
- package/src/ActionSheet/index.d.ts +2 -0
- package/src/Table.d.ts +21 -0
- package/src/index.d.ts +11 -0
- package/src/menus/ColumnFIlter.variants.d.ts +3 -0
- package/src/menus/ColumnFilter.d.ts +22 -0
- package/src/menus/RowSpacing.d.ts +15 -0
- package/src/menus/Sorting.d.ts +15 -0
- package/src/translation.d.ts +34 -0
- package/src/types.d.ts +23 -0
- package/src/useInfiniteScroll.d.ts +33 -0
- package/src/useRelayPagination.d.ts +28 -0
- package/src/useTable.d.ts +15 -0
- package/src/utils.d.ts +16 -0
- package/translation.cjs.js +33 -0
- package/translation.cjs10.js +33 -0
- package/translation.cjs11.js +33 -0
- package/translation.cjs12.js +33 -0
- package/translation.cjs13.js +33 -0
- package/translation.cjs14.js +33 -0
- package/translation.cjs15.js +33 -0
- package/translation.cjs16.js +33 -0
- package/translation.cjs17.js +33 -0
- package/translation.cjs2.js +33 -0
- package/translation.cjs3.js +33 -0
- package/translation.cjs4.js +33 -0
- package/translation.cjs5.js +33 -0
- package/translation.cjs6.js +33 -0
- package/translation.cjs7.js +33 -0
- package/translation.cjs8.js +33 -0
- package/translation.cjs9.js +33 -0
- package/translation.esm.js +31 -0
- package/translation.esm10.js +31 -0
- package/translation.esm11.js +31 -0
- package/translation.esm12.js +31 -0
- package/translation.esm13.js +31 -0
- package/translation.esm14.js +31 -0
- package/translation.esm15.js +31 -0
- package/translation.esm16.js +31 -0
- package/translation.esm17.js +31 -0
- package/translation.esm2.js +31 -0
- package/translation.esm3.js +31 -0
- package/translation.esm4.js +31 -0
- package/translation.esm5.js +31 -0
- package/translation.esm6.js +31 -0
- package/translation.esm7.js +31 -0
- package/translation.esm8.js +31 -0
- package/translation.esm9.js +31 -0
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@trackunit/react-table",
|
|
3
|
+
"version": "0.0.1-alpha-d77630157e.0",
|
|
4
|
+
"repository": "https://github.com/Trackunit/manager",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=18.x"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@tanstack/react-table": "8.9.3",
|
|
11
|
+
"@tanstack/react-virtual": "3.0.0-alpha.0",
|
|
12
|
+
"@trackunit/css-class-variance-utilities": "0.0.12-alpha-d77630157e.0",
|
|
13
|
+
"@trackunit/css-core": "0.0.93-alpha-d77630157e.0",
|
|
14
|
+
"@trackunit/i18n-library-translation": "0.0.69-alpha-d77630157e.0",
|
|
15
|
+
"@trackunit/react-components": "0.1.149-alpha-d77630157e.0",
|
|
16
|
+
"@trackunit/react-core-contexts-api": "0.2.53-alpha-d77630157e.0",
|
|
17
|
+
"@trackunit/react-core-contexts-test": "0.1.93-alpha-d77630157e.0",
|
|
18
|
+
"@trackunit/react-form-components": "0.0.119-alpha-d77630157e.0",
|
|
19
|
+
"@trackunit/react-table-base-components": "0.0.1",
|
|
20
|
+
"@trackunit/ui-icons": "0.0.74-alpha-d77630157e.0",
|
|
21
|
+
"immutability-helper": "3.1.1",
|
|
22
|
+
"react": "18.2.0",
|
|
23
|
+
"react-dnd": "14.0.5",
|
|
24
|
+
"react-dnd-html5-backend": "14.1.0",
|
|
25
|
+
"react-router-dom": "6.11.2"
|
|
26
|
+
},
|
|
27
|
+
"module": "./index.esm.js",
|
|
28
|
+
"main": "./index.cjs.js",
|
|
29
|
+
"peerDependencies": {}
|
|
30
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { CommonProps } from "@trackunit/react-components";
|
|
3
|
+
import { ActionModel } from "./Actions";
|
|
4
|
+
export interface ActionSheetProps extends CommonProps {
|
|
5
|
+
actions: readonly [ActionModel, ActionModel?, ActionModel?, ActionModel?];
|
|
6
|
+
moreActions?: ActionModel[];
|
|
7
|
+
selections: string[];
|
|
8
|
+
resetSelection: () => void;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* ActionSheet is meant for actions attached to selections in your table.
|
|
12
|
+
*
|
|
13
|
+
* @param {ActionSheetProps} props - The props for the ActionSheet component
|
|
14
|
+
* @returns {JSX.Element} ActionSheet component
|
|
15
|
+
*/
|
|
16
|
+
export declare const ActionSheet: ({ actions, moreActions, selections, resetSelection, className, dataTestId, }: ActionSheetProps) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const cvaActionSheet: (props?: import("class-variance-authority/dist/types").ClassProp | undefined) => string;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps, Size } from "@trackunit/react-components";
|
|
3
|
+
import { HeroIconName } from "@trackunit/ui-icons";
|
|
4
|
+
type IconExposedProp = Omit<IconProps, "color" | "onclick" | "type" | "name">;
|
|
5
|
+
export type ActionModel = (MethodAction | RouteAction) & CommonAction;
|
|
6
|
+
export type MethodAction = {
|
|
7
|
+
type: "method";
|
|
8
|
+
method: () => void;
|
|
9
|
+
};
|
|
10
|
+
export type RouteAction = {
|
|
11
|
+
type: "route";
|
|
12
|
+
url: string;
|
|
13
|
+
};
|
|
14
|
+
export interface CommonAction extends IconExposedProp {
|
|
15
|
+
label: string;
|
|
16
|
+
icon: HeroIconName;
|
|
17
|
+
size?: Size;
|
|
18
|
+
forwardedRef?: React.RefObject<HTMLSpanElement>;
|
|
19
|
+
style?: Record<string, string>;
|
|
20
|
+
}
|
|
21
|
+
export {};
|
package/src/Table.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Table as ReactTable, Row } from "@tanstack/react-table";
|
|
3
|
+
import { CommonProps } from "@trackunit/react-components";
|
|
4
|
+
import { RelayPagination } from "./types";
|
|
5
|
+
export interface TableProps<TData extends object> extends ReactTable<TData>, CommonProps {
|
|
6
|
+
pagination: RelayPagination;
|
|
7
|
+
headerLeftActions?: React.ReactNode;
|
|
8
|
+
headerRightActions?: React.ReactNode;
|
|
9
|
+
footerRightActions?: React.ReactNode;
|
|
10
|
+
onRowClick?: (row: Row<TData>) => void;
|
|
11
|
+
disableHeaderSorting?: boolean;
|
|
12
|
+
noDataMessage?: JSX.Element | string;
|
|
13
|
+
loading?: boolean;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Table component for displaying large sets of data in tables with infinite scroll, sorting, filtering and others.
|
|
17
|
+
*
|
|
18
|
+
* @param {ReactTable} props - The props for the Table component
|
|
19
|
+
* @returns {JSX.Element} Table component
|
|
20
|
+
*/
|
|
21
|
+
export declare const Table: <TData extends object>(props: TableProps<TData>) => JSX.Element;
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ColumnSort } from "@tanstack/react-table";
|
|
2
|
+
export * from "./ActionSheet";
|
|
3
|
+
export * from "./Table";
|
|
4
|
+
export * from "./menus/ColumnFilter";
|
|
5
|
+
export * from "./menus/RowSpacing";
|
|
6
|
+
export * from "./menus/Sorting";
|
|
7
|
+
export * from "./types";
|
|
8
|
+
export * from "./useRelayPagination";
|
|
9
|
+
export * from "./useTable";
|
|
10
|
+
export * from "./utils";
|
|
11
|
+
export type SortingState = ColumnSort[];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Column, ColumnOrderState, Updater } from "@tanstack/react-table";
|
|
3
|
+
export interface IColumnFilterProps<T extends object, V> {
|
|
4
|
+
columns: Column<T, V>[];
|
|
5
|
+
className?: string;
|
|
6
|
+
setColumnOrder: (updater: Updater<ColumnOrderState>) => void;
|
|
7
|
+
onUserEvent?: (event: "Column Reordering" | "Column Filter", payload: Record<string, unknown>) => void;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* ColumnFilter component for managing visibility and order of table columns.
|
|
11
|
+
*
|
|
12
|
+
* @template T - The type representing the data model associated with the columns.
|
|
13
|
+
* @template V - The type representing the value of columns.
|
|
14
|
+
* @param {IColumnFilterProps<T, V>} props - The props object containing necessary properties.
|
|
15
|
+
* @returns {JSX.Element | null} A React JSX element representing the ColumnFilter component or null if columns are not provided.
|
|
16
|
+
*/
|
|
17
|
+
export declare const ColumnFilter: <T extends Object, V>({ columns, setColumnOrder, onUserEvent, }: IColumnFilterProps<T, V>) => JSX.Element | null;
|
|
18
|
+
export interface ColumnFiltersDragAndDropProps<T extends object, V> {
|
|
19
|
+
columns: Column<T, V>[];
|
|
20
|
+
setColumnOrder: (updater: Updater<ColumnOrderState>) => void;
|
|
21
|
+
onUserEvent?: (event: "Column Reordering" | "Column Filter", payload: Record<string, unknown>) => void;
|
|
22
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type Density = "spacious" | "compact";
|
|
3
|
+
interface RowDensityProps {
|
|
4
|
+
density: Density;
|
|
5
|
+
setRowDensity: (density: Density) => void;
|
|
6
|
+
onUserEvent?: (event: "Row Spacing", payload: Record<string, unknown>) => void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* RowSpacing component for managing the density of table rows.
|
|
10
|
+
*
|
|
11
|
+
* @param {RowDensityProps} props - The props object containing row density properties.
|
|
12
|
+
* @returns {JSX.Element} A React JSX element representing the RowSpacing component.
|
|
13
|
+
*/
|
|
14
|
+
export declare const RowSpacing: ({ density, setRowDensity, onUserEvent }: RowDensityProps) => JSX.Element;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Column } from "@tanstack/react-table";
|
|
3
|
+
interface SortingProps<T extends object, V> {
|
|
4
|
+
columns: Column<T, V>[];
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Sorting component for managing table column sorting.
|
|
8
|
+
*
|
|
9
|
+
* @template T - The type representing the data model associated with the columns.
|
|
10
|
+
* @template V - The type representing the value of columns.
|
|
11
|
+
* @param {SortingProps<T, V>} props - The props object containing sorting properties.
|
|
12
|
+
* @returns {JSX.Element | null} A React JSX element representing the Sorting component or null if there are no sortable columns.
|
|
13
|
+
*/
|
|
14
|
+
export declare const Sorting: <T extends Object, V>({ columns }: SortingProps<T, V>) => JSX.Element | null;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { NamespaceTransProps, TransForLibs, TranslationResource } from "@trackunit/i18n-library-translation";
|
|
3
|
+
import defaultTranslations from "./locales/en/translation.json";
|
|
4
|
+
/** A type for all available translation keys in this library */
|
|
5
|
+
export type TranslationKeys = keyof typeof defaultTranslations;
|
|
6
|
+
/** The translation namespace for this library */
|
|
7
|
+
export declare const namespace = "react.table";
|
|
8
|
+
/**
|
|
9
|
+
* The TranslationResource for this Library.
|
|
10
|
+
* Holds lazy loaded imports for all languages supported by the library.
|
|
11
|
+
*
|
|
12
|
+
* This is used to register the translations for this library before initializing i18next.
|
|
13
|
+
*/
|
|
14
|
+
export declare const translations: TranslationResource<TranslationKeys>;
|
|
15
|
+
/**
|
|
16
|
+
* Local useTranslation for this specific library
|
|
17
|
+
*/
|
|
18
|
+
export declare const useTranslation: () => [TransForLibs<"table.actionsheet.selected" | "layout.actions.reset" | "table.pagination.of" | "table.pagination.full" | "table.pagination.page" | "table.results.plural" | "table.sorting.toolip" | "table.columnFilters.columns" | "table.columnFilters.hiddenColumnCount" | "table.columnFilters.title" | "table.columnFilters.tooltip" | "table.exportFileName" | "table.format" | "table.results.plural.capped" | "table.noResults" | "table.error" | "table.result" | "table.rowDensity.compact" | "table.rowDensity.spacious" | "table.search.placeholder" | "table.searchPlaceholder" | "table.sorting.ascending" | "table.sorting.descending" | "table.sorting.label" | "table.sorting.order" | "table.spacing" | "table.spacing.toolip">, import("i18next").i18n, boolean] & {
|
|
19
|
+
t: TransForLibs<"table.actionsheet.selected" | "layout.actions.reset" | "table.pagination.of" | "table.pagination.full" | "table.pagination.page" | "table.results.plural" | "table.sorting.toolip" | "table.columnFilters.columns" | "table.columnFilters.hiddenColumnCount" | "table.columnFilters.title" | "table.columnFilters.tooltip" | "table.exportFileName" | "table.format" | "table.results.plural.capped" | "table.noResults" | "table.error" | "table.result" | "table.rowDensity.compact" | "table.rowDensity.spacious" | "table.search.placeholder" | "table.searchPlaceholder" | "table.sorting.ascending" | "table.sorting.descending" | "table.sorting.label" | "table.sorting.order" | "table.spacing" | "table.spacing.toolip">;
|
|
20
|
+
i18n: import("i18next").i18n;
|
|
21
|
+
ready: boolean;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Type of the t function for the local useTranslation for this specific library
|
|
25
|
+
*/
|
|
26
|
+
export type TranslationFunction = TransForLibs<TranslationKeys>;
|
|
27
|
+
/**
|
|
28
|
+
* Trans for this specific library.
|
|
29
|
+
*/
|
|
30
|
+
export declare const Trans: (props: NamespaceTransProps<TranslationKeys>) => JSX.Element;
|
|
31
|
+
/**
|
|
32
|
+
* Registers the translations for this library
|
|
33
|
+
*/
|
|
34
|
+
export declare const setupLibraryTranslations: () => void;
|
package/src/types.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { RowData } from "@tanstack/react-table";
|
|
2
|
+
export { createColumnHelper, type ColumnDef, type VisibilityState } from "@tanstack/react-table";
|
|
3
|
+
declare module "@tanstack/table-core" {
|
|
4
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
5
|
+
alignment?: Alignment;
|
|
6
|
+
required?: boolean;
|
|
7
|
+
subHeader?: string;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
export interface RelayPageInfo {
|
|
11
|
+
count?: number | null;
|
|
12
|
+
endCursor?: string | null;
|
|
13
|
+
hasNextPage?: boolean;
|
|
14
|
+
hasPreviousPage?: boolean;
|
|
15
|
+
startCursor?: string | null;
|
|
16
|
+
}
|
|
17
|
+
export interface RelayPagination {
|
|
18
|
+
nextPage: () => void;
|
|
19
|
+
previousPage: () => void;
|
|
20
|
+
pageInfo?: RelayPageInfo;
|
|
21
|
+
isLoading: boolean;
|
|
22
|
+
}
|
|
23
|
+
export type Alignment = "left" | "center" | "right";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { VirtualItem } from "@tanstack/react-virtual";
|
|
2
|
+
import { RefObject } from "react";
|
|
3
|
+
import { RelayPagination } from "./types";
|
|
4
|
+
interface InfiniteScrollProps {
|
|
5
|
+
pagination: RelayPagination;
|
|
6
|
+
containerRef: RefObject<HTMLDivElement>;
|
|
7
|
+
rowSize: number;
|
|
8
|
+
}
|
|
9
|
+
interface InfiniteScroll {
|
|
10
|
+
paddingTop: number;
|
|
11
|
+
paddingBottom: number;
|
|
12
|
+
fetchMoreOnBottomReached: (containerRefElement?: HTMLDivElement | null) => void;
|
|
13
|
+
rowVirtualizer: unknown;
|
|
14
|
+
virtualRows: VirtualItem[];
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Custom hook for implementing infinite scrolling in a table.
|
|
18
|
+
*
|
|
19
|
+
* @param {InfiniteScrollProps} props - The configuration object for the infinite scroll behavior.
|
|
20
|
+
* @returns {InfiniteScroll} An object containing properties and functions for infinite scrolling.
|
|
21
|
+
* @description
|
|
22
|
+
* This hook is used to implement infinite scrolling in a table. It calculates the necessary padding
|
|
23
|
+
* for virtual rows, provides a callback for fetching more data when the user scrolls to the bottom,
|
|
24
|
+
* and manages virtualized rows for efficient rendering.
|
|
25
|
+
* @example
|
|
26
|
+
* const { paddingTop, paddingBottom, fetchMoreOnBottomReached, rowVirtualizer, virtualRows } = useInfiniteScroll({
|
|
27
|
+
* pagination: relayPaginationObject,
|
|
28
|
+
* containerRef: tableContainerRef,
|
|
29
|
+
* rowSize: 50,
|
|
30
|
+
* });
|
|
31
|
+
*/
|
|
32
|
+
export declare const useInfiniteScroll: (props: InfiniteScrollProps) => InfiniteScroll;
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Dispatch, SetStateAction } from "react";
|
|
2
|
+
import { RelayPageInfo, RelayPagination } from "./types";
|
|
3
|
+
export interface RelayPaginationProps {
|
|
4
|
+
pageSize?: number;
|
|
5
|
+
}
|
|
6
|
+
export interface RelayPaginationQueryVariables {
|
|
7
|
+
first?: number;
|
|
8
|
+
last?: number;
|
|
9
|
+
before?: string;
|
|
10
|
+
after?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface RelayTableSupport extends RelayPagination {
|
|
13
|
+
isLoading: boolean;
|
|
14
|
+
setIsLoading: Dispatch<SetStateAction<boolean>>;
|
|
15
|
+
reset: () => void;
|
|
16
|
+
setPageInfo: Dispatch<SetStateAction<RelayPageInfo | null | undefined>>;
|
|
17
|
+
}
|
|
18
|
+
export interface RelayPaginationSupport {
|
|
19
|
+
variables: RelayPaginationQueryVariables;
|
|
20
|
+
table: RelayTableSupport;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Custom hook for handling Relay pagination in tables.
|
|
24
|
+
*
|
|
25
|
+
* @param {RelayPaginationProps} props - The props object containing pagination configuration.
|
|
26
|
+
* @returns {RelayPaginationSupport} An object containing functions and state for managing Relay pagination.
|
|
27
|
+
*/
|
|
28
|
+
export declare const useRelayPagination: (props?: RelayPaginationProps) => RelayPaginationSupport;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TableOptions, TableState } from "@tanstack/react-table";
|
|
2
|
+
export interface TableOptionsProps<TData extends object> extends Omit<TableOptions<TData>, "getCoreRowModel"> {
|
|
3
|
+
onTableStateChange?: (state: Partial<TableState> | null) => void;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Hook for managing and controlling a table's state and behavior.
|
|
7
|
+
*
|
|
8
|
+
* @template TData - The type representing the data model associated with the table.
|
|
9
|
+
* @param {TableOptionsProps<TData>} props - The props object containing configuration options.
|
|
10
|
+
* @returns {TableOptionsProps<TData>} An object containing the React Table instance and associated state management functions.
|
|
11
|
+
*/
|
|
12
|
+
export declare const useTable: <TData extends object>({ onTableStateChange, initialState, ...reactTableProps }: TableOptionsProps<TData>) => {
|
|
13
|
+
table: import("@tanstack/react-table").Table<TData>;
|
|
14
|
+
};
|
|
15
|
+
export default useTable;
|
package/src/utils.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SortingState as TanStackSortingState } from "@tanstack/react-table";
|
|
2
|
+
import { SortingState } from "@trackunit/react-core-contexts-api";
|
|
3
|
+
/**
|
|
4
|
+
* Convert a sorting state from the TUSort format to the TanStack format.
|
|
5
|
+
*
|
|
6
|
+
* @param {SortingState} input - The input sorting state in TUSort format.
|
|
7
|
+
* @returns {TanStackSortingState} The sorting state in TanStack format.
|
|
8
|
+
*/
|
|
9
|
+
export declare const fromTUSortToTanStack: (input: SortingState) => TanStackSortingState;
|
|
10
|
+
/**
|
|
11
|
+
* Convert a sorting state from the TanStack format to the TUSort format.
|
|
12
|
+
*
|
|
13
|
+
* @param {TanStackSortingState} input - The input sorting state in TanStack format.
|
|
14
|
+
* @returns {SortingState} The sorting state in TUSort format.
|
|
15
|
+
*/
|
|
16
|
+
export declare const fromTanStackToTUSort: (input: TanStackSortingState) => SortingState;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "ausgewählt",
|
|
5
|
+
"layout.actions.reset": "Zurücksetzen",
|
|
6
|
+
"table.pagination.of": "von {{count}}",
|
|
7
|
+
"table.pagination.full": "{{count}} von {{total}} Ergebnissen werden angezeigt",
|
|
8
|
+
"table.pagination.page": "Seite",
|
|
9
|
+
"table.results.plural": "{{count}} Ergebnisse",
|
|
10
|
+
"table.sorting.toolip": "Sortierung und Anordnung",
|
|
11
|
+
"table.columnFilters.columns": "Spalten",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "{{count}} ausgeblendete Spalte",
|
|
13
|
+
"table.columnFilters.title": "Sichtbare Werte",
|
|
14
|
+
"table.columnFilters.tooltip": "Passen Sie sichtbare Werte an",
|
|
15
|
+
"table.exportFileName": "exportierte Daten",
|
|
16
|
+
"table.format": "Format",
|
|
17
|
+
"table.results.plural.capped": "Über {{count}} Ergebnisse",
|
|
18
|
+
"table.noResults": "Keine Ergebnisse",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}} Ergebnis",
|
|
21
|
+
"table.rowDensity.compact": "Kompakt",
|
|
22
|
+
"table.rowDensity.spacious": "Weitläufig",
|
|
23
|
+
"table.search.placeholder": "Suchen...",
|
|
24
|
+
"table.searchPlaceholder": "Suchen...",
|
|
25
|
+
"table.sorting.ascending": "Aufsteigend",
|
|
26
|
+
"table.sorting.descending": "Absteigend",
|
|
27
|
+
"table.sorting.label": "Sortierung",
|
|
28
|
+
"table.sorting.order": "Sortierung",
|
|
29
|
+
"table.spacing": "Abstand",
|
|
30
|
+
"table.spacing.toolip": "Zeilendichte"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "wybrano",
|
|
5
|
+
"layout.actions.reset": "Zresetuj",
|
|
6
|
+
"table.pagination.of": "z {{count}}",
|
|
7
|
+
"table.pagination.full": "Wyświetlono {{count}} wyników z {{total}}",
|
|
8
|
+
"table.pagination.page": "Strona",
|
|
9
|
+
"table.results.plural": "Wyniki: {{count}}",
|
|
10
|
+
"table.sorting.toolip": "Dostosuj sortowanie i kierunek",
|
|
11
|
+
"table.columnFilters.columns": "Kolumny",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "{{count}} ukryta kolumna",
|
|
13
|
+
"table.columnFilters.title": "Widoczne wartości",
|
|
14
|
+
"table.columnFilters.tooltip": "Dostosuj widoczne wartości",
|
|
15
|
+
"table.exportFileName": "wyeksportowane dane",
|
|
16
|
+
"table.format": "Format",
|
|
17
|
+
"table.results.plural.capped": "Wyniki: {{count}}+",
|
|
18
|
+
"table.noResults": "Brak wyników",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}} wynik",
|
|
21
|
+
"table.rowDensity.compact": "Kompaktowy",
|
|
22
|
+
"table.rowDensity.spacious": "Przestronny",
|
|
23
|
+
"table.search.placeholder": "Szukaj...",
|
|
24
|
+
"table.searchPlaceholder": "Szukaj...",
|
|
25
|
+
"table.sorting.ascending": "Rosnąco",
|
|
26
|
+
"table.sorting.descending": "Malejąco",
|
|
27
|
+
"table.sorting.label": "Sortowanie",
|
|
28
|
+
"table.sorting.order": "Zamówienie",
|
|
29
|
+
"table.spacing": "Rozstaw",
|
|
30
|
+
"table.spacing.toolip": "Dostosuj zagęszczenie wierszy"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "selecionado",
|
|
5
|
+
"layout.actions.reset": "Redefinir",
|
|
6
|
+
"table.pagination.of": "de {{count}}",
|
|
7
|
+
"table.pagination.full": "A mostrar {{count}} de {{total}} resultados",
|
|
8
|
+
"table.pagination.page": "Página",
|
|
9
|
+
"table.results.plural": "{{count}} resultados",
|
|
10
|
+
"table.sorting.toolip": "Ajustar classificação e direção",
|
|
11
|
+
"table.columnFilters.columns": "Colunas",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "{{count}} coluna oculta",
|
|
13
|
+
"table.columnFilters.title": "Valores visíveis",
|
|
14
|
+
"table.columnFilters.tooltip": "Personalizar valores visíveis",
|
|
15
|
+
"table.exportFileName": "dados exportados",
|
|
16
|
+
"table.format": "Formato",
|
|
17
|
+
"table.results.plural.capped": "{{count}}+ resultados",
|
|
18
|
+
"table.noResults": "Sem resultados",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}} resultado",
|
|
21
|
+
"table.rowDensity.compact": "Compacto",
|
|
22
|
+
"table.rowDensity.spacious": "Espaçoso",
|
|
23
|
+
"table.search.placeholder": "Pesquisar...",
|
|
24
|
+
"table.searchPlaceholder": "Pesquisar...",
|
|
25
|
+
"table.sorting.ascending": "Ascendente",
|
|
26
|
+
"table.sorting.descending": "Descendente",
|
|
27
|
+
"table.sorting.label": "Ordenação",
|
|
28
|
+
"table.sorting.order": "Ordem",
|
|
29
|
+
"table.spacing": "Espaçamento",
|
|
30
|
+
"table.spacing.toolip": "Ajustar densidade da linha"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "выбрано",
|
|
5
|
+
"layout.actions.reset": "Сбросить",
|
|
6
|
+
"table.pagination.of": "из {{count}}",
|
|
7
|
+
"table.pagination.full": "Показано {{count}} из {{total}} результатов",
|
|
8
|
+
"table.pagination.page": "Страница",
|
|
9
|
+
"table.results.plural": "{{count}} результаты",
|
|
10
|
+
"table.sorting.toolip": "Настройка сортировки и направления",
|
|
11
|
+
"table.columnFilters.columns": "Столбцы",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "{{count}} колонка скрыта",
|
|
13
|
+
"table.columnFilters.title": "Видимые значения",
|
|
14
|
+
"table.columnFilters.tooltip": "Настроить видимые значения",
|
|
15
|
+
"table.exportFileName": "экспортированные данные",
|
|
16
|
+
"table.format": "Формат",
|
|
17
|
+
"table.results.plural.capped": "{{count}}+ результатов",
|
|
18
|
+
"table.noResults": "Нет результатов",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}} результат",
|
|
21
|
+
"table.rowDensity.compact": "Компактный",
|
|
22
|
+
"table.rowDensity.spacious": "Просторный",
|
|
23
|
+
"table.search.placeholder": "Поиск...",
|
|
24
|
+
"table.searchPlaceholder": "Поиск...",
|
|
25
|
+
"table.sorting.ascending": "По возрастанию",
|
|
26
|
+
"table.sorting.descending": "По убыванию",
|
|
27
|
+
"table.sorting.label": "Сортировка",
|
|
28
|
+
"table.sorting.order": "Порядок",
|
|
29
|
+
"table.spacing": "Интервал",
|
|
30
|
+
"table.spacing.toolip": "Настроить плотность столбцов"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "selectat",
|
|
5
|
+
"layout.actions.reset": "Resetare",
|
|
6
|
+
"table.pagination.of": "din {{count}}",
|
|
7
|
+
"table.pagination.full": "Afișare {{count}} (de) rezultate din {{total}}",
|
|
8
|
+
"table.pagination.page": "Pagina",
|
|
9
|
+
"table.results.plural": "{{count}} rezultate",
|
|
10
|
+
"table.sorting.toolip": "Reglați sortarea și direcția",
|
|
11
|
+
"table.columnFilters.columns": "Coloane",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "{{count}} coloană ascunsă",
|
|
13
|
+
"table.columnFilters.title": "Valori vizibile",
|
|
14
|
+
"table.columnFilters.tooltip": "Valori vizibile care pot fi personalizate",
|
|
15
|
+
"table.exportFileName": "date exportate",
|
|
16
|
+
"table.format": "Format",
|
|
17
|
+
"table.results.plural.capped": "{{count}}+ (de) rezultate",
|
|
18
|
+
"table.noResults": "Niciun rezultat",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}} rezultat",
|
|
21
|
+
"table.rowDensity.compact": "Compact",
|
|
22
|
+
"table.rowDensity.spacious": "Spațios",
|
|
23
|
+
"table.search.placeholder": "Căutare...",
|
|
24
|
+
"table.searchPlaceholder": "Căutare...",
|
|
25
|
+
"table.sorting.ascending": "Ascendent",
|
|
26
|
+
"table.sorting.descending": "Descendent",
|
|
27
|
+
"table.sorting.label": "Sortare",
|
|
28
|
+
"table.sorting.order": "Ordine",
|
|
29
|
+
"table.spacing": "Spațiere",
|
|
30
|
+
"table.spacing.toolip": "Reglați densitatea rândului"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "seleccionados",
|
|
5
|
+
"layout.actions.reset": "Restablecer",
|
|
6
|
+
"table.pagination.of": "de {{count}}",
|
|
7
|
+
"table.pagination.full": "Mostrando {{count}} de {{total}} resultados",
|
|
8
|
+
"table.pagination.page": "Página",
|
|
9
|
+
"table.results.plural": "{{count}} resultados",
|
|
10
|
+
"table.sorting.toolip": "Ajustar orden y dirección",
|
|
11
|
+
"table.columnFilters.columns": "Columnas",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "{{count}} columna oculta",
|
|
13
|
+
"table.columnFilters.title": "Valores visibles",
|
|
14
|
+
"table.columnFilters.tooltip": "Personalizar los valores visibles",
|
|
15
|
+
"table.exportFileName": "datos exportados",
|
|
16
|
+
"table.format": "Formato",
|
|
17
|
+
"table.results.plural.capped": "{{count}}+ resultados",
|
|
18
|
+
"table.noResults": "No hay resultados",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}} resultado",
|
|
21
|
+
"table.rowDensity.compact": "Compacto",
|
|
22
|
+
"table.rowDensity.spacious": "Amplio",
|
|
23
|
+
"table.search.placeholder": "Buscar...",
|
|
24
|
+
"table.searchPlaceholder": "Buscar...",
|
|
25
|
+
"table.sorting.ascending": "Ascendente",
|
|
26
|
+
"table.sorting.descending": "Descendente",
|
|
27
|
+
"table.sorting.label": "Clasificación",
|
|
28
|
+
"table.sorting.order": "Orden",
|
|
29
|
+
"table.spacing": "Espaciado",
|
|
30
|
+
"table.spacing.toolip": "Ajustar densidad de filas"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "valt",
|
|
5
|
+
"layout.actions.reset": "Rensa",
|
|
6
|
+
"table.pagination.of": "av {{count}}",
|
|
7
|
+
"table.pagination.full": "Visar {{count}} av {{total}} resultat",
|
|
8
|
+
"table.pagination.page": "Sida",
|
|
9
|
+
"table.results.plural": "{{count}} resultat",
|
|
10
|
+
"table.sorting.toolip": "Justera sortering och riktning",
|
|
11
|
+
"table.columnFilters.columns": "kolumner",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "{{count}} kolumn dold",
|
|
13
|
+
"table.columnFilters.title": "Synliga värden",
|
|
14
|
+
"table.columnFilters.tooltip": "Anpassa synliga värden",
|
|
15
|
+
"table.exportFileName": "exporterade data",
|
|
16
|
+
"table.format": "Format",
|
|
17
|
+
"table.results.plural.capped": "{{count}}+ resultat",
|
|
18
|
+
"table.noResults": "Inga resultat",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}} resultat",
|
|
21
|
+
"table.rowDensity.compact": "Kompakt",
|
|
22
|
+
"table.rowDensity.spacious": "Rymlig",
|
|
23
|
+
"table.search.placeholder": "Sök...",
|
|
24
|
+
"table.searchPlaceholder": "Sök...",
|
|
25
|
+
"table.sorting.ascending": "Stigande",
|
|
26
|
+
"table.sorting.descending": "Nedåtgående",
|
|
27
|
+
"table.sorting.label": "Sortering",
|
|
28
|
+
"table.sorting.order": "Ordning",
|
|
29
|
+
"table.spacing": "Mellanrum",
|
|
30
|
+
"table.spacing.toolip": "Justera radtäthet"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "選択済み",
|
|
5
|
+
"layout.actions.reset": "リセット",
|
|
6
|
+
"table.pagination.of": "全{{count}}ページ",
|
|
7
|
+
"table.pagination.full": "{{total}}件中{{count}}件の結果を表示中",
|
|
8
|
+
"table.pagination.page": "ページ",
|
|
9
|
+
"table.results.plural": "{{count}}件の結果",
|
|
10
|
+
"table.sorting.toolip": "並べ替えと方向の調整",
|
|
11
|
+
"table.columnFilters.columns": "列",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "非表示の列:{{count}}",
|
|
13
|
+
"table.columnFilters.title": "表示される値",
|
|
14
|
+
"table.columnFilters.tooltip": "表示される値のカスタマイズ",
|
|
15
|
+
"table.exportFileName": "エクスポートされたデータ",
|
|
16
|
+
"table.format": "フォーマット",
|
|
17
|
+
"table.results.plural.capped": "{{count}}件以上の結果",
|
|
18
|
+
"table.noResults": "結果がありません",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "{{count}}件の結果",
|
|
21
|
+
"table.rowDensity.compact": "コンパクト",
|
|
22
|
+
"table.rowDensity.spacious": "ワイド",
|
|
23
|
+
"table.search.placeholder": "検索",
|
|
24
|
+
"table.searchPlaceholder": "検索",
|
|
25
|
+
"table.sorting.ascending": "昇順",
|
|
26
|
+
"table.sorting.descending": "降順",
|
|
27
|
+
"table.sorting.label": "並べ替え",
|
|
28
|
+
"table.sorting.order": "順番",
|
|
29
|
+
"table.spacing": "表示スペース",
|
|
30
|
+
"table.spacing.toolip": "行間の調整"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var translation = {
|
|
4
|
+
"table.actionsheet.selected": "เลือกแล้ว",
|
|
5
|
+
"layout.actions.reset": "รีเซ็ต",
|
|
6
|
+
"table.pagination.of": "จาก {{count}}",
|
|
7
|
+
"table.pagination.full": "การแสดง {{count}} จาก {{total}} ผลลัพธ์",
|
|
8
|
+
"table.pagination.page": "หน้า",
|
|
9
|
+
"table.results.plural": "ผลลัพธ์ {{count}} รายการ",
|
|
10
|
+
"table.sorting.toolip": "ปรับการเรียงลำดับและทิศทาง",
|
|
11
|
+
"table.columnFilters.columns": "คอลัมน์",
|
|
12
|
+
"table.columnFilters.hiddenColumnCount": "คอลัมน์ซ่อนอยู่ {{count}} รายการ",
|
|
13
|
+
"table.columnFilters.title": "ค่าที่มองเห็นได้",
|
|
14
|
+
"table.columnFilters.tooltip": "ปรับแต่งค่าที่มองเห็นได้",
|
|
15
|
+
"table.exportFileName": "ข้อมูลส่งออก",
|
|
16
|
+
"table.format": "รูปแบบ",
|
|
17
|
+
"table.results.plural.capped": "{{count}}+ ผลลัพธ์",
|
|
18
|
+
"table.noResults": "ไม่มีผลลัพธ์",
|
|
19
|
+
"table.error": "Something went wrong while fetching the data",
|
|
20
|
+
"table.result": "ผลลัพธ์ {{count}} รายการ",
|
|
21
|
+
"table.rowDensity.compact": "กะทัดรัด",
|
|
22
|
+
"table.rowDensity.spacious": "กว้างขวาง",
|
|
23
|
+
"table.search.placeholder": "ค้นหา...",
|
|
24
|
+
"table.searchPlaceholder": "ค้นหา...",
|
|
25
|
+
"table.sorting.ascending": "จากน้อยไปมาก",
|
|
26
|
+
"table.sorting.descending": "จากมากไปน้อย",
|
|
27
|
+
"table.sorting.label": "การเรียงลำดับ",
|
|
28
|
+
"table.sorting.order": "ลำดับ",
|
|
29
|
+
"table.spacing": "ระยะห่าง",
|
|
30
|
+
"table.spacing.toolip": "ปรับความหนาแน่นของแถว"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
exports["default"] = translation;
|