@lazar-ui/kit 0.2.2 → 0.2.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 +16 -0
- package/README.md +1 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.3] - 2026-06-01
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **Button**: fix icon alignment inside button (flex layout)
|
|
8
|
+
- **Input**: fix input base background color
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
|
|
12
|
+
- **README**: fix license badge link to point to npmjs
|
|
13
|
+
|
|
14
|
+
### Chores
|
|
15
|
+
|
|
16
|
+
- **package.json**: fix repository URL, add LICENSE to files
|
|
17
|
+
- **CI**: switch from NPM_TOKEN to Trusted Publisher (OIDC)
|
|
18
|
+
|
|
3
19
|
## [0.2.2] - 2026-06-01
|
|
4
20
|
|
|
5
21
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @lazar-ui/kit
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@lazar-ui/kit)
|
|
4
|
-
[](https://
|
|
4
|
+
[](https://www.npmjs.com/package/@lazar-ui/kit)
|
|
5
5
|
[](https://lazar-ui.github.io/docs)
|
|
6
6
|
|
|
7
7
|
A component library for building admin panels, dashboards, and internal tools.
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lazar-ui/kit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "A component library for building admin panels, dashboards, and internal tools.",
|
|
6
6
|
"homepage": "https://lazar-ui.github.io/docs",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/
|
|
9
|
+
"url": "git+https://github.com/lazar-ui/lazar-ui.git",
|
|
10
10
|
"directory": "packages/kit"
|
|
11
11
|
},
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/
|
|
13
|
+
"url": "https://github.com/lazar-ui/lazar-ui/issues"
|
|
14
14
|
},
|
|
15
15
|
"main": "./dist/index.js",
|
|
16
16
|
"types": "./dist/index.d.ts",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist",
|
|
22
22
|
"README.md",
|
|
23
|
-
"CHANGELOG.md"
|
|
23
|
+
"CHANGELOG.md",
|
|
24
|
+
"LICENSE"
|
|
24
25
|
],
|
|
25
26
|
"exports": {
|
|
26
27
|
"./css/*": "./dist/css/*",
|