@pimcore/studio-ui-bundle 1.0.0-canary.20251124-162510-3a76ff6 → 1.0.0-canary.20251124-170038-efafd15

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.
@@ -13,6 +13,7 @@ interface TitleViewProps {
13
13
  title: string;
14
14
  icon: IconProps;
15
15
  className?: string;
16
+ onClose?: () => void;
16
17
  }
17
18
  declare const TitleView: (props: TitleViewProps) => React.JSX.Element;
18
19
  export { TitleView };
@@ -9,4 +9,5 @@
9
9
  */
10
10
  export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
11
11
  WidgetTitle: import("antd-style").SerializedStyles;
12
+ CloseButton: import("antd-style").SerializedStyles;
12
13
  }>;
@@ -9,3 +9,5 @@
9
9
  */
10
10
  export declare const copyToClipboard: (text: string) => Promise<boolean>;
11
11
  export declare const copyToClipboardWithFeedback: (text: string, onSuccess?: () => void, onError?: (error: string) => void) => Promise<void>;
12
+ export declare const pasteFromClipboard: () => Promise<string | null>;
13
+ export declare const pasteFromClipboardWithFeedback: (onSuccess?: () => void, onError?: (error: string) => void) => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pimcore/studio-ui-bundle",
3
- "version": "1.0.0-canary.20251124-162510-3a76ff6",
3
+ "version": "1.0.0-canary.20251124-170038-efafd15",
4
4
  "keywords": [
5
5
  "pimcore",
6
6
  "pimcore-studio-ui"