Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
64abdfc
feat: adding block/inline folders and per-html5 element scss rules
iroybotlinio Oct 19, 2025
16d9aff
fix: vars in comments break build (block)
iroybotlinio Oct 23, 2025
b1f51f6
fix: vars in comments break build (inline)
iroybotlinio Oct 23, 2025
c406ef2
fix: add postcss-merge-rules node plugin to maintain same results
iroybotlinio Oct 23, 2025
241e3db
chore: added merge-rules, discard-comments, discard-duplicates to pos…
iroybotlinio Oct 23, 2025
7a95e42
chore: added minimal set of void elements, made sure pico compiles
iroybotlinio Oct 23, 2025
1269919
chore: continued refactoring of inline elements
iroybotlinio Oct 23, 2025
e5264b2
chore: advancing refactor, added missing svg.scss
iroybotlinio Oct 23, 2025
7257f94
feat: inputs refactoring, keeping where statements as is for better m…
iroybotlinio Oct 23, 2025
92acefd
chore: recompiled
iroybotlinio Oct 23, 2025
87a4bf6
chore: updated extended htmldocument, rebuilt pico specification
iroybotlinio Nov 1, 2025
1aae756
fix: minor fix to enums, pico specification extended
iroybotlinio Nov 1, 2025
57ad9f8
chore: continued refactoring, list styles
iroybotlinio Nov 1, 2025
0541ac8
chore: pico specs, add aria attributes
iroybotlinio Nov 1, 2025
c4d8e12
chore: rebuilt classes and picocss-specification
iroybotlinio Nov 1, 2025
cd82d44
chore: added aria-hidden, invalid, hidden, etc.
iroybotlinio Nov 1, 2025
6683464
chore: update schemes
iroybotlinio Nov 1, 2025
e51611f
chore: rebuild pico
iroybotlinio Nov 1, 2025
f394d02
chore: added picocss schema-based templates in twig,nextjs and storyb…
iroybotlinio Nov 2, 2025
216c5a2
feat: recompiled all templates based on modified schemas (added slot,…
iroybotlinio Nov 7, 2025
d68861f
chore: add basic storybook configuration
iroybotlinio Nov 8, 2025
e179b63
chore: cleanup
iroybotlinio Nov 8, 2025
58a0eba
fix: improved storybook rendering, put stories in dedicated folders
iroybotlinio Nov 8, 2025
c820fc2
chore: add $elements similar to existing $modules
iroybotlinio Nov 8, 2025
73a4e45
refactor: add map test to individual scss files
iroybotlinio Nov 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
nbproject
Thumbs.db
/.vscode/
/.history/

# Numerous always-ignore extensions
*.diff
Expand All @@ -27,6 +28,8 @@ Thumbs.db

# Folders to ignore
/node_modules/
/vendor/

# Pico
.pico
/tests
12 changes: 10 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,13 @@
"support": {
"issues": "https://github.com/picocss/pico/issues/"
},
"license": "MIT"
}
"license": "MIT",
"require": {
"vardumper/extended-htmldocument": "^0.2.7"
},
"autoload": {
"psr-4": {
"PicoCss\\Pico\\": "src/"
}
}
}
Loading