@visns-studio/visns-components 5.15.10 → 5.15.11
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/Breadcrumb.jsx +19 -11
- package/src/components/Form.jsx +240 -95
- 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/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 +12 -0
package/src/index.js
CHANGED
|
@@ -82,6 +82,13 @@ import SectionTypeSelector from './components/proposal/SectionTypeSelector';
|
|
|
82
82
|
import VariableInserter from './components/proposal/VariableInserter';
|
|
83
83
|
import ProposalTemplatePreview from './components/proposal/ProposalTemplatePreview';
|
|
84
84
|
|
|
85
|
+
/** OAuth Components */
|
|
86
|
+
import OAuthManager from './components/oauth/OAuthManager';
|
|
87
|
+
import OAuthProviderCard from './components/oauth/OAuthProviderCard';
|
|
88
|
+
import OAuthConnectionStatus from './components/oauth/OAuthConnectionStatus';
|
|
89
|
+
import OAuthIntegrationsPage from './components/oauth/OAuthIntegrationsPage';
|
|
90
|
+
import DataSyncWizard from './components/oauth/DataSyncWizard';
|
|
91
|
+
|
|
85
92
|
|
|
86
93
|
export {
|
|
87
94
|
AsyncSelect,
|
|
@@ -136,6 +143,11 @@ export {
|
|
|
136
143
|
Navigation,
|
|
137
144
|
Notification,
|
|
138
145
|
NotificationList,
|
|
146
|
+
DataSyncWizard,
|
|
147
|
+
OAuthConnectionStatus,
|
|
148
|
+
OAuthIntegrationsPage,
|
|
149
|
+
OAuthManager,
|
|
150
|
+
OAuthProviderCard,
|
|
139
151
|
OcrTemplateEnhanced,
|
|
140
152
|
Profile,
|
|
141
153
|
ProposalTemplateSectionManager,
|