vident-phlex 2.0.0 → 2.0.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/vident-phlex.rb +8 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cdf84f000e9046e59015ac323eb5cedcdfd91405c93cd796161179f33d8f0f8a
|
|
4
|
+
data.tar.gz: a567dbfc018d5f3a12902fc2c3efd23587d1a6c2533e8a1a2d1a0aaa5937603d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70bdb5431b9b760409e29daa8614ee8af074f6980e13d13daea6c8192f048456bdd78db63712082d54259ed1ea76ff217b2d37cac79b09386ca38a3743403bfd
|
|
7
|
+
data.tar.gz: 00cb73db841a2e10b28dbed5f96e7adf0ef1f11f5090e3dcc0786ce0f3f8d2dd86a44e985e5ecef3ed394dc77e7104f32980d46db88fd1ef04d93223b0c5568e
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [2.0.1] - 2026-04-24
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Base gem no longer fails to load when installed without the adapter gems — adapter requires moved to their own entry points (`lib/vident-phlex.rb`, `lib/vident-view_component.rb`) (#29).
|
|
14
|
+
|
|
15
|
+
|
|
9
16
|
## [2.0.0] - 2026-04-24
|
|
10
17
|
|
|
11
18
|
Vident 2.0 is a ground-up rearchitecture of the DSL, attribute resolution, and composition model. The public shape of `stimulus do ... end`, `root_element`, `child_element`, outlets, props, and the `stimulus_*:` prop/kwarg API is preserved for common cases, but several internals and a handful of edge-case behaviours changed. See `doc/reviews/v1-gotchas.md` for the full list of fixed gotchas; the highlights are below.
|
data/lib/vident-phlex.rb
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vident-phlex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Ierodiaconou
|
|
@@ -55,14 +55,14 @@ dependencies:
|
|
|
55
55
|
requirements:
|
|
56
56
|
- - "~>"
|
|
57
57
|
- !ruby/object:Gem::Version
|
|
58
|
-
version: 2.0.
|
|
58
|
+
version: 2.0.1
|
|
59
59
|
type: :runtime
|
|
60
60
|
prerelease: false
|
|
61
61
|
version_requirements: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
|
63
63
|
- - "~>"
|
|
64
64
|
- !ruby/object:Gem::Version
|
|
65
|
-
version: 2.0.
|
|
65
|
+
version: 2.0.1
|
|
66
66
|
- !ruby/object:Gem::Dependency
|
|
67
67
|
name: phlex
|
|
68
68
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -113,6 +113,7 @@ files:
|
|
|
113
113
|
- CHANGELOG.md
|
|
114
114
|
- LICENSE.txt
|
|
115
115
|
- README.md
|
|
116
|
+
- lib/vident-phlex.rb
|
|
116
117
|
- lib/vident/phlex.rb
|
|
117
118
|
- lib/vident/phlex/html.rb
|
|
118
119
|
homepage: https://github.com/stevegeek/vident
|