@cwellt_software/cwellt-reactjs-lib 1.0.3 → 1.0.4
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 +389 -6
- package/dist/content/icons/new-cw-icons/NewCwIcons.json +1 -1
- package/dist/content/icons/new-cw-icons/css/new-cw-icons.css +20 -7
- package/dist/content/icons/new-cw-icons/fonts/NewCwIcons.woff +0 -0
- package/dist/index.cjs.js +307 -158
- package/dist/index.css +2 -2
- package/dist/index.d.ts +141 -56
- package/dist/index.es.js +313 -157
- package/dist/src/common/functions/colorManipulation.d.ts.map +1 -1
- package/dist/src/components/control/action/button/CwButton.d.ts +3 -2
- package/dist/src/components/control/action/button/CwButton.d.ts.map +1 -1
- package/dist/src/components/control/action/buttons/CwButtons.d.ts +0 -7
- package/dist/src/components/control/action/buttons/CwButtons.d.ts.map +1 -1
- package/dist/src/components/control/action/contextmenu/CwContextMenu.d.ts +4 -0
- package/dist/src/components/control/action/contextmenu/CwContextMenu.d.ts.map +1 -1
- package/dist/src/components/control/action/search/CwSearch.d.ts +1 -1
- package/dist/src/components/control/action/search/CwSearch.d.ts.map +1 -1
- package/dist/src/components/control/choice/dropdown/CwDropdown.d.ts +2 -2
- package/dist/src/components/control/choice/dropdown/CwDropdown.d.ts.map +1 -1
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.d.ts +122 -33
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +1 -1
- package/dist/src/components/control/choice/toggle/CwToggle.d.ts +0 -4
- package/dist/src/components/control/choice/toggle/CwToggle.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/CwSchedulerComp.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts +0 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
- package/dist/src/components/display/data/accordion/CwAccordionContainer.d.ts.map +1 -1
- package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.d.ts +1 -0
- package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.d.ts.map +1 -1
- package/dist/src/components/display/data/table/CwTable.d.ts +2 -2
- package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
- package/dist/src/components/layout/dialog/CwDialog.d.ts +2 -2
- package/dist/src/components/layout/dialog/CwDialog.d.ts.map +1 -1
- package/dist/src/components/layout/modal/CwModalReportFunctional.d.ts +2 -2
- package/dist/src/components/layout/modal/CwModalReportFunctional.d.ts.map +1 -1
- package/dist/src/components/layout/tabs/CwTabs.d.ts +2 -1
- package/dist/src/components/layout/tabs/CwTabs.d.ts.map +1 -1
- package/dist/src/index.d.ts +2 -2
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -194,6 +194,7 @@ interface CwGenericTooltipProps {
|
|
|
194
194
|
children: ReactNode;
|
|
195
195
|
content?: ReactNode;
|
|
196
196
|
dissapearsWhenHover?: boolean;
|
|
197
|
+
hide?: boolean;
|
|
197
198
|
position?: TooltipPosition;
|
|
198
199
|
overlayStyle?: CSSProperties;
|
|
199
200
|
showDelay?: number;
|
|
@@ -255,7 +256,7 @@ declare class CwModalIframe extends React$1.Component<CwModalIframeProps, State$
|
|
|
255
256
|
render(): react_jsx_runtime.JSX.Element;
|
|
256
257
|
}
|
|
257
258
|
|
|
258
|
-
interface
|
|
259
|
+
interface CwReportModalFunctionalProps {
|
|
259
260
|
content: string;
|
|
260
261
|
name: string;
|
|
261
262
|
title: string;
|
|
@@ -267,7 +268,7 @@ interface CwReportModalProps$1 {
|
|
|
267
268
|
isModal?: boolean;
|
|
268
269
|
onCloseModal: () => void;
|
|
269
270
|
}
|
|
270
|
-
declare const CwModalReportFunctional: FC<
|
|
271
|
+
declare const CwModalReportFunctional: FC<CwReportModalFunctionalProps>;
|
|
271
272
|
|
|
272
273
|
interface CwReportModalProps {
|
|
273
274
|
url: File;
|
|
@@ -321,8 +322,8 @@ interface CwDialogProps extends Omit<HTMLProps<PropsWithChildren<HTMLDialogEleme
|
|
|
321
322
|
customHeader?: Array<ReactElement>;
|
|
322
323
|
headline?: string;
|
|
323
324
|
dialogSize?: {
|
|
324
|
-
width: number;
|
|
325
|
-
height: number;
|
|
325
|
+
width: number | string;
|
|
326
|
+
height: number | string;
|
|
326
327
|
};
|
|
327
328
|
zIndex?: number;
|
|
328
329
|
scrim?: boolean;
|
|
@@ -376,7 +377,7 @@ interface CwTableProps {
|
|
|
376
377
|
classNameContainer?: string;
|
|
377
378
|
className?: string;
|
|
378
379
|
classNameHeader?: string;
|
|
379
|
-
|
|
380
|
+
classNameRow?: string;
|
|
380
381
|
style?: React__default.CSSProperties;
|
|
381
382
|
id?: string;
|
|
382
383
|
textNoData?: string;
|
|
@@ -469,7 +470,7 @@ interface CwTableProps {
|
|
|
469
470
|
* />
|
|
470
471
|
* @returns React component
|
|
471
472
|
*/
|
|
472
|
-
declare function CwTable({ columns, data, pagination, itemsPerPage, expandedRowRender, onExpand, className, classNameHeader,
|
|
473
|
+
declare function CwTable({ columns, data, pagination, itemsPerPage, expandedRowRender, onExpand, className, classNameHeader, classNameRow, style, classNameContainer, id, textNoData }: CwTableProps): react_jsx_runtime.JSX.Element;
|
|
473
474
|
|
|
474
475
|
interface Tab {
|
|
475
476
|
key: string;
|
|
@@ -482,10 +483,11 @@ interface CwTabsProps {
|
|
|
482
483
|
id?: string;
|
|
483
484
|
onTabClick?: any;
|
|
484
485
|
defaultActiveKey?: string;
|
|
485
|
-
|
|
486
|
+
className?: string;
|
|
486
487
|
style?: React__default.CSSProperties;
|
|
487
488
|
tabs: Tab[];
|
|
488
489
|
tabsPosition?: 'top' | 'left';
|
|
490
|
+
tabsListWidth?: string;
|
|
489
491
|
}
|
|
490
492
|
/**
|
|
491
493
|
*
|
|
@@ -639,11 +641,12 @@ interface CwInputProps {
|
|
|
639
641
|
}
|
|
640
642
|
declare function CwInput(CwInputProps: React__default.PropsWithChildren<CwInputProps>): react_jsx_runtime.JSX.Element;
|
|
641
643
|
|
|
642
|
-
interface CwButtonProps extends
|
|
644
|
+
interface CwButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
643
645
|
text?: string;
|
|
646
|
+
variant?: 'solid' | 'outline';
|
|
644
647
|
ref?: React.LegacyRef<HTMLButtonElement>;
|
|
645
648
|
}
|
|
646
|
-
declare function CwButton(
|
|
649
|
+
declare function CwButton({ text, variant, className, children, ...buttonProps }: CwButtonProps): react_jsx_runtime.JSX.Element;
|
|
647
650
|
|
|
648
651
|
interface CwDigitProps extends Omit<HTMLProps<HTMLInputElement>, "className" | "type"> {
|
|
649
652
|
/** Props to define alignment and size; undefined == column
|
|
@@ -1051,9 +1054,6 @@ interface CwCheckboxProps {
|
|
|
1051
1054
|
declare function CwCheckbox(CwCheckboxProps: React__default.PropsWithChildren<CwCheckboxProps>): react_jsx_runtime.JSX.Element;
|
|
1052
1055
|
|
|
1053
1056
|
interface CwToggleProps extends Omit<React__default.DetailedHTMLProps<React__default.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "className" | "type"> {
|
|
1054
|
-
/** Props to define alignment and size; undefined == column
|
|
1055
|
-
* @example alignProps={{_direction:"row"}} */
|
|
1056
|
-
alignProps?: CwAlignProps;
|
|
1057
1057
|
/** Props of the button; undefined == no button
|
|
1058
1058
|
* @example buttonProps={{children:"Ok"}} */
|
|
1059
1059
|
buttonProps?: CwButtonProps;
|
|
@@ -1136,7 +1136,7 @@ interface CwOptionProps extends Omit<HTMLProps<PropsWithChildren<HTMLOptionEleme
|
|
|
1136
1136
|
*/
|
|
1137
1137
|
declare function CwOption(props: CwOptionProps): react_jsx_runtime.JSX.Element;
|
|
1138
1138
|
|
|
1139
|
-
interface CwDropdownProps {
|
|
1139
|
+
interface CwDropdownProps extends HTMLProps<HTMLDivElement> {
|
|
1140
1140
|
selectList: Array<CwSelectList>;
|
|
1141
1141
|
labelName: string;
|
|
1142
1142
|
labelPosition?: string;
|
|
@@ -1322,8 +1322,20 @@ interface CwMultiFilterProps {
|
|
|
1322
1322
|
style?: React__default.CSSProperties;
|
|
1323
1323
|
}
|
|
1324
1324
|
/**
|
|
1325
|
-
* A multiple filter selector, a MULTI-SELECT even.
|
|
1325
|
+
* A multiple filter selector, a MULTI-SELECT even. Allows users to select and filter items based on tags.
|
|
1326
1326
|
* @remark
|
|
1327
|
+
* The CwMultiFilter component provides a user interface for selecting multiple filter options
|
|
1328
|
+
* organized by categories. Each filter option is represented as a clickable tag with customizable
|
|
1329
|
+
* colors. The component manages the selection state internally but reports changes via a callback.
|
|
1330
|
+
*
|
|
1331
|
+
* Filter tags should include the following properties:
|
|
1332
|
+
* - `Name`: Display name of the filter
|
|
1333
|
+
* - `Value`: Actual value used for filtering logic
|
|
1334
|
+
* - `Category`: Group the filter belongs to
|
|
1335
|
+
* - `ID`: Unique identifier for the filter
|
|
1336
|
+
* - `PrimaryColor`: Background color of the tag
|
|
1337
|
+
* - `OnPrimaryColor`: Text color of the tag
|
|
1338
|
+
*
|
|
1327
1339
|
* ```
|
|
1328
1340
|
* ╭───────────────────────────────────────────────────────────────╮
|
|
1329
1341
|
* │ ╭──────────╮ ╭──────────╮ ╭──────────╮ │
|
|
@@ -1338,39 +1350,116 @@ interface CwMultiFilterProps {
|
|
|
1338
1350
|
* ╰─────────────────────────────────────────────────────────────╯
|
|
1339
1351
|
* ```
|
|
1340
1352
|
* @example
|
|
1341
|
-
* ```
|
|
1342
|
-
*
|
|
1343
|
-
*
|
|
1344
|
-
*
|
|
1353
|
+
* ```tsx
|
|
1354
|
+
* import { CwMultiFilter, type CwMultiFilterTagProps, type ICwMultiFilterTag } from "cwellt-reactjs-lib";
|
|
1355
|
+
* import { useCallback, useState } from "react";
|
|
1356
|
+
* import { hexToRGB } from "../common/functions/color";
|
|
1357
|
+
*
|
|
1358
|
+
* function FilterExample() {
|
|
1359
|
+
* // State to track selected filter tags
|
|
1360
|
+
* const [selectedTags, setSelectedTags] = useState(new Set<CwMultiFilterTagProps>());
|
|
1361
|
+
*
|
|
1362
|
+
* // Sample data to filter
|
|
1363
|
+
* const [users, setUsers] = useState([
|
|
1364
|
+
* { id: 1, name: "John", role: "admin", department: "IT" },
|
|
1365
|
+
* { id: 2, name: "Sarah", role: "user", department: "HR" },
|
|
1366
|
+
* // More users...
|
|
1367
|
+
* ]);
|
|
1368
|
+
*
|
|
1369
|
+
* // Filtered users based on selected tags
|
|
1370
|
+
* const [filteredUsers, setFilteredUsers] = useState(users);
|
|
1371
|
+
*
|
|
1372
|
+
* // Define filter options
|
|
1373
|
+
* const filterOptions = new Set([
|
|
1374
|
+
* {
|
|
1375
|
+
* Name: "Admin",
|
|
1376
|
+
* Value: "admin",
|
|
1377
|
+
* Category: "Roles",
|
|
1378
|
+
* ID: "Roles_admin",
|
|
1379
|
+
* OnPrimaryColor: hexToRGB("#2050a8"),
|
|
1380
|
+
* PrimaryColor: hexToRGB("#cedcff")
|
|
1381
|
+
* },
|
|
1382
|
+
* {
|
|
1383
|
+
* Name: "User",
|
|
1384
|
+
* Value: "user",
|
|
1385
|
+
* Category: "Roles",
|
|
1386
|
+
* ID: "Roles_user",
|
|
1387
|
+
* OnPrimaryColor: hexToRGB("#2050a8"),
|
|
1388
|
+
* PrimaryColor: hexToRGB("#cedcff")
|
|
1389
|
+
* },
|
|
1390
|
+
* {
|
|
1391
|
+
* Name: "IT",
|
|
1392
|
+
* Value: "IT",
|
|
1393
|
+
* Category: "Departments",
|
|
1394
|
+
* ID: "Departments_IT",
|
|
1395
|
+
* OnPrimaryColor: hexToRGB("#a82037"),
|
|
1396
|
+
* PrimaryColor: hexToRGB("#ffceda")
|
|
1397
|
+
* },
|
|
1398
|
+
* {
|
|
1399
|
+
* Name: "HR",
|
|
1400
|
+
* Value: "HR",
|
|
1401
|
+
* Category: "Departments",
|
|
1402
|
+
* ID: "Departments_HR",
|
|
1403
|
+
* OnPrimaryColor: hexToRGB("#a82037"),
|
|
1404
|
+
* PrimaryColor: hexToRGB("#ffceda")
|
|
1405
|
+
* }
|
|
1406
|
+
* ]);
|
|
1407
|
+
*
|
|
1408
|
+
* // Handle filter changes
|
|
1409
|
+
* const onChangeFilters = useCallback((tags: Set<ICwMultiFilterTag>) => {
|
|
1410
|
+
* setSelectedTags(tags);
|
|
1411
|
+
* const tagsArray = Array.from(tags);
|
|
1345
1412
|
*
|
|
1346
|
-
*
|
|
1347
|
-
*
|
|
1348
|
-
*
|
|
1349
|
-
*
|
|
1350
|
-
*
|
|
1351
|
-
*
|
|
1352
|
-
*
|
|
1353
|
-
*
|
|
1354
|
-
*
|
|
1355
|
-
*
|
|
1356
|
-
*
|
|
1357
|
-
*
|
|
1358
|
-
*
|
|
1359
|
-
*
|
|
1360
|
-
*
|
|
1361
|
-
*
|
|
1362
|
-
*
|
|
1363
|
-
*
|
|
1364
|
-
*
|
|
1365
|
-
*
|
|
1366
|
-
*
|
|
1367
|
-
*
|
|
1368
|
-
*
|
|
1369
|
-
*
|
|
1370
|
-
*
|
|
1371
|
-
*
|
|
1372
|
-
*
|
|
1373
|
-
*
|
|
1413
|
+
* // Get values for each category
|
|
1414
|
+
* const roleValues = tagsArray
|
|
1415
|
+
* .filter(tag => tag.Category === "Roles")
|
|
1416
|
+
* .map(tag => tag.Value);
|
|
1417
|
+
*
|
|
1418
|
+
* const departmentValues = tagsArray
|
|
1419
|
+
* .filter(tag => tag.Category === "Departments")
|
|
1420
|
+
* .map(tag => tag.Value);
|
|
1421
|
+
*
|
|
1422
|
+
* // Apply filters
|
|
1423
|
+
* if (tagsArray.length === 0) {
|
|
1424
|
+
* // No filters applied
|
|
1425
|
+
* setFilteredUsers(users);
|
|
1426
|
+
* } else {
|
|
1427
|
+
* let filtered = users;
|
|
1428
|
+
*
|
|
1429
|
+
* if (roleValues.length > 0) {
|
|
1430
|
+
* filtered = filtered.filter(user => roleValues.includes(user.role));
|
|
1431
|
+
* }
|
|
1432
|
+
*
|
|
1433
|
+
* if (departmentValues.length > 0) {
|
|
1434
|
+
* filtered = filtered.filter(user => departmentValues.includes(user.department));
|
|
1435
|
+
* }
|
|
1436
|
+
*
|
|
1437
|
+
* setFilteredUsers(filtered);
|
|
1438
|
+
* }
|
|
1439
|
+
* }, [users]);
|
|
1440
|
+
*
|
|
1441
|
+
* return (
|
|
1442
|
+
* <div>
|
|
1443
|
+
* <h2>Filter Users</h2>
|
|
1444
|
+
* <div style={{ width: "50%" }}>
|
|
1445
|
+
* <CwMultiFilter
|
|
1446
|
+
* id="user-filter"
|
|
1447
|
+
* allTags={filterOptions}
|
|
1448
|
+
* onChangeSelectedTags={onChangeFilters}
|
|
1449
|
+
* selectedTags={selectedTags}
|
|
1450
|
+
* />
|
|
1451
|
+
* </div>
|
|
1452
|
+
* <div style={{ marginTop: "20px" }}>
|
|
1453
|
+
* <h3>Filtered Results ({filteredUsers.length})</h3>
|
|
1454
|
+
* <ul>
|
|
1455
|
+
* {filteredUsers.map(user => (
|
|
1456
|
+
* <li key={user.id}>{user.name} - {user.role} ({user.department})</li>
|
|
1457
|
+
* ))}
|
|
1458
|
+
* </ul>
|
|
1459
|
+
* </div>
|
|
1460
|
+
* </div>
|
|
1461
|
+
* );
|
|
1462
|
+
* }
|
|
1374
1463
|
* ```
|
|
1375
1464
|
* @param {CwMultiFilterProps} props
|
|
1376
1465
|
* @returns Set the `onChange` callback to a function to check for changes in the selected filters
|
|
@@ -1379,7 +1468,7 @@ declare const CwMultiFilter: FC<CwMultiFilterProps>;
|
|
|
1379
1468
|
|
|
1380
1469
|
interface CwSearchInputProps extends HTMLProps<HTMLDivElement> {
|
|
1381
1470
|
selectList: Array<CwSelectList>;
|
|
1382
|
-
labelName
|
|
1471
|
+
labelName?: string;
|
|
1383
1472
|
labelPosition?: string;
|
|
1384
1473
|
labelClassName?: string;
|
|
1385
1474
|
handleChange?: (value: any) => void;
|
|
@@ -1393,6 +1482,10 @@ declare function CwSearchInput(optionsProps: React__default.PropsWithChildren<Cw
|
|
|
1393
1482
|
|
|
1394
1483
|
interface ContextMenuProps extends React__default.PropsWithChildren {
|
|
1395
1484
|
options: string[];
|
|
1485
|
+
offset?: {
|
|
1486
|
+
x: number;
|
|
1487
|
+
y: number;
|
|
1488
|
+
};
|
|
1396
1489
|
onSelect: (option: string) => void;
|
|
1397
1490
|
}
|
|
1398
1491
|
/**
|
|
@@ -1436,18 +1529,12 @@ declare function CwContextualMenu(CwelltRightClickProps: React$1.PropsWithChildr
|
|
|
1436
1529
|
* @dependencies #CwScheduler #CwSchedulerActive #cwelltContentDuty #cwelltContentDutyActive
|
|
1437
1530
|
*/
|
|
1438
1531
|
declare function CwFloatingButton(): react_jsx_runtime.JSX.Element;
|
|
1439
|
-
declare function CwButtonExpandAndCollapse(): react_jsx_runtime.JSX.Element;
|
|
1440
1532
|
interface cwButtonsDescProps {
|
|
1441
1533
|
cw_btn_desc: string;
|
|
1442
1534
|
cw_btnOnclick: any;
|
|
1443
1535
|
cw_btn_disabled?: boolean;
|
|
1444
1536
|
}
|
|
1445
1537
|
declare function CwButtonDef({ cw_btn_desc, cw_btnOnclick, cw_btn_disabled }: cwButtonsDescProps): react_jsx_runtime.JSX.Element;
|
|
1446
|
-
declare function CwButtonDefOutline({ cw_btn_desc, cw_btnOnclick, cw_btn_disabled }: cwButtonsDescProps): react_jsx_runtime.JSX.Element;
|
|
1447
|
-
declare function CwButtonSec({ cw_btn_desc, cw_btnOnclick, cw_btn_disabled }: cwButtonsDescProps): react_jsx_runtime.JSX.Element;
|
|
1448
|
-
declare function CwButtonSecOutline({ cw_btn_desc, cw_btnOnclick, cw_btn_disabled }: cwButtonsDescProps): react_jsx_runtime.JSX.Element;
|
|
1449
|
-
declare function CwButtonDanger({ cw_btn_desc, cw_btnOnclick, cw_btn_disabled }: cwButtonsDescProps): react_jsx_runtime.JSX.Element;
|
|
1450
|
-
declare function CwButtonDangerOutline({ cw_btn_desc, cw_btnOnclick, cw_btn_disabled }: cwButtonsDescProps): react_jsx_runtime.JSX.Element;
|
|
1451
1538
|
interface cw_btnProps {
|
|
1452
1539
|
cw_btnOnclick: any;
|
|
1453
1540
|
cw_btn_disabled?: boolean;
|
|
@@ -1470,7 +1557,6 @@ declare function CwBtnWarning({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps):
|
|
|
1470
1557
|
declare function CwBtnShare({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1471
1558
|
declare function CwBtnFiles({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1472
1559
|
declare function CwBtnAirport({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1473
|
-
declare function CwBtnUserFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1474
1560
|
declare function CwBtnDownLoadAllInfo({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1475
1561
|
declare function CwBtnPropertyFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
1476
1562
|
declare function CwBtnAddFolder({ cw_btnOnclick, cw_btn_disabled }: cw_btnProps): react_jsx_runtime.JSX.Element;
|
|
@@ -1881,7 +1967,6 @@ declare const SchedulerEvent: FC<SchedulerEventState<SchedulerEventDm>>;
|
|
|
1881
1967
|
|
|
1882
1968
|
interface BackgroundEventDm extends SchedulerEventDm {
|
|
1883
1969
|
isVisible: boolean;
|
|
1884
|
-
isVerticalText?: boolean;
|
|
1885
1970
|
}
|
|
1886
1971
|
|
|
1887
1972
|
interface RowHeaderDm {
|
|
@@ -2106,4 +2191,4 @@ declare class OnClickContextMenu implements UiEvent {
|
|
|
2106
2191
|
constructor(id: string, clickedMenu: string);
|
|
2107
2192
|
}
|
|
2108
2193
|
|
|
2109
|
-
export { type BackgroundEventDm, CblDragAndDrop$1 as CblDragAndDrop, type Column, CwAccordionContainer, CwAlign, type CwAlignProps, CwBtnAdd, CwBtnAddFolder, CwBtnAirport, CwBtnAlert, CwBtnApprove, CwBtnArchive, CwBtnArchiveRestore, CwBtnBookMark, CwBtnBookMarkLinkPage, 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, CwBtnSelectedFolder, CwBtnShare, CwBtnStatistic, CwBtnUploadFiles,
|
|
2194
|
+
export { type BackgroundEventDm, CblDragAndDrop$1 as CblDragAndDrop, type Column, CwAccordionContainer, CwAlign, type CwAlignProps, CwBtnAdd, CwBtnAddFolder, CwBtnAirport, CwBtnAlert, CwBtnApprove, CwBtnArchive, CwBtnArchiveRestore, CwBtnBookMark, CwBtnBookMarkLinkPage, 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, CwBtnSelectedFolder, 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, 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 };
|