@codefast/ui 0.3.1-canary.2 → 0.3.1-canary.4
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 +30 -0
- package/dist/cjs/index.css +18 -1
- package/dist/esm/index.css +18 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @codefast/ui
|
|
2
2
|
|
|
3
|
+
## 0.3.1-canary.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d9e10c7`](https://github.com/codefastlabs/codefast/commit/d9e10c71202f28a3320431de646dcd51a42e3169) Thanks [@thevuong](https://github.com/thevuong)! - feat: add environment-aware build configurations
|
|
8
|
+
|
|
9
|
+
- [`f1b3b4d`](https://github.com/codefastlabs/codefast/commit/f1b3b4d864e4e0975c384e4e8e59db9edde2fce9) Thanks [@thevuong](https://github.com/thevuong)! - feat(ui): enhance scrollbar styles and optimize dev scripts
|
|
10
|
+
|
|
11
|
+
- [`9731770`](https://github.com/codefastlabs/codefast/commit/9731770d6b1a1bc713374f1c12b50a4dbb970fcf) Thanks [@thevuong](https://github.com/thevuong)! - fix(styles): correct CSS variable names for outline and scrollbar
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`d9e10c7`](https://github.com/codefastlabs/codefast/commit/d9e10c71202f28a3320431de646dcd51a42e3169), [`f1b3b4d`](https://github.com/codefastlabs/codefast/commit/f1b3b4d864e4e0975c384e4e8e59db9edde2fce9), [`9731770`](https://github.com/codefastlabs/codefast/commit/9731770d6b1a1bc713374f1c12b50a4dbb970fcf)]:
|
|
14
|
+
- @codefast-ui/progress-circle@0.3.1-canary.4
|
|
15
|
+
- @codefast-ui/checkbox-group@0.3.1-canary.4
|
|
16
|
+
- @codefast-ui/input-number@0.3.1-canary.4
|
|
17
|
+
- @codefast-ui/input@0.3.1-canary.4
|
|
18
|
+
- @codefast/hooks@0.3.1-canary.4
|
|
19
|
+
|
|
20
|
+
## 0.3.1-canary.3
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- [`d0f720b`](https://github.com/codefastlabs/codefast/commit/d0f720bff44dfcd6a44b542b9f7a5cc2962b4f81) Thanks [@thevuong](https://github.com/thevuong)! - fix(package.json): update repository URL format and bin path
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [[`d0f720b`](https://github.com/codefastlabs/codefast/commit/d0f720bff44dfcd6a44b542b9f7a5cc2962b4f81)]:
|
|
27
|
+
- @codefast-ui/progress-circle@0.3.1-canary.3
|
|
28
|
+
- @codefast-ui/checkbox-group@0.3.1-canary.3
|
|
29
|
+
- @codefast-ui/input-number@0.3.1-canary.3
|
|
30
|
+
- @codefast-ui/input@0.3.1-canary.3
|
|
31
|
+
- @codefast/hooks@0.3.1-canary.3
|
|
32
|
+
|
|
3
33
|
## 0.3.1-canary.2
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/dist/cjs/index.css
CHANGED
|
@@ -11,7 +11,24 @@
|
|
|
11
11
|
::backdrop,
|
|
12
12
|
::file-selector-button {
|
|
13
13
|
border-color: var(--color-border);
|
|
14
|
-
outline-color: color-mix(in oklab, var(--ring) 20%, transparent);
|
|
14
|
+
outline-color: color-mix(in oklab, var(--color-ring) 20%, transparent);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
::-webkit-scrollbar {
|
|
18
|
+
@apply size-2;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
::-webkit-scrollbar-track {
|
|
22
|
+
@apply bg-transparent;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
::-webkit-scrollbar-thumb {
|
|
26
|
+
@apply bg-border rounded-full;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
* {
|
|
30
|
+
scrollbar-width: thin;
|
|
31
|
+
scrollbar-color: var(--color-border) transparent
|
|
15
32
|
}
|
|
16
33
|
|
|
17
34
|
html,
|
package/dist/esm/index.css
CHANGED
|
@@ -11,7 +11,24 @@
|
|
|
11
11
|
::backdrop,
|
|
12
12
|
::file-selector-button {
|
|
13
13
|
border-color: var(--color-border);
|
|
14
|
-
outline-color: color-mix(in oklab, var(--ring) 20%, transparent);
|
|
14
|
+
outline-color: color-mix(in oklab, var(--color-ring) 20%, transparent);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
::-webkit-scrollbar {
|
|
18
|
+
@apply size-2;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
::-webkit-scrollbar-track {
|
|
22
|
+
@apply bg-transparent;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
::-webkit-scrollbar-thumb {
|
|
26
|
+
@apply bg-border rounded-full;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
* {
|
|
30
|
+
scrollbar-width: thin;
|
|
31
|
+
scrollbar-color: var(--color-border) transparent
|
|
15
32
|
}
|
|
16
33
|
|
|
17
34
|
html,
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefast/ui",
|
|
3
|
-
"version": "0.3.1-canary.
|
|
3
|
+
"version": "0.3.1-canary.4",
|
|
4
4
|
"bugs": {
|
|
5
5
|
"url": "https://github.com/codefastlabs/codefast/issues"
|
|
6
6
|
},
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/codefastlabs/codefast.git",
|
|
9
|
+
"url": "git+https://github.com/codefastlabs/codefast.git",
|
|
10
10
|
"directory": "packages/ui"
|
|
11
11
|
},
|
|
12
12
|
"license": "MIT",
|
|
@@ -779,11 +779,11 @@
|
|
|
779
779
|
"tailwind-merge": "^3.2.0",
|
|
780
780
|
"tailwind-variants": "^1.0.0",
|
|
781
781
|
"vaul": "^1.1.2",
|
|
782
|
-
"@codefast-ui/input": "0.3.1-canary.
|
|
783
|
-
"@codefast-ui/input-number": "0.3.1-canary.
|
|
784
|
-
"@codefast-ui/
|
|
785
|
-
"@codefast/hooks": "0.3.1-canary.
|
|
786
|
-
"@codefast-ui/
|
|
782
|
+
"@codefast-ui/input": "0.3.1-canary.4",
|
|
783
|
+
"@codefast-ui/input-number": "0.3.1-canary.4",
|
|
784
|
+
"@codefast-ui/progress-circle": "0.3.1-canary.4",
|
|
785
|
+
"@codefast/hooks": "0.3.1-canary.4",
|
|
786
|
+
"@codefast-ui/checkbox-group": "0.3.1-canary.4"
|
|
787
787
|
},
|
|
788
788
|
"devDependencies": {
|
|
789
789
|
"@rsbuild/plugin-react": "^1.2.0",
|
|
@@ -806,8 +806,8 @@
|
|
|
806
806
|
"tailwindcss": "^4.1.4",
|
|
807
807
|
"ts-node": "^10.9.2",
|
|
808
808
|
"typescript": "^5.8.3",
|
|
809
|
-
"@codefast/eslint-config": "0.3.1-canary.
|
|
810
|
-
"@codefast/typescript-config": "0.3.1-canary.
|
|
809
|
+
"@codefast/eslint-config": "0.3.1-canary.4",
|
|
810
|
+
"@codefast/typescript-config": "0.3.1-canary.4"
|
|
811
811
|
},
|
|
812
812
|
"peerDependencies": {
|
|
813
813
|
"@types/react": "*",
|
|
@@ -846,7 +846,7 @@
|
|
|
846
846
|
"build": "rslib build",
|
|
847
847
|
"check-types": "tsc --noEmit",
|
|
848
848
|
"clean": "rimraf node_modules dist",
|
|
849
|
-
"dev": "rslib build --watch",
|
|
849
|
+
"dev": "cross-env NODE_ENV=development rslib build --watch",
|
|
850
850
|
"lint": "eslint --cache --max-warnings 0",
|
|
851
851
|
"lint:inspect": "npx @eslint/config-inspector@latest"
|
|
852
852
|
}
|