-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## 变化 - 增加了组件的 CSS 变量补全 - 增加了 CSS 全局变量(颜色变量)补全 - 将 `custom-data/soberjs.html-data.json` 重命名为 [`custom-data/components.html-data.json`](./custom-data/components.html-data.json) - 增加了 [开发指南文档](./docs/dev-guide.md) **Full Changelog**: https://github.com/lingbopro/soberjs-vscode/blob/dev/CHANGELOG.md
- Loading branch information
Showing
9 changed files
with
871 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
.github/** | ||
.vscode/** | ||
.vscode-test/** | ||
out/** | ||
docs/** | ||
.gitignore | ||
.gitattributes | ||
out/** | ||
CONTRIBUTING.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# 贡献指南 | ||
|
||
欢迎您的贡献!请遵循以下指南: | ||
|
||
Fork 存储库。 | ||
为您的功能或 bug 修复创建一个新分支。 | ||
为您的更改编写代码。 | ||
使用版本号(或大致内容)作为标题提交您的更改。 | ||
将您的分支推送到您的 fork。 | ||
向主存储库提交拉取请求 **(`dev` 分支)**。 | ||
|
||
另外,您可以参阅 [开发指南](./docs/dev-guide.md)。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
{ | ||
"version": 1.1, | ||
"properties": [ | ||
{ | ||
"name": "--ripple-color", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "波纹颜色\n\n**组件:**\n\n- `<s-ripple>` 波纹 Ripple" | ||
}, | ||
"references": [ | ||
{ | ||
"name": "文档: 波纹 Ripple", | ||
"url": "https://soberjs.com/component/ripple" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "--ripple-opacity", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "波纹不透明度\n\n**组件:**\n\n- `<s-ripple>` 波纹 Ripple" | ||
}, | ||
"references": [ | ||
{ | ||
"name": "文档: 波纹 Ripple", | ||
"url": "https://soberjs.com/component/ripple" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "--border-radius", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "边框圆角\n\n**组件:**\n\n- `<s-text-field>` 文本框 Text Field\n- `<s-picker>` 选择框 Picker" | ||
}, | ||
"references": [ | ||
{ | ||
"name": "文档: 文本框 Text Field", | ||
"url": "https://soberjs.com/component/text-field" | ||
}, | ||
{ | ||
"name": "文档: 选择框 Picker", | ||
"url": "https://soberjs.com/component/picker" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "--border-width", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "边框宽度\n\n**组件:**\n\n- `<s-text-field>` 文本框 Text Field\n- `<s-picker>` 选择框 Picker" | ||
}, | ||
"references": [ | ||
{ | ||
"name": "文档: 文本框 Text Field", | ||
"url": "https://soberjs.com/component/text-field" | ||
}, | ||
{ | ||
"name": "文档: 选择框 Picker", | ||
"url": "https://soberjs.com/component/picker" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "--border-color", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "边框颜色\n\n**组件:**\n\n- `<s-text-field>` 文本框 Text Field\n- `<s-picker>` 选择框 Picker" | ||
}, | ||
"references": [ | ||
{ | ||
"name": "文档: 文本框 Text Field", | ||
"url": "https://soberjs.com/component/text-field" | ||
}, | ||
{ | ||
"name": "文档: 选择框 Picker", | ||
"url": "https://soberjs.com/component/picker" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "--padding", | ||
"description": { | ||
"kind": "markdown", | ||
"value": "边框内边距\n\n**组件:**\n\n- `<s-text-field>` 文本框 Text Field\n- `<s-picker>` 选择框 Picker" | ||
}, | ||
"references": [ | ||
{ | ||
"name": "文档: 文本框 Text Field", | ||
"url": "https://soberjs.com/component/text-field" | ||
}, | ||
{ | ||
"name": "文档: 选择框 Picker", | ||
"url": "https://soberjs.com/component/picker" | ||
} | ||
] | ||
} | ||
] | ||
} |
File renamed without changes.
Oops, something went wrong.