Skip to content

Commit 8e88693

Browse files
committed
fix: missing slot atrribute
1 parent 9fe21a2 commit 8e88693

519 files changed

Lines changed: 19087 additions & 507 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/Element/Block/Article.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Article - The article element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -96,6 +96,7 @@ class Article extends BlockElement
9696
use GlobalAttribute\IdTrait;
9797
use GlobalAttribute\InputmodeTrait;
9898
use GlobalAttribute\LangTrait;
99+
use GlobalAttribute\SlotTrait;
99100
use GlobalAttribute\SpellcheckTrait;
100101
use GlobalAttribute\StyleTrait;
101102
use GlobalAttribute\TabindexTrait;

src/Element/Block/Aside.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Aside - The aside element represents a section of a page that consists of content that is tangentially related to the content around the aside element, and which could be considered separate from that content.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -107,6 +107,7 @@ class Aside extends BlockElement
107107
use GlobalAttribute\IdTrait;
108108
use GlobalAttribute\InputmodeTrait;
109109
use GlobalAttribute\LangTrait;
110+
use GlobalAttribute\SlotTrait;
110111
use GlobalAttribute\SpellcheckTrait;
111112
use GlobalAttribute\StyleTrait;
112113
use GlobalAttribute\TabindexTrait;

src/Element/Block/Audio.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Audio - The audio element is used to embed sound content in documents. It may contain one or more audio sources, represented using the src attribute or the source element.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -45,6 +45,7 @@ class Audio extends BlockElement
4545
use GlobalAttribute\HiddenTrait;
4646
use GlobalAttribute\IdTrait;
4747
use GlobalAttribute\LangTrait;
48+
use GlobalAttribute\SlotTrait;
4849
use GlobalAttribute\StyleTrait;
4950
use GlobalAttribute\TabindexTrait;
5051
use GlobalAttribute\TitleTrait;

src/Element/Block/Blockquote.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Blockquote - The blockquote element represents a section that is quoted from another source. Content inside a blockquote must be quoted from another source, whose address, if it has one, may be cited in the cite attribute.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -41,6 +41,7 @@ class Blockquote extends BlockElement
4141
use GlobalAttribute\IdTrait;
4242
use GlobalAttribute\InputmodeTrait;
4343
use GlobalAttribute\LangTrait;
44+
use GlobalAttribute\SlotTrait;
4445
use GlobalAttribute\SpellcheckTrait;
4546
use GlobalAttribute\StyleTrait;
4647
use GlobalAttribute\TabindexTrait;

src/Element/Block/Body.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Body - The body element represents the content of an HTML document. All the contents such as text, images, headings, links, tables, etc. are placed between the body tags.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block

src/Element/Block/Canvas.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Canvas - The canvas element is used to draw graphics, on the fly, via scripting (usually JavaScript).
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -41,6 +41,7 @@ class Canvas extends BlockElement
4141
use GlobalAttribute\IdTrait;
4242
use GlobalAttribute\InputmodeTrait;
4343
use GlobalAttribute\LangTrait;
44+
use GlobalAttribute\SlotTrait;
4445
use GlobalAttribute\SpellcheckTrait;
4546
use GlobalAttribute\StyleTrait;
4647
use GlobalAttribute\TabindexTrait;

src/Element/Block/Caption.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Caption - The caption element represents the title of the table that is its parent, if it has a parent and that is a table element.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -39,6 +39,7 @@ class Caption extends BlockElement
3939
use GlobalAttribute\IdTrait;
4040
use GlobalAttribute\InputmodeTrait;
4141
use GlobalAttribute\LangTrait;
42+
use GlobalAttribute\SlotTrait;
4243
use GlobalAttribute\SpellcheckTrait;
4344
use GlobalAttribute\StyleTrait;
4445
use GlobalAttribute\TabindexTrait;

src/Element/Block/ColumnGroup.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* ColumnGroup - The colgroup element represents a group of one or more columns in the table that is its parent, if it has a parent and that is a table element.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -28,6 +28,7 @@ class ColumnGroup extends BlockElement
2828
use GlobalAttribute\HiddenTrait;
2929
use GlobalAttribute\IdTrait;
3030
use GlobalAttribute\LangTrait;
31+
use GlobalAttribute\SlotTrait;
3132
use GlobalAttribute\StyleTrait;
3233
/**
3334
* The HTML element name

src/Element/Block/DataList.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* DataList - The datalist element contains a set of option elements that represent the permissible or recommended options available to users.
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -42,6 +42,7 @@ class DataList extends BlockElement
4242
use GlobalAttribute\IdTrait;
4343
use GlobalAttribute\InputmodeTrait;
4444
use GlobalAttribute\LangTrait;
45+
use GlobalAttribute\SlotTrait;
4546
use GlobalAttribute\SpellcheckTrait;
4647
use GlobalAttribute\StyleTrait;
4748
use GlobalAttribute\TabindexTrait;

src/Element/Block/DefinitionDescription.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* DefinitionDescription - The dd element represents the description, definition, or value, part of a term-description group in a description list (dl element).
66
*
7-
* @generated 2025-11-07 16:53:19
7+
* @generated 2025-11-07 17:10:20
88
* @category HTML
99
* @package vardumper/extended-htmldocument
1010
* @subpackage Html\Element\Block
@@ -103,6 +103,7 @@ class DefinitionDescription extends BlockElement
103103
use GlobalAttribute\IdTrait;
104104
use GlobalAttribute\InputmodeTrait;
105105
use GlobalAttribute\LangTrait;
106+
use GlobalAttribute\SlotTrait;
106107
use GlobalAttribute\SpellcheckTrait;
107108
use GlobalAttribute\StyleTrait;
108109
use GlobalAttribute\TabindexTrait;

0 commit comments

Comments
 (0)