Major changes: - New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind - 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理 - Data catalog with charts (DMS/ADAS/Lane 3-tab view) - Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance - Audit enhancements: batch operations, rejection categories, Feishu notifications - Operation audit log (操作日志) - World model simulation studio (仿真工坊) - Dataset version management with snapshots and diff - ADAS 7-class dataset integration (138K images organized + compressed) - User management with Feishu integration and pagination - CRUD/search/filter on all pages, card layout redesign - PIL-optimized image overlay rendering - Auto-snapshot on build, in_review workflow stage - Removed embedded algorithm code (now in workspace)
28 lines
870 B
Markdown
28 lines
870 B
Markdown
# camelcase-css [![NPM Version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]
|
|
|
|
> Convert a kebab-cased CSS property into a camelCased DOM property.
|
|
|
|
|
|
## Installation
|
|
[Node.js](http://nodejs.org/) `>= 6` is required. Type this at the command line:
|
|
```shell
|
|
npm install camelcase-css
|
|
```
|
|
|
|
|
|
## Usage
|
|
```js
|
|
const camelCaseCSS = require('camelcase-css');
|
|
|
|
camelCaseCSS('-webkit-border-radius'); //-> WebkitBorderRadius
|
|
camelCaseCSS('-moz-border-radius'); //-> MozBorderRadius
|
|
camelCaseCSS('-ms-border-radius'); //-> msBorderRadius
|
|
camelCaseCSS('border-radius'); //-> borderRadius
|
|
```
|
|
|
|
|
|
[npm-image]: https://img.shields.io/npm/v/camelcase-css.svg
|
|
[npm-url]: https://npmjs.org/package/camelcase-css
|
|
[travis-image]: https://img.shields.io/travis/stevenvachon/camelcase-css.svg
|
|
[travis-url]: https://travis-ci.org/stevenvachon/camelcase-css
|