├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── @types └── image-size │ └── index.d.ts ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TECHNICAL_OVERVIEW.md ├── package.json ├── resources ├── dark │ ├── icon-add.svg │ ├── icon-calendar.svg │ ├── icon-info.svg │ ├── icon-jira.svg │ ├── icon-link-external.svg │ ├── icon-pin.svg │ ├── icon-pinned.svg │ ├── icon-refresh.svg │ └── icon-search.svg ├── docs │ └── sample.gif ├── icon-sidebar.svg ├── icon-zeplin.png └── light │ ├── icon-add.svg │ ├── icon-calendar.svg │ ├── icon-info.svg │ ├── icon-jira.svg │ ├── icon-link-external.svg │ ├── icon-pin.svg │ ├── icon-pinned.svg │ ├── icon-refresh.svg │ └── icon-search.svg ├── src ├── analytics │ ├── Analytics.ts │ └── util │ │ ├── MixpanelHelper.ts │ │ └── analyticsTypeUtil.ts ├── coco │ ├── barrel │ │ ├── codeLens │ │ │ └── AddBarrelCodeLensCreator.ts │ │ ├── command │ │ │ ├── AddProjectCommand.ts │ │ │ └── AddStyleguideCommand.ts │ │ ├── diagnostic │ │ │ └── BarrelDiagnosticCreator.ts │ │ ├── flow │ │ │ └── barrelFlow.ts │ │ └── hover │ │ │ ├── BarrelHoverCreator.ts │ │ │ └── BarrelsPropertyHoverData.ts │ ├── common │ │ └── flow │ │ │ └── commonFlow.ts │ ├── component │ │ ├── codeLens │ │ │ ├── AddComponentsCodeLensCreator.ts │ │ │ ├── ComponentCodeLensCreator.ts │ │ │ └── ComponentCodeLensProvider.ts │ │ ├── command │ │ │ ├── AddComponentCommand.ts │ │ │ ├── AddComponentsCommand.ts │ │ │ └── ShowComponentInConfigCommand.ts │ │ ├── data │ │ │ └── ComponentPathStore.ts │ │ ├── diagnostic │ │ │ └── ComponentDiagnosticCreator.ts │ │ ├── documentLink │ │ │ └── ComponentLinkProvider.ts │ │ ├── fileChange │ │ │ └── componentRenameUtil.ts │ │ ├── flow │ │ │ └── componentFlow.ts │ │ ├── hover │ │ │ └── ComponentsPropertyHoverData.ts │ │ ├── model │ │ │ ├── Component.ts │ │ │ └── ComponentPath.ts │ │ └── util │ │ │ └── componentUtil.ts │ ├── config │ │ ├── codeLens │ │ │ ├── ConfigCodeLensProvider.ts │ │ │ ├── ConfigStatisticsCodeLensCreator.ts │ │ │ ├── CustomConfigCodeLensProvider.ts │ │ │ ├── SetConfigCodeLensCreator.ts │ │ │ └── SetConfigRootCodeLensCreator.ts │ │ ├── command │ │ │ ├── CreateConfigCommand.ts │ │ │ ├── OpenConfigCommand.ts │ │ │ ├── SetConfigCommand.ts │ │ │ ├── SetConfigRootCommand.ts │ │ │ └── UnsetConfigCommand.ts │ │ ├── diagnostic │ │ │ └── ConfigDiagnosticsProvider.ts │ │ ├── fileChange │ │ │ └── configRenameUtil.ts │ │ ├── flow │ │ │ └── configFlow.ts │ │ ├── hover │ │ │ └── ConfigHoverCreator.ts │ │ ├── model │ │ │ └── Config.ts │ │ └── util │ │ │ ├── ConfigFolderPaths.ts │ │ │ ├── ConfigPaths.ts │ │ │ ├── CustomConfigs.ts │ │ │ └── configUtil.ts │ ├── link │ │ ├── command │ │ │ └── AddLinkCommand.ts │ │ ├── flow │ │ │ └── linkFlow.ts │ │ ├── hover │ │ │ └── LinksPropertyHoverData.ts │ │ └── model │ │ │ └── Link.ts │ ├── plugin │ │ ├── command │ │ │ └── AddPluginCommand.ts │ │ ├── flow │ │ │ └── pluginFlow.ts │ │ ├── hover │ │ │ └── PluginsPropertyHoverData.ts │ │ └── model │ │ │ └── Plugin.ts │ ├── repository │ │ ├── command │ │ │ └── AddRepositoryCommand.ts │ │ ├── flow │ │ │ └── repositoryFlow.ts │ │ ├── hover │ │ │ └── RepositoryPropertyHoverData.ts │ │ ├── model │ │ │ ├── Repository.ts │ │ │ └── RepositoryType.ts │ │ └── util │ │ │ └── repositoryUtil.ts │ └── zeplinComponent │ │ ├── codeLens │ │ ├── AddZeplinComponentsCodeLensCreator.ts │ │ └── MigrateZeplinComponentsCodeLensCreator.ts │ │ ├── command │ │ ├── AddZeplinComponentsCommand.ts │ │ └── MigrateZeplinComponentsCommand.ts │ │ ├── data │ │ ├── ComponentStore.ts │ │ ├── ConfigBarrelsStore.ts │ │ ├── ConfigZeplinComponentsStore.ts │ │ └── ZeplinComponentStore.ts │ │ ├── diagnostic │ │ └── ZeplinComponentDiagnosticCreator.ts │ │ ├── fileOperation │ │ └── askZeplinComponentMigrationUtil.ts │ │ ├── flow │ │ ├── migrateZeplinComponentsFlow.ts │ │ └── zeplinComponentFlow.ts │ │ ├── hover │ │ └── ZeplinComponentHoverCreator.ts │ │ ├── model │ │ └── ZeplinComponentMigrationResult.ts │ │ └── util │ │ ├── zeplinComponentMigrationUtil.ts │ │ └── zeplinComponentUtil.ts ├── common │ ├── domain │ │ ├── api │ │ │ └── api.ts │ │ ├── barrel │ │ │ ├── Barrel.ts │ │ │ ├── BarrelType.ts │ │ │ ├── data │ │ │ │ ├── BarrelDetailsStore.ts │ │ │ │ ├── BarrelStore.ts │ │ │ │ ├── BarrelsStoreProvider.ts │ │ │ │ ├── OrganizationProjectsStore.ts │ │ │ │ ├── OrganizationStyleguidesStore.ts │ │ │ │ ├── PersonalProjectsStore.ts │ │ │ │ ├── PersonalStyleguidesStore.ts │ │ │ │ ├── ProjectDetailsStore.ts │ │ │ │ ├── StyleguideDetailsStore.ts │ │ │ │ └── WorkspacesStore.ts │ │ │ ├── flow │ │ │ │ └── barrelFlow.ts │ │ │ ├── model │ │ │ │ ├── BarrelDetailsResponse.ts │ │ │ │ ├── OrganizationsResponse.ts │ │ │ │ ├── ProjectDetailsResponse.ts │ │ │ │ ├── ProjectsResponse.ts │ │ │ │ ├── ResponseBarrel.ts │ │ │ │ ├── StyleguideDetailsResponse.ts │ │ │ │ ├── StyleguidesResponse.ts │ │ │ │ └── Workspace.ts │ │ │ └── util │ │ │ │ ├── barrelUi.ts │ │ │ │ └── barrelUtil.ts │ │ ├── componentLike │ │ │ └── model │ │ │ │ ├── ComponentLike.ts │ │ │ │ ├── User.ts │ │ │ │ └── Version.ts │ │ ├── error │ │ │ ├── BaseError.ts │ │ │ └── errorUi.ts │ │ ├── extension │ │ │ ├── configuration.ts │ │ │ ├── extension.ts │ │ │ └── zeplinExtensionUtil.ts │ │ ├── hover │ │ │ ├── ConfigProperty.ts │ │ │ ├── ConfigPropertyHoverCreator.ts │ │ │ ├── ConfigPropertyHoverData.ts │ │ │ └── zeplinHoverUtil.ts │ │ ├── image │ │ │ └── zeplinImageUtil.ts │ │ ├── jira │ │ │ ├── model │ │ │ │ ├── Jira.ts │ │ │ │ ├── JiraAttachable.ts │ │ │ │ └── JiraType.ts │ │ │ └── util │ │ │ │ └── jiraUtil.ts │ │ ├── openInZeplin │ │ │ ├── command │ │ │ │ └── OpenInZeplinCommand.ts │ │ │ ├── flow │ │ │ │ └── openInZeplinFlow.ts │ │ │ ├── model │ │ │ │ ├── ApplicationType.ts │ │ │ │ ├── ZeplinLinkType.ts │ │ │ │ ├── ZeplinUriProvider.ts │ │ │ │ └── ZeplinUris.ts │ │ │ └── util │ │ │ │ ├── openInZeplinUtil.ts │ │ │ │ └── zeplinUris.ts │ │ ├── screen │ │ │ └── model │ │ │ │ └── ResponseScreenSection.ts │ │ ├── store │ │ │ ├── BasicStore.ts │ │ │ ├── CacheHolder.ts │ │ │ ├── Result.ts │ │ │ ├── StaticStore.ts │ │ │ └── Store.ts │ │ ├── tree │ │ │ └── TreeItemContext.ts │ │ ├── uri │ │ │ └── UriHandler.ts │ │ └── zeplinComponent │ │ │ ├── data │ │ │ ├── BarrelDetailsStoreProvider.ts │ │ │ └── ZeplinComponentsStore.ts │ │ │ ├── model │ │ │ ├── BarrelDetails.ts │ │ │ ├── BarrelError.ts │ │ │ ├── ResponseZeplinComponent.ts │ │ │ ├── ZeplinComponent.ts │ │ │ ├── ZeplinComponentDescriptors.ts │ │ │ └── ZeplinComponentSection.ts │ │ │ └── util │ │ │ ├── zeplinComponentUi.ts │ │ │ └── zeplinComponentUtil.ts │ ├── general │ │ ├── arrayUtil.ts │ │ ├── booleanUtil.ts │ │ ├── dateTimeUtil.ts │ │ ├── iconPathUtil.ts │ │ ├── imageUtil.ts │ │ ├── pathUtil.ts │ │ ├── promiseUtil.ts │ │ └── stringUtil.ts │ └── vscode │ │ ├── codeLens │ │ ├── CodeLensCreator.ts │ │ ├── CodeLensProvider.ts │ │ └── codeLensUtil.ts │ │ ├── command │ │ └── Command.ts │ │ ├── diagnostic │ │ ├── DiagnosticCreator.ts │ │ └── diagnosticsUtil.ts │ │ ├── editor │ │ ├── editorUtil.ts │ │ └── textDocumentUtil.ts │ │ ├── extension │ │ ├── ContextProvider.ts │ │ └── extensionUtil.ts │ │ ├── fileChange │ │ └── FileChanges.ts │ │ ├── hover │ │ ├── HoverBuilder.ts │ │ ├── HoverProvider.ts │ │ └── hoverUtil.ts │ │ ├── ide │ │ ├── builtinCommands.ts │ │ ├── vscodeFeatureVersions.ts │ │ └── vscodeUtil.ts │ │ ├── message │ │ ├── MessageBuilder.ts │ │ └── MessageType.ts │ │ ├── quickPick │ │ └── QuickPickerProvider.ts │ │ ├── tree │ │ ├── ExpandedErrorTreeItem.ts │ │ ├── TreeDataProvider.ts │ │ ├── TreeItem.ts │ │ └── TreeItemContextProvider.ts │ │ ├── uri │ │ └── uriUtil.ts │ │ └── workspace │ │ └── workspaceUtil.ts ├── localization │ ├── index.ts │ └── localization.ts ├── log │ ├── Logger.ts │ ├── command │ │ └── SaveLogsCommand.ts │ └── util │ │ └── logUtil.ts ├── preferences │ └── Preferences.ts ├── session │ ├── Session.ts │ ├── codeLens │ │ ├── ClearCacheCodeLensCreator.ts │ │ └── LoginCodeLensCreator.ts │ ├── command │ │ ├── ClearCacheCommand.ts │ │ ├── LoginCommand.ts │ │ ├── LogoutCommand.ts │ │ └── ManualLoginCommand.ts │ ├── flow │ │ └── sessionFlow.ts │ ├── tokenStorage │ │ ├── KeychainTokenStorage.ts │ │ ├── TokenStorage.ts │ │ ├── VscodeTokenStorage.ts │ │ └── index.ts │ └── util │ │ ├── Refresher.ts │ │ └── SessionInitializer.ts └── sidebar │ ├── activity │ ├── data │ │ └── ActivityStore.ts │ ├── model │ │ ├── Activity.ts │ │ ├── ComponentActivity.ts │ │ └── ScreenActivity.ts │ ├── tree │ │ ├── ActivityErrorsTreeItem.ts │ │ ├── ActivitySlotTreeItem.ts │ │ ├── ActivityTreeDataProvider.ts │ │ └── ActivityTreeItem.ts │ └── util │ │ └── activityUi.ts │ ├── barrel │ ├── command │ │ ├── AddBarrelToSidebarCommand.ts │ │ ├── AddProjectToSidebarCommand.ts │ │ ├── AddStyleguideToSidebarCommand.ts │ │ └── RemoveBarrelFromSidebarCommand.ts │ ├── flow │ │ └── barrelFlow.ts │ ├── tree │ │ ├── AddBarrelTreeItem.ts │ │ ├── BarrelTreeDataProvider.ts │ │ ├── BarrelTreeItem.ts │ │ └── NoBarrelTreeItem.ts │ └── util │ │ └── barrelUtil.ts │ ├── jira │ ├── command │ │ └── OpenJiraLinkCommand.ts │ └── flow │ │ └── jiraFlow.ts │ ├── jumpTo │ ├── command │ │ └── JumpToSidebarItemCommand.ts │ ├── data │ │ └── JumpableItemsStore.ts │ ├── flow │ │ └── jumpToFlow.ts │ └── tree │ │ └── JumpToTreeItem.ts │ ├── openInZeplin │ └── command │ │ └── OpenInZeplinOnDoubleClickCommand.ts │ ├── pin │ ├── command │ │ ├── PinComponentToSidebarCommand.ts │ │ ├── PinScreenToSidebarCommand.ts │ │ ├── PinToSidebarCommand.ts │ │ ├── UnpinAllFromSidebarCommand.ts │ │ └── UnpinFromSidebarCommand.ts │ ├── data │ │ ├── PinnableComponentsStore.ts │ │ └── PinnableScreensStore.ts │ ├── flow │ │ └── pinFlow.ts │ ├── model │ │ ├── ComponentPinData.ts │ │ ├── PinData.ts │ │ ├── PinType.ts │ │ └── ScreenPinData.ts │ ├── tree │ │ ├── NoPinnedItemTreeItem.ts │ │ └── PinTreeDataProvider.ts │ └── util │ │ └── pinUtil.ts │ ├── refresh │ ├── command │ │ └── RefreshSidebarCommand.ts │ └── util │ │ └── refreshUtil.ts │ ├── screen │ ├── data │ │ ├── ProjectScreensStore.ts │ │ ├── ScreensStore.ts │ │ └── ScreensStoreProvider.ts │ ├── model │ │ ├── ProjectScreens.ts │ │ ├── ResponseScreen.ts │ │ ├── Screen.ts │ │ ├── ScreenSection.ts │ │ ├── ScreensError.ts │ │ └── ScreensResponse.ts │ ├── tree │ │ ├── ScreenSectionTreeItem.ts │ │ ├── ScreenTreeItem.ts │ │ └── ScreensTreeItem.ts │ └── util │ │ └── screenUi.ts │ └── zeplinComponent │ ├── data │ └── CumulativeBarrelDetailsStore.ts │ └── tree │ ├── BarrelZeplinComponentsTreeItem.ts │ ├── ZeplinComponentSectionTreeItem.ts │ ├── ZeplinComponentTreeItem.ts │ ├── ZeplinComponentsTreeItem.ts │ └── zeplinComponentTreeUtil.ts ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/.vscodeignore -------------------------------------------------------------------------------- /@types/image-size/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/@types/image-size/index.d.ts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/README.md -------------------------------------------------------------------------------- /TECHNICAL_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/TECHNICAL_OVERVIEW.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/package.json -------------------------------------------------------------------------------- /resources/dark/icon-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-add.svg -------------------------------------------------------------------------------- /resources/dark/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-calendar.svg -------------------------------------------------------------------------------- /resources/dark/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-info.svg -------------------------------------------------------------------------------- /resources/dark/icon-jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-jira.svg -------------------------------------------------------------------------------- /resources/dark/icon-link-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-link-external.svg -------------------------------------------------------------------------------- /resources/dark/icon-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-pin.svg -------------------------------------------------------------------------------- /resources/dark/icon-pinned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-pinned.svg -------------------------------------------------------------------------------- /resources/dark/icon-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-refresh.svg -------------------------------------------------------------------------------- /resources/dark/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/dark/icon-search.svg -------------------------------------------------------------------------------- /resources/docs/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/docs/sample.gif -------------------------------------------------------------------------------- /resources/icon-sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/icon-sidebar.svg -------------------------------------------------------------------------------- /resources/icon-zeplin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/icon-zeplin.png -------------------------------------------------------------------------------- /resources/light/icon-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-add.svg -------------------------------------------------------------------------------- /resources/light/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-calendar.svg -------------------------------------------------------------------------------- /resources/light/icon-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-info.svg -------------------------------------------------------------------------------- /resources/light/icon-jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-jira.svg -------------------------------------------------------------------------------- /resources/light/icon-link-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-link-external.svg -------------------------------------------------------------------------------- /resources/light/icon-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-pin.svg -------------------------------------------------------------------------------- /resources/light/icon-pinned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-pinned.svg -------------------------------------------------------------------------------- /resources/light/icon-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-refresh.svg -------------------------------------------------------------------------------- /resources/light/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/resources/light/icon-search.svg -------------------------------------------------------------------------------- /src/analytics/Analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/analytics/Analytics.ts -------------------------------------------------------------------------------- /src/analytics/util/MixpanelHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/analytics/util/MixpanelHelper.ts -------------------------------------------------------------------------------- /src/analytics/util/analyticsTypeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/analytics/util/analyticsTypeUtil.ts -------------------------------------------------------------------------------- /src/coco/barrel/codeLens/AddBarrelCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/barrel/codeLens/AddBarrelCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/barrel/command/AddProjectCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/barrel/command/AddProjectCommand.ts -------------------------------------------------------------------------------- /src/coco/barrel/command/AddStyleguideCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/barrel/command/AddStyleguideCommand.ts -------------------------------------------------------------------------------- /src/coco/barrel/diagnostic/BarrelDiagnosticCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/barrel/diagnostic/BarrelDiagnosticCreator.ts -------------------------------------------------------------------------------- /src/coco/barrel/flow/barrelFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/barrel/flow/barrelFlow.ts -------------------------------------------------------------------------------- /src/coco/barrel/hover/BarrelHoverCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/barrel/hover/BarrelHoverCreator.ts -------------------------------------------------------------------------------- /src/coco/barrel/hover/BarrelsPropertyHoverData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/barrel/hover/BarrelsPropertyHoverData.ts -------------------------------------------------------------------------------- /src/coco/common/flow/commonFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/common/flow/commonFlow.ts -------------------------------------------------------------------------------- /src/coco/component/codeLens/AddComponentsCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/codeLens/AddComponentsCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/component/codeLens/ComponentCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/codeLens/ComponentCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/component/codeLens/ComponentCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/codeLens/ComponentCodeLensProvider.ts -------------------------------------------------------------------------------- /src/coco/component/command/AddComponentCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/command/AddComponentCommand.ts -------------------------------------------------------------------------------- /src/coco/component/command/AddComponentsCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/command/AddComponentsCommand.ts -------------------------------------------------------------------------------- /src/coco/component/command/ShowComponentInConfigCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/command/ShowComponentInConfigCommand.ts -------------------------------------------------------------------------------- /src/coco/component/data/ComponentPathStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/data/ComponentPathStore.ts -------------------------------------------------------------------------------- /src/coco/component/diagnostic/ComponentDiagnosticCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/diagnostic/ComponentDiagnosticCreator.ts -------------------------------------------------------------------------------- /src/coco/component/documentLink/ComponentLinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/documentLink/ComponentLinkProvider.ts -------------------------------------------------------------------------------- /src/coco/component/fileChange/componentRenameUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/fileChange/componentRenameUtil.ts -------------------------------------------------------------------------------- /src/coco/component/flow/componentFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/flow/componentFlow.ts -------------------------------------------------------------------------------- /src/coco/component/hover/ComponentsPropertyHoverData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/hover/ComponentsPropertyHoverData.ts -------------------------------------------------------------------------------- /src/coco/component/model/Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/model/Component.ts -------------------------------------------------------------------------------- /src/coco/component/model/ComponentPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/model/ComponentPath.ts -------------------------------------------------------------------------------- /src/coco/component/util/componentUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/component/util/componentUtil.ts -------------------------------------------------------------------------------- /src/coco/config/codeLens/ConfigCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/codeLens/ConfigCodeLensProvider.ts -------------------------------------------------------------------------------- /src/coco/config/codeLens/ConfigStatisticsCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/codeLens/ConfigStatisticsCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/config/codeLens/CustomConfigCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/codeLens/CustomConfigCodeLensProvider.ts -------------------------------------------------------------------------------- /src/coco/config/codeLens/SetConfigCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/codeLens/SetConfigCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/config/codeLens/SetConfigRootCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/codeLens/SetConfigRootCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/config/command/CreateConfigCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/command/CreateConfigCommand.ts -------------------------------------------------------------------------------- /src/coco/config/command/OpenConfigCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/command/OpenConfigCommand.ts -------------------------------------------------------------------------------- /src/coco/config/command/SetConfigCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/command/SetConfigCommand.ts -------------------------------------------------------------------------------- /src/coco/config/command/SetConfigRootCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/command/SetConfigRootCommand.ts -------------------------------------------------------------------------------- /src/coco/config/command/UnsetConfigCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/command/UnsetConfigCommand.ts -------------------------------------------------------------------------------- /src/coco/config/diagnostic/ConfigDiagnosticsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/diagnostic/ConfigDiagnosticsProvider.ts -------------------------------------------------------------------------------- /src/coco/config/fileChange/configRenameUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/fileChange/configRenameUtil.ts -------------------------------------------------------------------------------- /src/coco/config/flow/configFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/flow/configFlow.ts -------------------------------------------------------------------------------- /src/coco/config/hover/ConfigHoverCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/hover/ConfigHoverCreator.ts -------------------------------------------------------------------------------- /src/coco/config/model/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/model/Config.ts -------------------------------------------------------------------------------- /src/coco/config/util/ConfigFolderPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/util/ConfigFolderPaths.ts -------------------------------------------------------------------------------- /src/coco/config/util/ConfigPaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/util/ConfigPaths.ts -------------------------------------------------------------------------------- /src/coco/config/util/CustomConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/util/CustomConfigs.ts -------------------------------------------------------------------------------- /src/coco/config/util/configUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/config/util/configUtil.ts -------------------------------------------------------------------------------- /src/coco/link/command/AddLinkCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/link/command/AddLinkCommand.ts -------------------------------------------------------------------------------- /src/coco/link/flow/linkFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/link/flow/linkFlow.ts -------------------------------------------------------------------------------- /src/coco/link/hover/LinksPropertyHoverData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/link/hover/LinksPropertyHoverData.ts -------------------------------------------------------------------------------- /src/coco/link/model/Link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/link/model/Link.ts -------------------------------------------------------------------------------- /src/coco/plugin/command/AddPluginCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/plugin/command/AddPluginCommand.ts -------------------------------------------------------------------------------- /src/coco/plugin/flow/pluginFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/plugin/flow/pluginFlow.ts -------------------------------------------------------------------------------- /src/coco/plugin/hover/PluginsPropertyHoverData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/plugin/hover/PluginsPropertyHoverData.ts -------------------------------------------------------------------------------- /src/coco/plugin/model/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/plugin/model/Plugin.ts -------------------------------------------------------------------------------- /src/coco/repository/command/AddRepositoryCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/repository/command/AddRepositoryCommand.ts -------------------------------------------------------------------------------- /src/coco/repository/flow/repositoryFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/repository/flow/repositoryFlow.ts -------------------------------------------------------------------------------- /src/coco/repository/hover/RepositoryPropertyHoverData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/repository/hover/RepositoryPropertyHoverData.ts -------------------------------------------------------------------------------- /src/coco/repository/model/Repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/repository/model/Repository.ts -------------------------------------------------------------------------------- /src/coco/repository/model/RepositoryType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/repository/model/RepositoryType.ts -------------------------------------------------------------------------------- /src/coco/repository/util/repositoryUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/repository/util/repositoryUtil.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/codeLens/AddZeplinComponentsCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/codeLens/AddZeplinComponentsCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/codeLens/MigrateZeplinComponentsCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/codeLens/MigrateZeplinComponentsCodeLensCreator.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/command/AddZeplinComponentsCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/command/AddZeplinComponentsCommand.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/command/MigrateZeplinComponentsCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/command/MigrateZeplinComponentsCommand.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/data/ComponentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/data/ComponentStore.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/data/ConfigBarrelsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/data/ConfigBarrelsStore.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/data/ConfigZeplinComponentsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/data/ConfigZeplinComponentsStore.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/data/ZeplinComponentStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/data/ZeplinComponentStore.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/diagnostic/ZeplinComponentDiagnosticCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/diagnostic/ZeplinComponentDiagnosticCreator.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/fileOperation/askZeplinComponentMigrationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/fileOperation/askZeplinComponentMigrationUtil.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/flow/migrateZeplinComponentsFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/flow/migrateZeplinComponentsFlow.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/flow/zeplinComponentFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/flow/zeplinComponentFlow.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/hover/ZeplinComponentHoverCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/hover/ZeplinComponentHoverCreator.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/model/ZeplinComponentMigrationResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/model/ZeplinComponentMigrationResult.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/util/zeplinComponentMigrationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/util/zeplinComponentMigrationUtil.ts -------------------------------------------------------------------------------- /src/coco/zeplinComponent/util/zeplinComponentUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/coco/zeplinComponent/util/zeplinComponentUtil.ts -------------------------------------------------------------------------------- /src/common/domain/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/api/api.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/Barrel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/Barrel.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/BarrelType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/BarrelType.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/BarrelDetailsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/BarrelDetailsStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/BarrelStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/BarrelStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/BarrelsStoreProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/BarrelsStoreProvider.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/OrganizationProjectsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/OrganizationProjectsStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/OrganizationStyleguidesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/OrganizationStyleguidesStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/PersonalProjectsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/PersonalProjectsStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/PersonalStyleguidesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/PersonalStyleguidesStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/ProjectDetailsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/ProjectDetailsStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/StyleguideDetailsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/StyleguideDetailsStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/data/WorkspacesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/data/WorkspacesStore.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/flow/barrelFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/flow/barrelFlow.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/BarrelDetailsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/BarrelDetailsResponse.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/OrganizationsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/OrganizationsResponse.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/ProjectDetailsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/ProjectDetailsResponse.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/ProjectsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/ProjectsResponse.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/ResponseBarrel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/ResponseBarrel.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/StyleguideDetailsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/StyleguideDetailsResponse.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/StyleguidesResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/StyleguidesResponse.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/model/Workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/model/Workspace.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/util/barrelUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/util/barrelUi.ts -------------------------------------------------------------------------------- /src/common/domain/barrel/util/barrelUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/barrel/util/barrelUtil.ts -------------------------------------------------------------------------------- /src/common/domain/componentLike/model/ComponentLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/componentLike/model/ComponentLike.ts -------------------------------------------------------------------------------- /src/common/domain/componentLike/model/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/componentLike/model/User.ts -------------------------------------------------------------------------------- /src/common/domain/componentLike/model/Version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/componentLike/model/Version.ts -------------------------------------------------------------------------------- /src/common/domain/error/BaseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/error/BaseError.ts -------------------------------------------------------------------------------- /src/common/domain/error/errorUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/error/errorUi.ts -------------------------------------------------------------------------------- /src/common/domain/extension/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/extension/configuration.ts -------------------------------------------------------------------------------- /src/common/domain/extension/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/extension/extension.ts -------------------------------------------------------------------------------- /src/common/domain/extension/zeplinExtensionUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/extension/zeplinExtensionUtil.ts -------------------------------------------------------------------------------- /src/common/domain/hover/ConfigProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/hover/ConfigProperty.ts -------------------------------------------------------------------------------- /src/common/domain/hover/ConfigPropertyHoverCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/hover/ConfigPropertyHoverCreator.ts -------------------------------------------------------------------------------- /src/common/domain/hover/ConfigPropertyHoverData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/hover/ConfigPropertyHoverData.ts -------------------------------------------------------------------------------- /src/common/domain/hover/zeplinHoverUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/hover/zeplinHoverUtil.ts -------------------------------------------------------------------------------- /src/common/domain/image/zeplinImageUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/image/zeplinImageUtil.ts -------------------------------------------------------------------------------- /src/common/domain/jira/model/Jira.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/jira/model/Jira.ts -------------------------------------------------------------------------------- /src/common/domain/jira/model/JiraAttachable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/jira/model/JiraAttachable.ts -------------------------------------------------------------------------------- /src/common/domain/jira/model/JiraType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/jira/model/JiraType.ts -------------------------------------------------------------------------------- /src/common/domain/jira/util/jiraUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/jira/util/jiraUtil.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/command/OpenInZeplinCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/command/OpenInZeplinCommand.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/flow/openInZeplinFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/flow/openInZeplinFlow.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/model/ApplicationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/model/ApplicationType.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/model/ZeplinLinkType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/model/ZeplinLinkType.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/model/ZeplinUriProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/model/ZeplinUriProvider.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/model/ZeplinUris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/model/ZeplinUris.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/util/openInZeplinUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/util/openInZeplinUtil.ts -------------------------------------------------------------------------------- /src/common/domain/openInZeplin/util/zeplinUris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/openInZeplin/util/zeplinUris.ts -------------------------------------------------------------------------------- /src/common/domain/screen/model/ResponseScreenSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/screen/model/ResponseScreenSection.ts -------------------------------------------------------------------------------- /src/common/domain/store/BasicStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/store/BasicStore.ts -------------------------------------------------------------------------------- /src/common/domain/store/CacheHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/store/CacheHolder.ts -------------------------------------------------------------------------------- /src/common/domain/store/Result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/store/Result.ts -------------------------------------------------------------------------------- /src/common/domain/store/StaticStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/store/StaticStore.ts -------------------------------------------------------------------------------- /src/common/domain/store/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/store/Store.ts -------------------------------------------------------------------------------- /src/common/domain/tree/TreeItemContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/tree/TreeItemContext.ts -------------------------------------------------------------------------------- /src/common/domain/uri/UriHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/uri/UriHandler.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/data/BarrelDetailsStoreProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/data/BarrelDetailsStoreProvider.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/data/ZeplinComponentsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/data/ZeplinComponentsStore.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/model/BarrelDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/model/BarrelDetails.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/model/BarrelError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/model/BarrelError.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/model/ResponseZeplinComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/model/ResponseZeplinComponent.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/model/ZeplinComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/model/ZeplinComponent.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/model/ZeplinComponentDescriptors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/model/ZeplinComponentDescriptors.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/model/ZeplinComponentSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/model/ZeplinComponentSection.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/util/zeplinComponentUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/util/zeplinComponentUi.ts -------------------------------------------------------------------------------- /src/common/domain/zeplinComponent/util/zeplinComponentUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/domain/zeplinComponent/util/zeplinComponentUtil.ts -------------------------------------------------------------------------------- /src/common/general/arrayUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/arrayUtil.ts -------------------------------------------------------------------------------- /src/common/general/booleanUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/booleanUtil.ts -------------------------------------------------------------------------------- /src/common/general/dateTimeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/dateTimeUtil.ts -------------------------------------------------------------------------------- /src/common/general/iconPathUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/iconPathUtil.ts -------------------------------------------------------------------------------- /src/common/general/imageUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/imageUtil.ts -------------------------------------------------------------------------------- /src/common/general/pathUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/pathUtil.ts -------------------------------------------------------------------------------- /src/common/general/promiseUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/promiseUtil.ts -------------------------------------------------------------------------------- /src/common/general/stringUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/general/stringUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/codeLens/CodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/codeLens/CodeLensCreator.ts -------------------------------------------------------------------------------- /src/common/vscode/codeLens/CodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/codeLens/CodeLensProvider.ts -------------------------------------------------------------------------------- /src/common/vscode/codeLens/codeLensUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/codeLens/codeLensUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/command/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/command/Command.ts -------------------------------------------------------------------------------- /src/common/vscode/diagnostic/DiagnosticCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/diagnostic/DiagnosticCreator.ts -------------------------------------------------------------------------------- /src/common/vscode/diagnostic/diagnosticsUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/diagnostic/diagnosticsUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/editor/editorUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/editor/editorUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/editor/textDocumentUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/editor/textDocumentUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/extension/ContextProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/extension/ContextProvider.ts -------------------------------------------------------------------------------- /src/common/vscode/extension/extensionUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/extension/extensionUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/fileChange/FileChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/fileChange/FileChanges.ts -------------------------------------------------------------------------------- /src/common/vscode/hover/HoverBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/hover/HoverBuilder.ts -------------------------------------------------------------------------------- /src/common/vscode/hover/HoverProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/hover/HoverProvider.ts -------------------------------------------------------------------------------- /src/common/vscode/hover/hoverUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/hover/hoverUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/ide/builtinCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/ide/builtinCommands.ts -------------------------------------------------------------------------------- /src/common/vscode/ide/vscodeFeatureVersions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/ide/vscodeFeatureVersions.ts -------------------------------------------------------------------------------- /src/common/vscode/ide/vscodeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/ide/vscodeUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/message/MessageBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/message/MessageBuilder.ts -------------------------------------------------------------------------------- /src/common/vscode/message/MessageType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/message/MessageType.ts -------------------------------------------------------------------------------- /src/common/vscode/quickPick/QuickPickerProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/quickPick/QuickPickerProvider.ts -------------------------------------------------------------------------------- /src/common/vscode/tree/ExpandedErrorTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/tree/ExpandedErrorTreeItem.ts -------------------------------------------------------------------------------- /src/common/vscode/tree/TreeDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/tree/TreeDataProvider.ts -------------------------------------------------------------------------------- /src/common/vscode/tree/TreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/tree/TreeItem.ts -------------------------------------------------------------------------------- /src/common/vscode/tree/TreeItemContextProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/tree/TreeItemContextProvider.ts -------------------------------------------------------------------------------- /src/common/vscode/uri/uriUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/uri/uriUtil.ts -------------------------------------------------------------------------------- /src/common/vscode/workspace/workspaceUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/common/vscode/workspace/workspaceUtil.ts -------------------------------------------------------------------------------- /src/localization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/localization/index.ts -------------------------------------------------------------------------------- /src/localization/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/localization/localization.ts -------------------------------------------------------------------------------- /src/log/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/log/Logger.ts -------------------------------------------------------------------------------- /src/log/command/SaveLogsCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/log/command/SaveLogsCommand.ts -------------------------------------------------------------------------------- /src/log/util/logUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/log/util/logUtil.ts -------------------------------------------------------------------------------- /src/preferences/Preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/preferences/Preferences.ts -------------------------------------------------------------------------------- /src/session/Session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/Session.ts -------------------------------------------------------------------------------- /src/session/codeLens/ClearCacheCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/codeLens/ClearCacheCodeLensCreator.ts -------------------------------------------------------------------------------- /src/session/codeLens/LoginCodeLensCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/codeLens/LoginCodeLensCreator.ts -------------------------------------------------------------------------------- /src/session/command/ClearCacheCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/command/ClearCacheCommand.ts -------------------------------------------------------------------------------- /src/session/command/LoginCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/command/LoginCommand.ts -------------------------------------------------------------------------------- /src/session/command/LogoutCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/command/LogoutCommand.ts -------------------------------------------------------------------------------- /src/session/command/ManualLoginCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/command/ManualLoginCommand.ts -------------------------------------------------------------------------------- /src/session/flow/sessionFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/flow/sessionFlow.ts -------------------------------------------------------------------------------- /src/session/tokenStorage/KeychainTokenStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/tokenStorage/KeychainTokenStorage.ts -------------------------------------------------------------------------------- /src/session/tokenStorage/TokenStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/tokenStorage/TokenStorage.ts -------------------------------------------------------------------------------- /src/session/tokenStorage/VscodeTokenStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/tokenStorage/VscodeTokenStorage.ts -------------------------------------------------------------------------------- /src/session/tokenStorage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/tokenStorage/index.ts -------------------------------------------------------------------------------- /src/session/util/Refresher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/util/Refresher.ts -------------------------------------------------------------------------------- /src/session/util/SessionInitializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/session/util/SessionInitializer.ts -------------------------------------------------------------------------------- /src/sidebar/activity/data/ActivityStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/data/ActivityStore.ts -------------------------------------------------------------------------------- /src/sidebar/activity/model/Activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/model/Activity.ts -------------------------------------------------------------------------------- /src/sidebar/activity/model/ComponentActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/model/ComponentActivity.ts -------------------------------------------------------------------------------- /src/sidebar/activity/model/ScreenActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/model/ScreenActivity.ts -------------------------------------------------------------------------------- /src/sidebar/activity/tree/ActivityErrorsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/tree/ActivityErrorsTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/activity/tree/ActivitySlotTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/tree/ActivitySlotTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/activity/tree/ActivityTreeDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/tree/ActivityTreeDataProvider.ts -------------------------------------------------------------------------------- /src/sidebar/activity/tree/ActivityTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/tree/ActivityTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/activity/util/activityUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/activity/util/activityUi.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/command/AddBarrelToSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/command/AddBarrelToSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/command/AddProjectToSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/command/AddProjectToSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/command/AddStyleguideToSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/command/AddStyleguideToSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/command/RemoveBarrelFromSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/command/RemoveBarrelFromSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/flow/barrelFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/flow/barrelFlow.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/tree/AddBarrelTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/tree/AddBarrelTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/tree/BarrelTreeDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/tree/BarrelTreeDataProvider.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/tree/BarrelTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/tree/BarrelTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/tree/NoBarrelTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/tree/NoBarrelTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/barrel/util/barrelUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/barrel/util/barrelUtil.ts -------------------------------------------------------------------------------- /src/sidebar/jira/command/OpenJiraLinkCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/jira/command/OpenJiraLinkCommand.ts -------------------------------------------------------------------------------- /src/sidebar/jira/flow/jiraFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/jira/flow/jiraFlow.ts -------------------------------------------------------------------------------- /src/sidebar/jumpTo/command/JumpToSidebarItemCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/jumpTo/command/JumpToSidebarItemCommand.ts -------------------------------------------------------------------------------- /src/sidebar/jumpTo/data/JumpableItemsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/jumpTo/data/JumpableItemsStore.ts -------------------------------------------------------------------------------- /src/sidebar/jumpTo/flow/jumpToFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/jumpTo/flow/jumpToFlow.ts -------------------------------------------------------------------------------- /src/sidebar/jumpTo/tree/JumpToTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/jumpTo/tree/JumpToTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/openInZeplin/command/OpenInZeplinOnDoubleClickCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/openInZeplin/command/OpenInZeplinOnDoubleClickCommand.ts -------------------------------------------------------------------------------- /src/sidebar/pin/command/PinComponentToSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/command/PinComponentToSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/pin/command/PinScreenToSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/command/PinScreenToSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/pin/command/PinToSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/command/PinToSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/pin/command/UnpinAllFromSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/command/UnpinAllFromSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/pin/command/UnpinFromSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/command/UnpinFromSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/pin/data/PinnableComponentsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/data/PinnableComponentsStore.ts -------------------------------------------------------------------------------- /src/sidebar/pin/data/PinnableScreensStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/data/PinnableScreensStore.ts -------------------------------------------------------------------------------- /src/sidebar/pin/flow/pinFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/flow/pinFlow.ts -------------------------------------------------------------------------------- /src/sidebar/pin/model/ComponentPinData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/model/ComponentPinData.ts -------------------------------------------------------------------------------- /src/sidebar/pin/model/PinData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/model/PinData.ts -------------------------------------------------------------------------------- /src/sidebar/pin/model/PinType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/model/PinType.ts -------------------------------------------------------------------------------- /src/sidebar/pin/model/ScreenPinData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/model/ScreenPinData.ts -------------------------------------------------------------------------------- /src/sidebar/pin/tree/NoPinnedItemTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/tree/NoPinnedItemTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/pin/tree/PinTreeDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/tree/PinTreeDataProvider.ts -------------------------------------------------------------------------------- /src/sidebar/pin/util/pinUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/pin/util/pinUtil.ts -------------------------------------------------------------------------------- /src/sidebar/refresh/command/RefreshSidebarCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/refresh/command/RefreshSidebarCommand.ts -------------------------------------------------------------------------------- /src/sidebar/refresh/util/refreshUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/refresh/util/refreshUtil.ts -------------------------------------------------------------------------------- /src/sidebar/screen/data/ProjectScreensStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/data/ProjectScreensStore.ts -------------------------------------------------------------------------------- /src/sidebar/screen/data/ScreensStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/data/ScreensStore.ts -------------------------------------------------------------------------------- /src/sidebar/screen/data/ScreensStoreProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/data/ScreensStoreProvider.ts -------------------------------------------------------------------------------- /src/sidebar/screen/model/ProjectScreens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/model/ProjectScreens.ts -------------------------------------------------------------------------------- /src/sidebar/screen/model/ResponseScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/model/ResponseScreen.ts -------------------------------------------------------------------------------- /src/sidebar/screen/model/Screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/model/Screen.ts -------------------------------------------------------------------------------- /src/sidebar/screen/model/ScreenSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/model/ScreenSection.ts -------------------------------------------------------------------------------- /src/sidebar/screen/model/ScreensError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/model/ScreensError.ts -------------------------------------------------------------------------------- /src/sidebar/screen/model/ScreensResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/model/ScreensResponse.ts -------------------------------------------------------------------------------- /src/sidebar/screen/tree/ScreenSectionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/tree/ScreenSectionTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/screen/tree/ScreenTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/tree/ScreenTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/screen/tree/ScreensTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/tree/ScreensTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/screen/util/screenUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/screen/util/screenUi.ts -------------------------------------------------------------------------------- /src/sidebar/zeplinComponent/data/CumulativeBarrelDetailsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/zeplinComponent/data/CumulativeBarrelDetailsStore.ts -------------------------------------------------------------------------------- /src/sidebar/zeplinComponent/tree/BarrelZeplinComponentsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/zeplinComponent/tree/BarrelZeplinComponentsTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/zeplinComponent/tree/ZeplinComponentSectionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/zeplinComponent/tree/ZeplinComponentSectionTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/zeplinComponent/tree/ZeplinComponentTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/zeplinComponent/tree/ZeplinComponentTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/zeplinComponent/tree/ZeplinComponentsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/zeplinComponent/tree/ZeplinComponentsTreeItem.ts -------------------------------------------------------------------------------- /src/sidebar/zeplinComponent/tree/zeplinComponentTreeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/src/sidebar/zeplinComponent/tree/zeplinComponentTreeUtil.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeplin/vscode-extension/HEAD/webpack.config.js --------------------------------------------------------------------------------