FootnotesPropertiesConfig
interface
The configuration of the FootnotesProperties feature.
Read more in FootnotesProperties.
Properties
defaultStartIndex : number | undefinedmodule:footnotes/footnotesproperties/footnotespropertiesconfig~FootnotesPropertiesConfig#defaultStartIndexThe default start index of the footnotes definitions. The default is
1.Note: This configuration is used only when the footnotes definitions is being created after adding the first footnote.
defaultStyle : 'decimal' | 'decimal-leading-zero' | 'lower-latin' | 'upper-latin' | 'lower-alpha' | 'upper-alpha' | 'lower-roman' | 'upper-roman' | undefinedmodule:footnotes/footnotesproperties/footnotespropertiesconfig~FootnotesPropertiesConfig#defaultStyleThe default style of the footnotes definitions. The default is
'decimal'.Note: This configuration is used only when the footnotes definitions is being created after adding the first footnote.
toolbar : Array<string> | undefinedmodule:footnotes/footnotesproperties/footnotespropertiesconfig~FootnotesPropertiesConfig#toolbarItems to be placed in the footnotes properties toolbar.
Assuming that you use the
FootnotesPropertiesUIfeature, the following toolbar items will be available inComponentFactory:'footnotesStyle'- the dropdown for selecting the footnotes definitions style.
The default configuration for footnotes toolbar is:
const footnotesPropertiesConfig = { toolbar: [ 'footnotesStyle' ] };Copy code