@pimcore/studio-ui-bundle 1.0.0-canary.20251201-130129-be122a9 → 1.0.0-canary.20251201-155751-6d38d62

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.
@@ -16,6 +16,7 @@ export declare const useCloseContextMenu: () => (() => void) | undefined;
16
16
  export interface ContextMenuWrapperProps {
17
17
  children: React.ReactNode;
18
18
  renderMenu: () => ReactElement;
19
+ calculateAutoHeight?: boolean;
19
20
  }
20
- export declare const ContextMenuWrapper: ({ children, renderMenu }: ContextMenuWrapperProps) => React.JSX.Element;
21
+ export declare const ContextMenuWrapper: ({ children, renderMenu, calculateAutoHeight }: ContextMenuWrapperProps) => React.JSX.Element;
21
22
  export default ContextMenuWrapper;
@@ -0,0 +1,19 @@
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 from 'react';
11
+ export interface IDropdownHeightContext {
12
+ height: number;
13
+ }
14
+ export declare const DropdownHeightContext: React.Context<IDropdownHeightContext | undefined>;
15
+ export interface DropdownHeightProviderProps {
16
+ children: React.ReactNode;
17
+ }
18
+ export declare const DropdownHeightProvider: ({ children }: DropdownHeightProviderProps) => React.JSX.Element;
19
+ export declare const useDropdownHeightOptional: () => IDropdownHeightContext | undefined;
@@ -8,4 +8,9 @@
8
8
  * @license Pimcore Open Core License (POCL)
9
9
  */
10
10
  import { type AbstractDecoratorProps } from '../../../../../../modules/element/listing/decorators/abstract-decorator';
11
+ export interface SortingFilter {
12
+ key: string;
13
+ locale?: string;
14
+ direction: 'asc' | 'desc';
15
+ }
11
16
  export declare const withSortingDataQueryArg: (useBaseHook: AbstractDecoratorProps["useDataQueryHelper"]) => AbstractDecoratorProps["useDataQueryHelper"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pimcore/studio-ui-bundle",
3
- "version": "1.0.0-canary.20251201-130129-be122a9",
3
+ "version": "1.0.0-canary.20251201-155751-6d38d62",
4
4
  "keywords": [
5
5
  "pimcore",
6
6
  "pimcore-studio-ui"