Skip to content

Commit

Permalink
docs(StatusIcon): fix heading level
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Feb 5, 2024
1 parent 05c694b commit 6dcdbcc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Example

## Accessibility
### Accessibility

The `aria-label` is pre-filled with a standard translation based on the variant.

Expand Down
9 changes: 7 additions & 2 deletions packages/docs/src/lib/liveCode/dynamicImports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import { faSnowboarding as I11 } from "@fortawesome/free-solid-svg-icons/faSnowb
import { faSnowplow as I12 } from "@fortawesome/free-solid-svg-icons/faSnowplow";
import { NavigationItem as I19 } from "@mittwald/flow-next-components/Navigation";
import { faUser as I20 } from "@fortawesome/free-regular-svg-icons/faUser";
import { faHardDrive as I21 } from "@fortawesome/free-regular-svg-icons/faHardDrive";
import { faHardDrive as I21 } from "@fortawesome/free-regular-svg-icons/faHardDrive";
import { faSave as I33 } from "@fortawesome/free-regular-svg-icons/faSave";

export const liveCodeEditorGlobalImports: ImportMapping = {
"Avatar:@mittwald/flow-next-components/Avatar": lazy(() => import("@mittwald/flow-next-components/Avatar").then(module => ({ default: module.Avatar } ))),
Expand Down Expand Up @@ -40,5 +41,9 @@ export const liveCodeEditorGlobalImports: ImportMapping = {
"Switch:@mittwald/flow-next-components/Switch": lazy(() => import("@mittwald/flow-next-components/Switch").then(module => ({ default: module.Switch } ))),
"FieldDescription:@mittwald/flow-next-components/FieldDescription": lazy(() => import("@mittwald/flow-next-components/FieldDescription").then(module => ({ default: module.FieldDescription } ))),
"TextArea:@mittwald/flow-next-components/TextArea": lazy(() => import("@mittwald/flow-next-components/TextArea").then(module => ({ default: module.TextArea } ))),
"TextField:@mittwald/flow-next-components/TextField": lazy(() => import("@mittwald/flow-next-components/TextField").then(module => ({ default: module.TextField } ))),
"TextField:@mittwald/flow-next-components/TextField": lazy(() => import("@mittwald/flow-next-components/TextField").then(module => ({ default: module.TextField } ))),
"React:react": lazy(() => import("react").then(module => ({ default: module.React } ))),
"Tooltip:@mittwald/flow-next-components/Tooltip": lazy(() => import("@mittwald/flow-next-components/Tooltip").then(module => ({ default: module.Tooltip } ))),
"TooltipTrigger:@mittwald/flow-next-components/Tooltip": lazy(() => import("@mittwald/flow-next-components/Tooltip").then(module => ({ default: module.TooltipTrigger } ))),
"faSave:@fortawesome/free-regular-svg-icons/faSave": I33,
};

1 comment on commit 6dcdbcc

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report for ./packages/components/

St.
Category Percentage Covered / Total
🟢 Statements 98.08% 102/104
🟢 Branches 93.55% 29/31
🟢 Functions 100% 27/27
🟢 Lines 98.06% 101/103

Test suite run success

52 tests passing in 9 suites.

Report generated by 🧪jest coverage report action from 6dcdbcc

Please sign in to comment.