@cwellt_software/cwellt-reactjs-lib 1.0.4 → 1.0.5
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.
- package/dist/content/icons/new-cw-icons/NewCwIcons.html +27 -26
- package/dist/content/icons/new-cw-icons/NewCwIcons.json +1 -1
- package/dist/content/icons/new-cw-icons/css/new-cw-icons.css +2 -1
- package/dist/content/icons/new-cw-icons/fonts/NewCwIcons.woff +0 -0
- package/dist/index.cjs.js +391 -243
- package/dist/index.css +2 -2
- package/dist/index.d.ts +147 -82
- package/dist/index.es.js +391 -240
- package/dist/src/components/control/action/buttons/CwButtons.d.ts +0 -4
- package/dist/src/components/control/action/buttons/CwButtons.d.ts.map +1 -1
- package/dist/src/components/control/input/any/CwInput.d.ts.map +1 -1
- package/dist/src/components/control/input/number/CwInputNumber.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.d.ts +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
- package/dist/src/components/display/data/table/CwTable.d.ts +47 -62
- package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
- package/dist/src/components/display/graphics/loading/CwLoading.d.ts +39 -9
- package/dist/src/components/display/graphics/loading/CwLoading.d.ts.map +1 -1
- package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.d.ts +13 -1
- package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.d.ts.map +1 -1
- package/dist/src/components/display/text/tag/CwTag.d.ts +2 -2
- package/dist/src/components/display/text/tag/CwTag.d.ts.map +1 -1
- package/dist/src/components/layout/dialog/CwDialog.d.ts +15 -4
- package/dist/src/components/layout/dialog/CwDialog.d.ts.map +1 -1
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts +33 -0
- package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts.map +1 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts.map +1 -1
- package/dist/src/components/layout/tabs/CwTabs.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -126,8 +126,8 @@ interface CwTagProps {
|
|
|
126
126
|
closableTag?: boolean;
|
|
127
127
|
className?: string;
|
|
128
128
|
classNameTag_description?: string;
|
|
129
|
-
onClickTag?:
|
|
130
|
-
onClickClosableTag?:
|
|
129
|
+
onClickTag?: (clickEvent: React$1.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
|
|
130
|
+
onClickClosableTag?: (clickEvent: React$1.MouseEvent<HTMLSpanElement, MouseEvent>) => void;
|
|
131
131
|
idTag?: string;
|
|
132
132
|
ref?: any;
|
|
133
133
|
styleClosableButton?: React$1.CSSProperties;
|
|
@@ -174,19 +174,60 @@ interface CwIconProps extends Omit<HTMLProps<HTMLDivElement>, "className"> {
|
|
|
174
174
|
*/
|
|
175
175
|
declare function CwIcon(props: CwIconProps): react_jsx_runtime.JSX.Element;
|
|
176
176
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
177
|
+
type LoadingSize = 'small' | 'regular' | 'large';
|
|
178
|
+
type IconPosition = 'inside' | 'outside';
|
|
179
|
+
interface CwLoadingProps {
|
|
180
|
+
/** Boolean to show/hide loading */
|
|
181
|
+
isLoading?: boolean;
|
|
182
|
+
/** Text to display alongside the loading icon */
|
|
183
|
+
text?: string;
|
|
184
|
+
/** Controls the size of the loading indicator (small/regular/large) */
|
|
185
|
+
size?: LoadingSize;
|
|
186
|
+
/** Position of the icon */
|
|
187
|
+
iconPosition?: IconPosition;
|
|
188
|
+
/** Custom icon class (default: 'cwi-plane-solid') */
|
|
189
|
+
iconName?: string;
|
|
190
|
+
/** Custom animation (default: 'spin') */
|
|
191
|
+
animation?: string;
|
|
184
192
|
}
|
|
185
|
-
|
|
193
|
+
/**
|
|
194
|
+
* CwLoading
|
|
195
|
+
*
|
|
196
|
+
* A versatile loading component that shows a spinner with optional text
|
|
197
|
+
* and disables the wrapped content while in loading state.
|
|
198
|
+
*
|
|
199
|
+
* @example
|
|
200
|
+
* // Basic usage
|
|
201
|
+
* <CwLoading isLoading={isSubmitting}>
|
|
202
|
+
* <form>...</form>
|
|
203
|
+
* </CwLoading>
|
|
204
|
+
*
|
|
205
|
+
* // With custom text and size
|
|
206
|
+
* <CwLoading
|
|
207
|
+
* isLoading={isLoading}
|
|
208
|
+
* text="Please wait..."
|
|
209
|
+
* size="large"
|
|
210
|
+
* >
|
|
211
|
+
* <UserProfile />
|
|
212
|
+
* </CwLoading>
|
|
213
|
+
*/
|
|
214
|
+
declare function CwLoading({ isLoading, text, size, iconPosition, iconName, animation, children }: React__default.PropsWithChildren<CwLoadingProps>): react_jsx_runtime.JSX.Element;
|
|
186
215
|
|
|
187
216
|
interface CwLoadingSmallProps {
|
|
188
|
-
|
|
217
|
+
isLoading?: boolean;
|
|
189
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* @deprecated since may 2025. Use <CwLoading size="small"> instead.
|
|
221
|
+
*
|
|
222
|
+
* This component will be removed in a future release.
|
|
223
|
+
*
|
|
224
|
+
* @example
|
|
225
|
+
* // Instead of:
|
|
226
|
+
* <CwLoadingSmall />
|
|
227
|
+
*
|
|
228
|
+
* // Use:
|
|
229
|
+
* <CwLoading size="small" />
|
|
230
|
+
*/
|
|
190
231
|
declare function CwLoadingSmall(CwelltLoadingAppointements: React$1.PropsWithChildren<CwLoadingSmallProps>): react_jsx_runtime.JSX.Element;
|
|
191
232
|
|
|
192
233
|
type TooltipPosition = "top" | "bottom" | "left" | "right";
|
|
@@ -318,18 +359,29 @@ interface CwModalHoverProps extends Omit<HTMLProps<HTMLDialogElement>, "classNam
|
|
|
318
359
|
declare const CwModalHover: FC<CwModalHoverProps>;
|
|
319
360
|
|
|
320
361
|
interface CwDialogProps extends Omit<HTMLProps<PropsWithChildren<HTMLDialogElement>>, "className"> {
|
|
362
|
+
/** Custom footer elements to replace the default footer */
|
|
321
363
|
customFooter?: Array<ReactElement>;
|
|
364
|
+
/** Custom header elements to replace the default header */
|
|
322
365
|
customHeader?: Array<ReactElement>;
|
|
366
|
+
/** Text displayed in the dialog header */
|
|
323
367
|
headline?: string;
|
|
368
|
+
/** Width of the dialog. Accepts number (px) or string with unit (px, rem, vw, vh) */
|
|
369
|
+
width?: number | string;
|
|
370
|
+
/** Height of the dialog. Accepts number (px) or string with unit (px, rem, vh). If not provided, height will adjust to content */
|
|
371
|
+
height?: number | string;
|
|
372
|
+
/** Legacy way to set dialog dimensions. For backwards compatibility */
|
|
324
373
|
dialogSize?: {
|
|
325
|
-
width
|
|
326
|
-
height
|
|
374
|
+
width?: number | string;
|
|
375
|
+
height?: number | string;
|
|
327
376
|
};
|
|
328
|
-
|
|
377
|
+
/** Whether to show a semi-transparent background behind the dialog. Default is true */
|
|
329
378
|
scrim?: boolean;
|
|
379
|
+
/** Function called when the save button is clicked */
|
|
330
380
|
onSave?: () => void;
|
|
381
|
+
/** Function called when the close button is clicked */
|
|
331
382
|
onClose?: () => void;
|
|
332
|
-
|
|
383
|
+
/** If true, the footer will not be displayed */
|
|
384
|
+
hideFooter?: boolean;
|
|
333
385
|
}
|
|
334
386
|
declare const CwDialog: FC<CwDialogProps>;
|
|
335
387
|
|
|
@@ -362,115 +414,100 @@ interface Column {
|
|
|
362
414
|
key: string;
|
|
363
415
|
render?: (item: DataItem) => React__default.ReactNode;
|
|
364
416
|
className?: string;
|
|
417
|
+
sortable?: boolean;
|
|
418
|
+
width?: number | string;
|
|
365
419
|
}
|
|
366
420
|
interface DataItem {
|
|
367
|
-
key: string;
|
|
368
421
|
[key: string]: any;
|
|
369
422
|
}
|
|
370
423
|
interface CwTableProps {
|
|
371
424
|
columns: Column[];
|
|
372
425
|
data: DataItem[];
|
|
373
426
|
pagination?: boolean;
|
|
374
|
-
|
|
427
|
+
pageSizeOptions?: number[];
|
|
375
428
|
expandedRowRender?: (record: DataItem) => React__default.ReactNode;
|
|
376
|
-
onExpand?:
|
|
429
|
+
onExpand?: (record: DataItem) => void;
|
|
377
430
|
classNameContainer?: string;
|
|
378
431
|
className?: string;
|
|
379
|
-
classNameHeader?: string;
|
|
380
432
|
classNameRow?: string;
|
|
381
433
|
style?: React__default.CSSProperties;
|
|
382
434
|
id?: string;
|
|
383
435
|
textNoData?: string;
|
|
436
|
+
rowKey?: string;
|
|
437
|
+
loading?: boolean;
|
|
438
|
+
scrollHeight?: number | string;
|
|
439
|
+
stickyHeader?: boolean;
|
|
384
440
|
}
|
|
385
441
|
/**
|
|
386
|
-
* A
|
|
387
|
-
*
|
|
442
|
+
* A reusable and customizable table component.
|
|
443
|
+
*
|
|
444
|
+
* @param props - Component props to configure columns, data, styles, pagination, expanded rows, and more.
|
|
445
|
+
*
|
|
388
446
|
* @example
|
|
389
447
|
* const columns = [
|
|
390
448
|
* {
|
|
391
449
|
* title: 'Name',
|
|
392
450
|
* dataIndex: 'name',
|
|
393
451
|
* key: 'name',
|
|
452
|
+
* sortable: true, // Column is sortable
|
|
453
|
+
* width: 100 // You can define the width of the column
|
|
394
454
|
* },
|
|
395
455
|
* {
|
|
396
456
|
* title: 'Age',
|
|
397
457
|
* dataIndex: 'age',
|
|
398
458
|
* key: 'age',
|
|
399
|
-
*
|
|
459
|
+
* sortable: true,
|
|
460
|
+
* render: (item) => <span>{item.age} years</span> // Custom rendering
|
|
400
461
|
* },
|
|
401
462
|
* {
|
|
402
463
|
* title: 'Address',
|
|
403
464
|
* dataIndex: 'address',
|
|
404
465
|
* key: 'address',
|
|
405
|
-
* render: (
|
|
406
|
-
* <a href={`https://maps.google.com/?q=${encodeURIComponent(address)}`} target="_blank">
|
|
407
|
-
* {address}
|
|
466
|
+
* render: (item) => (
|
|
467
|
+
* <a href={`https://maps.google.com/?q=${encodeURIComponent(item.address)}`} target="_blank" rel="noreferrer">
|
|
468
|
+
* {item.address}
|
|
408
469
|
* </a>
|
|
409
|
-
* )
|
|
410
|
-
* }
|
|
470
|
+
* ) // Link rendering
|
|
471
|
+
* }
|
|
411
472
|
* ];
|
|
412
473
|
*
|
|
413
474
|
* const data = [
|
|
414
|
-
* {
|
|
415
|
-
*
|
|
416
|
-
*
|
|
417
|
-
*
|
|
418
|
-
*
|
|
419
|
-
* }
|
|
420
|
-
* {
|
|
421
|
-
* key: '2',
|
|
422
|
-
* name: 'John',
|
|
423
|
-
* age: 42,
|
|
424
|
-
* address: '10 Downing Street',
|
|
425
|
-
* },
|
|
426
|
-
* {
|
|
427
|
-
* key: '3',
|
|
428
|
-
* name: 'Andres',
|
|
429
|
-
* age: 33,
|
|
430
|
-
* address: '10 Downing Street',
|
|
431
|
-
* },
|
|
432
|
-
* {
|
|
433
|
-
* key: '4',
|
|
434
|
-
* name: 'Gabriel',
|
|
435
|
-
* age: 22,
|
|
436
|
-
* address: '10 Downing Street',
|
|
437
|
-
* },
|
|
438
|
-
* {
|
|
439
|
-
* key: '5',
|
|
440
|
-
* name: 'Sergio',
|
|
441
|
-
* age: 47,
|
|
442
|
-
* address: '10 Downing Street',
|
|
443
|
-
* },
|
|
444
|
-
* {
|
|
445
|
-
* key: '6',
|
|
446
|
-
* name: 'Zacarias',
|
|
447
|
-
* age: 61,
|
|
448
|
-
* address: '10 Downing Street',
|
|
449
|
-
* },
|
|
475
|
+
* { key: '1', name: 'Mike', age: 32, address: '10 Downing Street' },
|
|
476
|
+
* { key: '2', name: 'John', age: 42, address: '11 Downing Street' },
|
|
477
|
+
* { key: '3', name: 'Andres', age: 33, address: '12 Downing Street' },
|
|
478
|
+
* { key: '4', name: 'Gabriel', age: 22, address: '13 Downing Street' },
|
|
479
|
+
* { key: '5', name: 'Sergio', age: 47, address: '14 Downing Street' },
|
|
480
|
+
* { key: '6', name: 'Zacarias', age: 61, address: '15 Downing Street' }
|
|
450
481
|
* ];
|
|
451
482
|
*
|
|
452
|
-
* const generateExpandedContent = (record) =>
|
|
453
|
-
*
|
|
454
|
-
*
|
|
455
|
-
*
|
|
456
|
-
*
|
|
457
|
-
* </div>
|
|
458
|
-
* );
|
|
459
|
-
* };
|
|
460
|
-
*
|
|
461
|
-
* ------------------------- render ---------------------------
|
|
483
|
+
* const generateExpandedContent = (record) => (
|
|
484
|
+
* <div>
|
|
485
|
+
* Custom expanded content for {record.name}
|
|
486
|
+
* </div>
|
|
487
|
+
* );
|
|
462
488
|
*
|
|
463
489
|
* <CwTable
|
|
464
490
|
* columns={columns}
|
|
465
|
-
* data={data}
|
|
466
|
-
* itemsPerPage={3}
|
|
491
|
+
* data={data}
|
|
467
492
|
* pagination={true}
|
|
493
|
+
* pageSizeOptions={[3, 5, 10]} // Optional, defaults to [5, 10, 20, 50]
|
|
468
494
|
* expandedRowRender={generateExpandedContent}
|
|
469
|
-
* onExpand={(
|
|
495
|
+
* onExpand={(item) => console.log('Expanded:', item)}
|
|
496
|
+
* rowKey="key" // Optional, defaults to 'key'
|
|
497
|
+
* textNoData="No data available" // Optional message when no data
|
|
498
|
+
* loading={false} // Optional, shows loading indicator
|
|
499
|
+
* scrollHeight={300} // Optional scroll height, defaults to 300
|
|
500
|
+
* stickyHeader={true} // Optional, makes header sticky on scroll
|
|
501
|
+
* classNameContainer="my-table-wrapper" // Optional wrapper class
|
|
502
|
+
* className="my-table" // Optional table class
|
|
503
|
+
* classNameRow="my-table-row" // Optional class for each row
|
|
504
|
+
* id="custom-table-id" // Optional ID for the container
|
|
505
|
+
* style={{ border: '1px solid #ccc' }} // Optional inline styles
|
|
470
506
|
* />
|
|
507
|
+
*
|
|
471
508
|
* @returns React component
|
|
472
509
|
*/
|
|
473
|
-
declare function CwTable({ columns, data, pagination,
|
|
510
|
+
declare function CwTable({ columns, data, pagination, pageSizeOptions, expandedRowRender, onExpand, className, classNameRow, style, classNameContainer, id, textNoData, rowKey, loading, scrollHeight, stickyHeader, }: Readonly<CwTableProps>): react_jsx_runtime.JSX.Element;
|
|
474
511
|
|
|
475
512
|
interface Tab {
|
|
476
513
|
key: string;
|
|
@@ -530,6 +567,37 @@ interface CwExpandableProps extends Omit<HTMLProps<PropsWithChildren<HTMLDetails
|
|
|
530
567
|
*/
|
|
531
568
|
declare const CwExpandable: FC<CwExpandableProps>;
|
|
532
569
|
|
|
570
|
+
/**
|
|
571
|
+
* Props for the CwKeyValueList component
|
|
572
|
+
*/
|
|
573
|
+
interface CwKeyValueListProps {
|
|
574
|
+
items: Array<{
|
|
575
|
+
key: string;
|
|
576
|
+
label: string;
|
|
577
|
+
value: any;
|
|
578
|
+
/** Optional suffix to append to the value (e.g. units, currency symbols) */
|
|
579
|
+
suffix?: string;
|
|
580
|
+
}>;
|
|
581
|
+
className?: string;
|
|
582
|
+
emptyValue?: React.ReactNode;
|
|
583
|
+
/** Direction of flex layout: 'row' or 'column' @default "row" **/
|
|
584
|
+
direction?: 'row' | 'column';
|
|
585
|
+
}
|
|
586
|
+
/**
|
|
587
|
+
* A component for displaying key-value pairs in a definition list format
|
|
588
|
+
* Used for read-only display of structured data
|
|
589
|
+
*
|
|
590
|
+
* @example
|
|
591
|
+
* <CwKeyValueList
|
|
592
|
+
* items={[
|
|
593
|
+
* { key: "length", label: "Length", value: "10", suffix: "m" },
|
|
594
|
+
* { key: "width", label: "Width", value: null, suffix: "m" }
|
|
595
|
+
* ]}
|
|
596
|
+
* emptyValue="N/A"
|
|
597
|
+
* />
|
|
598
|
+
*/
|
|
599
|
+
declare const CwKeyValueList: React.FC<CwKeyValueListProps>;
|
|
600
|
+
|
|
533
601
|
interface CwTableGroupedData_Row {
|
|
534
602
|
cells: {
|
|
535
603
|
content: JSX.Element;
|
|
@@ -1561,15 +1629,11 @@ declare function CwBtnDownLoadAllInfo({ cw_btnOnclick, cw_btn_disabled }: cw_btn
|
|
|
1561
1629
|
declare function CwBtnPropertyFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1562
1630
|
declare function CwBtnAddFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1563
1631
|
declare function CwBtnEditFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1564
|
-
declare function CwBtnSelectedFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1565
1632
|
declare function CwBtnUploadFiles({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1566
1633
|
declare function CwBtnGoBackFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1567
1634
|
declare function CwBtnBookMark({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1568
|
-
declare function CwBtnArchive({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1569
|
-
declare function CwBtnArchiveRestore({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1570
1635
|
declare function CwBtnPublish({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1571
1636
|
declare function CwBtnApprove({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1572
|
-
declare function CwBtnBookMarkLinkPage({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1573
1637
|
declare function CwBtnBulkDuty({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1574
1638
|
declare function CwBtnDropDownMenu({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1575
1639
|
declare function CwBtnAlert({ cw_btnOnclick, cw_btn_disabled, cw_name }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1951,6 +2015,7 @@ interface SchedulerEventDm {
|
|
|
1951
2015
|
width: number;
|
|
1952
2016
|
order?: number;
|
|
1953
2017
|
icons?: ReactElement;
|
|
2018
|
+
rectangleColors?: string[];
|
|
1954
2019
|
tooltip?: ReactNode;
|
|
1955
2020
|
contextMenuItems?: ItemType[];
|
|
1956
2021
|
primaryTimeMarkerColor?: string;
|
|
@@ -2191,4 +2256,4 @@ declare class OnClickContextMenu implements UiEvent {
|
|
|
2191
2256
|
constructor(id: string, clickedMenu: string);
|
|
2192
2257
|
}
|
|
2193
2258
|
|
|
2194
|
-
export { type BackgroundEventDm, CblDragAndDrop$1 as CblDragAndDrop, type Column, CwAccordionContainer, CwAlign, type CwAlignProps, CwBtnAdd, CwBtnAddFolder, CwBtnAirport, CwBtnAlert, CwBtnApprove,
|
|
2259
|
+
export { type BackgroundEventDm, CblDragAndDrop$1 as CblDragAndDrop, type Column, CwAccordionContainer, CwAlign, type CwAlignProps, CwBtnAdd, CwBtnAddFolder, CwBtnAirport, CwBtnAlert, CwBtnApprove, CwBtnBookMark, CwBtnBulkDuty, CwBtnCancel, CwBtnCrewPlanning, CwBtnDelay, CwBtnDelete, CwBtnDownLoadAllInfo, CwBtnDownload, CwBtnDropDownMenu, CwBtnEdit, CwBtnEditFolder, CwBtnFiles, CwBtnGeneratePairing, CwBtnGoBackFolder, CwBtnHide, CwBtnImportRequests, CwBtnInfo, CwBtnMVT, CwBtnNavFirstItemView, CwBtnNavLastItemView, CwBtnNavNextDay, CwBtnNavPreviewItem, CwBtnPairing, CwBtnPrint, CwBtnPropertyFolder, CwBtnPublish, CwBtnRefresh, CwBtnReleasePeriod, CwBtnSave, CwBtnSearch, CwBtnSelect, CwBtnShare, CwBtnStatistic, CwBtnUploadFiles, CwBtnVacations, CwBtnView, CwBtnWarning, CwButton, CwButtonDef, CwCheckbox, CwContextMenu, CwContextualMenu, CwDialog, CwDialogManager, type CwDialogProps, CwDigit, CwDisplayMessage, CwDropdown, CwDropdownContainer, CwDropdownFilter, CwDropdownNavigation, CwExpandable, type CwExpandableProps, CwFileUpload, type CwFilterTabProps, CwFindAirport, CwFloatingButton, CwGenericTooltip, CwHeadFilter, CwHeadingMain, CwHeadingSecond, CwIcon, CwImageArea, type CwImageAreaMethods, type CwImageAreaProps, CwInput, CwInputDate, CwInputDatePicker, type CwInputDatePickerProps, type CwInputDateProps, CwInputDateText, type CwInputDateTextProps, CwInputDatetime, type CwInputDatetimeProps, CwInputImage, type CwInputImageProps, CwInputNumber, type CwInputNumberProps, CwInputPhone, type CwInputPhoneProps, CwInputText, type CwInputTextProps, type CwInputTimeProps, CwKeyValueList, type CwKeyValueListProps, CwLabel, type CwLabelProps, CwLoading, CwLoadingSmall, CwMessage, CwMessageManager, type CwMessageProps, CwMessageType, CwModal, CwModalConfirm, CwModalHover, type CwModalHoverProps, CwModalIframe, CwModalReportFunctional, CwMultiFilter, type CwMultiFilterProps, CwMultiFilterTag, type CwMultiFilterTagProps, CwMultiselect, CwOption, CwOptionList, CwReportModal, type CwReportModalFunctionalProps, CwScheduler, CwScheduler2, CwSearchInput, CwSelect, CwSelectList, CwSelectListItems, type CwSelectListProps, CwSuperScheduler, CwTable, CwTableGrouped, type CwTableGroupedData, type CwTableGroupedData_Group, type CwTableGroupedData_Row, type CwTableGroupedProps, CwTabs, CwTag, CwTextArea, type CwTextAreaProps, CwTime, CwToggle, CwTooltip, CwWeekdaySelector, type DataItem, DefaultRowHeader, type ICwMultiFilterTag, MultiSelect, OnClearPinned, OnClickContextMenu, OnClickEvent, OnClickRowEvent, OnClickRowHeader, OnClickUtc, OnDoubleClickEvent, OnDoubleClickRowEvent, OnDragEvent, OnDropCtrlEvent, OnDropEvent, OnEndClickHeaderEvent, type OnEvent, OnLeftDragStart, OnMultiClickEvent, OnPinRow, OnRangeClickEvent, OnRightClickEvent, OnRightClickRow, OnRightDragStart, OnStartClickHeaderEvent, OnUnpinRow, PinRowHeader, type PinRowHeaderProps, Resource, type RowHeaderDm, type RowHeaderProps, Scheduler, SchedulerEvent, type SchedulerEventDm, type SchedulerEventState, type SchedulerRowProps, type SchedulerState, SuperScheduler, type SuperSchedulerProps, UiEvent, type Weekday, Weekdays, cblEvent, type cblEventCompProps, eventIsVisible, getDefaultDivisions, getEventSizes, itemsToMultiFilterTags, type resourceCompProps2, useCwMessage };
|