@visns-studio/visns-components 4.4.0 → 4.4.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.
@@ -0,0 +1,94 @@
1
+ .preloader {
2
+ width: max-content;
3
+ display: flex;
4
+ flex-wrap: nowrap;
5
+ align-items: center;
6
+ position: fixed;
7
+ bottom: 20px;
8
+ left: 20px;
9
+ background: var(--paragraph-color);
10
+ border-radius: 30px;
11
+ padding: 0.35em;
12
+ box-sizing: border-box;
13
+ z-index: 999;
14
+ transition: opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1);
15
+
16
+ span {
17
+ font-size: 0.675em;
18
+ display: block;
19
+ width: max-content;
20
+ color: var(--tertiary-color);
21
+ padding: 0 0.35em 0 0.85em;
22
+ letter-spacing: 0.035em;
23
+ }
24
+ }
25
+
26
+ .preloader__icn {
27
+ opacity: 1;
28
+ width: 14px;
29
+ height: 14px;
30
+ animation: clockwise 500ms linear infinite;
31
+ }
32
+
33
+ .preloader__cut {
34
+ position: relative;
35
+ width: 7px;
36
+ height: 14px;
37
+ overflow: hidden;
38
+ position: absolute;
39
+ top: 0;
40
+ left: 0;
41
+ }
42
+
43
+ .preloader__donut--fake {
44
+ box-sizing: border-box;
45
+ width: 14px;
46
+ height: 14px;
47
+ border: 2px solid red;
48
+ border-radius: 50%;
49
+ position: absolute;
50
+ top: 0;
51
+ left: 0;
52
+ background: none;
53
+ margin: 0;
54
+ }
55
+
56
+ .preloader__donut {
57
+ box-sizing: border-box;
58
+ width: 14px;
59
+ height: 14px;
60
+ border: 2px solid var(--tertiary-color);
61
+ border-radius: 50%;
62
+ border-left-color: transparent;
63
+ border-bottom-color: transparent;
64
+ position: absolute;
65
+ top: 0;
66
+ left: 0;
67
+ position: absolute;
68
+ top: 0;
69
+ left: 0;
70
+ background: none;
71
+ margin: 0;
72
+ animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
73
+ }
74
+
75
+ @keyframes clockwise {
76
+ 0% {
77
+ transform: rotate(0deg);
78
+ }
79
+ 100% {
80
+ transform: rotate(360deg);
81
+ }
82
+ }
83
+
84
+ @keyframes donut-rotate {
85
+ 0% {
86
+ transform: rotate(0);
87
+ }
88
+ 50% {
89
+ transform: rotate(-140deg);
90
+ }
91
+ 100% {
92
+ transform: rotate(0);
93
+ }
94
+ }
@@ -0,0 +1,12 @@
1
+ .visns__ms {
2
+ input {
3
+ &:hover {
4
+ box-shadow: none !important;
5
+ transition: box-shadow 0.15s linear !important;
6
+ }
7
+
8
+ &:focus {
9
+ box-shadow: none !important;
10
+ }
11
+ }
12
+ }
@@ -0,0 +1,87 @@
1
+ .gridtxt {
2
+ &__header {
3
+ width: 100%;
4
+ display: block;
5
+ background: rgba(var(--item-color-rgb), 1.05);
6
+ box-sizing: border-box;
7
+ padding: 10px 20px;
8
+ border-radius: 0;
9
+ margin-bottom: 0;
10
+ font-weight: 700;
11
+ text-align: center;
12
+ color: var(--paragraph-color);
13
+
14
+ span {
15
+ font-weight: 700;
16
+ }
17
+ }
18
+
19
+ > ul {
20
+ width: 100%;
21
+ display: flex;
22
+ justify-content: flex-start;
23
+ flex-direction: row;
24
+ flex-wrap: wrap;
25
+ list-style: none;
26
+ box-sizing: border-box;
27
+ padding: 0.85rem;
28
+ margin: 0;
29
+
30
+ li {
31
+ flex: 0 0 calc(50% - 10px);
32
+ padding: 0.85rem;
33
+ box-sizing: border-box;
34
+ border: 1px solid rgba(var(--primary-color-rgb), 0.15);
35
+ color: var(--paragraph-color);
36
+ background: rgba(var(--tertiary-color-rgb), 0.95);
37
+ margin: 5px;
38
+ border-radius: var(--br);
39
+ line-height: 1.45;
40
+ }
41
+
42
+ .fw-grid-item {
43
+ flex: 0 0 calc(100% - 10px);
44
+ }
45
+
46
+ .notecolor {
47
+ border: 1px solid var(--secondary-color);
48
+ }
49
+ }
50
+ }
51
+
52
+ .customer__overview {
53
+ width: 100%;
54
+ display: flex;
55
+ justify-content: flex-start;
56
+ flex-direction: row;
57
+ flex-wrap: wrap;
58
+ list-style: none;
59
+ box-sizing: border-box;
60
+ padding: 1em;
61
+ margin: 0;
62
+
63
+ li {
64
+ width: 49%;
65
+ padding: 1em;
66
+ box-sizing: border-box;
67
+ border: 1px solid rgba(var(--primary-color-rgb), 0.15);
68
+ color: var(--paragraph-color);
69
+ background: rgba(#f4f4f4, 0.65);
70
+ margin: 5px;
71
+ border-radius: 5px;
72
+ }
73
+ }
74
+
75
+ .polActions {
76
+ position: fixed;
77
+ bottom: 15px;
78
+ right: 20px;
79
+ width: auto;
80
+
81
+ button {
82
+ display: block;
83
+ float: left;
84
+ padding: 0.35em 1em;
85
+ margin: 0 0.15em;
86
+ }
87
+ }
@@ -0,0 +1,31 @@
1
+ textarea,
2
+ select,
3
+ input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
4
+ .inovua-react-toolkit-numeric-input__input
5
+ ):not(.inovua-react-toolkit-combo-box__input):not(
6
+ .inovua-react-toolkit-date-input__input
7
+ ):not(.inovua-react-toolkit-text-input__input):not(
8
+ .inovua-react-toolkit-numeric-input__input
9
+ ) {
10
+ background: var(--item-color);
11
+ border-radius: var(--br);
12
+ border: 1px solid rgba(var(--paragraph-color-rgb), 0.15);
13
+ box-shadow: none;
14
+ padding: 1rem;
15
+ outline: none;
16
+ width: 100%;
17
+ box-sizing: border-box;
18
+ background: rgba(white, 0.5);
19
+ color: var(--paragraph-color);
20
+ transition: border 0.15s linear;
21
+ font-size: 1.25em;
22
+
23
+ &:hover {
24
+ border: 1px solid var(--primary-color);
25
+ transition: border 0.15s linear;
26
+ }
27
+
28
+ &:focus {
29
+ border: 1px solid var(--primary-color);
30
+ }
31
+ }
package/package.json CHANGED
@@ -57,7 +57,7 @@
57
57
  "react-dom": "^17.0.1"
58
58
  },
59
59
  "name": "@visns-studio/visns-components",
60
- "version": "4.4.0",
60
+ "version": "4.4.2",
61
61
  "description": "Various packages to assist in the development of our Custom Applications.",
62
62
  "main": "index.js",
63
63
  "scripts": {