@pimcore/studio-ui-bundle 1.0.0-canary.20260108-150416-785156e → 1.0.0-canary.20260109-100143-4ee1b14
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/build/types/src/core/components/content/content-config-provider.d.ts +21 -0
- package/dist/build/types/src/core/components/content/content.d.ts +3 -2
- package/dist/build/types/src/core/components/content/content.styles.d.ts +6 -1
- package/dist/build/types/src/core/components/dropdown/dropdown.stories.d.ts +3 -3
- package/dist/build/types/src/core/components/element-tree/element-tree-slice.d.ts +1 -1
- package/dist/build/types/src/core/components/many-to-one-relation/path-target.d.ts +2 -1
- package/dist/build/types/src/core/components/menu/menu.styles.d.ts +13 -0
- package/dist/build/types/src/core/components/toolstrip/tool-strip.styles.d.ts +1 -0
- package/dist/build/types/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/metadata-api-slice-enhanced.d.ts +2 -2
- package/dist/build/types/src/core/modules/asset/editor/shared-tab-manager/tabs/custom-metadata/metadata-api-slice.gen.d.ts +2 -2
- package/dist/build/types/src/core/modules/asset/listing/listing-container.d.ts +1 -1
- package/dist/build/types/src/core/modules/document/document-draft-slice.d.ts +10 -10
- package/dist/build/types/src/core/modules/document/document-editor-slice.d.ts +5 -5
- package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/components/calculated-value/components/label/label.d.ts +1 -1
- package/dist/build/types/src/core/modules/element/dynamic-types/definitions/objects/data-related/helpers/relations/components/label/label.d.ts +1 -1
- package/dist/build/types/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice-enhanced.d.ts +2 -2
- package/dist/build/types/src/core/modules/element/editor/shared-tab-manager/tabs/properties/properties-api-slice.gen.d.ts +2 -2
- package/dist/build/types/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice-enhanced.d.ts +1 -1
- package/dist/build/types/src/core/modules/element/editor/shared-tab-manager/tabs/schedule/schedule-api-slice.gen.d.ts +1 -1
- package/dist/build/types/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-api-slice-enhanced.d.ts +2 -2
- package/dist/build/types/src/core/modules/element/editor/shared-tab-manager/tabs/tags/tags-api-slice.gen.d.ts +3 -3
- package/dist/build/types/src/core/modules/execution-engine/execution-engine-api-slice-enhanced.d.ts +1 -1
- package/dist/build/types/src/core/modules/execution-engine/execution-engine-api-slice.gen.d.ts +1 -1
- package/dist/build/types/src/core/modules/notifications/notifications-slice-enhanced.d.ts +2 -2
- package/dist/build/types/src/core/modules/notifications/notifications-slice.gen.d.ts +2 -2
- package/dist/build/types/src/core/utils/sizing.d.ts +1 -0
- package/dist/build/types/src/core/utils/use-element-overflow.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This source file is available under the terms of the
|
|
3
|
+
* Pimcore Open Core License (POCL)
|
|
4
|
+
* Full copyright and license information is available in
|
|
5
|
+
* LICENSE.md which is distributed with this source code.
|
|
6
|
+
*
|
|
7
|
+
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
|
|
8
|
+
* @license Pimcore Open Core License (POCL)
|
|
9
|
+
*/
|
|
10
|
+
import React, { type ReactNode } from 'react';
|
|
11
|
+
import { type Sizings } from '../box/box';
|
|
12
|
+
interface ContentConfigProviderProps {
|
|
13
|
+
children: ReactNode;
|
|
14
|
+
gap?: Sizings;
|
|
15
|
+
}
|
|
16
|
+
interface ContentConfigContextValue {
|
|
17
|
+
gap?: Sizings;
|
|
18
|
+
}
|
|
19
|
+
export declare const ContentConfigProvider: ({ children, gap }: ContentConfigProviderProps) => React.JSX.Element;
|
|
20
|
+
export declare const useContentConfig: () => ContentConfigContextValue;
|
|
21
|
+
export {};
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import React, { type ReactNode } from 'react';
|
|
11
11
|
import { type INoContentProps } from '../no-content/no-content';
|
|
12
|
-
import { type BoxProps } from '../box/box';
|
|
12
|
+
import { type BoxProps, type Sizings } from '../box/box';
|
|
13
13
|
export type OverflowValue = 'visible' | 'hidden' | 'scroll' | 'auto';
|
|
14
14
|
export interface ContentProps extends Omit<BoxProps, 'children'> {
|
|
15
15
|
className?: string;
|
|
@@ -24,5 +24,6 @@ export interface ContentProps extends Omit<BoxProps, 'children'> {
|
|
|
24
24
|
x: OverflowValue;
|
|
25
25
|
y: OverflowValue;
|
|
26
26
|
};
|
|
27
|
+
gap?: Sizings;
|
|
27
28
|
}
|
|
28
|
-
export declare const Content: ({ children, padded, padding, overflow, margin, className, loading, none, centered, noneOptions, fullPage, ...props }: ContentProps) => React.JSX.Element;
|
|
29
|
+
export declare const Content: ({ children, padded, padding, overflow, margin, className, loading, none, centered, noneOptions, fullPage, gap: gapProp, ...props }: ContentProps) => React.JSX.Element;
|
|
@@ -7,7 +7,12 @@
|
|
|
7
7
|
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
|
|
8
8
|
* @license Pimcore Open Core License (POCL)
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
import { type Sizings } from '../../utils/sizing';
|
|
11
|
+
interface ContentStylesProps {
|
|
12
|
+
gap: Sizings;
|
|
13
|
+
}
|
|
14
|
+
export declare const useStyles: (props?: ContentStylesProps | undefined) => import("antd-style").ReturnStyles<{
|
|
11
15
|
content: import("antd-style").SerializedStyles;
|
|
12
16
|
contentFullPage: import("antd-style").SerializedStyles;
|
|
13
17
|
}>;
|
|
18
|
+
export {};
|
|
@@ -31,15 +31,15 @@ export declare const _default: {
|
|
|
31
31
|
onOpenChange?: ((open: boolean, info: {
|
|
32
32
|
source: "trigger" | "menu";
|
|
33
33
|
}) => void) | undefined;
|
|
34
|
+
forceRender?: boolean | undefined;
|
|
35
|
+
align?: import("@rc-component/trigger").AlignType | undefined;
|
|
34
36
|
arrow?: (boolean | import("antd/es/dropdown/dropdown").DropdownArrowOptions) | undefined;
|
|
35
37
|
trigger?: ("click" | "hover" | "contextMenu")[] | undefined;
|
|
36
38
|
destroyPopupOnHide?: boolean | undefined;
|
|
37
|
-
align?: import("@rc-component/trigger").AlignType | undefined;
|
|
38
39
|
transitionName?: string | undefined;
|
|
39
|
-
placement?: ("bottom" | "top" | "
|
|
40
|
+
placement?: ("bottom" | "top" | "bottomLeft" | "topLeft" | "topCenter" | "topRight" | "bottomCenter" | "bottomRight") | undefined;
|
|
40
41
|
overlayClassName?: string | undefined;
|
|
41
42
|
overlayStyle?: React.CSSProperties | undefined;
|
|
42
|
-
forceRender?: boolean | undefined;
|
|
43
43
|
mouseEnterDelay?: number | undefined;
|
|
44
44
|
mouseLeaveDelay?: number | undefined;
|
|
45
45
|
openClassName?: string | undefined;
|
|
@@ -171,6 +171,6 @@ export declare const selectNodeState: ((state: Record<string, any>, treeId: stri
|
|
|
171
171
|
dependencyRecomputations: () => number;
|
|
172
172
|
resetDependencyRecomputations: () => void;
|
|
173
173
|
} & {
|
|
174
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
175
174
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
175
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
176
176
|
};
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
import React from 'react';
|
|
11
11
|
import { type ManyToOneRelationValueType } from './many-to-one-relation';
|
|
12
12
|
export interface PathTargetProps {
|
|
13
|
-
value
|
|
13
|
+
value?: ManyToOneRelationValueType;
|
|
14
14
|
disabled?: boolean;
|
|
15
15
|
allowPathTextInput?: boolean;
|
|
16
16
|
onChange?: (value: ManyToOneRelationValueType) => void;
|
|
@@ -18,5 +18,6 @@ export interface PathTargetProps {
|
|
|
18
18
|
combinedFieldName?: string;
|
|
19
19
|
pathFormatterClass?: string;
|
|
20
20
|
onSearch?: () => void;
|
|
21
|
+
allowElementTagClose?: boolean;
|
|
21
22
|
}
|
|
22
23
|
export declare const PathTarget: React.ForwardRefExoticComponent<PathTargetProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This source file is available under the terms of the
|
|
3
|
+
* Pimcore Open Core License (POCL)
|
|
4
|
+
* Full copyright and license information is available in
|
|
5
|
+
* LICENSE.md which is distributed with this source code.
|
|
6
|
+
*
|
|
7
|
+
* @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com)
|
|
8
|
+
* @license Pimcore Open Core License (POCL)
|
|
9
|
+
*/
|
|
10
|
+
export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
11
|
+
menu: import("antd-style").SerializedStyles;
|
|
12
|
+
submenuPopup: import("antd-style").SerializedStyles;
|
|
13
|
+
}>;
|
|
@@ -11,4 +11,5 @@ export declare const useStyles: (props?: unknown) => import("antd-style").Return
|
|
|
11
11
|
'tool-strip': import("antd-style").SerializedStyles;
|
|
12
12
|
dragger: import("antd-style").SerializedStyles;
|
|
13
13
|
'draggable-area': import("antd-style").SerializedStyles;
|
|
14
|
+
title: import("antd-style").SerializedStyles;
|
|
14
15
|
}>;
|
|
@@ -96,7 +96,7 @@ export declare const useAssetCustomMetadataGetByIdQuery: <R extends Record<strin
|
|
|
96
96
|
isError: false;
|
|
97
97
|
}, "error">>)> & {
|
|
98
98
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
99
|
-
}>(arg: import("./metadata-api-slice.gen").AssetCustomMetadataGetByIdApiArg
|
|
99
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./metadata-api-slice.gen").AssetCustomMetadataGetByIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
100
100
|
skip?: boolean;
|
|
101
101
|
refetchOnMountOrArgChange?: boolean | number;
|
|
102
102
|
} & {
|
|
@@ -280,7 +280,7 @@ export declare const useAssetCustomMetadataGetByIdQuery: <R extends Record<strin
|
|
|
280
280
|
isError: false;
|
|
281
281
|
}, "error">>)> & {
|
|
282
282
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
283
|
-
}>(arg: import("./metadata-api-slice.gen").MetadataGetCollectionApiArg
|
|
283
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./metadata-api-slice.gen").MetadataGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
284
284
|
skip?: boolean;
|
|
285
285
|
refetchOnMountOrArgChange?: boolean | number;
|
|
286
286
|
} & {
|
|
@@ -161,7 +161,7 @@ export declare const useAssetCustomMetadataGetByIdQuery: <R extends Record<strin
|
|
|
161
161
|
isError: false;
|
|
162
162
|
}, "error">>)> & {
|
|
163
163
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
164
|
-
}>(arg:
|
|
164
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | AssetCustomMetadataGetByIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
165
165
|
skip?: boolean;
|
|
166
166
|
refetchOnMountOrArgChange?: boolean | number;
|
|
167
167
|
} & {
|
|
@@ -345,7 +345,7 @@ export declare const useAssetCustomMetadataGetByIdQuery: <R extends Record<strin
|
|
|
345
345
|
isError: false;
|
|
346
346
|
}, "error">>)> & {
|
|
347
347
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
348
|
-
}>(arg:
|
|
348
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | MetadataGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
349
349
|
skip?: boolean;
|
|
350
350
|
refetchOnMountOrArgChange?: boolean | number;
|
|
351
351
|
} & {
|
|
@@ -216,8 +216,8 @@ declare const defaultProps: {
|
|
|
216
216
|
};
|
|
217
217
|
useDataQueryHelper: () => import("../../element/listing/abstract/settings/settings-provider").UseQueryHelperReturn;
|
|
218
218
|
useElementId: () => import("../../element/listing/abstract/settings/settings-provider").UseElementIdReturn;
|
|
219
|
-
useColumnMapper: typeof import("../../element/listing/abstract/configuration-layer/provider/selected-columns/use-column-mapper").useColumnMapper;
|
|
220
219
|
ContextComponent: React.ElementType;
|
|
220
|
+
useColumnMapper: typeof import("../../element/listing/abstract/configuration-layer/provider/selected-columns/use-column-mapper").useColumnMapper;
|
|
221
221
|
ConfigurationComponent: React.ElementType;
|
|
222
222
|
DataComponent: React.ElementType;
|
|
223
223
|
useGridOptions: typeof import("../../element/listing/abstract/view-layer/components/grid/hooks/use-grid-options").useGridOptions;
|
|
@@ -119,24 +119,24 @@ export declare const selectDocumentById: (state: Record<string, any>, id: number
|
|
|
119
119
|
parentId: number;
|
|
120
120
|
icon: import("../../modules/document/document-api-slice-enhanced").ElementIcon;
|
|
121
121
|
key: string;
|
|
122
|
+
isLocked: boolean;
|
|
123
|
+
permissions: import("../../modules/document/document-api-slice-enhanced").DocumentPermissions;
|
|
124
|
+
index: number;
|
|
125
|
+
isSite: boolean;
|
|
122
126
|
fullPath: string;
|
|
127
|
+
published: boolean;
|
|
128
|
+
additionalAttributes?: {
|
|
129
|
+
[key: string]: string | number | boolean | object;
|
|
130
|
+
} | undefined;
|
|
131
|
+
locked: string | null;
|
|
132
|
+
hasChildren: boolean;
|
|
123
133
|
userOwner: number;
|
|
124
134
|
userModification: number | null;
|
|
125
|
-
locked: string | null;
|
|
126
|
-
isLocked: boolean;
|
|
127
135
|
creationDate: number | null;
|
|
128
136
|
modificationDate: number | null;
|
|
129
|
-
additionalAttributes?: {
|
|
130
|
-
[key: string]: string | number | boolean | object;
|
|
131
|
-
} | undefined;
|
|
132
137
|
customAttributes?: import("../../modules/document/document-api-slice-enhanced").CustomAttributes | undefined;
|
|
133
138
|
hasWorkflowAvailable: boolean;
|
|
134
|
-
hasChildren: boolean;
|
|
135
139
|
hasWorkflowWithPermissions: boolean;
|
|
136
|
-
permissions: import("../../modules/document/document-api-slice-enhanced").DocumentPermissions;
|
|
137
|
-
published: boolean;
|
|
138
|
-
index: number;
|
|
139
|
-
isSite: boolean;
|
|
140
140
|
navigationExclude: boolean;
|
|
141
141
|
editableData: object;
|
|
142
142
|
missingRequiredEditable: boolean;
|
|
@@ -41,8 +41,8 @@ export declare const selectDocumentAreablockGroupedTypes: ((state: any, document
|
|
|
41
41
|
dependencyRecomputations: () => number;
|
|
42
42
|
resetDependencyRecomputations: () => void;
|
|
43
43
|
} & {
|
|
44
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
45
44
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
45
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
46
46
|
};
|
|
47
47
|
export declare const selectDocumentHasAreablocks: ((state: any, documentId: number) => boolean) & {
|
|
48
48
|
clearCache: () => void;
|
|
@@ -74,16 +74,16 @@ export declare const selectDocumentHasAreablocks: ((state: any, documentId: numb
|
|
|
74
74
|
dependencyRecomputations: () => number;
|
|
75
75
|
resetDependencyRecomputations: () => void;
|
|
76
76
|
} & {
|
|
77
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
78
77
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
78
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
79
79
|
}];
|
|
80
80
|
recomputations: () => number;
|
|
81
81
|
resetRecomputations: () => void;
|
|
82
82
|
dependencyRecomputations: () => number;
|
|
83
83
|
resetDependencyRecomputations: () => void;
|
|
84
84
|
} & {
|
|
85
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
86
85
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
86
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
87
87
|
};
|
|
88
88
|
export declare const selectDocumentAreablockTypes: ((state: any, documentId: number) => AreablockTypeEntry[]) & {
|
|
89
89
|
clearCache: () => void;
|
|
@@ -115,16 +115,16 @@ export declare const selectDocumentAreablockTypes: ((state: any, documentId: num
|
|
|
115
115
|
dependencyRecomputations: () => number;
|
|
116
116
|
resetDependencyRecomputations: () => void;
|
|
117
117
|
} & {
|
|
118
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
119
118
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
119
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
120
120
|
}];
|
|
121
121
|
recomputations: () => number;
|
|
122
122
|
resetRecomputations: () => void;
|
|
123
123
|
dependencyRecomputations: () => number;
|
|
124
124
|
resetDependencyRecomputations: () => void;
|
|
125
125
|
} & {
|
|
126
|
-
memoize: typeof import("reselect").weakMapMemoize;
|
|
127
126
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
127
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
128
128
|
};
|
|
129
129
|
declare const _default: import("redux").Reducer<DocumentEditorState>;
|
|
130
130
|
export default _default;
|
|
@@ -103,7 +103,7 @@ export declare const usePropertyGetCollectionQuery: <R extends Record<string, an
|
|
|
103
103
|
isError: false;
|
|
104
104
|
}, "error">>)> & {
|
|
105
105
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
106
|
-
}>(arg: import("./properties-api-slice.gen").PropertyGetCollectionApiArg
|
|
106
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./properties-api-slice.gen").PropertyGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
107
107
|
skip?: boolean;
|
|
108
108
|
refetchOnMountOrArgChange?: boolean | number;
|
|
109
109
|
} & {
|
|
@@ -287,7 +287,7 @@ export declare const usePropertyGetCollectionQuery: <R extends Record<string, an
|
|
|
287
287
|
isError: false;
|
|
288
288
|
}, "error">>)> & {
|
|
289
289
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
290
|
-
}>(arg: import("./properties-api-slice.gen").PropertyGetCollectionForElementByTypeAndIdApiArg
|
|
290
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./properties-api-slice.gen").PropertyGetCollectionForElementByTypeAndIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
291
291
|
skip?: boolean;
|
|
292
292
|
refetchOnMountOrArgChange?: boolean | number;
|
|
293
293
|
} & {
|
|
@@ -206,7 +206,7 @@ export declare const usePropertyGetCollectionQuery: <R extends Record<string, an
|
|
|
206
206
|
isError: false;
|
|
207
207
|
}, "error">>)> & {
|
|
208
208
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
209
|
-
}>(arg:
|
|
209
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | PropertyGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
210
210
|
skip?: boolean;
|
|
211
211
|
refetchOnMountOrArgChange?: boolean | number;
|
|
212
212
|
} & {
|
|
@@ -870,7 +870,7 @@ export declare const usePropertyGetCollectionQuery: <R extends Record<string, an
|
|
|
870
870
|
isError: false;
|
|
871
871
|
}, "error">>)> & {
|
|
872
872
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
873
|
-
}>(arg:
|
|
873
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | PropertyGetCollectionForElementByTypeAndIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
874
874
|
skip?: boolean;
|
|
875
875
|
refetchOnMountOrArgChange?: boolean | number;
|
|
876
876
|
} & {
|
|
@@ -262,7 +262,7 @@ export declare const useScheduleDeleteByIdMutation: <R extends Record<string, an
|
|
|
262
262
|
isError: false;
|
|
263
263
|
}, "error">>)> & {
|
|
264
264
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
265
|
-
}>(arg: import("./schedule-api-slice.gen").ScheduleGetCollectionForElementByTypeAndIdApiArg
|
|
265
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./schedule-api-slice.gen").ScheduleGetCollectionForElementByTypeAndIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
266
266
|
skip?: boolean;
|
|
267
267
|
refetchOnMountOrArgChange?: boolean | number;
|
|
268
268
|
} & {
|
|
@@ -331,7 +331,7 @@ export declare const useScheduleDeleteByIdMutation: <R extends Record<string, an
|
|
|
331
331
|
isError: false;
|
|
332
332
|
}, "error">>)> & {
|
|
333
333
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
334
|
-
}>(arg:
|
|
334
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | ScheduleGetCollectionForElementByTypeAndIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
335
335
|
skip?: boolean;
|
|
336
336
|
refetchOnMountOrArgChange?: boolean | number;
|
|
337
337
|
} & {
|
|
@@ -587,7 +587,7 @@ export declare const useTagCreateMutation: <R extends Record<string, any> = ({
|
|
|
587
587
|
isError: false;
|
|
588
588
|
}, "error">>)> & {
|
|
589
589
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
590
|
-
}>(arg: import("./tags-api-slice.gen").TagGetCollectionApiArg
|
|
590
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./tags-api-slice.gen").TagGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
591
591
|
skip?: boolean;
|
|
592
592
|
refetchOnMountOrArgChange?: boolean | number;
|
|
593
593
|
} & {
|
|
@@ -1091,7 +1091,7 @@ export declare const useTagCreateMutation: <R extends Record<string, any> = ({
|
|
|
1091
1091
|
isError: false;
|
|
1092
1092
|
}, "error">>)> & {
|
|
1093
1093
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1094
|
-
}>(arg: import("./tags-api-slice.gen").TagGetCollectionForElementByTypeAndIdApiArg
|
|
1094
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./tags-api-slice.gen").TagGetCollectionForElementByTypeAndIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1095
1095
|
skip?: boolean;
|
|
1096
1096
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1097
1097
|
} & {
|
|
@@ -221,7 +221,7 @@ export declare const useTagGetCollectionQuery: <R extends Record<string, any> =
|
|
|
221
221
|
isError: false;
|
|
222
222
|
}, "error">>)> & {
|
|
223
223
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
224
|
-
}>(arg:
|
|
224
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | TagGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
225
225
|
skip?: boolean;
|
|
226
226
|
refetchOnMountOrArgChange?: boolean | number;
|
|
227
227
|
} & {
|
|
@@ -565,7 +565,7 @@ export declare const useTagGetCollectionQuery: <R extends Record<string, any> =
|
|
|
565
565
|
isError: false;
|
|
566
566
|
}, "error">>)> & {
|
|
567
567
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
568
|
-
}>(arg:
|
|
568
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | TagGetByIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
569
569
|
skip?: boolean;
|
|
570
570
|
refetchOnMountOrArgChange?: boolean | number;
|
|
571
571
|
} & {
|
|
@@ -1389,7 +1389,7 @@ export declare const useTagGetCollectionQuery: <R extends Record<string, any> =
|
|
|
1389
1389
|
isError: false;
|
|
1390
1390
|
}, "error">>)> & {
|
|
1391
1391
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
1392
|
-
}>(arg:
|
|
1392
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | TagGetCollectionForElementByTypeAndIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
1393
1393
|
skip?: boolean;
|
|
1394
1394
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1395
1395
|
} & {
|
package/dist/build/types/src/core/modules/execution-engine/execution-engine-api-slice-enhanced.d.ts
CHANGED
|
@@ -416,7 +416,7 @@ export declare const useExecutionEngineAbortJobRunByIdMutation: <R extends Recor
|
|
|
416
416
|
isError: false;
|
|
417
417
|
}, "error">>)> & {
|
|
418
418
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
419
|
-
}>(arg: import("./execution-engine-api-slice.gen").ExecutionEngineListJobsApiArg
|
|
419
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./execution-engine-api-slice.gen").ExecutionEngineListJobsApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
420
420
|
skip?: boolean;
|
|
421
421
|
refetchOnMountOrArgChange?: boolean | number;
|
|
422
422
|
} & {
|
package/dist/build/types/src/core/modules/execution-engine/execution-engine-api-slice.gen.d.ts
CHANGED
|
@@ -474,7 +474,7 @@ export declare const useExecutionEngineAbortJobRunByIdMutation: <R extends Recor
|
|
|
474
474
|
isError: false;
|
|
475
475
|
}, "error">>)> & {
|
|
476
476
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
477
|
-
}>(arg:
|
|
477
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | ExecutionEngineListJobsApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
478
478
|
skip?: boolean;
|
|
479
479
|
refetchOnMountOrArgChange?: boolean | number;
|
|
480
480
|
} & {
|
|
@@ -426,7 +426,7 @@ export declare const useNotificationDeleteByIdMutation: <R extends Record<string
|
|
|
426
426
|
isError: false;
|
|
427
427
|
}, "error">>)> & {
|
|
428
428
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
429
|
-
}>(arg: import("
|
|
429
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./notifications-slice.gen").NotificationGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
430
430
|
skip?: boolean;
|
|
431
431
|
refetchOnMountOrArgChange?: boolean | number;
|
|
432
432
|
} & {
|
|
@@ -610,7 +610,7 @@ export declare const useNotificationDeleteByIdMutation: <R extends Record<string
|
|
|
610
610
|
isError: false;
|
|
611
611
|
}, "error">>)> & {
|
|
612
612
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
613
|
-
}>(arg: import("
|
|
613
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | import("./notifications-slice.gen").NotificationGetByIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
614
614
|
skip?: boolean;
|
|
615
615
|
refetchOnMountOrArgChange?: boolean | number;
|
|
616
616
|
} & {
|
|
@@ -210,7 +210,7 @@ export declare const useNotificationGetCollectionQuery: <R extends Record<string
|
|
|
210
210
|
isError: false;
|
|
211
211
|
}, "error">>)> & {
|
|
212
212
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
213
|
-
}>(arg:
|
|
213
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | NotificationGetCollectionApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
214
214
|
skip?: boolean;
|
|
215
215
|
refetchOnMountOrArgChange?: boolean | number;
|
|
216
216
|
} & {
|
|
@@ -554,7 +554,7 @@ export declare const useNotificationGetCollectionQuery: <R extends Record<string
|
|
|
554
554
|
isError: false;
|
|
555
555
|
}, "error">>)> & {
|
|
556
556
|
status: import("@reduxjs/toolkit/query").QueryStatus;
|
|
557
|
-
}>(arg:
|
|
557
|
+
}>(arg: typeof import("@reduxjs/toolkit/query").skipToken | NotificationGetByIdApiArg, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
|
|
558
558
|
skip?: boolean;
|
|
559
559
|
refetchOnMountOrArgChange?: boolean | number;
|
|
560
560
|
} & {
|
|
@@ -21,6 +21,7 @@ export type SizeDefinition = Sizings | {
|
|
|
21
21
|
right?: Sizings;
|
|
22
22
|
};
|
|
23
23
|
export declare const SIZING_VALUES: readonly Sizings[];
|
|
24
|
+
export declare const getTokenValue: (token: GlobalToken | FullToken, size: Sizings, type: "margin" | "padding") => number;
|
|
24
25
|
export declare const getMarginStyles: (token: GlobalToken | FullToken, margin: SizeDefinition | undefined) => React.CSSProperties;
|
|
25
26
|
export declare const getPaddingStyles: (token: GlobalToken | FullToken, padding: SizeDefinition | undefined) => React.CSSProperties;
|
|
26
27
|
export declare const generateAllMarginSizingCSS: (prefixCls: string, modifier: string, token: GlobalToken | FullToken, locations: SizingLocation[]) => string;
|
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
* @license Pimcore Open Core License (POCL)
|
|
9
9
|
*/
|
|
10
10
|
import { type RefObject } from 'react';
|
|
11
|
-
declare const useElementOverflow: (ref: RefObject<
|
|
11
|
+
declare const useElementOverflow: (ref: RefObject<HTMLElement>) => boolean;
|
|
12
12
|
export default useElementOverflow;
|