@geckou/ui-core 0.7.0 → 0.8.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/README.md +4 -0
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -171,6 +171,10 @@ import type { Validates, Option, StateVariation, DateObject } from '@geckou/ui-c
|
|
|
171
171
|
|
|
172
172
|
型の一覧は [Vue パッケージの README](../vue/README.md#types) を参照してください。
|
|
173
173
|
|
|
174
|
+
## 0.8.0 の変更
|
|
175
|
+
|
|
176
|
+
- `RadioButtonStyle` に `textColor` を追加(選択中のラベル色。実装は両フレームワークとも
|
|
177
|
+
`--text-color` として出しているのに、型で渡せなかった)
|
|
174
178
|
## 0.7.0 の変更
|
|
175
179
|
|
|
176
180
|
- `normalizeDateObject()` を追加(`DatePicker` が blur 時の正規化に使う)
|
package/dist/types.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export type CheckBoxStyleForEachStatus = StyleForEachStatus<CheckBoxStyle>;
|
|
|
26
26
|
export type RadioButtonStyle = {
|
|
27
27
|
border?: Omit<BorderStyle, 'radius'>;
|
|
28
28
|
backgroundColor?: string;
|
|
29
|
+
/** 選択中のラベルの色(--text-color) */
|
|
30
|
+
textColor?: string;
|
|
29
31
|
};
|
|
30
32
|
export type RadioButtonStyleForEachStatus = StyleForEachStatus<RadioButtonStyle>;
|
|
31
33
|
export type SelectValue = string | number;
|