@openameba/spindle-ui 0.59.0 → 0.61.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.61.0](https://github.com/openameba/spindle/compare/@openameba/spindle-ui@0.60.0...@openameba/spindle-ui@0.61.0) (2023-07-21)
7
+
8
+ **Note:** Version bump only for package @openameba/spindle-ui
9
+
10
+ # [0.60.0](https://github.com/openameba/spindle/compare/@openameba/spindle-ui@0.59.0...@openameba/spindle-ui@0.60.0) (2023-07-05)
11
+
12
+ **Note:** Version bump only for package @openameba/spindle-ui
13
+
6
14
  # [0.59.0](https://github.com/openameba/spindle/compare/@openameba/spindle-ui@0.58.7...@openameba/spindle-ui@0.59.0) (2023-06-28)
7
15
 
8
16
  ### Features
package/README.md CHANGED
@@ -128,6 +128,17 @@ yarn generate
128
128
  ✔ src/index.css
129
129
  ```
130
130
 
131
+ ## 開発ガイドライン
132
+
133
+ ### アニメーション
134
+ Spindleでは、[Amebaらしさ](https://spindle.ameba.design/principles/design/)を表現するためにできる限りアニメーションを付与したいと考えています。ただしプラットフォームでの実装難易度による開発コスト(短期的には開発時間、中長期的には変更のしにくさ、テストのしにくさ、予期せぬ問題の発生)を考慮し、アニメーション対応のガイドラインを作成しました。アニメーションを付与する際には以下のフローにそって判断してください。わからない場合には都度開発メンバーにヒアリングしてください。
135
+
136
+ - 機能的にアニメーションが必須な場合 (1)
137
+ - まず標準的な方法で実装します。それが難しい場合にはハック的な方法を使って実装します (1.1)
138
+ - 機能的にアニメーションが必須ではない場合 (2)
139
+ - 標準的な方法で実装できる場合は実装します (2.1)
140
+ - ハック的な方法が必要な場合は、アニメーション実装をしません (2.2)
141
+
131
142
  ## ライセンス
132
143
  Spindle UIはMITライセンスで公開されています。ただし、アイコンは[Spindle Icons](https://github.com/openameba/spindle/tree/main/packages/spindle-icons#%E3%83%A9%E3%82%A4%E3%82%BB%E3%83%B3%E3%82%B9)に準じて、Creative Commons BY-NC-ND 4.0ライセンスで公開されています。
133
144
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openameba/spindle-ui",
3
- "version": "0.59.0",
3
+ "version": "0.61.0",
4
4
  "main": "./index.js",
5
5
  "module": "./index.mjs",
6
6
  "types": "./index.d.ts",
@@ -52,7 +52,7 @@
52
52
  }
53
53
  },
54
54
  "dependencies": {
55
- "@openameba/spindle-hooks": "^0.14.1",
55
+ "@openameba/spindle-hooks": "^0.15.0",
56
56
  "ameba-color-palette.css": "^4.9.0",
57
57
  "react-merge-refs": "^1.1.0"
58
58
  },
@@ -79,7 +79,7 @@
79
79
  "bundlesize": "^0.18.0",
80
80
  "cssnano": "^4.1.10",
81
81
  "dialog-polyfill": "^0.5.6",
82
- "firebase-tools": "^11.0.0",
82
+ "firebase-tools": "^12.0.0",
83
83
  "jest": "^29.0.0",
84
84
  "jest-environment-jsdom": "^29.0.0",
85
85
  "postcss-cli": "^8.0.0",
@@ -88,14 +88,14 @@
88
88
  "react-dom": "^17.0.1",
89
89
  "reg-suit": "^0.12.0",
90
90
  "scaffdog": "^2.4.0",
91
- "stylelint": "^13.6.1",
91
+ "stylelint": "^15.0.0",
92
92
  "stylelint-config-prettier": "^8.0.2",
93
93
  "stylelint-config-standard": "^20.0.0",
94
94
  "stylelint-order": "^4.1.0",
95
95
  "stylelint-prettier": "^1.1.2",
96
96
  "stylelint-selector-bem-pattern": "^2.1.0",
97
- "ts-jest": "29.1.0",
97
+ "ts-jest": "29.1.1",
98
98
  "webpack": "^5.73.0"
99
99
  },
100
- "gitHead": "0cea527fd66c6b61d8326b0b4c2996eedecabc62"
100
+ "gitHead": "b5a798a7d276017a5e812930becee314fb0d2a7f"
101
101
  }