@archbase/template 3.0.12 → 3.0.14
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/index.js +1050 -1052
- package/dist/template/src/ArchbaseMasonryTemplate.d.ts +3 -5
- package/package.json +8 -8
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { default as React, CSSProperties, ReactNode } from 'react';
|
|
2
|
-
import { ArchbaseAction, ArchbaseActionButtonsOptions } from '../../components/src';
|
|
3
2
|
import { ComponentDefinition } from '../../core/src';
|
|
4
3
|
import { ArchbaseDataSource } from '../../data/src';
|
|
5
4
|
import { ArchbaseQueryFilterDelegator, FilterOptions } from '../../advanced/src';
|
|
@@ -19,8 +18,8 @@ export interface MasonryUserActionsOptions {
|
|
|
19
18
|
onEditExecute?: () => void;
|
|
20
19
|
onRemoveExecute?: () => void;
|
|
21
20
|
onViewExecute?: () => void;
|
|
22
|
-
customUserActions?:
|
|
23
|
-
|
|
21
|
+
customUserActions?: ReactNode;
|
|
22
|
+
customUserActionsPosition?: 'left' | 'right';
|
|
24
23
|
}
|
|
25
24
|
export interface MasonryUserRowActionsOptions<T> {
|
|
26
25
|
actions?: any;
|
|
@@ -69,8 +68,7 @@ export interface ArchbaseMasonryTemplateProps<T, ID> extends ArchbaseTemplateSec
|
|
|
69
68
|
/** Evento gerado quando o mouse sai de um item */
|
|
70
69
|
onItemLeave?: (event: React.MouseEvent, data: any) => void;
|
|
71
70
|
style?: CSSProperties;
|
|
72
|
-
actionsButtonsOptions?: ArchbaseActionButtonsOptions;
|
|
73
71
|
spaceOptions?: ArchbaseSpaceTemplateOptions;
|
|
74
72
|
debugOptions?: ArchbaseDebugOptions;
|
|
75
73
|
}
|
|
76
|
-
export declare function ArchbaseMasonryTemplate<T extends object, ID>({ title, dataSource, filterOptions, globalFilterFieldNames, filterFields, innerRef, debug, filterType, isError, error, clearError, width, height, withBorder, filterPersistenceDelegator, withPagination, radius, userActions, columnsCountBreakPoints, columnsCount, gutter, component, activeIndex, activeBackgroundColor, activeColor, onItemEnter, onItemLeave, style,
|
|
74
|
+
export declare function ArchbaseMasonryTemplate<T extends object, ID>({ title, dataSource, filterOptions, globalFilterFieldNames, filterFields, innerRef, debug, filterType, isError, error, clearError, width, height, withBorder, filterPersistenceDelegator, withPagination, radius, userActions, columnsCountBreakPoints, columnsCount, gutter, component, activeIndex, activeBackgroundColor, activeColor, onItemEnter, onItemLeave, style, spaceOptions, variant, id, debugOptions, resourceName, resourceDescription, requiredPermissions, fallbackComponent, securityOptions, }: ArchbaseMasonryTemplateProps<T, ID>): import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archbase/template",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.14",
|
|
4
4
|
"description": "Template components for Archbase React v3 - High-level templates and layouts",
|
|
5
5
|
"author": "Edson Martins <edsonmartins2005@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"react-dom": "^18.3.0 || ^19.2.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@archbase/advanced": "3.0.
|
|
34
|
-
"@archbase/components": "3.0.
|
|
35
|
-
"@archbase/core": "3.0.
|
|
36
|
-
"@archbase/data": "3.0.
|
|
37
|
-
"@archbase/layout": "3.0.
|
|
38
|
-
"@archbase/security": "3.0.
|
|
39
|
-
"@archbase/security-ui": "3.0.
|
|
33
|
+
"@archbase/advanced": "3.0.14",
|
|
34
|
+
"@archbase/components": "3.0.14",
|
|
35
|
+
"@archbase/core": "3.0.14",
|
|
36
|
+
"@archbase/data": "3.0.14",
|
|
37
|
+
"@archbase/layout": "3.0.14",
|
|
38
|
+
"@archbase/security": "3.0.14",
|
|
39
|
+
"@archbase/security-ui": "3.0.14",
|
|
40
40
|
"@rehooks/component-size": "^1.0.3",
|
|
41
41
|
"dayjs": "^1.11.13",
|
|
42
42
|
"i18next": "^25.3.1",
|