html icon indicating copy to clipboard operation
html copied to clipboard

Handy library to generate HTML

Results 21 html issues
Sort by recently updated
recently updated
newest added

status:ready for adoption

I've got on the HTMX boat recently (apparently with a big chunk of the industry) and I think it's a match made in heaven for Yii framework, considering the `renderPartial`...

| Q | A | ------------- | --- | Is bugfix? | ❌ | New feature? | ❌ | Breaks BC? | ❌ | Fixed issues | Just a test...

```php $items = ['blue', 'green', 'red']; echo Div::tag()->content( 'Collors', '', (static function() use ($items): Generator { foreach ($items as $item) { yield Div::tag()->content($item); } })() ); ``` See an example...

status:under discussion
type:feature

This is confusing: https://github.com/yiisoft/html/blob/e62c412af927a93df6cfa603bf63d61b1bf19045/tests/common/Tag/Base/TagTest.php#L156-L158 Need to decide whether it's OK: https://github.com/yiisoft/html/blob/e62c412af927a93df6cfa603bf63d61b1bf19045/tests/common/Tag/Base/TagTest.php#L175

type:task

- Finalize constants in `MediaTag` - Raise PhpUnit to `^10` - Move tests from `php81` to `common` directory - Remove `psalm-suppress` annotations for PHP 8.0 only