formatic 0.1.0 → 0.1.2
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 +5 -1
- data/app/assets/stylesheets/formatic/scopes/form.sass +7 -0
- data/app/assets/stylesheets/formatic/tools/_theme.sass +3 -0
- data/lib/formatic/engine.rb +0 -4
- data/lib/formatic/version.rb +1 -1
- metadata +3 -2
- /data/app/assets/stylesheets/formatic/tools/{terminal.sass → _terminal.sass} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6866787fc56a4b98a9b97ffe11a281a767ec813f733eb74d07bcf2b303593725
|
4
|
+
data.tar.gz: 7a24c6e8e8fee918e32d0aff8af9eb6de7bbddb5198f8543154372064aaba134
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6faf76d25ab2a7aebf6dede0ede2157c946aa392bb4f34d9408c6c8f963ff7e6358a1385ffd2b2bed86e048f2d895d9140cb4feeb394546d297b28451ed6e008
|
7
|
+
data.tar.gz: abe246213380bf455eb1f678d5c285a9d79cd463db8233ffd8d6acef66303cbc5d9546f6308490e2dba87b9d0cbcf6c46ce3be170d1d0168bcbc85354c5b4688
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
@use "iglu/font-size"
|
2
2
|
@use "formatic/settings/colors"
|
3
|
+
@use "formatic/tools/theme"
|
3
4
|
|
4
5
|
.s-formatic
|
5
6
|
input[type="email"],
|
@@ -43,3 +44,9 @@
|
|
43
44
|
|
44
45
|
::placeholder
|
45
46
|
color: colors.$silver-gray
|
47
|
+
|
48
|
+
+theme.dark
|
49
|
+
.s-formatic
|
50
|
+
textarea
|
51
|
+
background-color: colors.$granite-gray
|
52
|
+
color: colors.$white
|
data/lib/formatic/engine.rb
CHANGED
@@ -9,10 +9,6 @@ module Formatic
|
|
9
9
|
isolate_namespace Formatic
|
10
10
|
|
11
11
|
config.to_prepare do
|
12
|
-
require_formatic_components
|
13
|
-
end
|
14
|
-
|
15
|
-
def self.require_formatic_components
|
16
12
|
# Our Formatic components are subclasses of `ViewComponent::Base`.
|
17
13
|
# When `ViewComponent::Base` is subclassed, two things happen:
|
18
14
|
#
|
data/lib/formatic/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: formatic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- halo
|
@@ -124,7 +124,8 @@ files:
|
|
124
124
|
- app/assets/stylesheets/formatic/package.json
|
125
125
|
- app/assets/stylesheets/formatic/scopes/form.sass
|
126
126
|
- app/assets/stylesheets/formatic/settings/_colors.sass
|
127
|
-
- app/assets/stylesheets/formatic/tools/
|
127
|
+
- app/assets/stylesheets/formatic/tools/_terminal.sass
|
128
|
+
- app/assets/stylesheets/formatic/tools/_theme.sass
|
128
129
|
- app/assets/stylesheets/formatic/utilities/container.sass
|
129
130
|
- app/components/formatic/application_component.rb
|
130
131
|
- app/components/formatic/base.rb
|
File without changes
|