Fixed typo

This commit is contained in:
Cagatay Civici 2023-08-01 17:01:12 +03:00
parent 6594502d78
commit 56e3f23eb3
184 changed files with 2347 additions and 2347 deletions

View file

@ -83,59 +83,59 @@ export interface OrganizationChartCollapsedKeys {
*/
export interface OrganizationChartPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the table's DOM element.
* Used to pass attributes to the table's DOM element.
*/
table?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the body's DOM element.
* Used to pass attributes to the body's DOM element.
*/
body?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the row' DOM element.
* Used to pass attributes to the row' DOM element.
*/
row?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the cell's DOM element.
* Used to pass attributes to the cell's DOM element.
*/
cell?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the node's DOM element.
* Used to pass attributes to the node's DOM element.
*/
node?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the nodeToggler's DOM element.
* Used to pass attributes to the nodeToggler's DOM element.
*/
nodeToggler?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the nodeTogglerIcon's DOM element.
* Used to pass attributes to the nodeTogglerIcon's DOM element.
*/
nodeTogglerIcon?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the lines's DOM element.
* Used to pass attributes to the lines's DOM element.
*/
lines?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the lineCell's DOM element.
* Used to pass attributes to the lineCell's DOM element.
*/
lineCell?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the lineDown's DOM element.
* Used to pass attributes to the lineDown's DOM element.
*/
lineDown?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the nodes's DOM element.
* Used to pass attributes to the nodes's DOM element.
*/
nodes?: OrganizationChartPassThroughOptionType;
/**
* Uses to pass attributes to the nodeCell's DOM element.
* Used to pass attributes to the nodeCell's DOM element.
*/
nodeCell?: OrganizationChartPassThroughOptionType;
/**
* Uses to manage all lifecycle hooks
* Used to manage all lifecycle hooks
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
@ -221,7 +221,7 @@ export interface OrganizationChartProps {
*/
collapsible?: boolean;
/**
* Uses to pass attributes to DOM elements inside the component.
* Used to pass attributes to DOM elements inside the component.
* @type {OrganizationChartPassThroughOptions}
*/
pt?: OrganizationChartPassThroughOptions;