Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix false-positives in spellcheck #1943

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading