signum 0.7.7 → 0.7.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: afc66ab9111c5abd8514d9886085a4009616b991088f8e942125fc193d3cb1b1
4
- data.tar.gz: 5e86e69e0e07f2cff2f377ceb9dc652e41d2ec31069649f7bd364c74b04583b4
3
+ metadata.gz: 3494e734033d557ba192219d5ef087b0b65c6e9ce22c7f56f4fc322433189aaa
4
+ data.tar.gz: 6778704b952bf1044b941804f5106e068f5c2dd4a779ab31f5925b1cad09b9e7
5
5
  SHA512:
6
- metadata.gz: 0037367c3fbc51de0dacae3f556a6edfaed552c4dd1c6dc1b5ac6ae375d5f4fa59f1ab2c1d769851d5923b3a645ed4997ce979cc6cdd59924564cdd3f92cab12
7
- data.tar.gz: 706885e899ea2fe06c37e8191f45e17196dfd4a020a39633337f07d4f626555125a055196c4784feec9b202178e3164fa5e0fcc676ecc6599edfc3bf4f63bb61
6
+ metadata.gz: 18956ce1a95bb645e790ad339dc46d98c203ae2d4ab7044c37373c1da2bef7d012ffe45c5271b10d98e48f0a809a530a4fef06c646992f244e6e315d257a2895
7
+ data.tar.gz: e96abf61369d0e2e1181b4b4c0ad7aa8e56f173c3485aa12509663ec082e930748f4f18bc3866a1ff41c6ce0b9309d1a6d1414b9c577976ffaa5a3e56cd57a21
@@ -2,95 +2,94 @@
2
2
  @apply flex flex-col w-full divide-y;
3
3
 
4
4
  &__mb {
5
- // main body
5
+ /* main body */
6
6
  @apply flex basis-full divide-x;
7
7
 
8
8
  &__bc {
9
- //body container
9
+ /* body container */
10
10
  @apply flex grow py-4 px-2 overflow-hidden;
11
11
 
12
12
  &__ic {
13
- //icon container
13
+ /* icon container */
14
14
  @apply grow-0 pl-2 pr-3;
15
-
16
- svg.info
17
- {
18
- //icon info
19
- @apply text-sky-400;
20
- }
21
15
 
22
- svg.success{
23
- //icon success
24
- @apply text-green-400;
25
- }
16
+ svg.info {
17
+ /* icon info */
18
+ @apply text-sky-400;
19
+ }
26
20
 
27
- svg.error{
28
- //icon error
29
- @apply text-red-400;
30
- }
21
+ svg.success {
22
+ /* icon success */
23
+ @apply text-green-400;
24
+ }
31
25
 
32
- svg.warning{
33
- //icon warning
34
- @apply text-orange-400;
26
+ svg.error {
27
+ /* icon error */
28
+ @apply text-red-400;
29
+ }
30
+
31
+ svg.warning {
32
+ /* icon warning */
33
+ @apply text-orange-400;
34
+ }
35
35
  }
36
- }
37
36
 
38
37
  &__mc {
39
- //main container
38
+ /* main container */
40
39
  @apply grow text-left break-words overflow-hidden;
41
40
 
42
41
  &__ti {
43
- // title
42
+ /* title */
44
43
  @apply text-[0.81rem] font-medium text-gray-900;
45
44
  }
46
45
 
47
46
  &__tx {
48
- //text
47
+ /* text */
49
48
  @apply text-xs text-gray-500 mt-1;
50
49
  }
51
50
 
52
51
  &__lkc {
53
- //links container
52
+ /* links container */
54
53
  @apply flex flex-wrap mt-3;
55
54
 
56
55
  &__lk {
57
- //link
56
+ /* link */
58
57
  @apply rounded-md text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none mr-2;
59
58
  }
60
59
  }
61
60
 
62
61
  &__attc {
63
- //attachments links container
62
+ /* attachments links container */
64
63
  @apply flex flex-wrap mt-3;
65
64
 
66
65
  &__att {
67
- //attachment link
66
+ /* attachment link */
68
67
  @apply rounded-md text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none mr-2;
69
68
  }
70
69
  }
71
70
  }
72
71
 
73
72
  &__bcc {
74
- //close button container
73
+ /* close button container */
75
74
  @apply grow-0 m-1;
76
75
 
77
76
  &__b {
78
- //button
77
+ /* button */
79
78
  @apply text-gray-400 hover:text-gray-500 cursor-pointer;
80
79
  }
81
80
  }
82
81
  }
83
82
 
84
83
  &__bmc {
85
- //buttons main container
84
+ /* buttons main container */
86
85
  @apply flex grow-0 flex-col divide-y divide-gray-200;
87
86
 
88
87
  &__bc {
89
- //buttons container
88
+ /* buttons container */
90
89
  @apply flex flex-1;
91
90
 
92
91
  &__b {
93
- //button
92
+ /* button */
94
93
  @apply flex w-full items-center justify-center text-xs font-medium text-gray-700 hover:text-gray-500 focus:outline-none px-4 py-3;
95
94
  }
96
95
  }
@@ -98,7 +97,7 @@
98
97
  }
99
98
 
100
99
  &__pbc {
101
- //progress bar container
100
+ /* progress bar container */
102
101
  @apply basis-full p-1;
103
102
  }
104
103
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Signum
4
- VERSION = "0.7.7"
4
+ VERSION = "0.7.9"
5
5
  end
@@ -1,3 +1,5 @@
1
+ require "rails/generators"
2
+
1
3
  namespace :signum do
2
4
  namespace :tailwindcss do
3
5
  desc "Configure your Tailwind CSS"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: signum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7
4
+ version: 0.7.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom de Grunt
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-24 00:00:00.000000000 Z
11
+ date: 2025-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg
@@ -279,7 +279,7 @@ homepage: https://github.com/entdec/signum
279
279
  licenses:
280
280
  - MIT
281
281
  metadata: {}
282
- post_install_message:
282
+ post_install_message:
283
283
  rdoc_options: []
284
284
  require_paths:
285
285
  - lib
@@ -295,7 +295,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
295
295
  version: '0'
296
296
  requirements: []
297
297
  rubygems_version: 3.4.10
298
- signing_key:
298
+ signing_key:
299
299
  specification_version: 4
300
300
  summary: Replacement for flash messages, also from background jobs
301
301
  test_files: []