vident-view_component 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-view_component.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: fa78ec0f7f2aad87ee0b10d3f4d354d294332a29dc0b7ad9814b44791739cb06
|
|
4
|
+
data.tar.gz: da78bd43e7b73a5ce53e14126ad297950e6ab18bfb2ea3338ce37a4dbb4b68f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c5d0e27e9ced3bbc2a94e72c4593c2bc3aa69527f64bcf24e86612bd2f6d32a3bb929ee9a87cd1331088eace2e619cd3c4d0491063d3b8db0945479fe9ab2c1
|
|
7
|
+
data.tar.gz: d3bb8e28b96a8b7e33bd538f1e4b0c01a377d7f806d6d625b9aee0e3908bfc60b65b73e6bcb2ec46bc25b1c3469aa82f381c87573a5054f3165beadad15b6721
|
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.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# Entry point for the `vident-view_component` gem — loaded automatically by
|
|
4
|
+
# `Bundler.require` when `gem "vident-view_component"` is in the Gemfile.
|
|
5
|
+
|
|
6
|
+
require "view_component"
|
|
7
|
+
require "vident"
|
|
8
|
+
require "vident/view_component"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vident-view_component
|
|
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: view_component
|
|
68
68
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -93,6 +93,7 @@ files:
|
|
|
93
93
|
- CHANGELOG.md
|
|
94
94
|
- LICENSE.txt
|
|
95
95
|
- README.md
|
|
96
|
+
- lib/vident-view_component.rb
|
|
96
97
|
- lib/vident/view_component.rb
|
|
97
98
|
- lib/vident/view_component/base.rb
|
|
98
99
|
homepage: https://github.com/stevegeek/vident
|