@ng-zen/cli 19.2.0-next.2 โ 19.2.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# [19.2.0-next.3](https://github.com/kstepien3/ng-zen/compare/v19.2.0-next.2...v19.2.0-next.3) (2025-05-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **button:** update selector to support is() pseudo-class ([#195](https://github.com/kstepien3/ng-zen/issues/195)) ([e85135e](https://github.com/kstepien3/ng-zen/commit/e85135ef45c7a38b5597624254c7b0adae6e4db4))
|
|
7
|
+
|
|
8
|
+
## [19.2.0-next.2](https://github.com/kstepien3/ng-zen/compare/v19.2.0-next.1...v19.2.0-next.2) (2025-05-24)
|
|
9
|
+
|
|
10
|
+
### ๐ New Features
|
|
11
|
+
|
|
12
|
+
* **button:** add css variables for styling ([#191](https://github.com/kstepien3/ng-zen/issues/191)) ([7278585](https://github.com/kstepien3/ng-zen/commit/7278585c642a01468c2ef85dc39f3e767287ccf7))
|
|
13
|
+
|
|
14
|
+
### ๐งน Chore
|
|
15
|
+
|
|
16
|
+
* **build:** update output directory and release configuration ([#190](https://github.com/kstepien3/ng-zen/issues/190)) ([bae868c](https://github.com/kstepien3/ng-zen/commit/bae868cf00481a685fc02ee73a34ab4b787e9e67))
|
|
17
|
+
* **dependencies:** restore conventional-changelog-conventionalcommits ([#189](https://github.com/kstepien3/ng-zen/issues/189)) ([5afabcb](https://github.com/kstepien3/ng-zen/commit/5afabcb1050da49404ed89a83fee57af1872b729))
|
|
18
|
+
|
|
1
19
|
## 19.2.0-next.1 (2025-05-23)
|
|
2
20
|
|
|
3
21
|
* chore(dependencies): update dependencies (#187) ([7028a9e](https://github.com/kstepien3/ng-zen/commit/7028a9e)), closes [#187](https://github.com/kstepien3/ng-zen/issues/187)
|
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# @ng-zen/cli
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@ng-zen/cli)
|
|
6
|
-
[](https://www.npmjs.com/package/@ng-zen/cli)
|
|
3
|
+
[](https://github.com/kstepien3/ng-zen/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@ng-zen/cli)
|
|
7
5
|
[](https://github.com/kstepien3/ng-zen/blob/master/LICENSE)
|
|
8
6
|
|
|
9
7
|
[](https://github.com/kstepien3/ng-zen)
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
|
15
15
|
*/
|
|
16
16
|
@Component({
|
|
17
17
|
// eslint-disable-next-line @angular-eslint/component-selector
|
|
18
|
-
selector: 'button
|
|
18
|
+
selector: ':is(button, a):is([zen-button], [zen-btn])',
|
|
19
19
|
template: `
|
|
20
20
|
<ng-content />
|
|
21
21
|
`,
|