renusify 1.3.0 → 1.3.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.
@@ -12,7 +12,7 @@
12
12
 
13
13
 
14
14
  .breadcrumb-divider, .breadcrumb-item-disabled, .#{$prefix}icon {
15
- color: var(--color-text-disabled)
15
+ color: var(--color-disabled)
16
16
  }
17
17
 
18
18
 
@@ -313,12 +313,12 @@ export default {
313
313
 
314
314
  input::placeholder,
315
315
  textarea::placeholder {
316
- color: var(--color-text-disabled)
316
+ color: var(--color-disabled)
317
317
  }
318
318
 
319
319
  &.input-disabled {
320
320
  * {
321
- color: var(--color-text-disabled)
321
+ color: var(--color-disabled)
322
322
  }
323
323
  }
324
324
 
@@ -52,7 +52,7 @@ export default {
52
52
  max-width: 100%;
53
53
  white-space: nowrap;
54
54
  transition: 1s $primary-transition;
55
- color: var(--color-text-disabled);
55
+ color: var(--color-disabled);
56
56
  }
57
57
 
58
58
  </style>
@@ -78,7 +78,7 @@ emits:['update:modelValue'],
78
78
 
79
79
  .#{$prefix}unit-input {
80
80
  .input-shadow, .input-shadow * {
81
- color: var(--color-text-disabled) !important
81
+ color: var(--color-disabled) !important
82
82
  }
83
83
 
84
84
  input {
@@ -13,11 +13,11 @@ $item-height: 48px;
13
13
 
14
14
  .list-item {
15
15
  &.list-item-active {
16
- background-color: var(--color-table-active)
16
+ background-color: var(--color-sheet-active)
17
17
  }
18
18
 
19
19
  &:hover {
20
- background-color: var(--color-table-hover)
20
+ background-color: var(--color-sheet-hover)
21
21
  }
22
22
  }
23
23
 
@@ -157,7 +157,7 @@ export default {
157
157
  border: 1px solid var(--color-border);
158
158
 
159
159
  &-item:hover {
160
- background-color: var(--color-table-hover);
160
+ background-color: var(--color-sheet-hover);
161
161
  }
162
162
  }
163
163
 
@@ -50,7 +50,7 @@ $data-table-regular-header-height: 38px !default;
50
50
 
51
51
  &:hover {
52
52
  td:first-child {
53
- background: var(--color-table-hover)
53
+ background: var(--color-sheet-hover)
54
54
  }
55
55
  }
56
56
  }
@@ -60,7 +60,7 @@ $data-table-regular-header-height: 38px !default;
60
60
  tbody {
61
61
  tr:nth-child(2n):not(:hover) {
62
62
  td {
63
- background: var(--color-table-active)
63
+ background: var(--color-sheet-active)
64
64
  }
65
65
  }
66
66
  }
@@ -69,11 +69,11 @@ $data-table-regular-header-height: 38px !default;
69
69
  tbody {
70
70
  tr {
71
71
  &:active {
72
- background: var(--color-table-active)
72
+ background: var(--color-sheet-active)
73
73
  }
74
74
 
75
75
  &:hover {
76
- background: var(--color-table-hover)
76
+ background: var(--color-sheet-hover)
77
77
  }
78
78
  }
79
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "renusify",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Vue3 Framework",
5
5
  "keywords": [
6
6
  "vuejs",
package/style/colors.scss CHANGED
@@ -15,14 +15,13 @@ $colorsList: (
15
15
  'divider':rgba(#444, 0.2),
16
16
  'text-primary':#515151,
17
17
  'text-secondary':#888,
18
- 'text-disabled':rgba(#000, 0.26),
19
18
  'disabled':rgba(#000, 0.26),
20
19
  'focused':rgba(#000, 0.12),
21
20
  'pressed':rgba(#999, 0.4),
22
21
  'border': rgba(#000, 0.24),
23
22
  'sheet': #fff,
24
- 'table-active': #f5f5f5,
25
- 'table-hover': #eeeeee,
23
+ 'sheet-active': #f5f5f5,
24
+ 'sheet-hover': #eeeeee,
26
25
  'overlay': rgba(225, 225, 225, 0.5)
27
26
  ) !default;
28
27
 
@@ -105,7 +104,7 @@ $colorsList: (
105
104
  }
106
105
 
107
106
  .color-disabled-text {
108
- @include text-color(var(--color-text-disabled), true);
107
+ @include text-color(var(--color-disabled), true);
109
108
  }
110
109
 
111
110
 
package/tools/helper.js CHANGED
@@ -173,10 +173,6 @@ export function limiter(string, length) {
173
173
  : string;
174
174
  }
175
175
 
176
- export function url() {
177
- return process.env.NODE_ENV === 'production' ? process.env.VUE_APP_API_production_URL : process.env.VUE_APP_API_URL;
178
- }
179
-
180
176
  export function cleanArray(actual) {
181
177
  const newArray = [];
182
178
  const lng = actual.length