Interactive Angular 19 demo for @sda/notification-elements-ui with 6 sections: Bell & Feed, Notification Center, Inbox, Comments & Threads, Mention Input, and Full-Featured layout. Includes mock data, dark mode toggle, and real-time event log. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
454 B
JavaScript
24 lines
454 B
JavaScript
// Wrap lines after 79 chars
|
|
exports.wrap = function wrap(str) {
|
|
var out = [];
|
|
var pad = ' ';
|
|
var line = pad;
|
|
|
|
var chunks = str.split(/,/g);
|
|
chunks.forEach(function(chunk, i) {
|
|
var append = chunk;
|
|
if (i !== chunks.length - 1)
|
|
append += ',';
|
|
|
|
if (line.length + append.length > 79) {
|
|
out.push(line);
|
|
line = pad;
|
|
}
|
|
line += append;
|
|
});
|
|
if (line !== pad)
|
|
out.push(line);
|
|
|
|
return out.join('\n');
|
|
};
|