@visns-studio/visns-components 5.15.10 → 5.15.12
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 +10 -10
- package/src/components/Breadcrumb.jsx +19 -11
- package/src/components/DataGrid.jsx +0 -5
- package/src/components/Field.jsx +58 -8
- package/src/components/Form.jsx +263 -101
- package/src/components/MultiCheckbox.jsx +335 -0
- package/src/components/MultiSelect.jsx +30 -1
- package/src/components/columns/ColumnRenderers.jsx +2 -38
- package/src/components/generic/GenericDetail.jsx +0 -10
- package/src/components/oauth/DataPreviewModal.jsx +372 -0
- package/src/components/oauth/DataSyncWizard.jsx +850 -0
- package/src/components/oauth/OAuthConnectionStatus.jsx +85 -0
- package/src/components/oauth/OAuthIntegrationsPage.jsx +185 -0
- package/src/components/oauth/OAuthManager.jsx +260 -0
- package/src/components/oauth/OAuthProviderCard.jsx +291 -0
- package/src/components/styles/DataPreviewModal.module.scss +658 -0
- package/src/components/styles/DataSyncWizard.module.scss +1211 -0
- package/src/components/styles/MultiCheckbox.module.scss +321 -0
- package/src/components/styles/OAuthConnectionStatus.module.scss +143 -0
- package/src/components/styles/OAuthManager.module.scss +119 -0
- package/src/components/styles/OAuthProviderCard.module.scss +760 -0
- package/src/index.js +14 -0
package/src/index.js
CHANGED
|
@@ -24,6 +24,7 @@ import Form from './components/Form';
|
|
|
24
24
|
import Loader from './components/Loader';
|
|
25
25
|
import MergeEntity from './components/MergeEntity';
|
|
26
26
|
import MultiSelect from './components/MultiSelect';
|
|
27
|
+
import MultiCheckbox from './components/MultiCheckbox';
|
|
27
28
|
import Navigation from './components/Navigation';
|
|
28
29
|
import Notification from './components/Notification';
|
|
29
30
|
import SelectList from './components/SelectList';
|
|
@@ -82,6 +83,13 @@ import SectionTypeSelector from './components/proposal/SectionTypeSelector';
|
|
|
82
83
|
import VariableInserter from './components/proposal/VariableInserter';
|
|
83
84
|
import ProposalTemplatePreview from './components/proposal/ProposalTemplatePreview';
|
|
84
85
|
|
|
86
|
+
/** OAuth Components */
|
|
87
|
+
import OAuthManager from './components/oauth/OAuthManager';
|
|
88
|
+
import OAuthProviderCard from './components/oauth/OAuthProviderCard';
|
|
89
|
+
import OAuthConnectionStatus from './components/oauth/OAuthConnectionStatus';
|
|
90
|
+
import OAuthIntegrationsPage from './components/oauth/OAuthIntegrationsPage';
|
|
91
|
+
import DataSyncWizard from './components/oauth/DataSyncWizard';
|
|
92
|
+
|
|
85
93
|
|
|
86
94
|
export {
|
|
87
95
|
AsyncSelect,
|
|
@@ -133,9 +141,15 @@ export {
|
|
|
133
141
|
Login,
|
|
134
142
|
MergeEntity,
|
|
135
143
|
MultiSelect,
|
|
144
|
+
MultiCheckbox,
|
|
136
145
|
Navigation,
|
|
137
146
|
Notification,
|
|
138
147
|
NotificationList,
|
|
148
|
+
DataSyncWizard,
|
|
149
|
+
OAuthConnectionStatus,
|
|
150
|
+
OAuthIntegrationsPage,
|
|
151
|
+
OAuthManager,
|
|
152
|
+
OAuthProviderCard,
|
|
139
153
|
OcrTemplateEnhanced,
|
|
140
154
|
Profile,
|
|
141
155
|
ProposalTemplateSectionManager,
|