Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3e85154

Browse files
committedMar 7, 2025
[Toolkit] Adds first components
1 parent 3d7eda2 commit 3e85154

File tree

101 files changed

+1657
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+1657
-1
lines changed
 

‎biome.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@
1515
"src/*/src/Bridge/*/assets/src/**",
1616
"src/*/src/Bridge/*/assets/test/**"
1717
],
18-
"ignore": ["**/composer.json", "**/vendor", "**/package.json", "**/node_modules", "**/var"]
18+
"ignore": [
19+
"**/composer.json",
20+
"**/vendor",
21+
"**/package.json",
22+
"**/node_modules",
23+
"**/var",
24+
"**/registry/default/**"
25+
]
1926
},
2027
"linter": {
2128
"rules": {
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Alert",
3+
"manifest": "components/Alert.json",
4+
"theme": "",
5+
"type": "component",
6+
"code": "<div {{ attributes.without('class') }}\n class=\"{{ (' ' ~ attributes.render('class'))|tailwind_merge }}\"\n>\n <twig:Button>Dependency test</twig:Button>\n {% block content %}Alert{% endblock %}\n</div>\n",
7+
"fingerprint": "9d173046a7c64cfc696f1a89aaac82a6",
8+
"dependencies": [
9+
"Button"
10+
]
11+
}

0 commit comments

Comments
 (0)
Please sign in to comment.