@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
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
.formItem
|
|
198
198
|
input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
|
|
199
199
|
[type='checkbox']
|
|
200
|
-
):not(.inovua-react-toolkit-combo-box__input):not(
|
|
200
|
+
):not([type='radio']):not(.inovua-react-toolkit-combo-box__input):not(
|
|
201
201
|
.inovua-react-toolkit-date-input__input
|
|
202
202
|
):not(.inovua-react-toolkit-text-input__input):not(
|
|
203
203
|
.inovua-react-toolkit-numeric-input__input
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
.formItem
|
|
219
219
|
input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
|
|
220
220
|
[type='checkbox']
|
|
221
|
-
):not(.inovua-react-toolkit-combo-box__input):not(
|
|
221
|
+
):not([type='radio']):not(.inovua-react-toolkit-combo-box__input):not(
|
|
222
222
|
.inovua-react-toolkit-date-input__input
|
|
223
223
|
):not(.inovua-react-toolkit-numeric-input__input):hover {
|
|
224
224
|
border: 1px solid rgba(var(--primary-rgb), 0.85);
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
.formItem
|
|
231
231
|
input[type]:not([type='search']):not([type='url']):not([type='hidden']):not(
|
|
232
232
|
[type='checkbox']
|
|
233
|
-
):not(.inovua-react-toolkit-combo-box__input):not(
|
|
233
|
+
):not([type='radio']):not(.inovua-react-toolkit-combo-box__input):not(
|
|
234
234
|
.inovua-react-toolkit-date-input__input
|
|
235
235
|
):not(.inovua-react-toolkit-numeric-input__input):focus {
|
|
236
236
|
border: 1px solid rgba(var(--primary-rgb), 0.85);
|