@howssatoshi/quantumcss 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Quantum CSS - Next-Generation Utility Framework
2
2
 
3
- ![Quantum CSS](https://img.shields.io/badge/Quantum%20CSS-v1.2.0-blue)
3
+ ![Quantum CSS](https://img.shields.io/badge/Quantum%20CSS-v1.3.0-blue)
4
4
  ![License](https://img.shields.io/badge/license-MIT-green)
5
5
  ![Bundle Size](https://img.shields.io/badge/bundle%20size-15KB-brightgreen)
6
6
 
@@ -33,7 +33,7 @@ Quickly jumpstart your project with a premium template:
33
33
  ```bash
34
34
  npx @howssatoshi/quantumcss scaffold gaming index.html
35
35
  ```
36
- *Available templates: `gaming`, `blog`, `news`, `shopping`, `travel`, `starlight`, `demo`*
36
+ *Available templates: `gaming`, `blog`, `news`, `shopping`, `travel`, `starlight`*
37
37
 
38
38
  ### HTML Usage
39
39
  ```html
@@ -3629,35 +3629,6 @@ body.light-mode .accordion-starlight .accordion-content {
3629
3629
  grid-column: span 2 / span 2;
3630
3630
  }
3631
3631
 
3632
- .max-w-160 {
3633
- max-width: 160;
3634
- }
3635
-
3636
- .pb-8 {
3637
- padding-bottom: 2rem;
3638
- }
3639
-
3640
- .hover\:bg-black:hover {
3641
- background-color: #000000;
3642
- }
3643
-
3644
- .bg-blue-50 {
3645
- background-color: #eff6ff;
3646
- }
3647
-
3648
- .w-1\/4 {
3649
- width: 25.00%;
3650
- }
3651
-
3652
- .max-w-128 {
3653
- max-width: 32rem;
3654
- }
3655
-
3656
- .px-4 {
3657
- padding-left: 1rem;
3658
- padding-right: 1rem;
3659
- }
3660
-
3661
3632
  .text-primary {
3662
3633
  color: #3b82f6;
3663
3634
  }
@@ -3788,6 +3759,11 @@ body.light-mode .accordion-starlight .accordion-content {
3788
3759
  padding-bottom: 4rem;
3789
3760
  }
3790
3761
 
3762
+ .px-4 {
3763
+ padding-left: 1rem;
3764
+ padding-right: 1rem;
3765
+ }
3766
+
3791
3767
  .py-1.5 {
3792
3768
  padding-top: 1.5;
3793
3769
  padding-bottom: 1.5;
@@ -4085,20 +4061,6 @@ body.light-mode .accordion-starlight .accordion-content {
4085
4061
  grid-column: span 1 / span 1;
4086
4062
  }
4087
4063
 
4088
- .md\:text-5xl {
4089
- font-size: 3rem;
4090
- line-height: 1.2;
4091
- }
4092
-
4093
- .md\:text-lg {
4094
- font-size: 1.125rem;
4095
- line-height: 1.5;
4096
- }
4097
-
4098
- .md\:w-1\/2 {
4099
- width: 50.00%;
4100
- }
4101
-
4102
4064
  .md\:block {
4103
4065
  display: block;
4104
4066
  }
@@ -4125,10 +4087,6 @@ body.light-mode .accordion-starlight .accordion-content {
4125
4087
  grid-template-columns: repeat(3, minmax(0, 1fr));
4126
4088
  }
4127
4089
 
4128
- .lg\:grid-cols-4 {
4129
- grid-template-columns: repeat(4, minmax(0, 1fr));
4130
- }
4131
-
4132
4090
  .lg\:flex {
4133
4091
  display: flex;
4134
4092
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@howssatoshi/quantumcss",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "Advanced utility-first CSS framework with JIT generation and modern components",
5
5
  "main": "dist/quantum.min.css",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -29,8 +29,7 @@ function scaffold(template, targetPath) {
29
29
  shopping: 'shopping/index.html',
30
30
  starlight: 'starlight.html',
31
31
  news: 'news-template.html',
32
- docs: 'kitchen-sink.html',
33
- demo: 'demo.html'
32
+ docs: 'kitchen-sink.html'
34
33
  };
35
34
 
36
35
  const templateFile = templateMap[template];