@topconsultnpm/sdkui-react-beta 6.6.24 → 6.6.26

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.
Files changed (34) hide show
  1. package/lib/assets/TopMediaOrchestrator6.svg +92 -92
  2. package/lib/assets/icomoon.svg +96 -96
  3. package/lib/components/base/Styled.d.ts +1919 -22
  4. package/lib/components/base/TMAlert.d.ts +3 -2
  5. package/lib/components/base/TMButton.d.ts +7 -7
  6. package/lib/components/base/TMContextMenuOLD.d.ts +274 -3
  7. package/lib/components/base/TMDropDownMenu.d.ts +1 -0
  8. package/lib/components/base/TMEditorBase.d.ts +1 -0
  9. package/lib/components/base/TMLayout.d.ts +36 -36
  10. package/lib/components/base/TMListView.d.ts +1 -0
  11. package/lib/components/base/TMTab.d.ts +4 -4
  12. package/lib/components/base/TMVilViewer.d.ts +1 -1
  13. package/lib/components/choosers/TMMetadataChooser.js +4 -4
  14. package/lib/components/choosers/TMUserChooser.d.ts +5 -5
  15. package/lib/components/editors/TMEditorStyled.d.ts +17 -16
  16. package/lib/components/forms/TMChooserForm.d.ts +1 -1
  17. package/lib/components/forms/TMChooserForm.js +2 -4
  18. package/lib/components/forms/TMLoginForm.d.ts +4 -4
  19. package/lib/components/query/TMQueryEditor.d.ts +554 -12
  20. package/lib/components/query/TMQueryResult.d.ts +5 -5
  21. package/lib/components/query/TMQueryResultForm.d.ts +10 -10
  22. package/lib/components/sidebar/TMHeader.d.ts +2 -2
  23. package/lib/components/viewers/TMDataListItemViewer.d.ts +3 -3
  24. package/lib/components/viewers/TMMidViewer.d.ts +5 -5
  25. package/lib/components/viewers/TMTidViewer.d.ts +5 -5
  26. package/lib/helper/SDKUI_Localizator.d.ts +1 -0
  27. package/lib/helper/SDKUI_Localizator.js +10 -0
  28. package/lib/helper/TMIcons.d.ts +2 -1
  29. package/lib/helper/TMIcons.js +2 -1
  30. package/lib/helper/helpers.d.ts +1 -1
  31. package/lib/hooks/useForm.d.ts +1 -0
  32. package/lib/hooks/useOutsideClick.d.ts +1 -0
  33. package/lib/ts/types.d.ts +0 -2
  34. package/package.json +1 -1
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface AlertVariant {
2
3
  variant: string;
3
4
  color: string;
@@ -14,7 +15,7 @@ interface AlertModes {
14
15
  declare const ShowAlert: ({ mode, message, duration, title }: {
15
16
  mode: keyof AlertModes;
16
17
  message: string;
17
- duration?: number;
18
- title?: string;
18
+ duration?: number | undefined;
19
+ title?: string | undefined;
19
20
  }) => void;
20
21
  export default ShowAlert;
@@ -17,12 +17,12 @@ declare const TMButton: React.FunctionComponent<ITMButton>;
17
17
  export default TMButton;
18
18
  export type NewButtonType = 'success' | 'error' | 'tertiary' | 'primary';
19
19
  export declare const TMButtonNew: ({ color, caption, disable, onClick, type, icon, width, height }: {
20
- color?: string;
21
- width?: string;
22
- height?: string;
23
- disable?: boolean;
24
- caption?: string;
25
- onClick?: () => void;
26
- type?: NewButtonType;
20
+ color?: string | undefined;
21
+ width?: string | undefined;
22
+ height?: string | undefined;
23
+ disable?: boolean | undefined;
24
+ caption?: string | undefined;
25
+ onClick?: (() => void) | undefined;
26
+ type?: NewButtonType | undefined;
27
27
  icon?: any;
28
28
  }) => import("react/jsx-runtime").JSX.Element;
@@ -11,11 +11,282 @@ export declare const useContextMenu: () => {
11
11
  y: number;
12
12
  }>>;
13
13
  };
14
- export declare const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
14
+ export declare const Container: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
15
15
  $top: number;
16
16
  $left: number;
17
- }>> & string;
18
- export declare const MenuOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
17
+ }>>;
18
+ export declare const MenuOption: import("styled-components").IStyledComponent<"web", {
19
+ ref?: React.LegacyRef<HTMLDivElement> | undefined;
20
+ key?: React.Key | null | undefined;
21
+ defaultChecked?: boolean | undefined;
22
+ defaultValue?: string | number | readonly string[] | undefined;
23
+ suppressContentEditableWarning?: boolean | undefined;
24
+ suppressHydrationWarning?: boolean | undefined;
25
+ accessKey?: string | undefined;
26
+ autoFocus?: boolean | undefined;
27
+ className?: string | undefined;
28
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
29
+ contextMenu?: string | undefined;
30
+ dir?: string | undefined;
31
+ draggable?: (boolean | "true" | "false") | undefined;
32
+ hidden?: boolean | undefined;
33
+ id?: string | undefined;
34
+ lang?: string | undefined;
35
+ nonce?: string | undefined;
36
+ placeholder?: string | undefined;
37
+ slot?: string | undefined;
38
+ spellCheck?: (boolean | "true" | "false") | undefined;
39
+ style?: React.CSSProperties | undefined;
40
+ tabIndex?: number | undefined;
41
+ title?: string | undefined;
42
+ translate?: "no" | "yes" | undefined;
43
+ radioGroup?: string | undefined;
44
+ role?: React.AriaRole | undefined;
45
+ about?: string | undefined;
46
+ content?: string | undefined;
47
+ datatype?: string | undefined;
48
+ inlist?: any;
49
+ prefix?: string | undefined;
50
+ property?: string | undefined;
51
+ rel?: string | undefined;
52
+ resource?: string | undefined;
53
+ rev?: string | undefined;
54
+ typeof?: string | undefined;
55
+ vocab?: string | undefined;
56
+ autoCapitalize?: string | undefined;
57
+ autoCorrect?: string | undefined;
58
+ autoSave?: string | undefined;
59
+ color?: string | undefined;
60
+ itemProp?: string | undefined;
61
+ itemScope?: boolean | undefined;
62
+ itemType?: string | undefined;
63
+ itemID?: string | undefined;
64
+ itemRef?: string | undefined;
65
+ results?: number | undefined;
66
+ security?: string | undefined;
67
+ unselectable?: "off" | "on" | undefined;
68
+ inputMode?: "none" | "numeric" | "decimal" | "search" | "text" | "tel" | "url" | "email" | undefined;
69
+ is?: string | undefined;
70
+ "aria-activedescendant"?: string | undefined;
71
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
72
+ "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
73
+ "aria-braillelabel"?: string | undefined;
74
+ "aria-brailleroledescription"?: string | undefined;
75
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
76
+ "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
77
+ "aria-colcount"?: number | undefined;
78
+ "aria-colindex"?: number | undefined;
79
+ "aria-colindextext"?: string | undefined;
80
+ "aria-colspan"?: number | undefined;
81
+ "aria-controls"?: string | undefined;
82
+ "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
83
+ "aria-describedby"?: string | undefined;
84
+ "aria-description"?: string | undefined;
85
+ "aria-details"?: string | undefined;
86
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
87
+ "aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
88
+ "aria-errormessage"?: string | undefined;
89
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
90
+ "aria-flowto"?: string | undefined;
91
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
92
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
93
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
94
+ "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
95
+ "aria-keyshortcuts"?: string | undefined;
96
+ "aria-label"?: string | undefined;
97
+ "aria-labelledby"?: string | undefined;
98
+ "aria-level"?: number | undefined;
99
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
100
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
101
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
102
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
103
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
104
+ "aria-owns"?: string | undefined;
105
+ "aria-placeholder"?: string | undefined;
106
+ "aria-posinset"?: number | undefined;
107
+ "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
108
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
109
+ "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
110
+ "aria-required"?: (boolean | "true" | "false") | undefined;
111
+ "aria-roledescription"?: string | undefined;
112
+ "aria-rowcount"?: number | undefined;
113
+ "aria-rowindex"?: number | undefined;
114
+ "aria-rowindextext"?: string | undefined;
115
+ "aria-rowspan"?: number | undefined;
116
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
117
+ "aria-setsize"?: number | undefined;
118
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
119
+ "aria-valuemax"?: number | undefined;
120
+ "aria-valuemin"?: number | undefined;
121
+ "aria-valuenow"?: number | undefined;
122
+ "aria-valuetext"?: string | undefined;
123
+ children?: React.ReactNode;
124
+ dangerouslySetInnerHTML?: {
125
+ __html: string | TrustedHTML;
126
+ } | undefined;
127
+ onCopy?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
128
+ onCopyCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
129
+ onCut?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
130
+ onCutCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
131
+ onPaste?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
132
+ onPasteCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
133
+ onCompositionEnd?: React.CompositionEventHandler<HTMLDivElement> | undefined;
134
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
135
+ onCompositionStart?: React.CompositionEventHandler<HTMLDivElement> | undefined;
136
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
137
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLDivElement> | undefined;
138
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLDivElement> | undefined;
139
+ onFocus?: React.FocusEventHandler<HTMLDivElement> | undefined;
140
+ onFocusCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
141
+ onBlur?: React.FocusEventHandler<HTMLDivElement> | undefined;
142
+ onBlurCapture?: React.FocusEventHandler<HTMLDivElement> | undefined;
143
+ onChange?: React.FormEventHandler<HTMLDivElement> | undefined;
144
+ onChangeCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
145
+ onBeforeInput?: React.FormEventHandler<HTMLDivElement> | undefined;
146
+ onBeforeInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
147
+ onInput?: React.FormEventHandler<HTMLDivElement> | undefined;
148
+ onInputCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
149
+ onReset?: React.FormEventHandler<HTMLDivElement> | undefined;
150
+ onResetCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
151
+ onSubmit?: React.FormEventHandler<HTMLDivElement> | undefined;
152
+ onSubmitCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
153
+ onInvalid?: React.FormEventHandler<HTMLDivElement> | undefined;
154
+ onInvalidCapture?: React.FormEventHandler<HTMLDivElement> | undefined;
155
+ onLoad?: React.ReactEventHandler<HTMLDivElement> | undefined;
156
+ onLoadCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
157
+ onError?: React.ReactEventHandler<HTMLDivElement> | undefined;
158
+ onErrorCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
159
+ onKeyDown?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
160
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
161
+ onKeyPress?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
162
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
163
+ onKeyUp?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
164
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLDivElement> | undefined;
165
+ onAbort?: React.ReactEventHandler<HTMLDivElement> | undefined;
166
+ onAbortCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
167
+ onCanPlay?: React.ReactEventHandler<HTMLDivElement> | undefined;
168
+ onCanPlayCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
169
+ onCanPlayThrough?: React.ReactEventHandler<HTMLDivElement> | undefined;
170
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
171
+ onDurationChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
172
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
173
+ onEmptied?: React.ReactEventHandler<HTMLDivElement> | undefined;
174
+ onEmptiedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
175
+ onEncrypted?: React.ReactEventHandler<HTMLDivElement> | undefined;
176
+ onEncryptedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
177
+ onEnded?: React.ReactEventHandler<HTMLDivElement> | undefined;
178
+ onEndedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
179
+ onLoadedData?: React.ReactEventHandler<HTMLDivElement> | undefined;
180
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
181
+ onLoadedMetadata?: React.ReactEventHandler<HTMLDivElement> | undefined;
182
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
183
+ onLoadStart?: React.ReactEventHandler<HTMLDivElement> | undefined;
184
+ onLoadStartCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
185
+ onPause?: React.ReactEventHandler<HTMLDivElement> | undefined;
186
+ onPauseCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
187
+ onPlay?: React.ReactEventHandler<HTMLDivElement> | undefined;
188
+ onPlayCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
189
+ onPlaying?: React.ReactEventHandler<HTMLDivElement> | undefined;
190
+ onPlayingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
191
+ onProgress?: React.ReactEventHandler<HTMLDivElement> | undefined;
192
+ onProgressCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
193
+ onRateChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
194
+ onRateChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
195
+ onResize?: React.ReactEventHandler<HTMLDivElement> | undefined;
196
+ onResizeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
197
+ onSeeked?: React.ReactEventHandler<HTMLDivElement> | undefined;
198
+ onSeekedCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
199
+ onSeeking?: React.ReactEventHandler<HTMLDivElement> | undefined;
200
+ onSeekingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
201
+ onStalled?: React.ReactEventHandler<HTMLDivElement> | undefined;
202
+ onStalledCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
203
+ onSuspend?: React.ReactEventHandler<HTMLDivElement> | undefined;
204
+ onSuspendCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
205
+ onTimeUpdate?: React.ReactEventHandler<HTMLDivElement> | undefined;
206
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
207
+ onVolumeChange?: React.ReactEventHandler<HTMLDivElement> | undefined;
208
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
209
+ onWaiting?: React.ReactEventHandler<HTMLDivElement> | undefined;
210
+ onWaitingCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
211
+ onAuxClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
212
+ onAuxClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
213
+ onClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
214
+ onClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
215
+ onContextMenu?: React.MouseEventHandler<HTMLDivElement> | undefined;
216
+ onContextMenuCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
217
+ onDoubleClick?: React.MouseEventHandler<HTMLDivElement> | undefined;
218
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
219
+ onDrag?: React.DragEventHandler<HTMLDivElement> | undefined;
220
+ onDragCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
221
+ onDragEnd?: React.DragEventHandler<HTMLDivElement> | undefined;
222
+ onDragEndCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
223
+ onDragEnter?: React.DragEventHandler<HTMLDivElement> | undefined;
224
+ onDragEnterCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
225
+ onDragExit?: React.DragEventHandler<HTMLDivElement> | undefined;
226
+ onDragExitCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
227
+ onDragLeave?: React.DragEventHandler<HTMLDivElement> | undefined;
228
+ onDragLeaveCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
229
+ onDragOver?: React.DragEventHandler<HTMLDivElement> | undefined;
230
+ onDragOverCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
231
+ onDragStart?: React.DragEventHandler<HTMLDivElement> | undefined;
232
+ onDragStartCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
233
+ onDrop?: React.DragEventHandler<HTMLDivElement> | undefined;
234
+ onDropCapture?: React.DragEventHandler<HTMLDivElement> | undefined;
235
+ onMouseDown?: React.MouseEventHandler<HTMLDivElement> | undefined;
236
+ onMouseDownCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
237
+ onMouseEnter?: React.MouseEventHandler<HTMLDivElement> | undefined;
238
+ onMouseLeave?: React.MouseEventHandler<HTMLDivElement> | undefined;
239
+ onMouseMove?: React.MouseEventHandler<HTMLDivElement> | undefined;
240
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
241
+ onMouseOut?: React.MouseEventHandler<HTMLDivElement> | undefined;
242
+ onMouseOutCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
243
+ onMouseOver?: React.MouseEventHandler<HTMLDivElement> | undefined;
244
+ onMouseOverCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
245
+ onMouseUp?: React.MouseEventHandler<HTMLDivElement> | undefined;
246
+ onMouseUpCapture?: React.MouseEventHandler<HTMLDivElement> | undefined;
247
+ onSelect?: React.ReactEventHandler<HTMLDivElement> | undefined;
248
+ onSelectCapture?: React.ReactEventHandler<HTMLDivElement> | undefined;
249
+ onTouchCancel?: React.TouchEventHandler<HTMLDivElement> | undefined;
250
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
251
+ onTouchEnd?: React.TouchEventHandler<HTMLDivElement> | undefined;
252
+ onTouchEndCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
253
+ onTouchMove?: React.TouchEventHandler<HTMLDivElement> | undefined;
254
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
255
+ onTouchStart?: React.TouchEventHandler<HTMLDivElement> | undefined;
256
+ onTouchStartCapture?: React.TouchEventHandler<HTMLDivElement> | undefined;
257
+ onPointerDown?: React.PointerEventHandler<HTMLDivElement> | undefined;
258
+ onPointerDownCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
259
+ onPointerMove?: React.PointerEventHandler<HTMLDivElement> | undefined;
260
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
261
+ onPointerUp?: React.PointerEventHandler<HTMLDivElement> | undefined;
262
+ onPointerUpCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
263
+ onPointerCancel?: React.PointerEventHandler<HTMLDivElement> | undefined;
264
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
265
+ onPointerEnter?: React.PointerEventHandler<HTMLDivElement> | undefined;
266
+ onPointerEnterCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
267
+ onPointerLeave?: React.PointerEventHandler<HTMLDivElement> | undefined;
268
+ onPointerLeaveCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
269
+ onPointerOver?: React.PointerEventHandler<HTMLDivElement> | undefined;
270
+ onPointerOverCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
271
+ onPointerOut?: React.PointerEventHandler<HTMLDivElement> | undefined;
272
+ onPointerOutCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
273
+ onGotPointerCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
274
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
275
+ onLostPointerCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
276
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
277
+ onScroll?: React.UIEventHandler<HTMLDivElement> | undefined;
278
+ onScrollCapture?: React.UIEventHandler<HTMLDivElement> | undefined;
279
+ onWheel?: React.WheelEventHandler<HTMLDivElement> | undefined;
280
+ onWheelCapture?: React.WheelEventHandler<HTMLDivElement> | undefined;
281
+ onAnimationStart?: React.AnimationEventHandler<HTMLDivElement> | undefined;
282
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
283
+ onAnimationEnd?: React.AnimationEventHandler<HTMLDivElement> | undefined;
284
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
285
+ onAnimationIteration?: React.AnimationEventHandler<HTMLDivElement> | undefined;
286
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLDivElement> | undefined;
287
+ onTransitionEnd?: React.TransitionEventHandler<HTMLDivElement> | undefined;
288
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLDivElement> | undefined;
289
+ }>;
19
290
  interface ITMContextMenu {
20
291
  menuData: any[];
21
292
  onMenuItemClick?: (item: string) => void;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface ITMDropDownMenu {
2
3
  content: JSX.Element;
3
4
  color?: string;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ValidationItem } from "@topconsultnpm/sdk-ts-beta";
2
3
  export type Colors = 'error' | 'warning' | 'success' | 'info' | 'primary' | 'secondary' | 'tertiary' | 'standard';
3
4
  type IconModes = 'outside' | 'inside' | 'none';
@@ -1,51 +1,51 @@
1
1
  import React from 'react';
2
2
  declare const TMCard: ({ borderRadius, onClick, scrollX, scrollY, width, height, children, title, fontSize, fontWeight, showBorder, padding, scroll, backgroundColor, color }: {
3
- borderRadius?: boolean;
4
- onClick?: () => void;
5
- scrollX?: boolean;
6
- scrollY?: boolean;
7
- width?: string;
8
- height?: string;
9
- minWidth?: string;
10
- minHeight?: string;
3
+ borderRadius?: boolean | undefined;
4
+ onClick?: (() => void) | undefined;
5
+ scrollX?: boolean | undefined;
6
+ scrollY?: boolean | undefined;
7
+ width?: string | undefined;
8
+ height?: string | undefined;
9
+ minWidth?: string | undefined;
10
+ minHeight?: string | undefined;
11
11
  children?: React.ReactNode;
12
- title?: string;
13
- fontSize?: string;
14
- fontWeight?: string;
15
- showBorder?: boolean;
16
- padding?: boolean;
17
- scroll?: boolean;
18
- backgroundColor?: string;
19
- color?: string;
12
+ title?: string | undefined;
13
+ fontSize?: string | undefined;
14
+ fontWeight?: string | undefined;
15
+ showBorder?: boolean | undefined;
16
+ padding?: boolean | undefined;
17
+ scroll?: boolean | undefined;
18
+ backgroundColor?: string | undefined;
19
+ color?: string | undefined;
20
20
  }) => import("react/jsx-runtime").JSX.Element;
21
21
  declare const TMSplitterLayout: ({ animation, showSeparator, separatorColor, separatorSize, direction, children, start, min }: {
22
- animation?: boolean;
23
- separatorColor?: string;
24
- showSeparator?: boolean;
25
- separatorSize?: number;
26
- direction?: "horizontal" | "vertical";
22
+ animation?: boolean | undefined;
23
+ separatorColor?: string | undefined;
24
+ showSeparator?: boolean | undefined;
25
+ separatorSize?: number | undefined;
26
+ direction?: "horizontal" | "vertical" | undefined;
27
27
  children?: React.ReactNode;
28
- start?: string[];
29
- min?: string[];
28
+ start?: string[] | undefined;
29
+ min?: string[] | undefined;
30
30
  }) => import("react/jsx-runtime").JSX.Element;
31
31
  declare const TMLayoutItem: ({ onClick, children, width, minWidth, maxWidth, maxHeight, height, minHeight }: {
32
- onClick?: () => void;
32
+ onClick?: (() => void) | undefined;
33
33
  children: React.ReactNode;
34
- minWidth?: string;
35
- width?: string;
36
- maxWidth?: string;
37
- maxHeight?: string;
38
- fixed?: boolean;
39
- height?: string;
40
- minHeight?: string;
34
+ minWidth?: string | undefined;
35
+ width?: string | undefined;
36
+ maxWidth?: string | undefined;
37
+ maxHeight?: string | undefined;
38
+ fixed?: boolean | undefined;
39
+ height?: string | undefined;
40
+ minHeight?: string | undefined;
41
41
  }) => import("react/jsx-runtime").JSX.Element;
42
42
  declare const TMLayoutContainer: ({ gap, onClick, justifyContent, alignItems, children, direction }: {
43
- gap?: number;
44
- justifyContent?: string;
45
- alignItems?: string;
46
- onClick?: () => void;
43
+ gap?: number | undefined;
44
+ justifyContent?: string | undefined;
45
+ alignItems?: string | undefined;
46
+ onClick?: (() => void) | undefined;
47
47
  children: React.ReactNode;
48
- direction?: "vertical" | "horizontal";
48
+ direction?: "horizontal" | "vertical" | undefined;
49
49
  }) => import("react/jsx-runtime").JSX.Element;
50
50
  export { TMCard, TMLayoutItem, TMSplitterLayout };
51
51
  export default TMLayoutContainer;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface ListProps<T> {
2
3
  dataSource?: T[];
3
4
  selectedItem?: T;
@@ -4,7 +4,7 @@ export interface ITMTabProps {
4
4
  propsToBeValidated?: string[];
5
5
  }
6
6
  export declare const TMTab: ({ label, propsToBeValidated, children }: {
7
- label?: string;
7
+ label?: string | undefined;
8
8
  propsToBeValidated?: string[] | undefined;
9
9
  children?: any;
10
10
  }) => import("react/jsx-runtime").JSX.Element;
@@ -12,9 +12,9 @@ export declare const TMTabItemBadge: ({ vil }: {
12
12
  vil: ValidationItem[];
13
13
  }) => import("react/jsx-runtime").JSX.Element;
14
14
  declare const TMTabGroup: ({ children, fontSize, validationItems, onTabIndexChanged }: {
15
- onTabIndexChanged?: (e: number) => void;
15
+ onTabIndexChanged?: ((e: number) => void) | undefined;
16
16
  children: any;
17
- fontSize?: string;
18
- validationItems?: ValidationItem[];
17
+ fontSize?: string | undefined;
18
+ validationItems?: ValidationItem[] | undefined;
19
19
  }) => import("react/jsx-runtime").JSX.Element;
20
20
  export default TMTabGroup;
@@ -1,5 +1,5 @@
1
1
  import { ValidationItem } from '@topconsultnpm/sdk-ts-beta';
2
2
  declare const TMVilViewer: ({ vil }: {
3
- vil?: ValidationItem[];
3
+ vil?: ValidationItem[] | undefined;
4
4
  }) => import("react/jsx-runtime").JSX.Element | null;
5
5
  export default TMVilViewer;
@@ -12,16 +12,16 @@ import TMButton from '../base/TMButton';
12
12
  import TMSummary from '../editors/TMSummary';
13
13
  import TMChooserForm from '../forms/TMChooserForm';
14
14
  import TMSpinner from '../base/TMSpinner';
15
- const TMMetadataChooser = ({ tmSession, dataSource, buttons = [], inputDcmtTypesList, disabled, validationItems, getColorIndex, showCompleteMetadataName, qdShowOnlySelectItems, borderRadius = '4px', fontSize = FontSize.defaultFontSize, backgroundColor, openEditorOnSummaryClick, showBorder = true, showId = false, elementStyle, allowMultipleSelection, allowSysMetadata, value, values, isModifiedWhen, tids, label, width, height, onValueChanged, showClearButton, qd, placeHolder, onRefreshCache }) => {
15
+ const TMMetadataChooser = ({ tmSession, dataSource, buttons = [], inputDcmtTypesList, disabled, validationItems, getColorIndex, showCompleteMetadataName, qdShowOnlySelectItems, borderRadius = '4px', fontSize = FontSize.defaultFontSize, backgroundColor, openEditorOnSummaryClick, showBorder = true, showId = false, elementStyle, allowMultipleSelection, allowSysMetadata, value, values, isModifiedWhen, tids, label, width, height, onValueChanged, showClearButton, qd, placeHolder }) => {
16
16
  const [showChooser, setShowChooser] = useState(false);
17
17
  const renderTemplate = () => {
18
18
  return (_jsxs(StyledDivHorizontal, { style: { width: 'max-content', height: '100%' }, children: [values && _jsx(TMMidViewer, { tmSession: tmSession, tid_mid: values[0], showIcon: true, showId: showId, showCompleteName: showCompleteMetadataName }), values && values.length > 1 && _jsx("p", { style: { marginLeft: '10px' }, children: `(+${values.length - 1} ${values.length == 2 ? 'altro' : 'altri'})` }), (values == undefined || values.length == 0) && _jsx("p", { children: placeHolder })] }));
19
19
  };
20
20
  return (_jsxs(_Fragment, { children: [_jsx(TMSummary, { label: label, width: width, height: showBorder ? height : '24px', validationItems: validationItems, backgroundColor: backgroundColor, buttons: buttons, placeHolder: placeHolder, fontSize: fontSize, showBorder: showBorder, borderRadius: borderRadius, hasValue: values && values.length > 0, showClearButton: showClearButton, iconEditButton: _jsx(IconSearch, { fontSize: 16 }), openEditorOnSummaryClick: openEditorOnSummaryClick, onEditorClick: () => !disabled && setShowChooser(true), elementStyle: elementStyle, isModifiedWhen: isModifiedWhen, template: renderTemplate(), onClearClick: showClearButton ? () => { onValueChanged?.([]); } : undefined }), showChooser &&
21
- _jsx(TMMetadataChooserForm, { tmSession: tmSession, allowMultipleSelection: allowMultipleSelection, height: '500px', width: '600px', allowSysMetadata: allowSysMetadata, getColorIndex: getColorIndex, dataSource: dataSource, inputDcmtTypesList: inputDcmtTypesList, tids: tids, qd: qd, qdShowOnlySelectItems: qdShowOnlySelectItems, selectedIDs: values, onRefreshCache: onRefreshCache, onClose: () => setShowChooser(false), onChoose: (tid_mids) => { onValueChanged?.(tid_mids); } })] }));
21
+ _jsx(TMMetadataChooserForm, { tmSession: tmSession, allowMultipleSelection: allowMultipleSelection, height: '500px', width: '600px', allowSysMetadata: allowSysMetadata, getColorIndex: getColorIndex, dataSource: dataSource, inputDcmtTypesList: inputDcmtTypesList, tids: tids, qd: qd, qdShowOnlySelectItems: qdShowOnlySelectItems, selectedIDs: values, onClose: () => setShowChooser(false), onChoose: (tid_mids) => { onValueChanged?.(tid_mids); } })] }));
22
22
  };
23
23
  export default TMMetadataChooser;
24
- export const TMMetadataChooserForm = ({ tmSession, tids, inputDcmtTypesList, qd, qdShowOnlySelectItems, selectedIDs, dataSource, allowMultipleSelection, allowSysMetadata = true, width, height, getColorIndex, onClose, onChoose, onRefreshCache }) => {
24
+ export const TMMetadataChooserForm = ({ tmSession, tids, inputDcmtTypesList, qd, qdShowOnlySelectItems, selectedIDs, dataSource, allowMultipleSelection, allowSysMetadata = true, width, height, getColorIndex, onClose, onChoose }) => {
25
25
  const [showSysMetadata, setShowSysMetadata] = useState(false);
26
26
  const [hasSysMetadata, setHasSysMetadata] = useState(false);
27
27
  const [dcmtTypes, setDcmtTypes] = useState([]);
@@ -119,5 +119,5 @@ export const TMMetadataChooserForm = ({ tmSession, tids, inputDcmtTypesList, qd,
119
119
  };
120
120
  const convertID = (md) => { return { tid: md.customData1, mid: md.id, aliasTID: md.customData2 }; };
121
121
  const customFilter = (items) => { return showSysMetadata ? items : items.filter(o => o.isSystem != 1); };
122
- return (_jsx(TMChooserForm, { title: SDK_Localizator.Metadatas, allowMultipleSelection: allowMultipleSelection, allowSorting: false, allowGrouping: dcmtTypes.length > 1, width: width, height: height, selectedIDs: selectedIDs?.map((item) => item.mid), convertID: convertID, customFilter: customFilter, cellRenderIcon: cellRenderIcon, cellRenderNameAndDesc: (data) => { return _jsx("p", { style: { textAlign: 'left', color: data.data.isRequired == 1 ? 'red' : '' }, children: data.value }); }, dataSource: dataSource, getItems: getItems, customButtons: renderCustomButtons(), columns: renderDataGridColumns, summaryItems: renderSummaryItems, onRefreshCache: onRefreshCache, onClose: onClose, onChoose: (IDs) => onChoose?.(IDs) }));
122
+ return (_jsx(TMChooserForm, { title: SDK_Localizator.Metadatas, allowMultipleSelection: allowMultipleSelection, allowSorting: false, allowGrouping: dcmtTypes.length > 1, width: width, height: height, selectedIDs: selectedIDs?.map((item) => item.mid), convertID: convertID, customFilter: customFilter, cellRenderIcon: cellRenderIcon, cellRenderNameAndDesc: (data) => { return _jsx("p", { style: { textAlign: 'left', color: data.data.isRequired == 1 ? 'red' : '' }, children: data.value }); }, dataSource: dataSource, getItems: getItems, customButtons: renderCustomButtons(), columns: renderDataGridColumns, summaryItems: renderSummaryItems, onClose: onClose, onChoose: (IDs) => onChoose?.(IDs) }));
123
123
  };
@@ -11,14 +11,14 @@ declare const TMUserChooser: React.FunctionComponent<ITMUserChooserProps>;
11
11
  export default TMUserChooser;
12
12
  export declare const TMUserChooserForm: React.FunctionComponent<ITMChooserFormProps<UserDescriptor>>;
13
13
  export declare const TMUserIdViewer: ({ userId, showIcon, noneSelectionText }: {
14
- userId?: number;
15
- showIcon?: boolean;
16
- noneSelectionText?: string;
14
+ userId?: number | undefined;
15
+ showIcon?: boolean | undefined;
16
+ noneSelectionText?: string | undefined;
17
17
  }) => import("react/jsx-runtime").JSX.Element;
18
18
  export declare const TMUserIcon: ({ ud }: {
19
- ud?: UserDescriptor;
19
+ ud?: UserDescriptor | undefined;
20
20
  }) => import("react/jsx-runtime").JSX.Element | null;
21
21
  export declare const TMUserTooltip: ({ ud, children }: {
22
- ud?: UserDescriptor;
22
+ ud?: UserDescriptor | undefined;
23
23
  children: React.ReactNode;
24
24
  }) => import("react/jsx-runtime").JSX.Element;
@@ -1,9 +1,10 @@
1
+ /// <reference types="react" />
1
2
  import { ValidationItem } from '@topconsultnpm/sdk-ts-beta';
2
3
  export declare const editorColorManager: (validationItems: ValidationItem[]) => string;
3
- export declare const StyledEditorContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
4
+ export declare const StyledEditorContainer: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
4
5
  $width: string;
5
- }>> & string;
6
- export declare const StyledEditor: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {
6
+ }>>;
7
+ export declare const StyledEditor: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, {
7
8
  $vil: ValidationItem[];
8
9
  $width: string;
9
10
  $type: string;
@@ -11,29 +12,29 @@ export declare const StyledEditor: import("styled-components/dist/types").IStyle
11
12
  $maxValue: number;
12
13
  $fontSize: string;
13
14
  $disabled: boolean;
14
- $isMobile?: boolean;
15
- }>> & string;
16
- export declare const StyledEditorIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
15
+ $isMobile?: boolean | undefined;
16
+ }>>;
17
+ export declare const StyledEditorIcon: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
17
18
  $vil: ValidationItem[];
18
19
  $disabled: boolean;
19
20
  $isModified: boolean;
20
- }>> & string;
21
- export declare const StyledEditorLabel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
21
+ }>>;
22
+ export declare const StyledEditorLabel: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
22
23
  $isFocused: boolean;
23
- $labelPosition: "right" | "left" | "top";
24
+ $labelPosition: 'right' | 'left' | 'top';
24
25
  $disabled: boolean;
25
26
  $fontSize: string;
26
- }>> & string;
27
- export declare const StyledEditorButtonIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
27
+ }>>;
28
+ export declare const StyledEditorButtonIcon: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
28
29
  $index: number;
29
30
  $transform: string;
30
- }>> & string;
31
- export declare const StyledTextareaEditor: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, {
31
+ }>>;
32
+ export declare const StyledTextareaEditor: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, {
32
33
  $vil: ValidationItem[];
33
34
  $width: string;
34
35
  $isModified: boolean;
35
36
  $fontSize: string;
36
37
  $disabled: boolean;
37
- $isMobile?: boolean;
38
- $maxHeight?: string;
39
- }>> & string;
38
+ $isMobile?: boolean | undefined;
39
+ $maxHeight?: string | undefined;
40
+ }>>;
@@ -1,3 +1,3 @@
1
1
  import { ITMChooserFormProps } from '../../ts';
2
- declare const TMChooserForm: <T>({ children, title, allowMultipleSelection, hasShowOnlySelectedItems, allowGrouping, allowSorting, width, height, dataSource, selectedIDs, manageUseLocalizedName, hasShowId, keyName, customButtons, showDefaultColumns, columns, summaryItems, convertID, customFilter, getItems, cellRenderIcon, cellRenderNameAndDesc, onChoose, onClose, onShowIdChanged, onRefreshCache }: ITMChooserFormProps<T>) => import("react/jsx-runtime").JSX.Element;
2
+ declare const TMChooserForm: <T>({ children, title, allowMultipleSelection, hasShowOnlySelectedItems, allowGrouping, allowSorting, width, height, dataSource, selectedIDs, manageUseLocalizedName, hasShowId, keyName, customButtons, showDefaultColumns, columns, summaryItems, convertID, customFilter, getItems, cellRenderIcon, cellRenderNameAndDesc, onChoose, onClose, onShowIdChanged }: ITMChooserFormProps<T>) => import("react/jsx-runtime").JSX.Element;
3
3
  export default TMChooserForm;
@@ -7,7 +7,7 @@ import { IconApply, IconHide, IconRefresh, IconShow, SDKUI_Globals, SDKUI_Locali
7
7
  import TMButton from '../base/TMButton';
8
8
  import TMToggleButton from '../base/TMToggleButton';
9
9
  import TMModal from '../base/TMModal';
10
- const TMChooserForm = ({ children, title, allowMultipleSelection, hasShowOnlySelectedItems = false, allowGrouping, allowSorting = true, width, height, dataSource, selectedIDs, manageUseLocalizedName = true, hasShowId = true, keyName = "id", customButtons, showDefaultColumns = true, columns, summaryItems, convertID, customFilter, getItems, cellRenderIcon, cellRenderNameAndDesc, onChoose, onClose, onShowIdChanged, onRefreshCache }) => {
10
+ const TMChooserForm = ({ children, title, allowMultipleSelection, hasShowOnlySelectedItems = false, allowGrouping, allowSorting = true, width, height, dataSource, selectedIDs, manageUseLocalizedName = true, hasShowId = true, keyName = "id", customButtons, showDefaultColumns = true, columns, summaryItems, convertID, customFilter, getItems, cellRenderIcon, cellRenderNameAndDesc, onChoose, onClose, onShowIdChanged }) => {
11
11
  const [showId, setShowId] = useState(false);
12
12
  const [showOnlySelectedItems, setShowOnlySelectedItems] = useState(selectedIDs != undefined && selectedIDs.length > 0);
13
13
  const [selectedItems, setSelectedItems] = useState([]);
@@ -18,14 +18,12 @@ const TMChooserForm = ({ children, title, allowMultipleSelection, hasShowOnlySel
18
18
  const getSelectedIDs = () => { return gridInstance?.instance().getSelectedRowsData().map((item) => { return convertID ? convertID(item) : item[keyName]; }); };
19
19
  const renderTitle = () => { return title ? `${title} (${selectedItems.length} / ${customFilter ? customFilter(items).length : items.length})` : SDKUI_Localizator.Select; };
20
20
  const doGetItems = (refreshCache) => {
21
- if (refreshCache)
22
- onRefreshCache?.();
23
21
  if (dataSource) {
24
22
  setItems(dataSource);
25
23
  setSelectedItems(dataSource.filter((o) => selectedIDs?.includes(o[keyName])));
26
24
  return;
27
25
  }
28
- getItems?.(refreshCache).then((result) => {
26
+ getItems && getItems(refreshCache).then((result) => {
29
27
  setItems(result);
30
28
  if (!refreshCache) {
31
29
  setSelectedItems(result.filter((o) => selectedIDs?.includes(o[keyName])));
@@ -23,10 +23,10 @@ export declare const cultureIDsDataSource: {
23
23
  }[];
24
24
  declare const TMLoginForm: React.FunctionComponent<ITMLoginFormProps>;
25
25
  export declare const TMChangePassword: ({ tmSession, username, onClose, enable, hasBack }: {
26
- hasBack?: boolean;
27
- tmSession?: ITopMediaSession;
26
+ hasBack?: boolean | undefined;
27
+ tmSession?: ITopMediaSession | undefined;
28
28
  username: string;
29
- onClose?: () => void;
30
- enable?: boolean;
29
+ onClose?: (() => void) | undefined;
30
+ enable?: boolean | undefined;
31
31
  }) => import("react/jsx-runtime").JSX.Element;
32
32
  export default TMLoginForm;