@charcoal-ui/foundation 3.13.0 → 3.14.0
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/package.json +2 -2
- package/src/README.mdx +37 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@charcoal-ui/foundation",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.14.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"url": "https://github.com/pixiv/charcoal.git",
|
|
38
38
|
"directory": "packages/foundation"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "694af78ad36f1caa108a4c3fae4f51ce54b7f78b"
|
|
41
41
|
}
|
package/src/README.mdx
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Meta } from '@storybook/addon-docs'
|
|
2
|
+
|
|
3
|
+
<Meta title="foundation/README" />
|
|
4
|
+
|
|
5
|
+
# @charcoal-ui/foundation クイックスタート
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/@charcoal-ui/foundation)
|
|
8
|
+
|
|
9
|
+
## インストール
|
|
10
|
+
|
|
11
|
+
### npm
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @charcoal-ui/foundation
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### yarn
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
yarn add @charcoal-ui/foundation
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### pnpm
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
pnpm add @charcoal-ui/foundation
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### bun
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
bun add @charcoal-ui/foundation
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## 概要
|
|
36
|
+
|
|
37
|
+
`@charcoal-ui` で利用されるプリミティブな型定義や値を提供します。
|