@graupl/graupl
Advanced tools
Comparing version 1.0.0-alpha.13 to 1.0.0-alpha.14
@@ -5,2 +5,33 @@ # Changelog | ||
## [1.0.0-alpha.14](https://github.com/Graupl/graupl/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2024-09-24) | ||
### Features | ||
* add basic template for documentation ([2a71c52](https://github.com/Graupl/graupl/commit/2a71c525ef4c7ec57faefce1c4658f9a0d8e45e1)) | ||
* **button:** add state classes ([1018e3b](https://github.com/Graupl/graupl/commit/1018e3b8c88ed1fc93565e6f642cba81b08cf1e3)) | ||
* **component:** add top bottom and inverse classes to cards ([3199410](https://github.com/Graupl/graupl/commit/3199410c1cb925d2ba485899b0a039c802388e7b)) | ||
* **component:** add transition custom props for alerts and fix markup ([b3c479f](https://github.com/Graupl/graupl/commit/b3c479fa351cfdbbfa4b877a2d5481cd6c5859ee)) | ||
* **component:** implement alerts ([d493a7f](https://github.com/Graupl/graupl/commit/d493a7fdd58a1f3476988e4162078dbf4d9700eb)), closes [#65](https://github.com/Graupl/graupl/issues/65) | ||
* **component:** implement carousel ([ea613c1](https://github.com/Graupl/graupl/commit/ea613c14b98ddea04a4c3024adcf1b34aca3cfe0)), closes [#87](https://github.com/Graupl/graupl/issues/87) | ||
* **utilities:** add width and height classes ([5d93ed6](https://github.com/Graupl/graupl/commit/5d93ed6e8e85dd553543289db29d8a833b874afd)) | ||
* **utility:** add visually hidden classes ([4c7cecc](https://github.com/Graupl/graupl/commit/4c7ceccd14194ccfbb1f67fba8f332f499a3e6db)) | ||
### Bug Fixes | ||
* **menu:** adjust min/max width on menu items ([cff88ec](https://github.com/Graupl/graupl/commit/cff88eccb2dada10d98b48595b742ef08b79dc40)) | ||
### Code Refactoring | ||
* **alerts:** use new button mixin ([2fe35eb](https://github.com/Graupl/graupl/commit/2fe35ebfd5ade483463f80e5688db976e938301c)) | ||
### Build System | ||
* **npm:** update eslint and plugins to latest ([d927eaa](https://github.com/Graupl/graupl/commit/d927eaa7f70da62aad1aa766e32dace8668bb3dc)) | ||
* **npm:** update husky ([678341c](https://github.com/Graupl/graupl/commit/678341cca8faa205f75e8a32826bbd1542c93587)) | ||
* **npm:** update stylelint plugins ([f54942d](https://github.com/Graupl/graupl/commit/f54942d25b6c094bb8b27b5cae695984b46f4326)) | ||
## [1.0.0-alpha.13](https://github.com/Graupl/graupl/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2024-06-04) | ||
@@ -7,0 +38,0 @@ |
@@ -38,15 +38,42 @@ import { defineConfig } from "vitepress"; | ||
sidebar: { | ||
"/": [ | ||
{ | ||
text: "Getting Started", | ||
items: [{ text: "Introduction", link: "/introduction" }], | ||
}, | ||
{ | ||
text: "Advenced Topics", | ||
items: [{ text: "Compiling Graupl", link: "/compiling-graupl" }], | ||
}, | ||
], | ||
}, | ||
sidebar: [ | ||
{ | ||
text: "Getting Started", | ||
items: [ | ||
{ text: "Compiling Graupl", link: "/compiling-graupl" }, | ||
{ text: "Introduction", link: "/introduction" }, | ||
], | ||
}, | ||
{ | ||
text: "Layout & Content", | ||
items: [ | ||
{ text: "Layout", link: "/layout" }, | ||
{ text: "Content", link: "/content" }, | ||
{ text: "Forms", link: "/forms" }, | ||
], | ||
}, | ||
{ | ||
text: "Components", | ||
items: [ | ||
{ text: "Alert", link: "/components/alert" }, | ||
{ text: "Button", link: "/components/button" }, | ||
{ text: "Card", link: "/components/card" }, | ||
{ text: "Input Group", link: "/components/inputgroup" }, | ||
{ text: "Menu", link: "/components/menu" }, | ||
{ text: "Navigation", link: "/components/navigation" }, | ||
], | ||
}, | ||
{ | ||
text: "Advanced Topics", | ||
items: [ | ||
{ text: "Utilities", link: "/utilities" }, | ||
{ text: "Functions", link: "/functions" }, | ||
{ text: "Mixins", link: "/mixins" }, | ||
{ text: "State", link: "/state" }, | ||
{ text: "Theme", link: "/theme" }, | ||
{ text: "Defaults", link: "/defaults" }, | ||
], | ||
}, | ||
], | ||
}, | ||
}); |
@@ -1,7 +0,1 @@ | ||
--- | ||
layout: home | ||
hero: | ||
name: "Graupl" | ||
tagline: "A modular and modern CSS framework." | ||
--- | ||
# Welcome to Graupl |
@@ -0,5 +1,25 @@ | ||
--- | ||
layout: home | ||
hero: | ||
name: "Graupl" | ||
tagline: "A modular and modern CSS framework." | ||
--- | ||
# Introduction | ||
Graupl is a collection of Sass utilities and components that can be used to build a website or web application. It is designed to be flexible and customizable, so you can use as much or as little of it as you need. | ||
Graupl is a collection of Sass utilities and components that can be used to build a website or web application. It is designed to be flexible and customizable, so you can use as much or as little of it as you need. Quickly get up to speed with [Compiling Graupl]( /compiling-graupl ), to get your project ready. Then check out the [Getting Started]( /getting-started ) page for the next steps. Or jump into the [Components]( /components/index ) section to get an idea of something you can build. | ||
We need a lot more documentation, so sit tight! | ||
## Table of Contents | ||
- [Compiling Graupl]( /compiling-graupl ) | ||
- [Introduction]( /introduction ) | ||
- [Layout]( /layout ) | ||
- [Content]( /content ) | ||
- [Forms]( /forms ) | ||
- [Components]( /components/index ) | ||
- [Functions]( /functions ) | ||
- [Mixins]( /mixins ) | ||
- [State]( /state ) | ||
- [Theme]( /theme ) | ||
- [Defaults]( /defaults ) |
{ | ||
"name": "@graupl/graupl", | ||
"version": "1.0.0-alpha.13", | ||
"version": "1.0.0-alpha.14", | ||
"description": "A modular and modern CSS framework.", | ||
@@ -18,3 +18,3 @@ "type": "module", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"prepare": "husky", | ||
"commit": "git cz", | ||
@@ -53,6 +53,5 @@ "eslint": "eslint .", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^8.57.0", | ||
"eslint": "^9.11.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-config-standard": "^17.1.0", | ||
"eslint-plugin-jsdoc": "^48.2.3", | ||
"eslint-plugin-jsdoc": "^50.2.4", | ||
"globals": "^15.0.0", | ||
@@ -70,3 +69,3 @@ "husky": "^9.0.11", | ||
"stylelint-config-property-sort-order-smacss": "^10.0.0", | ||
"stylelint-config-sass-guidelines": "^11.1.0", | ||
"stylelint-config-sass-guidelines": "^12.1.0", | ||
"stylelint-config-standard-scss": "^13.1.0", | ||
@@ -73,0 +72,0 @@ "stylelint-prettier": "^5.0.0", |
@@ -12,2 +12,3 @@ const config = { | ||
"selector-max-compound-selectors": 4, | ||
"max-nesting-depth": 4, | ||
"selector-no-qualifying-type": null, | ||
@@ -14,0 +15,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1663706
27
288
6330