@topconsultnpm/sdkui-react-beta 6.11.115 → 6.11.116

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.
@@ -43,7 +43,7 @@ export declare enum TMFileManagerPageSize {
43
43
  }
44
44
  export interface TMFileManagerProps {
45
45
  /** Session User ID */
46
- userID: number;
46
+ userID?: number;
47
47
  /** Determines the view mode of the file manager (Can be either 'thumbnails' or 'details') */
48
48
  viewMode?: 'thumbnails' | 'details';
49
49
  /** Represents the file system tree structure */
@@ -5,10 +5,10 @@ export interface TMFileManagerThumbnailItemsProps {
5
5
  selectedFiles: Array<FileItem> | undefined;
6
6
  showId: boolean;
7
7
  searchText: string;
8
- userID: number;
9
8
  onClick: (file: FileItem) => void;
10
9
  onDoubleClick?: (file: FileItem) => void;
11
10
  handleSelectedFiles?: (fileItems: Array<FileItem>) => void;
12
11
  handleFocusedFile?: (fileItem: FileItem | undefined) => void;
12
+ userID?: number;
13
13
  }
14
14
  export declare const TMFileManagerThumbnailItems: (props: TMFileManagerThumbnailItemsProps) => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topconsultnpm/sdkui-react-beta",
3
- "version": "6.11.115",
3
+ "version": "6.11.116",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -1,4 +0,0 @@
1
- import { Meta } from '@storybook/react';
2
- declare const _default: Meta;
3
- export default _default;
4
- export declare const HtmlEditor: any;
@@ -1,16 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import { sortArgTypes } from './TMStoriesUtils';
3
- import TMHtmlEditor from '../components/editors/TMHtmlEditor';
4
- export default {
5
- // The title will determine how the component appears in the sidebar of Storybook
6
- title: 'Components/TMHtmlEditor',
7
- // Specifies the component that is being documented in this story
8
- component: TMHtmlEditor,
9
- tags: ['autodocs'],
10
- // Tags for categorizing the component within Storybook
11
- argTypes: sortArgTypes({}),
12
- };
13
- /******* 1. Default Template and Default TMHtmlEditor *******/
14
- const Template = (args) => _jsx(TMHtmlEditor, { ...args });
15
- export const HtmlEditor = Template.bind({});
16
- HtmlEditor.args = {};