Add comprehensive library expansion with new components and demos
- Add new libraries: ui-accessibility, ui-animations, ui-backgrounds, ui-code-display, ui-data-utils, ui-font-manager, hcl-studio - Add extensive layout components: gallery-grid, infinite-scroll-container, kanban-board, masonry, split-view, sticky-layout - Add comprehensive demo components for all new features - Update project configuration and dependencies - Expand component exports and routing structure - Add UI landing pages planning document 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
19
projects/ui-code-display/node_modules/prismjs/components/prism-llvm.js
generated
vendored
Normal file
19
projects/ui-code-display/node_modules/prismjs/components/prism-llvm.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
(function (Prism) {
|
||||
Prism.languages.llvm = {
|
||||
'comment': /;.*/,
|
||||
'string': {
|
||||
pattern: /"[^"]*"/,
|
||||
greedy: true,
|
||||
},
|
||||
'boolean': /\b(?:false|true)\b/,
|
||||
'variable': /[%@!#](?:(?!\d)(?:[-$.\w]|\\[a-f\d]{2})+|\d+)/i,
|
||||
'label': /(?!\d)(?:[-$.\w]|\\[a-f\d]{2})+:/i,
|
||||
'type': {
|
||||
pattern: /\b(?:double|float|fp128|half|i[1-9]\d*|label|metadata|ppc_fp128|token|void|x86_fp80|x86_mmx)\b/,
|
||||
alias: 'class-name',
|
||||
},
|
||||
'keyword': /\b[a-z_][a-z_0-9]*\b/,
|
||||
'number': /[+-]?\b\d+(?:\.\d+)?(?:[eE][+-]?\d+)?\b|\b0x[\dA-Fa-f]+\b|\b0xK[\dA-Fa-f]{20}\b|\b0x[ML][\dA-Fa-f]{32}\b|\b0xH[\dA-Fa-f]{4}\b/,
|
||||
'punctuation': /[{}[\];(),.!*=<>]/,
|
||||
};
|
||||
}(Prism));
|
||||
Reference in New Issue
Block a user