From 2b82dd72cc096e3bb2622e27b64aebb8cf98f927 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Mon, 11 Dec 2023 23:29:12 +0900 Subject: [PATCH] Fix false-positives in spellcheck (#1943) --- .cspell.json | 7 ++++++- .../components/modus-table/modus-table-storybook-docs.mdx | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.cspell.json b/.cspell.json index c57a68e87..69724934a 100644 --- a/.cspell.json +++ b/.cspell.json @@ -6,8 +6,10 @@ "ARROWDOWN", "ARROWUP", "borderless", + "Bosco", "checkmark", "codeql", + "coliff", "Cpath", "Crect", "Cstyle", @@ -19,12 +21,14 @@ "hoverable", "inexplicitly", "inputmode", + "Lemke", "listbox", "maxvalue", "minvalue", "mnpcod", "Modernizr", "navs", + "Nicolette", "nosniff", "npmjs", "packagr", @@ -37,6 +41,7 @@ "sbdocs", "scooby", "sonarqube", + "Stamm", "styleguide", "stylelint", "subdir", @@ -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 } diff --git a/stencil-workspace/storybook/stories/components/modus-table/modus-table-storybook-docs.mdx b/stencil-workspace/storybook/stories/components/modus-table/modus-table-storybook-docs.mdx index 5ffe34d9c..bbefa5fa1 100644 --- a/stencil-workspace/storybook/stories/components/modus-table/modus-table-storybook-docs.mdx +++ b/stencil-workspace/storybook/stories/components/modus-table/modus-table-storybook-docs.mdx @@ -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' @@ -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