├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .jshintignore ├── .jshintrc ├── .storybook ├── .babelrc ├── ThemeDecorator.tsx ├── main.js ├── preview-head.html ├── preview.js ├── stories.global.scss └── webpack.config.js ├── .stylelintignore ├── .stylelintrc ├── BUILD.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPERS.md ├── Gulpfile.js ├── LICENSE-node ├── LICENSE.txt ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SECURITY.md ├── __mocks__ ├── fileMock.js └── styleMocks.js ├── app ├── cdap │ ├── api │ │ ├── __mocks__ │ │ │ ├── app.js │ │ │ ├── artifact.js │ │ │ ├── dataprep.js │ │ │ ├── dataset.js │ │ │ ├── market.js │ │ │ ├── metadata.js │ │ │ ├── metric.js │ │ │ ├── namespace.js │ │ │ ├── pipeline.js │ │ │ ├── preference.js │ │ │ ├── preview.js │ │ │ ├── program.js │ │ │ ├── search.js │ │ │ ├── stream.js │ │ │ └── userstore.js │ │ ├── app.js │ │ ├── artifact.js │ │ ├── blankpath.js │ │ ├── cloud.js │ │ ├── connections.ts │ │ ├── dataprep.js │ │ ├── dataset.js │ │ ├── longRunningOperation.ts │ │ ├── market.js │ │ ├── metadata.js │ │ ├── metric.js │ │ ├── namespace.js │ │ ├── operations.js │ │ ├── pipeline.js │ │ ├── preference.js │ │ ├── preview.js │ │ ├── program.js │ │ ├── replicator.js │ │ ├── reports.js │ │ ├── rulesengine.js │ │ ├── schedule.js │ │ ├── search.js │ │ ├── securekey.js │ │ ├── serviceaccounts.js │ │ ├── serviceproviders │ │ │ └── index.js │ │ ├── sourcecontrol.ts │ │ ├── tethering.ts │ │ ├── userstore.js │ │ └── version.js │ ├── cdap.html │ ├── cdap.js │ ├── components │ │ ├── 404 │ │ │ ├── 404.scss │ │ │ └── index.js │ │ ├── 500 │ │ │ ├── 500.scss │ │ │ ├── Page500ErrorStack │ │ │ │ ├── Page500ErrorStack.scss │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── AbstractWidget │ │ │ ├── AbstractMultiRowWidget │ │ │ │ ├── AbstractRow.tsx │ │ │ │ ├── Container.tsx │ │ │ │ └── index.tsx │ │ │ ├── AbstractWidget.scss │ │ │ ├── AbstractWidgetFactory.tsx │ │ │ ├── CSVWidget │ │ │ │ ├── CSVRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── CodeEditorWidget │ │ │ │ ├── JsonEditorWidget.tsx │ │ │ │ └── index.tsx │ │ │ ├── CodeEditorWidgets.stories.tsx │ │ │ ├── Comment │ │ │ │ ├── CommentBox.tsx │ │ │ │ ├── CommentConstants.ts │ │ │ │ ├── CommentIcon.tsx │ │ │ │ ├── CommentMenu.tsx │ │ │ │ ├── DynamicAnchoredComment.tsx │ │ │ │ └── index.tsx │ │ │ ├── ConnectionsWidget │ │ │ │ └── index.tsx │ │ │ ├── DLPCustomWidget │ │ │ │ ├── DLPRow.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utilities │ │ │ │ │ └── index.ts │ │ │ ├── DatasetSelectorWidget │ │ │ │ └── index.tsx │ │ │ ├── DateRangeWidget │ │ │ │ └── index.tsx │ │ │ ├── DateTimeWidget │ │ │ │ └── index.tsx │ │ │ ├── FormInputs │ │ │ │ ├── MultiSelect │ │ │ │ │ └── index.tsx │ │ │ │ ├── Number │ │ │ │ │ └── index.tsx │ │ │ │ ├── Password │ │ │ │ │ └── index.tsx │ │ │ │ ├── Select │ │ │ │ │ └── index.tsx │ │ │ │ └── TextBox │ │ │ │ │ └── index.tsx │ │ │ ├── FunctionDropdownAliasWidget │ │ │ │ ├── FuctionDropdownRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── FunctionDropdownArgumentsWidget │ │ │ │ ├── FunctionDropdownArgumentsRow.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── parser.tests.ts │ │ │ │ ├── index.tsx │ │ │ │ └── parser.ts │ │ │ ├── GetSchemaWidget │ │ │ │ └── index.tsx │ │ │ ├── HierarchyWidget │ │ │ │ ├── HierarchyTree.tsx │ │ │ │ ├── HierarchyTreeNode │ │ │ │ │ ├── HierarchyTreeLeaf.tsx │ │ │ │ │ ├── InputFieldWrapper.tsx │ │ │ │ │ ├── ListBoxComponent.tsx │ │ │ │ │ ├── PopoverButton.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── dataHandler.ts │ │ │ │ └── index.tsx │ │ │ ├── InputFieldDropdown │ │ │ │ └── index.tsx │ │ │ ├── InputFieldKeyValueDropdown │ │ │ │ └── index.tsx │ │ │ ├── JoinTypeWidget │ │ │ │ └── index.tsx │ │ │ ├── JoinWidgets.stories.tsx │ │ │ ├── KeyValueDropdownWidget │ │ │ │ ├── KeyValueDropdownRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── KeyValueWidget │ │ │ │ ├── KeyValueEncodedWidget.tsx │ │ │ │ ├── KeyValueRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── MemorySelectWidget │ │ │ │ ├── MemorySelectWidget.scss │ │ │ │ └── index.js │ │ │ ├── MemoryTextbox │ │ │ │ ├── MemoryTextbox.scss │ │ │ │ └── index.js │ │ │ ├── MultiStageSelector │ │ │ │ └── index.tsx │ │ │ ├── MultipleValuesWidget │ │ │ │ ├── MultipleValuesRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── NumberTextbox │ │ │ │ ├── NumberTextbox.scss │ │ │ │ └── index.js │ │ │ ├── PluginListWidget │ │ │ │ └── index.tsx │ │ │ ├── RadioGroupWidget │ │ │ │ └── index.tsx │ │ │ ├── RulesEngineEditor │ │ │ │ ├── index.tsx │ │ │ │ └── rules-engine-modal.scss │ │ │ ├── SchemaEditor │ │ │ │ ├── ArrayType │ │ │ │ │ └── index.tsx │ │ │ │ ├── Context │ │ │ │ │ ├── FlatSchema.ts │ │ │ │ │ ├── SchemaGenerator.ts │ │ │ │ │ ├── SchemaManager.ts │ │ │ │ │ ├── SchemaManagerUtilities.ts │ │ │ │ │ ├── SchemaParser.ts │ │ │ │ │ └── __tests__ │ │ │ │ │ │ ├── SchemaManager.tests.ts │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── large-schema.json │ │ │ │ │ │ ├── schema-10k.json │ │ │ │ │ │ ├── simple-schema.json │ │ │ │ │ │ ├── simpleSchema.json │ │ │ │ │ │ └── simpleSchema3.json │ │ │ │ │ │ └── schemas.js │ │ │ │ ├── EditorTypes.ts │ │ │ │ ├── EnumType │ │ │ │ │ └── index.tsx │ │ │ │ ├── FieldType │ │ │ │ │ └── index.tsx │ │ │ │ ├── FieldWrapper │ │ │ │ │ ├── FieldWrapperConstants.ts │ │ │ │ │ ├── SiblingCommunicationContext.tsx │ │ │ │ │ ├── SiblingLine.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── FieldsList │ │ │ │ │ ├── FieldRow.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── MapType │ │ │ │ │ └── index.tsx │ │ │ │ ├── RowButtons │ │ │ │ │ ├── AddRowButton.tsx │ │ │ │ │ ├── FieldAttributes │ │ │ │ │ │ ├── DecimalAttributes.tsx │ │ │ │ │ │ ├── FieldAttributesPopoverButton.tsx │ │ │ │ │ │ └── RecordEnumAttributes.tsx │ │ │ │ │ ├── IconWrapper.tsx │ │ │ │ │ ├── Nullable.tsx │ │ │ │ │ ├── RemoveRowButton.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── SampleTypeFieldChecker.ts │ │ │ │ ├── SchemaConstants.ts │ │ │ │ ├── SchemaEditorDemo.tsx │ │ │ │ ├── SchemaHelpers.ts │ │ │ │ ├── SchemaTypes.ts │ │ │ │ ├── SchemaValidator │ │ │ │ │ └── index.tsx │ │ │ │ ├── SingleColumnWrapper │ │ │ │ │ └── index.tsx │ │ │ │ ├── UnionType │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── SecureKey │ │ │ │ ├── SecureKeyPassword.js │ │ │ │ ├── SecureKeyText.js │ │ │ │ ├── SecureKeyTextarea.js │ │ │ │ ├── SecureKeyTextarea.scss │ │ │ │ └── index.js │ │ │ ├── SqlConditionsWidget │ │ │ │ ├── Rule.tsx │ │ │ │ └── index.tsx │ │ │ ├── SqlSelectorWidget │ │ │ │ ├── FieldRow.tsx │ │ │ │ ├── SchemaContainer.tsx │ │ │ │ └── index.tsx │ │ │ ├── StateWrapper.js │ │ │ ├── ToggleSwitchWidget │ │ │ │ └── index.tsx │ │ │ ├── WidgetVars.scss │ │ │ ├── Widgets.stories.tsx │ │ │ ├── WranglerEditor │ │ │ │ ├── index.tsx │ │ │ │ └── wrangler-modal.scss │ │ │ ├── __mocks__ │ │ │ │ └── AbstractWidgetFactory.tsx │ │ │ ├── constants.ts │ │ │ └── index.tsx │ │ ├── AbstractWizard │ │ │ └── index.js │ │ ├── Administration │ │ │ ├── AdminConfigTabContent │ │ │ │ ├── AdminConfigTabContent.scss │ │ │ │ ├── NamespacesAccordion │ │ │ │ │ ├── NamespacesAccordion.scss │ │ │ │ │ └── index.js │ │ │ │ ├── ReloadSystemArtifacts.js │ │ │ │ ├── SystemPrefsAccordion │ │ │ │ │ └── index.js │ │ │ │ ├── SystemProfilesAccordion │ │ │ │ │ ├── SystemProfilesAccordion.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── AdminManagementTabContent │ │ │ │ ├── AdminManagementTabContent.scss │ │ │ │ ├── AdminManagementTabContentVariables.scss │ │ │ │ ├── PlatformsDetails │ │ │ │ │ ├── Genericdetails.js │ │ │ │ │ ├── Genericdetails.scss │ │ │ │ │ ├── PlatformDetails.scss │ │ │ │ │ └── index.js │ │ │ │ ├── ServicesTable │ │ │ │ │ ├── ServicesTable.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── AdminTabSwitch │ │ │ │ ├── AdminTabSwitch.scss │ │ │ │ └── index.tsx │ │ │ ├── Administration.scss │ │ │ ├── TetheringTabContent │ │ │ │ ├── ActionPopover │ │ │ │ │ └── index.tsx │ │ │ │ ├── CdfTetheringConnections │ │ │ │ │ ├── NewReqLastColumn.tsx │ │ │ │ │ ├── NewRequests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Connections │ │ │ │ │ └── index.tsx │ │ │ │ ├── NewTetheringRequest │ │ │ │ │ ├── CdfInfo.tsx │ │ │ │ │ ├── NamespacesTable.tsx │ │ │ │ │ ├── NewReqTextField.tsx │ │ │ │ │ ├── TetheredNamespaces.tsx │ │ │ │ │ ├── constants.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── reducer.ts │ │ │ │ │ └── styles.tsx │ │ │ │ ├── OnPremTetheringConnections │ │ │ │ │ ├── TetheringRequests.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── TetheringTable │ │ │ │ │ ├── constants.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── utils.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── utils.test.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── reducer.ts │ │ │ │ ├── shared.styles.tsx │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ └── index.js │ │ ├── AuthRefresher │ │ │ ├── AuthRefresher.scss │ │ │ └── index.tsx │ │ ├── AuthorizationErrorMessage │ │ │ ├── AuthorizationMessage.scss │ │ │ └── index.js │ │ ├── CaskWizards │ │ │ ├── AddNamespace │ │ │ │ ├── GeneralInfoStep │ │ │ │ │ └── index.js │ │ │ │ ├── HadoopMappingStep │ │ │ │ │ └── index.tsx │ │ │ │ ├── PreferencesStep │ │ │ │ │ ├── PreferencesStep.scss │ │ │ │ │ └── index.js │ │ │ │ ├── ResourcesStep │ │ │ │ │ └── index.tsx │ │ │ │ ├── SecurityStep │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── ApplicationUpload │ │ │ │ ├── UploadStep │ │ │ │ │ ├── UploadStep.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── ArtifactUpload │ │ │ │ ├── ArtifactUpload.scss │ │ │ │ ├── CommonUploadStyles.scss │ │ │ │ ├── ConfigureStep │ │ │ │ │ └── index.js │ │ │ │ ├── UploadStep │ │ │ │ │ ├── UploadStep.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── Informational │ │ │ │ ├── Informational.scss │ │ │ │ ├── ShowInfo │ │ │ │ │ ├── ShowInfo.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── LibraryUpload │ │ │ │ ├── ConfigureStep │ │ │ │ │ └── index.js │ │ │ │ ├── UploadStep │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── LicenseStep │ │ │ │ ├── LicenseStep.scss │ │ │ │ └── index.js │ │ │ ├── MarketArtifactUpload │ │ │ │ └── index.js │ │ │ ├── MarketHydratorPluginUpload │ │ │ │ ├── MarketHydratorPluginUpload.scss │ │ │ │ └── index.js │ │ │ ├── MicroserviceUpload │ │ │ │ ├── ConfigureStep │ │ │ │ │ └── index.js │ │ │ │ ├── GeneralInfoStep │ │ │ │ │ ├── GeneralInfoStep.scss │ │ │ │ │ └── index.js │ │ │ │ ├── InboundQueueStep │ │ │ │ │ └── index.js │ │ │ │ ├── MicroserviceQueue.js │ │ │ │ ├── MicroserviceQueue.scss │ │ │ │ ├── MicroserviceQueueEditor.js │ │ │ │ ├── MicroserviceUpload.scss │ │ │ │ ├── OutboundQueueStep │ │ │ │ │ └── index.js │ │ │ │ ├── PropertiesStep │ │ │ │ │ ├── PropertiesStep.scss │ │ │ │ │ └── index.js │ │ │ │ ├── UploadJarStep │ │ │ │ │ └── index.js │ │ │ │ ├── UploadJsonStep │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── OneStepDeploy │ │ │ │ ├── Deploy │ │ │ │ │ ├── Deploy.scss │ │ │ │ │ └── index.js │ │ │ │ ├── OneStepDeployApp.js │ │ │ │ ├── OneStepDeployAppUsecase.js │ │ │ │ ├── OneStepDeployPlugin.js │ │ │ │ ├── OneStepDeployPluginUsecase.js │ │ │ │ └── index.js │ │ │ ├── PluginArtifactUpload │ │ │ │ ├── DirectiveUploadWizard.js │ │ │ │ ├── PluginArtifactUpload.scss │ │ │ │ ├── PluginUploadWizard.js │ │ │ │ ├── UploadJarStep │ │ │ │ │ └── index.js │ │ │ │ ├── UploadJsonStep │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── PublishPipeline │ │ │ │ ├── MetadataStep │ │ │ │ │ ├── MetadataStep.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── PublishPipelineUsecase │ │ │ │ └── index.js │ │ │ └── UploadDataUsecase │ │ │ │ └── index.js │ │ ├── Cloud │ │ │ ├── Profiles │ │ │ │ ├── ActionsPopover │ │ │ │ │ ├── ActionsPopover.scss │ │ │ │ │ └── index.js │ │ │ │ ├── AutoScaleBadge │ │ │ │ │ └── index.tsx │ │ │ │ ├── CreateView │ │ │ │ │ ├── CreateProfileActionCreator.js │ │ │ │ │ ├── CreateProfileBtn │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── CreateProfileMetadata │ │ │ │ │ │ ├── CreateProfileMetadata.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── CreateProfileStore.js │ │ │ │ │ ├── CreateView.scss │ │ │ │ │ ├── PropertyLock │ │ │ │ │ │ ├── PropertyLock.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── PropertyRow │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ProvisionerSelection │ │ │ │ │ │ ├── ProvisionerSelection.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── DetailView │ │ │ │ │ ├── Content │ │ │ │ │ │ ├── BasicInfo │ │ │ │ │ │ │ ├── BasicInfo.scss │ │ │ │ │ │ │ ├── ProfileStatusToggle.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── Content.scss │ │ │ │ │ │ ├── DetailsInfo │ │ │ │ │ │ │ ├── DetailsInfo.scss │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── ProfileAssociations │ │ │ │ │ │ │ ├── ProfileAssociations.scss │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── DetailView.scss │ │ │ │ │ └── index.js │ │ │ │ ├── ListView │ │ │ │ │ ├── ListView.scss │ │ │ │ │ ├── index.js │ │ │ │ │ └── styles.js │ │ │ │ ├── Preview │ │ │ │ │ ├── Preview.scss │ │ │ │ │ └── index.js │ │ │ │ └── Store │ │ │ │ │ ├── ActionCreator.js │ │ │ │ │ ├── Provisioners.js │ │ │ │ │ └── index.js │ │ │ └── Store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── index.js │ │ ├── Connections │ │ │ ├── AddConnectionBtnModal │ │ │ │ └── index.tsx │ │ │ ├── Browser │ │ │ │ ├── GenericBrowser │ │ │ │ │ ├── Breadcrumb.tsx │ │ │ │ │ ├── BrowserTable.tsx │ │ │ │ │ ├── EntityCount.tsx │ │ │ │ │ ├── SearchField.tsx │ │ │ │ │ ├── apiHelpers.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── ParsingConfigModal │ │ │ │ │ ├── ImportFileButton.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── store.tsx │ │ │ │ ├── SidePanel │ │ │ │ │ ├── CategorizedConnections.tsx │ │ │ │ │ ├── apiHelpers.ts │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── ConnectionsContext │ │ │ │ └── index.tsx │ │ │ ├── Create │ │ │ │ ├── CategorizedConnectors │ │ │ │ │ ├── ActiveTab.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ConnectionConfiguration │ │ │ │ │ ├── ConnectionConfigForm.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── reducer.ts │ │ │ ├── CreateConnectionBtn │ │ │ │ └── index.tsx │ │ │ ├── CreateConnectionModal │ │ │ │ └── index.tsx │ │ │ ├── Home.tsx │ │ │ ├── ImportConnectionBtn │ │ │ │ └── index.tsx │ │ │ ├── Routes.tsx │ │ │ ├── Upload │ │ │ │ └── index.tsx │ │ │ ├── __tests__ │ │ │ │ └── helper.test.ts │ │ │ ├── helper.ts │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── CookieBanner │ │ │ ├── constants.ts │ │ │ └── index.tsx │ │ ├── CopyableID │ │ │ ├── CopyableID.scss │ │ │ └── index.js │ │ ├── DAG │ │ │ ├── DAGProvider.tsx │ │ │ ├── DAGRenderer.tsx │ │ │ ├── JSPlumbSettings.ts │ │ │ ├── Nodes │ │ │ │ ├── AbstractNode │ │ │ │ │ └── index.tsx │ │ │ │ ├── AlertPublisherNode │ │ │ │ │ └── index.tsx │ │ │ │ ├── ConditionNode │ │ │ │ │ ├── conditionNode.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── Default │ │ │ │ │ └── index.tsx │ │ │ │ ├── ErrorNode │ │ │ │ │ └── index.tsx │ │ │ │ ├── SinkNode │ │ │ │ │ └── index.tsx │ │ │ │ ├── SourceNode │ │ │ │ │ └── index.tsx │ │ │ │ ├── SplitterNode │ │ │ │ │ ├── PortPopover.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── TransformNode │ │ │ │ │ └── index.tsx │ │ │ │ └── utilities.ts │ │ │ └── index.tsx │ │ ├── DSVEditor │ │ │ ├── DSVActions.js │ │ │ ├── DSVEditor.scss │ │ │ ├── DSVRow.js │ │ │ ├── DSVStore.js │ │ │ └── index.js │ │ ├── DataPrep │ │ │ ├── AutoComplete │ │ │ │ ├── AutoComplete.scss │ │ │ │ └── index.js │ │ │ ├── ColumnActionsDropdown │ │ │ │ ├── ColumnActionsDropdown.scss │ │ │ │ └── index.js │ │ │ ├── ColumnHighlighter │ │ │ │ ├── ColumnHighlighter.scss │ │ │ │ └── index.js │ │ │ ├── ColumnTextSelection │ │ │ │ └── index.js │ │ │ ├── DataPrep.scss │ │ │ ├── DataPrepBrowser │ │ │ │ ├── ADLSBrowser │ │ │ │ │ └── index.js │ │ │ │ ├── BigQueryBrowser │ │ │ │ │ ├── BigQueryBrowser.scss │ │ │ │ │ ├── DatasetList │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── DisplaySwitch │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── TableList │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── DataPrepBrowserStore │ │ │ │ │ ├── ActionCreator.js │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── adls.js │ │ │ │ │ │ ├── bigquery.js │ │ │ │ │ │ ├── commons.js │ │ │ │ │ │ ├── database.js │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ ├── gcs.js │ │ │ │ │ │ ├── kafka.js │ │ │ │ │ │ ├── s3.js │ │ │ │ │ │ └── spanner.js │ │ │ │ │ └── index.js │ │ │ │ ├── DataPrepBrowserTopPanel │ │ │ │ │ ├── DataPrepBrowserTopPanel.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── DatabaseBrowser │ │ │ │ │ ├── DatabaseBrowser.scss │ │ │ │ │ └── index.js │ │ │ │ ├── DataprepBrowserVariables.scss │ │ │ │ ├── ErrorBanner │ │ │ │ │ └── index.js │ │ │ │ ├── GCSBrowser │ │ │ │ │ ├── BrowserData │ │ │ │ │ │ ├── TableContents.scss │ │ │ │ │ │ ├── TableContents.tsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── GCSBrowser.scss │ │ │ │ │ ├── GCSPath │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── GCSSearch │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ListingInfo │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── KafkaBrowser │ │ │ │ │ ├── KafkaBrowser.scss │ │ │ │ │ └── index.js │ │ │ │ ├── PageTitle │ │ │ │ │ └── index.js │ │ │ │ ├── S3Browser │ │ │ │ │ ├── BucketData │ │ │ │ │ │ ├── TableContents.tsx │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ListingInfo │ │ │ │ │ │ ├── ListingInfo.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── S3Browser.scss │ │ │ │ │ ├── S3Path │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── S3Search │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── SpannerBrowser │ │ │ │ │ ├── DatabaseList │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── DisplaySwitch │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── InstanceList │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SpannerBrowser.scss │ │ │ │ │ ├── TableList │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.js │ │ │ ├── DataPrepCLI │ │ │ │ ├── DataPrepCLI.scss │ │ │ │ └── index.js │ │ │ ├── DataPrepContentWrapper │ │ │ │ ├── DataPrepContentWrapper.scss │ │ │ │ └── index.js │ │ │ ├── DataPrepErrorAlert │ │ │ │ └── index.js │ │ │ ├── DataPrepLoading │ │ │ │ ├── DataPrepLoading.scss │ │ │ │ └── index.js │ │ │ ├── DataPrepServiceControl │ │ │ │ ├── DataPrepServiceControl.scss │ │ │ │ └── index.js │ │ │ ├── DataPrepSidePanel │ │ │ │ ├── ColumnsTab │ │ │ │ │ ├── ColumnsTab.scss │ │ │ │ │ ├── ColumnsTabDetail.js │ │ │ │ │ ├── ColumnsTabRow.js │ │ │ │ │ └── index.js │ │ │ │ ├── DataPrepSidePanel.scss │ │ │ │ ├── DirectivesTab │ │ │ │ │ ├── DirectivesTab.scss │ │ │ │ │ ├── DirectivesTabRow.js │ │ │ │ │ └── index.js │ │ │ │ ├── TargetTab │ │ │ │ │ ├── DataModelViewer.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.js │ │ │ ├── DataPrepTable │ │ │ │ ├── DataPrepTable.scss │ │ │ │ ├── DataQuality │ │ │ │ │ ├── DataQuality.scss │ │ │ │ │ └── index.js │ │ │ │ ├── DataType │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── DataPrepVisualization │ │ │ │ ├── DataPrepVisualization.scss │ │ │ │ └── index.js │ │ │ ├── Directives │ │ │ │ ├── Calculate │ │ │ │ │ ├── Calculate.scss │ │ │ │ │ └── index.js │ │ │ │ ├── ChangeDataType │ │ │ │ │ ├── ChangeDataType.scss │ │ │ │ │ ├── DecimalOptions.tsx │ │ │ │ │ ├── __test__ │ │ │ │ │ │ └── DecimalOptions.test.tsx │ │ │ │ │ ├── index.js │ │ │ │ │ ├── styles.ts │ │ │ │ │ └── submenu.ts │ │ │ │ ├── ColumnActions │ │ │ │ │ ├── Bulkset │ │ │ │ │ │ ├── Bulkset.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ColumnActions.scss │ │ │ │ │ ├── ReplaceColumns │ │ │ │ │ │ ├── ReplaceColumns.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── CopyColumn │ │ │ │ │ └── index.js │ │ │ │ ├── CustomTransform │ │ │ │ │ ├── CustomTransform.scss │ │ │ │ │ └── index.js │ │ │ │ ├── Decode │ │ │ │ │ └── index.js │ │ │ │ ├── DefineVariable │ │ │ │ │ ├── DefineVariable.scss │ │ │ │ │ └── index.js │ │ │ │ ├── DropColumn │ │ │ │ │ └── index.js │ │ │ │ ├── EncodeDecode │ │ │ │ │ ├── EncodeDecode.scss │ │ │ │ │ └── index.js │ │ │ │ ├── Explode │ │ │ │ │ ├── Explode.scss │ │ │ │ │ └── index.js │ │ │ │ ├── ExtractFields │ │ │ │ │ ├── ExtractFields.scss │ │ │ │ │ ├── UsingDelimiterModal │ │ │ │ │ │ ├── UsingDelimiter.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── UsingPatternsModal │ │ │ │ │ │ ├── UsingPatternsModal.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── UsingPositions │ │ │ │ │ │ ├── CutDirective.js │ │ │ │ │ │ ├── CutDirective.scss │ │ │ │ │ │ └── CutMenuItem.js │ │ │ │ │ └── index.js │ │ │ │ ├── FillNullOrEmpty │ │ │ │ │ └── index.js │ │ │ │ ├── Filter │ │ │ │ │ ├── FilterDirective.scss │ │ │ │ │ └── index.js │ │ │ │ ├── FindAndReplace │ │ │ │ │ └── index.js │ │ │ │ ├── Format │ │ │ │ │ └── index.js │ │ │ │ ├── Hash │ │ │ │ │ ├── Hash.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── KeepColumn │ │ │ │ │ └── index.js │ │ │ │ ├── MapToTarget │ │ │ │ │ ├── CurrentSelection │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LoadingBar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OptionFilter │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OptionList │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── MarkAsError │ │ │ │ │ ├── MarkAsError.scss │ │ │ │ │ └── index.js │ │ │ │ ├── MaskData │ │ │ │ │ ├── MaskData.scss │ │ │ │ │ ├── MaskSelection │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── MergeColumns │ │ │ │ │ ├── MergeColumns.scss │ │ │ │ │ └── index.js │ │ │ │ ├── Parse │ │ │ │ │ ├── Modals │ │ │ │ │ │ ├── CSVModal.js │ │ │ │ │ │ ├── DateFormatModal.js │ │ │ │ │ │ ├── ExcelModal.js │ │ │ │ │ │ ├── LogModal.js │ │ │ │ │ │ ├── SingleFieldModal.js │ │ │ │ │ │ └── XmlToJsonModal.tsx │ │ │ │ │ ├── ParseDirective.scss │ │ │ │ │ └── index.js │ │ │ │ ├── SetCharacterEncoding │ │ │ │ │ └── index.js │ │ │ │ ├── SetCounter │ │ │ │ │ ├── SetCounter.scss │ │ │ │ │ └── index.js │ │ │ │ └── SwapColumns │ │ │ │ │ └── index.js │ │ │ ├── ErrorMessageContainer │ │ │ │ └── index.js │ │ │ ├── TopPanel │ │ │ │ ├── AddToPipelineModal.js │ │ │ │ ├── IngestDataFromDataPrep │ │ │ │ │ ├── IngestDataFromDataPrep.scss │ │ │ │ │ └── index.js │ │ │ │ ├── PipelineConfigHelper.js │ │ │ │ ├── PlusButton.js │ │ │ │ ├── SchemaModal.js │ │ │ │ ├── TopPanel.scss │ │ │ │ ├── UpgradeModal.js │ │ │ │ └── index.js │ │ │ ├── WorkspaceTabs │ │ │ │ ├── WorkspaceTab │ │ │ │ │ ├── WorkspaceTab.scss │ │ │ │ │ └── index.js │ │ │ │ ├── WorkspaceTabs.scss │ │ │ │ └── index.js │ │ │ ├── helper.js │ │ │ ├── index.js │ │ │ └── store │ │ │ │ ├── DataPrepActionCreator.js │ │ │ │ ├── DataPrepActions.js │ │ │ │ └── index.ts │ │ ├── DataPrepConnections │ │ │ ├── ADLSConnection │ │ │ │ ├── ADLSConnection.scss │ │ │ │ └── index.tsx │ │ │ ├── BigQueryConnection │ │ │ │ ├── BigQueryConnection.scss │ │ │ │ └── index.js │ │ │ ├── ConnectionPopover │ │ │ │ ├── ConnectionPopover.scss │ │ │ │ └── index.js │ │ │ ├── ConnectionType.ts │ │ │ ├── DataPrepConnections.scss │ │ │ ├── DatabaseConnection │ │ │ │ ├── DatabaseConnection.scss │ │ │ │ ├── DatabaseDetail.js │ │ │ │ ├── DatabaseOptions.js │ │ │ │ └── index.js │ │ │ ├── GCSConnection │ │ │ │ ├── GCSConnection.scss │ │ │ │ └── index.js │ │ │ ├── KafkaConnection │ │ │ │ ├── HostPortEditor │ │ │ │ │ ├── HostPortActions.js │ │ │ │ │ ├── HostPortEditor.scss │ │ │ │ │ ├── HostPortRow.js │ │ │ │ │ ├── HostPortStore.js │ │ │ │ │ └── index.js │ │ │ │ ├── KafkaConnection.scss │ │ │ │ └── index.js │ │ │ ├── NoDefaultConnection │ │ │ │ └── index.tsx │ │ │ ├── PluginConnectionBrowser │ │ │ │ └── index.tsx │ │ │ ├── S3Connection │ │ │ │ ├── S3Connection.scss │ │ │ │ └── index.js │ │ │ ├── SpannerConnection │ │ │ │ ├── SpannerConnection.scss │ │ │ │ └── index.tsx │ │ │ ├── UploadFile │ │ │ │ ├── UploadFile.scss │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── DataPrepHome │ │ │ ├── DataPrepHome.scss │ │ │ └── index.js │ │ ├── DatasetCards │ │ │ ├── DatasetCards.scss │ │ │ └── index.js │ │ ├── DatasetDetailedView │ │ │ ├── DatasetDetailedView.scss │ │ │ ├── DetailedViewStyling.scss │ │ │ ├── Tabs │ │ │ │ ├── LineageTab.js │ │ │ │ ├── PropertiesTab.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── DatasetTable │ │ │ ├── DatasetTable.scss │ │ │ └── index.js │ │ ├── DeleteEntityBtn │ │ │ └── index.js │ │ ├── EmptyMessageContainer │ │ │ ├── EmptyMessageContainer.scss │ │ │ └── index.js │ │ ├── EntityCard │ │ │ ├── ApplicationMetrics │ │ │ │ └── index.js │ │ │ ├── ArtifactMetrics │ │ │ │ └── index.js │ │ │ ├── DatasetMetrics │ │ │ │ └── index.js │ │ │ ├── EntityCard.scss │ │ │ ├── EntityCardHeader │ │ │ │ ├── EntityCardHeader.scss │ │ │ │ └── index.js │ │ │ ├── FastActions │ │ │ │ └── index.js │ │ │ ├── ProgramMetrics │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── EntityListView │ │ │ ├── EntityListHeader │ │ │ │ ├── EntityListHeader.scss │ │ │ │ └── index.js │ │ │ ├── EntityListInfo │ │ │ │ ├── EntityListInfo.scss │ │ │ │ └── index.js │ │ │ ├── EntityListView.scss │ │ │ ├── ErrorMessage │ │ │ │ ├── PageErrorMessage.js │ │ │ │ ├── PageErrorMessage.scss │ │ │ │ └── index.js │ │ │ ├── JustAddedSection │ │ │ │ ├── JustAddedSection.scss │ │ │ │ └── index.js │ │ │ ├── ListView │ │ │ │ └── index.js │ │ │ ├── ListViewHeader │ │ │ │ ├── ListViewHeader.scss │ │ │ │ └── index.js │ │ │ ├── NoEntitiesMessage │ │ │ │ ├── NoEntitiesMessage.scss │ │ │ │ └── index.js │ │ │ ├── SearchStore │ │ │ │ ├── ActionCreator.js │ │ │ │ ├── SearchConstants.js │ │ │ │ ├── SearchStoreActions.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── EntityTopPanel │ │ │ ├── EntityBreadCrumb.tsx │ │ │ ├── EntityCloseBtn.tsx │ │ │ ├── EntityTitle.tsx │ │ │ └── index.tsx │ │ ├── ExperimentWrapper │ │ │ └── ExperimentToggle.tsx │ │ ├── ExperimentalBanner │ │ │ ├── ExperimentalBanner.scss │ │ │ └── index.js │ │ ├── FastAction │ │ │ ├── DeleteAction │ │ │ │ └── index.js │ │ │ ├── FastActionButton │ │ │ │ └── index.js │ │ │ ├── FastActionLink │ │ │ │ └── index.js │ │ │ ├── LogAction │ │ │ │ └── index.js │ │ │ ├── SetPreferenceAction │ │ │ │ ├── SetPreferenceAction.scss │ │ │ │ ├── SetPreferenceModal.js │ │ │ │ └── index.js │ │ │ ├── StartStopAction │ │ │ │ └── index.js │ │ │ ├── TruncateAction │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── FieldLevelLineage │ │ │ ├── FieldLevelLineage.scss │ │ │ ├── Fields │ │ │ │ ├── FieldRow.tsx │ │ │ │ ├── Fields.scss │ │ │ │ ├── Search.js │ │ │ │ └── index.js │ │ │ ├── Lineage │ │ │ │ ├── Lineage.scss │ │ │ │ └── index.tsx │ │ │ ├── LineageSummary │ │ │ │ ├── Directions.ts │ │ │ │ ├── IncomingLineage.ts │ │ │ │ ├── LineageSummary.scss │ │ │ │ ├── OutgoingLineage.ts │ │ │ │ ├── SummaryRow.js │ │ │ │ └── index.js │ │ │ ├── OperationsModal │ │ │ │ ├── ModalContent.js │ │ │ │ ├── Navigation.js │ │ │ │ ├── OperationsModal.scss │ │ │ │ ├── OperationsTable.js │ │ │ │ └── index.js │ │ │ ├── SectionTitle │ │ │ │ ├── SectionTitle.scss │ │ │ │ └── index.tsx │ │ │ ├── TimePicker │ │ │ │ └── index.js │ │ │ ├── TopPanel │ │ │ │ ├── TopPanel.scss │ │ │ │ └── index.tsx │ │ │ ├── index.js │ │ │ ├── store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── Store.js │ │ │ └── v2 │ │ │ │ ├── Context │ │ │ │ ├── FllContext.tsx │ │ │ │ ├── FllContextHelper.ts │ │ │ │ └── sample_response.ts │ │ │ │ ├── FllHeader │ │ │ │ └── index.tsx │ │ │ │ ├── FllTable │ │ │ │ ├── FllExpandableField.tsx │ │ │ │ ├── FllField.tsx │ │ │ │ ├── FllMenu │ │ │ │ │ └── index.tsx │ │ │ │ ├── FllTableHeader.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── LineageSummary │ │ │ │ └── index.tsx │ │ │ │ ├── OperationsModal │ │ │ │ ├── ModalContent.tsx │ │ │ │ ├── Navigation.tsx │ │ │ │ ├── OperationsTable.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── TimeRangePicker │ │ │ │ └── index.tsx │ │ │ │ ├── TopPanel │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── FileBrowser │ │ │ ├── FileBrowser.scss │ │ │ ├── FilePath │ │ │ │ ├── FilePath.scss │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── FileDataUpload │ │ │ ├── FileDataUpload.scss │ │ │ └── index.js │ │ ├── FileDnD │ │ │ ├── FileDnD.scss │ │ │ └── index.js │ │ ├── GroupedBarChart │ │ │ └── index.js │ │ ├── Home │ │ │ ├── Home.scss │ │ │ ├── HomeActions │ │ │ │ ├── ActionCard.tsx │ │ │ │ ├── ActionConfig.ts │ │ │ │ └── index.tsx │ │ │ ├── Tour │ │ │ │ └── index.ts │ │ │ ├── Welcome │ │ │ │ ├── Welcome.scss │ │ │ │ └── index.tsx │ │ │ └── index.js │ │ ├── HttpExecutor │ │ │ ├── HttpExecutor.scss │ │ │ ├── HttpResponse │ │ │ │ └── index.js │ │ │ ├── InputPath │ │ │ │ └── index.js │ │ │ ├── MethodSelector │ │ │ │ └── index.js │ │ │ ├── RequestHistoryTab │ │ │ │ ├── RequestActionDialogs │ │ │ │ │ ├── ClearAllDialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── DeleteDialog │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── RequestRow │ │ │ │ │ └── index.tsx │ │ │ │ ├── RequestSearch │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── RequestMetadata │ │ │ │ ├── Body │ │ │ │ │ └── index.js │ │ │ │ ├── Header │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── SaveCalls │ │ │ │ └── index.tsx │ │ │ ├── SendButton │ │ │ │ └── index.js │ │ │ ├── StatusCode │ │ │ │ └── index.js │ │ │ ├── index.tsx │ │ │ ├── store │ │ │ │ ├── HttpExecutorActionCreator.js │ │ │ │ ├── HttpExecutorActions.js │ │ │ │ └── HttpExecutorStore.js │ │ │ └── utilities.ts │ │ ├── InformationIcon │ │ │ └── index.tsx │ │ ├── Ingestion │ │ │ ├── PluginList │ │ │ │ └── index.tsx │ │ │ ├── PluginWidgetRenderer │ │ │ │ └── index.tsx │ │ │ ├── PluginsTableView │ │ │ │ └── index.tsx │ │ │ ├── SinkList │ │ │ │ └── index.tsx │ │ │ ├── SourceSinkConfigurator │ │ │ │ └── index.tsx │ │ │ ├── helpers.ts │ │ │ └── index.tsx │ │ ├── InputWithValidations │ │ │ └── index.js │ │ ├── Lab │ │ │ ├── ExperimentalFeature │ │ │ │ └── index.tsx │ │ │ ├── LabExperimentTest │ │ │ │ └── index.tsx │ │ │ ├── ToggleExperiment │ │ │ │ └── index.tsx │ │ │ ├── experiment-list.tsx │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── LogViewer │ │ │ ├── DataFetcher │ │ │ │ ├── PreviewDataFetcher.ts │ │ │ │ ├── ProgramDataFetcher.ts │ │ │ │ ├── __tests__ │ │ │ │ │ ├── PreviewDataFetcher.test.ts │ │ │ │ │ └── ProgramDataFetcher.test.ts │ │ │ │ └── index.ts │ │ │ ├── LogLevel.tsx │ │ │ ├── LogRow.tsx │ │ │ ├── LogViewerPage.tsx │ │ │ ├── LogsUrlUtils.ts │ │ │ ├── Playground.tsx │ │ │ ├── TopPanel.tsx │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── Market │ │ │ ├── AllTab │ │ │ │ ├── AllTabContents.scss │ │ │ │ └── index.js │ │ │ ├── CategoryMap.ts │ │ │ ├── UsecaseTab │ │ │ │ ├── UsecaseTab.scss │ │ │ │ └── index.js │ │ │ ├── action │ │ │ │ └── market-action.js │ │ │ ├── index.js │ │ │ └── store │ │ │ │ └── market-store.js │ │ ├── MarketActionsContainer │ │ │ ├── MarketActionsContainer.scss │ │ │ └── index.js │ │ ├── MarketEntityModal │ │ │ ├── MarketEntityModal.scss │ │ │ └── index.js │ │ ├── MarketPlaceEntity │ │ │ ├── LicenseRow.tsx │ │ │ ├── MarketPlaceEntity.scss │ │ │ └── index.js │ │ ├── MarketPlaceUsecaseEntity │ │ │ ├── LicenseRow.tsx │ │ │ ├── MarketPlaceUsecaseEntity.scss │ │ │ └── index.js │ │ ├── Metadata │ │ │ ├── ComplexSchema │ │ │ │ ├── __tests__ │ │ │ │ │ └── helper.test.ts │ │ │ │ ├── helper.ts │ │ │ │ └── index.tsx │ │ │ ├── Home │ │ │ │ └── index.tsx │ │ │ ├── Lineage │ │ │ │ ├── LineageDiagram │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.tsx │ │ │ │ ├── ProgramModal │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── helper.test.ts │ │ │ │ ├── helper.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── styles.tsx │ │ │ │ └── timeRangeOptions.ts │ │ │ ├── SearchBar │ │ │ │ └── index.tsx │ │ │ ├── SearchResults │ │ │ │ ├── Filters │ │ │ │ │ └── index.tsx │ │ │ │ ├── ResultList │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── helper.test.js │ │ │ │ ├── helper.ts │ │ │ │ └── index.tsx │ │ │ ├── SearchSummary │ │ │ │ ├── EntityProperties │ │ │ │ │ └── index.tsx │ │ │ │ ├── EntitySchema │ │ │ │ │ └── index.tsx │ │ │ │ ├── EntityTags │ │ │ │ │ └── index.tsx │ │ │ │ ├── EntityTopBar │ │ │ │ │ └── index.tsx │ │ │ │ ├── __tests__ │ │ │ │ │ └── helper.test.ts │ │ │ │ ├── helper.ts │ │ │ │ └── index.tsx │ │ │ ├── __tests__ │ │ │ │ └── urlHelper.test.ts │ │ │ ├── index.tsx │ │ │ └── urlHelper.ts │ │ ├── MultipleSelectWithOptions │ │ │ └── index.js │ │ ├── NamespaceAdmin │ │ │ ├── AdminTabs.tsx │ │ │ ├── ComputeProfiles.tsx │ │ │ ├── Connections.tsx │ │ │ ├── Description.tsx │ │ │ ├── Drivers │ │ │ │ └── index.tsx │ │ │ ├── Metrics │ │ │ │ ├── MetricCard.tsx │ │ │ │ ├── ProfileMetric.tsx │ │ │ │ └── index.tsx │ │ │ ├── Preferences.tsx │ │ │ ├── ServiceAccounts │ │ │ │ ├── DeleteConfirmDialog.tsx │ │ │ │ ├── EditConfirmDialog.tsx │ │ │ │ └── index.tsx │ │ │ ├── SourceControlManagement │ │ │ │ ├── PropertyRow.tsx │ │ │ │ ├── SourceControlManagementForm.tsx │ │ │ │ ├── UnlinkSourceControlModal.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── reducer.ts │ │ │ │ └── types.ts │ │ │ ├── index.tsx │ │ │ └── store │ │ │ │ ├── ActionCreator.ts │ │ │ │ └── index.ts │ │ ├── NamespaceDetails │ │ │ ├── ComputeProfiles │ │ │ │ ├── ComputeProfiles.scss │ │ │ │ └── index.js │ │ │ ├── Description │ │ │ │ ├── Description.scss │ │ │ │ └── index.js │ │ │ ├── EntityCounts │ │ │ │ ├── EntityCounts.scss │ │ │ │ └── index.js │ │ │ ├── Mapping │ │ │ │ ├── Mapping.scss │ │ │ │ └── index.js │ │ │ ├── NamespaceDetails.scss │ │ │ ├── NamespaceDetailsPageTitle │ │ │ │ └── index.js │ │ │ ├── Preferences │ │ │ │ ├── Preferences.scss │ │ │ │ └── index.js │ │ │ ├── Security │ │ │ │ ├── Security.scss │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── index.js │ │ ├── NamespaceDropdown │ │ │ ├── NamespaceDropdown.scss │ │ │ └── index.tsx │ │ ├── NamespacesPicker │ │ │ ├── NamespacesPicker.scss │ │ │ ├── NamespacesPopover.js │ │ │ └── index.js │ │ ├── NotFound │ │ │ └── index.js │ │ ├── Operations │ │ │ ├── JobsTable │ │ │ │ └── index.tsx │ │ │ ├── TimePicker │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ └── parser.ts │ │ ├── OpsDashboard │ │ │ ├── OpsDashboard.scss │ │ │ ├── OpsDashboardColors.scss │ │ │ ├── RunsGraph │ │ │ │ ├── DataParser.js │ │ │ │ ├── Legends │ │ │ │ │ ├── Legends.scss │ │ │ │ │ ├── ViewByOptionSelector.js │ │ │ │ │ └── index.js │ │ │ │ ├── RunsGraph.scss │ │ │ │ ├── RunsTable │ │ │ │ │ ├── RunsTable.scss │ │ │ │ │ └── index.js │ │ │ │ ├── TypeSelector │ │ │ │ │ ├── TypeSelector.scss │ │ │ │ │ └── index.js │ │ │ │ ├── graphRenderer.js │ │ │ │ └── index.js │ │ │ ├── RunsList │ │ │ │ ├── RunsList.scss │ │ │ │ ├── TopPanel.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── DashboardStore.js │ │ ├── PipelineCanvasActions │ │ │ ├── ActionButtons │ │ │ │ ├── PipelineCanvasActionBtns.tsx │ │ │ │ └── styles.tsx │ │ │ ├── PipelineComments.tsx │ │ │ ├── PipelineCommentsActionBtn.tsx │ │ │ └── PipelineCommentsConstants.ts │ │ ├── PipelineConfigurations │ │ │ ├── ConfigurationsContent │ │ │ │ ├── AlertsTabContent │ │ │ │ │ ├── AlertsTabContent.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── ComputeTabContent │ │ │ │ │ └── index.js │ │ │ │ ├── ConfigModelessActionButtons │ │ │ │ │ ├── ConfigModelessActionButtons.scss │ │ │ │ │ ├── ConfigModelessSaveBtn.js │ │ │ │ │ └── index.tsx │ │ │ │ ├── ConfigurationsContent.scss │ │ │ │ ├── EngineConfigTabContent │ │ │ │ │ ├── Backpressure.js │ │ │ │ │ ├── CustomConfig.js │ │ │ │ │ ├── EngineConfigTabContent.scss │ │ │ │ │ ├── EngineRadioInput.js │ │ │ │ │ ├── NumExecutors.js │ │ │ │ │ └── index.js │ │ │ │ ├── PipelineConfigTabContent │ │ │ │ │ ├── BatchInterval.js │ │ │ │ │ ├── Checkpointing.js │ │ │ │ │ ├── Instrumentation.js │ │ │ │ │ ├── PipelineConfigTabContent.scss │ │ │ │ │ ├── ServiceAccountPath.js │ │ │ │ │ ├── StageLogging.js │ │ │ │ │ └── index.js │ │ │ │ ├── PreviewTabContent │ │ │ │ │ ├── BatchPipelinePreviewConfig.tsx │ │ │ │ │ ├── RealtimePipelinePreviewConfig.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── PushdownTabContent.tsx │ │ │ │ ├── ResourcesTabContent │ │ │ │ │ ├── ClientResources.js │ │ │ │ │ ├── DriverResources.js │ │ │ │ │ ├── ExecutorResources.js │ │ │ │ │ ├── ResourcesTabContent.scss │ │ │ │ │ └── index.js │ │ │ │ ├── RuntimeTabContent │ │ │ │ │ └── index.tsx │ │ │ │ └── helper.ts │ │ │ ├── PipelineConfigConstants.tsx │ │ │ ├── PipelineConfigurations.scss │ │ │ ├── Store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── index.js │ │ │ └── index.tsx │ │ ├── PipelineContextMenu │ │ │ ├── PipelineTypes.ts │ │ │ ├── WranglerConnection │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── PipelineDetails │ │ │ ├── PipelineDetailsTopPanel │ │ │ │ ├── PipelineDetailsButtons │ │ │ │ │ ├── PipelineConfigureButton.js │ │ │ │ │ ├── PipelineHistoryButton.tsx │ │ │ │ │ ├── PipelineRunButton.js │ │ │ │ │ ├── PipelineScheduleButton.js │ │ │ │ │ ├── PipelineStopButton │ │ │ │ │ │ ├── PipelineStopPopover.js │ │ │ │ │ │ ├── PipelineStopPopover.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── PipelineSummaryButton.js │ │ │ │ │ └── index.js │ │ │ │ ├── PipelineDetailsDetailsActions │ │ │ │ │ ├── PipelineDetailsActionsButton │ │ │ │ │ │ ├── PipelineDetailsActionsButton.scss │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PipelineDetailsDetailsActions.scss │ │ │ │ │ ├── PipelineDetailsDetailsButton.js │ │ │ │ │ └── index.js │ │ │ │ ├── PipelineDetailsMetadata.tsx │ │ │ │ ├── PipelineDetailsTopPanel.scss │ │ │ │ ├── PipelineRunErrorDetails │ │ │ │ │ ├── ErrorDetailsBanner.tsx │ │ │ │ │ ├── ErrorStageOutline.tsx │ │ │ │ │ ├── PreviewErrorDetailsBanner.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── types.ts │ │ │ │ │ └── uiStateStore.ts │ │ │ │ └── index.tsx │ │ │ ├── PipelineModeless │ │ │ │ ├── PipelineModeless.scss │ │ │ │ └── index.js │ │ │ ├── PipelineRuntimeArgsCounter │ │ │ │ ├── PipelineRuntimeArgsCounter.scss │ │ │ │ └── index.js │ │ │ ├── PipelineRuntimeArgsDropdownBtn │ │ │ │ ├── PipelineRuntimeArgsDropdownBtn.scss │ │ │ │ ├── RuntimeArgsKeyValuePairWrapper │ │ │ │ │ ├── ProvidedPopover.js │ │ │ │ │ ├── RuntimeArgsKeyValuePairWrapper.scss │ │ │ │ │ ├── RuntimeArgsPairs.js │ │ │ │ │ ├── RuntimeArgsPairsMaterial.tsx │ │ │ │ │ ├── RuntimeArgsRow.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── RuntimeArgsModeless │ │ │ │ │ └── index.tsx │ │ │ │ └── index.js │ │ │ ├── ProfilesListView │ │ │ │ ├── ProfileCustomizePopover │ │ │ │ │ ├── ProfileCustomizeContent │ │ │ │ │ │ ├── ProfileCustomizeContent.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ProfileCustomizePopover.scss │ │ │ │ │ ├── ProfilePropertyRow │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.js │ │ │ │ ├── ProfilesListViewInPipeline.scss │ │ │ │ └── index.js │ │ │ ├── RunLevelInfo │ │ │ │ ├── CurrentRunIndex.tsx │ │ │ │ ├── PipelineLogViewer │ │ │ │ │ ├── LogsPortal.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── RunComputeProfile │ │ │ │ │ ├── RunComputeProfile.scss │ │ │ │ │ └── index.js │ │ │ │ ├── RunConfigs.js │ │ │ │ ├── RunDuration.js │ │ │ │ ├── RunLevelInfo.scss │ │ │ │ ├── RunLogs.js │ │ │ │ ├── RunLogsStatsChips.tsx │ │ │ │ ├── RunNumErrors.js │ │ │ │ ├── RunNumWarnings.js │ │ │ │ ├── RunStartTime.js │ │ │ │ ├── RunStatus.js │ │ │ │ ├── RunningRunsPopover │ │ │ │ │ ├── RunningRunsPopover.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ └── store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── index.js │ │ ├── PipelineExportModal │ │ │ ├── PipelineExportModal.scss │ │ │ └── index.tsx │ │ ├── PipelineHistory │ │ │ ├── PipelineHistoryStore.tsx │ │ │ ├── PipelineHistoryTable.tsx │ │ │ ├── PipelineHistoryTableRow.tsx │ │ │ ├── index.tsx │ │ │ ├── styles.ts │ │ │ └── types.ts │ │ ├── PipelineList │ │ │ ├── DeployedPipelineView │ │ │ │ ├── DeployedActions │ │ │ │ │ └── index.tsx │ │ │ │ ├── DeployedPipelineView.scss │ │ │ │ ├── DeployedPipelineViewVariables.scss │ │ │ │ ├── LastStart │ │ │ │ │ └── index.tsx │ │ │ │ ├── NextRun │ │ │ │ │ └── index.tsx │ │ │ │ ├── PipelineCount │ │ │ │ │ └── index.tsx │ │ │ │ ├── PipelineTable │ │ │ │ │ ├── PipelineTable.scss │ │ │ │ │ ├── PipelineTableRow.tsx │ │ │ │ │ ├── SortableHeader.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── PipelineTags │ │ │ │ │ ├── PipelineTags.scss │ │ │ │ │ └── index.tsx │ │ │ │ ├── RunsCount │ │ │ │ │ └── index.tsx │ │ │ │ ├── SearchBox │ │ │ │ │ └── index.tsx │ │ │ │ ├── Status │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── store │ │ │ │ │ ├── ActionCreator.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── DraftPipelineView │ │ │ │ ├── DraftActions │ │ │ │ │ └── index.tsx │ │ │ │ ├── DraftCount │ │ │ │ │ └── index.tsx │ │ │ │ ├── DraftPipelineView.scss │ │ │ │ ├── DraftPipelineViewVariables.scss │ │ │ │ ├── DraftTable │ │ │ │ │ ├── DraftTable.scss │ │ │ │ │ ├── DraftTableRow.tsx │ │ │ │ │ ├── SortableHeader.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Pagination │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── store │ │ │ │ │ ├── ActionCreator.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── EmptyList │ │ │ │ ├── EmptyList.scss │ │ │ │ └── index.tsx │ │ │ ├── PipelineList.scss │ │ │ ├── SortableHeaderView │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── PipelineModal │ │ │ └── index.tsx │ │ ├── PipelineNodeGraphs │ │ │ ├── NodeMetricsGraph.js │ │ │ ├── NodeMetricsGraphLegends │ │ │ │ ├── NodeMetricsGraphLegend.js │ │ │ │ ├── NodeMetricsGraphLegends.scss │ │ │ │ └── index.js │ │ │ ├── NodeMetricsSingleDatapoint.js │ │ │ ├── PipelineNodeMetricsGraph.js │ │ │ └── PipelineNodeMetricsGraph.scss │ │ ├── PipelineResources │ │ │ └── index.js │ │ ├── PipelineScheduler │ │ │ ├── AdvancedView.js │ │ │ ├── BasicView │ │ │ │ ├── IntervalOption.js │ │ │ │ ├── MaxConcurrentRuns.js │ │ │ │ ├── RepeatEvery.js │ │ │ │ ├── StartingAt.js │ │ │ │ ├── Summary.js │ │ │ │ └── index.js │ │ │ ├── PipelineScheduler.scss │ │ │ ├── ProfilesForSchedule │ │ │ │ └── index.js │ │ │ ├── Store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── index.js │ │ │ ├── ViewContainer.js │ │ │ ├── ViewSwitch.js │ │ │ └── index.js │ │ ├── PipelineSummary │ │ │ ├── EmptyMessageContainer │ │ │ │ ├── EmptyMessageContainer.scss │ │ │ │ └── index.js │ │ │ ├── GraphHint.scss │ │ │ ├── LogsMetricsGraph │ │ │ │ ├── LogsMetricsGraph.scss │ │ │ │ └── index.js │ │ │ ├── NodesMetricsGraph │ │ │ │ ├── NodesMetricsGraph.scss │ │ │ │ └── index.js │ │ │ ├── NodesRecordsGraph │ │ │ │ └── index.js │ │ │ ├── PipelineSummary.scss │ │ │ ├── RunsGraphHelpers.js │ │ │ ├── RunsHistoryGraph │ │ │ │ ├── RunsHistoryGraph.scss │ │ │ │ └── index.js │ │ │ ├── StickyTableHeader.scss │ │ │ ├── Store │ │ │ │ ├── PipelineSummaryActions.js │ │ │ │ └── PipelineSummaryStore.js │ │ │ ├── __tests__ │ │ │ │ └── RunsGraphHelpers.test.ts │ │ │ └── index.js │ │ ├── PipelineTriggers │ │ │ ├── EnabledTriggersTab │ │ │ │ ├── EnabledCompositeTriggerRow.tsx │ │ │ │ ├── EnabledInlineTriggerRow.tsx │ │ │ │ ├── EnabledTriggerRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── PayloadConfigModal │ │ │ │ ├── PayloadConfigModal.scss │ │ │ │ └── index.js │ │ │ ├── PipelineListCompositeTab │ │ │ │ ├── PipelineCompositeTriggerRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── PipelineListTab │ │ │ │ ├── PipelineTriggersRow.tsx │ │ │ │ └── index.tsx │ │ │ ├── PipelineTriggers.scss │ │ │ ├── ScheduleRuntimeArgs │ │ │ │ ├── ScheduleRuntimeArgs.scss │ │ │ │ ├── ScheduleRuntimeArgsActions.js │ │ │ │ ├── ScheduleRuntimeArgsStore.js │ │ │ │ ├── Tabs │ │ │ │ │ ├── ComputeConfigTab │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── RuntimeArgsTab │ │ │ │ │ │ ├── RuntimeArgRow.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── ScheduleRuntimeTabStyling.scss │ │ │ │ │ ├── StagePropertiesTab │ │ │ │ │ │ ├── StagePropertiesRow.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── TabConfig.js │ │ │ │ └── index.js │ │ │ ├── index.tsx │ │ │ ├── reducer.ts │ │ │ ├── shared.styles.tsx │ │ │ └── store │ │ │ │ ├── PipelineTriggersActionCreator.ts │ │ │ │ ├── PipelineTriggersActions.ts │ │ │ │ ├── PipelineTriggersStore.ts │ │ │ │ ├── PipelineTriggersTypes.ts │ │ │ │ └── ScheduleTypes.ts │ │ ├── PipelineTriggersSidebars │ │ │ └── index.tsx │ │ ├── PluginContextMenu │ │ │ └── index.tsx │ │ ├── PluginJSONCreator │ │ │ ├── Create │ │ │ │ ├── Content │ │ │ │ │ ├── ConfigurationGroupPage │ │ │ │ │ │ ├── GroupPanel │ │ │ │ │ │ │ ├── GroupActionButtons │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── GroupInfoInput │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── WidgetCollection │ │ │ │ │ │ │ │ ├── WidgetAttributesPanel │ │ │ │ │ │ │ │ │ ├── WidgetAttributeInput │ │ │ │ │ │ │ │ │ │ ├── MultipleAttributesInput │ │ │ │ │ │ │ │ │ │ │ ├── AttributeKeyvalueRowsInput │ │ │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ │ │ ├── AttributeRowsInput │ │ │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ │ ├── SingleAttributeInput │ │ │ │ │ │ │ │ │ │ │ ├── AttributeKeyValueInput │ │ │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── WidgetPanel │ │ │ │ │ │ │ │ │ ├── WidgetActionButtons │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── WidgetInfoInput │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── FilterPage │ │ │ │ │ │ ├── FilterPanel │ │ │ │ │ │ │ ├── FilerNameInput │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── FilterConditionInput │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── FilterShowlistInput │ │ │ │ │ │ │ │ ├── ShowPropertyRow │ │ │ │ │ │ │ │ │ ├── ShowActionButtons │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OutputPage │ │ │ │ │ │ ├── ExplicitSchemaDefiner │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ImplicitSchemaDefiner │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PluginInfoPage │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PluginInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StepButtons │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── PluginJSONMenu │ │ │ │ │ ├── JSONActionButtons │ │ │ │ │ │ ├── CollapseLiveViewButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── JSONDownloadButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── JSONImportButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── LiveConfigurationGroupButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── LiveJSONButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LiveView │ │ │ │ │ │ ├── LiveConfigurationGroup │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── LiveJSON │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── StepsGuidelineMenu │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── __tests__ │ │ │ │ └── plugin-json-creator-utilities.test.ts │ │ │ ├── constants.tsx │ │ │ ├── index.tsx │ │ │ └── utilities │ │ │ │ └── index.ts │ │ ├── PluginSchemaEditor │ │ │ ├── RefreshableSchemaEditor.tsx │ │ │ └── index.tsx │ │ ├── PostRunActions │ │ │ ├── PostRunActions.scss │ │ │ ├── PostRunActionsWizard.tsx │ │ │ ├── WizardNav │ │ │ │ ├── WizardConfigureConfirmStep │ │ │ │ │ └── index.tsx │ │ │ │ ├── WizardSelectActionStep │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── reducer.ts │ │ │ └── index.tsx │ │ ├── PreviewData │ │ │ ├── DataView │ │ │ │ ├── Table.tsx │ │ │ │ └── TableContainer.tsx │ │ │ ├── RecordView │ │ │ │ ├── Navigator.tsx │ │ │ │ ├── RecordContainer.tsx │ │ │ │ └── RecordTable.tsx │ │ │ ├── index.tsx │ │ │ └── utilities.ts │ │ ├── PreviewLogs │ │ │ └── index.tsx │ │ ├── PropertiesEditor │ │ │ ├── AddPropertyModal │ │ │ │ ├── AddPropertyModal.scss │ │ │ │ └── index.js │ │ │ ├── DeleteConfirmation │ │ │ │ └── index.js │ │ │ ├── EditProperty │ │ │ │ └── index.js │ │ │ ├── PropertiesEditor.scss │ │ │ └── index.js │ │ ├── PushdownConfig │ │ │ └── index.tsx │ │ ├── Replicator │ │ │ ├── ConfigDisplay │ │ │ │ ├── PluginConfigDisplay │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── Create │ │ │ │ ├── Content │ │ │ │ │ ├── Advanced │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Assessment │ │ │ │ │ │ ├── ConnectivityAssessment │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── FeaturesAssessment │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TablesAssessment │ │ │ │ │ │ │ ├── Mappings │ │ │ │ │ │ │ │ ├── Supported.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── NoIssuesTables │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── ViewMappingButton │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── WithIssuesTables │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── tableStyles.ts │ │ │ │ │ ├── Documentation │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── NameDescription │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PluginConfig │ │ │ │ │ │ ├── PluginCard │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── PluginList │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SearchBox │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SelectColumns │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SelectColumnsWithTransforms │ │ │ │ │ │ ├── TransformAdd.tsx │ │ │ │ │ │ ├── TransformDelete.tsx │ │ │ │ │ │ ├── addToTransforms.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── reducer.ts │ │ │ │ │ │ ├── styles.tsx │ │ │ │ │ │ ├── table.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── SelectTables │ │ │ │ │ │ ├── ManualSelectTable │ │ │ │ │ │ │ ├── ColumnsMultiRow │ │ │ │ │ │ │ │ ├── ColumnRow.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── TableMultiRow │ │ │ │ │ │ │ │ ├── TableRow.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SourceConfig │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── StepButtons │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Summary │ │ │ │ │ │ ├── ActionButtons │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── TableList │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TargetConfig │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── LeftPanel │ │ │ │ │ └── index.tsx │ │ │ │ ├── TopPanel │ │ │ │ │ ├── PluginInfo.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── steps.tsx │ │ │ ├── DeleteConfirmation │ │ │ │ └── index.tsx │ │ │ ├── Detail │ │ │ │ ├── ChartTableSwitcher │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContentHeading │ │ │ │ │ ├── RunInfo │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── DetailContent │ │ │ │ │ └── index.tsx │ │ │ │ ├── Monitoring │ │ │ │ │ ├── Metrics │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── parser.tsx │ │ │ │ │ ├── SelectedTable │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TableScatterPlotGraph │ │ │ │ │ │ ├── ScatterPlotTable.tsx │ │ │ │ │ │ ├── ScatterPlotTooltip.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── parser.ts │ │ │ │ │ │ └── scatterPlot.ts │ │ │ │ │ ├── ThroughputLatencyGraphs │ │ │ │ │ │ ├── LatencyGraph │ │ │ │ │ │ │ ├── LatencyTable.tsx │ │ │ │ │ │ │ ├── LatencyTooltip.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── latency.ts │ │ │ │ │ │ ├── ThroughputGraph │ │ │ │ │ │ │ ├── ThroughputTable.tsx │ │ │ │ │ │ │ ├── ThroughputTooltip.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── throughput.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── parser.ts │ │ │ │ │ ├── TimePeriodSelection │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Overview │ │ │ │ │ ├── TablesList │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── metricsParser.ts │ │ │ │ │ └── index.tsx │ │ │ │ ├── TimePeriodDropdown │ │ │ │ │ └── index.tsx │ │ │ │ ├── TopPanel │ │ │ │ │ ├── ActionButtons │ │ │ │ │ │ ├── ActionButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Configure │ │ │ │ │ │ │ ├── ConfigureModeless.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── LogsButton │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── StatusIndicator │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── VerticalDivider │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── List │ │ │ │ ├── Deployed │ │ │ │ │ └── index.tsx │ │ │ │ ├── Drafts │ │ │ │ │ └── index.tsx │ │ │ │ ├── ReplicationPlusButton │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── constants.tsx │ │ │ ├── index.tsx │ │ │ ├── types.ts │ │ │ └── utilities │ │ │ │ ├── __tests__ │ │ │ │ └── utilities.test.ts │ │ │ │ └── index.ts │ │ ├── Reports │ │ │ ├── Customizer │ │ │ │ ├── ActionButtons │ │ │ │ │ └── index.js │ │ │ │ ├── AppTypeSelector │ │ │ │ │ └── index.js │ │ │ │ ├── ColumnsSelector │ │ │ │ │ └── index.js │ │ │ │ ├── Customizer.scss │ │ │ │ ├── StatusSelector │ │ │ │ │ ├── StatusPopover.js │ │ │ │ │ ├── StatusSelector.scss │ │ │ │ │ ├── StatusViewer.js │ │ │ │ │ └── index.js │ │ │ │ ├── TimeRangeSelector │ │ │ │ │ ├── TimeRangePopover.js │ │ │ │ │ ├── TimeRangeSelector.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── Reports.scss │ │ │ ├── ReportsAppDelete │ │ │ │ └── index.js │ │ │ ├── ReportsDetail │ │ │ │ ├── Expiry │ │ │ │ │ ├── Expiry.scss │ │ │ │ │ └── index.js │ │ │ │ ├── ReportsDetail.scss │ │ │ │ ├── Runs │ │ │ │ │ ├── Runs.scss │ │ │ │ │ └── index.js │ │ │ │ ├── RunsPagination │ │ │ │ │ └── index.js │ │ │ │ ├── SaveButton │ │ │ │ │ ├── SaveButton.scss │ │ │ │ │ ├── SaveModal.js │ │ │ │ │ └── index.js │ │ │ │ ├── Summary │ │ │ │ │ ├── Summary.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── ReportsList │ │ │ │ ├── ActionPopover.js │ │ │ │ ├── ReportsList.scss │ │ │ │ ├── ReportsPagination.js │ │ │ │ └── index.js │ │ │ ├── ReportsServiceControl │ │ │ │ ├── ReportsServiceControl.scss │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── store │ │ │ │ ├── ActionCreator.js │ │ │ │ └── ReportsStore.js │ │ ├── ResourceCenter │ │ │ ├── ResourceCenter.scss │ │ │ └── index.js │ │ ├── ResourceCenterButton │ │ │ ├── ResourceCenterButton.scss │ │ │ └── index.js │ │ ├── ResourceCenterEntity │ │ │ ├── PullPipelineWizard.tsx │ │ │ ├── ResourceCenterEntity.scss │ │ │ ├── ResourceCenterPipelineEntity.scss │ │ │ ├── ResourceCenterPipelineEntity.tsx │ │ │ └── index.js │ │ ├── RouteToNamespace │ │ │ └── index.js │ │ ├── RulesEngineHome │ │ │ ├── CreateRule │ │ │ │ ├── CreateRule.scss │ │ │ │ └── index.js │ │ │ ├── CreateRulebook │ │ │ │ └── index.js │ │ │ ├── ImportRulebookWizard │ │ │ │ ├── ImportRulebookStore.js │ │ │ │ ├── ImportRulebookWizard.scss │ │ │ │ ├── ImportRulebookWizardConfig.js │ │ │ │ ├── RulebookUploadStep.js │ │ │ │ └── index.js │ │ │ ├── RuleBook │ │ │ │ ├── RuleBook.scss │ │ │ │ └── index.js │ │ │ ├── RuleBookDetails │ │ │ │ ├── RuleBookDetails.scss │ │ │ │ ├── RulebookMenu │ │ │ │ │ ├── AddRulesEngineToPipelineModal.js │ │ │ │ │ ├── AddRulesEngineToPipelineModal.scss │ │ │ │ │ ├── RulebookMenu.scss │ │ │ │ │ └── index.js │ │ │ │ ├── RulebookRule │ │ │ │ │ └── index.js │ │ │ │ ├── RulesList │ │ │ │ │ ├── RulesList.scss │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ ├── RuleBooksTab │ │ │ │ ├── RulesBooksTab.scss │ │ │ │ └── index.js │ │ │ ├── RulesEngineAlert │ │ │ │ └── index.js │ │ │ ├── RulesEngineServiceControl │ │ │ │ ├── RulesEngineServiceControl.scss │ │ │ │ └── index.js │ │ │ ├── RulesEngineStore │ │ │ │ ├── RulesEngineActions.js │ │ │ │ └── index.js │ │ │ ├── RulesEngineTabCounters │ │ │ │ └── index.js │ │ │ ├── RulesEngineWrapper.js │ │ │ ├── RulesEngineWrapper.scss │ │ │ ├── RulesTab │ │ │ │ ├── Rule │ │ │ │ │ ├── Rule.scss │ │ │ │ │ ├── RulebooksPopover │ │ │ │ │ │ ├── RulebooksPopover.scss │ │ │ │ │ │ └── index.js │ │ │ │ │ └── index.js │ │ │ │ ├── RulesTab.scss │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── SampleTSXComponent │ │ │ ├── ChildTSXComponent │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── SecureKeys │ │ │ ├── SecureKeyCreate │ │ │ │ └── index.tsx │ │ │ ├── SecureKeyDelete │ │ │ │ └── index.tsx │ │ │ ├── SecureKeyEdit │ │ │ │ └── index.tsx │ │ │ ├── SecureKeyList │ │ │ │ ├── SecureKeyActionButtons │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── SecureKeySearch │ │ │ │ └── index.tsx │ │ │ ├── constants.tsx │ │ │ └── index.tsx │ │ ├── SimpleSchema │ │ │ ├── FieldRow.js │ │ │ ├── FieldRow.scss │ │ │ ├── SchemaStore.js │ │ │ ├── SchemaStoreActions.js │ │ │ ├── SimpleSchema.scss │ │ │ └── index.js │ │ ├── SourceControlManagement │ │ │ ├── LocalPipelineListView │ │ │ │ ├── CommitModal.tsx │ │ │ │ ├── PipelineTable.tsx │ │ │ │ └── index.tsx │ │ │ ├── OperationAlert.tsx │ │ │ ├── OperationStatus.ts │ │ │ ├── OperationType.ts │ │ │ ├── RemotePipelineListView │ │ │ │ ├── RemotePipelineTable.tsx │ │ │ │ └── index.tsx │ │ │ ├── SearchBox.tsx │ │ │ ├── SyncTabs.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.tsx │ │ │ ├── store │ │ │ │ ├── ActionCreator.ts │ │ │ │ └── index.ts │ │ │ ├── styles.ts │ │ │ └── types.ts │ │ ├── SpotlightSearch │ │ │ ├── SpotlightModal │ │ │ │ ├── SpotlightModal.scss │ │ │ │ ├── SpotlightModalHeader.js │ │ │ │ └── index.js │ │ │ ├── SpotlightSearch.scss │ │ │ └── index.js │ │ ├── StatusButton │ │ │ ├── StatusButton.stories.tsx │ │ │ ├── constants.ts │ │ │ ├── icons.tsx │ │ │ ├── index.tsx │ │ │ └── styles.tsx │ │ ├── SystemServicesDelay │ │ │ └── index.tsx │ │ ├── TextboxOnValium │ │ │ └── index.js │ │ ├── ThemeWrapper │ │ │ ├── colors.ts │ │ │ └── index.tsx │ │ ├── TriggeredPipelines │ │ │ ├── TriggeredPipelineRow.tsx │ │ │ ├── index.tsx │ │ │ └── store │ │ │ │ ├── TriggeredPipelineActionCreator.ts │ │ │ │ ├── TriggeredPipelineActions.ts │ │ │ │ └── TriggeredPipelineStore.ts │ │ ├── UncontrolledComponents │ │ │ ├── ExpandableMenu.js │ │ │ ├── ExpandableMenu.scss │ │ │ ├── Popover.js │ │ │ └── index.js │ │ ├── UniversalBackdrop │ │ │ └── index.tsx │ │ ├── VegaLiteChart │ │ │ ├── VegaLiteChart.scss │ │ │ └── index.js │ │ ├── VersionsDropdown │ │ │ └── index.js │ │ ├── hydrator │ │ │ ├── components │ │ │ │ ├── LeftPanel │ │ │ │ │ └── LeftPanel.tsx │ │ │ │ ├── SidePanel │ │ │ │ │ ├── ChangeVersionMenu.tsx │ │ │ │ │ ├── SidePanel.tsx │ │ │ │ │ ├── helpers.tsx │ │ │ │ │ └── sharedStyled.tsx │ │ │ │ └── TopPanel │ │ │ │ │ ├── ActionButtons │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ │ ├── NameAndDescription │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.ts │ │ │ │ │ ├── PipelineConfigure │ │ │ │ │ └── index.tsx │ │ │ │ │ └── TopPanel.tsx │ │ │ ├── helpers │ │ │ │ └── DAGhelpers.tsx │ │ │ ├── main.js │ │ │ ├── react-loader.js │ │ │ └── reducers │ │ │ │ ├── index.ts │ │ │ │ └── leftPanelStore.ts │ │ ├── layouts │ │ │ └── SectionWithPanel.tsx │ │ └── shared │ │ │ ├── AbsLinkTo │ │ │ └── index.js │ │ │ ├── Accordion │ │ │ ├── AccordionContent │ │ │ │ ├── AccordionContent.scss │ │ │ │ └── index.js │ │ │ ├── AccordionPane │ │ │ │ ├── AccordionPane.scss │ │ │ │ └── index.js │ │ │ ├── AccordionTitle │ │ │ │ ├── AccordionTitle.scss │ │ │ │ └── index.js │ │ │ └── index.js │ │ │ ├── ActionsPopover │ │ │ ├── ActionsPopover.scss │ │ │ └── index.tsx │ │ │ ├── Alert │ │ │ ├── Alert.scss │ │ │ ├── Alert.stories.tsx │ │ │ └── index.js │ │ │ ├── ApiErrorDialog │ │ │ └── index.tsx │ │ │ ├── AppDetailedView │ │ │ └── AppDetailedView.scss │ │ │ ├── AppHeader │ │ │ ├── AboutPageModal │ │ │ │ ├── AboutPageModal.scss │ │ │ │ ├── helper.js │ │ │ │ └── index.tsx │ │ │ ├── AccessTokenModal │ │ │ │ ├── AccessTokenModal.scss │ │ │ │ └── index.tsx │ │ │ ├── AppDrawer │ │ │ │ ├── AppDrawer.tsx │ │ │ │ └── DrawerFeatureLink.tsx │ │ │ ├── AppToolBar │ │ │ │ ├── AppToolbar.tsx │ │ │ │ ├── AppToolbarMenu.tsx │ │ │ │ ├── FeatureHeading.tsx │ │ │ │ ├── ProductEdition.tsx │ │ │ │ └── ToolBarFeatureLink.tsx │ │ │ ├── BrandImage.tsx │ │ │ ├── ExtendedLinkButton.tsx │ │ │ ├── HubButton.tsx │ │ │ ├── ListItemLink.tsx │ │ │ ├── NamespaceLinkContext.tsx │ │ │ └── index.tsx │ │ │ ├── BreadCrumb │ │ │ ├── BreadCrumb.scss │ │ │ └── index.js │ │ │ ├── BtnWithLoading │ │ │ ├── BtnWithLoading.scss │ │ │ ├── BtnWithLoading.stories.tsx │ │ │ └── index.js │ │ │ ├── Buttons │ │ │ ├── ButtonLoadingHoc │ │ │ │ └── index.tsx │ │ │ ├── ButtonLoadingIcon │ │ │ │ └── index.tsx │ │ │ ├── Buttons.stories.tsx │ │ │ ├── PrimaryContainedButton │ │ │ │ └── index.tsx │ │ │ ├── PrimaryOutlinedButton │ │ │ │ └── index.tsx │ │ │ ├── PrimaryTextButton │ │ │ │ └── index.tsx │ │ │ └── PrimaryTextLowercaseButton │ │ │ │ └── index.tsx │ │ │ ├── Card │ │ │ ├── Card.scss │ │ │ └── index.js │ │ │ ├── CardActionFeedback │ │ │ ├── CardActionFeedback.scss │ │ │ └── index.js │ │ │ ├── ChartContainer │ │ │ └── index.tsx │ │ │ ├── CodeEditor │ │ │ ├── JSONEditor.tsx │ │ │ └── index.tsx │ │ │ ├── CollapsibleSidebar │ │ │ ├── CollapsibleSidebar.scss │ │ │ └── index.js │ │ │ ├── CollapsibleWrapper │ │ │ ├── CollapsibleWrapper.scss │ │ │ └── index.js │ │ │ ├── ConfigurableTab │ │ │ ├── ConfigurableTab.scss │ │ │ ├── TabIcon.tsx │ │ │ └── index.tsx │ │ │ ├── ConfigurationGroup │ │ │ ├── AccordionWrapper │ │ │ │ └── index.tsx │ │ │ ├── MacroIndicator │ │ │ │ └── index.tsx │ │ │ ├── PropertyRow │ │ │ │ ├── DescriptionTooltip.tsx │ │ │ │ ├── LockedTooltip.tsx │ │ │ │ ├── PropertyRowTooltip.tsx │ │ │ │ └── index.tsx │ │ │ ├── WidgetWrapper │ │ │ │ └── index.tsx │ │ │ ├── __tests__ │ │ │ │ └── configuration-group-utilities.test.ts │ │ │ ├── index.tsx │ │ │ ├── types.ts │ │ │ └── utilities │ │ │ │ ├── DynamicPluginFilters.ts │ │ │ │ ├── __tests__ │ │ │ │ ├── DynamicPluginFilters.test.ts │ │ │ │ └── utilities.test.ts │ │ │ │ └── index.ts │ │ │ ├── ConfigureButton │ │ │ ├── ConfigureButton.scss │ │ │ └── index.js │ │ │ ├── ConfirmDialog │ │ │ ├── Status.tsx │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ │ ├── ConfirmationModal │ │ │ ├── ConfirmationModal.scss │ │ │ └── index.js │ │ │ ├── ContextMenu │ │ │ ├── MenuItemContentWrapper.tsx │ │ │ └── index.tsx │ │ │ ├── CustomDropdownMenu │ │ │ └── index.js │ │ │ ├── Dashboard │ │ │ └── index.js │ │ │ ├── DeprecatedMessage │ │ │ └── index.tsx │ │ │ ├── Description │ │ │ ├── Description.scss │ │ │ └── index.js │ │ │ ├── DiscardDraftModal │ │ │ └── index.tsx │ │ │ ├── Duration │ │ │ └── index.js │ │ │ ├── ErrorBanner │ │ │ └── index.tsx │ │ │ ├── ErrorBoundary │ │ │ └── index.tsx │ │ │ ├── Footer │ │ │ └── index.tsx │ │ │ ├── Heading │ │ │ ├── Heading.stories.tsx │ │ │ └── index.tsx │ │ │ ├── HorizontalCarousel │ │ │ └── index.tsx │ │ │ ├── IconSVG │ │ │ ├── IconSVG.scss │ │ │ └── index.js │ │ │ ├── If │ │ │ ├── __tests__ │ │ │ │ └── If.test.tsx │ │ │ └── index.tsx │ │ │ ├── KeyValuePairs │ │ │ ├── KeyValuePair.js │ │ │ ├── KeyValuePairs.scss │ │ │ ├── KeyValueStore.js │ │ │ ├── KeyValueStoreActions.js │ │ │ └── index.js │ │ │ ├── LoadingAppLevel │ │ │ └── index.tsx │ │ │ ├── LoadingIndicator │ │ │ ├── LoadingIndicator.scss │ │ │ ├── LoadingIndicatorStore.js │ │ │ └── index.js │ │ │ ├── LoadingSVG │ │ │ ├── LoadingSVG.scss │ │ │ └── index.js │ │ │ ├── LoadingSVGCentered │ │ │ ├── LoadingSVGCentered.scss │ │ │ └── index.js │ │ │ ├── Markdown │ │ │ ├── MarkdownHeading.tsx │ │ │ ├── MarkdownImplExample.tsx │ │ │ ├── MarkdownTable.tsx │ │ │ ├── MarkdownToReactMapping.tsx │ │ │ └── index.tsx │ │ │ ├── Modal │ │ │ └── Modal.stories.tsx │ │ │ ├── NavLinkWrapper │ │ │ └── index.js │ │ │ ├── OutlinedSelect │ │ │ └── index.tsx │ │ │ ├── OverlayFocus │ │ │ ├── OverlayFocus.scss │ │ │ └── index.tsx │ │ │ ├── Overview │ │ │ ├── AppOverview │ │ │ │ ├── AppOverviewTab.js │ │ │ │ └── index.js │ │ │ ├── DatasetOverview │ │ │ │ ├── DatasetOverviewTab.js │ │ │ │ └── index.js │ │ │ ├── Overview.scss │ │ │ ├── OverviewHeader │ │ │ │ ├── OverviewHeader.scss │ │ │ │ └── index.js │ │ │ ├── OverviewMetaSection │ │ │ │ ├── OverviewMetaSection.scss │ │ │ │ └── index.js │ │ │ ├── Tabs │ │ │ │ ├── DatasetTab │ │ │ │ │ ├── DatasetTab.scss │ │ │ │ │ └── index.js │ │ │ │ ├── OverviewTab.scss │ │ │ │ ├── ProgramTab │ │ │ │ │ ├── ProgramTab.scss │ │ │ │ │ └── index.js │ │ │ │ └── SchemaTab │ │ │ │ │ ├── SchemaTab.scss │ │ │ │ │ └── index.tsx │ │ │ └── index.js │ │ │ ├── Pagination │ │ │ ├── Pagination.scss │ │ │ ├── PaginationDropdown.js │ │ │ ├── PaginationDropdown.scss │ │ │ └── index.js │ │ │ ├── PaginationStepper │ │ │ ├── PaginationStepper.scss │ │ │ └── index.tsx │ │ │ ├── PaginationWithTitle │ │ │ ├── PaginationWithTitle.scss │ │ │ └── index.js │ │ │ ├── PaidBanner │ │ │ └── index.tsx │ │ │ ├── PieChart │ │ │ └── index.js │ │ │ ├── PieChartWithLegend │ │ │ ├── PieChartWithLegend.scss │ │ │ └── index.js │ │ │ ├── PlusButton │ │ │ ├── PlusButton.scss │ │ │ └── index.js │ │ │ ├── PlusButtonModal │ │ │ ├── PlusButtonModal.scss │ │ │ └── index.js │ │ │ ├── Popover │ │ │ ├── Popover.scss │ │ │ ├── Popover.stories.tsx │ │ │ ├── Tooltip.stories.tsx │ │ │ └── index.js │ │ │ ├── ProgramCards │ │ │ ├── ProgramCards.scss │ │ │ └── index.js │ │ │ ├── ProgramTable │ │ │ ├── ProgramTable.scss │ │ │ └── index.js │ │ │ ├── RadioGroup │ │ │ └── index.js │ │ │ ├── RenderObjectAsTable │ │ │ └── index.js │ │ │ ├── RichToolTip │ │ │ └── index.tsx │ │ │ ├── ScrollableList │ │ │ ├── ScrollableList.scss │ │ │ └── index.js │ │ │ ├── SearchTextBox │ │ │ ├── SearchTextBox.scss │ │ │ └── index.js │ │ │ ├── SelectWithOptions │ │ │ └── index.js │ │ │ ├── SelectionBox │ │ │ ├── SelectionBox.scss │ │ │ ├── SelectionBoxWrapper.tsx │ │ │ └── index.tsx │ │ │ ├── SortableStickyGrid │ │ │ ├── SortableStickyGrid.scss │ │ │ ├── SortableStickyGrid.stories.tsx │ │ │ └── index.js │ │ │ ├── SortableStickyTable │ │ │ └── index.js │ │ │ ├── SortableTable │ │ │ ├── SortableTable.scss │ │ │ └── index.js │ │ │ ├── StandardModal │ │ │ └── index.tsx │ │ │ ├── Status │ │ │ ├── StatusIndicator.tsx │ │ │ └── index.tsx │ │ │ ├── StatusAlertMessage │ │ │ ├── StatusAlertMessageStore.js │ │ │ └── index.js │ │ │ ├── StyledSelectTag │ │ │ ├── StyledSelectTag.scss │ │ │ └── index.js │ │ │ ├── Table │ │ │ ├── ColumnGroup.tsx │ │ │ ├── Table.stories.tsx │ │ │ ├── TableBody.tsx │ │ │ ├── TableCell.tsx │ │ │ ├── TableColumnGroup.tsx │ │ │ ├── TableHeader.tsx │ │ │ ├── TableRow.tsx │ │ │ └── index.tsx │ │ │ ├── Tabs │ │ │ ├── TabGroup │ │ │ │ ├── TabGroup.scss │ │ │ │ └── index.js │ │ │ ├── TabHead │ │ │ │ ├── TabHead.scss │ │ │ │ └── index.js │ │ │ ├── TabHeaders │ │ │ │ ├── TabHeaders.scss │ │ │ │ └── index.js │ │ │ ├── Tabs.scss │ │ │ └── index.js │ │ │ ├── Tags │ │ │ ├── Tag │ │ │ │ ├── Tag.scss │ │ │ │ └── index.js │ │ │ ├── Tags.scss │ │ │ └── index.js │ │ │ ├── TimeRangePicker │ │ │ ├── ExpandableTimeRange.js │ │ │ ├── TimeRangePicker.scss │ │ │ └── index.js │ │ │ ├── TimeToLive │ │ │ ├── TimeToLive.scss │ │ │ └── index.js │ │ │ ├── Timer │ │ │ ├── Timer.scss │ │ │ └── index.js │ │ │ ├── ToggleSwitch │ │ │ ├── ToggleSwitch.scss │ │ │ └── index.js │ │ │ ├── ViewAllLabel │ │ │ ├── ViewAllLabel.scss │ │ │ └── index.js │ │ │ ├── ViewSwitch │ │ │ ├── ViewSwitch.scss │ │ │ └── index.js │ │ │ ├── VirtualScroll │ │ │ ├── demo.tsx │ │ │ ├── index.tsx │ │ │ └── useScroll.tsx │ │ │ ├── WarningContainer │ │ │ ├── WarningContainer.scss │ │ │ └── index.js │ │ │ ├── Wizard │ │ │ ├── Wizard.scss │ │ │ ├── WizardStepContent │ │ │ │ ├── WizardStepContent.scss │ │ │ │ └── index.js │ │ │ ├── WizardStepHeader │ │ │ │ ├── WizardStepHeader.scss │ │ │ │ └── index.js │ │ │ └── index.js │ │ │ └── WizardModal │ │ │ ├── WizardModal.scss │ │ │ ├── WizardModalVariables.scss │ │ │ └── index.js │ ├── globals.ts │ ├── main.js │ ├── services │ │ ├── AlertStatus.ts │ │ ├── AvailablePluginsStore │ │ │ └── index.js │ │ ├── CDAPComponentsVersions.js │ │ ├── Clipboard │ │ │ └── index.ts │ │ ├── DataFormatter │ │ │ ├── __tests__ │ │ │ │ └── DataFormatter.test.ts │ │ │ └── index.ts │ │ ├── GuidedTour │ │ │ ├── GuidedTour.scss │ │ │ └── index.ts │ │ ├── HydratorPluginConfigFactory.js │ │ ├── MetricsQueryHelper.js │ │ ├── NamespaceStore │ │ │ ├── NamespaceActions.js │ │ │ └── index.ts │ │ ├── PageTitleStore │ │ │ ├── PageTitleActions.ts │ │ │ └── PageTitleStore.ts │ │ ├── PipelineErrorFactory.js │ │ ├── PipelineMetricsStore │ │ │ ├── ActionCreator.js │ │ │ └── index.js │ │ ├── PipelineUtils │ │ │ └── index.ts │ │ ├── PluginUtilities │ │ │ ├── __tests__ │ │ │ │ └── pluginUtilities.test.ts │ │ │ └── index.ts │ │ ├── PlusButtonStore.js │ │ ├── PreviewStatus.ts │ │ ├── ServiceEnablerUtilities.js │ │ ├── SessionTokenStore.ts │ │ ├── StatusFactory.js │ │ ├── StatusMapper.js │ │ ├── SystemDelayStore │ │ │ ├── SystemDelayActions.ts │ │ │ └── index.ts │ │ ├── SystemServicesStore.js │ │ ├── ThemeHelper.ts │ │ ├── UiUtils │ │ │ └── UrlGenerator.ts │ │ ├── VersionRange │ │ │ ├── Version.js │ │ │ ├── VersionUtilities.js │ │ │ ├── __tests__ │ │ │ │ ├── version.test.js │ │ │ │ ├── versionRange.test.js │ │ │ │ └── versionUtilities.test.js │ │ │ └── index.js │ │ ├── VersionStore │ │ │ ├── VersionActions.js │ │ │ └── index.js │ │ ├── WindowManager │ │ │ ├── Heartbeat-web-worker.js │ │ │ └── index.ts │ │ ├── WizardConfigs │ │ │ ├── AddNamespaceWizardConfig.js │ │ │ ├── ApplicationUploadWizardConfig.js │ │ │ ├── ArtifactUploadWizardConfig.js │ │ │ ├── DirectiveArtifactUploadWizardConfig.js │ │ │ ├── InformationalWizardConfig.js │ │ │ ├── LibraryUploadWizardConfig.js │ │ │ ├── MarketArtifactUploadWizardConfig.js │ │ │ ├── MarketPluginArtifactUploadWizardConfig.js │ │ │ ├── MicroserviceUploadWizardConfig.js │ │ │ ├── OneStepDeployAppConfig.js │ │ │ ├── OneStepDeployPluginConfig.js │ │ │ ├── PluginArtifactUploadWizardConfig.js │ │ │ ├── PublishPipelineWizardConfig.js │ │ │ └── UploadDataWizardConfig.js │ │ ├── WizardStores │ │ │ ├── AddNamespace │ │ │ │ ├── ActionCreator.js │ │ │ │ ├── AddNamespaceActions.js │ │ │ │ └── AddNamespaceStore.js │ │ │ ├── ApplicationUpload │ │ │ │ ├── ActionCreator.js │ │ │ │ ├── ApplicationUploadActions.js │ │ │ │ └── ApplicationUploadStore.js │ │ │ ├── ArtifactUpload │ │ │ │ ├── ActionCreator.js │ │ │ │ ├── ArtifactUploadActions.js │ │ │ │ └── ArtifactUploadStore.js │ │ │ ├── Informational │ │ │ │ ├── InformationalActions.js │ │ │ │ └── InformationalStore.js │ │ │ ├── MicroserviceUpload │ │ │ │ ├── ActionCreator.js │ │ │ │ ├── MicroserviceQueueActions.js │ │ │ │ ├── MicroserviceQueueStore.js │ │ │ │ ├── MicroserviceUploadActions.js │ │ │ │ └── MicroserviceUploadStore.js │ │ │ ├── OneStepDeploy │ │ │ │ ├── OneStepDeployActions.js │ │ │ │ └── OneStepDeployStore.js │ │ │ ├── PluginArtifactUpload │ │ │ │ ├── ActionCreator.js │ │ │ │ ├── PluginArtifactUploadActions.js │ │ │ │ └── PluginArtifactUploadStore.js │ │ │ └── PublishPipeline │ │ │ │ ├── ActionCreator.js │ │ │ │ ├── PublishPipelineActions.js │ │ │ │ └── PublishPipelineStore.js │ │ ├── __tests__ │ │ │ └── helpers.test.js │ │ ├── cdapavscwrapper │ │ │ ├── AbstractLogicalType.ts │ │ │ ├── DateLogicalType.ts │ │ │ ├── DateTimeLogicalType.ts │ │ │ ├── DecimalLogicalType.ts │ │ │ ├── LogicalTypes.ts │ │ │ ├── TimeMicrosLogicalType.ts │ │ │ ├── TimestampMicrosLogicalType.ts │ │ │ └── index.ts │ │ ├── datasource │ │ │ ├── DataSourceConfigurer.ts │ │ │ ├── IDataSource.ts │ │ │ ├── index.ts │ │ │ └── requestTypes.ts │ │ ├── download-file.js │ │ ├── entity-icon-map │ │ │ └── index.js │ │ ├── entity-type-api-converter │ │ │ └── index.js │ │ ├── fast-action-message-helper.js │ │ ├── filters │ │ │ ├── multiKeySearch.ts │ │ │ └── removeCamelCase.ts │ │ ├── get-last-selected-namespace.js │ │ ├── global-constants.js │ │ ├── global-events.js │ │ ├── helpers.js │ │ ├── history.ts │ │ ├── market-action-icon-map.js │ │ ├── market-category-icon-map.js │ │ ├── metadata-parser │ │ │ ├── EntityType.js │ │ │ ├── __tests__ │ │ │ │ └── metadata-parser.test.js │ │ │ └── index.js │ │ ├── program-api-converter │ │ │ └── index.js │ │ ├── react │ │ │ ├── customHooks │ │ │ │ ├── useDebounce.test.ts │ │ │ │ ├── useDebounce.ts │ │ │ │ ├── useFeatureFlag.ts │ │ │ │ └── useOnUnmount.ts │ │ │ └── providers │ │ │ │ └── featureFlagProvider.tsx │ │ ├── redirect-to-login.js │ │ ├── redux-helpers │ │ │ └── index.ts │ │ ├── resource-helper │ │ │ └── index.js │ │ └── upload-file.js │ ├── styles │ │ ├── bootstrap_4_patch.scss │ │ ├── colors.scss │ │ ├── common.scss │ │ ├── font-awesome.config.js │ │ ├── font-awesome.config.scss │ │ ├── fonts.scss │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ ├── symbol-defs-full.svg │ │ │ ├── symbol-defs.svg │ │ │ └── symbol-defs_new.svg │ │ ├── img │ │ │ ├── 404.png │ │ │ ├── CDAP_darkgray.png │ │ │ ├── CaskMarket_inverse.png │ │ │ ├── DataPrep_preview1.png │ │ │ ├── DataPrep_preview2.png │ │ │ ├── GCDataProc.png │ │ │ ├── MMDS_preview1.png │ │ │ ├── MMDS_preview2.png │ │ │ ├── Reports_preview1.png │ │ │ ├── Reports_preview2.png │ │ │ ├── RulesEngine_preview_1.png │ │ │ ├── RulesEngine_preview_2.png │ │ │ ├── administration.svg │ │ │ ├── cdap_logo.png │ │ │ ├── cdaplogo_white.svg │ │ │ ├── cleanse_data.svg │ │ │ ├── company_logo-20-all.png │ │ │ ├── data_pipelines.svg │ │ │ ├── db-sprite.png │ │ │ ├── delay-legend-icon.png │ │ │ ├── divider.png │ │ │ ├── favicon.png │ │ │ ├── heartbeat.png │ │ │ ├── ingest-tile.svg │ │ │ ├── metadata.svg │ │ │ ├── nux │ │ │ │ ├── Control_Center_NUX.png │ │ │ │ ├── Dataprep_NUX.png │ │ │ │ ├── Hub_NUX.png │ │ │ │ ├── Metadata_NUX.png │ │ │ │ ├── Pipeline_NUX.png │ │ │ │ ├── Pipeline_studio_NUX.png │ │ │ │ └── welcome-header-background.png │ │ │ ├── operations.svg │ │ │ ├── plus_ico.svg │ │ │ └── replicator.svg │ │ ├── lib-styles.scss │ │ ├── main.scss │ │ ├── mixins.scss │ │ ├── modals.scss │ │ └── variables.scss │ ├── testids │ │ ├── TestidContext.ts │ │ ├── TestidsProvider.tsx │ │ ├── testids.yaml │ │ └── testids.yaml.d.ts │ ├── text │ │ └── text-en.yaml │ └── utils │ │ └── time.ts ├── common │ └── cask-shared-components.js ├── directives │ ├── app-level-loading-icon │ │ ├── loading.html │ │ ├── loading.js │ │ └── loading.less │ ├── cask-angular-confirmable │ │ ├── confirm-modal.html │ │ └── confirmable.js │ ├── cask-angular-dropdown-text-combo │ │ ├── dropdown-text-combo.html │ │ ├── dropdown-text-combo.js │ │ └── dropdown-text-combo.less │ ├── cask-angular-focus │ │ ├── focus-service.js │ │ └── focus.js │ ├── cask-angular-json-edit │ │ ├── jsonedit.js │ │ └── jsonedit.less │ ├── cask-angular-password │ │ ├── click2show.html │ │ └── password.js │ ├── cask-angular-progress │ │ ├── bar.html │ │ └── progress.js │ ├── cask-angular-sortable │ │ ├── sortable.js │ │ └── sortable.less │ ├── complex-schema │ │ ├── array-schema │ │ │ ├── array-schema.html │ │ │ └── array-schema.js │ │ ├── complex-schema-helpers.js │ │ ├── complex-schema.html │ │ ├── complex-schema.js │ │ ├── complex-schema.less │ │ ├── embedded-schema-selector │ │ │ ├── embedded-schema-selector.html │ │ │ └── embedded-schema-selector.js │ │ ├── enum-schema │ │ │ ├── enum-schema.html │ │ │ └── enum-schema.js │ │ ├── map-schema │ │ │ ├── map-schema.html │ │ │ └── map-schema.js │ │ └── union-schema │ │ │ ├── union-schema.html │ │ │ └── union-schema.js │ ├── dag-minimap │ │ ├── dag-minimap-ctrl.js │ │ ├── dag-minimap-utilities.js │ │ ├── dag-minimap.html │ │ ├── dag-minimap.js │ │ └── dag-minimap.less │ ├── dag-plus │ │ ├── color-constants.less │ │ ├── my-dag-ctrl.js │ │ ├── my-dag-factory.js │ │ ├── my-dag.html │ │ ├── my-dag.js │ │ ├── my-dag.less │ │ └── services │ │ │ ├── actions │ │ │ └── nodes-actions.js │ │ │ ├── dispatchers │ │ │ └── nodes-dispatcher.js │ │ │ └── stores │ │ │ └── nodes-store.js │ ├── datetime-picker │ │ ├── datetime.html │ │ ├── datetime.js │ │ └── datetime.less │ ├── datetime-range │ │ ├── datetime-range.html │ │ ├── datetime-range.js │ │ └── datetime-range.less │ ├── escape-close │ │ └── escape-close.js │ ├── fileselect │ │ ├── fileselect.html │ │ ├── fileselect.js │ │ └── fileselect.less │ ├── focus-watch │ │ └── focus-watch.js │ ├── group-side-panel │ │ ├── group-side-panel-ctrl.js │ │ ├── group-side-panel.html │ │ ├── group-side-panel.js │ │ └── group-side-panel.less │ ├── macro-widget-toggle │ │ ├── macro-widget-toggle.html │ │ ├── macro-widget-toggle.js │ │ └── macro-widget-toggle.less │ ├── modified-tooltip │ │ ├── popover.html │ │ ├── tooltip.html │ │ └── tooltip.js │ ├── my-global-navbar │ │ ├── my-global-navbar.html │ │ └── my-global-navbar.js │ ├── my-link-button │ │ ├── my-link-button.html │ │ ├── my-link-button.js │ │ └── my-link-button.less │ ├── my-pipeline-configurations │ │ ├── my-batch-pipeline-config │ │ │ ├── my-batch-pipeline-config-ctrl.js │ │ │ ├── my-batch-pipeline-config.html │ │ │ └── my-batch-pipeline-config.js │ │ ├── my-pipeline-configurations-factory.js │ │ ├── my-pipeline-configurations.js │ │ ├── my-pipeline-configurations.less │ │ ├── my-realtime-pipeline-config │ │ │ ├── my-realtime-pipeline-config-ctrl.js │ │ │ ├── my-realtime-pipeline-config.html │ │ │ └── my-realtime-pipeline-config.js │ │ └── my-sql-pipeline-config │ │ │ ├── my-sql-pipeline-config-ctrl.js │ │ │ ├── my-sql-pipeline-config.html │ │ │ └── my-sql-pipeline-config.js │ ├── my-pipeline-resource │ │ ├── my-pipeline-client-resource-ctrl.js │ │ ├── my-pipeline-driver-resource-ctrl.js │ │ ├── my-pipeline-executor-resource-ctrl.js │ │ ├── my-pipeline-resource-factory.js │ │ ├── my-pipeline-resource.html │ │ └── my-pipeline-resource.js │ ├── my-pipeline-runtime-args │ │ ├── my-pipeline-runtime-args.html │ │ ├── my-pipeline-runtime-args.js │ │ └── my-pipeline-runtime-args.less │ ├── my-pipeline-scheduler │ │ ├── my-pipeline-scheduler.html │ │ └── my-pipeline-scheduler.js │ ├── my-pipeline-summary │ │ ├── my-pipeline-summary-ctrl.js │ │ ├── my-pipeline-summary.html │ │ ├── my-pipeline-summary.js │ │ └── my-pipeline-summary.less │ ├── my-popover │ │ ├── my-popover.js │ │ └── my-popover.less │ ├── my-post-run-action-wizard │ │ ├── my-post-run-action-wizard-ctrl.js │ │ ├── my-post-run-action-wizard-modal.html │ │ ├── my-post-run-action-wizard-modal.less │ │ ├── my-post-run-action-wizard.html │ │ ├── my-post-run-action-wizard.js │ │ ├── my-post-run-action-wizard.less │ │ ├── wizard-configure-confirm-step │ │ │ ├── wizard-configure-confirm-step-ctrl.js │ │ │ ├── wizard-configure-confirm-step.html │ │ │ ├── wizard-configure-confirm-step.js │ │ │ └── wizard-configure-confirm-step.less │ │ └── wizard-select-action-step │ │ │ ├── wizard-select-action-step-ctrl.js │ │ │ ├── wizard-select-action-step.html │ │ │ ├── wizard-select-action-step.js │ │ │ └── wizard-select-action-step.less │ ├── my-post-run-actions │ │ ├── my-post-run-actions.html │ │ ├── my-post-run-actions.js │ │ └── my-post-run-actions.less │ ├── node-metrics │ │ ├── node-metrics.html │ │ ├── node-metrics.js │ │ └── node-metrics.less │ ├── plugin-functions │ │ ├── functions │ │ │ ├── get-property-value │ │ │ │ ├── get-property-value-modal.html │ │ │ │ ├── get-property-value.html │ │ │ │ ├── get-property-value.js │ │ │ │ └── get-property-value.less │ │ │ ├── get-schema │ │ │ │ ├── get-schema-modal.html │ │ │ │ ├── get-schema.html │ │ │ │ ├── get-schema.js │ │ │ │ └── get-schema.less │ │ │ └── output-schema │ │ │ │ ├── output-schema-modal.html │ │ │ │ ├── output-schema.html │ │ │ │ ├── output-schema.js │ │ │ │ └── output-schema.less │ │ ├── plugin-functions-factory.js │ │ └── plugin-functions.js │ ├── plugin-templates │ │ ├── plugin-templates-ctrl.js │ │ ├── plugin-templates.html │ │ ├── plugin-templates.js │ │ ├── plugin-templates.less │ │ └── services │ │ │ ├── plugin-template-store.js │ │ │ ├── plugin-templates-action.js │ │ │ └── plugin-templates-dispatcher.js │ ├── react-components │ │ └── index.js │ ├── splitter-popover │ │ ├── splitter-popover.html │ │ ├── splitter-popover.js │ │ └── splitter-popover.less │ ├── timestamp-picker │ │ ├── datetime.html │ │ ├── timestamp.js │ │ └── timestamp.less │ ├── validators │ │ ├── validator-ctrl.js │ │ ├── validator-factory.js │ │ ├── validators.html │ │ ├── validators.js │ │ └── validators.less │ └── widget-container │ │ ├── widget-complex-schema-editor │ │ ├── widget-complex-schema-editor.html │ │ ├── widget-complex-schema-editor.js │ │ └── widget-complex-schema-editor.less │ │ ├── widget-container.js │ │ ├── widget-container.less │ │ ├── widget-ds-multiplevalues │ │ ├── widget-ds-multiplevalues.html │ │ ├── widget-ds-multiplevalues.js │ │ └── widget-ds-multiplevalues.less │ │ ├── widget-dsv │ │ ├── widget-dsv.html │ │ ├── widget-dsv.js │ │ └── widget-dsv.less │ │ ├── widget-factory.js │ │ ├── widget-function-dropdown-with-alias │ │ ├── widget-function-dropdown-with-alias.html │ │ ├── widget-function-dropdown-with-alias.js │ │ └── widget-function-dropdown-with-alias.less │ │ ├── widget-input-field-selector │ │ ├── widget-input-field-selector.html │ │ └── widget-input-field-selector.js │ │ ├── widget-input-schema │ │ ├── widget-input-schema-ctrl.js │ │ ├── widget-input-schema.html │ │ ├── widget-input-schema.js │ │ └── widget-input-schema.less │ │ ├── widget-join-types │ │ ├── widget-join-types.html │ │ ├── widget-join-types.js │ │ └── widget-join-types.less │ │ ├── widget-js-editor │ │ ├── widget-js-editor.js │ │ └── widget-js-editor.less │ │ ├── widget-json-editor │ │ ├── widget-json-editor.html │ │ ├── widget-json-editor.js │ │ └── widget-json-editor.less │ │ ├── widget-keyvalue-encoded │ │ ├── widget-keyvalue-encoded.html │ │ ├── widget-keyvalue-encoded.js │ │ └── widget-keyvalue-encoded.less │ │ ├── widget-keyvalue │ │ ├── widget-keyvalue.html │ │ ├── widget-keyvalue.js │ │ └── widget-keyvalue.less │ │ ├── widget-number │ │ ├── widget-number.html │ │ ├── widget-number.js │ │ └── widget-number.less │ │ ├── widget-output-schema │ │ ├── widget-output-schema-ctrl.js │ │ ├── widget-output-schema.html │ │ └── widget-output-schema.js │ │ ├── widget-password │ │ ├── widget-password.html │ │ ├── widget-password.js │ │ └── widget-password.less │ │ ├── widget-radio-group │ │ ├── widget-radio-group.html │ │ ├── widget-radio-group.js │ │ └── widget-radio-group.less │ │ ├── widget-rulesengine-editor │ │ ├── rules-engine-modal-ctrl.js │ │ ├── rules-engine-modal.html │ │ ├── rules-engine-modal.less │ │ ├── widget-rulesengine-editor.html │ │ └── widget-rulesengine-editor.js │ │ ├── widget-schedule │ │ ├── widget-schedule.html │ │ └── widget-schedule.js │ │ ├── widget-schema-editor │ │ ├── widget-schema-editor.html │ │ ├── widget-schema-editor.js │ │ └── widget-schema-editor.less │ │ ├── widget-sql-conditions │ │ ├── widget-sql-conditions.html │ │ ├── widget-sql-conditions.js │ │ └── widget-sql-conditions.less │ │ ├── widget-sql-select-fields │ │ ├── widget-sql-select-fields.html │ │ ├── widget-sql-select-fields.js │ │ └── widget-sql-select-fields.less │ │ ├── widget-textarea-validate │ │ ├── widget-textarea-validate.html │ │ ├── widget-textarea-validate.js │ │ └── widget-textarea-validate.less │ │ ├── widget-toggle-switch │ │ ├── widget-toggle-switch.html │ │ ├── widget-toggle-switch.js │ │ └── widget-toggle-switch.less │ │ └── widget-wrangler-directives │ │ ├── widget-wrangler-directive.less │ │ ├── widget-wrangler-directives.html │ │ ├── widget-wrangler-directives.js │ │ ├── wrangler-modal-ctrl.js │ │ └── wrangler-modal.less ├── filters │ ├── bytes.js │ ├── cask-angular-capitalize │ │ └── capitalize.js │ ├── comma-separated-number.js │ ├── ellipsis.js │ ├── multi-key-search.js │ ├── number.js │ ├── paginate.js │ ├── remove-camel-case.js │ └── title.js ├── hydrator │ ├── adapters.less │ ├── bottompanel.less │ ├── controllers │ │ ├── create │ │ │ ├── canvas-ctrl.js │ │ │ ├── create-studio-ctrl.js │ │ │ ├── leftpanel-ctrl.js │ │ │ ├── partials │ │ │ │ ├── console-tab-ctrl.js │ │ │ │ ├── nodeconfig-ctrl.js │ │ │ │ ├── pipelineupgrade-modal-ctrl.js │ │ │ │ ├── reference-tab-ctrl.js │ │ │ │ └── settings-ctrl.js │ │ │ ├── popovers │ │ │ │ ├── plugin-templates-create-edit-ctrl.js │ │ │ │ ├── plugin-templates-delete-ctrl.js │ │ │ │ └── pre-configured-ctrl.js │ │ │ └── toppanel-ctrl.js │ │ ├── detail-ctrl.js │ │ └── detail │ │ │ └── canvas-ctrl.js │ ├── home-ctrl.js │ ├── hydrator-modal.less │ ├── hydrator.html │ ├── leftpanel.less │ ├── main.js │ ├── module.js │ ├── routes.js │ ├── services │ │ ├── canvas-factory.js │ │ ├── create │ │ │ ├── actions │ │ │ │ ├── available-plugins-action-creator.js │ │ │ │ ├── config-actions.js │ │ │ │ ├── console-actions.js │ │ │ │ ├── leftpanel-action-creator.js │ │ │ │ └── preview-action-creator.js │ │ │ ├── dispatchers │ │ │ │ ├── config-dispatcher.js │ │ │ │ ├── console-dispatcher.js │ │ │ │ └── plugins-dispatcher.js │ │ │ └── stores │ │ │ │ ├── available-plugins-store.js │ │ │ │ ├── config-store.js │ │ │ │ ├── console-store.js │ │ │ │ ├── left-panel-store.js │ │ │ │ └── preview-store.js │ │ ├── hydrator-node-service.js │ │ ├── hydrator-plus-ordering-factory.js │ │ ├── hydrator-service.js │ │ ├── hydrator-upgrade-service.js │ │ ├── non-store-pipeline-error-factory.js │ │ ├── plugin-config-factory.js │ │ ├── query-helper.js │ │ └── status-mapper.js │ ├── templates │ │ ├── create │ │ │ ├── Wrangler │ │ │ │ └── wrangler-modal.html │ │ │ ├── canvas.html │ │ │ ├── leftpanel.html │ │ │ ├── pipeline-upgrade-modal.html │ │ │ ├── popovers │ │ │ │ ├── canvas-overwrite-confirmation.html │ │ │ │ ├── change-dataset-confirmation.html │ │ │ │ ├── error-classification.html │ │ │ │ ├── leftpanel-plugin-popover.html │ │ │ │ ├── plugin-templates.html │ │ │ │ ├── pre-configured-templates.html │ │ │ │ ├── run-preview-action-confirmation-modal.html │ │ │ │ └── viewconfig.html │ │ │ ├── reactleftpanel.html │ │ │ ├── reacttoppanel.html │ │ │ ├── studio.html │ │ │ └── toppanel.html │ │ ├── detail.html │ │ ├── detail │ │ │ ├── bottom-panel.html │ │ │ ├── canvas.html │ │ │ └── top-panel.html │ │ ├── partial │ │ │ ├── console.html │ │ │ ├── error-template.html │ │ │ ├── metrics-popover.html │ │ │ ├── node-config-modal │ │ │ │ ├── configuration-tab.html │ │ │ │ ├── metrics-tab.html │ │ │ │ ├── node-config │ │ │ │ │ ├── plugin-edit-config-form.html │ │ │ │ │ ├── plugin-edit-input-schema.html │ │ │ │ │ ├── plugin-edit-output-schema.html │ │ │ │ │ ├── plugin-edit-properties-template.html │ │ │ │ │ └── plugin-edit-validator-transform.html │ │ │ │ ├── popover-template.html │ │ │ │ ├── popover.html │ │ │ │ ├── preview-tab.html │ │ │ │ └── reference-tab.html │ │ │ ├── plugin-delete-confirmation.html │ │ │ └── splitter-popover.html │ │ └── preconfigured-list.html │ └── toppanel.less ├── lib │ └── global-lib.js ├── login │ ├── components │ │ ├── Card │ │ │ ├── Card.scss │ │ │ └── index.js │ │ └── CardActionFeedback │ │ │ ├── CardActionFeedback.scss │ │ │ └── index.js │ ├── login.html │ ├── login.js │ ├── login.scss │ ├── styles │ │ ├── fonts.scss │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── img │ │ │ ├── CDAP_Logotype.svg │ │ │ └── cask_footer_logo.svg │ │ ├── lib-styles.scss │ │ └── variables.scss │ ├── text │ │ └── text-en.yaml │ └── utils.js ├── polyfill.js ├── services │ ├── CDAP_UI_CONFIG.js │ ├── MY_CONFIG.js │ ├── StatusMapper.js │ ├── alert-on-valium │ │ └── alert-on-valium.js │ ├── alert.js │ ├── app-level-loading-service.js │ ├── app-uploader.js │ ├── apps │ │ └── my-apps-api.js │ ├── auth.js │ ├── cask-angular-dispatcher │ │ └── dispatcher.js │ ├── cask-angular-eventpipe │ │ └── eventpipe.js │ ├── cask-angular-observable-promise │ │ └── observable-promise.js │ ├── cask-angular-socket-datasource │ │ ├── datasource.js │ │ └── socket.js │ ├── cask-angular-theme │ │ └── theme.js │ ├── cask-angular-window-manager │ │ └── wm.js │ ├── chart-helpers.js │ ├── constants.js │ ├── dashboard │ │ └── dashboardhelper.js │ ├── data │ │ ├── cdap-url.js │ │ ├── my-cdap-datasource.js │ │ └── my-polling-service.js │ ├── file-uploader.js │ ├── helpers.js │ ├── hydrator │ │ ├── my-hydrator-factory.js │ │ ├── my-hydrator-validators.js │ │ ├── my-pipeline-api.js │ │ └── my-pipeline-templatep-api.js │ ├── logsApi │ │ └── my-preview-logs-api.js │ ├── my-orderings.js │ ├── namespace.js │ ├── pipeline-export-modal │ │ ├── pipeline-export-modal-template.html │ │ └── pipeline-export-modal.js │ ├── preference │ │ └── my-preference-api.js │ ├── programs │ │ └── program-helper.js │ ├── query-helper.js │ ├── settings.js │ └── storage.js ├── styles │ ├── bootstrap.less │ ├── common.less │ ├── css │ │ └── fonts.less │ ├── fonts.less │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ ├── img │ │ ├── CDAP_promo_ad.jpg │ │ ├── CaskTracker_logo.png │ │ ├── Hydrator_logo.png │ │ ├── cask_footer_logo.svg │ │ ├── cdap_sprite.png │ │ ├── chevron_front.png │ │ ├── divider.png │ │ ├── favicon.png │ │ ├── gray_chevron_back.png │ │ ├── gray_chevron_body.png │ │ ├── gray_chevron_front.png │ │ ├── grid.png │ │ ├── hydrator_bg_pattern.png │ │ ├── hydrator_header_bg.jpg │ │ ├── scrollPin.svg │ │ ├── sliderHandle.svg │ │ └── tracker_logo.png │ ├── modals.less │ ├── themes │ │ ├── cdap.less │ │ └── cdap │ │ │ ├── buttons.less │ │ │ ├── header.less │ │ │ ├── mixins.less │ │ │ ├── tabs.less │ │ │ └── theme.less │ └── variables.less └── ui-utils │ └── url-generator.js ├── bin └── svc-ui ├── cdap-ui-upgrade ├── .babelrc ├── dist │ └── upgrade.js ├── index.js ├── package.json └── webpack.config.js ├── checkstyle.xml ├── cloudbuild.yaml ├── cloudbuild ├── builder │ └── Dockerfile └── cloudbuildrun.sh ├── cypress.json ├── cypress ├── fixtures │ ├── HTTP-batchsource.json │ ├── airports.csv │ ├── draft_for_upgrade.json │ ├── example-transform-1.1.0-SNAPSHOT.jar │ ├── example-transform-1.1.0-SNAPSHOT.json │ ├── fll_airport_pipeline2.json │ ├── fll_wrangler-test-pipeline.json │ ├── invalid-plugin.2json │ ├── logs_generator-cdap-data-pipeline.json │ ├── missing-artifact-pipeline.json │ ├── null_splitter_pipeline-cdap-data-pipeline.json │ ├── old_userstore_draft.json │ ├── pipeline1.json │ ├── pipeline_old.json │ ├── pipeline_with_macros.json │ ├── plugin-schema │ │ ├── error-schema.json │ │ └── simple-schema.json │ └── purchase_bad.csv ├── helpers.ts ├── integration │ ├── admin.spec.ts │ ├── computeprofile.spec.ts │ ├── controlcenter.spec.ts │ ├── fieldlevellineage.v2.spec.ts │ ├── httpexecutor.requesthistorytab.spec.ts │ ├── lab.spec.ts │ ├── login.spec.ts │ ├── logviewer.spec.ts │ ├── navbar.spec.ts │ ├── nuxtour.spec.ts │ ├── page.level.errors.spec.ts │ ├── pipeline.canvas.actions.spec.ts │ ├── pipeline.complexschema.spec.ts │ ├── pipeline.contextmenu.spec.ts │ ├── pipeline.draft.spec.ts │ ├── pipeline.hierarchy.spec.ts │ ├── pipeline.joiner.spec.ts │ ├── pipeline.multiselect.spec.ts │ ├── pipeline.plugin.missing.spec.ts │ ├── pipeline.plugin.multipleendpoints.spec.ts │ ├── pipeline.postrunactions.spec.ts │ ├── pipeline.runtimeargs.spec.ts │ ├── pipeline.spec.ts │ ├── pipeline.studio.config.spec.ts │ ├── pipeline.studio.scheduling.spec.ts │ ├── pipeline.studio.spec.ts │ ├── pipeline.triggers.spec.ts │ ├── pipeline.upgrade.spec.ts │ ├── plugin.schemaeditor.spec.ts │ ├── plugin.upload.spec.ts │ ├── pluginjsoncreator.spec.ts │ ├── plugins.validation.spec.ts │ ├── securekeymanager.spec.ts │ ├── systemdelay.spec.ts │ ├── widget.codeeditor.spec.ts │ ├── widgets.CSVWidget.spec.ts │ ├── widgets.KeyValueDropdownWidget.spec.ts │ ├── widgets.KeyValueWidget.spec.ts │ ├── wrangler.bigquery.spec.ts │ ├── wrangler.gcs.spec.ts │ └── wrangler.spanner.spec.ts ├── plugins │ └── index.js ├── pre-startup.js ├── snapshots │ └── base │ │ ├── pipeline.canvas.actions.spec.ts │ │ └── pipeline_with_condition-base.png │ │ ├── pipeline.plugin.multipleendpoints.spec.ts │ │ ├── Pipelines with plugins having more than one endpoints -- Should work with null splitter plugin (failed).png │ │ ├── Pipelines with plugins having more than one endpoints -- Should work with union splitter and condition plugins (failed) (1).png │ │ ├── Pipelines with plugins having more than one endpoints -- Should work with union splitter and condition plugins (failed) (2).png │ │ ├── Pipelines with plugins having more than one endpoints -- Should work with union splitter and condition plugins (failed) (3).png │ │ └── Pipelines with plugins having more than one endpoints -- Should work with union splitter and condition plugins (failed).png │ │ └── plugin.schemaeditor.spec.ts │ │ └── error_highlighted_output_schema-base.png ├── support │ ├── commands.ts │ ├── constants.ts │ └── index.js ├── tsconfig.json └── typings │ └── index.d.ts ├── gitpod ├── bamboo_plan_info.json ├── package.json ├── setup.js ├── start.js ├── unzip.js └── yarn.lock ├── graphql ├── Query │ ├── pipelinesResolver.js │ └── statusResolver.js ├── fragments │ ├── README.rst │ └── fragmentTypes.json ├── graphql.js ├── helpers │ ├── BatchEndpoints │ │ ├── nextRuntime.js │ │ ├── programRuns.js │ │ └── totalRuns.js │ └── createLoaders.js ├── resolvers-common.js ├── resolvers.js ├── schema │ ├── artifactSchema.graphql │ ├── changeDetailSchema.graphql │ ├── pipelineRecordSchema.graphql │ └── rootSchema.graphql ├── schemaQuery.js └── types │ └── PipelineRecord │ ├── common.js │ ├── nextRuntimeResolver.js │ ├── pipelineRunsResolver.js │ ├── resolvers.js │ └── totalRunsResolver.js ├── jest.config.js ├── jest ├── custom-queries.js ├── jest.setup.js └── test-utils.ts ├── package.json ├── packaged └── public │ └── dll │ ├── cdap-vendor-development-manifest.json │ ├── cdap-vendor-manifest.json │ ├── dll.cdap.vendor.development.js │ ├── dll.cdap.vendor.js │ ├── dll.shared.vendor.development.js │ ├── dll.shared.vendor.js │ ├── shared-vendor-development-manifest.json │ └── shared-vendor-manifest.json ├── pom.xml ├── postcss.config.js ├── sandboxjs ├── features.json ├── fetch_sandbox.js ├── package.json ├── sandbox_starter.py ├── sandbox_version.json ├── setup_cloudbuild.js ├── start.js ├── unzip.js └── yarn.lock ├── selenium ├── integration │ ├── admin.spec.ts │ ├── pipeline.hierarchy.spec.ts │ ├── starter.spec.ts │ └── tethering │ │ ├── manage.requests.cdf.spec.ts │ │ ├── manage.requests.onprem.spec.ts │ │ └── tethering.registration.spec.ts ├── support │ ├── commands.ts │ ├── constants.ts │ └── utils.ts ├── tsconfig.json └── typings │ └── index.d.ts ├── server.js ├── server ├── aggregator.js ├── cdap-config.js ├── config │ ├── cdap-ui-config.json │ ├── config-reader.js │ ├── development │ │ ├── cdap.json │ │ ├── security.json │ │ └── session_secret.key │ ├── hostname.js │ ├── log4js.json │ ├── parser.js │ ├── router-check.js │ ├── themes │ │ ├── default.json │ │ └── light.json │ └── ui-settings.json ├── express.js ├── middleware-404.js ├── token.mjs ├── token_test.mjs ├── uiThemeWrapper.js └── url-helper.js ├── src ├── e2e-test │ ├── features │ │ ├── admin.feature │ │ ├── computeprofile.feature │ │ ├── controlcenter.feature │ │ ├── logviewer.feature │ │ ├── namespaces.feature │ │ ├── navbar.feature │ │ ├── nuxtour.feature │ │ ├── page.level.errors.feature │ │ ├── pipeline.canvas.actions.feature │ │ ├── pipeline.complexschema.feature │ │ ├── pipeline.contextmenu.feature │ │ ├── pipeline.draft.feature │ │ ├── pipeline.edit.feature │ │ ├── pipeline.hierarchy.feature │ │ ├── pipeline.runtimeargs.preview.feature │ │ ├── pipeline.runtimeargs.saved.feature │ │ ├── pipeline.runtimeargs.temporary.feature │ │ ├── pipeline.triggers.feature │ │ ├── securekeymanager.feature │ │ ├── source.control.management.repository.feature │ │ ├── source.control.management.sync.apps.feature │ │ ├── widget.codeeditor.feature │ │ ├── widget.csv.feature │ │ ├── widget.keyvalue.feature │ │ ├── widget.keyvaluedropdown.feature │ │ ├── wrangler.bigquery.feature │ │ ├── wrangler.gcs.feature │ │ └── wrangler.spanner.feature │ ├── fixtures │ │ ├── airports.csv │ │ ├── fll_airport_pipeline2.json │ │ ├── fll_wrangler-test-pipeline.json │ │ ├── logs_generator.json │ │ ├── old_userstore_draft.json │ │ ├── pipeline_with_macros.json │ │ └── test-orphan-pipeline-6-10-1.json │ ├── java │ │ └── io │ │ │ └── cdap │ │ │ └── cdap │ │ │ └── ui │ │ │ ├── runners │ │ │ ├── TestRunner.java │ │ │ └── package-info.java │ │ │ ├── stepsdesign │ │ │ ├── Admin.java │ │ │ ├── AfterActions.java │ │ │ ├── BeforeActions.java │ │ │ ├── CommonSteps.java │ │ │ ├── ComputeProfile.java │ │ │ ├── ControlCenter.java │ │ │ ├── Logviewer.java │ │ │ ├── Namespaces.java │ │ │ ├── Navbar.java │ │ │ ├── Nuxtour.java │ │ │ ├── PageLevelErrors.java │ │ │ ├── PipelineCanvasActions.java │ │ │ ├── PipelineComplexSchema.java │ │ │ ├── PipelineContextMenu.java │ │ │ ├── PipelineDraft.java │ │ │ ├── PipelineEdit.java │ │ │ ├── PipelineHierarchy.java │ │ │ ├── PipelineRuntimeMacros.java │ │ │ ├── PipelineTriggers.java │ │ │ ├── SecureKeyManager.java │ │ │ ├── SourceControlManagement.java │ │ │ ├── WidgetCSV.java │ │ │ ├── WidgetCodeEditor.java │ │ │ ├── WidgetKeyValue.java │ │ │ ├── WidgetKeyValueDropdown.java │ │ │ ├── WranglerBigQueryConnection.java │ │ │ ├── WranglerGCSConnection.java │ │ │ ├── WranglerSpanner.java │ │ │ └── package-info.java │ │ │ ├── types │ │ │ ├── NodeInfo.java │ │ │ ├── SecureKeyInfo.java │ │ │ └── package-info.java │ │ │ └── utils │ │ │ ├── Commands.java │ │ │ ├── Constants.java │ │ │ ├── Helper.java │ │ │ ├── HttpRequestHandler.java │ │ │ └── package-info.java │ └── resources │ │ └── pluginParameters.properties ├── main │ └── java │ │ └── io │ │ └── cdap │ │ └── cdap │ │ └── ui │ │ └── ConfigurationJsonTool.java └── test │ ├── java │ └── io │ │ └── cdap │ │ └── cdap │ │ └── ui │ │ └── ConfigurationJsonToolTest.java │ └── resources │ └── cdap-security.xml ├── suppressions.xml ├── templates └── validators │ └── validators.json ├── tsconfig.json ├── tslint.json ├── typings └── declarations.d.ts ├── ui-devtools ├── cdap-get-data-testid │ ├── README.md │ ├── images │ │ └── icon-32.png │ ├── index.html │ ├── manifest.json │ ├── popup.js │ └── serviceWorker.js └── testid-yaml-loader │ └── index.js ├── webpack.config.cdap.dev.js ├── webpack.config.cdap.dll.js ├── webpack.config.cdap.js ├── webpack.config.common.js ├── webpack.config.dlls.js ├── webpack.config.js ├── webpack.config.login.js ├── webpack.config.server.js ├── webpack.config.shared.dll.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.jshintrc -------------------------------------------------------------------------------- /.storybook/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.storybook/.babelrc -------------------------------------------------------------------------------- /.storybook/ThemeDecorator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.storybook/ThemeDecorator.tsx -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.storybook/stories.global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.storybook/stories.global.scss -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/.stylelintrc -------------------------------------------------------------------------------- /BUILD.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/BUILD.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/DEVELOPERS.md -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /LICENSE-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/LICENSE-node -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/__mocks__/fileMock.js -------------------------------------------------------------------------------- /__mocks__/styleMocks.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/app.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/artifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/artifact.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/dataprep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/dataprep.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/dataset.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/market.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/metadata.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/metric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/metric.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/namespace.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/pipeline.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/preference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/preference.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/preview.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/program.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/search.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/stream.js -------------------------------------------------------------------------------- /app/cdap/api/__mocks__/userstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/__mocks__/userstore.js -------------------------------------------------------------------------------- /app/cdap/api/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/app.js -------------------------------------------------------------------------------- /app/cdap/api/artifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/artifact.js -------------------------------------------------------------------------------- /app/cdap/api/blankpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/blankpath.js -------------------------------------------------------------------------------- /app/cdap/api/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/cloud.js -------------------------------------------------------------------------------- /app/cdap/api/connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/connections.ts -------------------------------------------------------------------------------- /app/cdap/api/dataprep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/dataprep.js -------------------------------------------------------------------------------- /app/cdap/api/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/dataset.js -------------------------------------------------------------------------------- /app/cdap/api/longRunningOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/longRunningOperation.ts -------------------------------------------------------------------------------- /app/cdap/api/market.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/market.js -------------------------------------------------------------------------------- /app/cdap/api/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/metadata.js -------------------------------------------------------------------------------- /app/cdap/api/metric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/metric.js -------------------------------------------------------------------------------- /app/cdap/api/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/namespace.js -------------------------------------------------------------------------------- /app/cdap/api/operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/operations.js -------------------------------------------------------------------------------- /app/cdap/api/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/pipeline.js -------------------------------------------------------------------------------- /app/cdap/api/preference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/preference.js -------------------------------------------------------------------------------- /app/cdap/api/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/preview.js -------------------------------------------------------------------------------- /app/cdap/api/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/program.js -------------------------------------------------------------------------------- /app/cdap/api/replicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/replicator.js -------------------------------------------------------------------------------- /app/cdap/api/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/reports.js -------------------------------------------------------------------------------- /app/cdap/api/rulesengine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/rulesengine.js -------------------------------------------------------------------------------- /app/cdap/api/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/schedule.js -------------------------------------------------------------------------------- /app/cdap/api/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/search.js -------------------------------------------------------------------------------- /app/cdap/api/securekey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/securekey.js -------------------------------------------------------------------------------- /app/cdap/api/serviceaccounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/serviceaccounts.js -------------------------------------------------------------------------------- /app/cdap/api/serviceproviders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/serviceproviders/index.js -------------------------------------------------------------------------------- /app/cdap/api/sourcecontrol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/sourcecontrol.ts -------------------------------------------------------------------------------- /app/cdap/api/tethering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/tethering.ts -------------------------------------------------------------------------------- /app/cdap/api/userstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/userstore.js -------------------------------------------------------------------------------- /app/cdap/api/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/api/version.js -------------------------------------------------------------------------------- /app/cdap/cdap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/cdap.html -------------------------------------------------------------------------------- /app/cdap/cdap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/cdap.js -------------------------------------------------------------------------------- /app/cdap/components/404/404.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/404/404.scss -------------------------------------------------------------------------------- /app/cdap/components/404/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/404/index.js -------------------------------------------------------------------------------- /app/cdap/components/500/500.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/500/500.scss -------------------------------------------------------------------------------- /app/cdap/components/500/Page500ErrorStack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/500/Page500ErrorStack/index.js -------------------------------------------------------------------------------- /app/cdap/components/500/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/500/index.js -------------------------------------------------------------------------------- /app/cdap/components/AbstractWidget/StateWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/AbstractWidget/StateWrapper.js -------------------------------------------------------------------------------- /app/cdap/components/AbstractWidget/WidgetVars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/AbstractWidget/WidgetVars.scss -------------------------------------------------------------------------------- /app/cdap/components/AbstractWidget/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/AbstractWidget/constants.ts -------------------------------------------------------------------------------- /app/cdap/components/AbstractWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/AbstractWidget/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/AbstractWizard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/AbstractWizard/index.js -------------------------------------------------------------------------------- /app/cdap/components/Administration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Administration/index.js -------------------------------------------------------------------------------- /app/cdap/components/AuthRefresher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/AuthRefresher/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Cloud/Profiles/Preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Cloud/Profiles/Preview/index.js -------------------------------------------------------------------------------- /app/cdap/components/Cloud/Profiles/Store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Cloud/Profiles/Store/index.js -------------------------------------------------------------------------------- /app/cdap/components/Cloud/Store/ActionCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Cloud/Store/ActionCreator.js -------------------------------------------------------------------------------- /app/cdap/components/Cloud/Store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Cloud/Store/index.js -------------------------------------------------------------------------------- /app/cdap/components/Connections/Browser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/Browser/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Connections/Create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/Create/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Connections/Create/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/Create/reducer.ts -------------------------------------------------------------------------------- /app/cdap/components/Connections/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/Home.tsx -------------------------------------------------------------------------------- /app/cdap/components/Connections/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/Routes.tsx -------------------------------------------------------------------------------- /app/cdap/components/Connections/Upload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/Upload/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Connections/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/helper.ts -------------------------------------------------------------------------------- /app/cdap/components/Connections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Connections/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Connections/types.ts -------------------------------------------------------------------------------- /app/cdap/components/CookieBanner/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/CookieBanner/constants.ts -------------------------------------------------------------------------------- /app/cdap/components/CookieBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/CookieBanner/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/CopyableID/CopyableID.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/CopyableID/CopyableID.scss -------------------------------------------------------------------------------- /app/cdap/components/CopyableID/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/CopyableID/index.js -------------------------------------------------------------------------------- /app/cdap/components/DAG/DAGProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/DAGProvider.tsx -------------------------------------------------------------------------------- /app/cdap/components/DAG/DAGRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/DAGRenderer.tsx -------------------------------------------------------------------------------- /app/cdap/components/DAG/JSPlumbSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/JSPlumbSettings.ts -------------------------------------------------------------------------------- /app/cdap/components/DAG/Nodes/Default/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/Nodes/Default/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/DAG/Nodes/ErrorNode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/Nodes/ErrorNode/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/DAG/Nodes/SinkNode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/Nodes/SinkNode/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/DAG/Nodes/SourceNode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/Nodes/SourceNode/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/DAG/Nodes/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/Nodes/utilities.ts -------------------------------------------------------------------------------- /app/cdap/components/DAG/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DAG/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/DSVEditor/DSVActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DSVEditor/DSVActions.js -------------------------------------------------------------------------------- /app/cdap/components/DSVEditor/DSVEditor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DSVEditor/DSVEditor.scss -------------------------------------------------------------------------------- /app/cdap/components/DSVEditor/DSVRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DSVEditor/DSVRow.js -------------------------------------------------------------------------------- /app/cdap/components/DSVEditor/DSVStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DSVEditor/DSVStore.js -------------------------------------------------------------------------------- /app/cdap/components/DSVEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DSVEditor/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/AutoComplete/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/AutoComplete/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/DataPrep.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/DataPrep.scss -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/DataPrepCLI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/DataPrepCLI/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/DataPrepTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/DataPrepTable/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/TopPanel/PlusButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/TopPanel/PlusButton.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/TopPanel/TopPanel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/TopPanel/TopPanel.scss -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/TopPanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/TopPanel/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/WorkspaceTabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/WorkspaceTabs/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/helper.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrep/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrep/store/index.ts -------------------------------------------------------------------------------- /app/cdap/components/DataPrepConnections/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrepConnections/index.js -------------------------------------------------------------------------------- /app/cdap/components/DataPrepHome/DataPrepHome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrepHome/DataPrepHome.scss -------------------------------------------------------------------------------- /app/cdap/components/DataPrepHome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DataPrepHome/index.js -------------------------------------------------------------------------------- /app/cdap/components/DatasetCards/DatasetCards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DatasetCards/DatasetCards.scss -------------------------------------------------------------------------------- /app/cdap/components/DatasetCards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DatasetCards/index.js -------------------------------------------------------------------------------- /app/cdap/components/DatasetDetailedView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DatasetDetailedView/index.js -------------------------------------------------------------------------------- /app/cdap/components/DatasetTable/DatasetTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DatasetTable/DatasetTable.scss -------------------------------------------------------------------------------- /app/cdap/components/DatasetTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DatasetTable/index.js -------------------------------------------------------------------------------- /app/cdap/components/DeleteEntityBtn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/DeleteEntityBtn/index.js -------------------------------------------------------------------------------- /app/cdap/components/EmptyMessageContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/EmptyMessageContainer/index.js -------------------------------------------------------------------------------- /app/cdap/components/EntityCard/EntityCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/EntityCard/EntityCard.scss -------------------------------------------------------------------------------- /app/cdap/components/EntityCard/FastActions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/EntityCard/FastActions/index.js -------------------------------------------------------------------------------- /app/cdap/components/EntityCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/EntityCard/index.js -------------------------------------------------------------------------------- /app/cdap/components/EntityListView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/EntityListView/index.js -------------------------------------------------------------------------------- /app/cdap/components/EntityTopPanel/EntityTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/EntityTopPanel/EntityTitle.tsx -------------------------------------------------------------------------------- /app/cdap/components/EntityTopPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/EntityTopPanel/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/ExperimentalBanner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/ExperimentalBanner/index.js -------------------------------------------------------------------------------- /app/cdap/components/FastAction/LogAction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FastAction/LogAction/index.js -------------------------------------------------------------------------------- /app/cdap/components/FastAction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FastAction/index.js -------------------------------------------------------------------------------- /app/cdap/components/FieldLevelLineage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FieldLevelLineage/index.js -------------------------------------------------------------------------------- /app/cdap/components/FieldLevelLineage/v2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FieldLevelLineage/v2/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/FileBrowser/FileBrowser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FileBrowser/FileBrowser.scss -------------------------------------------------------------------------------- /app/cdap/components/FileBrowser/FilePath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FileBrowser/FilePath/index.js -------------------------------------------------------------------------------- /app/cdap/components/FileBrowser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FileBrowser/index.js -------------------------------------------------------------------------------- /app/cdap/components/FileDataUpload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FileDataUpload/index.js -------------------------------------------------------------------------------- /app/cdap/components/FileDnD/FileDnD.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FileDnD/FileDnD.scss -------------------------------------------------------------------------------- /app/cdap/components/FileDnD/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/FileDnD/index.js -------------------------------------------------------------------------------- /app/cdap/components/GroupedBarChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/GroupedBarChart/index.js -------------------------------------------------------------------------------- /app/cdap/components/Home/Home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Home/Home.scss -------------------------------------------------------------------------------- /app/cdap/components/Home/HomeActions/ActionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Home/HomeActions/ActionCard.tsx -------------------------------------------------------------------------------- /app/cdap/components/Home/HomeActions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Home/HomeActions/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Home/Tour/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Home/Tour/index.ts -------------------------------------------------------------------------------- /app/cdap/components/Home/Welcome/Welcome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Home/Welcome/Welcome.scss -------------------------------------------------------------------------------- /app/cdap/components/Home/Welcome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Home/Welcome/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Home/index.js -------------------------------------------------------------------------------- /app/cdap/components/HttpExecutor/HttpExecutor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/HttpExecutor/HttpExecutor.scss -------------------------------------------------------------------------------- /app/cdap/components/HttpExecutor/InputPath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/HttpExecutor/InputPath/index.js -------------------------------------------------------------------------------- /app/cdap/components/HttpExecutor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/HttpExecutor/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/HttpExecutor/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/HttpExecutor/utilities.ts -------------------------------------------------------------------------------- /app/cdap/components/InformationIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/InformationIcon/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Ingestion/PluginList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Ingestion/PluginList/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Ingestion/SinkList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Ingestion/SinkList/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Ingestion/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Ingestion/helpers.ts -------------------------------------------------------------------------------- /app/cdap/components/Ingestion/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Ingestion/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/InputWithValidations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/InputWithValidations/index.js -------------------------------------------------------------------------------- /app/cdap/components/Lab/LabExperimentTest/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Lab/LabExperimentTest/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Lab/ToggleExperiment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Lab/ToggleExperiment/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Lab/experiment-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Lab/experiment-list.tsx -------------------------------------------------------------------------------- /app/cdap/components/Lab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Lab/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Lab/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Lab/types.ts -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/DataFetcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/DataFetcher/index.ts -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/LogLevel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/LogLevel.tsx -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/LogRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/LogRow.tsx -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/LogViewerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/LogViewerPage.tsx -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/LogsUrlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/LogsUrlUtils.ts -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/Playground.tsx -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/TopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/TopPanel.tsx -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/LogViewer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/LogViewer/types.ts -------------------------------------------------------------------------------- /app/cdap/components/Market/AllTab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Market/AllTab/index.js -------------------------------------------------------------------------------- /app/cdap/components/Market/CategoryMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Market/CategoryMap.ts -------------------------------------------------------------------------------- /app/cdap/components/Market/UsecaseTab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Market/UsecaseTab/index.js -------------------------------------------------------------------------------- /app/cdap/components/Market/action/market-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Market/action/market-action.js -------------------------------------------------------------------------------- /app/cdap/components/Market/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Market/index.js -------------------------------------------------------------------------------- /app/cdap/components/Market/store/market-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Market/store/market-store.js -------------------------------------------------------------------------------- /app/cdap/components/MarketActionsContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/MarketActionsContainer/index.js -------------------------------------------------------------------------------- /app/cdap/components/MarketEntityModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/MarketEntityModal/index.js -------------------------------------------------------------------------------- /app/cdap/components/MarketPlaceEntity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/MarketPlaceEntity/index.js -------------------------------------------------------------------------------- /app/cdap/components/Metadata/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Metadata/Home/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Metadata/Lineage/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Metadata/Lineage/helper.ts -------------------------------------------------------------------------------- /app/cdap/components/Metadata/Lineage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Metadata/Lineage/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Metadata/Lineage/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Metadata/Lineage/styles.tsx -------------------------------------------------------------------------------- /app/cdap/components/Metadata/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Metadata/SearchBar/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Metadata/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Metadata/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Metadata/urlHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Metadata/urlHelper.ts -------------------------------------------------------------------------------- /app/cdap/components/NamespaceAdmin/AdminTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceAdmin/AdminTabs.tsx -------------------------------------------------------------------------------- /app/cdap/components/NamespaceAdmin/Connections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceAdmin/Connections.tsx -------------------------------------------------------------------------------- /app/cdap/components/NamespaceAdmin/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceAdmin/Description.tsx -------------------------------------------------------------------------------- /app/cdap/components/NamespaceAdmin/Preferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceAdmin/Preferences.tsx -------------------------------------------------------------------------------- /app/cdap/components/NamespaceAdmin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceAdmin/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/NamespaceAdmin/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceAdmin/store/index.ts -------------------------------------------------------------------------------- /app/cdap/components/NamespaceDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceDetails/index.js -------------------------------------------------------------------------------- /app/cdap/components/NamespaceDetails/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceDetails/store/index.js -------------------------------------------------------------------------------- /app/cdap/components/NamespaceDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespaceDropdown/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/NamespacesPicker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NamespacesPicker/index.js -------------------------------------------------------------------------------- /app/cdap/components/NotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/NotFound/index.js -------------------------------------------------------------------------------- /app/cdap/components/Operations/JobsTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Operations/JobsTable/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Operations/TimePicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Operations/TimePicker/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Operations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Operations/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Operations/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Operations/parser.ts -------------------------------------------------------------------------------- /app/cdap/components/OpsDashboard/OpsDashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/OpsDashboard/OpsDashboard.scss -------------------------------------------------------------------------------- /app/cdap/components/OpsDashboard/RunsGraph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/OpsDashboard/RunsGraph/index.js -------------------------------------------------------------------------------- /app/cdap/components/OpsDashboard/RunsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/OpsDashboard/RunsList/index.js -------------------------------------------------------------------------------- /app/cdap/components/OpsDashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/OpsDashboard/index.js -------------------------------------------------------------------------------- /app/cdap/components/PipelineContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineContextMenu/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PipelineDetails/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineDetails/store/index.js -------------------------------------------------------------------------------- /app/cdap/components/PipelineExportModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineExportModal/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PipelineHistory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineHistory/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PipelineHistory/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineHistory/styles.ts -------------------------------------------------------------------------------- /app/cdap/components/PipelineHistory/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineHistory/types.ts -------------------------------------------------------------------------------- /app/cdap/components/PipelineList/PipelineList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineList/PipelineList.scss -------------------------------------------------------------------------------- /app/cdap/components/PipelineList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineList/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PipelineModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineModal/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PipelineResources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineResources/index.js -------------------------------------------------------------------------------- /app/cdap/components/PipelineScheduler/ViewSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineScheduler/ViewSwitch.js -------------------------------------------------------------------------------- /app/cdap/components/PipelineScheduler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineScheduler/index.js -------------------------------------------------------------------------------- /app/cdap/components/PipelineSummary/GraphHint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineSummary/GraphHint.scss -------------------------------------------------------------------------------- /app/cdap/components/PipelineSummary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineSummary/index.js -------------------------------------------------------------------------------- /app/cdap/components/PipelineTriggers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineTriggers/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PipelineTriggers/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PipelineTriggers/reducer.ts -------------------------------------------------------------------------------- /app/cdap/components/PluginContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PluginContextMenu/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PluginJSONCreator/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PluginJSONCreator/constants.tsx -------------------------------------------------------------------------------- /app/cdap/components/PluginJSONCreator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PluginJSONCreator/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PluginSchemaEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PluginSchemaEditor/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PostRunActions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PostRunActions/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PreviewData/DataView/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PreviewData/DataView/Table.tsx -------------------------------------------------------------------------------- /app/cdap/components/PreviewData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PreviewData/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PreviewData/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PreviewData/utilities.ts -------------------------------------------------------------------------------- /app/cdap/components/PreviewLogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PreviewLogs/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/PropertiesEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PropertiesEditor/index.js -------------------------------------------------------------------------------- /app/cdap/components/PushdownConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/PushdownConfig/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Replicator/Create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/Create/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Replicator/Create/steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/Create/steps.tsx -------------------------------------------------------------------------------- /app/cdap/components/Replicator/Detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/Detail/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Replicator/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/List/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Replicator/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/constants.tsx -------------------------------------------------------------------------------- /app/cdap/components/Replicator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/Replicator/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/types.ts -------------------------------------------------------------------------------- /app/cdap/components/Replicator/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Replicator/utilities/index.ts -------------------------------------------------------------------------------- /app/cdap/components/Reports/Customizer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Reports/Customizer/index.js -------------------------------------------------------------------------------- /app/cdap/components/Reports/Reports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Reports/Reports.scss -------------------------------------------------------------------------------- /app/cdap/components/Reports/ReportsDetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Reports/ReportsDetail/index.js -------------------------------------------------------------------------------- /app/cdap/components/Reports/ReportsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Reports/ReportsList/index.js -------------------------------------------------------------------------------- /app/cdap/components/Reports/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Reports/index.js -------------------------------------------------------------------------------- /app/cdap/components/Reports/store/ActionCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Reports/store/ActionCreator.js -------------------------------------------------------------------------------- /app/cdap/components/Reports/store/ReportsStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/Reports/store/ReportsStore.js -------------------------------------------------------------------------------- /app/cdap/components/ResourceCenter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/ResourceCenter/index.js -------------------------------------------------------------------------------- /app/cdap/components/ResourceCenterButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/ResourceCenterButton/index.js -------------------------------------------------------------------------------- /app/cdap/components/ResourceCenterEntity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/ResourceCenterEntity/index.js -------------------------------------------------------------------------------- /app/cdap/components/RouteToNamespace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/RouteToNamespace/index.js -------------------------------------------------------------------------------- /app/cdap/components/RulesEngineHome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/RulesEngineHome/index.js -------------------------------------------------------------------------------- /app/cdap/components/SampleTSXComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SampleTSXComponent/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/SecureKeys/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SecureKeys/constants.tsx -------------------------------------------------------------------------------- /app/cdap/components/SecureKeys/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SecureKeys/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/SimpleSchema/FieldRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SimpleSchema/FieldRow.js -------------------------------------------------------------------------------- /app/cdap/components/SimpleSchema/FieldRow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SimpleSchema/FieldRow.scss -------------------------------------------------------------------------------- /app/cdap/components/SimpleSchema/SchemaStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SimpleSchema/SchemaStore.js -------------------------------------------------------------------------------- /app/cdap/components/SimpleSchema/SimpleSchema.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SimpleSchema/SimpleSchema.scss -------------------------------------------------------------------------------- /app/cdap/components/SimpleSchema/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SimpleSchema/index.js -------------------------------------------------------------------------------- /app/cdap/components/SpotlightSearch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SpotlightSearch/index.js -------------------------------------------------------------------------------- /app/cdap/components/StatusButton/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/StatusButton/constants.ts -------------------------------------------------------------------------------- /app/cdap/components/StatusButton/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/StatusButton/icons.tsx -------------------------------------------------------------------------------- /app/cdap/components/StatusButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/StatusButton/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/StatusButton/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/StatusButton/styles.tsx -------------------------------------------------------------------------------- /app/cdap/components/SystemServicesDelay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/SystemServicesDelay/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/TextboxOnValium/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/TextboxOnValium/index.js -------------------------------------------------------------------------------- /app/cdap/components/ThemeWrapper/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/ThemeWrapper/colors.ts -------------------------------------------------------------------------------- /app/cdap/components/ThemeWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/ThemeWrapper/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/TriggeredPipelines/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/TriggeredPipelines/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/UncontrolledComponents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/UncontrolledComponents/index.js -------------------------------------------------------------------------------- /app/cdap/components/UniversalBackdrop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/UniversalBackdrop/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/VegaLiteChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/VegaLiteChart/index.js -------------------------------------------------------------------------------- /app/cdap/components/VersionsDropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/VersionsDropdown/index.js -------------------------------------------------------------------------------- /app/cdap/components/hydrator/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/hydrator/main.js -------------------------------------------------------------------------------- /app/cdap/components/hydrator/react-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/hydrator/react-loader.js -------------------------------------------------------------------------------- /app/cdap/components/hydrator/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/hydrator/reducers/index.ts -------------------------------------------------------------------------------- /app/cdap/components/layouts/SectionWithPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/layouts/SectionWithPanel.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/AbsLinkTo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/AbsLinkTo/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Accordion/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Alert/Alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Alert/Alert.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Alert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Alert/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/AppHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/AppHeader/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/BreadCrumb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/BreadCrumb/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Card/Card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Card/Card.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Card/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/CodeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/CodeEditor/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/ContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/ContextMenu/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Dashboard/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Description/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Description/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Duration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Duration/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/ErrorBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/ErrorBanner/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Footer/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Heading/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/IconSVG/IconSVG.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/IconSVG/IconSVG.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/IconSVG/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/IconSVG/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/If/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/If/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/KeyValuePairs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/KeyValuePairs/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/LoadingSVG/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/LoadingSVG/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Markdown/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/OverlayFocus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/OverlayFocus/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Overview/Overview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Overview/Overview.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Overview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Overview/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Pagination/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/PaidBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/PaidBanner/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/PieChart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/PieChart/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/PlusButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/PlusButton/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Popover/Popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Popover/Popover.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Popover/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Popover/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/ProgramCards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/ProgramCards/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/ProgramTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/ProgramTable/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/RadioGroup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/RadioGroup/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/RichToolTip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/RichToolTip/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/SearchTextBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/SearchTextBox/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/SelectionBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/SelectionBox/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/SortableTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/SortableTable/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Status/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Table/ColumnGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Table/ColumnGroup.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Table/TableBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Table/TableBody.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Table/TableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Table/TableCell.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Table/TableHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Table/TableHeader.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Table/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Table/TableRow.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Table/index.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Tabs/TabGroup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tabs/TabGroup/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Tabs/TabHead/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tabs/TabHead/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Tabs/Tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tabs/Tabs.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tabs/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Tags/Tag/Tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tags/Tag/Tag.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Tags/Tag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tags/Tag/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Tags/Tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tags/Tags.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Tags/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Tags/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/TimeToLive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/TimeToLive/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/Timer/Timer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Timer/Timer.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Timer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Timer/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/ToggleSwitch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/ToggleSwitch/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/ViewAllLabel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/ViewAllLabel/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/ViewSwitch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/ViewSwitch/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/VirtualScroll/demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/VirtualScroll/demo.tsx -------------------------------------------------------------------------------- /app/cdap/components/shared/Wizard/Wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Wizard/Wizard.scss -------------------------------------------------------------------------------- /app/cdap/components/shared/Wizard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/Wizard/index.js -------------------------------------------------------------------------------- /app/cdap/components/shared/WizardModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/components/shared/WizardModal/index.js -------------------------------------------------------------------------------- /app/cdap/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/globals.ts -------------------------------------------------------------------------------- /app/cdap/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/main.js -------------------------------------------------------------------------------- /app/cdap/services/AlertStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/AlertStatus.ts -------------------------------------------------------------------------------- /app/cdap/services/AvailablePluginsStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/AvailablePluginsStore/index.js -------------------------------------------------------------------------------- /app/cdap/services/CDAPComponentsVersions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/CDAPComponentsVersions.js -------------------------------------------------------------------------------- /app/cdap/services/Clipboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/Clipboard/index.ts -------------------------------------------------------------------------------- /app/cdap/services/DataFormatter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/DataFormatter/index.ts -------------------------------------------------------------------------------- /app/cdap/services/GuidedTour/GuidedTour.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/GuidedTour/GuidedTour.scss -------------------------------------------------------------------------------- /app/cdap/services/GuidedTour/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/GuidedTour/index.ts -------------------------------------------------------------------------------- /app/cdap/services/HydratorPluginConfigFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/HydratorPluginConfigFactory.js -------------------------------------------------------------------------------- /app/cdap/services/MetricsQueryHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/MetricsQueryHelper.js -------------------------------------------------------------------------------- /app/cdap/services/NamespaceStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/NamespaceStore/index.ts -------------------------------------------------------------------------------- /app/cdap/services/PipelineErrorFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/PipelineErrorFactory.js -------------------------------------------------------------------------------- /app/cdap/services/PipelineMetricsStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/PipelineMetricsStore/index.js -------------------------------------------------------------------------------- /app/cdap/services/PipelineUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/PipelineUtils/index.ts -------------------------------------------------------------------------------- /app/cdap/services/PluginUtilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/PluginUtilities/index.ts -------------------------------------------------------------------------------- /app/cdap/services/PlusButtonStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/PlusButtonStore.js -------------------------------------------------------------------------------- /app/cdap/services/PreviewStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/PreviewStatus.ts -------------------------------------------------------------------------------- /app/cdap/services/ServiceEnablerUtilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/ServiceEnablerUtilities.js -------------------------------------------------------------------------------- /app/cdap/services/SessionTokenStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/SessionTokenStore.ts -------------------------------------------------------------------------------- /app/cdap/services/StatusFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/StatusFactory.js -------------------------------------------------------------------------------- /app/cdap/services/StatusMapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/StatusMapper.js -------------------------------------------------------------------------------- /app/cdap/services/SystemDelayStore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/SystemDelayStore/index.ts -------------------------------------------------------------------------------- /app/cdap/services/SystemServicesStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/SystemServicesStore.js -------------------------------------------------------------------------------- /app/cdap/services/ThemeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/ThemeHelper.ts -------------------------------------------------------------------------------- /app/cdap/services/UiUtils/UrlGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/UiUtils/UrlGenerator.ts -------------------------------------------------------------------------------- /app/cdap/services/VersionRange/Version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/VersionRange/Version.js -------------------------------------------------------------------------------- /app/cdap/services/VersionRange/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/VersionRange/index.js -------------------------------------------------------------------------------- /app/cdap/services/VersionStore/VersionActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/VersionStore/VersionActions.js -------------------------------------------------------------------------------- /app/cdap/services/VersionStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/VersionStore/index.js -------------------------------------------------------------------------------- /app/cdap/services/WindowManager/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/WindowManager/index.ts -------------------------------------------------------------------------------- /app/cdap/services/__tests__/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/__tests__/helpers.test.js -------------------------------------------------------------------------------- /app/cdap/services/cdapavscwrapper/LogicalTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/cdapavscwrapper/LogicalTypes.ts -------------------------------------------------------------------------------- /app/cdap/services/cdapavscwrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/cdapavscwrapper/index.ts -------------------------------------------------------------------------------- /app/cdap/services/datasource/IDataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/datasource/IDataSource.ts -------------------------------------------------------------------------------- /app/cdap/services/datasource/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/datasource/index.ts -------------------------------------------------------------------------------- /app/cdap/services/datasource/requestTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/datasource/requestTypes.ts -------------------------------------------------------------------------------- /app/cdap/services/download-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/download-file.js -------------------------------------------------------------------------------- /app/cdap/services/entity-icon-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/entity-icon-map/index.js -------------------------------------------------------------------------------- /app/cdap/services/fast-action-message-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/fast-action-message-helper.js -------------------------------------------------------------------------------- /app/cdap/services/filters/multiKeySearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/filters/multiKeySearch.ts -------------------------------------------------------------------------------- /app/cdap/services/filters/removeCamelCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/filters/removeCamelCase.ts -------------------------------------------------------------------------------- /app/cdap/services/get-last-selected-namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/get-last-selected-namespace.js -------------------------------------------------------------------------------- /app/cdap/services/global-constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/global-constants.js -------------------------------------------------------------------------------- /app/cdap/services/global-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/global-events.js -------------------------------------------------------------------------------- /app/cdap/services/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/helpers.js -------------------------------------------------------------------------------- /app/cdap/services/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/history.ts -------------------------------------------------------------------------------- /app/cdap/services/market-action-icon-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/market-action-icon-map.js -------------------------------------------------------------------------------- /app/cdap/services/market-category-icon-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/market-category-icon-map.js -------------------------------------------------------------------------------- /app/cdap/services/metadata-parser/EntityType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/metadata-parser/EntityType.js -------------------------------------------------------------------------------- /app/cdap/services/metadata-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/metadata-parser/index.js -------------------------------------------------------------------------------- /app/cdap/services/program-api-converter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/program-api-converter/index.js -------------------------------------------------------------------------------- /app/cdap/services/redirect-to-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/redirect-to-login.js -------------------------------------------------------------------------------- /app/cdap/services/redux-helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/redux-helpers/index.ts -------------------------------------------------------------------------------- /app/cdap/services/resource-helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/resource-helper/index.js -------------------------------------------------------------------------------- /app/cdap/services/upload-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/services/upload-file.js -------------------------------------------------------------------------------- /app/cdap/styles/bootstrap_4_patch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/bootstrap_4_patch.scss -------------------------------------------------------------------------------- /app/cdap/styles/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/colors.scss -------------------------------------------------------------------------------- /app/cdap/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/common.scss -------------------------------------------------------------------------------- /app/cdap/styles/font-awesome.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/font-awesome.config.js -------------------------------------------------------------------------------- /app/cdap/styles/font-awesome.config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/font-awesome.config.scss -------------------------------------------------------------------------------- /app/cdap/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts.scss -------------------------------------------------------------------------------- /app/cdap/styles/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/cdap/styles/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts/icomoon.svg -------------------------------------------------------------------------------- /app/cdap/styles/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/cdap/styles/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts/icomoon.woff -------------------------------------------------------------------------------- /app/cdap/styles/fonts/symbol-defs-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts/symbol-defs-full.svg -------------------------------------------------------------------------------- /app/cdap/styles/fonts/symbol-defs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts/symbol-defs.svg -------------------------------------------------------------------------------- /app/cdap/styles/fonts/symbol-defs_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/fonts/symbol-defs_new.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/404.png -------------------------------------------------------------------------------- /app/cdap/styles/img/CDAP_darkgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/CDAP_darkgray.png -------------------------------------------------------------------------------- /app/cdap/styles/img/CaskMarket_inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/CaskMarket_inverse.png -------------------------------------------------------------------------------- /app/cdap/styles/img/DataPrep_preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/DataPrep_preview1.png -------------------------------------------------------------------------------- /app/cdap/styles/img/DataPrep_preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/DataPrep_preview2.png -------------------------------------------------------------------------------- /app/cdap/styles/img/GCDataProc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/GCDataProc.png -------------------------------------------------------------------------------- /app/cdap/styles/img/MMDS_preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/MMDS_preview1.png -------------------------------------------------------------------------------- /app/cdap/styles/img/MMDS_preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/MMDS_preview2.png -------------------------------------------------------------------------------- /app/cdap/styles/img/Reports_preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/Reports_preview1.png -------------------------------------------------------------------------------- /app/cdap/styles/img/Reports_preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/Reports_preview2.png -------------------------------------------------------------------------------- /app/cdap/styles/img/RulesEngine_preview_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/RulesEngine_preview_1.png -------------------------------------------------------------------------------- /app/cdap/styles/img/RulesEngine_preview_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/RulesEngine_preview_2.png -------------------------------------------------------------------------------- /app/cdap/styles/img/administration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/administration.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/cdap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/cdap_logo.png -------------------------------------------------------------------------------- /app/cdap/styles/img/cdaplogo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/cdaplogo_white.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/cleanse_data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/cleanse_data.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/company_logo-20-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/company_logo-20-all.png -------------------------------------------------------------------------------- /app/cdap/styles/img/data_pipelines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/data_pipelines.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/db-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/db-sprite.png -------------------------------------------------------------------------------- /app/cdap/styles/img/delay-legend-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/delay-legend-icon.png -------------------------------------------------------------------------------- /app/cdap/styles/img/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/divider.png -------------------------------------------------------------------------------- /app/cdap/styles/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/favicon.png -------------------------------------------------------------------------------- /app/cdap/styles/img/heartbeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/heartbeat.png -------------------------------------------------------------------------------- /app/cdap/styles/img/ingest-tile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/ingest-tile.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/metadata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/metadata.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/nux/Control_Center_NUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/nux/Control_Center_NUX.png -------------------------------------------------------------------------------- /app/cdap/styles/img/nux/Dataprep_NUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/nux/Dataprep_NUX.png -------------------------------------------------------------------------------- /app/cdap/styles/img/nux/Hub_NUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/nux/Hub_NUX.png -------------------------------------------------------------------------------- /app/cdap/styles/img/nux/Metadata_NUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/nux/Metadata_NUX.png -------------------------------------------------------------------------------- /app/cdap/styles/img/nux/Pipeline_NUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/nux/Pipeline_NUX.png -------------------------------------------------------------------------------- /app/cdap/styles/img/nux/Pipeline_studio_NUX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/nux/Pipeline_studio_NUX.png -------------------------------------------------------------------------------- /app/cdap/styles/img/operations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/operations.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/plus_ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/plus_ico.svg -------------------------------------------------------------------------------- /app/cdap/styles/img/replicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/img/replicator.svg -------------------------------------------------------------------------------- /app/cdap/styles/lib-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/lib-styles.scss -------------------------------------------------------------------------------- /app/cdap/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/main.scss -------------------------------------------------------------------------------- /app/cdap/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/mixins.scss -------------------------------------------------------------------------------- /app/cdap/styles/modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/modals.scss -------------------------------------------------------------------------------- /app/cdap/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/styles/variables.scss -------------------------------------------------------------------------------- /app/cdap/testids/TestidContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/testids/TestidContext.ts -------------------------------------------------------------------------------- /app/cdap/testids/TestidsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/testids/TestidsProvider.tsx -------------------------------------------------------------------------------- /app/cdap/testids/testids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/testids/testids.yaml -------------------------------------------------------------------------------- /app/cdap/testids/testids.yaml.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/testids/testids.yaml.d.ts -------------------------------------------------------------------------------- /app/cdap/text/text-en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/text/text-en.yaml -------------------------------------------------------------------------------- /app/cdap/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/cdap/utils/time.ts -------------------------------------------------------------------------------- /app/common/cask-shared-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/common/cask-shared-components.js -------------------------------------------------------------------------------- /app/directives/app-level-loading-icon/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/app-level-loading-icon/loading.js -------------------------------------------------------------------------------- /app/directives/cask-angular-focus/focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/cask-angular-focus/focus.js -------------------------------------------------------------------------------- /app/directives/cask-angular-json-edit/jsonedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/cask-angular-json-edit/jsonedit.js -------------------------------------------------------------------------------- /app/directives/cask-angular-password/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/cask-angular-password/password.js -------------------------------------------------------------------------------- /app/directives/cask-angular-progress/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/cask-angular-progress/bar.html -------------------------------------------------------------------------------- /app/directives/cask-angular-progress/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/cask-angular-progress/progress.js -------------------------------------------------------------------------------- /app/directives/cask-angular-sortable/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/cask-angular-sortable/sortable.js -------------------------------------------------------------------------------- /app/directives/complex-schema/complex-schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/complex-schema/complex-schema.html -------------------------------------------------------------------------------- /app/directives/complex-schema/complex-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/complex-schema/complex-schema.js -------------------------------------------------------------------------------- /app/directives/complex-schema/complex-schema.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/complex-schema/complex-schema.less -------------------------------------------------------------------------------- /app/directives/dag-minimap/dag-minimap-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-minimap/dag-minimap-ctrl.js -------------------------------------------------------------------------------- /app/directives/dag-minimap/dag-minimap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-minimap/dag-minimap.html -------------------------------------------------------------------------------- /app/directives/dag-minimap/dag-minimap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-minimap/dag-minimap.js -------------------------------------------------------------------------------- /app/directives/dag-minimap/dag-minimap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-minimap/dag-minimap.less -------------------------------------------------------------------------------- /app/directives/dag-plus/color-constants.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-plus/color-constants.less -------------------------------------------------------------------------------- /app/directives/dag-plus/my-dag-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-plus/my-dag-ctrl.js -------------------------------------------------------------------------------- /app/directives/dag-plus/my-dag-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-plus/my-dag-factory.js -------------------------------------------------------------------------------- /app/directives/dag-plus/my-dag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-plus/my-dag.html -------------------------------------------------------------------------------- /app/directives/dag-plus/my-dag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-plus/my-dag.js -------------------------------------------------------------------------------- /app/directives/dag-plus/my-dag.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/dag-plus/my-dag.less -------------------------------------------------------------------------------- /app/directives/datetime-picker/datetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/datetime-picker/datetime.html -------------------------------------------------------------------------------- /app/directives/datetime-picker/datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/datetime-picker/datetime.js -------------------------------------------------------------------------------- /app/directives/datetime-picker/datetime.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/datetime-picker/datetime.less -------------------------------------------------------------------------------- /app/directives/datetime-range/datetime-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/datetime-range/datetime-range.html -------------------------------------------------------------------------------- /app/directives/datetime-range/datetime-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/datetime-range/datetime-range.js -------------------------------------------------------------------------------- /app/directives/datetime-range/datetime-range.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/datetime-range/datetime-range.less -------------------------------------------------------------------------------- /app/directives/escape-close/escape-close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/escape-close/escape-close.js -------------------------------------------------------------------------------- /app/directives/fileselect/fileselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/fileselect/fileselect.html -------------------------------------------------------------------------------- /app/directives/fileselect/fileselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/fileselect/fileselect.js -------------------------------------------------------------------------------- /app/directives/fileselect/fileselect.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/fileselect/fileselect.less -------------------------------------------------------------------------------- /app/directives/focus-watch/focus-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/focus-watch/focus-watch.js -------------------------------------------------------------------------------- /app/directives/modified-tooltip/popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/modified-tooltip/popover.html -------------------------------------------------------------------------------- /app/directives/modified-tooltip/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/modified-tooltip/tooltip.html -------------------------------------------------------------------------------- /app/directives/modified-tooltip/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/modified-tooltip/tooltip.js -------------------------------------------------------------------------------- /app/directives/my-link-button/my-link-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/my-link-button/my-link-button.html -------------------------------------------------------------------------------- /app/directives/my-link-button/my-link-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/my-link-button/my-link-button.js -------------------------------------------------------------------------------- /app/directives/my-link-button/my-link-button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/my-link-button/my-link-button.less -------------------------------------------------------------------------------- /app/directives/my-popover/my-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/my-popover/my-popover.js -------------------------------------------------------------------------------- /app/directives/my-popover/my-popover.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/my-popover/my-popover.less -------------------------------------------------------------------------------- /app/directives/node-metrics/node-metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/node-metrics/node-metrics.html -------------------------------------------------------------------------------- /app/directives/node-metrics/node-metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/node-metrics/node-metrics.js -------------------------------------------------------------------------------- /app/directives/node-metrics/node-metrics.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/node-metrics/node-metrics.less -------------------------------------------------------------------------------- /app/directives/react-components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/react-components/index.js -------------------------------------------------------------------------------- /app/directives/timestamp-picker/datetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/timestamp-picker/datetime.html -------------------------------------------------------------------------------- /app/directives/timestamp-picker/timestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/timestamp-picker/timestamp.js -------------------------------------------------------------------------------- /app/directives/timestamp-picker/timestamp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/timestamp-picker/timestamp.less -------------------------------------------------------------------------------- /app/directives/validators/validator-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/validators/validator-ctrl.js -------------------------------------------------------------------------------- /app/directives/validators/validator-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/validators/validator-factory.js -------------------------------------------------------------------------------- /app/directives/validators/validators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/validators/validators.html -------------------------------------------------------------------------------- /app/directives/validators/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/validators/validators.js -------------------------------------------------------------------------------- /app/directives/validators/validators.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/validators/validators.less -------------------------------------------------------------------------------- /app/directives/widget-container/widget-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/directives/widget-container/widget-factory.js -------------------------------------------------------------------------------- /app/filters/bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/bytes.js -------------------------------------------------------------------------------- /app/filters/cask-angular-capitalize/capitalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/cask-angular-capitalize/capitalize.js -------------------------------------------------------------------------------- /app/filters/comma-separated-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/comma-separated-number.js -------------------------------------------------------------------------------- /app/filters/ellipsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/ellipsis.js -------------------------------------------------------------------------------- /app/filters/multi-key-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/multi-key-search.js -------------------------------------------------------------------------------- /app/filters/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/number.js -------------------------------------------------------------------------------- /app/filters/paginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/paginate.js -------------------------------------------------------------------------------- /app/filters/remove-camel-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/remove-camel-case.js -------------------------------------------------------------------------------- /app/filters/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/filters/title.js -------------------------------------------------------------------------------- /app/hydrator/adapters.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/adapters.less -------------------------------------------------------------------------------- /app/hydrator/bottompanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/bottompanel.less -------------------------------------------------------------------------------- /app/hydrator/controllers/create/canvas-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/controllers/create/canvas-ctrl.js -------------------------------------------------------------------------------- /app/hydrator/controllers/create/leftpanel-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/controllers/create/leftpanel-ctrl.js -------------------------------------------------------------------------------- /app/hydrator/controllers/create/toppanel-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/controllers/create/toppanel-ctrl.js -------------------------------------------------------------------------------- /app/hydrator/controllers/detail-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/controllers/detail-ctrl.js -------------------------------------------------------------------------------- /app/hydrator/controllers/detail/canvas-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/controllers/detail/canvas-ctrl.js -------------------------------------------------------------------------------- /app/hydrator/home-ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/home-ctrl.js -------------------------------------------------------------------------------- /app/hydrator/hydrator-modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/hydrator-modal.less -------------------------------------------------------------------------------- /app/hydrator/hydrator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/hydrator.html -------------------------------------------------------------------------------- /app/hydrator/leftpanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/leftpanel.less -------------------------------------------------------------------------------- /app/hydrator/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/main.js -------------------------------------------------------------------------------- /app/hydrator/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/module.js -------------------------------------------------------------------------------- /app/hydrator/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/routes.js -------------------------------------------------------------------------------- /app/hydrator/services/canvas-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/services/canvas-factory.js -------------------------------------------------------------------------------- /app/hydrator/services/hydrator-node-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/services/hydrator-node-service.js -------------------------------------------------------------------------------- /app/hydrator/services/hydrator-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/services/hydrator-service.js -------------------------------------------------------------------------------- /app/hydrator/services/hydrator-upgrade-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/services/hydrator-upgrade-service.js -------------------------------------------------------------------------------- /app/hydrator/services/plugin-config-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/services/plugin-config-factory.js -------------------------------------------------------------------------------- /app/hydrator/services/query-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/services/query-helper.js -------------------------------------------------------------------------------- /app/hydrator/services/status-mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/services/status-mapper.js -------------------------------------------------------------------------------- /app/hydrator/templates/create/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/create/canvas.html -------------------------------------------------------------------------------- /app/hydrator/templates/create/leftpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/create/leftpanel.html -------------------------------------------------------------------------------- /app/hydrator/templates/create/reactleftpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/create/reactleftpanel.html -------------------------------------------------------------------------------- /app/hydrator/templates/create/reacttoppanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/create/reacttoppanel.html -------------------------------------------------------------------------------- /app/hydrator/templates/create/studio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/create/studio.html -------------------------------------------------------------------------------- /app/hydrator/templates/create/toppanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/create/toppanel.html -------------------------------------------------------------------------------- /app/hydrator/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/detail.html -------------------------------------------------------------------------------- /app/hydrator/templates/detail/bottom-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/detail/bottom-panel.html -------------------------------------------------------------------------------- /app/hydrator/templates/detail/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/detail/canvas.html -------------------------------------------------------------------------------- /app/hydrator/templates/detail/top-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/detail/top-panel.html -------------------------------------------------------------------------------- /app/hydrator/templates/partial/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/partial/console.html -------------------------------------------------------------------------------- /app/hydrator/templates/preconfigured-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/templates/preconfigured-list.html -------------------------------------------------------------------------------- /app/hydrator/toppanel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/hydrator/toppanel.less -------------------------------------------------------------------------------- /app/lib/global-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/lib/global-lib.js -------------------------------------------------------------------------------- /app/login/components/Card/Card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/components/Card/Card.scss -------------------------------------------------------------------------------- /app/login/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/components/Card/index.js -------------------------------------------------------------------------------- /app/login/components/CardActionFeedback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/components/CardActionFeedback/index.js -------------------------------------------------------------------------------- /app/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/login.html -------------------------------------------------------------------------------- /app/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/login.js -------------------------------------------------------------------------------- /app/login/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/login.scss -------------------------------------------------------------------------------- /app/login/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/fonts.scss -------------------------------------------------------------------------------- /app/login/styles/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/login/styles/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/fonts/icomoon.svg -------------------------------------------------------------------------------- /app/login/styles/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/login/styles/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/fonts/icomoon.woff -------------------------------------------------------------------------------- /app/login/styles/img/CDAP_Logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/img/CDAP_Logotype.svg -------------------------------------------------------------------------------- /app/login/styles/img/cask_footer_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/img/cask_footer_logo.svg -------------------------------------------------------------------------------- /app/login/styles/lib-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/lib-styles.scss -------------------------------------------------------------------------------- /app/login/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/styles/variables.scss -------------------------------------------------------------------------------- /app/login/text/text-en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/text/text-en.yaml -------------------------------------------------------------------------------- /app/login/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/login/utils.js -------------------------------------------------------------------------------- /app/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/polyfill.js -------------------------------------------------------------------------------- /app/services/CDAP_UI_CONFIG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/CDAP_UI_CONFIG.js -------------------------------------------------------------------------------- /app/services/MY_CONFIG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/MY_CONFIG.js -------------------------------------------------------------------------------- /app/services/StatusMapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/StatusMapper.js -------------------------------------------------------------------------------- /app/services/alert-on-valium/alert-on-valium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/alert-on-valium/alert-on-valium.js -------------------------------------------------------------------------------- /app/services/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/alert.js -------------------------------------------------------------------------------- /app/services/app-level-loading-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/app-level-loading-service.js -------------------------------------------------------------------------------- /app/services/app-uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/app-uploader.js -------------------------------------------------------------------------------- /app/services/apps/my-apps-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/apps/my-apps-api.js -------------------------------------------------------------------------------- /app/services/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/auth.js -------------------------------------------------------------------------------- /app/services/cask-angular-eventpipe/eventpipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/cask-angular-eventpipe/eventpipe.js -------------------------------------------------------------------------------- /app/services/cask-angular-theme/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/cask-angular-theme/theme.js -------------------------------------------------------------------------------- /app/services/cask-angular-window-manager/wm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/cask-angular-window-manager/wm.js -------------------------------------------------------------------------------- /app/services/chart-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/chart-helpers.js -------------------------------------------------------------------------------- /app/services/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/constants.js -------------------------------------------------------------------------------- /app/services/dashboard/dashboardhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/dashboard/dashboardhelper.js -------------------------------------------------------------------------------- /app/services/data/cdap-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/data/cdap-url.js -------------------------------------------------------------------------------- /app/services/data/my-cdap-datasource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/data/my-cdap-datasource.js -------------------------------------------------------------------------------- /app/services/data/my-polling-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/data/my-polling-service.js -------------------------------------------------------------------------------- /app/services/file-uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/file-uploader.js -------------------------------------------------------------------------------- /app/services/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/helpers.js -------------------------------------------------------------------------------- /app/services/hydrator/my-hydrator-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/hydrator/my-hydrator-factory.js -------------------------------------------------------------------------------- /app/services/hydrator/my-hydrator-validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/hydrator/my-hydrator-validators.js -------------------------------------------------------------------------------- /app/services/hydrator/my-pipeline-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/hydrator/my-pipeline-api.js -------------------------------------------------------------------------------- /app/services/logsApi/my-preview-logs-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/logsApi/my-preview-logs-api.js -------------------------------------------------------------------------------- /app/services/my-orderings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/my-orderings.js -------------------------------------------------------------------------------- /app/services/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/namespace.js -------------------------------------------------------------------------------- /app/services/preference/my-preference-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/preference/my-preference-api.js -------------------------------------------------------------------------------- /app/services/programs/program-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/programs/program-helper.js -------------------------------------------------------------------------------- /app/services/query-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/query-helper.js -------------------------------------------------------------------------------- /app/services/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/settings.js -------------------------------------------------------------------------------- /app/services/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/services/storage.js -------------------------------------------------------------------------------- /app/styles/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/bootstrap.less -------------------------------------------------------------------------------- /app/styles/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/common.less -------------------------------------------------------------------------------- /app/styles/css/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/css/fonts.less -------------------------------------------------------------------------------- /app/styles/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/fonts.less -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/fonts/icomoon.svg -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/styles/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/fonts/icomoon.woff -------------------------------------------------------------------------------- /app/styles/img/CDAP_promo_ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/CDAP_promo_ad.jpg -------------------------------------------------------------------------------- /app/styles/img/CaskTracker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/CaskTracker_logo.png -------------------------------------------------------------------------------- /app/styles/img/Hydrator_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/Hydrator_logo.png -------------------------------------------------------------------------------- /app/styles/img/cask_footer_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/cask_footer_logo.svg -------------------------------------------------------------------------------- /app/styles/img/cdap_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/cdap_sprite.png -------------------------------------------------------------------------------- /app/styles/img/chevron_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/chevron_front.png -------------------------------------------------------------------------------- /app/styles/img/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/divider.png -------------------------------------------------------------------------------- /app/styles/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/favicon.png -------------------------------------------------------------------------------- /app/styles/img/gray_chevron_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/gray_chevron_back.png -------------------------------------------------------------------------------- /app/styles/img/gray_chevron_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/gray_chevron_body.png -------------------------------------------------------------------------------- /app/styles/img/gray_chevron_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/gray_chevron_front.png -------------------------------------------------------------------------------- /app/styles/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/grid.png -------------------------------------------------------------------------------- /app/styles/img/hydrator_bg_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/hydrator_bg_pattern.png -------------------------------------------------------------------------------- /app/styles/img/hydrator_header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/hydrator_header_bg.jpg -------------------------------------------------------------------------------- /app/styles/img/scrollPin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/scrollPin.svg -------------------------------------------------------------------------------- /app/styles/img/sliderHandle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/sliderHandle.svg -------------------------------------------------------------------------------- /app/styles/img/tracker_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/img/tracker_logo.png -------------------------------------------------------------------------------- /app/styles/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/modals.less -------------------------------------------------------------------------------- /app/styles/themes/cdap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/themes/cdap.less -------------------------------------------------------------------------------- /app/styles/themes/cdap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/themes/cdap/buttons.less -------------------------------------------------------------------------------- /app/styles/themes/cdap/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/themes/cdap/header.less -------------------------------------------------------------------------------- /app/styles/themes/cdap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/themes/cdap/mixins.less -------------------------------------------------------------------------------- /app/styles/themes/cdap/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/themes/cdap/tabs.less -------------------------------------------------------------------------------- /app/styles/themes/cdap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/themes/cdap/theme.less -------------------------------------------------------------------------------- /app/styles/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/styles/variables.less -------------------------------------------------------------------------------- /app/ui-utils/url-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/app/ui-utils/url-generator.js -------------------------------------------------------------------------------- /bin/svc-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/bin/svc-ui -------------------------------------------------------------------------------- /cdap-ui-upgrade/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cdap-ui-upgrade/.babelrc -------------------------------------------------------------------------------- /cdap-ui-upgrade/dist/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cdap-ui-upgrade/dist/upgrade.js -------------------------------------------------------------------------------- /cdap-ui-upgrade/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cdap-ui-upgrade/index.js -------------------------------------------------------------------------------- /cdap-ui-upgrade/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cdap-ui-upgrade/package.json -------------------------------------------------------------------------------- /cdap-ui-upgrade/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cdap-ui-upgrade/webpack.config.js -------------------------------------------------------------------------------- /checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/checkstyle.xml -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /cloudbuild/builder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cloudbuild/builder/Dockerfile -------------------------------------------------------------------------------- /cloudbuild/cloudbuildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cloudbuild/cloudbuildrun.sh -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/HTTP-batchsource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/HTTP-batchsource.json -------------------------------------------------------------------------------- /cypress/fixtures/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/airports.csv -------------------------------------------------------------------------------- /cypress/fixtures/draft_for_upgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/draft_for_upgrade.json -------------------------------------------------------------------------------- /cypress/fixtures/fll_airport_pipeline2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/fll_airport_pipeline2.json -------------------------------------------------------------------------------- /cypress/fixtures/fll_wrangler-test-pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/fll_wrangler-test-pipeline.json -------------------------------------------------------------------------------- /cypress/fixtures/invalid-plugin.2json: -------------------------------------------------------------------------------- 1 | !.. 2 | -------------------------------------------------------------------------------- /cypress/fixtures/missing-artifact-pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/missing-artifact-pipeline.json -------------------------------------------------------------------------------- /cypress/fixtures/old_userstore_draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/old_userstore_draft.json -------------------------------------------------------------------------------- /cypress/fixtures/pipeline1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/pipeline1.json -------------------------------------------------------------------------------- /cypress/fixtures/pipeline_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/pipeline_old.json -------------------------------------------------------------------------------- /cypress/fixtures/pipeline_with_macros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/pipeline_with_macros.json -------------------------------------------------------------------------------- /cypress/fixtures/plugin-schema/error-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/plugin-schema/error-schema.json -------------------------------------------------------------------------------- /cypress/fixtures/plugin-schema/simple-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/plugin-schema/simple-schema.json -------------------------------------------------------------------------------- /cypress/fixtures/purchase_bad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/fixtures/purchase_bad.csv -------------------------------------------------------------------------------- /cypress/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/helpers.ts -------------------------------------------------------------------------------- /cypress/integration/admin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/admin.spec.ts -------------------------------------------------------------------------------- /cypress/integration/computeprofile.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/computeprofile.spec.ts -------------------------------------------------------------------------------- /cypress/integration/controlcenter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/controlcenter.spec.ts -------------------------------------------------------------------------------- /cypress/integration/fieldlevellineage.v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/fieldlevellineage.v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/lab.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/lab.spec.ts -------------------------------------------------------------------------------- /cypress/integration/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/login.spec.ts -------------------------------------------------------------------------------- /cypress/integration/logviewer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/logviewer.spec.ts -------------------------------------------------------------------------------- /cypress/integration/navbar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/navbar.spec.ts -------------------------------------------------------------------------------- /cypress/integration/nuxtour.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/nuxtour.spec.ts -------------------------------------------------------------------------------- /cypress/integration/page.level.errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/page.level.errors.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.contextmenu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.contextmenu.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.draft.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.draft.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.hierarchy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.hierarchy.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.joiner.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.joiner.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.multiselect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.multiselect.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.runtimeargs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.runtimeargs.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.studio.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.studio.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.triggers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.triggers.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pipeline.upgrade.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pipeline.upgrade.spec.ts -------------------------------------------------------------------------------- /cypress/integration/plugin.schemaeditor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/plugin.schemaeditor.spec.ts -------------------------------------------------------------------------------- /cypress/integration/plugin.upload.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/plugin.upload.spec.ts -------------------------------------------------------------------------------- /cypress/integration/pluginjsoncreator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/pluginjsoncreator.spec.ts -------------------------------------------------------------------------------- /cypress/integration/plugins.validation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/plugins.validation.spec.ts -------------------------------------------------------------------------------- /cypress/integration/securekeymanager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/securekeymanager.spec.ts -------------------------------------------------------------------------------- /cypress/integration/systemdelay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/systemdelay.spec.ts -------------------------------------------------------------------------------- /cypress/integration/widget.codeeditor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/widget.codeeditor.spec.ts -------------------------------------------------------------------------------- /cypress/integration/widgets.CSVWidget.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/widgets.CSVWidget.spec.ts -------------------------------------------------------------------------------- /cypress/integration/wrangler.bigquery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/wrangler.bigquery.spec.ts -------------------------------------------------------------------------------- /cypress/integration/wrangler.gcs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/wrangler.gcs.spec.ts -------------------------------------------------------------------------------- /cypress/integration/wrangler.spanner.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/integration/wrangler.spanner.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/pre-startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/pre-startup.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/support/constants.ts -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /cypress/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/cypress/typings/index.d.ts -------------------------------------------------------------------------------- /gitpod/bamboo_plan_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "planName": "CDAP-BUT" 3 | } 4 | -------------------------------------------------------------------------------- /gitpod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/gitpod/package.json -------------------------------------------------------------------------------- /gitpod/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/gitpod/setup.js -------------------------------------------------------------------------------- /gitpod/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/gitpod/start.js -------------------------------------------------------------------------------- /gitpod/unzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/gitpod/unzip.js -------------------------------------------------------------------------------- /gitpod/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/gitpod/yarn.lock -------------------------------------------------------------------------------- /graphql/Query/pipelinesResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/Query/pipelinesResolver.js -------------------------------------------------------------------------------- /graphql/Query/statusResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/Query/statusResolver.js -------------------------------------------------------------------------------- /graphql/fragments/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/fragments/README.rst -------------------------------------------------------------------------------- /graphql/fragments/fragmentTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/fragments/fragmentTypes.json -------------------------------------------------------------------------------- /graphql/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/graphql.js -------------------------------------------------------------------------------- /graphql/helpers/BatchEndpoints/nextRuntime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/helpers/BatchEndpoints/nextRuntime.js -------------------------------------------------------------------------------- /graphql/helpers/BatchEndpoints/programRuns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/helpers/BatchEndpoints/programRuns.js -------------------------------------------------------------------------------- /graphql/helpers/BatchEndpoints/totalRuns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/helpers/BatchEndpoints/totalRuns.js -------------------------------------------------------------------------------- /graphql/helpers/createLoaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/helpers/createLoaders.js -------------------------------------------------------------------------------- /graphql/resolvers-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/resolvers-common.js -------------------------------------------------------------------------------- /graphql/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/resolvers.js -------------------------------------------------------------------------------- /graphql/schema/artifactSchema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/schema/artifactSchema.graphql -------------------------------------------------------------------------------- /graphql/schema/changeDetailSchema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/schema/changeDetailSchema.graphql -------------------------------------------------------------------------------- /graphql/schema/pipelineRecordSchema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/schema/pipelineRecordSchema.graphql -------------------------------------------------------------------------------- /graphql/schema/rootSchema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/schema/rootSchema.graphql -------------------------------------------------------------------------------- /graphql/schemaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/schemaQuery.js -------------------------------------------------------------------------------- /graphql/types/PipelineRecord/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/types/PipelineRecord/common.js -------------------------------------------------------------------------------- /graphql/types/PipelineRecord/resolvers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/types/PipelineRecord/resolvers.js -------------------------------------------------------------------------------- /graphql/types/PipelineRecord/totalRunsResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/graphql/types/PipelineRecord/totalRunsResolver.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/custom-queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/jest/custom-queries.js -------------------------------------------------------------------------------- /jest/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/jest/jest.setup.js -------------------------------------------------------------------------------- /jest/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/jest/test-utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/package.json -------------------------------------------------------------------------------- /packaged/public/dll/cdap-vendor-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/packaged/public/dll/cdap-vendor-manifest.json -------------------------------------------------------------------------------- /packaged/public/dll/dll.cdap.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/packaged/public/dll/dll.cdap.vendor.js -------------------------------------------------------------------------------- /packaged/public/dll/dll.shared.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/packaged/public/dll/dll.shared.vendor.js -------------------------------------------------------------------------------- /packaged/public/dll/shared-vendor-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/packaged/public/dll/shared-vendor-manifest.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/pom.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/postcss.config.js -------------------------------------------------------------------------------- /sandboxjs/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/features.json -------------------------------------------------------------------------------- /sandboxjs/fetch_sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/fetch_sandbox.js -------------------------------------------------------------------------------- /sandboxjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/package.json -------------------------------------------------------------------------------- /sandboxjs/sandbox_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/sandbox_starter.py -------------------------------------------------------------------------------- /sandboxjs/sandbox_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/sandbox_version.json -------------------------------------------------------------------------------- /sandboxjs/setup_cloudbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/setup_cloudbuild.js -------------------------------------------------------------------------------- /sandboxjs/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/start.js -------------------------------------------------------------------------------- /sandboxjs/unzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/unzip.js -------------------------------------------------------------------------------- /sandboxjs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/sandboxjs/yarn.lock -------------------------------------------------------------------------------- /selenium/integration/admin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/integration/admin.spec.ts -------------------------------------------------------------------------------- /selenium/integration/pipeline.hierarchy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/integration/pipeline.hierarchy.spec.ts -------------------------------------------------------------------------------- /selenium/integration/starter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/integration/starter.spec.ts -------------------------------------------------------------------------------- /selenium/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/support/commands.ts -------------------------------------------------------------------------------- /selenium/support/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/support/constants.ts -------------------------------------------------------------------------------- /selenium/support/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/support/utils.ts -------------------------------------------------------------------------------- /selenium/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/tsconfig.json -------------------------------------------------------------------------------- /selenium/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/selenium/typings/index.d.ts -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server.js -------------------------------------------------------------------------------- /server/aggregator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/aggregator.js -------------------------------------------------------------------------------- /server/cdap-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/cdap-config.js -------------------------------------------------------------------------------- /server/config/cdap-ui-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/cdap-ui-config.json -------------------------------------------------------------------------------- /server/config/config-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/config-reader.js -------------------------------------------------------------------------------- /server/config/development/cdap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/development/cdap.json -------------------------------------------------------------------------------- /server/config/development/security.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /server/config/development/session_secret.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/development/session_secret.key -------------------------------------------------------------------------------- /server/config/hostname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/hostname.js -------------------------------------------------------------------------------- /server/config/log4js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/log4js.json -------------------------------------------------------------------------------- /server/config/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/parser.js -------------------------------------------------------------------------------- /server/config/router-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/router-check.js -------------------------------------------------------------------------------- /server/config/themes/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/themes/default.json -------------------------------------------------------------------------------- /server/config/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/themes/light.json -------------------------------------------------------------------------------- /server/config/ui-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/config/ui-settings.json -------------------------------------------------------------------------------- /server/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/express.js -------------------------------------------------------------------------------- /server/middleware-404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/middleware-404.js -------------------------------------------------------------------------------- /server/token.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/token.mjs -------------------------------------------------------------------------------- /server/token_test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/token_test.mjs -------------------------------------------------------------------------------- /server/uiThemeWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/uiThemeWrapper.js -------------------------------------------------------------------------------- /server/url-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/server/url-helper.js -------------------------------------------------------------------------------- /src/e2e-test/features/admin.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/admin.feature -------------------------------------------------------------------------------- /src/e2e-test/features/computeprofile.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/computeprofile.feature -------------------------------------------------------------------------------- /src/e2e-test/features/controlcenter.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/controlcenter.feature -------------------------------------------------------------------------------- /src/e2e-test/features/logviewer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/logviewer.feature -------------------------------------------------------------------------------- /src/e2e-test/features/namespaces.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/namespaces.feature -------------------------------------------------------------------------------- /src/e2e-test/features/navbar.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/navbar.feature -------------------------------------------------------------------------------- /src/e2e-test/features/nuxtour.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/nuxtour.feature -------------------------------------------------------------------------------- /src/e2e-test/features/page.level.errors.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/page.level.errors.feature -------------------------------------------------------------------------------- /src/e2e-test/features/pipeline.draft.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/pipeline.draft.feature -------------------------------------------------------------------------------- /src/e2e-test/features/pipeline.edit.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/pipeline.edit.feature -------------------------------------------------------------------------------- /src/e2e-test/features/pipeline.hierarchy.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/pipeline.hierarchy.feature -------------------------------------------------------------------------------- /src/e2e-test/features/pipeline.triggers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/pipeline.triggers.feature -------------------------------------------------------------------------------- /src/e2e-test/features/securekeymanager.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/securekeymanager.feature -------------------------------------------------------------------------------- /src/e2e-test/features/widget.codeeditor.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/widget.codeeditor.feature -------------------------------------------------------------------------------- /src/e2e-test/features/widget.csv.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/widget.csv.feature -------------------------------------------------------------------------------- /src/e2e-test/features/widget.keyvalue.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/widget.keyvalue.feature -------------------------------------------------------------------------------- /src/e2e-test/features/wrangler.bigquery.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/wrangler.bigquery.feature -------------------------------------------------------------------------------- /src/e2e-test/features/wrangler.gcs.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/wrangler.gcs.feature -------------------------------------------------------------------------------- /src/e2e-test/features/wrangler.spanner.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/features/wrangler.spanner.feature -------------------------------------------------------------------------------- /src/e2e-test/fixtures/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/fixtures/airports.csv -------------------------------------------------------------------------------- /src/e2e-test/fixtures/fll_airport_pipeline2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/fixtures/fll_airport_pipeline2.json -------------------------------------------------------------------------------- /src/e2e-test/fixtures/logs_generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/fixtures/logs_generator.json -------------------------------------------------------------------------------- /src/e2e-test/fixtures/old_userstore_draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/fixtures/old_userstore_draft.json -------------------------------------------------------------------------------- /src/e2e-test/fixtures/pipeline_with_macros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/e2e-test/fixtures/pipeline_with_macros.json -------------------------------------------------------------------------------- /src/test/resources/cdap-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/src/test/resources/cdap-security.xml -------------------------------------------------------------------------------- /suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/suppressions.xml -------------------------------------------------------------------------------- /templates/validators/validators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/templates/validators/validators.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/typings/declarations.d.ts -------------------------------------------------------------------------------- /ui-devtools/cdap-get-data-testid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/ui-devtools/cdap-get-data-testid/README.md -------------------------------------------------------------------------------- /ui-devtools/cdap-get-data-testid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/ui-devtools/cdap-get-data-testid/index.html -------------------------------------------------------------------------------- /ui-devtools/cdap-get-data-testid/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/ui-devtools/cdap-get-data-testid/manifest.json -------------------------------------------------------------------------------- /ui-devtools/cdap-get-data-testid/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/ui-devtools/cdap-get-data-testid/popup.js -------------------------------------------------------------------------------- /ui-devtools/cdap-get-data-testid/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/ui-devtools/cdap-get-data-testid/serviceWorker.js -------------------------------------------------------------------------------- /ui-devtools/testid-yaml-loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/ui-devtools/testid-yaml-loader/index.js -------------------------------------------------------------------------------- /webpack.config.cdap.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.cdap.dev.js -------------------------------------------------------------------------------- /webpack.config.cdap.dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.cdap.dll.js -------------------------------------------------------------------------------- /webpack.config.cdap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.cdap.js -------------------------------------------------------------------------------- /webpack.config.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.common.js -------------------------------------------------------------------------------- /webpack.config.dlls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.dlls.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.login.js -------------------------------------------------------------------------------- /webpack.config.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.server.js -------------------------------------------------------------------------------- /webpack.config.shared.dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/webpack.config.shared.dll.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdapio/cdap-ui/HEAD/yarn.lock --------------------------------------------------------------------------------