syncfusion-react-notifications — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited syncfusion-react-notifications (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The Syncfusion React Toast component displays brief, non-intrusive notifications that auto-dismiss after a configurable timeout. Toasts support rich content through templates, action buttons, animated entry/exit, precise positioning, and programmatic control via ToastUtility.
🛑 Agentic use: Do not execute multiple steps autonomously. Confirm with the user before each action (install, run, file creation).
📄 Read: references/getting-started.md
@syncfusion/ej2-react-notifications 🛑 STOP — Do not install packages autonomously. Ask the user to run: `npm install @syncfusion/[email protected] --save`. Verify with `npm audit`ToastComponent usage (class and functional patterns)created event#### Configuration and Layout
📄 Read: references/configuration.md
title and content (plain text, HTML, elements)target container for scoped notificationsshowCloseButton for manual dismissalshowProgressBar and progressDirection (Ltr / Rtl)newestOnTop stacking orderwidth and height dimensions (px, %, auto)#### Positioning
📄 Read: references/position.md
#### Timeout and Dismissal
📄 Read: references/timeout-and-dismissal.md
timeOut property (default 5000 ms)extendedTimeout on hover (default 1000 ms)timeOut: 0clickToClose in the click eventbeforeClose#### Templates and Styling
📄 Read: references/templates-and-styling.md
template property with HTML strings and DOM selectorsshow() call timee-toast-success, e-toast-info, e-toast-warning, e-toast-danger#### Animation
📄 Read: references/animation.md
animation property with show and hide effect settings#### Toast Services and Advanced Patterns
📄 Read: references/toast-services.md
ToastUtility.show() for quick toasts without component instantiationInformation, Success, Error, WarningToastModel to ToastUtility.show()beforeOpenbeforeOpenbeforeOpen + close#### Accessibility
📄 Read: references/accessibility.md
role="alert", aria-live="assertive", aria-labelenableRtl#### API Reference
📄 Read: references/api.md
show() and hide() method signaturesbeforeOpen, open, click, beforeClose, close, created, destroyed, beforeSanitizeHtml🛑 STOP — Do not start the dev server autonomously. Ask the user to run: `npm run dev` after setup.
import { ToastComponent } from '@syncfusion/ej2-react-notifications';
import '@syncfusion/ej2-base/styles/tailwind3.css';
import '@syncfusion/ej2-react-notifications/styles/tailwind3.css';
import { useRef } from 'react';
function App() {
const toastRef = useRef<ToastComponent>(null);
return (
<>
<button onClick={() => toastRef.current?.show()}>Show Toast</button>
<ToastComponent
ref={toastRef}
title="Success!"
content="Your changes have been saved."
cssClass="e-toast-success"
position={{ X: 'Right', Y: 'Bottom' }}
timeOut={4000}
showProgressBar={true}
showCloseButton={true}
/>
</>
);
}import { ToastUtility } from '@syncfusion/ej2-react-notifications';
// Show a success toast instantly
ToastUtility.show('File saved successfully', 'Success', 3000);
// Show an error toast
ToastUtility.show('Connection failed', 'Error', 5000);#### Semantic type toasts Use cssClass with e-toast-success, e-toast-info, e-toast-warning, e-toast-danger for visual differentiation — see references/templates-and-styling.md.
#### Static/persistent toasts Set timeOut: 0 with showCloseButton: true for notifications users must explicitly dismiss — see references/timeout-and-dismissal.md.
#### Action-required toasts Use the buttons property to add Ignore/Confirm/Undo buttons — see references/configuration.md.
#### Prevent duplicates Use the beforeOpen event to cancel duplicate toasts already on screen — see references/toast-services.md.
#### Limit max visible toasts Cap simultaneous toasts at N using beforeOpen and element.childElementCount — see references/toast-services.md.
The Syncfusion MessageComponent displays contextual messages with visual severity indicators—icons and colors—to communicate importance and context to end users. It supports five severity levels, three visual variants, close-icon dismissal, custom templates, and full accessibility compliance.
🛑 Agentic use: Do not execute multiple steps autonomously. Confirm with the user before each action (install, run, file creation).
#### Getting Started 📄 Read: references/message-getting-started.md
@syncfusion/ej2-react-notifications 🛑 STOP — Do not install packages autonomously. Ask the user to run: `npm install @syncfusion/[email protected] --save`. Verify with `npm audit`MessageComponentcontent prop or JSX children#### Severity Levels 📄 Read: references/message-severities.md
severity prop usage and valid values#### Display Variants 📄 Read: references/message-variants.md
variant prop usage#### Icons and Close Icon 📄 Read: references/message-icons-and-close.md
showIcon prop (default true)cssClass CSS overridesshowCloseIcon prop (default false)closed event handler for dismiss callbacksvisible prop#### Customization and Templates 📄 Read: references/message-customization.md
e-content-center), right (e-content-right)cssClasscontent propenableRtlenablePersistence#### Accessibility 📄 Read: references/message-accessibility.md
role=alert, aria-label)#### API Reference 📄 Read: references/message-api.md
destroy, getPersistDataclosed, created, destroyedMessageCloseEventArgs interfaceSeverity and Variant enum values🛑 STOP — Do not start the dev server autonomously. Ask the user to run: `npm run dev` after setup.
npm install @syncfusion/[email protected] --save
npm audit/* src/App.css */
@import '../node_modules/@syncfusion/ej2-base/styles/tailwind3.css';
@import '../node_modules/@syncfusion/ej2-react-notifications/styles/tailwind3.css';import { MessageComponent } from '@syncfusion/ej2-react-notifications';
import './App.css';
function App() {
return (
<MessageComponent content="Please read the comments carefully" />
);
}
export default App;#### Severity Messages
<MessageComponent content="Editing is restricted" />
<MessageComponent content="Operation completed" severity="Success" />
<MessageComponent content="Read these notes" severity="Info" />
<MessageComponent content="Check your connection" severity="Warning" />
<MessageComponent content="Submission failed" severity="Error" />#### Variant + Severity Combo
<MessageComponent content="Editing is restricted" variant="Filled" />
<MessageComponent content="Operation completed" severity="Success" variant="Outlined" />
<MessageComponent content="Submission failed" severity="Error" variant="Filled" />#### Dismissible Message
import { useState } from 'react';
function App() {
const [visible, setVisible] = useState(true);
return (
<MessageComponent
content="Your session will expire soon"
severity="Warning"
showCloseIcon={true}
visible={visible}
closed={() => setVisible(false)}
/>
);
}#### Content Template
const contentTemplate = () => (
<div>
<h4>Build succeeded</h4>
<p>All 42 tests passed.</p>
</div>
);
<MessageComponent content={contentTemplate} severity="Success" />The Syncfusion React SkeletonComponent renders animated placeholder shapes that mimic the layout of loading content. It reduces perceived load time and communicates progress to users with configurable shapes, shimmer animations, and full accessibility support.
Package: @syncfusion/ej2-react-notifications
🛑 Agentic use: Do not execute multiple steps autonomously. Confirm with the user before each action (install, run, file creation).
#### Getting Started 📄 Read: references/skeleton-getting-started.md
@syncfusion/ej2-react-notifications 🛑 STOP — Do not install packages autonomously. Ask the user to run: `npm install @syncfusion/[email protected] --save`. Verify with `npm audit`SkeletonComponent setup with height and width#### Shapes 📄 Read: references/skeleton-shapes.md
shape prop: "Circle", "Square", "Rectangle", "Text" (default)#### Shimmer Effects 📄 Read: references/skeleton-shimmer-effect.md
shimmerEffect prop: "Wave" (default), "Pulse", "Fade"#### Styles and Visibility 📄 Read: references/skeleton-styles.md
cssClass prop for custom CSS overrides (wave color, background, animation speed)visible prop to toggle skeleton on/off based on loading state#### Accessibility 📄 Read: references/skeleton-accessibility.md
role="status", aria-label, aria-live, aria-busylabel prop for accessible skeleton namesenableRtlprefers-reduced-motion respect#### API Reference 📄 Read: references/skeleton-api.md
cssClass, enablePersistence, enableRtl, height, label, locale, shape, shimmerEffect, visible, widthdestroy()SkeletonType and ShimmerEffect enum values🛑 STOP — Do not start the dev server autonomously. Ask the user to run: `npm run dev` after setup.
npm install @syncfusion/[email protected] --save
npm audit/* src/App.css */
@import "../node_modules/@syncfusion/ej2-base/styles/tailwind3.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/tailwind3.css";import { SkeletonComponent } from '@syncfusion/ej2-react-notifications';
import * as React from 'react';
import './App.css';
function App() {
return (
<SkeletonComponent height="15px" width="100%" />
);
}
export default App;#### Profile Card Skeleton
import { SkeletonComponent } from '@syncfusion/ej2-react-notifications';
import * as React from 'react';
function ProfileCardSkeleton() {
return (
<div style={{ display: 'flex', alignItems: 'center', gap: '12px', padding: '16px' }}>
{/* Avatar placeholder */}
<SkeletonComponent shape="Circle" width="48px" />
{/* Name and subtitle placeholders */}
<div style={{ flex: 1 }}>
<SkeletonComponent width="60%" height="15px" />
<br />
<SkeletonComponent width="40%" height="12px" />
</div>
</div>
);
}
export default ProfileCardSkeleton;#### Toggle Skeleton on Data Load
import { SkeletonComponent } from '@syncfusion/ej2-react-notifications';
import * as React from 'react';
function DataCard() {
const [loading, setLoading] = React.useState(true);
const [content, setContent] = React.useState('');
React.useEffect(() => {
setTimeout(() => {
setContent('Data loaded successfully');
setLoading(false);
}, 2000);
}, []);
return (
<div>
{loading ? (
<SkeletonComponent width="80%" height="20px" />
) : (
<p>{content}</p>
)}
</div>
);
}
export default DataCard;#### Shimmer List with Pulse Effect
import { SkeletonComponent } from '@syncfusion/ej2-react-notifications';
import * as React from 'react';
function ListSkeleton() {
return (
<ul style={{ listStyle: 'none', padding: 0 }}>
{[1, 2, 3].map((i) => (
<li key={i} style={{ display: 'flex', gap: '10px', marginBottom: '12px' }}>
<SkeletonComponent shape="Circle" width="40px" shimmerEffect="Pulse" />
<div style={{ flex: 1 }}>
<SkeletonComponent width="70%" height="14px" shimmerEffect="Pulse" />
<br />
<SkeletonComponent width="45%" height="12px" shimmerEffect="Pulse" />
</div>
</li>
))}
</ul>
);
}
export default ListSkeleton;| Prop | Type | Default | Purpose | |||
|---|---|---|---|---|---|---|
shape | `'Text' \ | 'Circle' \ | 'Square' \ | 'Rectangle'` | 'Text' | Skeleton shape variant |
width | `string \ | number` | '' | Width; required for Circle/Square | ||
height | `string \ | number` | '' | Height; used for Rectangle/Text | ||
shimmerEffect | `'Wave' \ | 'Pulse' \ | 'Fade'` | 'Wave' | Animation style | |
visible | boolean | true | Show/hide skeleton | |||
cssClass | string | '' | Custom CSS class(es) | |||
label | string | 'Loading…' | ARIA label for accessibility | |||
enableRtl | boolean | false | Right-to-left rendering | |||
enablePersistence | boolean | false | Persist state across reloads |
A skill for implementing the Syncfusion React Spinner — a load indicator that blocks user interaction with a target element while an operation is in progress.
🛑 Agentic use: Do not execute multiple steps autonomously. Confirm with the user before each action (install, run, file creation).
#### Getting Started 📄 Read: references/spinner-getting-started.md
createSpinner → showSpinner workflow#### Spinner Features 📄 Read: references/spinner-features.md
setSpinnerSpinnerType values (Material, Bootstrap5, Fluent2, etc.)width propertyfinally cleanup#### API Reference 📄 Read: references/spinner-api.md
createSpinner(args: SpinnerArgs) — full signature and paramsshowSpinner(container: HTMLElement) — signaturehideSpinner(container: HTMLElement) — signaturesetSpinner(args: SetSpinnerArgs) — signatureSpinnerArgs interface (target, width, label, cssClass, template, type)SetSpinnerArgs interface (template, cssClass, type)SpinnerType values#### Customization 📄 Read: references/spinner-customization.md
cssClass for CSS hook customizationwidth for spinner icon sizingtemplate for custom HTML animationssetSpinner for global defaults#### Accessibility 📄 Read: references/spinner-accessibility.md
aria-busy on the loading regionaria-live region for screen reader announcementstype: 'HighContrast' for high contrast displays#### Minimal Spinner (Functional Component)
🛑 STOP — Do not start the dev server autonomously. Ask the user to run: `npm run dev` after setup.
import { createSpinner, showSpinner } from '@syncfusion/ej2-react-popups';
import * as React from 'react';
import { useEffect } from 'react';
import './App.css';
function App() {
useEffect(() => {
createSpinner({
target: document.getElementById('container') as HTMLElement
});
showSpinner(document.getElementById('container') as HTMLElement);
}, []);
return (
<div id="container" style={{ height: '200px' }} />
);
}
export default App;#### Spinner with Show/Hide Toggle
import { createSpinner, showSpinner, hideSpinner } from '@syncfusion/ej2-react-popups';
import { useEffect, useRef, useState } from 'react';
function DataLoader() {
const ref = useRef<HTMLDivElement>(null);
const [loading, setLoading] = useState(false);
useEffect(() => {
if (ref.current) {
createSpinner({ target: ref.current, label: 'Loading...' });
}
}, []);
const load = async () => {
setLoading(true);
showSpinner(ref.current as HTMLElement);
try {
await fetchData();
} finally {
hideSpinner(ref.current as HTMLElement);
setLoading(false);
}
};
return (
<div>
<button onClick={load} disabled={loading}>Load Data</button>
<div ref={ref} style={{ height: '200px', position: 'relative' }} />
</div>
);
}#### Global Spinner Type
import { setSpinner } from '@syncfusion/ej2-react-popups';
// Call BEFORE any createSpinner — sets global default type
setSpinner({ type: 'Bootstrap5' });#### Pattern 1: Async Fetch with Cleanup
const fetchWithSpinner = async (container: HTMLElement) => {
showSpinner(container);
try {
const data = await fetch('/api/data').then(r => r.json());
return data;
} finally {
hideSpinner(container); // Always hide, even on error
}
};#### Pattern 2: React State Sync
useEffect(() => {
if (!ref.current) return;
if (isLoading) {
showSpinner(ref.current);
} else {
hideSpinner(ref.current);
}
}, [isLoading]);#### Pattern 3: Full-Page Loading
useEffect(() => {
createSpinner({ target: document.body, label: 'Initializing...' });
showSpinner(document.body);
initializeApp().finally(() => hideSpinner(document.body));
}, []);#### Pattern 4: Spinner with Custom Type
createSpinner({
target: el,
type: 'Fluent2',
width: '40px',
label: 'Processing...',
cssClass: 'my-overlay'
});| Function | Signature | Purpose |
|---|---|---|
createSpinner | (args: SpinnerArgs) => void | Initialize spinner on DOM element |
showSpinner | (el: HTMLElement) => void | Show an existing spinner |
hideSpinner | (el: HTMLElement) => void | Hide a visible spinner |
setSpinner | (args: SetSpinnerArgs) => void | Set global defaults for all spinners |
SpinnerArgs properties: target (required), width, label, cssClass, template, type
SpinnerType values: 'Material' | 'Material3' | 'Fabric' | 'Bootstrap' | 'Bootstrap4' | 'Bootstrap5' | 'HighContrast' | 'Tailwind' | 'Tailwind3' | 'Fluent' | 'Fluent2'
import { SpinnerComponent } does NOT existcreateSpinner, showSpinner, hideSpinner, setSpinnercolor, size, visible, isLoading as SpinnerArgs — they don't existtarget, width, label, cssClass, template, type| Issue | Solution |
|---|---|
| Spinner not showing | Ensure createSpinner is called before showSpinner; check DOM element exists |
| Spinner stays visible | Call hideSpinner in finally block; check for unhandled promise rejections |
| No animation | Verify both ej2-base and ej2-react-popups CSS imported; ej2-base must come first |
| TypeScript error | Cast: document.getElementById('id') as HTMLElement or use useRef<HTMLDivElement> |
| Spinner outside bounds | Add position: relative to target element |
| Wrong theme | Set type to match your app's CSS theme (e.g., 'Fluent2' for Fluent 2 CSS) |
The Syncfusion React Badge is a pure CSS component — no React component class to import. Badges are applied by adding CSS modifier classes to a <span> (or <a>) element nested inside the target UI element.
Package: @syncfusion/ej2-react-notifications
🛑 Agentic use: Do not execute multiple steps autonomously. Confirm with the user before each action (install, run, file creation).
#### Getting Started 📄 Read: references/getting-started.md
#### Badge Types and Shapes 📄 Read: references/types-and-shapes.md
#### Customization 📄 Read: references/customization.md
font-size#### How-To Guides 📄 Read: references/how-to.md
1. Install the package:
npm install @syncfusion/[email protected] --save
npm audit2. Add CSS to `src/App.css`:
@import "../node_modules/@syncfusion/ej2-base/styles/tailwind3.css";
@import "../node_modules/@syncfusion/ej2-notifications/styles/tailwind3.css";3. Add a badge in your component:
import * as React from 'react';
import './App.css';
function App() {
return (
<h1>Badge Component <span className="e-badge e-badge-primary">New</span></h1>
);
}
export default App;#### Notification badge on an icon
// Parent must have position: relative
<div className="badge-block">
<div className="skype svg_icons"></div>
<span className="e-badge e-badge-success e-badge-overlap e-badge-notification">99+</span>
</div>#### Dot status indicator (bottom position)
<div className="badge-block">
<div className="firefox svg_icons"></div>
<span className="e-badge e-badge-success e-badge-overlap e-badge-dot e-badge-bottom"></span>
</div>#### Pill-shaped label
<h1>Messages <span className="e-badge e-badge-primary e-badge-pill">New</span></h1>| Class | Purpose |
|---|---|
e-badge | Required base class for all badges |
e-badge-primary / e-badge-{color} | Color variant |
e-badge-pill | Pill (rounded rectangle) shape |
e-badge-circle | Circle shape |
e-badge-notification | Notification counter badge |
e-badge-dot | Minimalist dot badge (no text) |
e-badge-overlap | Overlaps the parent element edge |
e-badge-bottom | Positions badge at bottom instead of top |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.