@pimcore/studio-ui-bundle 1.0.0-canary.20251121-102646-131d77c → 1.0.0-canary.20251121-130851-38fe667

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.
@@ -101,7 +101,11 @@ export declare const setNodeLoading: import("@reduxjs/toolkit").ActionCreatorWit
101
101
  treeId: string;
102
102
  nodeId: string;
103
103
  isFetching: boolean;
104
- }, "trees/setNodeFetching">, refreshNodeChildren: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
104
+ }, "trees/setNodeFetching">, markNodeDeletingForTree: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
105
+ treeId: string;
106
+ nodeId: string;
107
+ isDeleting: boolean;
108
+ }, "trees/markNodeDeletingForTree">, refreshNodeChildren: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
105
109
  nodeId: string;
106
110
  elementType: string;
107
111
  }, "trees/refreshNodeChildren">, refreshTargetNode: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
@@ -0,0 +1,22 @@
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 { type JobInterface, type JobRunOptions } from '../job-interface';
11
+ export interface DownloadJobOptions {
12
+ title: string;
13
+ action: () => Promise<number>;
14
+ downloadUrl: string;
15
+ }
16
+ export declare class DownloadJob implements JobInterface {
17
+ private readonly options;
18
+ constructor(options: DownloadJobOptions);
19
+ run(options: JobRunOptions): Promise<void>;
20
+ private executeAction;
21
+ private createHandler;
22
+ }
@@ -36,6 +36,7 @@ export * from '../../core/components/drag-and-drop/drag-overlay';
36
36
  export * from '../../core/components/drag-and-drop/draggable';
37
37
  export * from '../../core/components/drag-and-drop/droppable';
38
38
  export * from '../../core/components/drag-and-drop/droppable-context-provider';
39
+ export * from '../../core/components/drag-and-drop/hooks/use-droppable';
39
40
  export * from '../../core/components/dropdown/dropdown';
40
41
  export * from '../../core/components/dropdown-button/dropdown-button';
41
42
  export * from '../../core/components/dynamic-filter/dynamic-filter';
@@ -24,6 +24,7 @@ export * from '../../core/utils/relative-time';
24
24
  export * from '../../core/utils/url-cache-buster';
25
25
  export * from '../../core/utils/uuid';
26
26
  export * from '../../core/utils/type-utils';
27
+ export * from '../../core/utils/local-storage';
27
28
  export * from '../../core/utils/hooks/use-click-outside';
28
29
  export * from '../../core/utils/hooks/use-css-container/use-css-container';
29
30
  export * from '../../core/utils/hooks/use-element-resize';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pimcore/studio-ui-bundle",
3
- "version": "1.0.0-canary.20251121-102646-131d77c",
3
+ "version": "1.0.0-canary.20251121-130851-38fe667",
4
4
  "keywords": [
5
5
  "pimcore",
6
6
  "pimcore-studio-ui"
@@ -1,23 +0,0 @@
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 { type AbstractJob } from '../abstact-job';
11
- export interface DownloadJob extends AbstractJob {
12
- type: 'download';
13
- config: {
14
- downloadUrl: string;
15
- };
16
- }
17
- export interface DownloadJobFactoryArgs {
18
- action: AbstractJob['action'];
19
- title: AbstractJob['title'];
20
- topics: AbstractJob['topics'];
21
- downloadUrl: string;
22
- }
23
- export declare const createJob: (job: DownloadJobFactoryArgs) => DownloadJob;
@@ -1,16 +0,0 @@
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
- import { type JobProps } from '../../notification/job/job';
12
- import { type DownloadJob } from './factory';
13
- export interface DownloadJobProps extends JobProps {
14
- config: DownloadJob['config'];
15
- }
16
- export declare const NotificationJobContainer: (props: DownloadJobProps) => React.JSX.Element;