homura-runtime 0.3.25 → 0.3.27

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: 0b2d4ab2b10a143e1d6498e18df0a8b434fe68375824363ab529f866cecd6893
4
- data.tar.gz: 6a9ec9a85df8450c752cee860de6acfc5cffe9c5285372e991da9372e07527aa
3
+ metadata.gz: 8668dcae5fa94a983e370b955deb9edd0097dbb7e45a5e26bc99b341932c0bfa
4
+ data.tar.gz: 917dc45767af13bae754edd069a31aef660a0a046b058e2fcda432cbdf0a0dec
5
5
  SHA512:
6
- metadata.gz: '08f2e8a1c214545e38378c23de1d5204ad430ebe843326a3bd92b5998223aefdef20b6ab5be7ee5b3a29949b61aea5c3b2a12d6daa2fb7e76d8b6cbc322d2cca'
7
- data.tar.gz: 938b603a2aefe6d4f343e3ecf87b1098ef6a19c9a6c0e68d162fdd32dfa5363255fcdab9a9b42d02076036af4ab555d0e471921b86f23b845a724d06468f491b
6
+ metadata.gz: 89471504331d0df3f6f4d5a460ce395e4521f7650144adae338f9b2d80c633747c3a2fe62470259e1cecee08e826e32818d56b22e7414b7320b4fd781f5e2674
7
+ data.tar.gz: 55be72d59bd35cbb959df41f91e4e56705d5e959c04a157166ac0a1e5c8693bfa1fab810c3d7223cdfb1271ab662b56f2349bccc9c7071e11c502a5de228951c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.27 (2026-06-25)
4
+
5
+ - Load `literal/types` before individual Literal type classes in the Opal
6
+ compatibility layer, so `Literal::Types` exists before the type files attach
7
+ constants to it.
8
+
9
+ ## 0.3.26 (2026-06-25)
10
+
11
+ - Explicitly load the Literal type modules needed by component props under
12
+ Opal, including `_String`, `_Integer`, `_Boolean`, `_Symbol`, and `_Array`.
13
+
3
14
  ## 0.3.25 (2026-06-25)
4
15
 
5
16
  - Override Phlex element registration before loading HTML/SVG element modules.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HomuraRuntime
4
- VERSION = "0.3.25"
4
+ VERSION = "0.3.27"
5
5
  end
@@ -2,6 +2,15 @@
2
2
 
3
3
  require "zeitwerk/opal_compat"
4
4
  require "literal" unless defined?(Literal)
5
+ require "literal/type"
6
+ require "literal/types"
7
+ require "literal/types/any_type"
8
+ require "literal/types/array_type"
9
+ require "literal/types/boolean_type"
10
+ require "literal/types/constraint_type"
11
+ require "literal/types/nilable_type"
12
+ require "literal/types/union_type"
13
+ require "literal/types/void_type"
5
14
 
6
15
  module Literal
7
16
  class OpalBuffer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: homura-runtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.25
4
+ version: 0.3.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuhiro Homma