kozenet_ui 0.1.0 → 0.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2e605abb6778d99121ffbff8d6235971c994d7647e291760536a6e2943c9c5f
4
- data.tar.gz: 3eadc2b72abef29b6e58495782c3dddd4eacc53905b307db2189d707c453cb41
3
+ metadata.gz: 87c0ad03dcc95a00eb4fc883b4552269ffc7f1f49269ff0b4745dddb2b2af9c6
4
+ data.tar.gz: f1f5dbcd45413d494e07583e70b1dc3b8942674501a60437f2c269ee7e866132
5
5
  SHA512:
6
- metadata.gz: e99bd0a77b908ff52cf0c7d46e763673665deff1ad461f06edb3518c64ad4ac24739048344900df5d8fee873ff478d23e3b02a8dfcc15e34cddd9c790d472836
7
- data.tar.gz: ebefa10c5fd1d0fe447bf5599e587dd0944dc6c715f2fdd5a22cfa202fffdd72d7bd0a7398ad569fcbe78629d9e03df85d5fed5931cbb330837a312ce17e51f4
6
+ metadata.gz: 013ed5e8fb76bc73bd551bca5cc02d13af5b938f222491e13cba05abe36da159811c2eef6fdb966ccc40e14fc799e528a4ea289bed64c7548a038d95a3b07f49
7
+ data.tar.gz: b199a4a49fc12253127e191bdc8aef83a15a426c5c26dd3a8c926a9ecc5f257a5c6f39320fe3ba353118a542b9d77a0e771f547959fa521687549097bc2647ee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2025-10-31
4
+
5
+ - Fix: Ensure all Kozenet UI CSS files are available in the asset pipeline for all Rails setups (improved asset paths and precompile logic in engine).
6
+
3
7
  ## [0.1.0] - 2025-10-30
4
8
 
5
9
  - Initial release
@@ -59,11 +59,21 @@ module KozenetUi
59
59
  end
60
60
 
61
61
  initializer "kozenet_ui.assets" do |app|
62
- if app.config.respond_to?(:assets) && app.config.assets.respond_to?(:paths)
63
- app.config.assets.paths << root.join("app/assets/stylesheets/kozenet_ui")
64
- app.config.assets.paths << root.join("app/assets/stylesheets/kozenet_ui/components")
65
- app.config.assets.paths << root.join("app/assets/images/kozenet_ui/icons")
62
+ # Add all Kozenet UI asset paths for stylesheets and images
63
+ %w[
64
+ app/assets/stylesheets/kozenet_ui
65
+ app/assets/stylesheets/kozenet_ui/components
66
+ app/assets/images/kozenet_ui/icons
67
+ ].each do |path|
68
+ app.config.assets.paths << root.join(path)
66
69
  end
70
+
71
+ # Precompile Kozenet UI CSS files for all asset setups
72
+ app.config.assets.precompile += %w[
73
+ kozenet_ui/tokens.css
74
+ kozenet_ui/base.css
75
+ kozenet_ui/components.css
76
+ ]
67
77
  end
68
78
  end
69
79
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KozenetUi
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kozenet_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kozenet Pro