@14ch/svelte-ui 0.0.26 → 0.0.27

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.
@@ -561,6 +561,7 @@
561
561
  background-color: transparent;
562
562
  text-align: left;
563
563
  cursor: pointer;
564
+ font-family: inherit;
564
565
  font-size: inherit;
565
566
  color: var(--svelte-ui-text-color);
566
567
  transition: background-color var(--svelte-ui-transition-duration) ease;
@@ -877,6 +877,7 @@
877
877
  background-color: transparent;
878
878
  border: none;
879
879
  border-radius: var(--svelte-ui-input-border-radius);
880
+ font-family: inherit;
880
881
  font-size: inherit;
881
882
  font-weight: inherit;
882
883
  color: inherit;
@@ -1129,7 +1130,10 @@
1129
1130
  * タイプ別スタイル
1130
1131
  * ============================================= */
1131
1132
  /* type-password: セキュリティのため常にinputを表示(display-textは非表示) */
1132
- .input--type-password {
1133
+ /* type-email/tel: オートフィルと display-text の競合を避けるため常にinputを表示 */
1134
+ .input--type-password,
1135
+ .input--type-email,
1136
+ .input--type-tel {
1133
1137
  /* inputを常に表示(表示制御の非フォーカス時の不可視化を上書き) */
1134
1138
  &:not(.input--focused) input {
1135
1139
  opacity: 1;
@@ -368,6 +368,7 @@ select--focus-{focusStyle}"
368
368
  background: transparent;
369
369
  border: none;
370
370
  border-radius: 0;
371
+ font-family: inherit;
371
372
  font-size: inherit;
372
373
  font-weight: inherit;
373
374
  color: inherit;
@@ -657,6 +657,7 @@
657
657
  background-color: transparent;
658
658
  border: none;
659
659
  border-radius: var(--svelte-ui-textarea-border-radius);
660
+ font-family: inherit;
660
661
  font-size: inherit;
661
662
  font-weight: inherit;
662
663
  color: inherit;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@14ch/svelte-ui",
3
3
  "description": "Modern Svelte UI components library with TypeScript support",
4
4
  "private": false,
5
- "version": "0.0.26",
5
+ "version": "0.0.27",
6
6
  "type": "module",
7
7
  "keywords": [
8
8
  "svelte",