create-teamix-evo 0.3.0 → 0.3.1
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/README.md
CHANGED
|
@@ -58,7 +58,6 @@ my-app/
|
|
|
58
58
|
├── .qoder/skills/ # AI skills mirror for Qoder(含 variant 设计 skill)
|
|
59
59
|
├── .claude/skills/ # AI skills mirror for Claude Code(含 variant 设计 skill)
|
|
60
60
|
├── src/
|
|
61
|
-
│ ├── preferences.css # shadcn 全局偏好(frozen,由 ui init 部署)
|
|
62
61
|
│ ├── components/ui/ # ui add 落地的真实组件(如 button.tsx,frozen)
|
|
63
62
|
│ ├── components/_placeholder/ # console preset 占位组件(待 ui 包补齐)
|
|
64
63
|
│ ├── pages/, layouts/, routes.tsx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-teamix-evo",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Scaffold a Vite + React + TypeScript project pre-wired with Teamix Evo design tokens, AI skills, and UI components.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"execa": "^9.0.0",
|
|
19
19
|
"handlebars": "^4.7.0",
|
|
20
20
|
"kolorist": "^1.8.0",
|
|
21
|
-
"teamix-evo": "0.4.
|
|
21
|
+
"teamix-evo": "0.4.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/cross-spawn": "^6.0.6",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
- **设计 tokens**:`tokens/`(variant: `{{tokensVariant}}`)
|
|
16
16
|
- **AI skills**:`.qoder/skills/` / `.claude/skills/`(含 `teamix-evo-design-{{tokensVariant}}` 自包含设计规则)
|
|
17
17
|
- **UI 组件**:`src/components/ui/`(已落地:`{{uiInstalled}}`)
|
|
18
|
-
- **shadcn 全局偏好**:`src/preferences.css`(frozen)
|
|
19
18
|
|
|
20
19
|
## 更新设计资产
|
|
21
20
|
|
|
@@ -4,5 +4,17 @@
|
|
|
4
4
|
@import '../tokens/tokens.theme.css';
|
|
5
5
|
@import '../tokens/tokens.overrides.css';
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
/**
|
|
8
|
+
* Browser quirks reset — `<input type="search">` 原生 clear / 放大镜按钮屏蔽,
|
|
9
|
+
* 让 `Input` 自带的 `clearable` / `suffix={<Search/>}` 视觉一致。
|
|
10
|
+
*/
|
|
11
|
+
input[type='search']::-webkit-search-decoration,
|
|
12
|
+
input[type='search']::-webkit-search-cancel-button,
|
|
13
|
+
input[type='search']::-webkit-search-results-button,
|
|
14
|
+
input[type='search']::-webkit-search-results-decoration {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
input[type='search']::-ms-clear,
|
|
18
|
+
input[type='search']::-ms-reveal {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|