diff --git a/.doc/UI/bin/generate_uiblock.php b/.doc/UI/bin/generate_uiblock.php index b335da99d..33d62282a 100644 --- a/.doc/UI/bin/generate_uiblock.php +++ b/.doc/UI/bin/generate_uiblock.php @@ -211,15 +211,15 @@ EOF; /** * @param \ReflectionMethod $oMethod - * @param string $sFullComment * * @return array * @throws \ReflectionException */ -function GetMethodParameters(ReflectionMethod $oMethod, string $sFullComment): array +function GetMethodParameters(ReflectionMethod $oMethod): array { $aDocParams = []; $aParameters = $oMethod->getParameters(); + $sFullComment = $oMethod->getDocComment(); foreach ($aParameters as $oParameter) { $sName = $oParameter->getName(); $aDocParam['name'] = $sName; @@ -245,14 +245,36 @@ function GetMethodParameters(ReflectionMethod $oMethod, string $sFullComment): a } if ($sFullComment !== false) { - $sComment = $sFullComment; - $iPos = strpos($sComment, $sName); - if ($iPos !== false) { - $sComment = substr($sComment, strpos($sComment, '@param')); - $iPos = strpos($sComment, $sName); - $sComment = substr($sComment, $iPos + strlen($sName)); - $sComment = substr($sComment, 0, strpos($sComment, "\n")); - $sComment = trim($sComment); + if (preg_match("#^\s*\*\s*@param\s+\S*\s*.$sName(?.*)$#m", $sFullComment, $aMatches)) { + $sComment = trim($aMatches['comment']); + if (preg_match("#^{@see (?\S+)::.(?\S+)}#", $sComment, $aMatches)) { + $sClass = $aMatches['class']; + $sProperty = $aMatches['property']; + try { + $oTargetClass = new ReflectionClass($sClass); + $oProperty = $oTargetClass->getProperty($sProperty); + $sComment = $oProperty->getDocComment(); + if (preg_match("#/\*\*\s*@var.*$sProperty\s*(?.*)\*/#", $sComment, $aMatches)) { + $sComment = trim($aMatches['comment']); + } + } + catch (ReflectionException $e) { + // Try with the current name space + $oLocalClass = new ReflectionClass($oMethod->class); + $sNameSpace = $oLocalClass->getNamespaceName(); + $sClass = $sNameSpace.'\\'.$sClass; + try { + $oTargetClass = new ReflectionClass($sClass); + $oProperty = $oTargetClass->getProperty($sProperty); + $sComment = $oProperty->getDocComment(); + if (preg_match("#/\*\*\s*@var.*$sProperty\s*(?.*)\*/#", $sComment, $aMatches)) { + $sComment = trim($aMatches['comment']); + } + } + catch (ReflectionException $e) { + } + } + } } else { $sComment = ''; } @@ -354,7 +376,7 @@ foreach ($aFactoryClasses as $sFactoryClass) { $sType = substr($sMethodName, strlen('Make')); $aDocType['comment'] = $sComment; - $aDocType['params'] = GetMethodParameters($oMethod, $sFullComment); + $aDocType['params'] = GetMethodParameters($oMethod); $aDocTypes[$sType] = $aDocType; } } @@ -376,7 +398,7 @@ foreach ($aFactoryClasses as $sFactoryClass) { $aReflectionParameters = $oMethod->getParameters(); $oReflectionParameter = $aReflectionParameters[0]; $sFullComment = GetMethodComment($oMethod, $oReflectionParameter->getName()); - $aParams = GetMethodParameters($oMethod, $sFullComment)[0]; + $aParams = GetMethodParameters($oMethod)[0]; $aParams['name'] = $sName; $aDocGeneralParams[] = $aParams; } diff --git a/.doc/UI/source/generated/Component/Alert/Alert.rst b/.doc/UI/source/generated/Component/Alert/Alert.rst index ec186a286..8aad9743f 100644 --- a/.doc/UI/source/generated/Component/Alert/Alert.rst +++ b/.doc/UI/source/generated/Component/Alert/Alert.rst @@ -239,13 +239,13 @@ Alert common parameters +-------------------+----------+------------------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Button/Button.rst b/.doc/UI/source/generated/Component/Button/Button.rst index 463e81be8..8a6bacd02 100644 --- a/.doc/UI/source/generated/Component/Button/Button.rst +++ b/.doc/UI/source/generated/Component/Button/Button.rst @@ -72,13 +72,13 @@ Button Neutral :parameters: -+--------+--------+-----------+------+----------------------------+ -| sLabel | string | mandatory | | | -+--------+--------+-----------+------+----------------------------+ -| sName | string | optional | NULL | See {@link Button::$sName} | -+--------+--------+-----------+------+----------------------------+ -| sId | string | optional | NULL | | -+--------+--------+-----------+------+----------------------------+ ++--------+--------+-----------+------+--------------------------------------------+ +| sLabel | string | mandatory | | | ++--------+--------+-----------+------+--------------------------------------------+ +| sName | string | optional | NULL | The HTML name of the button, used by forms | ++--------+--------+-----------+------+--------------------------------------------+ +| sId | string | optional | NULL | UIBBlock main HTML tag id | ++--------+--------+-----------+------+--------------------------------------------+ .. _ButtonForPrimaryAction: @@ -443,11 +443,11 @@ Button common parameters +-------------------+--------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+--------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | CSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/ButtonGroup/ButtonGroup.rst b/.doc/UI/source/generated/Component/ButtonGroup/ButtonGroup.rst index 8d0b044c8..e1d71dee2 100644 --- a/.doc/UI/source/generated/Component/ButtonGroup/ButtonGroup.rst +++ b/.doc/UI/source/generated/Component/ButtonGroup/ButtonGroup.rst @@ -61,13 +61,13 @@ ButtonGroup common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddExtraBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | Buttons | array | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/CollapsibleSection/CollapsibleSection.rst b/.doc/UI/source/generated/Component/CollapsibleSection/CollapsibleSection.rst index 0ddca34d1..faa850fea 100644 --- a/.doc/UI/source/generated/Component/CollapsibleSection/CollapsibleSection.rst +++ b/.doc/UI/source/generated/Component/CollapsibleSection/CollapsibleSection.rst @@ -61,13 +61,13 @@ CollapsibleSection common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/DataTable/DataTable.rst b/.doc/UI/source/generated/Component/DataTable/DataTable.rst index 8d34b2cdf..4a7e1400d 100644 --- a/.doc/UI/source/generated/Component/DataTable/DataTable.rst +++ b/.doc/UI/source/generated/Component/DataTable/DataTable.rst @@ -202,13 +202,13 @@ DataTable common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Field/Field.rst b/.doc/UI/source/generated/Component/Field/Field.rst index e82a01b36..6c87f57ae 100644 --- a/.doc/UI/source/generated/Component/Field/Field.rst +++ b/.doc/UI/source/generated/Component/Field/Field.rst @@ -155,13 +155,13 @@ Field common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/FieldBadge/FieldBadge.rst b/.doc/UI/source/generated/Component/FieldBadge/FieldBadge.rst index 9808243f7..d5779d46d 100644 --- a/.doc/UI/source/generated/Component/FieldBadge/FieldBadge.rst +++ b/.doc/UI/source/generated/Component/FieldBadge/FieldBadge.rst @@ -61,13 +61,13 @@ FieldBadge common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/FieldSet/FieldSet.rst b/.doc/UI/source/generated/Component/FieldSet/FieldSet.rst index eae49aa0d..220fdf2a8 100644 --- a/.doc/UI/source/generated/Component/FieldSet/FieldSet.rst +++ b/.doc/UI/source/generated/Component/FieldSet/FieldSet.rst @@ -61,13 +61,13 @@ FieldSet common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Form/Form.rst b/.doc/UI/source/generated/Component/Form/Form.rst index 5052f251a..2d6db8a0d 100644 --- a/.doc/UI/source/generated/Component/Form/Form.rst +++ b/.doc/UI/source/generated/Component/Form/Form.rst @@ -61,13 +61,13 @@ Form common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Input/FileSelect/FileSelect.rst b/.doc/UI/source/generated/Component/Input/FileSelect/FileSelect.rst index 805ad44d2..8a3b7488f 100644 --- a/.doc/UI/source/generated/Component/Input/FileSelect/FileSelect.rst +++ b/.doc/UI/source/generated/Component/Input/FileSelect/FileSelect.rst @@ -57,11 +57,11 @@ FileSelect common parameters +-------------------+--------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+--------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | ButtonText | string | | +-------------------+--------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Input/Input.rst b/.doc/UI/source/generated/Component/Input/Input.rst index b83211288..735b0f2d9 100644 --- a/.doc/UI/source/generated/Component/Input/Input.rst +++ b/.doc/UI/source/generated/Component/Input/Input.rst @@ -111,11 +111,11 @@ Input common parameters +-------------------+--------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+--------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | CSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Input/Select/Select.rst b/.doc/UI/source/generated/Component/Input/Select/Select.rst index 859a88c96..dce187a16 100644 --- a/.doc/UI/source/generated/Component/Input/Select/Select.rst +++ b/.doc/UI/source/generated/Component/Input/Select/Select.rst @@ -86,13 +86,13 @@ Select common parameters +-------------------+--------------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+--------------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+--------------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+--------------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+--------------+------------------------------------------------------------+ | AddOption | SelectOption | | +-------------------+--------------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Input/Select/SelectOption.rst b/.doc/UI/source/generated/Component/Input/Select/SelectOption.rst index 8c7bd400a..71ca5aab9 100644 --- a/.doc/UI/source/generated/Component/Input/Select/SelectOption.rst +++ b/.doc/UI/source/generated/Component/Input/Select/SelectOption.rst @@ -61,11 +61,11 @@ SelectOption common parameters +-------------------+--------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+--------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | CSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Panel/Panel.rst b/.doc/UI/source/generated/Component/Panel/Panel.rst index a7806674e..b2b5256de 100644 --- a/.doc/UI/source/generated/Component/Panel/Panel.rst +++ b/.doc/UI/source/generated/Component/Panel/Panel.rst @@ -247,19 +247,19 @@ Panel common parameters +-------------------------+-----------------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------------+-----------------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------------+-----------------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------------+-----------------+------------------------------------------------------------+ | AddHtml | string | | +-------------------------+-----------------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------------+-----------------+------------------------------------------------------------+ | AddMainBlock | iUIBlock | | +-------------------------+-----------------+------------------------------------------------------------+ | AddMainBlocks | array | | +-------------------------+-----------------+------------------------------------------------------------+ -| AddSubBlock | iUIBlock | directly in the main area | +| AddSubBlock | iUIBlock | | +-------------------------+-----------------+------------------------------------------------------------+ | AddSubTitleBlock | iUIBlock | | +-------------------------+-----------------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Spinner/Spinner.rst b/.doc/UI/source/generated/Component/Spinner/Spinner.rst index f48cc7941..1c4e1c715 100644 --- a/.doc/UI/source/generated/Component/Spinner/Spinner.rst +++ b/.doc/UI/source/generated/Component/Spinner/Spinner.rst @@ -55,11 +55,11 @@ Spinner common parameters +-------------------+--------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+--------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | CSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Title/Title.rst b/.doc/UI/source/generated/Component/Title/Title.rst index 022607e76..799fd8e71 100644 --- a/.doc/UI/source/generated/Component/Title/Title.rst +++ b/.doc/UI/source/generated/Component/Title/Title.rst @@ -140,13 +140,13 @@ Title common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Toolbar/Toolbar.rst b/.doc/UI/source/generated/Component/Toolbar/Toolbar.rst index 551ab00c9..6406a0820 100644 --- a/.doc/UI/source/generated/Component/Toolbar/Toolbar.rst +++ b/.doc/UI/source/generated/Component/Toolbar/Toolbar.rst @@ -105,13 +105,13 @@ Toolbar common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Component/Toolbar/ToolbarSpacer/ToolbarSpacer.rst b/.doc/UI/source/generated/Component/Toolbar/ToolbarSpacer/ToolbarSpacer.rst index f28a147a6..6d85daccb 100644 --- a/.doc/UI/source/generated/Component/Toolbar/ToolbarSpacer/ToolbarSpacer.rst +++ b/.doc/UI/source/generated/Component/Toolbar/ToolbarSpacer/ToolbarSpacer.rst @@ -55,11 +55,11 @@ ToolbarSpacer common parameters +-------------------+--------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+--------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+--------+------------------------------------------------------------+ | CSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+--------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Layout/MultiColumn/Column/Column.rst b/.doc/UI/source/generated/Layout/MultiColumn/Column/Column.rst index 482643e55..3e8a437d6 100644 --- a/.doc/UI/source/generated/Layout/MultiColumn/Column/Column.rst +++ b/.doc/UI/source/generated/Layout/MultiColumn/Column/Column.rst @@ -82,13 +82,13 @@ Column common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Layout/MultiColumn/MultiColumn.rst b/.doc/UI/source/generated/Layout/MultiColumn/MultiColumn.rst index bdd6738c6..b711ae3a5 100644 --- a/.doc/UI/source/generated/Layout/MultiColumn/MultiColumn.rst +++ b/.doc/UI/source/generated/Layout/MultiColumn/MultiColumn.rst @@ -61,13 +61,13 @@ MultiColumn common parameters +-------------------+----------+------------------------------------------------------------+ | AddColumn | Column | | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ diff --git a/.doc/UI/source/generated/Layout/UIContentBlock.rst b/.doc/UI/source/generated/Layout/UIContentBlock.rst index 80b06190b..616ac1203 100644 --- a/.doc/UI/source/generated/Layout/UIContentBlock.rst +++ b/.doc/UI/source/generated/Layout/UIContentBlock.rst @@ -85,13 +85,13 @@ UIContentBlock common parameters +-------------------+----------+------------------------------------------------------------+ | AddCSSClasses | array | like ['ibo-is-hidden', 'ibo-alert--body'] | +-------------------+----------+------------------------------------------------------------+ -| AddCssFileRelPath | string | relative path of a CSS file to add | +| AddCssFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddDeferredBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+ | AddHtml | string | | +-------------------+----------+------------------------------------------------------------+ -| AddJsFileRelPath | string | relative path of a JS file to add | +| AddJsFileRelPath | string | | +-------------------+----------+------------------------------------------------------------+ | AddSubBlock | iUIBlock | | +-------------------+----------+------------------------------------------------------------+