@cwellt_software/cwellt-reactjs-lib 1.4.0 → 1.4.2

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 (39) hide show
  1. package/dist/index.cjs.js +586 -213
  2. package/dist/index.css +2 -2
  3. package/dist/index.d.ts +205 -5
  4. package/dist/index.es.js +585 -214
  5. package/dist/src/common/hooks/useDropdownPortal.d.ts +86 -0
  6. package/dist/src/common/hooks/useDropdownPortal.d.ts.map +1 -0
  7. package/dist/src/components/control/action/search/CwSearch.d.ts +22 -0
  8. package/dist/src/components/control/action/search/CwSearch.d.ts.map +1 -1
  9. package/dist/src/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +1 -1
  10. package/dist/src/components/control/choice/option/CwOption.d.ts +3 -1
  11. package/dist/src/components/control/choice/option/CwOption.d.ts.map +1 -1
  12. package/dist/src/components/control/choice/select/CwDropdown.d.ts +56 -0
  13. package/dist/src/components/control/choice/select/CwDropdown.d.ts.map +1 -0
  14. package/dist/src/components/control/choice/select/CwSelect.d.ts.map +1 -1
  15. package/dist/src/components/control/choice/tag-selector/CwTagSelector.d.ts +68 -0
  16. package/dist/src/components/control/choice/tag-selector/CwTagSelector.d.ts.map +1 -0
  17. package/dist/src/components/control/input/new-dates/CwDatePickerTemporal.d.ts +48 -0
  18. package/dist/src/components/control/input/new-dates/CwDatePickerTemporal.d.ts.map +1 -0
  19. package/dist/src/components/control/input/new-dates/datePickerHelpers.d.ts +20 -0
  20. package/dist/src/components/control/input/new-dates/datePickerHelpers.d.ts.map +1 -0
  21. package/dist/src/components/control/input/new-dates/usePickerPopup.d.ts +7 -8
  22. package/dist/src/components/control/input/new-dates/usePickerPopup.d.ts.map +1 -1
  23. package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts +36 -1
  24. package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts.map +1 -1
  25. package/dist/src/components/custom/find-crewmember/CwFindCrewmemberComp.d.ts +26 -0
  26. package/dist/src/components/custom/find-crewmember/CwFindCrewmemberComp.d.ts.map +1 -1
  27. package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
  28. package/dist/src/components/display/data/table-serverside/CwTableServerSide.d.ts +2 -1
  29. package/dist/src/components/display/data/table-serverside/CwTableServerSide.d.ts.map +1 -1
  30. package/dist/src/index.d.ts +2 -0
  31. package/dist/src/index.d.ts.map +1 -1
  32. package/dist/src/playground/PlaygroundApp.d.ts.map +1 -1
  33. package/dist/src/playground/pages/DatePickerTemporalPage.d.ts +3 -0
  34. package/dist/src/playground/pages/DatePickerTemporalPage.d.ts.map +1 -0
  35. package/dist/src/playground/pages/SelectorsPage.d.ts +3 -0
  36. package/dist/src/playground/pages/SelectorsPage.d.ts.map +1 -0
  37. package/dist/test/components/control/input/new-dates/datePickerHelpers.test.d.ts +2 -0
  38. package/dist/test/components/control/input/new-dates/datePickerHelpers.test.d.ts.map +1 -0
  39. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -936,6 +936,7 @@ interface CwTableServerSideProps<T = any> {
936
936
  totalItems: number;
937
937
  pagination?: boolean;
938
938
  pageSizeOptions?: number[];
939
+ pageLabel?: string;
939
940
  expandedRowRender?: (record: T) => React__default.ReactNode;
940
941
  onExpand?: (record: T) => void;
941
942
  classNameContainer?: string;
@@ -1011,7 +1012,7 @@ interface CwTableServerSideProps<T = any> {
1011
1012
  *
1012
1013
  * @returns React component
1013
1014
  */
1014
- declare function CwTableServerSide<T = any>({ columns, data, totalItems, pagination, pageSizeOptions, expandedRowRender, onExpand, className, classNameRow, style, classNameContainer, id, testId, textNoData, rowKey, loading, scrollHeight, stickyHeader, rowSelection, onChange, serverState, }: Readonly<CwTableServerSideProps<T>>): react_jsx_runtime.JSX.Element;
1015
+ declare function CwTableServerSide<T = any>({ columns, data, totalItems, pagination, pageSizeOptions, pageLabel, expandedRowRender, onExpand, className, classNameRow, style, classNameContainer, id, testId, textNoData, rowKey, loading, scrollHeight, stickyHeader, rowSelection, onChange, serverState, }: Readonly<CwTableServerSideProps<T>>): react_jsx_runtime.JSX.Element;
1015
1016
 
1016
1017
  interface Tab {
1017
1018
  key: string;
@@ -2025,8 +2026,61 @@ interface CwSelectProps extends DetailedHTMLProps<SelectHTMLAttributes<HTMLSelec
2025
2026
  */
2026
2027
  declare function CwSelect(props: CwSelectProps): react_jsx_runtime.JSX.Element;
2027
2028
 
2029
+ /** A single selectable option in a {@link CwDropdown}. */
2030
+ interface CwDropdownOption {
2031
+ /** Unique option identifier passed to `onChange`. */
2032
+ value: string | number;
2033
+ /** Display text shown in the trigger and option list. */
2034
+ label: string;
2035
+ /** Optional background color (any valid CSS value). Shown as a small dot next to the label. */
2036
+ color?: string;
2037
+ /** When `true` the option is rendered but cannot be selected. */
2038
+ disabled?: boolean;
2039
+ }
2040
+ /** Props for {@link CwDropdown}. */
2041
+ interface CwDropdownProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, "onChange"> {
2042
+ /** Array of options to display */
2043
+ options: CwDropdownOption[];
2044
+ /** Current selected value */
2045
+ value?: string | number;
2046
+ /** Callback when value changes */
2047
+ onChange?: (value: string | number | undefined) => void;
2048
+ /** Props for label component */
2049
+ labelProps?: CwLabelProps;
2050
+ /** Props for alignment */
2051
+ alignProps?: CwAlignProps;
2052
+ /** Placeholder text */
2053
+ placeholder?: string;
2054
+ /** Show search input (optional) */
2055
+ allowSearch?: boolean;
2056
+ /** Is disabled */
2057
+ disabled?: boolean;
2058
+ /** Is required */
2059
+ required?: boolean;
2060
+ /** Feedback messages */
2061
+ feedback?: CwInputFeedback | CwInputFeedback[];
2062
+ }
2063
+ /**
2064
+ * Custom dropdown component with colour-coded options, optional search filter, and full
2065
+ * keyboard navigation (↑ ↓ Enter Esc Tab).
2066
+ *
2067
+ * Use `CwDropdown` instead of the native `<select>` when options need colour indicators or
2068
+ * when inline search filtering is required.
2069
+ *
2070
+ * @example
2071
+ * <CwDropdown
2072
+ * options={[{ value: 'a', label: 'Option A', color: '#1976D2' }]}
2073
+ * value={selected}
2074
+ * onChange={setSelected}
2075
+ * labelProps={{ text: 'My Label' }}
2076
+ * />
2077
+ */
2078
+ declare function CwDropdown({ options, value, onChange, labelProps, alignProps, placeholder, allowSearch, disabled, required, feedback, className, style, ...otherProps }: CwDropdownProps): react_jsx_runtime.JSX.Element;
2079
+
2028
2080
  interface CwOptionProps extends Omit<HTMLProps<PropsWithChildren<HTMLOptionElement>>, "className"> {
2029
2081
  text?: string;
2082
+ /** Background color for the option (hex or CSS color). Renders as a colored bar on the left of the option text. */
2083
+ color?: string;
2030
2084
  }
2031
2085
  /**
2032
2086
  * Option to display in the CwSelect
@@ -2035,7 +2089,7 @@ interface CwOptionProps extends Omit<HTMLProps<PropsWithChildren<HTMLOptionEleme
2035
2089
  * @example
2036
2090
  * <CwSelect>
2037
2091
  * <CwOption>A</CwOption>
2038
- * <CwOption>B</CwOption>
2092
+ * <CwOption color="#4a90d9">Blue option</CwOption>
2039
2093
  * <CwOption>C</CwOption>
2040
2094
  * </CwSelect>
2041
2095
  */
@@ -2291,6 +2345,69 @@ interface CwMultiFilterProps {
2291
2345
  */
2292
2346
  declare const CwMultiFilter: FC<CwMultiFilterProps>;
2293
2347
 
2348
+ interface CwTagSelectorOption {
2349
+ /** Unique value identifying this option */
2350
+ value: string;
2351
+ /** Display text */
2352
+ label: string;
2353
+ /** Background color for the chip tag (any valid CSS color) */
2354
+ color?: string;
2355
+ /** Tooltip text shown on hover */
2356
+ tooltip?: string;
2357
+ }
2358
+ interface CwTagSelectorProps {
2359
+ /** HTML id */
2360
+ id?: string;
2361
+ /** All available options */
2362
+ options: CwTagSelectorOption[];
2363
+ /** Currently selected values */
2364
+ value: string[];
2365
+ /** Called when selection changes */
2366
+ onChange: (selectedValues: string[]) => void;
2367
+ /** Label */
2368
+ labelProps?: CwLabelProps;
2369
+ /** Icon */
2370
+ iconProps?: CwIconProps;
2371
+ /** Layout */
2372
+ alignProps?: CwAlignProps;
2373
+ /** Placeholder when nothing is selected */
2374
+ placeholder?: string;
2375
+ /** Disabled state */
2376
+ disabled?: boolean;
2377
+ /** Show a "Select all" toggle at the top of the dropdown */
2378
+ showSelectAll?: boolean;
2379
+ /** Feedback messages */
2380
+ feedback?: CwInputFeedback | CwInputFeedback[];
2381
+ /** Additional CSS class */
2382
+ className?: string;
2383
+ /** Inline styles */
2384
+ style?: React__default.CSSProperties;
2385
+ }
2386
+ /**
2387
+ * Multi-select input with chip tags and searchable dropdown.
2388
+ * Works like a Kendo MultiSelect: selected items appear as removable chips
2389
+ * inside the input area, and a filtered dropdown lets the user pick more.
2390
+ *
2391
+ * @example
2392
+ * ```tsx
2393
+ * const options = [
2394
+ * { value: "1", label: "Alpha" },
2395
+ * { value: "2", label: "Bravo" },
2396
+ * { value: "3", label: "Charlie" },
2397
+ * ];
2398
+ * const [selected, setSelected] = useState<string[]>([]);
2399
+ *
2400
+ * <CwTagSelector
2401
+ * labelProps={{ text: "Tags" }}
2402
+ * options={options}
2403
+ * value={selected}
2404
+ * onChange={setSelected}
2405
+ * placeholder="Select items…"
2406
+ * />
2407
+ * ```
2408
+ */
2409
+ declare function CwTagSelector({ id, options, value, onChange, labelProps, iconProps, alignProps, placeholder, disabled, showSelectAll, feedback, className, style, }: CwTagSelectorProps): react_jsx_runtime.JSX.Element;
2410
+
2294
2411
  type CwTreeNode<T> = {
2295
2412
  id: string | number;
2296
2413
  label: string;
@@ -2305,19 +2422,41 @@ type TreeViewProps<T> = {
2305
2422
  };
2306
2423
  declare function CwTreeView<T>({ data, onSelect, allowParentSelection, selectedId: initialSelectedId }: TreeViewProps<T>): react_jsx_runtime.JSX.Element;
2307
2424
 
2425
+ /** Props for {@link CwSearchInput}. */
2308
2426
  interface CwSearchInputProps extends HTMLProps<HTMLDivElement> {
2427
+ /** List of items to search through. Each item must be a `CwSelectList` instance. */
2309
2428
  selectList: Array<CwSelectList>;
2429
+ /** Props forwarded to the internal `CwLabel`. */
2310
2430
  labelProps?: CwLabelProps;
2431
+ /** Props forwarded to the optional leading icon. */
2311
2432
  iconProps?: CwIconProps;
2433
+ /** Props forwarded to the `CwAlign` layout wrapper. */
2312
2434
  alignProps?: CwAlignProps;
2435
+ /** Called with the `id` of the selected `CwSelectList` item. */
2313
2436
  handleChange?: (value: any) => void;
2437
+ /** Input placeholder text. Defaults to `"Search…"`. */
2314
2438
  placeholder?: string;
2315
2439
  className?: string;
2316
2440
  style?: React__default.CSSProperties;
2441
+ /** Disables the input when `true`. */
2317
2442
  disabled?: boolean;
2443
+ /** Renders the input in error state when `true`. */
2318
2444
  error?: boolean;
2445
+ /** Custom renderer for each suggestion item. Receives the matching `CwSelectList` entry. */
2319
2446
  renderOption?: (option: CwSelectList) => React__default.ReactNode;
2320
2447
  }
2448
+ /**
2449
+ * Text input with a live-filtered suggestion dropdown backed by a local `CwSelectList` array.
2450
+ * Use `CwFindAirport` or `CwFindCrewmember` for API-backed search inputs.
2451
+ *
2452
+ * @example
2453
+ * <CwSearchInput
2454
+ * selectList={myItems}
2455
+ * handleChange={(id) => console.log('selected', id)}
2456
+ * labelProps={{ text: 'Employee' }}
2457
+ * placeholder="Search by name…"
2458
+ * />
2459
+ */
2321
2460
  declare function CwSearchInput(optionsProps: React__default.PropsWithChildren<CwSearchInputProps>): react_jsx_runtime.JSX.Element;
2322
2461
 
2323
2462
  type Placement = 'bottom' | 'top' | 'left' | 'right';
@@ -3072,36 +3211,97 @@ declare class OnClearPinned implements UiEvent {
3072
3211
  }
3073
3212
 
3074
3213
  type DisplayMode = "default" | "icao-only" | "iata-only" | "full-text";
3214
+ /** Props for {@link CwFindAirport}. */
3075
3215
  interface CwFindAirportProps {
3216
+ /** Called with the selected airport's `AptKey` when a result is chosen. */
3076
3217
  handleChange: (value: number) => void;
3218
+ /** API search mode passed to the WinOps backend. Defaults to `"OnlyDatabase"`. */
3077
3219
  searchType?: string;
3220
+ /** Input placeholder text. Defaults to `"Search airport…"`. */
3078
3221
  placeHolder?: string;
3222
+ /** Marks the field as required (visual indicator only). */
3079
3223
  required?: boolean;
3224
+ /** Base URL of the WinOps backend, e.g. `"https://localhost:44300"`. */
3080
3225
  cblConfig: string;
3081
3226
  className?: string;
3227
+ /** Pre-select an airport by its `AptKey`. Triggers an initial fetch to resolve the display text. */
3082
3228
  value?: number;
3083
3229
  disabled?: boolean;
3084
- displayMode?: DisplayMode;
3230
+ /**
3231
+ * Controls what part of the airport name is shown in the input after selection.
3232
+ * - `"default"` — short `ICAO(IATA)` code format
3233
+ * - `"icao-only"` — only the 4-letter ICAO code
3234
+ * - `"iata-only"` — only the 3-letter IATA code
3235
+ * - `"full-text"` — full `DisplayAirportText` from the API
3236
+ */
3237
+ displayMode?: DisplayMode; /** Fixed CSS width for the input wrapper, e.g. `"400px"`. */
3085
3238
  width?: string;
3239
+ /** Text shown in the input on first render before any API data is loaded. */
3086
3240
  initialDisplayText?: string;
3241
+ /** Props forwarded to the internal `CwLabel`. */
3087
3242
  labelProps?: CwLabelProps;
3243
+ /** Props forwarded to the `CwAlign` layout wrapper. */
3088
3244
  alignProps?: CwAlignProps;
3089
3245
  }
3246
+ /**
3247
+ * API-backed airport search input for WinOps.
3248
+ *
3249
+ * Fetches matching airports from the WinOps backend as the user types (debounced).
3250
+ * Renders results in a shared `cw-choice-dropdown` styled panel with keyboard navigation.
3251
+ * Supports pre-selecting an airport by `value` (AptKey) and customising the displayed text
3252
+ * format via `displayMode`.
3253
+ *
3254
+ * Requires a running WinOps backend — set `cblConfig` to its base URL.
3255
+ *
3256
+ * @example
3257
+ * <CwFindAirport
3258
+ * cblConfig="https://localhost:44300"
3259
+ * handleChange={(key) => setAirportKey(key)}
3260
+ * labelProps={{ text: 'Departure Airport' }}
3261
+ * displayMode="iata-only"
3262
+ * />
3263
+ */
3090
3264
  declare const CwFindAirport: React__default.FC<CwFindAirportProps>;
3091
3265
 
3266
+ /** Props for {@link CwFindCrewmember}. */
3092
3267
  interface CwFindCrewmemberProps {
3268
+ /** Called with the selected crewmember's numeric ID when a result is chosen. */
3093
3269
  handleChange: (value: number) => void;
3270
+ /** Input placeholder text. Defaults to `"Search crew…"`. */
3094
3271
  placeHolder?: string;
3272
+ /** Marks the field as required (visual indicator only). */
3095
3273
  required?: boolean;
3274
+ /** Base URL of the WinOps backend, e.g. `"https://localhost:44300"`. */
3096
3275
  cblConfig: string;
3097
3276
  className?: string;
3277
+ /** Pre-select a crewmember by their numeric ID. Triggers an initial fetch to resolve the display text. */
3098
3278
  value?: number;
3099
3279
  disabled?: boolean;
3280
+ /** Fixed CSS width for the input wrapper, e.g. `"400px"`. */
3100
3281
  width?: string;
3282
+ /** Text shown in the input on first render before any API data is loaded. */
3101
3283
  initialDisplayText?: string;
3284
+ /** Props forwarded to the internal `CwLabel`. */
3102
3285
  labelProps?: CwLabelProps;
3286
+ /** Props forwarded to the `CwAlign` layout wrapper. */
3103
3287
  alignProps?: CwAlignProps;
3104
3288
  }
3289
+ /**
3290
+ * API-backed crewmember search input for WinOps.
3291
+ *
3292
+ * Fetches matching crewmembers from the WinOps backend as the user types (debounced).
3293
+ * Renders results in a shared `cw-choice-dropdown` styled panel with keyboard navigation.
3294
+ * Supports pre-selecting a crewmember by numeric `value` (ID).
3295
+ *
3296
+ * Requires a running WinOps backend — set `cblConfig` to its base URL.
3297
+ *
3298
+ * @example
3299
+ * <CwFindCrewmember
3300
+ * cblConfig="https://localhost:44300"
3301
+ * handleChange={(id) => setCrewId(id)}
3302
+ * labelProps={{ text: 'Crew Member' }}
3303
+ * />
3304
+ */
3105
3305
  declare const CwFindCrewmember: React__default.FC<CwFindCrewmemberProps>;
3106
3306
 
3107
3307
  declare class OnClickEvent implements UiEvent {
@@ -3181,5 +3381,5 @@ declare class OnClickContextMenu implements UiEvent {
3181
3381
  constructor(id: string, clickedMenu: string);
3182
3382
  }
3183
3383
 
3184
- export { CblDragAndDrop$1 as CblDragAndDrop, CwAccordionContainer, CwAlign, CwAnchoredMenu, CwBtnDelete, CwBtnEdit, CwBtnSave, CwButton, CwCard, CwCardList, CwCheck, CwCheckbox, CwCheckboxGroup, CwChip, CwColorPicker, CwConfirmationPopup, CwContextMenu, CwDatePicker, CwDateRangePicker, CwDateTimePicker, CwDateTimePickerCompact, CwDialog, CwDialogManager, CwDigit, CwDisplayMessage, CwDropdownFilter, CwExpandable, CwFileUpload, CwFileUploadMultiple, CwFindAirport, CwFindCrewmember, CwGenericTooltip, CwHeadingMain, CwHeadingSecond, CwIcon, CwImageArea, CwImageGallery, CwImageZoom, CwInput, CwInputColor, CwInputDate, CwInputDatePicker, CwInputDateText, CwInputDatetime, CwInputImage, CwInputNumber, CwInputPhone, CwInputText, CwKeyValueList, CwLabel, CwLoading, CwLoadingSmall, CwMasterDetail, CwMessage, CwMessageManager, CwMessageType, CwModal, CwModalHover, CwModalReportFunctional, CwMultiFilter, CwMultiFilterTag, CwNote, CwOption, CwPopoverButton, CwReportModal, CwScheduler, CwSearchInput, CwSelect, CwSelectList, CwSelectListItems, CwSortableList, CwSortableTable, CwSuperScheduler, CwTable, CwTableGrouped, CwTableServerSide, CwTabs, CwTextArea, CwTime, CwTimePicker, CwToggle, CwTooltipManager, CwTooltipNew, CwTreeView, CwWeekdaySelector, DefaultRowHeader, OnClearPinned, OnClickContextMenu, OnClickEvent, OnClickRowEvent, OnClickRowHeader, OnClickUtc, OnDoubleClickEvent, OnDoubleClickRowEvent, OnDragEvent, OnDropCtrlEvent, OnDropEvent, OnEndClickHeaderEvent, OnLeftDragStart, OnMultiClickEvent, OnPinRow, OnRangeClickEvent, OnRightClickEvent, OnRightClickRow, OnRightDragStart, OnStartClickHeaderEvent, OnUnpinRow, PinRowHeader, Resource, Scheduler, SchedulerEvent, SuperScheduler, UiEvent, Weekdays, cblEvent, eventIsVisible, filterVisibleEvents, getDefaultDivisions, getEventSizes, itemsToMultiFilterTags, useCwMessage, useSortableList, useSortableTable };
3185
- export type { BackgroundEventDm, CardChip, ChipColorScheme, ChipVariant, Column$1 as Column, ConfirmationPopupProps, CwAlignProps, CwCardListProps, CwCardProps, CwChipProps, CwDialogProps, CwExpandableProps, CwImageAreaMethods, CwImageAreaProps, CwInputDatePickerProps, CwInputDateProps, CwInputDateTextProps, CwInputDatetimeProps, CwInputImageProps, CwInputNumberProps, CwInputPhoneProps, CwInputTextProps, CwInputTimeProps, CwKeyValueListProps, CwLabelProps, CwMasterDetailItem, CwMasterDetailProps, CwMessageProps, CwModalHoverProps, CwMultiFilterProps, CwMultiFilterTagProps, CwNoteProps, CwPopoverButtonProps, CwReportModalFunctionalProps, CwSelectListProps, CwSortableListProps, CwSortableTableProps, CwTableGroupedData, CwTableGroupedData_Group, CwTableGroupedData_Row, CwTableGroupedProps, CwTextAreaProps, CwTreeNode, DataItem, DateRangeValue, ICwMultiFilterTag, ImageItem, IndicatorRowDm, MenuOption, OnEvent, PinRowHeaderProps, RowHeaderDm, RowHeaderProps, SchedulerEventDm, SchedulerEventState, SchedulerRowProps, SchedulerState, ServerSideTableState, SortableColumn, SortableTableDragState, SuperSchedulerProps, Tab, UseSortableTableReturn, Weekday, ZoomImageItem, cblEventCompProps, resourceCompProps2 };
3384
+ export { CblDragAndDrop$1 as CblDragAndDrop, CwAccordionContainer, CwAlign, CwAnchoredMenu, CwBtnDelete, CwBtnEdit, CwBtnSave, CwButton, CwCard, CwCardList, CwCheck, CwCheckbox, CwCheckboxGroup, CwChip, CwColorPicker, CwConfirmationPopup, CwContextMenu, CwDatePicker, CwDateRangePicker, CwDateTimePicker, CwDateTimePickerCompact, CwDialog, CwDialogManager, CwDigit, CwDisplayMessage, CwDropdown, CwDropdownFilter, CwExpandable, CwFileUpload, CwFileUploadMultiple, CwFindAirport, CwFindCrewmember, CwGenericTooltip, CwHeadingMain, CwHeadingSecond, CwIcon, CwImageArea, CwImageGallery, CwImageZoom, CwInput, CwInputColor, CwInputDate, CwInputDatePicker, CwInputDateText, CwInputDatetime, CwInputImage, CwInputNumber, CwInputPhone, CwInputText, CwKeyValueList, CwLabel, CwLoading, CwLoadingSmall, CwMasterDetail, CwMessage, CwMessageManager, CwMessageType, CwModal, CwModalHover, CwModalReportFunctional, CwMultiFilter, CwMultiFilterTag, CwNote, CwOption, CwPopoverButton, CwReportModal, CwScheduler, CwSearchInput, CwSelect, CwSelectList, CwSelectListItems, CwSortableList, CwSortableTable, CwSuperScheduler, CwTable, CwTableGrouped, CwTableServerSide, CwTabs, CwTagSelector, CwTextArea, CwTime, CwTimePicker, CwToggle, CwTooltipManager, CwTooltipNew, CwTreeView, CwWeekdaySelector, DefaultRowHeader, OnClearPinned, OnClickContextMenu, OnClickEvent, OnClickRowEvent, OnClickRowHeader, OnClickUtc, OnDoubleClickEvent, OnDoubleClickRowEvent, OnDragEvent, OnDropCtrlEvent, OnDropEvent, OnEndClickHeaderEvent, OnLeftDragStart, OnMultiClickEvent, OnPinRow, OnRangeClickEvent, OnRightClickEvent, OnRightClickRow, OnRightDragStart, OnStartClickHeaderEvent, OnUnpinRow, PinRowHeader, Resource, Scheduler, SchedulerEvent, SuperScheduler, UiEvent, Weekdays, cblEvent, eventIsVisible, filterVisibleEvents, getDefaultDivisions, getEventSizes, itemsToMultiFilterTags, useCwMessage, useSortableList, useSortableTable };
3385
+ export type { BackgroundEventDm, CardChip, ChipColorScheme, ChipVariant, Column$1 as Column, ConfirmationPopupProps, CwAlignProps, CwCardListProps, CwCardProps, CwChipProps, CwDialogProps, CwDropdownOption, CwDropdownProps, CwExpandableProps, CwImageAreaMethods, CwImageAreaProps, CwInputDatePickerProps, CwInputDateProps, CwInputDateTextProps, CwInputDatetimeProps, CwInputImageProps, CwInputNumberProps, CwInputPhoneProps, CwInputTextProps, CwInputTimeProps, CwKeyValueListProps, CwLabelProps, CwMasterDetailItem, CwMasterDetailProps, CwMessageProps, CwModalHoverProps, CwMultiFilterProps, CwMultiFilterTagProps, CwNoteProps, CwPopoverButtonProps, CwReportModalFunctionalProps, CwSelectListProps, CwSortableListProps, CwSortableTableProps, CwTableGroupedData, CwTableGroupedData_Group, CwTableGroupedData_Row, CwTableGroupedProps, CwTagSelectorOption, CwTagSelectorProps, CwTextAreaProps, CwTreeNode, DataItem, DateRangeValue, ICwMultiFilterTag, ImageItem, IndicatorRowDm, MenuOption, OnEvent, PinRowHeaderProps, RowHeaderDm, RowHeaderProps, SchedulerEventDm, SchedulerEventState, SchedulerRowProps, SchedulerState, ServerSideTableState, SortableColumn, SortableTableDragState, SuperSchedulerProps, Tab, UseSortableTableReturn, Weekday, ZoomImageItem, cblEventCompProps, resourceCompProps2 };