@visns-studio/visns-components 5.4.19 → 5.4.20
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.
- package/package.json +1 -1
- package/src/components/crm/auth/styles/TwoFactorAuth.module.scss +16 -2
- package/src/components/crm/generic/GenericReport.jsx +2158 -0
- package/src/components/crm/generic/styles/GenericFormBuilder.module.scss +3 -3
- package/src/components/crm/generic/styles/GenericReport.module.scss +905 -0
- package/src/components/crm/styles/Field.module.scss +3 -3
- package/src/components/styles/global.css +6 -6
- package/src/index.js +2 -0
|
@@ -281,7 +281,7 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
281
281
|
.formItem
|
|
282
282
|
input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
|
|
283
283
|
[type='checkbox']
|
|
284
|
-
):not(.inovua-react-toolkit-combo-box__input):not(
|
|
284
|
+
):not([type='radio']):not(.inovua-react-toolkit-combo-box__input):not(
|
|
285
285
|
.inovua-react-toolkit-date-input__input
|
|
286
286
|
):not(.inovua-react-toolkit-text-input__input):not(
|
|
287
287
|
.inovua-react-toolkit-numeric-input__input
|
|
@@ -302,7 +302,7 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
302
302
|
.formItem
|
|
303
303
|
input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
|
|
304
304
|
[type='checkbox']
|
|
305
|
-
):not(.inovua-react-toolkit-combo-box__input):not(
|
|
305
|
+
):not([type='radio']):not(.inovua-react-toolkit-combo-box__input):not(
|
|
306
306
|
.inovua-react-toolkit-date-input__input
|
|
307
307
|
):not(.inovua-react-toolkit-numeric-input__input):hover {
|
|
308
308
|
border: 1px solid rgba(var(--paragraph-color-rgb), 0.85);
|
|
@@ -314,7 +314,7 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
314
314
|
.formItem
|
|
315
315
|
input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
|
|
316
316
|
[type='checkbox']
|
|
317
|
-
):not(.inovua-react-toolkit-combo-box__input):not(
|
|
317
|
+
):not([type='radio']):not(.inovua-react-toolkit-combo-box__input):not(
|
|
318
318
|
.inovua-react-toolkit-date-input__input
|
|
319
319
|
):not(.inovua-react-toolkit-numeric-input__input):focus {
|
|
320
320
|
border: 1px solid rgba(var(--paragraph-color-rgb), 0.85);
|
|
@@ -189,12 +189,12 @@ a {
|
|
|
189
189
|
textarea,
|
|
190
190
|
select,
|
|
191
191
|
input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
|
|
192
|
-
|
|
193
|
-
):not(.inovua-react-toolkit-
|
|
194
|
-
.inovua-react-toolkit-
|
|
195
|
-
):not(.inovua-react-toolkit-
|
|
196
|
-
.inovua-react-toolkit-
|
|
197
|
-
) {
|
|
192
|
+
[type='checkbox']
|
|
193
|
+
):not([type='radio']):not(.inovua-react-toolkit-numeric-input__input):not(
|
|
194
|
+
.inovua-react-toolkit-combo-box__input
|
|
195
|
+
):not(.inovua-react-toolkit-date-input__input):not(
|
|
196
|
+
.inovua-react-toolkit-text-input__input
|
|
197
|
+
):not(.inovua-react-toolkit-numeric-input__input) {
|
|
198
198
|
background: white;
|
|
199
199
|
border-radius: var(--br);
|
|
200
200
|
border: 1px solid rgba(var(--paragraph-color-rgb), 0.15);
|
package/src/index.js
CHANGED
|
@@ -44,6 +44,7 @@ import GenericFormBuilder from './components/crm/generic/GenericFormBuilder';
|
|
|
44
44
|
import GenericIndex from './components/crm/generic/GenericIndex';
|
|
45
45
|
import GenericMain from './components/crm/generic/GenericMain';
|
|
46
46
|
import GenericQuote from './components/crm/generic/GenericQuote';
|
|
47
|
+
import GenericReport from './components/crm/generic/GenericReport';
|
|
47
48
|
import GenericSort from './components/crm/generic/GenericSort';
|
|
48
49
|
import NotificationList from './components/crm/generic/NotificationList';
|
|
49
50
|
|
|
@@ -72,6 +73,7 @@ export {
|
|
|
72
73
|
GenericIndex,
|
|
73
74
|
GenericMain,
|
|
74
75
|
GenericQuote,
|
|
76
|
+
GenericReport,
|
|
75
77
|
GenericSort,
|
|
76
78
|
Loader,
|
|
77
79
|
Login,
|