Skip to content

Commit

Permalink
Merge pull request #1821 from kujirahand/add_cols_rows_to_wazokusei
Browse files Browse the repository at this point in the history
DOM和属性にcolsとrowsなどを追加 #1820
  • Loading branch information
kujirahand authored Nov 20, 2024
2 parents 896f84e + c8050ad commit c985762
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nako_version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NakoVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const nakoVersion: NakoVersion = {
version: '3.6.31',
version: '3.6.32',
major: 3,
minor: 6,
patch: 31
patch: 32
}
export default nakoVersion
6 changes: 6 additions & 0 deletions src/plugin_browser_dom_basic.mts
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,12 @@ export default {
'入力ヒント': 'placeholder',
'文字幅': 'size',
'スタイル': 'style',
'行数': 'rows', // テキストエリア用
'列数': 'cols', // テキストエリア用
'自動入力': 'autocomplete', // 'on' or 'off'
'自動フォーカス': 'autofocus',
'最大文字数': 'maxlength',
'最小文字数': 'minlength',
}
},
'DOM和スタイル': { // 'const' // @DOMわすたいる
Expand Down

0 comments on commit c985762

Please sign in to comment.