@visns-studio/visns-components 4.0.6 → 4.0.7

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.
@@ -138,7 +138,6 @@ function TableFilter({
138
138
  </li>
139
139
  );
140
140
  } else {
141
- console.info(d.class);
142
141
  return (
143
142
  <li>
144
143
  <a
@@ -161,7 +160,6 @@ function TableFilter({
161
160
  >
162
161
  {d.children.map((child, key) => (
163
162
  <li key={`table-filter-child-${d.id}-${key}`}>
164
- {console.info(child.class)}
165
163
  <a
166
164
  className={childClass(child)}
167
165
  data-id={child.id}
@@ -18,8 +18,8 @@
18
18
 
19
19
  .subactive {
20
20
  font-weight: 700;
21
- background: var(--table-filter-active-bg-color) !important;
22
- color: var(--table-filter-active-color) !important;
21
+ background: var(--primary-color) !important;
22
+ color: var(--paragraph-color) !important;
23
23
  }
24
24
 
25
25
  .subactivechildren {
@@ -34,17 +34,17 @@
34
34
  display: block;
35
35
  padding: 8px 20px;
36
36
  text-decoration: none;
37
- background: var(--table-filter-link-bg-color);
38
- color: var(--table-filter-link-color);
37
+ background: var(--item-color);
38
+ color: var(--paragraph-color);
39
39
  border-radius: 3px;
40
40
  transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
41
41
  }
42
42
 
43
43
  .link:hover {
44
- background: var(--table-filter-link-hover-bg-color) !important;
44
+ background: var(--item-color) !important;
45
45
  }
46
46
 
47
47
  .activetab {
48
- background: var(--table-filter-active-bg-color) !important;
49
- color: var(--table-filter-active-color) !important;
48
+ background: var(--primary-color) !important;
49
+ color: var(--paragraph-color) !important;
50
50
  }
package/package.json CHANGED
@@ -56,7 +56,7 @@
56
56
  "react-dom": "^17.0.1"
57
57
  },
58
58
  "name": "@visns-studio/visns-components",
59
- "version": "4.0.6",
59
+ "version": "4.0.7",
60
60
  "description": "Various packages to assist in the development of our Custom Applications.",
61
61
  "main": "index.js",
62
62
  "scripts": {