Skip to content

Commit

Permalink
Fix false-positives in spellcheck (#1943)
Browse files Browse the repository at this point in the history
  • Loading branch information
coliff authored Dec 11, 2023
1 parent a21616a commit 2b82dd7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
"ARROWDOWN",
"ARROWUP",
"borderless",
"Bosco",
"checkmark",
"codeql",
"coliff",
"Cpath",
"Crect",
"Cstyle",
Expand All @@ -19,12 +21,14 @@
"hoverable",
"inexplicitly",
"inputmode",
"Lemke",
"listbox",
"maxvalue",
"minvalue",
"mnpcod",
"Modernizr",
"navs",
"Nicolette",
"nosniff",
"npmjs",
"packagr",
Expand All @@ -37,6 +41,7 @@
"sbdocs",
"scooby",
"sonarqube",
"Stamm",
"styleguide",
"stylelint",
"subdir",
Expand All @@ -51,6 +56,6 @@
],
"language": "en-US",
"allowCompoundWords": true,
"ignorePaths": [".cspell.json", ".github/CODEOWNERS", "labeler.yml", "modus-variables.scss"],
"ignorePaths": [".cspell.json", ".github/CODEOWNERS", "issue-thanks.yml", "labeler.yml", "modus-variables.scss"],
"useGitignore": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ User can display badge in a table column.
visits: 434,
progress: 97,
priority: {
size: 'medium',
size: 'medium',
type: 'counter',
text: 'Low',
color: 'danger'
Expand Down Expand Up @@ -485,7 +485,7 @@ To select rows, users can use the checkbox provided on each row. Normally, the M
### Inline Editing

To enable Cell Editing for a Column use the `cellEditable` property on the Column object. The component renders a text box by default based on column's `dataType`. To render a dropdown, use the `cellEditorType` property on the Column object. The `cellEditorArgs` property can be used to pass additional arguments to the editor. After editing a cell, the table automatically updates the `data` and emits a `cellValueChanged` event.
Note: If rows are nested, the table will be able to save the changes upto 2 levels of nested data.
Note: If rows are nested, the table will be able to save the changes up to 2 levels of nested data.
Refer to the [Accessibility](#accessibility) section for how to use keyboard for inline editing.

```javascript
Expand Down

0 comments on commit 2b82dd7

Please sign in to comment.