"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.folderRename = exports.folderProperties = exports.folderMove = exports.folderExpandWithChildren = exports.folderExpandAll = exports.folderExpand = exports.folderDocuments = exports.folderCustomize = exports.folderCollapse = exports.folder = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
* @file Folder
* @module folder
* @category Folder
*/
const notesc = tslib_1.__importStar(require("../notes/folder"));
exports._notes = notesc;
/**
* Moves or copies the selected document to a folder.
* @throws {Error} No plans to implement
*/
function folder() {
return notesc.Folder();
}
exports.folder = folder;
/**
* For a folder or view containing nested folders or views, collapses the selected
* folder or view in the navigation pane.
* @throws {Error} No plans to implement
*/
function folderCollapse() {
return notesc.FolderCollapse();
}
exports.folderCollapse = folderCollapse;
/**
* Displays the design pane for the currently selected view or folder.
* @throws {Error} No plans to implement
*/
function folderCustomize() {
return notesc.FolderCustomize();
}
exports.folderCustomize = folderCustomize;
/**
* Moves or copies the selected document to a folder.
* @throws {Error} No plans to implement
*/
function folderDocuments() {
return notesc.FolderDocuments();
}
exports.folderDocuments = folderDocuments;
/**
* Expands the currently selected view or folder one level in the navigation pane.
* @throws {Error} No plans to implement
*/
function folderExpand() {
return notesc.FolderExpand();
}
exports.folderExpand = folderExpand;
/**
* Fully expands all views and folders in the navigation pane.
* @throws {Error} No plans to implement
*/
function folderExpandAll() {
return notesc.FolderExpandAll();
}
exports.folderExpandAll = folderExpandAll;
/**
* Fully expands the selected view or folder in the navigation pane.
* @throws {Error} No plans to implement
*/
function folderExpandWithChildren() {
return notesc.FolderExpandWithChildren();
}
exports.folderExpandWithChildren = folderExpandWithChildren;
/**
* Displays the Move dialog box for a view or folder, which allows you to move the
* selected view or folder.
* @throws {Error} No plans to implement
*/
function folderMove() {
return notesc.FolderMove();
}
exports.folderMove = folderMove;
/**
* Displays the Properties box for a view or folder.
* @throws {Error} No plans to implement
*/
function folderProperties() {
return notesc.FolderProperties();
}
exports.folderProperties = folderProperties;
/**
* Displays the Rename dialog box, which allows you to rename the selected folder
* or view.
* @throws {Error} No plans to implement
*/
function folderRename() {
return notesc.FolderRename();
}
exports.folderRename = folderRename;
//# sourceMappingURL=folder.js.map