@spinnaker/core 0.0.0-2025.1-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9050 -0
- package/LICENSE.txt +203 -0
- package/codegen.yml +18 -0
- package/dist/account/AccountSelectInput.d.ts +24 -0
- package/dist/account/AccountService.d.ts +68 -0
- package/dist/account/AccountTag.d.ts +20 -0
- package/dist/account/account.module.d.ts +2 -0
- package/dist/account/accountSelect.wrapper.d.ts +1 -0
- package/dist/account/accountSelectField.component.d.ts +1 -0
- package/dist/account/accountTag.component.d.ts +4 -0
- package/dist/account/collapsibleAccountTag.directive.d.ts +2 -0
- package/dist/account/index.d.ts +3 -0
- package/dist/account/providerToggles.directive.d.ts +2 -0
- package/dist/analytics/GoogleAnalyticsInitializer.d.ts +2 -0
- package/dist/analytics/angulartics.module.d.ts +2 -0
- package/dist/api/ApiService.d.ts +133 -0
- package/dist/api/index.d.ts +1 -0
- package/dist/api/mock/expectedRequest.d.ts +68 -0
- package/dist/api/mock/jasmine.d.ts +7 -0
- package/dist/api/mock/mockHttpClient.d.ts +68 -0
- package/dist/api/mock/mockHttpUtils.d.ts +16 -0
- package/dist/api/mock/receivedRequest.d.ts +14 -0
- package/dist/api/network.interceptor.d.ts +24 -0
- package/dist/application/ApplicationComponent.d.ts +16 -0
- package/dist/application/ApplicationContext.d.ts +6 -0
- package/dist/application/ApplicationFreshIcon.d.ts +4 -0
- package/dist/application/ApplicationIcon.d.ts +9 -0
- package/dist/application/application.model.d.ts +134 -0
- package/dist/application/application.module.d.ts +4 -0
- package/dist/application/application.state.provider.d.ts +37 -0
- package/dist/application/applicationModel.builder.d.ts +9 -0
- package/dist/application/applicationSearchResultType.d.ts +18 -0
- package/dist/application/applications.state.provider.d.ts +1 -0
- package/dist/application/config/ApplicationConfig.d.ts +7 -0
- package/dist/application/config/DeleteApplicationSection.d.ts +6 -0
- package/dist/application/config/appConfig.dataSource.d.ts +2 -0
- package/dist/application/config/appConfig.states.d.ts +1 -0
- package/dist/application/config/applicationAttributes.directive.d.ts +2 -0
- package/dist/application/config/applicationConfig.controller.d.ts +2 -0
- package/dist/application/config/applicationNotifications.directive.d.ts +2 -0
- package/dist/application/config/applicationSnapshotSection.component.d.ts +2 -0
- package/dist/application/config/customBanner/CustomBannerConfig.d.ts +32 -0
- package/dist/application/config/customBanner/customBannerColors.d.ts +3 -0
- package/dist/application/config/customBanner/customBannerConfig.component.d.ts +1 -0
- package/dist/application/config/dataSources/applicationDataSourceEditor.component.d.ts +20 -0
- package/dist/application/config/defaultTagFilter/DefaultTagFilterConfig.d.ts +27 -0
- package/dist/application/config/defaultTagFilter/defaultTagFilterConfig.component.d.ts +1 -0
- package/dist/application/config/deleteApplicationSection.module.d.ts +1 -0
- package/dist/application/config/footer/ConfigSectionFooter.d.ts +12 -0
- package/dist/application/config/footer/configSectionFooter.component.d.ts +21 -0
- package/dist/application/config/links/applicationLinks.component.d.ts +2 -0
- package/dist/application/config/links/editLinks.modal.controller.d.ts +2 -0
- package/dist/application/config/trafficGuard/trafficGuardConfig.component.d.ts +31 -0
- package/dist/application/config/trafficGuard/trafficGuardConfig.help.d.ts +1 -0
- package/dist/application/index.d.ts +17 -0
- package/dist/application/listExtractor/AppListExtractor.d.ts +17 -0
- package/dist/application/modal/PermissionsConfigurer.d.ts +39 -0
- package/dist/application/modal/PlatformHealthOverride.d.ts +16 -0
- package/dist/application/modal/applicationProviderFields.component.d.ts +2 -0
- package/dist/application/modal/createApplication.modal.controller.d.ts +2 -0
- package/dist/application/modal/editApplication.controller.modal.d.ts +2 -0
- package/dist/application/modal/permissionsConfigurer.component.d.ts +1 -0
- package/dist/application/modal/platformHealthOverride.directive.d.ts +2 -0
- package/dist/application/modal/upsertApplication.help.d.ts +1 -0
- package/dist/application/modal/validation/ApplicationNameValidator.d.ts +42 -0
- package/dist/application/modal/validation/ExampleApplicationNameValidator.d.ts +25 -0
- package/dist/application/modal/validation/applicationNameValidationMessages.component.d.ts +1 -0
- package/dist/application/modal/validation/validateApplicationName.directive.d.ts +1 -0
- package/dist/application/nav/AppRefresher.d.ts +6 -0
- package/dist/application/nav/AppRefresherIcon.d.ts +8 -0
- package/dist/application/nav/ApplicationNavigation.d.ts +7 -0
- package/dist/application/nav/BottomSection.d.ts +7 -0
- package/dist/application/nav/NavItem.d.ts +9 -0
- package/dist/application/nav/NavRoute.d.ts +8 -0
- package/dist/application/nav/NavSection.d.ts +8 -0
- package/dist/application/nav/PagerDutyButton.d.ts +9 -0
- package/dist/application/nav/defaultCategories.d.ts +2 -0
- package/dist/application/nav/navAtoms.d.ts +1 -0
- package/dist/application/nav/navigationCategory.registry.d.ts +21 -0
- package/dist/application/search/Applications.d.ts +30 -0
- package/dist/application/search/ApplicationsTable.d.ts +8 -0
- package/dist/application/search/PaginationControls.d.ts +8 -0
- package/dist/application/service/ApplicationDataSourceRegistry.d.ts +12 -0
- package/dist/application/service/ApplicationReader.d.ts +28 -0
- package/dist/application/service/ApplicationWriter.d.ts +13 -0
- package/dist/application/service/InferredApplicationWarningService.d.ts +9 -0
- package/dist/application/service/applicationDataSource.d.ts +338 -0
- package/dist/artifact/ArtifactIconService.d.ts +5 -0
- package/dist/artifact/ArtifactReferenceService.d.ts +43 -0
- package/dist/artifact/ArtifactTypes.d.ts +5 -0
- package/dist/artifact/ExpectedArtifactSelectorViewController.d.ts +31 -0
- package/dist/artifact/ExpectedArtifactSelectorViewControllerAngularDelegate.d.ts +15 -0
- package/dist/artifact/IArtifactAccountPair.d.ts +6 -0
- package/dist/artifact/NgAppEngineDeployArtifactDelegate.d.ts +18 -0
- package/dist/artifact/NgAppengineConfigArtifactDelegate.d.ts +25 -0
- package/dist/artifact/NgBakeManifestArtifactDelegate.d.ts +23 -0
- package/dist/artifact/NgGCEImageArtifactDelegate.d.ts +18 -0
- package/dist/artifact/NgGenericArtifactDelegate.d.ts +20 -0
- package/dist/artifact/artifact.module.d.ts +1 -0
- package/dist/artifact/artifactTab.d.ts +1 -0
- package/dist/artifact/expectedArtifact.service.d.ts +11 -0
- package/dist/artifact/expectedArtifactMultiSelector.component.d.ts +2 -0
- package/dist/artifact/imageSourceSelector.component.d.ts +1 -0
- package/dist/artifact/index.d.ts +23 -0
- package/dist/artifact/react/ArtifactAccountSelector.d.ts +14 -0
- package/dist/artifact/react/ArtifactEditor.d.ts +21 -0
- package/dist/artifact/react/ArtifactIcon.d.ts +11 -0
- package/dist/artifact/react/ArtifactIconList.d.ts +5 -0
- package/dist/artifact/react/ExecutionArtifactTab.d.ts +9 -0
- package/dist/artifact/react/ExpectedArtifactEditor.d.ts +47 -0
- package/dist/artifact/react/ExpectedArtifactKindSelector.d.ts +29 -0
- package/dist/artifact/react/ExpectedArtifactModal.d.ts +24 -0
- package/dist/artifact/react/ExpectedArtifactSelector.d.ts +30 -0
- package/dist/artifact/react/ExpectedArtifactSourceSelector.d.ts +26 -0
- package/dist/artifact/react/StageArtifactSelector.d.ts +29 -0
- package/dist/artifact/react/StageArtifactSelectorDelegate.d.ts +10 -0
- package/dist/artifact/stageArtifactSelectorDelegate.d.ts +1 -0
- package/dist/authentication/AuthenticationInitializer.d.ts +12 -0
- package/dist/authentication/AuthenticationService.d.ts +15 -0
- package/dist/authentication/LoggedOutModal.d.ts +6 -0
- package/dist/authentication/authentication.interceptor.service.d.ts +8 -0
- package/dist/authentication/authentication.module.d.ts +1 -0
- package/dist/authentication/index.d.ts +3 -0
- package/dist/authentication/userMenu/UserMenu.d.ts +3 -0
- package/dist/banner/BannerContainer.d.ts +9 -0
- package/dist/banner/bannerContainer.component.d.ts +2 -0
- package/dist/banner/bannerContainer.module.d.ts +2 -0
- package/dist/banner/customBannersByName.d.ts +24 -0
- package/dist/banner/index.d.ts +1 -0
- package/dist/bootstrap/SpinnakerContainer.d.ts +6 -0
- package/dist/bootstrap/angular.config.d.ts +1 -0
- package/dist/bootstrap/appInit.d.ts +1 -0
- package/dist/bootstrap/bootstrap.module.d.ts +3 -0
- package/dist/bootstrap/index.d.ts +11 -0
- package/dist/bootstrap/paramChangedHelper.d.ts +4 -0
- package/dist/bootstrap/spinnaker.component.d.ts +1 -0
- package/dist/bootstrap/spinnakerContainer.component.d.ts +1 -0
- package/dist/bootstrap/stateChange.logger.d.ts +1 -0
- package/dist/bootstrap/transitionTrace.toggle.d.ts +1 -0
- package/dist/bootstrap/uiBootstrap.config.d.ts +1 -0
- package/dist/bootstrap/uiRouterRxjs.d.ts +1 -0
- package/dist/bootstrap/uiRouterVisualizer.toggle.d.ts +1 -0
- package/dist/bootstrap/uiSelect.config.d.ts +1 -0
- package/dist/cache/abstractBaseCache.d.ts +10 -0
- package/dist/cache/cacheInitializer.service.d.ts +18 -0
- package/dist/cache/collapsibleSectionStateCache.d.ts +12 -0
- package/dist/cache/deckCacheFactory.d.ts +49 -0
- package/dist/cache/index.d.ts +6 -0
- package/dist/cache/infrastructureCacheConfig.d.ts +10 -0
- package/dist/cache/infrastructureCaches.d.ts +9 -0
- package/dist/cache/viewStateCache.d.ts +7 -0
- package/dist/cancelModal/CancelModal.d.ts +27 -0
- package/dist/certificates/certificate.read.service.d.ts +11 -0
- package/dist/certificates/index.d.ts +1 -0
- package/dist/chaosMonkey/chaosMonkey.help.d.ts +1 -0
- package/dist/chaosMonkey/chaosMonkeyConfig.component.d.ts +32 -0
- package/dist/chaosMonkey/chaosMonkeyExceptions.component.d.ts +19 -0
- package/dist/chaosMonkey/chaosMonkeyNewApplicationConfig.component.d.ts +6 -0
- package/dist/ci/CIReader.d.ts +7 -0
- package/dist/ci/ci.dataSource.d.ts +2 -0
- package/dist/ci/ci.module.d.ts +2 -0
- package/dist/ci/ci.states.d.ts +2 -0
- package/dist/ci/components/BuildDetailsScrollContainerContext.d.ts +2 -0
- package/dist/ci/components/BuildInfoArtifactsTab.d.ts +7 -0
- package/dist/ci/components/BuildInfoDetails.d.ts +7 -0
- package/dist/ci/components/BuildInfoLogsTab.d.ts +7 -0
- package/dist/ci/components/BuildInfoSummaryCard.d.ts +9 -0
- package/dist/ci/components/Builds.d.ts +8 -0
- package/dist/ci/domain.d.ts +60 -0
- package/dist/ci/igor.service.d.ts +17 -0
- package/dist/ci/index.d.ts +1 -0
- package/dist/cloudProvider/CloudProviderLabel.d.ts +13 -0
- package/dist/cloudProvider/CloudProviderLogo.d.ts +9 -0
- package/dist/cloudProvider/CloudProviderRegistry.d.ts +18 -0
- package/dist/cloudProvider/cloudProvider.module.d.ts +1 -0
- package/dist/cloudProvider/cloudProviderLabel.directive.d.ts +2 -0
- package/dist/cloudProvider/cloudProviderLogo.component.d.ts +1 -0
- package/dist/cloudProvider/index.d.ts +5 -0
- package/dist/cloudProvider/providerSelection/ProviderSelectionModal.d.ts +16 -0
- package/dist/cloudProvider/providerSelection/ProviderSelectionService.d.ts +8 -0
- package/dist/cloudProvider/providerSelection/providerSelector.directive.d.ts +2 -0
- package/dist/cloudProvider/providerService.delegate.d.ts +11 -0
- package/dist/cluster/AllClustersGroupings.d.ts +31 -0
- package/dist/cluster/ClusterPod.d.ts +19 -0
- package/dist/cluster/ClusterPodTitleWrapper.d.ts +11 -0
- package/dist/cluster/ClusterRuleMatcher.d.ts +14 -0
- package/dist/cluster/DefaultClusterPodTitle.d.ts +5 -0
- package/dist/cluster/allClusters.controller.d.ts +2 -0
- package/dist/cluster/allClustersGroupings.component.d.ts +1 -0
- package/dist/cluster/cluster.module.d.ts +2 -0
- package/dist/cluster/cluster.service.d.ts +32 -0
- package/dist/cluster/clusterSearchResultType.d.ts +7 -0
- package/dist/cluster/filter/ClusterFilterModel.d.ts +6 -0
- package/dist/cluster/filter/ClusterFilterService.d.ts +59 -0
- package/dist/cluster/filter/ClusterFilters.d.ts +6 -0
- package/dist/cluster/filter/FilterSearch.d.ts +9 -0
- package/dist/cluster/filter/FilterSection.d.ts +15 -0
- package/dist/cluster/filter/LabelFilter.d.ts +32 -0
- package/dist/cluster/filter/MultiselectModel.d.ts +32 -0
- package/dist/cluster/filter/clusterDependentFilterHelper.service.d.ts +1 -0
- package/dist/cluster/filter/clusterFilter.component.d.ts +1 -0
- package/dist/cluster/filter/labelFilter.component.d.ts +1 -0
- package/dist/cluster/filter/labelFilterUtils.d.ts +15 -0
- package/dist/cluster/index.d.ts +7 -0
- package/dist/cluster/onDemand/onDemandClusterPicker.component.d.ts +2 -0
- package/dist/cluster/task.matcher.d.ts +15 -0
- package/dist/config/VersionChecker.d.ts +12 -0
- package/dist/config/index.d.ts +2 -0
- package/dist/config/settings.d.ts +176 -0
- package/dist/confirmationModal/ConfirmModal.d.ts +9 -0
- package/dist/confirmationModal/confirmationModal.service.d.ts +28 -0
- package/dist/confirmationModal/index.d.ts +1 -0
- package/dist/core.module.d.ts +17 -0
- package/dist/deploymentStrategy/DeploymentStrategySelector.d.ts +25 -0
- package/dist/deploymentStrategy/deploymentStrategy.module.d.ts +7 -0
- package/dist/deploymentStrategy/deploymentStrategy.registry.d.ts +26 -0
- package/dist/deploymentStrategy/deploymentStrategySelector.component.d.ts +1 -0
- package/dist/deploymentStrategy/index.d.ts +3 -0
- package/dist/deploymentStrategy/strategies/PipelineSelector.d.ts +45 -0
- package/dist/deploymentStrategy/strategies/custom/AdditionalFields.d.ts +5 -0
- package/dist/deploymentStrategy/strategies/custom/custom.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/highlander/HighlanderPreview.d.ts +4 -0
- package/dist/deploymentStrategy/strategies/highlander/highlander.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/monitored/AdditionalFields.d.ts +41 -0
- package/dist/deploymentStrategy/strategies/monitored/monitored.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/none/none.strategy.d.ts +1 -0
- package/dist/deploymentStrategy/strategies/redblack/AdditionalFields.d.ts +14 -0
- package/dist/deploymentStrategy/strategies/redblack/redblack.strategy.d.ts +10 -0
- package/dist/deploymentStrategy/strategies/rollingredblack/AdditionalFields.d.ts +26 -0
- package/dist/deploymentStrategy/strategies/rollingredblack/rollingredblack.strategy.d.ts +1 -0
- package/dist/diffs/ChangesModal.d.ts +14 -0
- package/dist/diffs/CommitHistory.d.ts +13 -0
- package/dist/diffs/JarDiffs.d.ts +23 -0
- package/dist/diffs/ViewChangesLink.d.ts +19 -0
- package/dist/diffs/index.d.ts +3 -0
- package/dist/diffs/viewChangesLink.component.d.ts +1 -0
- package/dist/domain/IArtifact.d.ts +15 -0
- package/dist/domain/IArtifactEditorProps.d.ts +12 -0
- package/dist/domain/IArtifactExtractor.d.ts +5 -0
- package/dist/domain/IArtifactKindConfig.d.ts +13 -0
- package/dist/domain/IArtifactSource.d.ts +4 -0
- package/dist/domain/IAuthentication.d.ts +3 -0
- package/dist/domain/IBuild.d.ts +15 -0
- package/dist/domain/IBuildDiffInfo.d.ts +6 -0
- package/dist/domain/IBuildInfo.d.ts +4 -0
- package/dist/domain/ICloudMetric.d.ts +22 -0
- package/dist/domain/ICluster.d.ts +17 -0
- package/dist/domain/ICredentials.d.ts +6 -0
- package/dist/domain/IDeckRootScope.d.ts +9 -0
- package/dist/domain/IEntityTags.d.ts +58 -0
- package/dist/domain/IExecution.d.ts +47 -0
- package/dist/domain/IExecutionStage.d.ts +76 -0
- package/dist/domain/IExecutionTrigger.d.ts +23 -0
- package/dist/domain/IExpectedArtifact.d.ts +10 -0
- package/dist/domain/IFunction.d.ts +24 -0
- package/dist/domain/IGcbTrigger.d.ts +5 -0
- package/dist/domain/IHealth.d.ts +14 -0
- package/dist/domain/IHelmTrigger.d.ts +8 -0
- package/dist/domain/IInstance.d.ts +19 -0
- package/dist/domain/IInstanceCounts.d.ts +10 -0
- package/dist/domain/IJenkinsInfo.d.ts +5 -0
- package/dist/domain/IJobConfig.d.ts +14 -0
- package/dist/domain/ILoadBalancer.d.ts +40 -0
- package/dist/domain/ILoadBalancerIncompatibility.d.ts +4 -0
- package/dist/domain/IManagedEntity.d.ts +225 -0
- package/dist/domain/IManifest.d.ts +34 -0
- package/dist/domain/INotification.d.ts +7 -0
- package/dist/domain/INotificationTypeConfig.d.ts +11 -0
- package/dist/domain/IOrchestratedItem.d.ts +30 -0
- package/dist/domain/IPipeline.d.ts +96 -0
- package/dist/domain/IPipelineTemplateConfigV2.d.ts +14 -0
- package/dist/domain/IPipelineTemplateV2.d.ts +41 -0
- package/dist/domain/IProject.d.ts +22 -0
- package/dist/domain/IPubsubSubscription.d.ts +4 -0
- package/dist/domain/IRegionalCluster.d.ts +4 -0
- package/dist/domain/ISecurityGroup.d.ts +50 -0
- package/dist/domain/IServerGroup.d.ts +66 -0
- package/dist/domain/IServerGroupManager.d.ts +17 -0
- package/dist/domain/IService.d.ts +7 -0
- package/dist/domain/ISnapshot.d.ts +10 -0
- package/dist/domain/IStage.d.ts +13 -0
- package/dist/domain/IStageContext.d.ts +7 -0
- package/dist/domain/IStageOrTriggerTypeConfig.d.ts +19 -0
- package/dist/domain/IStageTypeConfig.d.ts +44 -0
- package/dist/domain/IStrategy.d.ts +4 -0
- package/dist/domain/ISubnet.d.ts +13 -0
- package/dist/domain/ITaggedEntity.d.ts +4 -0
- package/dist/domain/ITask.d.ts +18 -0
- package/dist/domain/ITaskStep.d.ts +5 -0
- package/dist/domain/ITrigger.d.ts +95 -0
- package/dist/domain/ITriggerTypeConfig.d.ts +13 -0
- package/dist/domain/IVpc.d.ts +9 -0
- package/dist/domain/index.d.ts +55 -0
- package/dist/entityTag/AddEntityTagLinks.d.ts +12 -0
- package/dist/entityTag/EntitySource.d.ts +7 -0
- package/dist/entityTag/EntitySourcePopover.d.ts +10 -0
- package/dist/entityTag/EntityTagEditor.d.ts +48 -0
- package/dist/entityTag/EntityTagsReader.d.ts +15 -0
- package/dist/entityTag/addEntityTagLinks.component.d.ts +1 -0
- package/dist/entityTag/clusterTargetBuilder.d.ts +6 -0
- package/dist/entityTag/entityRef.builder.d.ts +11 -0
- package/dist/entityTag/entitySource.component.d.ts +1 -0
- package/dist/entityTag/entityTags.dataSource.d.ts +1 -0
- package/dist/entityTag/entityTags.help.d.ts +1 -0
- package/dist/entityTag/entityTags.module.d.ts +2 -0
- package/dist/entityTag/entityTags.write.service.d.ts +6 -0
- package/dist/entityTag/index.d.ts +7 -0
- package/dist/entityTag/notifications/CategorizedNotifications.d.ts +50 -0
- package/dist/entityTag/notifications/DataSourceNotifications.d.ts +18 -0
- package/dist/entityTag/notifications/EntityName.d.ts +9 -0
- package/dist/entityTag/notifications/EntityNotifications.d.ts +23 -0
- package/dist/entityTag/notifications/EphemeralPopover.d.ts +14 -0
- package/dist/entityTag/notifications/GroupedNotificationList.d.ts +26 -0
- package/dist/entityTag/notifications/NotificationCategory.d.ts +19 -0
- package/dist/entityTag/notifications/NotificationList.d.ts +14 -0
- package/dist/entityTag/notifications/NotificationsPopover.d.ts +60 -0
- package/dist/entityTag/notifications/entityNotifications.component.d.ts +1 -0
- package/dist/entityTag/notifications/index.d.ts +6 -0
- package/dist/entityTag/notifications/notificationCategories.d.ts +10 -0
- package/dist/event/EventBus.d.ts +23 -0
- package/dist/filterModel/FilterCheckBox.d.ts +18 -0
- package/dist/filterModel/FilterCollapse.d.ts +6 -0
- package/dist/filterModel/FilterModelService.d.ts +20 -0
- package/dist/filterModel/FilterTags.d.ts +18 -0
- package/dist/filterModel/IFilterModel.d.ts +63 -0
- package/dist/filterModel/dependentFilter/DependentFilterService.d.ts +6 -0
- package/dist/filterModel/filterCollapse.component.d.ts +1 -0
- package/dist/filterModel/filterTags.component.d.ts +1 -0
- package/dist/filterModel/index.d.ts +6 -0
- package/dist/forms/autofocus/autofocus.directive.d.ts +10 -0
- package/dist/forms/checklist/checklist.directive.d.ts +2 -0
- package/dist/forms/checkmap/checkmap.directive.d.ts +2 -0
- package/dist/forms/forms.module.d.ts +2 -0
- package/dist/forms/ignoreEmptyDelete.directive.d.ts +2 -0
- package/dist/forms/index.d.ts +4 -0
- package/dist/forms/mapEditor/MapEditor.d.ts +37 -0
- package/dist/forms/mapEditor/MapEditorInput.d.ts +19 -0
- package/dist/forms/mapEditor/MapPair.d.ts +17 -0
- package/dist/forms/mapEditor/mapEditor.component.d.ts +2 -0
- package/dist/forms/mapObjectEditor/mapObjectEditor.component.d.ts +2 -0
- package/dist/forms/numberList/NumberList.d.ts +12 -0
- package/dist/forms/numberList/numberList.component.d.ts +1 -0
- package/dist/forms/validateOnSubmit/validateOnSubmit.directive.d.ts +2 -0
- package/dist/function/CreateFunctionButton.d.ts +26 -0
- package/dist/function/Function.d.ts +9 -0
- package/dist/function/FunctionDetails.d.ts +7 -0
- package/dist/function/FunctionGroupings.d.ts +11 -0
- package/dist/function/FunctionPod.d.ts +11 -0
- package/dist/function/Functions.d.ts +24 -0
- package/dist/function/filter/FunctionFilterModel.d.ts +10 -0
- package/dist/function/filter/FunctionFilterService.d.ts +16 -0
- package/dist/function/filter/FunctionFilters.d.ts +27 -0
- package/dist/function/function.dataSource.d.ts +1 -0
- package/dist/function/function.module.d.ts +1 -0
- package/dist/function/function.read.service.d.ts +22 -0
- package/dist/function/function.states.d.ts +1 -0
- package/dist/function/function.transformer.d.ts +7 -0
- package/dist/function/function.write.service.d.ts +23 -0
- package/dist/function/index.d.ts +4 -0
- package/dist/header/SpinnakerHeader.d.ts +4 -0
- package/dist/header/customBanner/CustomBanner.d.ts +16 -0
- package/dist/healthCounts/HealthCounts.d.ts +22 -0
- package/dist/healthCounts/healthCounts.component.d.ts +1 -0
- package/dist/healthCounts/healthCounts.module.d.ts +1 -0
- package/dist/healthCounts/index.d.ts +1 -0
- package/dist/helm-chart-artifact2320ab55b431ba0a.svg +14 -0
- package/dist/help/HelpField.d.ts +11 -0
- package/dist/help/HelpMenu.d.ts +3 -0
- package/dist/help/HelpTextExpandedContext.d.ts +2 -0
- package/dist/help/help.contents.d.ts +3 -0
- package/dist/help/help.module.d.ts +2 -0
- package/dist/help/helpContents.registry.d.ts +25 -0
- package/dist/help/helpField.component.d.ts +14 -0
- package/dist/help/helpFieldReact.component.d.ts +1 -0
- package/dist/help/index.d.ts +5 -0
- package/dist/history/index.d.ts +1 -0
- package/dist/history/recentHistory.service.d.ts +33 -0
- package/dist/image/image.reader.d.ts +28 -0
- package/dist/image/index.d.ts +1 -0
- package/dist/index.d.ts +69 -0
- package/dist/index.js +72020 -0
- package/dist/index.js.map +1 -0
- package/dist/insight/InsightLayout.d.ts +6 -0
- package/dist/insight/InsightMenu.d.ts +23 -0
- package/dist/insight/insight.module.d.ts +2 -0
- package/dist/insight/insightFilterState.model.d.ts +7 -0
- package/dist/insight/insightLayout.component.d.ts +1 -0
- package/dist/insight/insightmenu.directive.d.ts +1 -0
- package/dist/instance/Instance.d.ts +9 -0
- package/dist/instance/InstanceList.d.ts +29 -0
- package/dist/instance/InstanceListBody.d.ts +29 -0
- package/dist/instance/InstanceReader.d.ts +13 -0
- package/dist/instance/Instances.d.ts +16 -0
- package/dist/instance/details/InstanceActions.d.ts +10 -0
- package/dist/instance/details/InstanceDetails.d.ts +33 -0
- package/dist/instance/details/InstanceDetailsHeader.d.ts +11 -0
- package/dist/instance/details/InstanceDetailsPane.d.ts +4 -0
- package/dist/instance/details/InstanceInsights.d.ts +13 -0
- package/dist/instance/details/InstanceLinks.d.ts +22 -0
- package/dist/instance/details/console/ConsoleOutputLink.d.ts +8 -0
- package/dist/instance/details/console/ConsoleOutputModal.d.ts +9 -0
- package/dist/instance/details/console/consoleOutputLink.component.d.ts +2 -0
- package/dist/instance/details/index.d.ts +8 -0
- package/dist/instance/details/instanceActions.component.d.ts +2 -0
- package/dist/instance/details/instanceDetailsHeader.component.d.ts +2 -0
- package/dist/instance/details/instanceInsights.component.d.ts +2 -0
- package/dist/instance/details/instanceLinks.component.d.ts +2 -0
- package/dist/instance/details/multipleInstanceServerGroup.directive.d.ts +2 -0
- package/dist/instance/details/multipleInstances.controller.d.ts +2 -0
- package/dist/instance/index.d.ts +5 -0
- package/dist/instance/instance.module.d.ts +2 -0
- package/dist/instance/instance.states.d.ts +1 -0
- package/dist/instance/instance.write.service.d.ts +44 -0
- package/dist/instance/instanceSearchResultType.d.ts +13 -0
- package/dist/instance/instanceType.service.d.ts +61 -0
- package/dist/instance/loadBalancer/InstanceLoadBalancerHealth.d.ts +17 -0
- package/dist/instance/loadBalancer/instanceLoadBalancerHealth.directive.d.ts +2 -0
- package/dist/interceptor/debug.interceptor.d.ts +6 -0
- package/dist/interceptor/interceptor.module.d.ts +1 -0
- package/dist/ivy-artifact537f2ce5956f4038.svg +13 -0
- package/dist/jenkins-file-artifactffa863534b26f298.svg +283 -0
- package/dist/loadBalancer/CreateLoadBalancerButton.d.ts +26 -0
- package/dist/loadBalancer/LoadBalancer.d.ts +15 -0
- package/dist/loadBalancer/LoadBalancerClusterContainer.d.ts +12 -0
- package/dist/loadBalancer/LoadBalancerDetails.d.ts +7 -0
- package/dist/loadBalancer/LoadBalancerInstances.d.ts +16 -0
- package/dist/loadBalancer/LoadBalancerPod.d.ts +14 -0
- package/dist/loadBalancer/LoadBalancerServerGroup.d.ts +17 -0
- package/dist/loadBalancer/LoadBalancers.d.ts +28 -0
- package/dist/loadBalancer/LoadBalancersTag.d.ts +17 -0
- package/dist/loadBalancer/LoadBalancersTagWrapper.d.ts +11 -0
- package/dist/loadBalancer/filter/LoadBalancerFilterModel.d.ts +10 -0
- package/dist/loadBalancer/filter/LoadBalancerFilterService.d.ts +24 -0
- package/dist/loadBalancer/filter/LoadBalancerFilters.d.ts +32 -0
- package/dist/loadBalancer/index.d.ts +8 -0
- package/dist/loadBalancer/loadBalancer.dataSource.d.ts +1 -0
- package/dist/loadBalancer/loadBalancer.module.d.ts +2 -0
- package/dist/loadBalancer/loadBalancer.read.service.d.ts +23 -0
- package/dist/loadBalancer/loadBalancer.states.d.ts +1 -0
- package/dist/loadBalancer/loadBalancer.transformer.d.ts +2 -0
- package/dist/loadBalancer/loadBalancer.write.service.d.ts +28 -0
- package/dist/loadBalancer/loadBalancerDataUtils.d.ts +6 -0
- package/dist/loadBalancer/loadBalancerSearchResultType.d.ts +16 -0
- package/dist/managed/ApplicationQueryError.d.ts +8 -0
- package/dist/managed/Environments.d.ts +4 -0
- package/dist/managed/ManagedReader.d.ts +8 -0
- package/dist/managed/ManagedWriter.d.ts +4 -0
- package/dist/managed/Pill.d.ts +10 -0
- package/dist/managed/RelativeTimestamp.d.ts +15 -0
- package/dist/managed/UnmanagedMessage.d.ts +2 -0
- package/dist/managed/artifactActions/ArtifactActions.d.ts +24 -0
- package/dist/managed/config/Configuration.d.ts +9 -0
- package/dist/managed/config/DeliveryConfig.d.ts +8 -0
- package/dist/managed/config/GitIntegration.d.ts +6 -0
- package/dist/managed/config/ManagementWarning.d.ts +4 -0
- package/dist/managed/constraints/AllowedTimes.d.ts +16 -0
- package/dist/managed/constraints/DependsOn.d.ts +5 -0
- package/dist/managed/constraints/ManualJudgement.d.ts +4 -0
- package/dist/managed/constraints/registry.d.ts +60 -0
- package/dist/managed/displayNames.d.ts +2 -0
- package/dist/managed/environmentBaseElements/BaseEnvironment.d.ts +21 -0
- package/dist/managed/environmentBaseElements/EnvironmentItem.d.ts +12 -0
- package/dist/managed/environmentBaseElements/EnvironmentsRender.d.ts +20 -0
- package/dist/managed/externals/DeployingIntoManagedClusterWarning.d.ts +9 -0
- package/dist/managed/externals/ManagedMenuItem.d.ts +11 -0
- package/dist/managed/externals/ManagedResourceConfig.d.ts +6 -0
- package/dist/managed/externals/ManagedResourceDetailsIndicator.d.ts +9 -0
- package/dist/managed/externals/ManagedResourceStatusIndicator.d.ts +10 -0
- package/dist/managed/externals/ManagedResourceStatusPopover.d.ts +10 -0
- package/dist/managed/externals/managedResourceDecorators.d.ts +4 -0
- package/dist/managed/externals/managedResourceDetailsIndicator.component.d.ts +1 -0
- package/dist/managed/externals/managedResourceStatusConfig.d.ts +13 -0
- package/dist/managed/externals/toggleResourceManagement.d.ts +12 -0
- package/dist/managed/graphql/client.d.ts +5 -0
- package/dist/managed/graphql/graphql-sdk.d.ts +1343 -0
- package/dist/managed/index.d.ts +13 -0
- package/dist/managed/managed.dataSource.d.ts +1 -0
- package/dist/managed/managed.module.d.ts +1 -0
- package/dist/managed/managed.states.d.ts +2 -0
- package/dist/managed/messages/MessageBox.d.ts +12 -0
- package/dist/managed/messages/Messages.d.ts +6 -0
- package/dist/managed/overview/EnvironmentOverview.d.ts +7 -0
- package/dist/managed/overview/EnvironmentsOverview.d.ts +3 -0
- package/dist/managed/overview/PreviewEnvironments.d.ts +9 -0
- package/dist/managed/overview/Resource.d.ts +10 -0
- package/dist/managed/overview/ResourceDeploymentStatus.d.ts +9 -0
- package/dist/managed/overview/ResourceTask.d.ts +7 -0
- package/dist/managed/overview/artifact/Artifact.d.ts +12 -0
- package/dist/managed/overview/artifact/ArtifactActionModal.d.ts +25 -0
- package/dist/managed/overview/artifact/ArtifactCollapsibleSection.d.ts +7 -0
- package/dist/managed/overview/artifact/ArtifactVersionTasks.d.ts +18 -0
- package/dist/managed/overview/artifact/ArtifactVersions.d.ts +9 -0
- package/dist/managed/overview/artifact/Constraints.d.ts +8 -0
- package/dist/managed/overview/artifact/CurrentVersion.d.ts +13 -0
- package/dist/managed/overview/artifact/GitLink.d.ts +9 -0
- package/dist/managed/overview/artifact/VersionOperation.d.ts +20 -0
- package/dist/managed/overview/artifact/VersionTitle.d.ts +9 -0
- package/dist/managed/overview/artifact/hooks.d.ts +6 -0
- package/dist/managed/overview/artifact/useCreateRollbackActions.hook.d.ts +3 -0
- package/dist/managed/overview/artifact/utils.d.ts +35 -0
- package/dist/managed/overview/types.d.ts +15 -0
- package/dist/managed/overview/useIsUpdatingResources.hook.d.ts +1 -0
- package/dist/managed/overview/utils.d.ts +2 -0
- package/dist/managed/plugins/BasePluginManager.d.ts +10 -0
- package/dist/managed/plugins/index.d.ts +7 -0
- package/dist/managed/resourceHistory/HistoryEventRow.d.ts +8 -0
- package/dist/managed/resourceHistory/ManagedResourceDiffTable.d.ts +6 -0
- package/dist/managed/resourceHistory/ManagedResourceHistoryModal.d.ts +7 -0
- package/dist/managed/resources/ResourceDefinitionModal.d.ts +9 -0
- package/dist/managed/resources/ResourceTitle.d.ts +5 -0
- package/dist/managed/resources/ToggleResourceManagement.d.ts +10 -0
- package/dist/managed/resources/resourceRegistry.d.ts +27 -0
- package/dist/managed/resources/useGetResourceLink.hook.d.ts +5 -0
- package/dist/managed/useEnvironmentTypeFromResources.hooks.d.ts +2 -0
- package/dist/managed/utils/ActionModal.d.ts +13 -0
- package/dist/managed/utils/Button.d.ts +11 -0
- package/dist/managed/utils/YamlViewer.d.ts +5 -0
- package/dist/managed/utils/debugMode.d.ts +2 -0
- package/dist/managed/utils/defaults.d.ts +12 -0
- package/dist/managed/utils/logging.d.ts +10 -0
- package/dist/managed/utils/useNotifyOnError.hook.d.ts +6 -0
- package/dist/managed/versionMetadata/MetadataComponents.d.ts +100 -0
- package/dist/managed/versionMetadata/VersionMetadata.d.ts +10 -0
- package/dist/managed/versionsHistory/VersionContent.d.ts +12 -0
- package/dist/managed/versionsHistory/VersionHeading.d.ts +9 -0
- package/dist/managed/versionsHistory/VersionsHistory.d.ts +3 -0
- package/dist/managed/versionsHistory/types.d.ts +36 -0
- package/dist/manifest/ManifestReader.d.ts +4 -0
- package/dist/manifest/ManifestWriter.d.ts +11 -0
- package/dist/manifest/ManifestYaml.d.ts +13 -0
- package/dist/manifest/PodNameProvider.d.ts +16 -0
- package/dist/manifest/index.d.ts +6 -0
- package/dist/manifest/stage/JobManifestPodLogs.d.ts +28 -0
- package/dist/manifest/stage/JobStageExecutionLogs.d.ts +25 -0
- package/dist/modal/buttons/ModalClose.d.ts +4 -0
- package/dist/modal/buttons/SubmitButton.d.ts +20 -0
- package/dist/modal/buttons/modalClose.component.d.ts +1 -0
- package/dist/modal/buttons/submitButton.component.d.ts +3 -0
- package/dist/modal/index.d.ts +4 -0
- package/dist/modal/modal.module.d.ts +2 -0
- package/dist/modal/modalOverlay.directive.d.ts +2 -0
- package/dist/modal/modalPage.directive.d.ts +2 -0
- package/dist/modal/wizard/ModalWizard.d.ts +36 -0
- package/dist/modal/wizard/WizardModal.d.ts +53 -0
- package/dist/modal/wizard/WizardPage.d.ts +42 -0
- package/dist/modal/wizard/WizardStepLabel.d.ts +11 -0
- package/dist/modal/wizard/index.d.ts +4 -0
- package/dist/modal/wizard/v2modalWizard.component.d.ts +14 -0
- package/dist/modal/wizard/v2wizardPage.component.d.ts +67 -0
- package/dist/modal/wizard/wizardSubFormValidation.service.d.ts +5 -0
- package/dist/naming/IMoniker.d.ts +7 -0
- package/dist/naming/index.d.ts +2 -0
- package/dist/naming/nameUtils.d.ts +20 -0
- package/dist/navigation/UrlBuilder.d.ts +31 -0
- package/dist/navigation/UrlBuilderRegistry.d.ts +6 -0
- package/dist/navigation/index.d.ts +4 -0
- package/dist/navigation/state.provider.d.ts +54 -0
- package/dist/navigation/stateHelper.provider.d.ts +14 -0
- package/dist/navigation/urlParser.d.ts +15 -0
- package/dist/network/NetworkReader.d.ts +12 -0
- package/dist/network/index.d.ts +1 -0
- package/dist/notfound/NotFound.d.ts +7 -0
- package/dist/notification/AppNotificationsService.d.ts +9 -0
- package/dist/notification/NotificationService.d.ts +15 -0
- package/dist/notification/NotificationsList.d.ts +32 -0
- package/dist/notification/extensionNotificationConfig.d.ts +56 -0
- package/dist/notification/index.d.ts +5 -0
- package/dist/notification/modal/EditNotificationModal.d.ts +20 -0
- package/dist/notification/modal/NotificationDetails.d.ts +21 -0
- package/dist/notification/modal/WhenChecklistInput.d.ts +12 -0
- package/dist/notification/modal/index.d.ts +2 -0
- package/dist/notification/modal/whenOptions.d.ts +3 -0
- package/dist/notification/notification.transformer.d.ts +5 -0
- package/dist/notification/notification.types.d.ts +1 -0
- package/dist/notification/notificationList.module.d.ts +1 -0
- package/dist/notification/notifications.module.d.ts +3 -0
- package/dist/notification/selector/NotificationSelector.d.ts +16 -0
- package/dist/notification/selector/types/bearychat/BearychatNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/bearychat/beary.notification.d.ts +2 -0
- package/dist/notification/selector/types/cdevents/CDEventsNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/cdevents/cdevents.notification.d.ts +2 -0
- package/dist/notification/selector/types/email/EmailNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/email/email.notification.d.ts +2 -0
- package/dist/notification/selector/types/githubstatus/GithubNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/githubstatus/githubstatus.notification.d.ts +2 -0
- package/dist/notification/selector/types/googlechat/GooglechatNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/googlechat/googlechat.notification.d.ts +2 -0
- package/dist/notification/selector/types/index.d.ts +8 -0
- package/dist/notification/selector/types/microsoftteams/MicrosoftTeamsNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/microsoftteams/microsoftteams.notification.d.ts +2 -0
- package/dist/notification/selector/types/pubsub/PubsubNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/pubsub/pubsub.notification.d.ts +2 -0
- package/dist/notification/selector/types/slack/SlackNotificationType.d.ts +5 -0
- package/dist/notification/selector/types/slack/slack.notification.d.ts +2 -0
- package/dist/notification/selector/types/sms/SmsNotificationType.d.ts +6 -0
- package/dist/notification/selector/types/sms/sms.notification.d.ts +2 -0
- package/dist/orchestratedItem/index.d.ts +1 -0
- package/dist/orchestratedItem/orchestratedItem.transformer.d.ts +13 -0
- package/dist/overrideRegistry/Overridable.d.ts +39 -0
- package/dist/overrideRegistry/Overrides.d.ts +37 -0
- package/dist/overrideRegistry/index.d.ts +3 -0
- package/dist/overrideRegistry/override.registry.d.ts +13 -0
- package/dist/pageTitle/index.d.ts +1 -0
- package/dist/pageTitle/pageTitle.module.d.ts +1 -0
- package/dist/pageTitle/pageTitle.service.d.ts +43 -0
- package/dist/pagerDuty/PageButton.d.ts +20 -0
- package/dist/pagerDuty/PageModal.d.ts +29 -0
- package/dist/pagerDuty/Pager.d.ts +70 -0
- package/dist/pagerDuty/index.d.ts +4 -0
- package/dist/pagerDuty/pageApplicationOwner.modal.controller.d.ts +14 -0
- package/dist/pagerDuty/pager.states.d.ts +1 -0
- package/dist/pagerDuty/pagerDuty.module.d.ts +1 -0
- package/dist/pagerDuty/pagerDuty.read.service.d.ts +25 -0
- package/dist/pagerDuty/pagerDuty.write.service.d.ts +8 -0
- package/dist/pagerDuty/pagerDutySelectField.component.d.ts +15 -0
- package/dist/pagerDuty/pagerDutyTag.component.d.ts +11 -0
- package/dist/pipeline/config/CreatePipeline.d.ts +9 -0
- package/dist/pipeline/config/PipelineRegistry.d.ts +71 -0
- package/dist/pipeline/config/actions/PipelineConfigAction.d.ts +7 -0
- package/dist/pipeline/config/actions/PipelineConfigActions.d.ts +15 -0
- package/dist/pipeline/config/actions/delete/DeletePipelineModal.d.ts +9 -0
- package/dist/pipeline/config/actions/disable/DisablePipelineModal.d.ts +7 -0
- package/dist/pipeline/config/actions/enable/EnablePipelineModal.d.ts +7 -0
- package/dist/pipeline/config/actions/history/DiffSummary.d.ts +6 -0
- package/dist/pipeline/config/actions/history/ShowPipelineHistoryModal.d.ts +10 -0
- package/dist/pipeline/config/actions/history/diffSummary.component.d.ts +1 -0
- package/dist/pipeline/config/actions/lock/LockPipelineModal.d.ts +7 -0
- package/dist/pipeline/config/actions/pipelineConfigActions.module.d.ts +1 -0
- package/dist/pipeline/config/actions/pipelineJson/EditPipelineJsonModal.d.ts +29 -0
- package/dist/pipeline/config/actions/rename/RenamePipelineModal.d.ts +9 -0
- package/dist/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.d.ts +24 -0
- package/dist/pipeline/config/actions/unlock/UnlockPipelineModal.d.ts +7 -0
- package/dist/pipeline/config/copyStage/CopyStageCard.d.ts +9 -0
- package/dist/pipeline/config/copyStage/CopyStageModal.d.ts +9 -0
- package/dist/pipeline/config/createPipeline.component.d.ts +1 -0
- package/dist/pipeline/config/graph/PipelineGraph.d.ts +76 -0
- package/dist/pipeline/config/graph/PipelineGraphLink.d.ts +10 -0
- package/dist/pipeline/config/graph/PipelineGraphNode.d.ts +20 -0
- package/dist/pipeline/config/graph/pipeline.graph.component.d.ts +1 -0
- package/dist/pipeline/config/graph/pipelineGraph.service.d.ts +60 -0
- package/dist/pipeline/config/health/stagePlatformHealthOverride.directive.d.ts +2 -0
- package/dist/pipeline/config/parameters/Parameter.d.ts +27 -0
- package/dist/pipeline/config/parameters/Parameters.d.ts +26 -0
- package/dist/pipeline/config/parameters/parameters.module.d.ts +1 -0
- package/dist/pipeline/config/parameters/pipeline.module.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfig.controller.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfig.module.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfigView.d.ts +2 -0
- package/dist/pipeline/config/pipelineConfigurer.d.ts +2 -0
- package/dist/pipeline/config/preconditions/modal/editPrecondition.controller.modal.d.ts +2 -0
- package/dist/pipeline/config/preconditions/precondition.details.filter.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditionList.directive.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditionType.service.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditionTypeConfig.provider.d.ts +2 -0
- package/dist/pipeline/config/preconditions/preconditions.module.d.ts +2 -0
- package/dist/pipeline/config/preconditions/selector/preconditionSelector.directive.d.ts +2 -0
- package/dist/pipeline/config/preconditions/types/clusterSize/clusterSize.precondition.type.module.d.ts +2 -0
- package/dist/pipeline/config/preconditions/types/expression/expression.precondition.type.module.d.ts +2 -0
- package/dist/pipeline/config/preconditions/types/stageStatus/StageStatusPreconditionConfig.d.ts +10 -0
- package/dist/pipeline/config/preconditions/types/stageStatus/stageStatus.precondition.type.module.d.ts +1 -0
- package/dist/pipeline/config/preconditions/types/stageStatus/stageStatusOptions.d.ts +2 -0
- package/dist/pipeline/config/services/PipelineConfigService.d.ts +25 -0
- package/dist/pipeline/config/services/pipelineJSON.service.d.ts +6 -0
- package/dist/pipeline/config/stages/FormikStageConfig.d.ts +22 -0
- package/dist/pipeline/config/stages/StageConfigWrapper.d.ts +8 -0
- package/dist/pipeline/config/stages/StageName.d.ts +8 -0
- package/dist/pipeline/config/stages/applySourceServerGroupCapacity/ApplySourceServerGroupCapacityDetails.d.ts +11 -0
- package/dist/pipeline/config/stages/applySourceServerGroupCapacity/applySourceServerGroupCapacityStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildSourceList.d.ts +28 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageForm.d.ts +3 -0
- package/dist/pipeline/config/stages/awsCodeBuild/AwsCodeBuildValidator.d.ts +3 -0
- package/dist/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSecondarySourceVersionModal.d.ts +9 -0
- package/dist/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSourceModal.d.ts +19 -0
- package/dist/pipeline/config/stages/awsCodeBuild/IAwsCodeBuildSource.d.ts +19 -0
- package/dist/pipeline/config/stages/awsCodeBuild/awsCodeBuildStage.d.ts +1 -0
- package/dist/pipeline/config/stages/bake/BakeExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/bake/BakeryReader.d.ts +17 -0
- package/dist/pipeline/config/stages/bake/ManualExecutionBake.d.ts +6 -0
- package/dist/pipeline/config/stages/bake/bakeStage.d.ts +2 -0
- package/dist/pipeline/config/stages/bake/bakeStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/bake/bakeStage.transformer.d.ts +2 -0
- package/dist/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.d.ts +16 -0
- package/dist/pipeline/config/stages/bake/bakeStageChooseOs.component.d.ts +19 -0
- package/dist/pipeline/config/stages/bake/modal/addExtendedAttribute.controller.modal.d.ts +2 -0
- package/dist/pipeline/config/stages/bakeManifest/BakeManifestConfig.d.ts +6 -0
- package/dist/pipeline/config/stages/bakeManifest/BakeManifestDetailsTab.d.ts +6 -0
- package/dist/pipeline/config/stages/bakeManifest/BakeManifestStageForm.d.ts +5 -0
- package/dist/pipeline/config/stages/bakeManifest/ManifestRenderers.d.ts +10 -0
- package/dist/pipeline/config/stages/bakeManifest/ManualExecutionBakeManifest.d.ts +3 -0
- package/dist/pipeline/config/stages/bakeManifest/bakeManifestStage.d.ts +1 -0
- package/dist/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.d.ts +19 -0
- package/dist/pipeline/config/stages/bakeManifest/helmfile/BakeHelmfileConfigForm.d.ts +18 -0
- package/dist/pipeline/config/stages/bakeManifest/kustomize/BakeKustomizeConfigForm.d.ts +6 -0
- package/dist/pipeline/config/stages/bakeManifest/utils/getBakedArtifacts.d.ts +4 -0
- package/dist/pipeline/config/stages/bakeManifest/utils/getContentReference.d.ts +1 -0
- package/dist/pipeline/config/stages/baseProviderStage/baseProviderStage.d.ts +2 -0
- package/dist/pipeline/config/stages/checkPreconditions/CheckPreconditionsExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.d.ts +1 -0
- package/dist/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/cloneServerGroup/CloneServerGroupExecutionDetails.d.ts +23 -0
- package/dist/pipeline/config/stages/cloneServerGroup/cloneServerGroupStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/common/AsgActionExecutionDetailsSection.d.ts +5 -0
- package/dist/pipeline/config/stages/common/EditStageJsonModal.d.ts +20 -0
- package/dist/pipeline/config/stages/common/ExecutionBarLabel.d.ts +21 -0
- package/dist/pipeline/config/stages/common/ExecutionDetailsSection.d.ts +9 -0
- package/dist/pipeline/config/stages/common/ExecutionDetailsTasks.d.ts +6 -0
- package/dist/pipeline/config/stages/common/ExecutionMarkerIcon.d.ts +6 -0
- package/dist/pipeline/config/stages/common/ExecutionStepDetails.d.ts +14 -0
- package/dist/pipeline/config/stages/common/IStageConfigProps.d.ts +15 -0
- package/dist/pipeline/config/stages/common/ServerGroupStageContext.d.ts +7 -0
- package/dist/pipeline/config/stages/common/StepExecutionDetails.d.ts +10 -0
- package/dist/pipeline/config/stages/common/applySuspendedStatuses.d.ts +2 -0
- package/dist/pipeline/config/stages/common/baseExecutionDetails.controller.d.ts +18 -0
- package/dist/pipeline/config/stages/common/executionStepDetails.component.d.ts +1 -0
- package/dist/pipeline/config/stages/common/index.d.ts +9 -0
- package/dist/pipeline/config/stages/common/stage.common.module.d.ts +1 -0
- package/dist/pipeline/config/stages/common/stageConfigField/StageConfigField.d.ts +10 -0
- package/dist/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.d.ts +2 -0
- package/dist/pipeline/config/stages/concourse/ConcourseExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/concourse/ConcourseStageConfig.d.ts +27 -0
- package/dist/pipeline/config/stages/concourse/concourseStage.d.ts +1 -0
- package/dist/pipeline/config/stages/createLoadBalancer/createLoadBalancerExecutionDetails.controller.d.ts +13 -0
- package/dist/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.d.ts +2 -0
- package/dist/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/deploy/clusterName.filter.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployExecutionDetails.controller.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployStage.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/deploy/deployStage.transformer.d.ts +2 -0
- package/dist/pipeline/config/stages/deployService/DeployServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/deployService/deployServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/destroyAsg/DestroyAsgExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/destroyAsg/destroyAsgStage.d.ts +1 -0
- package/dist/pipeline/config/stages/destroyService/DestroyServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/destroyService/destroyServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/disableAsg/DisableAsgExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/disableAsg/disableAsgStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/disableCluster/DisableClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/disableCluster/disableClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/enableAsg/EnableAsgExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/enableAsg/enableAsgStage.d.ts +1 -0
- package/dist/pipeline/config/stages/entityTags/ApplyEntityTagsExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/entityTags/ApplyEntityTagsStageConfig.d.ts +18 -0
- package/dist/pipeline/config/stages/entityTags/TagEditor.d.ts +17 -0
- package/dist/pipeline/config/stages/entityTags/applyEntityTagsStage.d.ts +1 -0
- package/dist/pipeline/config/stages/evaluateVariables/EvaluateVariablesExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/evaluateVariables/EvaluateVariablesStageConfig.d.ts +10 -0
- package/dist/pipeline/config/stages/evaluateVariables/ExecutionAndStagePicker.d.ts +9 -0
- package/dist/pipeline/config/stages/evaluateVariables/evaluateVariablesStage.d.ts +1 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindowActions.d.ts +24 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindowDayPicker.d.ts +6 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindowExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/executionWindows/ExecutionWindows.d.ts +11 -0
- package/dist/pipeline/config/stages/executionWindows/daysOfWeek.d.ts +5 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindows.module.d.ts +1 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindows.transformer.d.ts +6 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindowsConfig.d.ts +27 -0
- package/dist/pipeline/config/stages/executionWindows/executionWindowsStage.d.ts +1 -0
- package/dist/pipeline/config/stages/failOnFailedExpressions/failOnFailedExpressions.directive.d.ts +2 -0
- package/dist/pipeline/config/stages/findAmi/FindAmiExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/findAmi/findAmiStage.d.ts +6 -0
- package/dist/pipeline/config/stages/findArtifactFromExecution/FindArtifactFromExecutionExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecution.controller.d.ts +33 -0
- package/dist/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecutionStage.d.ts +1 -0
- package/dist/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.d.ts +2 -0
- package/dist/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageForm.d.ts +3 -0
- package/dist/pipeline/config/stages/googleCloudBuild/IGoogleCloudBuildStage.d.ts +27 -0
- package/dist/pipeline/config/stages/googleCloudBuild/googleCloudBuildStage.d.ts +1 -0
- package/dist/pipeline/config/stages/googleCloudBuild/googleCloudBuildValidators.d.ts +2 -0
- package/dist/pipeline/config/stages/gremlin/GremlinExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/gremlin/GremlinStageConfig.d.ts +25 -0
- package/dist/pipeline/config/stages/gremlin/gremlinStage.d.ts +1 -0
- package/dist/pipeline/config/stages/group/GroupExecutionLabel.d.ts +15 -0
- package/dist/pipeline/config/stages/group/GroupExecutionPopover.d.ts +17 -0
- package/dist/pipeline/config/stages/group/GroupMarkerIcon.d.ts +5 -0
- package/dist/pipeline/config/stages/group/groupStage.d.ts +4 -0
- package/dist/pipeline/config/stages/group/groupStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/jenkins/JenkinsExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/jenkins/jenkinsExecutionDetails.controller.d.ts +2 -0
- package/dist/pipeline/config/stages/jenkins/jenkinsStage.d.ts +2 -0
- package/dist/pipeline/config/stages/jenkins/jenkinsStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/managed/ImportDeliveryConfigExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/managed/ImportDeliveryConfigStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/managed/importDeliveryConfigStage.d.ts +1 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentApproval.d.ts +34 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionDetails.d.ts +11 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionLabel.d.ts +12 -0
- package/dist/pipeline/config/stages/manualJudgment/ManualJudgmentMarkerIcon.d.ts +6 -0
- package/dist/pipeline/config/stages/manualJudgment/manualJudgment.service.d.ts +10 -0
- package/dist/pipeline/config/stages/manualJudgment/manualJudgmentStage.d.ts +2 -0
- package/dist/pipeline/config/stages/manualJudgment/manualJudgmentStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/monitorPipeline/MonitorPipelineStageExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/monitorPipeline/monitorPipelineStage.d.ts +2 -0
- package/dist/pipeline/config/stages/monitorPipeline/monitorPipelineStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/monitoreddeploy/DeploymentMonitorExecutionDetails.d.ts +13 -0
- package/dist/pipeline/config/stages/monitoreddeploy/DeploymentMonitorReader.d.ts +8 -0
- package/dist/pipeline/config/stages/monitoreddeploy/evaluateHealthStage.d.ts +1 -0
- package/dist/pipeline/config/stages/monitoreddeploy/notifyDeployStartingStage.d.ts +1 -0
- package/dist/pipeline/config/stages/optionalStage/optionalStage.directive.d.ts +2 -0
- package/dist/pipeline/config/stages/overrideFailure/OverrideFailure.d.ts +10 -0
- package/dist/pipeline/config/stages/overrideFailure/overrideFailure.module.d.ts +1 -0
- package/dist/pipeline/config/stages/overrideTimeout/OverrideTimeout.d.ts +12 -0
- package/dist/pipeline/config/stages/overrideTimeout/overrideTimeout.module.d.ts +1 -0
- package/dist/pipeline/config/stages/pipeline/PipelineParametersExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/pipeline/PipelineStageExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/pipeline/pipelineStage.d.ts +2 -0
- package/dist/pipeline/config/stages/pipeline/pipelineStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/preconfiguredJob/PreconfiguredJobExecutionDetails.d.ts +22 -0
- package/dist/pipeline/config/stages/preconfiguredJob/PreconfiguredJobStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/preconfiguredJob/index.d.ts +4 -0
- package/dist/pipeline/config/stages/preconfiguredJob/preconfiguredJob.reader.d.ts +20 -0
- package/dist/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.d.ts +11 -0
- package/dist/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/producesArtifacts/ProducesArtifacts.d.ts +9 -0
- package/dist/pipeline/config/stages/resizeAsg/resizeAsgStage.d.ts +1 -0
- package/dist/pipeline/config/stages/rollbackCluster/RollbackClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/rollbackCluster/rollbackClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/runJob/runJobStage.d.ts +2 -0
- package/dist/pipeline/config/stages/runJob/runJobStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/savePipelines/PipleineRefList.d.ts +6 -0
- package/dist/pipeline/config/stages/savePipelines/SavePipelinesResultsTab.d.ts +6 -0
- package/dist/pipeline/config/stages/savePipelines/SavePipelinesStageConfig.d.ts +3 -0
- package/dist/pipeline/config/stages/savePipelines/savePipelinesStage.d.ts +1 -0
- package/dist/pipeline/config/stages/scaleDownCluster/ScaleDownClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/scaleDownCluster/scaleDownClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/script/ScriptExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/script/ScriptStageConfig.d.ts +5 -0
- package/dist/pipeline/config/stages/script/scriptStage.d.ts +1 -0
- package/dist/pipeline/config/stages/shareService/ShareServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/shareService/shareServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/shrinkCluster/ShrinkClusterExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/shrinkCluster/shrinkClusterStage.d.ts +1 -0
- package/dist/pipeline/config/stages/stage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/stageConstants.d.ts +14 -0
- package/dist/pipeline/config/stages/tagImage/tagImageStage.d.ts +2 -0
- package/dist/pipeline/config/stages/tagImage/tagImageStage.module.d.ts +2 -0
- package/dist/pipeline/config/stages/templates/index.d.ts +3 -0
- package/dist/pipeline/config/stages/travis/TravisExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/travis/modal/addParameter.controller.modal.d.ts +10 -0
- package/dist/pipeline/config/stages/travis/travisExecutionDetails.controller.d.ts +18 -0
- package/dist/pipeline/config/stages/travis/travisStage.d.ts +43 -0
- package/dist/pipeline/config/stages/travis/travisStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.controller.d.ts +15 -0
- package/dist/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.d.ts +1 -0
- package/dist/pipeline/config/stages/unshareService/UnshareServiceExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/unshareService/unshareServiceStage.d.ts +1 -0
- package/dist/pipeline/config/stages/wait/SkipWait.d.ts +21 -0
- package/dist/pipeline/config/stages/wait/WaitExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/wait/WaitExecutionLabel.d.ts +9 -0
- package/dist/pipeline/config/stages/wait/WaitStageConfig.d.ts +17 -0
- package/dist/pipeline/config/stages/wait/waitStage.d.ts +1 -0
- package/dist/pipeline/config/stages/waitForCondition/SkipConditionWait.d.ts +10 -0
- package/dist/pipeline/config/stages/waitForCondition/WaitForConditionExecutionDetails.d.ts +6 -0
- package/dist/pipeline/config/stages/waitForCondition/waitForCondition.transformer.d.ts +6 -0
- package/dist/pipeline/config/stages/waitForCondition/waitForConditionStage.d.ts +1 -0
- package/dist/pipeline/config/stages/waitForParentTasks/waitForParentTasks.d.ts +2 -0
- package/dist/pipeline/config/stages/waitForParentTasks/waitForParentTasks.transformer.d.ts +2 -0
- package/dist/pipeline/config/stages/webhook/modal/addCustomHeader.controller.modal.d.ts +10 -0
- package/dist/pipeline/config/stages/webhook/webhookExecutionDetails.controller.d.ts +23 -0
- package/dist/pipeline/config/stages/webhook/webhookStage.d.ts +51 -0
- package/dist/pipeline/config/stages/webhook/webhookStage.module.d.ts +1 -0
- package/dist/pipeline/config/stages/wercker/WerckerExecutionLabel.d.ts +7 -0
- package/dist/pipeline/config/stages/wercker/modal/addParameter.controller.modal.d.ts +10 -0
- package/dist/pipeline/config/stages/wercker/werckerExecutionDetails.controller.d.ts +18 -0
- package/dist/pipeline/config/stages/wercker/werckerStage.d.ts +51 -0
- package/dist/pipeline/config/stages/wercker/werckerStage.module.d.ts +1 -0
- package/dist/pipeline/config/targetSelect.component.d.ts +11 -0
- package/dist/pipeline/config/templates/PipelineTemplateReader.d.ts +82 -0
- package/dist/pipeline/config/templates/PipelineTemplateWriter.d.ts +9 -0
- package/dist/pipeline/config/templates/TemplatePlanErrors.d.ts +10 -0
- package/dist/pipeline/config/templates/Variable.d.ts +13 -0
- package/dist/pipeline/config/templates/VariableError.d.ts +11 -0
- package/dist/pipeline/config/templates/VariableMetadataHelpField.d.ts +9 -0
- package/dist/pipeline/config/templates/configurePipelineTemplateModal.controller.d.ts +52 -0
- package/dist/pipeline/config/templates/index.d.ts +2 -0
- package/dist/pipeline/config/templates/inputs/BooleanInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/ListInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/NumberInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/ObjectInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/StringInput.d.ts +6 -0
- package/dist/pipeline/config/templates/inputs/variableInput.service.d.ts +27 -0
- package/dist/pipeline/config/templates/pipelineTemplate.module.d.ts +10 -0
- package/dist/pipeline/config/templates/templatePlanErrors.component.d.ts +1 -0
- package/dist/pipeline/config/templates/v2/ApplicationSelector.d.ts +12 -0
- package/dist/pipeline/config/templates/v2/DeletePipelineTemplateV2Modal.d.ts +16 -0
- package/dist/pipeline/config/templates/v2/PipelineTemplatesV2.d.ts +36 -0
- package/dist/pipeline/config/templates/v2/configurePipelineTemplateModalV2.controller.d.ts +53 -0
- package/dist/pipeline/config/templates/v2/createPipelineFromTemplate/CreatePipelineFromTemplate.d.ts +30 -0
- package/dist/pipeline/config/templates/v2/createPipelineFromTemplate/index.d.ts +1 -0
- package/dist/pipeline/config/templates/v2/pipelineTemplateV2.service.d.ts +23 -0
- package/dist/pipeline/config/templates/v2/pipelineTemplateV2.states.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/list.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/number.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/object.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/string.validator.d.ts +1 -0
- package/dist/pipeline/config/templates/validators/variableValidator.service.d.ts +10 -0
- package/dist/pipeline/config/templates/variable.component.d.ts +1 -0
- package/dist/pipeline/config/triggers/ExecutionOptionsPageContent.d.ts +7 -0
- package/dist/pipeline/config/triggers/MetadataPageContent.d.ts +12 -0
- package/dist/pipeline/config/triggers/NotificationsPageContent.d.ts +7 -0
- package/dist/pipeline/config/triggers/ParametersPageContent.d.ts +7 -0
- package/dist/pipeline/config/triggers/PipelineRoles.d.ts +6 -0
- package/dist/pipeline/config/triggers/RefreshableReactSelectInput.d.ts +12 -0
- package/dist/pipeline/config/triggers/RunAsUser.d.ts +6 -0
- package/dist/pipeline/config/triggers/Trigger.d.ts +18 -0
- package/dist/pipeline/config/triggers/Triggers.d.ts +11 -0
- package/dist/pipeline/config/triggers/TriggersPageContent.d.ts +9 -0
- package/dist/pipeline/config/triggers/TriggersWrapper.d.ts +6 -0
- package/dist/pipeline/config/triggers/artifactory/ArtifactoryTrigger.d.ts +2 -0
- package/dist/pipeline/config/triggers/artifactory/artifactory.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/artifactory/artifactoryReader.service.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/ArtifactEditor.d.ts +6 -0
- package/dist/pipeline/config/triggers/artifacts/ArtifactService.d.ts +7 -0
- package/dist/pipeline/config/triggers/artifacts/TriggerArtifactConstraintSelectorInput.d.ts +21 -0
- package/dist/pipeline/config/triggers/artifacts/base64/Base64ArtifactEditor.d.ts +5 -0
- package/dist/pipeline/config/triggers/artifacts/bitbucket/BitbucketArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/custom/CustomArtifactEditor.d.ts +17 -0
- package/dist/pipeline/config/triggers/artifacts/docker/DockerArtifactEditor.d.ts +4 -0
- package/dist/pipeline/config/triggers/artifacts/gcs/GcsArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/github/GithubArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/gitlab/GitlabArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/gitrepo/GitRepoArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/helm/HelmArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/helm-image/HelmImageArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/http/HttpArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/index.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/ivy/IvyArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/jenkins/JenkinsArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/kubernetes/KubernetesArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/maven/MavenArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/oracle/OracleArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/s3/S3ArtifactEditor.d.ts +3 -0
- package/dist/pipeline/config/triggers/artifacts/singleFieldArtifactEditor.d.ts +31 -0
- package/dist/pipeline/config/triggers/baseBuild/BaseBuildTrigger.d.ts +9 -0
- package/dist/pipeline/config/triggers/baseBuild/BaseBuildTriggerTemplate.d.ts +32 -0
- package/dist/pipeline/config/triggers/cdevents/CDEventsTrigger.d.ts +7 -0
- package/dist/pipeline/config/triggers/cdevents/cdevents.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/concourse/ConcourseTrigger.d.ts +8 -0
- package/dist/pipeline/config/triggers/concourse/ConcourseTriggerTemplate.d.ts +8 -0
- package/dist/pipeline/config/triggers/concourse/concourse.service.d.ts +6 -0
- package/dist/pipeline/config/triggers/concourse/concourse.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/cron/CronAdvance.d.ts +15 -0
- package/dist/pipeline/config/triggers/cron/CronDaily.d.ts +17 -0
- package/dist/pipeline/config/triggers/cron/CronHourly.d.ts +13 -0
- package/dist/pipeline/config/triggers/cron/CronMinutes.d.ts +12 -0
- package/dist/pipeline/config/triggers/cron/CronMonthly.d.ts +32 -0
- package/dist/pipeline/config/triggers/cron/CronTrigger.d.ts +13 -0
- package/dist/pipeline/config/triggers/cron/CronWeekly.d.ts +15 -0
- package/dist/pipeline/config/triggers/cron/cron.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/cron/cronConfig.d.ts +5 -0
- package/dist/pipeline/config/triggers/cron/cronSelectOptions.d.ts +20 -0
- package/dist/pipeline/config/triggers/cron/cronValidator.service.d.ts +3 -0
- package/dist/pipeline/config/triggers/git/GitTrigger.d.ts +11 -0
- package/dist/pipeline/config/triggers/git/GitTriggerExecutionStatus.d.ts +5 -0
- package/dist/pipeline/config/triggers/git/git.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/helm/HelmManualTriggerConfig.d.ts +8 -0
- package/dist/pipeline/config/triggers/helm/HelmTriggerConfig.d.ts +7 -0
- package/dist/pipeline/config/triggers/helm/HelmTriggerExecutionStatus.d.ts +3 -0
- package/dist/pipeline/config/triggers/helm/HelmTriggerTemplate.d.ts +14 -0
- package/dist/pipeline/config/triggers/helm/helm.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/index.d.ts +14 -0
- package/dist/pipeline/config/triggers/jenkins/JenkinsTrigger.d.ts +5 -0
- package/dist/pipeline/config/triggers/jenkins/JenkinsTriggerExecutionStatus.d.ts +5 -0
- package/dist/pipeline/config/triggers/jenkins/JenkinsTriggerTemplate.d.ts +7 -0
- package/dist/pipeline/config/triggers/jenkins/jenkins.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/nexus/NexusTrigger.d.ts +2 -0
- package/dist/pipeline/config/triggers/nexus/nexus.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/nexus/nexusReader.service.d.ts +3 -0
- package/dist/pipeline/config/triggers/pipeline/PipelineTrigger.d.ts +8 -0
- package/dist/pipeline/config/triggers/pipeline/PipelineTriggerTemplate.d.ts +24 -0
- package/dist/pipeline/config/triggers/pipeline/pipeline.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/plugin/PluginTrigger.d.ts +2 -0
- package/dist/pipeline/config/triggers/plugin/plugin.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/pubsub/PubsubTrigger.d.ts +8 -0
- package/dist/pipeline/config/triggers/pubsub/pubsub.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/travis/TravisTrigger.d.ts +5 -0
- package/dist/pipeline/config/triggers/travis/TravisTriggerTemplate.d.ts +7 -0
- package/dist/pipeline/config/triggers/travis/travis.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/triggers.module.d.ts +1 -0
- package/dist/pipeline/config/triggers/webhook/WebhookTrigger.d.ts +7 -0
- package/dist/pipeline/config/triggers/webhook/webhook.trigger.d.ts +1 -0
- package/dist/pipeline/config/triggers/wercker/WerckerTrigger.d.ts +13 -0
- package/dist/pipeline/config/triggers/wercker/WerckerTriggerTemplate.d.ts +7 -0
- package/dist/pipeline/config/triggers/wercker/wercker.trigger.d.ts +1 -0
- package/dist/pipeline/config/validation/PipelineConfigValidator.d.ts +46 -0
- package/dist/pipeline/config/validation/anyFieldRequired.validator.d.ts +12 -0
- package/dist/pipeline/config/validation/baseRequiredField.validator.d.ts +16 -0
- package/dist/pipeline/config/validation/imageProviderBeforeType.validator.d.ts +12 -0
- package/dist/pipeline/config/validation/repositoryInformationProvided.validator.d.ts +1 -0
- package/dist/pipeline/config/validation/requiredField.validator.d.ts +9 -0
- package/dist/pipeline/config/validation/serviceAccountAccess.validator.d.ts +11 -0
- package/dist/pipeline/config/validation/stageBeforeType.validator.d.ts +10 -0
- package/dist/pipeline/config/validation/stageOrTriggerBeforeType.validator.d.ts +17 -0
- package/dist/pipeline/config/validation/targetImpedance.validator.d.ts +10 -0
- package/dist/pipeline/config/validation/upstreamHasFlagValidator.builder.d.ts +8 -0
- package/dist/pipeline/config/validation/upstreamVersionProvided.validator.d.ts +1 -0
- package/dist/pipeline/create/CreatePipelineButton.d.ts +16 -0
- package/dist/pipeline/create/CreatePipelineModal.d.ts +69 -0
- package/dist/pipeline/create/ManagedTemplateSelector.d.ts +13 -0
- package/dist/pipeline/create/TemplateDescription.d.ts +14 -0
- package/dist/pipeline/create/index.d.ts +1 -0
- package/dist/pipeline/details/ExecutionDetailsSectionNav.d.ts +16 -0
- package/dist/pipeline/details/SingleExecutionDetails.d.ts +18 -0
- package/dist/pipeline/details/StageExecutionDetails.d.ts +42 -0
- package/dist/pipeline/details/StageExecutionLogs.d.ts +8 -0
- package/dist/pipeline/details/StageFailureMessage.d.ts +24 -0
- package/dist/pipeline/details/StageSummary.d.ts +11 -0
- package/dist/pipeline/details/StageSummaryWrapper.d.ts +9 -0
- package/dist/pipeline/details/StepDetails.d.ts +20 -0
- package/dist/pipeline/details/StepExecutionDetailsWrapper.d.ts +9 -0
- package/dist/pipeline/details/executionDetailsSection.service.d.ts +14 -0
- package/dist/pipeline/details/executionDetailsSectionNav.component.d.ts +1 -0
- package/dist/pipeline/details/index.d.ts +5 -0
- package/dist/pipeline/details/stageFailureMessage.component.d.ts +1 -0
- package/dist/pipeline/details/stageSummary.component.d.ts +34 -0
- package/dist/pipeline/details/stepExecutionDetails.component.d.ts +19 -0
- package/dist/pipeline/executionBuild/ExecutionBuildLink.d.ts +13 -0
- package/dist/pipeline/executionBuild/ExecutionBuildTitle.d.ts +10 -0
- package/dist/pipeline/executionBuild/buildDisplayName.filter.d.ts +4 -0
- package/dist/pipeline/executions/ExecutionNotFound.d.ts +2 -0
- package/dist/pipeline/executions/Executions.d.ts +48 -0
- package/dist/pipeline/executions/execution/Execution.d.ts +62 -0
- package/dist/pipeline/executions/execution/ExecutionBreadcrumbs.d.ts +6 -0
- package/dist/pipeline/executions/execution/ExecutionMarker.d.ts +31 -0
- package/dist/pipeline/executions/execution/ExecutionMarkerInformationModal.d.ts +35 -0
- package/dist/pipeline/executions/execution/ExecutionPermalink.d.ts +5 -0
- package/dist/pipeline/executions/execution/OrchestratedItemRunningTime.d.ts +9 -0
- package/dist/pipeline/executions/execution/executionInformation.service.d.ts +10 -0
- package/dist/pipeline/executions/executionAction/ExecutionAction.d.ts +17 -0
- package/dist/pipeline/executions/executionGroup/ExecutionGroup.d.ts +48 -0
- package/dist/pipeline/executions/executionGroup/ExecutionGroups.d.ts +22 -0
- package/dist/pipeline/executions/executionGroup/MigrationTag.d.ts +4 -0
- package/dist/pipeline/filter/ExecutionFilterModel.d.ts +20 -0
- package/dist/pipeline/filter/ExecutionFilters.d.ts +47 -0
- package/dist/pipeline/filter/executionFilter.service.d.ts +29 -0
- package/dist/pipeline/index.d.ts +27 -0
- package/dist/pipeline/manualExecution/CurrentlyRunningExecutions.d.ts +8 -0
- package/dist/pipeline/manualExecution/DryRun.d.ts +2 -0
- package/dist/pipeline/manualExecution/ManualPipelineExecutionModal.d.ts +44 -0
- package/dist/pipeline/manualExecution/NotificationDetails.d.ts +17 -0
- package/dist/pipeline/manualExecution/Parameters.d.ts +11 -0
- package/dist/pipeline/manualExecution/PipelineOptions.d.ts +27 -0
- package/dist/pipeline/manualExecution/StageManualComponents.d.ts +14 -0
- package/dist/pipeline/manualExecution/TriggerTemplate.d.ts +12 -0
- package/dist/pipeline/manualExecution/Triggers.d.ts +19 -0
- package/dist/pipeline/manualExecution/index.d.ts +1 -0
- package/dist/pipeline/manualExecution/layout/ManualExecutionFieldLayout.d.ts +3 -0
- package/dist/pipeline/pipeline.dataSource.d.ts +2 -0
- package/dist/pipeline/pipeline.module.d.ts +19 -0
- package/dist/pipeline/pipeline.states.d.ts +1 -0
- package/dist/pipeline/service/ExecutionsTransformer.d.ts +29 -0
- package/dist/pipeline/service/execution.service.d.ts +85 -0
- package/dist/pipeline/status/Artifact.d.ts +12 -0
- package/dist/pipeline/status/ArtifactList.d.ts +9 -0
- package/dist/pipeline/status/ExecutionCancellationReason.d.ts +7 -0
- package/dist/pipeline/status/ExecutionParameters.d.ts +19 -0
- package/dist/pipeline/status/ExecutionStatus.d.ts +23 -0
- package/dist/pipeline/status/ExecutionUserStatus.d.ts +5 -0
- package/dist/pipeline/status/ParametersAndArtifacts.d.ts +17 -0
- package/dist/pipeline/status/ResolvedArtifactList.d.ts +12 -0
- package/dist/pipeline/status/artifactList.component.d.ts +1 -0
- package/dist/pipeline/triggers/NextRunTag.d.ts +15 -0
- package/dist/pipeline/triggers/QuietPeriodBadge.d.ts +2 -0
- package/dist/pipeline/triggers/TriggersTag.d.ts +6 -0
- package/dist/pipeline/triggers/useQuietPeriod.hook.d.ts +7 -0
- package/dist/plugins/deck.plugin.d.ts +22 -0
- package/dist/plugins/index.d.ts +3 -0
- package/dist/plugins/plugin.module.d.ts +1 -0
- package/dist/plugins/plugin.registry.d.ts +41 -0
- package/dist/plugins/sharedLibraries.d.ts +5 -0
- package/dist/presentation/CollapsibleElement.d.ts +5 -0
- package/dist/presentation/CustomLabels.d.ts +11 -0
- package/dist/presentation/FormElements.d.ts +6 -0
- package/dist/presentation/HoverablePopover.d.ts +55 -0
- package/dist/presentation/IconTooltip.d.ts +10 -0
- package/dist/presentation/LabelComponent.d.ts +8 -0
- package/dist/presentation/LinkWithClipboard.d.ts +6 -0
- package/dist/presentation/LoadingAnimation.d.ts +2 -0
- package/dist/presentation/Markdown.d.ts +189 -0
- package/dist/presentation/Placement.d.ts +1 -0
- package/dist/presentation/Popover.d.ts +15 -0
- package/dist/presentation/ReactModal.d.ts +27 -0
- package/dist/presentation/RenderOutputFile.d.ts +11 -0
- package/dist/presentation/SpanDropdownTrigger.d.ts +15 -0
- package/dist/presentation/SpinErrorBoundary.d.ts +23 -0
- package/dist/presentation/TabBoundary.d.ts +4 -0
- package/dist/presentation/TetheredCreatable.d.ts +6 -0
- package/dist/presentation/TetheredSelect.d.ts +6 -0
- package/dist/presentation/ToggleButtonGroup.d.ts +29 -0
- package/dist/presentation/Tooltip.d.ts +16 -0
- package/dist/presentation/WatchValue.d.ts +16 -0
- package/dist/presentation/anyFieldFilter/anyField.filter.d.ts +11 -0
- package/dist/presentation/autoScroll/autoScroll.directive.d.ts +27 -0
- package/dist/presentation/collapsibleSection/CollapsibleSection.d.ts +22 -0
- package/dist/presentation/collapsibleSection/collapsibleSection.directive.d.ts +2 -0
- package/dist/presentation/details/Details.d.ts +20 -0
- package/dist/presentation/domPurifyOpenLinksInNewWindow.d.ts +1 -0
- package/dist/presentation/forms/FormikForm.d.ts +7 -0
- package/dist/presentation/forms/SpinFormik.d.ts +2 -0
- package/dist/presentation/forms/fields/FormField.d.ts +6 -0
- package/dist/presentation/forms/fields/FormikExpressionField.d.ts +16 -0
- package/dist/presentation/forms/fields/FormikExpressionRegexField.d.ts +21 -0
- package/dist/presentation/forms/fields/FormikFormField.d.ts +28 -0
- package/dist/presentation/forms/fields/index.d.ts +7 -0
- package/dist/presentation/forms/fields/interface.d.ts +35 -0
- package/dist/presentation/forms/fields/renderContent.d.ts +9 -0
- package/dist/presentation/forms/hooks/index.d.ts +2 -0
- package/dist/presentation/forms/hooks/useFormInputValueMapper.hook.d.ts +32 -0
- package/dist/presentation/forms/hooks/useSaveRestoreMutuallyExclusiveFields.hook.d.ts +45 -0
- package/dist/presentation/forms/index.d.ts +7 -0
- package/dist/presentation/forms/inputs/CheckboxInput.d.ts +11 -0
- package/dist/presentation/forms/inputs/ChecklistInput.d.ts +15 -0
- package/dist/presentation/forms/inputs/DayPickerInput.d.ts +6 -0
- package/dist/presentation/forms/inputs/JsonEditor.d.ts +19 -0
- package/dist/presentation/forms/inputs/NumberInput.d.ts +8 -0
- package/dist/presentation/forms/inputs/RadioButtonInput.d.ts +23 -0
- package/dist/presentation/forms/inputs/ReactSelectInput.d.ts +30 -0
- package/dist/presentation/forms/inputs/SelectInput.d.ts +15 -0
- package/dist/presentation/forms/inputs/StringsAsOptions.d.ts +23 -0
- package/dist/presentation/forms/inputs/TextAreaInput.d.ts +9 -0
- package/dist/presentation/forms/inputs/TextInput.d.ts +9 -0
- package/dist/presentation/forms/inputs/expression/ExpressionError.d.ts +12 -0
- package/dist/presentation/forms/inputs/expression/ExpressionInput.d.ts +16 -0
- package/dist/presentation/forms/inputs/expression/ExpressionPreview.d.ts +6 -0
- package/dist/presentation/forms/inputs/expression/evaluateExpression.d.ts +11 -0
- package/dist/presentation/forms/inputs/expression/index.d.ts +6 -0
- package/dist/presentation/forms/inputs/expression/spel2js.templateParser.d.ts +2 -0
- package/dist/presentation/forms/inputs/hooks/index.d.ts +1 -0
- package/dist/presentation/forms/inputs/hooks/useInternalValidator.hook.d.ts +3 -0
- package/dist/presentation/forms/inputs/index.d.ts +15 -0
- package/dist/presentation/forms/inputs/interface.d.ts +30 -0
- package/dist/presentation/forms/inputs/utils.d.ts +9 -0
- package/dist/presentation/forms/layouts/LayoutContext.d.ts +4 -0
- package/dist/presentation/forms/layouts/ResponsiveFieldLayout.d.ts +4 -0
- package/dist/presentation/forms/layouts/StandardFieldLayout.d.ts +4 -0
- package/dist/presentation/forms/layouts/index.d.ts +4 -0
- package/dist/presentation/forms/layouts/interface.d.ts +11 -0
- package/dist/presentation/forms/stories/SpinFormikStoriesHelper.d.ts +12 -0
- package/dist/presentation/forms/validation/FormValidator.d.ts +31 -0
- package/dist/presentation/forms/validation/FormValidatorField.d.ts +26 -0
- package/dist/presentation/forms/validation/ValidationMessage.d.ts +19 -0
- package/dist/presentation/forms/validation/categories.d.ts +23 -0
- package/dist/presentation/forms/validation/index.d.ts +7 -0
- package/dist/presentation/forms/validation/useValidationData.d.ts +16 -0
- package/dist/presentation/forms/validation/validation.d.ts +38 -0
- package/dist/presentation/forms/validation/validators.d.ts +25 -0
- package/dist/presentation/hooks/index.d.ts +19 -0
- package/dist/presentation/hooks/useApplicationContext.hook.d.ts +3 -0
- package/dist/presentation/hooks/useContainerClassNames.hook.d.ts +1 -0
- package/dist/presentation/hooks/useData.hook.d.ts +18 -0
- package/dist/presentation/hooks/useDataSource.hook.d.ts +14 -0
- package/dist/presentation/hooks/useDataWithRefresh.hook.d.ts +17 -0
- package/dist/presentation/hooks/useDebouncedValue.hook.d.ts +7 -0
- package/dist/presentation/hooks/useDeepObjectDiff.hook.d.ts +1 -0
- package/dist/presentation/hooks/useDimensions.hook.d.ts +8 -0
- package/dist/presentation/hooks/useEscapeKeyCallback.hook.d.ts +1 -0
- package/dist/presentation/hooks/useEventListener.hook.d.ts +1 -0
- package/dist/presentation/hooks/useForceUpdate.hook.d.ts +1 -0
- package/dist/presentation/hooks/useInterval.hook.d.ts +16 -0
- package/dist/presentation/hooks/useIsMobile.hook.d.ts +1 -0
- package/dist/presentation/hooks/useIsMountedRef.hook.d.ts +2 -0
- package/dist/presentation/hooks/useLatestCallback.hook.d.ts +6 -0
- package/dist/presentation/hooks/useLatestPromise.hook.d.ts +27 -0
- package/dist/presentation/hooks/useMountStatusRef.hook.d.ts +2 -0
- package/dist/presentation/hooks/useObservable.hook.d.ts +11 -0
- package/dist/presentation/hooks/useObservableValue.hook.d.ts +11 -0
- package/dist/presentation/hooks/usePollingData.hook.d.ts +19 -0
- package/dist/presentation/hooks/usePrevious.hook.d.ts +1 -0
- package/dist/presentation/horizontalTabs/HorizontalTabs.d.ts +14 -0
- package/dist/presentation/index.d.ts +34 -0
- package/dist/presentation/isVisible/isVisible.directive.d.ts +2 -0
- package/dist/presentation/label.component.d.ts +1 -0
- package/dist/presentation/labeledValues/LabeledValue.d.ts +6 -0
- package/dist/presentation/labeledValues/LabeledValueList.d.ts +2 -0
- package/dist/presentation/labeledValues/index.d.ts +2 -0
- package/dist/presentation/linkWithClipboard.component.d.ts +1 -0
- package/dist/presentation/markdown.component.d.ts +1 -0
- package/dist/presentation/modal/Modal.d.ts +10 -0
- package/dist/presentation/modal/ModalBody.d.ts +6 -0
- package/dist/presentation/modal/ModalContext.d.ts +5 -0
- package/dist/presentation/modal/ModalFooter.d.ts +7 -0
- package/dist/presentation/modal/ModalHeader.d.ts +7 -0
- package/dist/presentation/modal/index.d.ts +5 -0
- package/dist/presentation/modal/showModal.d.ts +40 -0
- package/dist/presentation/navigation/PageNavigationState.d.ts +13 -0
- package/dist/presentation/navigation/PageNavigator.d.ts +34 -0
- package/dist/presentation/navigation/PageSection.d.ts +16 -0
- package/dist/presentation/navigation/index.d.ts +2 -0
- package/dist/presentation/navigation/pageNavigator.component.d.ts +2 -0
- package/dist/presentation/navigation/pageSection.component.d.ts +1 -0
- package/dist/presentation/percent.filter.d.ts +2 -0
- package/dist/presentation/presentation.module.d.ts +2 -0
- package/dist/presentation/replace.filter.d.ts +1 -0
- package/dist/presentation/robotToHumanFilter/robotToHuman.filter.d.ts +3 -0
- package/dist/presentation/sortToggle/SortToggle.d.ts +14 -0
- package/dist/presentation/sortToggle/index.d.ts +1 -0
- package/dist/presentation/sortToggle/sorttoggle.directive.d.ts +2 -0
- package/dist/presentation/spel/FormikSpelContext.d.ts +10 -0
- package/dist/presentation/spel/SpelInput.d.ts +16 -0
- package/dist/presentation/spel/SpelService.d.ts +19 -0
- package/dist/presentation/spel/SpelToggle.d.ts +11 -0
- package/dist/presentation/spel/index.d.ts +4 -0
- package/dist/presentation/tables/Table.d.ts +28 -0
- package/dist/presentation/tables/TableCell.d.ts +11 -0
- package/dist/presentation/tables/TableContext.d.ts +11 -0
- package/dist/presentation/tables/TableRow.d.ts +14 -0
- package/dist/presentation/tables/index.d.ts +5 -0
- package/dist/presentation/tables/minimalNativeTableLayout.d.ts +10 -0
- package/dist/presentation/tables/standardGridTableLayout.d.ts +16 -0
- package/dist/presentation/text/BreakString.d.ts +6 -0
- package/dist/presentation/text/SingleLineString.d.ts +6 -0
- package/dist/presentation/text/index.d.ts +2 -0
- package/dist/projects/ProjectHeader.d.ts +23 -0
- package/dist/projects/Projects.d.ts +2 -0
- package/dist/projects/configure/Applications.d.ts +13 -0
- package/dist/projects/configure/Clusters.d.ts +14 -0
- package/dist/projects/configure/ConfigureProjectModal.d.ts +28 -0
- package/dist/projects/configure/Pipelines.d.ts +23 -0
- package/dist/projects/configure/ProjectAttributes.d.ts +24 -0
- package/dist/projects/configure/index.d.ts +5 -0
- package/dist/projects/dashboard/cluster/projectCluster.directive.d.ts +2 -0
- package/dist/projects/dashboard/dashboard.controller.d.ts +2 -0
- package/dist/projects/dashboard/pipeline/ProjectPipeline.d.ts +19 -0
- package/dist/projects/dashboard/pipeline/projectPipeline.component.d.ts +1 -0
- package/dist/projects/dashboard/regionFilter/regionFilter.component.d.ts +2 -0
- package/dist/projects/dashboard/regionFilter/regionFilter.service.d.ts +2 -0
- package/dist/projects/index.d.ts +6 -0
- package/dist/projects/projectSearchResultType.d.ts +19 -0
- package/dist/projects/projects.module.d.ts +3 -0
- package/dist/projects/projects.states.d.ts +5 -0
- package/dist/projects/service/ProjectReader.d.ts +6 -0
- package/dist/projects/service/ProjectWriter.d.ts +5 -0
- package/dist/pubsub/PubsubSubscriptionReader.d.ts +4 -0
- package/dist/pubsub/index.d.ts +1 -0
- package/dist/reactShims/AngularJSAdapter.d.ts +25 -0
- package/dist/reactShims/index.d.ts +7 -0
- package/dist/reactShims/modal.injector.d.ts +10 -0
- package/dist/reactShims/ngReact.d.ts +21 -0
- package/dist/reactShims/react.ga.d.ts +1 -0
- package/dist/reactShims/react.injector.d.ts +49 -0
- package/dist/reactShims/react.module.d.ts +3 -0
- package/dist/reactShims/reactUtils.d.ts +1 -0
- package/dist/reactShims/state.events.d.ts +17 -0
- package/dist/region/RegionSelectField.d.ts +18 -0
- package/dist/region/RegionSelectInput.d.ts +9 -0
- package/dist/region/index.d.ts +2 -0
- package/dist/region/region.module.d.ts +1 -0
- package/dist/region/regionSelectField.directive.d.ts +2 -0
- package/dist/registry/Registry.d.ts +7 -0
- package/dist/registry/index.d.ts +1 -0
- package/dist/retry/index.d.ts +1 -0
- package/dist/retry/retry.service.d.ts +3 -0
- package/dist/scheduler/SchedulerFactory.d.ts +9 -0
- package/dist/scheduler/index.d.ts +1 -0
- package/dist/search/global/GlobalSearch.d.ts +37 -0
- package/dist/search/global/GlobalSearchRecentItems.d.ts +9 -0
- package/dist/search/global/GlobalSearchResults.d.ts +12 -0
- package/dist/search/global/globalSearch.module.d.ts +2 -0
- package/dist/search/global/globalsearch.component.d.ts +1 -0
- package/dist/search/global/utils.d.ts +15 -0
- package/dist/search/index.d.ts +5 -0
- package/dist/search/infrastructure/ProjectSummaryPod.d.ts +14 -0
- package/dist/search/infrastructure/RecentlyViewedItems.d.ts +13 -0
- package/dist/search/infrastructure/SearchResult.d.ts +9 -0
- package/dist/search/infrastructure/SearchResultPod.d.ts +10 -0
- package/dist/search/infrastructure/SearchResultPodItem.d.ts +13 -0
- package/dist/search/infrastructure/SearchResultPods.d.ts +21 -0
- package/dist/search/infrastructure/SearchV2.d.ts +27 -0
- package/dist/search/infrastructure/infrastructure.controller.d.ts +2 -0
- package/dist/search/infrastructure/infrastructure.states.d.ts +1 -0
- package/dist/search/infrastructure/infrastructureSearch.service.d.ts +36 -0
- package/dist/search/infrastructure/infrastructureSearchV2.component.d.ts +1 -0
- package/dist/search/infrastructure/infrastructureSearchV2.service.d.ts +7 -0
- package/dist/search/infrastructure/projectSummaryPod.component.d.ts +1 -0
- package/dist/search/infrastructure/recentlyViewedItems.component.d.ts +1 -0
- package/dist/search/infrastructure/search.infrastructure.module.d.ts +1 -0
- package/dist/search/infrastructure/searchResult.component.d.ts +1 -0
- package/dist/search/search.module.d.ts +2 -0
- package/dist/search/search.service.d.ts +28 -0
- package/dist/search/searchRank.filter.d.ts +4 -0
- package/dist/search/searchResult/DefaultSearchResultTab.d.ts +5 -0
- package/dist/search/searchResult/Renderers.d.ts +40 -0
- package/dist/search/searchResult/SearchResultGrid.d.ts +9 -0
- package/dist/search/searchResult/SearchResultTabs.d.ts +10 -0
- package/dist/search/searchResult/SearchResults.d.ts +19 -0
- package/dist/search/searchResult/SearchStatus.d.ts +7 -0
- package/dist/search/searchResult/index.d.ts +6 -0
- package/dist/search/searchResult/searchResultType.d.ts +30 -0
- package/dist/search/searchResult/searchResultType.registry.d.ts +9 -0
- package/dist/search/widgets/Filter.d.ts +16 -0
- package/dist/search/widgets/Filters.d.ts +28 -0
- package/dist/search/widgets/Search.d.ts +53 -0
- package/dist/search/widgets/SearchFilterTypeRegistry.d.ts +16 -0
- package/dist/search/widgets/index.d.ts +4 -0
- package/dist/search/widgets/search.component.d.ts +1 -0
- package/dist/securityGroup/CreateSecurityGroupButton.d.ts +5 -0
- package/dist/securityGroup/SecurityGroup.d.ts +12 -0
- package/dist/securityGroup/SecurityGroupDetails.d.ts +7 -0
- package/dist/securityGroup/SecurityGroupPod.d.ts +10 -0
- package/dist/securityGroup/SecurityGroupWriter.d.ts +12 -0
- package/dist/securityGroup/SecurityGroups.d.ts +6 -0
- package/dist/securityGroup/filter/SecurityGroupFilterModel.d.ts +7 -0
- package/dist/securityGroup/filter/SecurityGroupFilterService.d.ts +14 -0
- package/dist/securityGroup/filter/SecurityGroupFilters.d.ts +6 -0
- package/dist/securityGroup/filter/securityGroup.filter.component.d.ts +1 -0
- package/dist/securityGroup/index.d.ts +4 -0
- package/dist/securityGroup/label/FirewallLabel.d.ts +5 -0
- package/dist/securityGroup/label/FirewallLabels.d.ts +11 -0
- package/dist/securityGroup/label/firewallLabel.component.d.ts +1 -0
- package/dist/securityGroup/label/index.d.ts +2 -0
- package/dist/securityGroup/securityGroup.dataSource.d.ts +1 -0
- package/dist/securityGroup/securityGroup.module.d.ts +2 -0
- package/dist/securityGroup/securityGroup.states.d.ts +1 -0
- package/dist/securityGroup/securityGroupReader.service.d.ts +94 -0
- package/dist/securityGroup/securityGroupSearchResultType.d.ts +13 -0
- package/dist/securityGroup/securityGroupTransformer.service.d.ts +9 -0
- package/dist/serverGroup/ServerGroup.d.ts +48 -0
- package/dist/serverGroup/ServerGroupHeader.d.ts +46 -0
- package/dist/serverGroup/configure/common/DeployInitializer.d.ts +31 -0
- package/dist/serverGroup/configure/common/InstanceArchetypeSelector.d.ts +6 -0
- package/dist/serverGroup/configure/common/InstanceTypeSelector.d.ts +5 -0
- package/dist/serverGroup/configure/common/ServerGroupNamePreview.d.ts +9 -0
- package/dist/serverGroup/configure/common/basicSettingsMixin.controller.d.ts +2 -0
- package/dist/serverGroup/configure/common/costFactor.d.ts +2 -0
- package/dist/serverGroup/configure/common/deployInitializer.component.d.ts +43 -0
- package/dist/serverGroup/configure/common/index.d.ts +7 -0
- package/dist/serverGroup/configure/common/serverGroupCommandBuilder.service.d.ts +149 -0
- package/dist/serverGroup/configure/common/serverGroupCommandRegistry.provider.d.ts +16 -0
- package/dist/serverGroup/configure/common/serverGroupConfiguration.service.d.ts +10 -0
- package/dist/serverGroup/configure/common/targetHealthyPercentageSelector.component.d.ts +1 -0
- package/dist/serverGroup/configure/common/v2InstanceTypeSelector.component.d.ts +4 -0
- package/dist/serverGroup/configure/common/v2instanceArchetypeSelector.component.d.ts +3 -0
- package/dist/serverGroup/configure/common/wizard/fields/ServerGroupDetailsField.d.ts +12 -0
- package/dist/serverGroup/configure/common/wizard/fields/index.d.ts +1 -0
- package/dist/serverGroup/details/RunningTasks.d.ts +10 -0
- package/dist/serverGroup/details/ServerGroupDetails.d.ts +13 -0
- package/dist/serverGroup/details/ServerGroupDetailsWrapper.d.ts +46 -0
- package/dist/serverGroup/details/ServerGroupInsightActions.d.ts +8 -0
- package/dist/serverGroup/details/ShowUserData.d.ts +17 -0
- package/dist/serverGroup/details/capacity/CapacityDetailsSection.d.ts +8 -0
- package/dist/serverGroup/details/capacity/CurrentCapacity.d.ts +4 -0
- package/dist/serverGroup/details/capacity/DesiredCapacity.d.ts +6 -0
- package/dist/serverGroup/details/capacity/index.d.ts +3 -0
- package/dist/serverGroup/details/index.d.ts +7 -0
- package/dist/serverGroup/details/multipleServerGroup.component.d.ts +2 -0
- package/dist/serverGroup/details/multipleServerGroups.controller.d.ts +2 -0
- package/dist/serverGroup/details/runningTasks.component.d.ts +1 -0
- package/dist/serverGroup/details/scalingActivities/ScalingActivitiesModal.d.ts +27 -0
- package/dist/serverGroup/details/scalingActivities/ViewScalingActivitiesLink.d.ts +6 -0
- package/dist/serverGroup/details/scalingActivities/index.d.ts +1 -0
- package/dist/serverGroup/details/scalingActivities/viewScalingActivitiesLink.component.d.ts +1 -0
- package/dist/serverGroup/details/serverGroupWarningMessage.service.d.ts +9 -0
- package/dist/serverGroup/index.d.ts +9 -0
- package/dist/serverGroup/metrics/CloudMetricsReader.d.ts +5 -0
- package/dist/serverGroup/pod/RunningTasksPopoverContent.d.ts +13 -0
- package/dist/serverGroup/pod/RunningTasksTag.d.ts +7 -0
- package/dist/serverGroup/resize/MinMaxDesiredChanges.d.ts +7 -0
- package/dist/serverGroup/resize/index.d.ts +1 -0
- package/dist/serverGroup/serverGroup.dataSource.d.ts +1 -0
- package/dist/serverGroup/serverGroup.module.d.ts +2 -0
- package/dist/serverGroup/serverGroup.states.d.ts +1 -0
- package/dist/serverGroup/serverGroup.transformer.d.ts +2 -0
- package/dist/serverGroup/serverGroupReader.service.d.ts +5 -0
- package/dist/serverGroup/serverGroupSearchResultType.d.ts +16 -0
- package/dist/serverGroup/serverGroupWriter.service.d.ts +38 -0
- package/dist/serverGroup/templates/index.d.ts +3 -0
- package/dist/serverGroupManager/ServerGroupManager.d.ts +19 -0
- package/dist/serverGroupManager/ServerGroupManagerDetails.d.ts +7 -0
- package/dist/serverGroupManager/ServerGroupManagerHeading.d.ts +13 -0
- package/dist/serverGroupManager/ServerGroupManagerReader.d.ts +4 -0
- package/dist/serverGroupManager/ServerGroupManagerTag.d.ts +13 -0
- package/dist/serverGroupManager/index.d.ts +5 -0
- package/dist/serverGroupManager/serverGroupManager.dataSource.d.ts +1 -0
- package/dist/serverGroupManager/serverGroupManager.module.d.ts +1 -0
- package/dist/serverGroupManager/serverGroupManager.states.d.ts +7 -0
- package/dist/serviceAccount/ServiceAccountReader.d.ts +4 -0
- package/dist/serviceAccount/index.d.ts +1 -0
- package/dist/services/ServicesReader.d.ts +4 -0
- package/dist/services/index.d.ts +1 -0
- package/dist/slack/SlackChannelSelector.d.ts +12 -0
- package/dist/slack/SlackReader.d.ts +12 -0
- package/dist/slack/index.d.ts +2 -0
- package/dist/slack/slackChannelSelector.component.d.ts +1 -0
- package/dist/snapshot/SnapshotReader.d.ts +4 -0
- package/dist/snapshot/SnapshotWriter.d.ts +9 -0
- package/dist/snapshot/diff/snapshotDiff.modal.controller.d.ts +2 -0
- package/dist/snapshot/diff/viewSnapshotDiffButton.component.d.ts +2 -0
- package/dist/state/index.d.ts +36 -0
- package/dist/storage/StorageAccountReader.d.ts +3 -0
- package/dist/storage/index.d.ts +1 -0
- package/dist/styleguide/styleguide.module.d.ts +1 -0
- package/dist/styleguide/styleguide.states.d.ts +1 -0
- package/dist/subnet/SubnetTag.d.ts +12 -0
- package/dist/subnet/index.d.ts +2 -0
- package/dist/subnet/subnet.module.d.ts +1 -0
- package/dist/subnet/subnet.read.service.d.ts +8 -0
- package/dist/subnet/subnetTag.component.d.ts +2 -0
- package/dist/task/PlatformHealthOverrideMessage.d.ts +16 -0
- package/dist/task/StatusGlyph.d.ts +8 -0
- package/dist/task/TaskNotFound.d.ts +2 -0
- package/dist/task/TaskProgressBar.d.ts +7 -0
- package/dist/task/TrafficGuardHelperLink.d.ts +7 -0
- package/dist/task/displayableTasks.filter.d.ts +4 -0
- package/dist/task/index.d.ts +8 -0
- package/dist/task/modal/TaskMonitorModal.d.ts +25 -0
- package/dist/task/modal/TaskReason.d.ts +8 -0
- package/dist/task/modal/reason.directive.d.ts +2 -0
- package/dist/task/monitor/MultiTaskMonitor.d.ts +10 -0
- package/dist/task/monitor/TaskMonitor.d.ts +44 -0
- package/dist/task/monitor/TaskMonitorError.d.ts +11 -0
- package/dist/task/monitor/TaskMonitorStatus.d.ts +5 -0
- package/dist/task/monitor/TaskMonitorWrapper.d.ts +6 -0
- package/dist/task/monitor/taskMonitor.directive.d.ts +2 -0
- package/dist/task/monitor/taskMonitor.module.d.ts +2 -0
- package/dist/task/platformHealthOverrideMessage.component.d.ts +1 -0
- package/dist/task/statusGlyph.component.d.ts +1 -0
- package/dist/task/task.dataSource.d.ts +2 -0
- package/dist/task/task.module.d.ts +2 -0
- package/dist/task/task.read.service.d.ts +16 -0
- package/dist/task/task.states.d.ts +1 -0
- package/dist/task/task.write.service.d.ts +9 -0
- package/dist/task/taskExecutor.d.ts +20 -0
- package/dist/task/taskProgressBar.directive.d.ts +2 -0
- package/dist/task/tasks.controller.d.ts +2 -0
- package/dist/task/verification/UserVerification.d.ts +8 -0
- package/dist/task/verification/index.d.ts +1 -0
- package/dist/task/verification/userVerification.directive.d.ts +2 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/png.d.ts +4 -0
- package/dist/types/promise.d.ts +148 -0
- package/dist/types/svg.d.ts +6 -0
- package/dist/utils/Logger.d.ts +28 -0
- package/dist/utils/RenderWhenVisible.d.ts +10 -0
- package/dist/utils/SystemTimezone.d.ts +2 -0
- package/dist/utils/TimePickerOptions.d.ts +8 -0
- package/dist/utils/clipboard/CopyToClipboard.d.ts +45 -0
- package/dist/utils/clipboard/copyTextToClipboard.d.ts +1 -0
- package/dist/utils/clipboard/copyToClipboard.component.d.ts +1 -0
- package/dist/utils/consoleDebug.d.ts +22 -0
- package/dist/utils/debug.d.ts +23 -0
- package/dist/utils/failedToInstantiateModule.d.ts +1 -0
- package/dist/utils/feature/Feature.d.ts +58 -0
- package/dist/utils/feature/FeatureContext.d.ts +24 -0
- package/dist/utils/feature/index.d.ts +3 -0
- package/dist/utils/feature/useFeature.hook.d.ts +15 -0
- package/dist/utils/firstDefined.d.ts +2 -0
- package/dist/utils/index.d.ts +23 -0
- package/dist/utils/infiniteScroll.directive.d.ts +2 -0
- package/dist/utils/json/DiffView.d.ts +7 -0
- package/dist/utils/json/JsonUtils.d.ts +31 -0
- package/dist/utils/json/diffView.component.d.ts +1 -0
- package/dist/utils/json/filterObjectValues.d.ts +3 -0
- package/dist/utils/json/traverseObject.d.ts +14 -0
- package/dist/utils/noop.d.ts +2 -0
- package/dist/utils/parseNum.d.ts +1 -0
- package/dist/utils/q.d.ts +2 -0
- package/dist/utils/renderIfFeature.component.d.ts +1 -0
- package/dist/utils/retryablePromise.d.ts +5 -0
- package/dist/utils/scrollTo/scrollTo.service.d.ts +4 -0
- package/dist/utils/selectOnDblClick.directive.d.ts +1 -0
- package/dist/utils/testUtils/index.d.ts +7 -0
- package/dist/utils/timeFormatters.d.ts +7 -0
- package/dist/utils/uibModalRejections.d.ts +1 -0
- package/dist/utils/unicodeBase64.d.ts +1 -0
- package/dist/utils/utils.module.d.ts +2 -0
- package/dist/utils/uuid.service.d.ts +4 -0
- package/dist/utils/waypoints/waypoint.directive.d.ts +2 -0
- package/dist/utils/waypoints/waypoint.service.d.ts +8 -0
- package/dist/utils/waypoints/waypointContainer.directive.d.ts +2 -0
- package/dist/utils/workerPool.d.ts +12 -0
- package/dist/validation/triggerValidation.directive.d.ts +2 -0
- package/dist/validation/validateUnique.directive.d.ts +2 -0
- package/dist/validation/validation.module.d.ts +2 -0
- package/dist/validation/validationError.directive.d.ts +2 -0
- package/dist/widgets/AccountRegionClusterSelector.d.ts +12 -0
- package/dist/widgets/ApplicationsPickerInput.d.ts +9 -0
- package/dist/widgets/Keys.d.ts +10 -0
- package/dist/widgets/ScopeClusterSelector.d.ts +18 -0
- package/dist/widgets/accountNamespaceClusterSelector.component.d.ts +2 -0
- package/dist/widgets/accountRegionClusterSelector.component.d.ts +2 -0
- package/dist/widgets/accountRegionClusterSelectorWrapper.component.d.ts +3 -0
- package/dist/widgets/actionIcons/actionIcons.component.d.ts +2 -0
- package/dist/widgets/cluster/ClusterMatches.d.ts +8 -0
- package/dist/widgets/cluster/clusterMatches.component.d.ts +6 -0
- package/dist/widgets/index.d.ts +10 -0
- package/dist/widgets/notifier/Notifier.d.ts +4 -0
- package/dist/widgets/notifier/notifier.service.d.ts +12 -0
- package/dist/widgets/scopeClusterSelector.directive.d.ts +2 -0
- package/dist/widgets/spelText/JsonListBuilder.d.ts +9 -0
- package/dist/widgets/spelText/SpelAutocompleteService.d.ts +36 -0
- package/dist/widgets/spelText/SpelNumberInput.d.ts +22 -0
- package/dist/widgets/spelText/SpelText.d.ts +28 -0
- package/dist/widgets/spelText/spelAutocomplete.service.d.ts +2 -0
- package/dist/widgets/spelText/spelSelect.component.d.ts +2 -0
- package/dist/widgets/spelText/spelText.decorator.d.ts +2 -0
- package/dist/widgets/spinners/Spinner.d.ts +10 -0
- package/dist/widgets/spinners/spinner.component.d.ts +1 -0
- package/dist/widgets/tags/Tag.d.ts +27 -0
- package/dist/widgets/tags/TagList.d.ts +22 -0
- package/dist/widgets/tags/index.d.ts +2 -0
- package/dist/widgets/widgets.module.d.ts +1 -0
- package/dist/yamlEditor/YamlEditor.d.ts +13 -0
- package/dist/yamlEditor/index.d.ts +3 -0
- package/dist/yamlEditor/yamlEditor.component.d.ts +1 -0
- package/dist/yamlEditor/yamlEditorUtils.d.ts +2 -0
- package/package.json +128 -0
- package/rollup.config.js +46 -0
- package/src/account/AccountSelectInput.spec.tsx +160 -0
- package/src/account/AccountSelectInput.tsx +164 -0
- package/src/account/AccountService.spec.ts +128 -0
- package/src/account/AccountService.ts +237 -0
- package/src/account/AccountTag.tsx +62 -0
- package/src/account/account.module.js +19 -0
- package/src/account/accountSelect.wrapper.ts +19 -0
- package/src/account/accountSelectField.component.ts +40 -0
- package/src/account/accountTag.component.ts +33 -0
- package/src/account/accountTag.less +57 -0
- package/src/account/collapsibleAccountTag.directive.html +6 -0
- package/src/account/collapsibleAccountTag.directive.js +33 -0
- package/src/account/index.ts +3 -0
- package/src/account/providerToggles.directive.js +36 -0
- package/src/analytics/GoogleAnalyticsInitializer.ts +13 -0
- package/src/analytics/angulartics.module.d.ts +2 -0
- package/src/analytics/angulartics.module.ts +7 -0
- package/src/api/ApiService.spec.ts +134 -0
- package/src/api/ApiService.ts +290 -0
- package/src/api/ApiServiceDeprecated.spec.ts +457 -0
- package/src/api/index.ts +1 -0
- package/src/api/mock/expectedRequest.ts +148 -0
- package/src/api/mock/jasmine.ts +38 -0
- package/src/api/mock/mockHttpClient.ts +205 -0
- package/src/api/mock/mockHttpUtils.ts +44 -0
- package/src/api/mock/receivedRequest.ts +33 -0
- package/src/api/network.interceptor.ts +86 -0
- package/src/application/ApplicationComponent.tsx +92 -0
- package/src/application/ApplicationContext.tsx +9 -0
- package/src/application/ApplicationFreshIcon.tsx +12 -0
- package/src/application/ApplicationIcon.tsx +16 -0
- package/src/application/application.less +91 -0
- package/src/application/application.model.spec.ts +313 -0
- package/src/application/application.model.ts +296 -0
- package/src/application/application.module.ts +23 -0
- package/src/application/application.state.provider.ts +148 -0
- package/src/application/applicationModel.builder.ts +31 -0
- package/src/application/applicationSearchResultType.tsx +81 -0
- package/src/application/applications.less +8 -0
- package/src/application/applications.state.provider.ts +34 -0
- package/src/application/config/ApplicationConfig.tsx +22 -0
- package/src/application/config/DeleteApplicationSection.tsx +66 -0
- package/src/application/config/appConfig.dataSource.js +17 -0
- package/src/application/config/appConfig.states.ts +35 -0
- package/src/application/config/applicationAttributes.directive.html +65 -0
- package/src/application/config/applicationAttributes.directive.js +119 -0
- package/src/application/config/applicationAttributes.directive.spec.js +52 -0
- package/src/application/config/applicationConfig.controller.js +111 -0
- package/src/application/config/applicationConfig.view.html +70 -0
- package/src/application/config/applicationNotifications.directive.html +7 -0
- package/src/application/config/applicationNotifications.directive.js +31 -0
- package/src/application/config/applicationSnapshotSection.component.html +11 -0
- package/src/application/config/applicationSnapshotSection.component.js +46 -0
- package/src/application/config/customBanner/CustomBannerConfig.spec.tsx +80 -0
- package/src/application/config/customBanner/CustomBannerConfig.tsx +244 -0
- package/src/application/config/customBanner/customBannerColors.ts +71 -0
- package/src/application/config/customBanner/customBannerConfig.component.ts +16 -0
- package/src/application/config/customBanner/customBannerConfig.less +32 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.html +30 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.less +11 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.spec.ts +174 -0
- package/src/application/config/dataSources/applicationDataSourceEditor.component.ts +104 -0
- package/src/application/config/defaultTagFilter/DefaultTagFilterConfig.spec.tsx +75 -0
- package/src/application/config/defaultTagFilter/DefaultTagFilterConfig.tsx +161 -0
- package/src/application/config/defaultTagFilter/defaultTagFilterConfig.component.ts +15 -0
- package/src/application/config/defaultTagFilter/defaultTagFilterConfig.less +8 -0
- package/src/application/config/deleteApplicationSection.module.ts +10 -0
- package/src/application/config/footer/ConfigSectionFooter.tsx +63 -0
- package/src/application/config/footer/configSectionFooter.component.html +31 -0
- package/src/application/config/footer/configSectionFooter.component.spec.ts +109 -0
- package/src/application/config/footer/configSectionFooter.component.ts +74 -0
- package/src/application/config/links/applicationLinks.component.html +128 -0
- package/src/application/config/links/applicationLinks.component.js +132 -0
- package/src/application/config/links/applicationLinks.component.less +51 -0
- package/src/application/config/links/editLinks.modal.controller.js +29 -0
- package/src/application/config/links/editLinks.modal.html +29 -0
- package/src/application/config/trafficGuard/trafficGuardConfig.component.html +98 -0
- package/src/application/config/trafficGuard/trafficGuardConfig.component.ts +132 -0
- package/src/application/config/trafficGuard/trafficGuardConfig.help.ts +20 -0
- package/src/application/index.ts +17 -0
- package/src/application/listExtractor/AppListExtractor.spec.ts +424 -0
- package/src/application/listExtractor/AppListExtractor.ts +132 -0
- package/src/application/modal/PermissionsConfigurer.less +21 -0
- package/src/application/modal/PermissionsConfigurer.spec.tsx +51 -0
- package/src/application/modal/PermissionsConfigurer.tsx +256 -0
- package/src/application/modal/PlatformHealthOverride.tsx +53 -0
- package/src/application/modal/applicationProviderFields.component.html +1 -0
- package/src/application/modal/applicationProviderFields.component.js +47 -0
- package/src/application/modal/applicationProviderFields.component.spec.js +106 -0
- package/src/application/modal/createApplication.modal.controller.js +140 -0
- package/src/application/modal/createApplication.modal.controller.spec.js +25 -0
- package/src/application/modal/editApplication.controller.modal.js +132 -0
- package/src/application/modal/editApplication.html +262 -0
- package/src/application/modal/newapplication.html +287 -0
- package/src/application/modal/permissionsConfigurer.component.ts +15 -0
- package/src/application/modal/platformHealthOverride.directive.js +41 -0
- package/src/application/modal/platformHealthOverrideCheckbox.directive.html +7 -0
- package/src/application/modal/upsertApplication.help.ts +32 -0
- package/src/application/modal/validation/ApplicationNameValidator.spec.ts +91 -0
- package/src/application/modal/validation/ApplicationNameValidator.ts +78 -0
- package/src/application/modal/validation/ExampleApplicationNameValidator.ts +119 -0
- package/src/application/modal/validation/applicationNameValidationMessages.component.ts +47 -0
- package/src/application/modal/validation/applicationNameValidationMessages.directive.html +12 -0
- package/src/application/modal/validation/validateApplicationName.directive.spec.ts +142 -0
- package/src/application/modal/validation/validateApplicationName.directive.ts +60 -0
- package/src/application/nav/AppRefresher.tsx +36 -0
- package/src/application/nav/AppRefresherIcon.tsx +65 -0
- package/src/application/nav/ApplicationNavigation.spec.tsx +151 -0
- package/src/application/nav/ApplicationNavigation.tsx +105 -0
- package/src/application/nav/BottomSection.tsx +11 -0
- package/src/application/nav/NavItem.spec.tsx +149 -0
- package/src/application/nav/NavItem.tsx +56 -0
- package/src/application/nav/NavRoute.tsx +22 -0
- package/src/application/nav/NavSection.spec.tsx +34 -0
- package/src/application/nav/NavSection.tsx +18 -0
- package/src/application/nav/PagerDutyButton.tsx +28 -0
- package/src/application/nav/defaultCategories.ts +20 -0
- package/src/application/nav/navAtoms.ts +25 -0
- package/src/application/nav/navigationCategory.registry.ts +48 -0
- package/src/application/nav/verticalNav.less +169 -0
- package/src/application/search/Applications.tsx +267 -0
- package/src/application/search/ApplicationsTable.tsx +63 -0
- package/src/application/search/PaginationControls.tsx +45 -0
- package/src/application/search/react-ultimate-pagination.d.ts +37 -0
- package/src/application/service/ApplicationDataSourceRegistry.ts +54 -0
- package/src/application/service/ApplicationReader.spec.ts +134 -0
- package/src/application/service/ApplicationReader.ts +120 -0
- package/src/application/service/ApplicationWriter.spec.ts +61 -0
- package/src/application/service/ApplicationWriter.ts +63 -0
- package/src/application/service/InferredApplicationWarningService.spec.ts +42 -0
- package/src/application/service/InferredApplicationWarningService.tsx +42 -0
- package/src/application/service/applicationDataSource.ts +594 -0
- package/src/artifact/ArtifactIconService.ts +60 -0
- package/src/artifact/ArtifactReferenceService.spec.ts +125 -0
- package/src/artifact/ArtifactReferenceService.ts +75 -0
- package/src/artifact/ArtifactTypes.ts +31 -0
- package/src/artifact/ExpectedArtifactSelectorViewController.ts +72 -0
- package/src/artifact/ExpectedArtifactSelectorViewControllerAngularDelegate.ts +31 -0
- package/src/artifact/IArtifactAccountPair.ts +7 -0
- package/src/artifact/NgAppEngineDeployArtifactDelegate.ts +56 -0
- package/src/artifact/NgAppengineConfigArtifactDelegate.ts +70 -0
- package/src/artifact/NgBakeManifestArtifactDelegate.ts +68 -0
- package/src/artifact/NgGCEImageArtifactDelegate.ts +61 -0
- package/src/artifact/NgGenericArtifactDelegate.ts +82 -0
- package/src/artifact/artifact.module.ts +18 -0
- package/src/artifact/artifactSelector.less +6 -0
- package/src/artifact/artifactTab.less +34 -0
- package/src/artifact/artifactTab.ts +13 -0
- package/src/artifact/expectedArtifact.service.spec.ts +103 -0
- package/src/artifact/expectedArtifact.service.ts +116 -0
- package/src/artifact/expectedArtifactMultiSelector.component.ts +71 -0
- package/src/artifact/human-readable-ids.d.ts +1 -0
- package/src/artifact/icons/bitbucket-file-artifact.svg +18 -0
- package/src/artifact/icons/docker-image-artifact.svg +36 -0
- package/src/artifact/icons/embedded-base64-artifact.svg +20 -0
- package/src/artifact/icons/gcs-file-artifact.svg +11 -0
- package/src/artifact/icons/git-repo-artifact.svg +15 -0
- package/src/artifact/icons/github-file-artifact.svg +2 -0
- package/src/artifact/icons/gitlab-file-artifact.svg +60 -0
- package/src/artifact/icons/helm-chart-artifact.svg +14 -0
- package/src/artifact/icons/http-artifact.svg +15 -0
- package/src/artifact/icons/ivy-artifact.svg +13 -0
- package/src/artifact/icons/jenkins-file-artifact.svg +283 -0
- package/src/artifact/icons/kubernetes-artifact.svg +84 -0
- package/src/artifact/icons/maven-artifact.svg +15 -0
- package/src/artifact/icons/oracle-object-artifact.svg +1 -0
- package/src/artifact/icons/s3-object-artifact.svg +17 -0
- package/src/artifact/icons/unknown-type-artifact.svg +18 -0
- package/src/artifact/imageSourceSelector.component.ts +40 -0
- package/src/artifact/index.ts +23 -0
- package/src/artifact/react/ArtifactAccountSelector.tsx +56 -0
- package/src/artifact/react/ArtifactEditor.tsx +89 -0
- package/src/artifact/react/ArtifactIcon.tsx +35 -0
- package/src/artifact/react/ArtifactIconList.tsx +37 -0
- package/src/artifact/react/ExecutionArtifactTab.tsx +67 -0
- package/src/artifact/react/ExpectedArtifactEditor.tsx +222 -0
- package/src/artifact/react/ExpectedArtifactKindSelector.tsx +98 -0
- package/src/artifact/react/ExpectedArtifactModal.tsx +154 -0
- package/src/artifact/react/ExpectedArtifactSelector.spec.tsx +107 -0
- package/src/artifact/react/ExpectedArtifactSelector.tsx +133 -0
- package/src/artifact/react/ExpectedArtifactSourceSelector.tsx +81 -0
- package/src/artifact/react/StageArtifactSelector.tsx +168 -0
- package/src/artifact/react/StageArtifactSelectorDelegate.tsx +22 -0
- package/src/artifact/stageArtifactSelectorDelegate.ts +24 -0
- package/src/authentication/AuthenticationInitializer.spec.ts +59 -0
- package/src/authentication/AuthenticationInitializer.ts +118 -0
- package/src/authentication/AuthenticationService.spec.ts +45 -0
- package/src/authentication/AuthenticationService.ts +45 -0
- package/src/authentication/LoggedOutModal.less +21 -0
- package/src/authentication/LoggedOutModal.tsx +42 -0
- package/src/authentication/authentication.interceptor.service.ts +44 -0
- package/src/authentication/authentication.interceptor.spec.ts +94 -0
- package/src/authentication/authentication.module.ts +34 -0
- package/src/authentication/index.ts +3 -0
- package/src/authentication/userMenu/UserMenu.tsx +35 -0
- package/src/authentication/userMenu/userMenu.less +19 -0
- package/src/banner/BannerContainer.tsx +44 -0
- package/src/banner/bannerContainer.component.ts +13 -0
- package/src/banner/bannerContainer.module.js +9 -0
- package/src/banner/customBannersByName.ts +25 -0
- package/src/banner/index.ts +1 -0
- package/src/bootstrap/SpinnakerContainer.tsx +37 -0
- package/src/bootstrap/angular.config.ts +41 -0
- package/src/bootstrap/appInit.ts +23 -0
- package/src/bootstrap/bootstrap.module.ts +11 -0
- package/src/bootstrap/index.ts +12 -0
- package/src/bootstrap/paramChangedHelper.ts +15 -0
- package/src/bootstrap/spinnaker.component.ts +27 -0
- package/src/bootstrap/spinnakerContainer.component.ts +11 -0
- package/src/bootstrap/stateChange.logger.ts +29 -0
- package/src/bootstrap/transitionTrace.toggle.ts +28 -0
- package/src/bootstrap/uiBootstrap.config.ts +24 -0
- package/src/bootstrap/uiRouterRxjs.ts +12 -0
- package/src/bootstrap/uiRouterVisualizer.toggle.ts +75 -0
- package/src/bootstrap/uiSelect.config.ts +93 -0
- package/src/cache/abstractBaseCache.ts +29 -0
- package/src/cache/cacheInitializer.service.spec.ts +109 -0
- package/src/cache/cacheInitializer.service.ts +113 -0
- package/src/cache/collapsibleSectionStateCache.ts +49 -0
- package/src/cache/deckCacheFactory.ts +208 -0
- package/src/cache/index.ts +9 -0
- package/src/cache/infrastructureCacheConfig.ts +29 -0
- package/src/cache/infrastructureCaches.spec.ts +136 -0
- package/src/cache/infrastructureCaches.ts +27 -0
- package/src/cache/viewStateCache.ts +19 -0
- package/src/cancelModal/CancelModal.tsx +126 -0
- package/src/certificates/certificate.read.service.ts +19 -0
- package/src/certificates/index.ts +1 -0
- package/src/chaosMonkey/chaosMonkey.help.ts +50 -0
- package/src/chaosMonkey/chaosMonkeyConfig.component.html +76 -0
- package/src/chaosMonkey/chaosMonkeyConfig.component.less +43 -0
- package/src/chaosMonkey/chaosMonkeyConfig.component.ts +84 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.html +70 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.less +5 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.spec.ts +67 -0
- package/src/chaosMonkey/chaosMonkeyExceptions.component.ts +89 -0
- package/src/chaosMonkey/chaosMonkeyNewApplicationConfig.component.ts +53 -0
- package/src/ci/CIReader.ts +67 -0
- package/src/ci/ci.dataSource.ts +84 -0
- package/src/ci/ci.module.ts +10 -0
- package/src/ci/ci.states.ts +48 -0
- package/src/ci/components/BuildDetailsScrollContainerContext.ts +3 -0
- package/src/ci/components/BuildInfoArtifactsTab.tsx +19 -0
- package/src/ci/components/BuildInfoDetails.tsx +140 -0
- package/src/ci/components/BuildInfoLogsTab.tsx +108 -0
- package/src/ci/components/BuildInfoSummaryCard.tsx +57 -0
- package/src/ci/components/Builds.tsx +109 -0
- package/src/ci/components/builds.less +238 -0
- package/src/ci/domain.ts +59 -0
- package/src/ci/igor.service.ts +58 -0
- package/src/ci/index.ts +1 -0
- package/src/cloudProvider/CloudProviderLabel.tsx +34 -0
- package/src/cloudProvider/CloudProviderLogo.tsx +36 -0
- package/src/cloudProvider/CloudProviderRegistry.spec.ts +103 -0
- package/src/cloudProvider/CloudProviderRegistry.ts +60 -0
- package/src/cloudProvider/cloudProvider.module.ts +12 -0
- package/src/cloudProvider/cloudProviderLabel.directive.js +25 -0
- package/src/cloudProvider/cloudProviderLogo.component.ts +16 -0
- package/src/cloudProvider/cloudProviderLogo.less +33 -0
- package/src/cloudProvider/index.ts +5 -0
- package/src/cloudProvider/providerSelection/ProviderSelectionModal.tsx +85 -0
- package/src/cloudProvider/providerSelection/ProviderSelectionService.spec.ts +506 -0
- package/src/cloudProvider/providerSelection/ProviderSelectionService.ts +68 -0
- package/src/cloudProvider/providerSelection/providerSelector.directive.js +65 -0
- package/src/cloudProvider/providerSelection/providerSelector.html +21 -0
- package/src/cloudProvider/providerService.delegate.ts +34 -0
- package/src/cluster/AllClustersGroupings.tsx +204 -0
- package/src/cluster/ClusterPod.tsx +145 -0
- package/src/cluster/ClusterPodTitleWrapper.tsx +22 -0
- package/src/cluster/ClusterRuleMatcher.spec.ts +86 -0
- package/src/cluster/ClusterRuleMatcher.ts +67 -0
- package/src/cluster/DefaultClusterPodTitle.tsx +56 -0
- package/src/cluster/allClusters.controller.js +151 -0
- package/src/cluster/allClusters.html +82 -0
- package/src/cluster/allClustersGroupings.component.ts +11 -0
- package/src/cluster/cluster.less +8 -0
- package/src/cluster/cluster.module.ts +14 -0
- package/src/cluster/cluster.service.spec.ts +772 -0
- package/src/cluster/cluster.service.ts +340 -0
- package/src/cluster/clusterSearchResultType.tsx +105 -0
- package/src/cluster/filter/ClusterFilterModel.ts +37 -0
- package/src/cluster/filter/ClusterFilterService.spec.ts +1173 -0
- package/src/cluster/filter/ClusterFilterService.ts +547 -0
- package/src/cluster/filter/ClusterFilters.tsx +314 -0
- package/src/cluster/filter/FilterSearch.less +10 -0
- package/src/cluster/filter/FilterSearch.tsx +20 -0
- package/src/cluster/filter/FilterSection.tsx +53 -0
- package/src/cluster/filter/LabelFilter.less +29 -0
- package/src/cluster/filter/LabelFilter.spec.tsx +61 -0
- package/src/cluster/filter/LabelFilter.tsx +147 -0
- package/src/cluster/filter/MultiselectModel.spec.ts +340 -0
- package/src/cluster/filter/MultiselectModel.ts +231 -0
- package/src/cluster/filter/clusterDependentFilterHelper.service.js +43 -0
- package/src/cluster/filter/clusterFilter.component.ts +11 -0
- package/src/cluster/filter/collapsibleFilterSection.directive.js +31 -0
- package/src/cluster/filter/collapsibleFilterSection.html +10 -0
- package/src/cluster/filter/labelFilter.component.ts +11 -0
- package/src/cluster/filter/labelFilterUtils.spec.ts +90 -0
- package/src/cluster/filter/labelFilterUtils.ts +66 -0
- package/src/cluster/filter/mockApplicationData.js +153 -0
- package/src/cluster/index.ts +7 -0
- package/src/cluster/onDemand/onDemandClusterPicker.component.less +8 -0
- package/src/cluster/onDemand/onDemandClusterPicker.component.ts +68 -0
- package/src/cluster/onDemand/onDemandOptionTemplate.html +1 -0
- package/src/cluster/rollups.less +578 -0
- package/src/cluster/task.matcher.ts +141 -0
- package/src/config/VersionChecker.tsx +59 -0
- package/src/config/index.ts +2 -0
- package/src/config/settings.ts +199 -0
- package/src/confirmationModal/ConfirmModal.tsx +141 -0
- package/src/confirmationModal/confirmationModal.service.ts +63 -0
- package/src/confirmationModal/index.ts +1 -0
- package/src/core.module.ts +178 -0
- package/src/deploymentStrategy/DeploymentStrategySelector.tsx +132 -0
- package/src/deploymentStrategy/deploymentStrategy.module.ts +12 -0
- package/src/deploymentStrategy/deploymentStrategy.registry.ts +55 -0
- package/src/deploymentStrategy/deploymentStrategySelector.component.ts +17 -0
- package/src/deploymentStrategy/index.ts +3 -0
- package/src/deploymentStrategy/strategies/PipelineSelector.tsx +277 -0
- package/src/deploymentStrategy/strategies/custom/AdditionalFields.tsx +10 -0
- package/src/deploymentStrategy/strategies/custom/custom.strategy.ts +10 -0
- package/src/deploymentStrategy/strategies/highlander/HighlanderPreview.tsx +61 -0
- package/src/deploymentStrategy/strategies/highlander/highlander.strategy.ts +10 -0
- package/src/deploymentStrategy/strategies/monitored/AdditionalFields.tsx +184 -0
- package/src/deploymentStrategy/strategies/monitored/monitored.strategy.ts +28 -0
- package/src/deploymentStrategy/strategies/none/none.strategy.ts +8 -0
- package/src/deploymentStrategy/strategies/redblack/AdditionalFields.tsx +108 -0
- package/src/deploymentStrategy/strategies/redblack/redblack.strategy.ts +36 -0
- package/src/deploymentStrategy/strategies/rollingredblack/AdditionalFields.tsx +127 -0
- package/src/deploymentStrategy/strategies/rollingredblack/rollingredblack.strategy.ts +23 -0
- package/src/diffs/ChangesModal.tsx +84 -0
- package/src/diffs/CommitHistory.tsx +50 -0
- package/src/diffs/JarDiffs.tsx +59 -0
- package/src/diffs/ViewChangesLink.tsx +79 -0
- package/src/diffs/index.ts +9 -0
- package/src/diffs/viewChangesLink.component.ts +16 -0
- package/src/domain/IArtifact.ts +17 -0
- package/src/domain/IArtifactEditorProps.ts +14 -0
- package/src/domain/IArtifactExtractor.ts +6 -0
- package/src/domain/IArtifactKindConfig.ts +15 -0
- package/src/domain/IArtifactSource.ts +4 -0
- package/src/domain/IAuthentication.ts +3 -0
- package/src/domain/IBuild.ts +16 -0
- package/src/domain/IBuildDiffInfo.ts +7 -0
- package/src/domain/IBuildInfo.ts +4 -0
- package/src/domain/ICloudMetric.ts +24 -0
- package/src/domain/ICluster.ts +19 -0
- package/src/domain/ICredentials.ts +6 -0
- package/src/domain/IDeckRootScope.ts +10 -0
- package/src/domain/IEntityTags.ts +64 -0
- package/src/domain/IExecution.ts +48 -0
- package/src/domain/IExecutionStage.ts +80 -0
- package/src/domain/IExecutionTrigger.ts +22 -0
- package/src/domain/IExpectedArtifact.ts +11 -0
- package/src/domain/IFunction.ts +27 -0
- package/src/domain/IGcbTrigger.ts +5 -0
- package/src/domain/IHealth.ts +15 -0
- package/src/domain/IHelmTrigger.ts +9 -0
- package/src/domain/IInstance.ts +20 -0
- package/src/domain/IInstanceCounts.ts +11 -0
- package/src/domain/IJenkinsInfo.ts +5 -0
- package/src/domain/IJobConfig.ts +15 -0
- package/src/domain/ILoadBalancer.ts +43 -0
- package/src/domain/ILoadBalancerIncompatibility.ts +4 -0
- package/src/domain/IManagedEntity.ts +265 -0
- package/src/domain/IManifest.ts +36 -0
- package/src/domain/INotification.ts +8 -0
- package/src/domain/INotificationTypeConfig.ts +13 -0
- package/src/domain/IOrchestratedItem.ts +32 -0
- package/src/domain/IPipeline.ts +102 -0
- package/src/domain/IPipelineTemplateConfigV2.ts +13 -0
- package/src/domain/IPipelineTemplateV2.ts +42 -0
- package/src/domain/IProject.ts +25 -0
- package/src/domain/IPubsubSubscription.ts +4 -0
- package/src/domain/IRegionalCluster.ts +5 -0
- package/src/domain/ISecurityGroup.ts +55 -0
- package/src/domain/IServerGroup.ts +60 -0
- package/src/domain/IServerGroupManager.ts +19 -0
- package/src/domain/IService.ts +8 -0
- package/src/domain/ISnapshot.ts +10 -0
- package/src/domain/IStage.ts +14 -0
- package/src/domain/IStageContext.ts +8 -0
- package/src/domain/IStageOrTriggerTypeConfig.ts +22 -0
- package/src/domain/IStageTypeConfig.ts +41 -0
- package/src/domain/IStrategy.ts +5 -0
- package/src/domain/ISubnet.ts +13 -0
- package/src/domain/ITaggedEntity.ts +5 -0
- package/src/domain/ITask.ts +20 -0
- package/src/domain/ITaskStep.ts +6 -0
- package/src/domain/ITrigger.ts +102 -0
- package/src/domain/ITriggerTypeConfig.ts +16 -0
- package/src/domain/IVpc.ts +9 -0
- package/src/domain/index.ts +73 -0
- package/src/entityTag/AddEntityTagLinks.tsx +61 -0
- package/src/entityTag/EntitySource.tsx +70 -0
- package/src/entityTag/EntitySourcePopover.tsx +30 -0
- package/src/entityTag/EntityTagEditor.less +19 -0
- package/src/entityTag/EntityTagEditor.tsx +213 -0
- package/src/entityTag/EntityTagsReader.ts +185 -0
- package/src/entityTag/addEntityTagLinks.component.ts +19 -0
- package/src/entityTag/clusterTargetBuilder.ts +78 -0
- package/src/entityTag/entityRef.builder.ts +89 -0
- package/src/entityTag/entitySource.component.ts +11 -0
- package/src/entityTag/entityTags.dataSource.ts +63 -0
- package/src/entityTag/entityTags.help.ts +36 -0
- package/src/entityTag/entityTags.module.ts +17 -0
- package/src/entityTag/entityTags.write.service.ts +42 -0
- package/src/entityTag/index.ts +7 -0
- package/src/entityTag/notifications/CategorizedNotifications.tsx +128 -0
- package/src/entityTag/notifications/DataSourceNotifications.tsx +56 -0
- package/src/entityTag/notifications/EntityName.tsx +31 -0
- package/src/entityTag/notifications/EntityNotifications.tsx +98 -0
- package/src/entityTag/notifications/EphemeralPopover.tsx +70 -0
- package/src/entityTag/notifications/GroupedNotificationList.tsx +137 -0
- package/src/entityTag/notifications/NotificationCategory.tsx +39 -0
- package/src/entityTag/notifications/NotificationList.tsx +83 -0
- package/src/entityTag/notifications/NotificationsPopover.tsx +251 -0
- package/src/entityTag/notifications/entityNotifications.component.ts +47 -0
- package/src/entityTag/notifications/index.ts +6 -0
- package/src/entityTag/notifications/notificationCategories.ts +51 -0
- package/src/entityTag/notifications/notifications.less +99 -0
- package/src/entityTag/notifications/notifications.popover.less +82 -0
- package/src/event/EventBus.spec.ts +16 -0
- package/src/event/EventBus.ts +36 -0
- package/src/filterModel/FilterCheckBox.tsx +48 -0
- package/src/filterModel/FilterCollapse.less +45 -0
- package/src/filterModel/FilterCollapse.tsx +52 -0
- package/src/filterModel/FilterModelService.ts +243 -0
- package/src/filterModel/FilterTags.tsx +78 -0
- package/src/filterModel/IFilterModel.ts +63 -0
- package/src/filterModel/dependentFilter/DependentFilterService.spec.ts +324 -0
- package/src/filterModel/dependentFilter/DependentFilterService.ts +51 -0
- package/src/filterModel/filter.model.service.spec.js +489 -0
- package/src/filterModel/filterCollapse.component.ts +11 -0
- package/src/filterModel/filterTags.component.ts +11 -0
- package/src/filterModel/index.ts +6 -0
- package/src/fonts/README.md +29 -0
- package/src/fonts/icomoon.svg +98 -0
- package/src/fonts/icomoon.ttf +0 -0
- package/src/fonts/icomoon.woff +0 -0
- package/src/fonts/icomoon.woff2 +0 -0
- package/src/fonts/icons.css +289 -0
- package/src/fonts/selection.json +1694 -0
- package/src/forms/autofocus/autofocus.directive.js +27 -0
- package/src/forms/checklist/checklist.directive.html +25 -0
- package/src/forms/checklist/checklist.directive.js +114 -0
- package/src/forms/checklist/checklist.directive.spec.js +156 -0
- package/src/forms/checkmap/checkmap.directive.html +18 -0
- package/src/forms/checkmap/checkmap.directive.js +63 -0
- package/src/forms/checkmap/checkmap.directive.spec.js +56 -0
- package/src/forms/forms.module.js +25 -0
- package/src/forms/ignoreEmptyDelete.directive.js +52 -0
- package/src/forms/index.ts +4 -0
- package/src/forms/mapEditor/MapEditor.less +13 -0
- package/src/forms/mapEditor/MapEditor.tsx +177 -0
- package/src/forms/mapEditor/MapEditorInput.tsx +172 -0
- package/src/forms/mapEditor/MapPair.tsx +81 -0
- package/src/forms/mapEditor/mapEditor.component.html +55 -0
- package/src/forms/mapEditor/mapEditor.component.js +91 -0
- package/src/forms/mapEditor/mapEditor.component.less +9 -0
- package/src/forms/mapEditor/mapEditor.component.spec.js +193 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.html +56 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.js +113 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.less +9 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.spec.js +85 -0
- package/src/forms/numberList/NumberList.tsx +115 -0
- package/src/forms/numberList/numberList.component.ts +11 -0
- package/src/forms/uiSelect.decorator.js +0 -0
- package/src/forms/validateOnSubmit/validateOnSubmit.directive.js +49 -0
- package/src/function/CreateFunctionButton.tsx +74 -0
- package/src/function/Function.tsx +47 -0
- package/src/function/FunctionDetails.tsx +13 -0
- package/src/function/FunctionGroupings.tsx +34 -0
- package/src/function/FunctionPod.tsx +37 -0
- package/src/function/Functions.tsx +112 -0
- package/src/function/filter/FunctionFilterModel.ts +25 -0
- package/src/function/filter/FunctionFilterService.spec.ts +188 -0
- package/src/function/filter/FunctionFilterService.ts +122 -0
- package/src/function/filter/FunctionFilters.tsx +186 -0
- package/src/function/function.dataSource.ts +51 -0
- package/src/function/function.module.ts +8 -0
- package/src/function/function.read.service.spec.ts +94 -0
- package/src/function/function.read.service.ts +62 -0
- package/src/function/function.states.ts +73 -0
- package/src/function/function.transformer.ts +48 -0
- package/src/function/function.write.service.ts +48 -0
- package/src/function/index.ts +4 -0
- package/src/header/SpinnakerHeader.css +61 -0
- package/src/header/SpinnakerHeader.tsx +113 -0
- package/src/header/customBanner/CustomBanner.less +9 -0
- package/src/header/customBanner/CustomBanner.spec.tsx +46 -0
- package/src/header/customBanner/CustomBanner.tsx +77 -0
- package/src/healthCounts/HealthCounts.spec.tsx +152 -0
- package/src/healthCounts/HealthCounts.tsx +222 -0
- package/src/healthCounts/healthCounts.component.ts +15 -0
- package/src/healthCounts/healthCounts.less +35 -0
- package/src/healthCounts/healthCounts.module.ts +6 -0
- package/src/healthCounts/index.ts +1 -0
- package/src/help/HelpField.tsx +70 -0
- package/src/help/HelpMenu.less +32 -0
- package/src/help/HelpMenu.tsx +107 -0
- package/src/help/HelpTextExpandedContext.tsx +3 -0
- package/src/help/help.contents.ts +563 -0
- package/src/help/help.module.ts +8 -0
- package/src/help/helpContents.registry.spec.ts +32 -0
- package/src/help/helpContents.registry.ts +44 -0
- package/src/help/helpField.component.ts +37 -0
- package/src/help/helpFieldReact.component.ts +19 -0
- package/src/help/index.ts +5 -0
- package/src/history/index.ts +1 -0
- package/src/history/recentHistory.service.spec.ts +111 -0
- package/src/history/recentHistory.service.ts +148 -0
- package/src/image/image.reader.ts +45 -0
- package/src/image/index.ts +1 -0
- package/src/index.ts +97 -0
- package/src/insight/InsightLayout.tsx +56 -0
- package/src/insight/InsightMenu.spec.tsx +87 -0
- package/src/insight/InsightMenu.tsx +126 -0
- package/src/insight/insight.less +33 -0
- package/src/insight/insight.module.ts +10 -0
- package/src/insight/insightFilterState.model.ts +22 -0
- package/src/insight/insightLayout.component.ts +11 -0
- package/src/insight/insightmenu.directive.html +33 -0
- package/src/insight/insightmenu.directive.ts +19 -0
- package/src/instance/Instance.tsx +38 -0
- package/src/instance/InstanceList.tsx +196 -0
- package/src/instance/InstanceListBody.tsx +248 -0
- package/src/instance/InstanceReader.ts +27 -0
- package/src/instance/Instances.tsx +120 -0
- package/src/instance/details/InstanceActions.tsx +29 -0
- package/src/instance/details/InstanceDetails.tsx +104 -0
- package/src/instance/details/InstanceDetailsHeader.less +13 -0
- package/src/instance/details/InstanceDetailsHeader.tsx +53 -0
- package/src/instance/details/InstanceDetailsPane.tsx +23 -0
- package/src/instance/details/InstanceInsights.tsx +54 -0
- package/src/instance/details/InstanceLinks.tsx +87 -0
- package/src/instance/details/console/ConsoleOutputLink.tsx +23 -0
- package/src/instance/details/console/ConsoleOutputModal.less +13 -0
- package/src/instance/details/console/ConsoleOutputModal.tsx +101 -0
- package/src/instance/details/console/consoleOutputLink.component.ts +13 -0
- package/src/instance/details/index.ts +8 -0
- package/src/instance/details/instanceActions.component.ts +13 -0
- package/src/instance/details/instanceDetailsHeader.component.ts +20 -0
- package/src/instance/details/instanceInsights.component.ts +18 -0
- package/src/instance/details/instanceLinks.component.js +19 -0
- package/src/instance/details/multipleInstanceServerGroup.directive.html +19 -0
- package/src/instance/details/multipleInstanceServerGroup.directive.js +23 -0
- package/src/instance/details/multipleInstanceServerGroup.directive.less +22 -0
- package/src/instance/details/multipleInstances.controller.js +271 -0
- package/src/instance/details/multipleInstances.controller.spec.js +273 -0
- package/src/instance/details/multipleInstances.view.html +67 -0
- package/src/instance/index.ts +5 -0
- package/src/instance/instance.less +8 -0
- package/src/instance/instance.module.js +28 -0
- package/src/instance/instance.states.ts +120 -0
- package/src/instance/instance.write.service.spec.ts +281 -0
- package/src/instance/instance.write.service.ts +329 -0
- package/src/instance/instanceSearchResultType.tsx +83 -0
- package/src/instance/instanceSelection.less +102 -0
- package/src/instance/instanceType.service.ts +126 -0
- package/src/instance/instanceTypeService.spec.ts +134 -0
- package/src/instance/loadBalancer/InstanceLoadBalancerHealth.tsx +62 -0
- package/src/instance/loadBalancer/instanceLoadBalancerHealth.directive.js +18 -0
- package/src/interceptor/debug.interceptor.ts +32 -0
- package/src/interceptor/interceptor.module.ts +6 -0
- package/src/loadBalancer/CreateLoadBalancerButton.tsx +106 -0
- package/src/loadBalancer/LoadBalancer.tsx +86 -0
- package/src/loadBalancer/LoadBalancerClusterContainer.tsx +52 -0
- package/src/loadBalancer/LoadBalancerDetails.tsx +13 -0
- package/src/loadBalancer/LoadBalancerInstances.tsx +47 -0
- package/src/loadBalancer/LoadBalancerPod.tsx +57 -0
- package/src/loadBalancer/LoadBalancerServerGroup.tsx +83 -0
- package/src/loadBalancer/LoadBalancers.tsx +204 -0
- package/src/loadBalancer/LoadBalancersTag.spec.tsx +89 -0
- package/src/loadBalancer/LoadBalancersTag.tsx +171 -0
- package/src/loadBalancer/LoadBalancersTagWrapper.tsx +23 -0
- package/src/loadBalancer/filter/LoadBalancerFilterModel.ts +35 -0
- package/src/loadBalancer/filter/LoadBalancerFilterService.spec.ts +596 -0
- package/src/loadBalancer/filter/LoadBalancerFilterService.ts +282 -0
- package/src/loadBalancer/filter/LoadBalancerFilters.tsx +323 -0
- package/src/loadBalancer/index.ts +9 -0
- package/src/loadBalancer/loadBalancer.dataSource.ts +48 -0
- package/src/loadBalancer/loadBalancer.less +8 -0
- package/src/loadBalancer/loadBalancer.module.ts +9 -0
- package/src/loadBalancer/loadBalancer.read.service.ts +64 -0
- package/src/loadBalancer/loadBalancer.states.ts +78 -0
- package/src/loadBalancer/loadBalancer.transformer.js +43 -0
- package/src/loadBalancer/loadBalancer.write.service.ts +55 -0
- package/src/loadBalancer/loadBalancerDataUtils.ts +53 -0
- package/src/loadBalancer/loadBalancerPod.less +40 -0
- package/src/loadBalancer/loadBalancerSearchResultType.tsx +89 -0
- package/src/managed/ApplicationQueryError.tsx +30 -0
- package/src/managed/Environments.less +79 -0
- package/src/managed/Environments.tsx +47 -0
- package/src/managed/ManagedReader.ts +102 -0
- package/src/managed/ManagedWriter.ts +10 -0
- package/src/managed/ObjectRow.less +59 -0
- package/src/managed/Pill.less +7 -0
- package/src/managed/Pill.tsx +38 -0
- package/src/managed/RelativeTimestamp.tsx +118 -0
- package/src/managed/UnmanagedMessage.tsx +15 -0
- package/src/managed/artifactActions/ArtifactActions.tsx +77 -0
- package/src/managed/config/Configuration.tsx +185 -0
- package/src/managed/config/DeliveryConfig.tsx +68 -0
- package/src/managed/config/GitIntegration.less +22 -0
- package/src/managed/config/GitIntegration.tsx +128 -0
- package/src/managed/config/ManagementWarning.tsx +53 -0
- package/src/managed/constraints/AllowedTimes.less +3 -0
- package/src/managed/constraints/AllowedTimes.spec.ts +50 -0
- package/src/managed/constraints/AllowedTimes.tsx +112 -0
- package/src/managed/constraints/DependsOn.tsx +21 -0
- package/src/managed/constraints/ManualJudgement.tsx +22 -0
- package/src/managed/constraints/registry.tsx +192 -0
- package/src/managed/displayNames.ts +4 -0
- package/src/managed/environmentBaseElements/BaseEnvironment.less +62 -0
- package/src/managed/environmentBaseElements/BaseEnvironment.tsx +72 -0
- package/src/managed/environmentBaseElements/EnvironmentItem.tsx +49 -0
- package/src/managed/environmentBaseElements/EnvironmentsRender.tsx +99 -0
- package/src/managed/externals/DeployingIntoManagedClusterWarning.tsx +62 -0
- package/src/managed/externals/ManagedMenuItem.tsx +33 -0
- package/src/managed/externals/ManagedResourceConfig.less +7 -0
- package/src/managed/externals/ManagedResourceConfig.tsx +121 -0
- package/src/managed/externals/ManagedResourceDetailsIndicator.css +20 -0
- package/src/managed/externals/ManagedResourceDetailsIndicator.tsx +124 -0
- package/src/managed/externals/ManagedResourceStatusIndicator.less +28 -0
- package/src/managed/externals/ManagedResourceStatusIndicator.tsx +35 -0
- package/src/managed/externals/ManagedResourceStatusPopover.tsx +89 -0
- package/src/managed/externals/managedResourceDecorators.ts +81 -0
- package/src/managed/externals/managedResourceDetailsIndicator.component.ts +14 -0
- package/src/managed/externals/managedResourceStatusConfig.tsx +252 -0
- package/src/managed/externals/toggleResourceManagement.tsx +87 -0
- package/src/managed/graphql/client.ts +31 -0
- package/src/managed/graphql/graphql-sdk.ts +2133 -0
- package/src/managed/graphql/schema.graphql +425 -0
- package/src/managed/icons/md-logo-color.svg +66 -0
- package/src/managed/icons/star.svg +4 -0
- package/src/managed/index.ts +13 -0
- package/src/managed/managed.dataSource.ts +67 -0
- package/src/managed/managed.module.js +8 -0
- package/src/managed/managed.states.ts +97 -0
- package/src/managed/messages/MessageBox.less +48 -0
- package/src/managed/messages/MessageBox.tsx +39 -0
- package/src/managed/messages/Messages.tsx +81 -0
- package/src/managed/overview/EnvironmentOverview.tsx +62 -0
- package/src/managed/overview/EnvironmentsOverview.less +34 -0
- package/src/managed/overview/EnvironmentsOverview.tsx +69 -0
- package/src/managed/overview/PreviewEnvironments.tsx +45 -0
- package/src/managed/overview/Resource.less +56 -0
- package/src/managed/overview/Resource.tsx +207 -0
- package/src/managed/overview/ResourceDeploymentStatus.tsx +53 -0
- package/src/managed/overview/ResourceTask.tsx +62 -0
- package/src/managed/overview/artifact/Artifact.less +74 -0
- package/src/managed/overview/artifact/Artifact.tsx +159 -0
- package/src/managed/overview/artifact/ArtifactActionModal.less +19 -0
- package/src/managed/overview/artifact/ArtifactActionModal.tsx +217 -0
- package/src/managed/overview/artifact/ArtifactCollapsibleSection.tsx +32 -0
- package/src/managed/overview/artifact/ArtifactVersionTasks.less +33 -0
- package/src/managed/overview/artifact/ArtifactVersionTasks.tsx +125 -0
- package/src/managed/overview/artifact/ArtifactVersions.tsx +114 -0
- package/src/managed/overview/artifact/Constraints.less +67 -0
- package/src/managed/overview/artifact/Constraints.tsx +187 -0
- package/src/managed/overview/artifact/CurrentVersion.tsx +74 -0
- package/src/managed/overview/artifact/GitLink.less +25 -0
- package/src/managed/overview/artifact/GitLink.tsx +64 -0
- package/src/managed/overview/artifact/VersionOperation.tsx +53 -0
- package/src/managed/overview/artifact/VersionOperationIcon.less +5 -0
- package/src/managed/overview/artifact/VersionTitle.tsx +18 -0
- package/src/managed/overview/artifact/hooks.ts +152 -0
- package/src/managed/overview/artifact/useCreateRollbackActions.hook.ts +75 -0
- package/src/managed/overview/artifact/utils.spec.ts +95 -0
- package/src/managed/overview/artifact/utils.ts +132 -0
- package/src/managed/overview/baseStyles.less +175 -0
- package/src/managed/overview/queries.graphql +390 -0
- package/src/managed/overview/types.ts +23 -0
- package/src/managed/overview/useIsUpdatingResources.hook.ts +9 -0
- package/src/managed/overview/utils.ts +8 -0
- package/src/managed/plugins/BasePluginManager.ts +29 -0
- package/src/managed/plugins/index.ts +14 -0
- package/src/managed/resourceHistory/HistoryEventRow.tsx +85 -0
- package/src/managed/resourceHistory/ManagedResourceDiffTable.tsx +77 -0
- package/src/managed/resourceHistory/ManagedResourceHistoryModal.less +40 -0
- package/src/managed/resourceHistory/ManagedResourceHistoryModal.tsx +74 -0
- package/src/managed/resources/ResourceDefinitionModal.less +5 -0
- package/src/managed/resources/ResourceDefinitionModal.tsx +28 -0
- package/src/managed/resources/ResourceTitle.tsx +36 -0
- package/src/managed/resources/ToggleResourceManagement.tsx +53 -0
- package/src/managed/resources/resourceRegistry.ts +91 -0
- package/src/managed/resources/useGetResourceLink.hook.ts +19 -0
- package/src/managed/useEnvironmentTypeFromResources.hooks.ts +18 -0
- package/src/managed/utils/ActionModal.tsx +111 -0
- package/src/managed/utils/Button.less +56 -0
- package/src/managed/utils/Button.tsx +33 -0
- package/src/managed/utils/YamlViewer.tsx +40 -0
- package/src/managed/utils/debugMode.ts +16 -0
- package/src/managed/utils/defaults.ts +35 -0
- package/src/managed/utils/logging.ts +32 -0
- package/src/managed/utils/useNotifyOnError.hook.ts +22 -0
- package/src/managed/versionMetadata/MetadataComponents.tsx +335 -0
- package/src/managed/versionMetadata/VersionMetadata.less +108 -0
- package/src/managed/versionMetadata/VersionMetadata.tsx +99 -0
- package/src/managed/versionsHistory/VersionContent.tsx +164 -0
- package/src/managed/versionsHistory/VersionHeading.tsx +164 -0
- package/src/managed/versionsHistory/VersionsHistory.less +155 -0
- package/src/managed/versionsHistory/VersionsHistory.tsx +175 -0
- package/src/managed/versionsHistory/types.ts +39 -0
- package/src/manifest/ManifestReader.ts +8 -0
- package/src/manifest/ManifestWriter.ts +75 -0
- package/src/manifest/ManifestYaml.tsx +55 -0
- package/src/manifest/PodNameProvider.spec.ts +38 -0
- package/src/manifest/PodNameProvider.ts +51 -0
- package/src/manifest/index.ts +6 -0
- package/src/manifest/stage/JobManifestPodLogs.tsx +152 -0
- package/src/manifest/stage/JobStageExecutionLogs.tsx +76 -0
- package/src/modal/buttons/ModalClose.tsx +9 -0
- package/src/modal/buttons/SubmitButton.tsx +38 -0
- package/src/modal/buttons/modalClose.component.ts +18 -0
- package/src/modal/buttons/submitButton.component.ts +23 -0
- package/src/modal/index.ts +4 -0
- package/src/modal/modal.module.js +33 -0
- package/src/modal/modalOverlay.directive.js +37 -0
- package/src/modal/modalPage.directive.js +52 -0
- package/src/modal/modals.less +372 -0
- package/src/modal/wizard/ModalWizard.ts +123 -0
- package/src/modal/wizard/WizardModal.tsx +211 -0
- package/src/modal/wizard/WizardPage.tsx +113 -0
- package/src/modal/wizard/WizardStepLabel.tsx +63 -0
- package/src/modal/wizard/index.ts +4 -0
- package/src/modal/wizard/modalWizard.less +145 -0
- package/src/modal/wizard/v2modalWizard.component.html +36 -0
- package/src/modal/wizard/v2modalWizard.component.ts +48 -0
- package/src/modal/wizard/v2wizardPage.component.html +15 -0
- package/src/modal/wizard/v2wizardPage.component.ts +113 -0
- package/src/modal/wizard/wizardSubFormValidation.service.js +87 -0
- package/src/modal/wizard/wizardSubFormValidation.service.spec.js +96 -0
- package/src/naming/IMoniker.ts +7 -0
- package/src/naming/index.ts +2 -0
- package/src/naming/nameUtils.spec.ts +105 -0
- package/src/naming/nameUtils.ts +137 -0
- package/src/navigation/UrlBuilder.ts +402 -0
- package/src/navigation/UrlBuilderRegistry.ts +13 -0
- package/src/navigation/customParamTypes.spec.ts +47 -0
- package/src/navigation/index.ts +4 -0
- package/src/navigation/navigation.less +90 -0
- package/src/navigation/state.provider.ts +195 -0
- package/src/navigation/stateHelper.provider.ts +62 -0
- package/src/navigation/stateactive.directive.js +28 -0
- package/src/navigation/urlParser.ts +50 -0
- package/src/network/NetworkReader.ts +20 -0
- package/src/network/index.ts +1 -0
- package/src/notfound/NotFound.tsx +19 -0
- package/src/notification/AppNotificationsService.ts +20 -0
- package/src/notification/NotificationService.ts +21 -0
- package/src/notification/NotificationsList.tsx +283 -0
- package/src/notification/extensionNotificationConfig.tsx +27 -0
- package/src/notification/index.ts +5 -0
- package/src/notification/modal/EditNotificationModal.tsx +96 -0
- package/src/notification/modal/NotificationDetails.tsx +116 -0
- package/src/notification/modal/WhenChecklistInput.tsx +83 -0
- package/src/notification/modal/editNotification.less +8 -0
- package/src/notification/modal/index.ts +2 -0
- package/src/notification/modal/whenOptions.ts +5 -0
- package/src/notification/notification.transformer.ts +48 -0
- package/src/notification/notification.types.ts +42 -0
- package/src/notification/notificationList.module.ts +19 -0
- package/src/notification/notifications.module.ts +24 -0
- package/src/notification/selector/NotificationSelector.tsx +67 -0
- package/src/notification/selector/notificationSelector.less +3 -0
- package/src/notification/selector/types/bearychat/BearychatNotificationType.tsx +19 -0
- package/src/notification/selector/types/bearychat/beary.notification.ts +8 -0
- package/src/notification/selector/types/cdevents/CDEventsNotificationType.tsx +36 -0
- package/src/notification/selector/types/cdevents/cdevents.notification.ts +8 -0
- package/src/notification/selector/types/email/EmailNotificationType.tsx +27 -0
- package/src/notification/selector/types/email/email.notification.ts +8 -0
- package/src/notification/selector/types/githubstatus/GithubNotificationType.tsx +25 -0
- package/src/notification/selector/types/githubstatus/githubstatus.notification.ts +8 -0
- package/src/notification/selector/types/googlechat/GooglechatNotificationType.tsx +24 -0
- package/src/notification/selector/types/googlechat/googlechat.notification.ts +8 -0
- package/src/notification/selector/types/index.ts +8 -0
- package/src/notification/selector/types/microsoftteams/MicrosoftTeamsNotificationType.tsx +24 -0
- package/src/notification/selector/types/microsoftteams/microsoftteams.notification.ts +8 -0
- package/src/notification/selector/types/pubsub/PubsubNotificationType.tsx +20 -0
- package/src/notification/selector/types/pubsub/pubsub.notification.ts +8 -0
- package/src/notification/selector/types/slack/SlackNotificationType.tsx +32 -0
- package/src/notification/selector/types/slack/slack.notification.ts +8 -0
- package/src/notification/selector/types/sms/SmsNotificationType.tsx +29 -0
- package/src/notification/selector/types/sms/sms.notification.ts +8 -0
- package/src/orchestratedItem/index.ts +1 -0
- package/src/orchestratedItem/orchestratedItem.transformer.spec.ts +234 -0
- package/src/orchestratedItem/orchestratedItem.transformer.ts +273 -0
- package/src/overrideRegistry/Overridable.tsx +199 -0
- package/src/overrideRegistry/Overrides.tsx +76 -0
- package/src/overrideRegistry/index.ts +3 -0
- package/src/overrideRegistry/override.registry.ts +44 -0
- package/src/pageTitle/index.ts +1 -0
- package/src/pageTitle/pageTitle.module.ts +6 -0
- package/src/pageTitle/pageTitle.service.spec.js +187 -0
- package/src/pageTitle/pageTitle.service.ts +144 -0
- package/src/pagerDuty/PageButton.tsx +63 -0
- package/src/pagerDuty/PageModal.tsx +182 -0
- package/src/pagerDuty/Pager.tsx +631 -0
- package/src/pagerDuty/index.ts +4 -0
- package/src/pagerDuty/js-worker-search.d.ts +11 -0
- package/src/pagerDuty/pageApplicationOwner.html +30 -0
- package/src/pagerDuty/pageApplicationOwner.modal.controller.ts +33 -0
- package/src/pagerDuty/pager.less +311 -0
- package/src/pagerDuty/pager.states.ts +76 -0
- package/src/pagerDuty/pagerDuty.module.ts +14 -0
- package/src/pagerDuty/pagerDuty.read.service.spec.ts +59 -0
- package/src/pagerDuty/pagerDuty.read.service.ts +34 -0
- package/src/pagerDuty/pagerDuty.write.service.ts +52 -0
- package/src/pagerDuty/pagerDutySelectField.component.ts +67 -0
- package/src/pagerDuty/pagerDutyTag.component.spec.ts +72 -0
- package/src/pagerDuty/pagerDutyTag.component.ts +53 -0
- package/src/pipeline/config/CreatePipeline.tsx +92 -0
- package/src/pipeline/config/PipelineRegistry.spec.ts +488 -0
- package/src/pipeline/config/PipelineRegistry.ts +380 -0
- package/src/pipeline/config/actions/PipelineConfigAction.tsx +16 -0
- package/src/pipeline/config/actions/PipelineConfigActions.tsx +56 -0
- package/src/pipeline/config/actions/delete/DeletePipelineModal.tsx +117 -0
- package/src/pipeline/config/actions/disable/DisablePipelineModal.tsx +81 -0
- package/src/pipeline/config/actions/enable/EnablePipelineModal.tsx +77 -0
- package/src/pipeline/config/actions/history/DiffSummary.tsx +18 -0
- package/src/pipeline/config/actions/history/ShowPipelineHistoryModal.tsx +184 -0
- package/src/pipeline/config/actions/history/diffSummary.component.ts +11 -0
- package/src/pipeline/config/actions/history/showHistory.less +34 -0
- package/src/pipeline/config/actions/lock/LockPipelineModal.tsx +104 -0
- package/src/pipeline/config/actions/pipelineConfigActions.module.ts +21 -0
- package/src/pipeline/config/actions/pipelineJson/EditPipelineJsonModal.tsx +178 -0
- package/src/pipeline/config/actions/rename/RenamePipelineModal.tsx +118 -0
- package/src/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.less +7 -0
- package/src/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.spec.tsx +51 -0
- package/src/pipeline/config/actions/templateJson/ShowPipelineTemplateJsonModal.tsx +198 -0
- package/src/pipeline/config/actions/unlock/UnlockPipelineModal.tsx +79 -0
- package/src/pipeline/config/copyStage/CopyStageCard.tsx +56 -0
- package/src/pipeline/config/copyStage/CopyStageModal.tsx +180 -0
- package/src/pipeline/config/copyStage/copyStageCard.less +5 -0
- package/src/pipeline/config/copyStage/copyStageModal.less +18 -0
- package/src/pipeline/config/createPipeline.component.ts +11 -0
- package/src/pipeline/config/graph/PipelineGraph.tsx +616 -0
- package/src/pipeline/config/graph/PipelineGraphLink.tsx +28 -0
- package/src/pipeline/config/graph/PipelineGraphNode.tsx +175 -0
- package/src/pipeline/config/graph/pipeline.graph.component.ts +17 -0
- package/src/pipeline/config/graph/pipelineGraph.less +181 -0
- package/src/pipeline/config/graph/pipelineGraph.service.ts +145 -0
- package/src/pipeline/config/health/stagePlatformHealthOverride.directive.js +23 -0
- package/src/pipeline/config/health/stagePlatformHealthOverrideCheckbox.directive.html +3 -0
- package/src/pipeline/config/parameters/Parameter.tsx +238 -0
- package/src/pipeline/config/parameters/Parameters.tsx +137 -0
- package/src/pipeline/config/parameters/parameters.module.ts +18 -0
- package/src/pipeline/config/parameters/pipeline.module.js +9 -0
- package/src/pipeline/config/pipelineConfig.controller.js +81 -0
- package/src/pipeline/config/pipelineConfig.controller.spec.js +63 -0
- package/src/pipeline/config/pipelineConfig.html +31 -0
- package/src/pipeline/config/pipelineConfig.less +229 -0
- package/src/pipeline/config/pipelineConfig.module.js +43 -0
- package/src/pipeline/config/pipelineConfigView.html +21 -0
- package/src/pipeline/config/pipelineConfigView.js +25 -0
- package/src/pipeline/config/pipelineConfigurer.controller.spec.ts +214 -0
- package/src/pipeline/config/pipelineConfigurer.html +204 -0
- package/src/pipeline/config/pipelineConfigurer.js +549 -0
- package/src/pipeline/config/preconditions/modal/editPrecondition.controller.modal.js +32 -0
- package/src/pipeline/config/preconditions/modal/editPrecondition.html +32 -0
- package/src/pipeline/config/preconditions/precondition.details.filter.js +12 -0
- package/src/pipeline/config/preconditions/preconditionList.directive.html +47 -0
- package/src/pipeline/config/preconditions/preconditionList.directive.js +93 -0
- package/src/pipeline/config/preconditions/preconditionList.directive.less +7 -0
- package/src/pipeline/config/preconditions/preconditionType.service.js +29 -0
- package/src/pipeline/config/preconditions/preconditionTypeConfig.provider.js +28 -0
- package/src/pipeline/config/preconditions/preconditions.module.js +21 -0
- package/src/pipeline/config/preconditions/selector/preconditionSelector.directive.js +112 -0
- package/src/pipeline/config/preconditions/selector/preconditionSelector.html +12 -0
- package/src/pipeline/config/preconditions/types/clusterSize/additionalFields.html +76 -0
- package/src/pipeline/config/preconditions/types/clusterSize/clusterSize.precondition.type.module.js +17 -0
- package/src/pipeline/config/preconditions/types/expression/additionalFields.html +28 -0
- package/src/pipeline/config/preconditions/types/expression/expression.precondition.type.module.js +17 -0
- package/src/pipeline/config/preconditions/types/stageStatus/StageStatusPreconditionConfig.tsx +75 -0
- package/src/pipeline/config/preconditions/types/stageStatus/additionalFields.html +5 -0
- package/src/pipeline/config/preconditions/types/stageStatus/stageStatus.precondition.type.module.ts +15 -0
- package/src/pipeline/config/preconditions/types/stageStatus/stageStatusOptions.ts +53 -0
- package/src/pipeline/config/services/PipelineConfigService.spec.ts +277 -0
- package/src/pipeline/config/services/PipelineConfigService.ts +194 -0
- package/src/pipeline/config/services/pipelineJSON.service.ts +24 -0
- package/src/pipeline/config/stages/FormikStageConfig.tsx +52 -0
- package/src/pipeline/config/stages/StageConfigWrapper.tsx +30 -0
- package/src/pipeline/config/stages/StageName.tsx +46 -0
- package/src/pipeline/config/stages/applySourceServerGroupCapacity/ApplySourceServerGroupCapacityDetails.tsx +50 -0
- package/src/pipeline/config/stages/applySourceServerGroupCapacity/applySourceServerGroupCapacityStage.module.ts +16 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildExecutionDetails.tsx +78 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildSourceList.tsx +192 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageConfig.tsx +29 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildStageForm.tsx +164 -0
- package/src/pipeline/config/stages/awsCodeBuild/AwsCodeBuildValidator.ts +18 -0
- package/src/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSecondarySourceVersionModal.tsx +63 -0
- package/src/pipeline/config/stages/awsCodeBuild/EditAwsCodeBuildSourceModal.tsx +129 -0
- package/src/pipeline/config/stages/awsCodeBuild/IAwsCodeBuildSource.tsx +27 -0
- package/src/pipeline/config/stages/awsCodeBuild/awsCodeBuildStage.ts +15 -0
- package/src/pipeline/config/stages/bake/BakeExecutionLabel.tsx +25 -0
- package/src/pipeline/config/stages/bake/BakeryReader.ts +44 -0
- package/src/pipeline/config/stages/bake/ManualExecutionBake.tsx +29 -0
- package/src/pipeline/config/stages/bake/bakeStage.js +27 -0
- package/src/pipeline/config/stages/bake/bakeStage.module.js +17 -0
- package/src/pipeline/config/stages/bake/bakeStage.transformer.js +29 -0
- package/src/pipeline/config/stages/bake/bakeStage.transformer.spec.js +45 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.html +12 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseManagedImage.component.ts +49 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseOs.component.html +23 -0
- package/src/pipeline/config/stages/bake/bakeStageChooseOs.component.ts +52 -0
- package/src/pipeline/config/stages/bake/modal/addExtendedAttribute.controller.modal.js +24 -0
- package/src/pipeline/config/stages/bake/modal/addExtendedAttribute.html +47 -0
- package/src/pipeline/config/stages/bakeManifest/BakeManifestConfig.tsx +54 -0
- package/src/pipeline/config/stages/bakeManifest/BakeManifestDetailsTab.tsx +46 -0
- package/src/pipeline/config/stages/bakeManifest/BakeManifestStageForm.tsx +79 -0
- package/src/pipeline/config/stages/bakeManifest/ManifestRenderers.ts +14 -0
- package/src/pipeline/config/stages/bakeManifest/ManualExecutionBakeManifest.tsx +90 -0
- package/src/pipeline/config/stages/bakeManifest/bakeManifestStage.ts +30 -0
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.spec.tsx +176 -0
- package/src/pipeline/config/stages/bakeManifest/helm/BakeHelmConfigForm.tsx +318 -0
- package/src/pipeline/config/stages/bakeManifest/helmfile/BakeHelmfileConfigForm.spec.tsx +132 -0
- package/src/pipeline/config/stages/bakeManifest/helmfile/BakeHelmfileConfigForm.tsx +271 -0
- package/src/pipeline/config/stages/bakeManifest/kustomize/BakeKustomizeConfigForm.tsx +59 -0
- package/src/pipeline/config/stages/bakeManifest/utils/getBakedArtifacts.ts +13 -0
- package/src/pipeline/config/stages/bakeManifest/utils/getContentReference.ts +3 -0
- package/src/pipeline/config/stages/baseProviderStage/baseProviderStage.html +12 -0
- package/src/pipeline/config/stages/baseProviderStage/baseProviderStage.js +90 -0
- package/src/pipeline/config/stages/checkPreconditions/CheckPreconditionsExecutionDetails.tsx +45 -0
- package/src/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.html +6 -0
- package/src/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.module.ts +12 -0
- package/src/pipeline/config/stages/checkPreconditions/checkPreconditionsStage.ts +31 -0
- package/src/pipeline/config/stages/cloneServerGroup/CloneServerGroupExecutionDetails.tsx +140 -0
- package/src/pipeline/config/stages/cloneServerGroup/cloneServerGroupStage.module.ts +19 -0
- package/src/pipeline/config/stages/common/AsgActionExecutionDetailsSection.tsx +41 -0
- package/src/pipeline/config/stages/common/EditStageJsonModal.tsx +107 -0
- package/src/pipeline/config/stages/common/ExecutionBarLabel.tsx +144 -0
- package/src/pipeline/config/stages/common/ExecutionDetailsSection.tsx +18 -0
- package/src/pipeline/config/stages/common/ExecutionDetailsTasks.tsx +19 -0
- package/src/pipeline/config/stages/common/ExecutionMarkerIcon.tsx +10 -0
- package/src/pipeline/config/stages/common/ExecutionStepDetails.tsx +63 -0
- package/src/pipeline/config/stages/common/IStageConfigProps.ts +12 -0
- package/src/pipeline/config/stages/common/ServerGroupStageContext.tsx +29 -0
- package/src/pipeline/config/stages/common/StepExecutionDetails.tsx +56 -0
- package/src/pipeline/config/stages/common/applySuspendedStatuses.ts +21 -0
- package/src/pipeline/config/stages/common/baseExecutionDetails.controller.ts +44 -0
- package/src/pipeline/config/stages/common/executionStepDetails.component.ts +12 -0
- package/src/pipeline/config/stages/common/executionSummary.html +90 -0
- package/src/pipeline/config/stages/common/index.ts +9 -0
- package/src/pipeline/config/stages/common/stage.common.module.ts +8 -0
- package/src/pipeline/config/stages/common/stageConfigField/StageConfigField.tsx +22 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.html +9 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.js +35 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.less +9 -0
- package/src/pipeline/config/stages/common/stageConfigField/stageConfigField.directive.spec.js +53 -0
- package/src/pipeline/config/stages/common/stepLabel.html +1 -0
- package/src/pipeline/config/stages/concourse/ConcourseExecutionDetails.tsx +39 -0
- package/src/pipeline/config/stages/concourse/ConcourseStageConfig.tsx +178 -0
- package/src/pipeline/config/stages/concourse/concourseStage.ts +21 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerExecutionDetails.controller.ts +64 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerExecutionDetails.html +53 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.html +46 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.js +87 -0
- package/src/pipeline/config/stages/createLoadBalancer/createLoadBalancerStage.module.ts +11 -0
- package/src/pipeline/config/stages/deploy/clusterName.filter.ts +16 -0
- package/src/pipeline/config/stages/deploy/deployExecutionDetails.controller.js +183 -0
- package/src/pipeline/config/stages/deploy/deployExecutionDetails.controller.spec.js +224 -0
- package/src/pipeline/config/stages/deploy/deployExecutionDetails.html +111 -0
- package/src/pipeline/config/stages/deploy/deployStage.html +93 -0
- package/src/pipeline/config/stages/deploy/deployStage.js +252 -0
- package/src/pipeline/config/stages/deploy/deployStage.less +13 -0
- package/src/pipeline/config/stages/deploy/deployStage.module.js +27 -0
- package/src/pipeline/config/stages/deploy/deployStage.transformer.js +63 -0
- package/src/pipeline/config/stages/deployService/DeployServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/deployService/deployServiceStage.ts +12 -0
- package/src/pipeline/config/stages/destroyAsg/DestroyAsgExecutionDetails.tsx +14 -0
- package/src/pipeline/config/stages/destroyAsg/destroyAsgStage.ts +18 -0
- package/src/pipeline/config/stages/destroyService/DestroyServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/destroyService/destroyServiceStage.ts +12 -0
- package/src/pipeline/config/stages/disableAsg/DisableAsgExecutionDetails.tsx +14 -0
- package/src/pipeline/config/stages/disableAsg/disableAsgStage.module.ts +18 -0
- package/src/pipeline/config/stages/disableCluster/DisableClusterExecutionDetails.tsx +41 -0
- package/src/pipeline/config/stages/disableCluster/disableClusterStage.ts +17 -0
- package/src/pipeline/config/stages/enableAsg/EnableAsgExecutionDetails.tsx +14 -0
- package/src/pipeline/config/stages/enableAsg/enableAsgStage.ts +18 -0
- package/src/pipeline/config/stages/entityTags/ApplyEntityTagsExecutionDetails.tsx +74 -0
- package/src/pipeline/config/stages/entityTags/ApplyEntityTagsStageConfig.tsx +130 -0
- package/src/pipeline/config/stages/entityTags/TagEditor.less +4 -0
- package/src/pipeline/config/stages/entityTags/TagEditor.tsx +160 -0
- package/src/pipeline/config/stages/entityTags/applyEntityTagsStage.ts +17 -0
- package/src/pipeline/config/stages/evaluateVariables/EvaluateVariablesExecutionDetails.tsx +49 -0
- package/src/pipeline/config/stages/evaluateVariables/EvaluateVariablesStageConfig.less +18 -0
- package/src/pipeline/config/stages/evaluateVariables/EvaluateVariablesStageConfig.tsx +232 -0
- package/src/pipeline/config/stages/evaluateVariables/ExecutionAndStagePicker.tsx +160 -0
- package/src/pipeline/config/stages/evaluateVariables/evaluateVariablesStage.ts +17 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindowActions.tsx +122 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindowDayPicker.tsx +74 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindowExecutionDetails.tsx +22 -0
- package/src/pipeline/config/stages/executionWindows/ExecutionWindows.tsx +401 -0
- package/src/pipeline/config/stages/executionWindows/daysOfWeek.ts +37 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.html +172 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.less +106 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.module.ts +16 -0
- package/src/pipeline/config/stages/executionWindows/executionWindows.transformer.ts +10 -0
- package/src/pipeline/config/stages/executionWindows/executionWindowsConfig.ts +30 -0
- package/src/pipeline/config/stages/executionWindows/executionWindowsStage.ts +14 -0
- package/src/pipeline/config/stages/failOnFailedExpressions/failOnFailedExpressions.directive.html +16 -0
- package/src/pipeline/config/stages/failOnFailedExpressions/failOnFailedExpressions.directive.js +16 -0
- package/src/pipeline/config/stages/findAmi/FindAmiExecutionDetails.tsx +59 -0
- package/src/pipeline/config/stages/findAmi/findAmiStage.ts +23 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/FindArtifactFromExecutionExecutionDetails.tsx +40 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecution.controller.spec.ts +112 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecution.controller.ts +83 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecutionConfig.html +44 -0
- package/src/pipeline/config/stages/findArtifactFromExecution/findArtifactFromExecutionStage.ts +32 -0
- package/src/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.js +16 -0
- package/src/pipeline/config/stages/findImageFromTags/findImageFromTagsStage.module.js +16 -0
- package/src/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildExecutionDetails.tsx +44 -0
- package/src/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageConfig.tsx +31 -0
- package/src/pipeline/config/stages/googleCloudBuild/GoogleCloudBuildStageForm.tsx +208 -0
- package/src/pipeline/config/stages/googleCloudBuild/IGoogleCloudBuildStage.ts +30 -0
- package/src/pipeline/config/stages/googleCloudBuild/googleCloudBuildStage.ts +18 -0
- package/src/pipeline/config/stages/googleCloudBuild/googleCloudBuildValidators.ts +20 -0
- package/src/pipeline/config/stages/gremlin/GremlinExecutionDetails.tsx +20 -0
- package/src/pipeline/config/stages/gremlin/GremlinStageConfig.tsx +246 -0
- package/src/pipeline/config/stages/gremlin/gremlinStage.ts +18 -0
- package/src/pipeline/config/stages/group/GroupExecutionLabel.tsx +38 -0
- package/src/pipeline/config/stages/group/GroupExecutionPopover.tsx +84 -0
- package/src/pipeline/config/stages/group/GroupMarkerIcon.tsx +14 -0
- package/src/pipeline/config/stages/group/groupStage.html +1 -0
- package/src/pipeline/config/stages/group/groupStage.less +70 -0
- package/src/pipeline/config/stages/group/groupStage.module.ts +6 -0
- package/src/pipeline/config/stages/group/groupStage.ts +27 -0
- package/src/pipeline/config/stages/jenkins/JenkinsExecutionLabel.tsx +32 -0
- package/src/pipeline/config/stages/jenkins/jenkinsExecutionDetails.controller.js +54 -0
- package/src/pipeline/config/stages/jenkins/jenkinsExecutionDetails.controller.spec.js +70 -0
- package/src/pipeline/config/stages/jenkins/jenkinsExecutionDetails.html +82 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.controller.spec.js +142 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.html +227 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.js +165 -0
- package/src/pipeline/config/stages/jenkins/jenkinsStage.module.js +19 -0
- package/src/pipeline/config/stages/managed/ImportDeliveryConfigExecutionDetails.tsx +111 -0
- package/src/pipeline/config/stages/managed/ImportDeliveryConfigStageConfig.tsx +30 -0
- package/src/pipeline/config/stages/managed/importDeliveryConfigStage.ts +29 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentApproval.tsx +185 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionDetails.tsx +57 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentExecutionLabel.tsx +45 -0
- package/src/pipeline/config/stages/manualJudgment/ManualJudgmentMarkerIcon.tsx +15 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgment.service.spec.ts +105 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgment.service.ts +31 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentExecutionDetails.less +9 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentStage.html +80 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentStage.js +82 -0
- package/src/pipeline/config/stages/manualJudgment/manualJudgmentStage.module.ts +17 -0
- package/src/pipeline/config/stages/monitorPipeline/MonitorPipelineStageExecutionDetails.tsx +78 -0
- package/src/pipeline/config/stages/monitorPipeline/monitorPipelineStage.js +21 -0
- package/src/pipeline/config/stages/monitorPipeline/monitorPipelineStage.module.js +12 -0
- package/src/pipeline/config/stages/monitoreddeploy/DeploymentMonitorExecutionDetails.tsx +148 -0
- package/src/pipeline/config/stages/monitoreddeploy/DeploymentMonitorReader.ts +13 -0
- package/src/pipeline/config/stages/monitoreddeploy/evaluateHealthStage.ts +14 -0
- package/src/pipeline/config/stages/monitoreddeploy/notifyDeployStartingStage.ts +14 -0
- package/src/pipeline/config/stages/optionalStage/optionalStage.directive.html +24 -0
- package/src/pipeline/config/stages/optionalStage/optionalStage.directive.js +37 -0
- package/src/pipeline/config/stages/overrideFailure/OverrideFailure.tsx +93 -0
- package/src/pipeline/config/stages/overrideFailure/overrideFailure.less +5 -0
- package/src/pipeline/config/stages/overrideFailure/overrideFailure.module.ts +16 -0
- package/src/pipeline/config/stages/overrideTimeout/OverrideTimeout.tsx +151 -0
- package/src/pipeline/config/stages/overrideTimeout/overrideTimeout.module.ts +15 -0
- package/src/pipeline/config/stages/pipeline/PipelineParametersExecutionDetails.tsx +40 -0
- package/src/pipeline/config/stages/pipeline/PipelineStageExecutionDetails.tsx +69 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.html +125 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.js +183 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.module.js +9 -0
- package/src/pipeline/config/stages/preconfiguredJob/PreconfiguredJobExecutionDetails.tsx +130 -0
- package/src/pipeline/config/stages/preconfiguredJob/PreconfiguredJobStageConfig.tsx +29 -0
- package/src/pipeline/config/stages/preconfiguredJob/index.ts +4 -0
- package/src/pipeline/config/stages/preconfiguredJob/preconfiguredJob.reader.ts +26 -0
- package/src/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.module.ts +14 -0
- package/src/pipeline/config/stages/preconfiguredJob/preconfiguredJobStage.ts +50 -0
- package/src/pipeline/config/stages/producesArtifacts/ProducesArtifacts.tsx +91 -0
- package/src/pipeline/config/stages/resizeAsg/resizeAsgExecutionDetails.html +38 -0
- package/src/pipeline/config/stages/resizeAsg/resizeAsgStage.ts +17 -0
- package/src/pipeline/config/stages/rollbackCluster/RollbackClusterExecutionDetails.tsx +62 -0
- package/src/pipeline/config/stages/rollbackCluster/rollbackClusterStage.ts +16 -0
- package/src/pipeline/config/stages/runJob/runJobStage.js +16 -0
- package/src/pipeline/config/stages/runJob/runJobStage.module.js +9 -0
- package/src/pipeline/config/stages/savePipelines/PipleineRefList.tsx +40 -0
- package/src/pipeline/config/stages/savePipelines/SavePipelinesResultsTab.tsx +22 -0
- package/src/pipeline/config/stages/savePipelines/SavePipelinesStageConfig.tsx +30 -0
- package/src/pipeline/config/stages/savePipelines/savePipelinesStage.ts +17 -0
- package/src/pipeline/config/stages/scaleDownCluster/ScaleDownClusterExecutionDetails.tsx +43 -0
- package/src/pipeline/config/stages/scaleDownCluster/scaleDownClusterStage.ts +17 -0
- package/src/pipeline/config/stages/script/ScriptExecutionDetails.tsx +79 -0
- package/src/pipeline/config/stages/script/ScriptStageConfig.tsx +97 -0
- package/src/pipeline/config/stages/script/scriptStage.ts +29 -0
- package/src/pipeline/config/stages/shareService/ShareServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/shareService/shareServiceStage.ts +12 -0
- package/src/pipeline/config/stages/shrinkCluster/ShrinkClusterExecutionDetails.tsx +43 -0
- package/src/pipeline/config/stages/shrinkCluster/shrinkClusterStage.ts +18 -0
- package/src/pipeline/config/stages/stage.html +163 -0
- package/src/pipeline/config/stages/stage.module.js +403 -0
- package/src/pipeline/config/stages/stageConstants.ts +101 -0
- package/src/pipeline/config/stages/tagImage/tagImageStage.js +15 -0
- package/src/pipeline/config/stages/tagImage/tagImageStage.module.js +15 -0
- package/src/pipeline/config/stages/templates/index.ts +3 -0
- package/src/pipeline/config/stages/travis/TravisExecutionLabel.tsx +32 -0
- package/src/pipeline/config/stages/travis/modal/addParameter.controller.modal.ts +19 -0
- package/src/pipeline/config/stages/travis/modal/addParameter.html +48 -0
- package/src/pipeline/config/stages/travis/travisExecutionDetails.controller.spec.ts +76 -0
- package/src/pipeline/config/stages/travis/travisExecutionDetails.controller.ts +56 -0
- package/src/pipeline/config/stages/travis/travisExecutionDetails.html +67 -0
- package/src/pipeline/config/stages/travis/travisStage.controller.spec.ts +148 -0
- package/src/pipeline/config/stages/travis/travisStage.html +156 -0
- package/src/pipeline/config/stages/travis/travisStage.module.ts +18 -0
- package/src/pipeline/config/stages/travis/travisStage.ts +182 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.controller.spec.ts +76 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.controller.ts +81 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.html +21 -0
- package/src/pipeline/config/stages/unmatchedStageTypeStage/unmatchedStageTypeStage.ts +14 -0
- package/src/pipeline/config/stages/unshareService/UnshareServiceExecutionDetails.tsx +34 -0
- package/src/pipeline/config/stages/unshareService/unshareServiceStage.ts +12 -0
- package/src/pipeline/config/stages/wait/SkipWait.tsx +95 -0
- package/src/pipeline/config/stages/wait/WaitExecutionDetails.tsx +22 -0
- package/src/pipeline/config/stages/wait/WaitExecutionLabel.tsx +43 -0
- package/src/pipeline/config/stages/wait/WaitStageConfig.tsx +105 -0
- package/src/pipeline/config/stages/wait/waitStage.ts +18 -0
- package/src/pipeline/config/stages/waitForCondition/SkipConditionWait.tsx +73 -0
- package/src/pipeline/config/stages/waitForCondition/WaitForConditionExecutionDetails.tsx +22 -0
- package/src/pipeline/config/stages/waitForCondition/waitForCondition.transformer.ts +10 -0
- package/src/pipeline/config/stages/waitForCondition/waitForConditionStage.ts +14 -0
- package/src/pipeline/config/stages/waitForParentTasks/waitForParentTasks.js +26 -0
- package/src/pipeline/config/stages/waitForParentTasks/waitForParentTasks.transformer.js +51 -0
- package/src/pipeline/config/stages/waitForParentTasks/waitForParentTasksExecutionDetails.html +16 -0
- package/src/pipeline/config/stages/webhook/modal/addCustomHeader.controller.modal.ts +20 -0
- package/src/pipeline/config/stages/webhook/modal/addCustomHeader.html +48 -0
- package/src/pipeline/config/stages/webhook/webhookExecutionDetails.controller.ts +96 -0
- package/src/pipeline/config/stages/webhook/webhookExecutionDetails.html +82 -0
- package/src/pipeline/config/stages/webhook/webhookStage.html +265 -0
- package/src/pipeline/config/stages/webhook/webhookStage.module.ts +18 -0
- package/src/pipeline/config/stages/webhook/webhookStage.ts +240 -0
- package/src/pipeline/config/stages/wercker/WerckerExecutionLabel.tsx +32 -0
- package/src/pipeline/config/stages/wercker/modal/addParameter.controller.modal.ts +19 -0
- package/src/pipeline/config/stages/wercker/modal/addParameter.html +48 -0
- package/src/pipeline/config/stages/wercker/werckerExecutionDetails.controller.spec.ts +79 -0
- package/src/pipeline/config/stages/wercker/werckerExecutionDetails.controller.ts +55 -0
- package/src/pipeline/config/stages/wercker/werckerExecutionDetails.html +79 -0
- package/src/pipeline/config/stages/wercker/werckerStage.controller.spec.ts +152 -0
- package/src/pipeline/config/stages/wercker/werckerStage.html +150 -0
- package/src/pipeline/config/stages/wercker/werckerStage.module.ts +18 -0
- package/src/pipeline/config/stages/wercker/werckerStage.ts +232 -0
- package/src/pipeline/config/targetSelect.component.ts +22 -0
- package/src/pipeline/config/targetSelect.html +7 -0
- package/src/pipeline/config/templates/PipelineTemplateReader.ts +145 -0
- package/src/pipeline/config/templates/PipelineTemplateWriter.ts +26 -0
- package/src/pipeline/config/templates/TemplatePlanErrors.tsx +65 -0
- package/src/pipeline/config/templates/Variable.less +16 -0
- package/src/pipeline/config/templates/Variable.spec.tsx +64 -0
- package/src/pipeline/config/templates/Variable.tsx +37 -0
- package/src/pipeline/config/templates/VariableError.tsx +26 -0
- package/src/pipeline/config/templates/VariableMetadataHelpField.tsx +31 -0
- package/src/pipeline/config/templates/configurePipelineTemplateModal.controller.spec.ts +300 -0
- package/src/pipeline/config/templates/configurePipelineTemplateModal.controller.ts +247 -0
- package/src/pipeline/config/templates/configurePipelineTemplateModal.html +54 -0
- package/src/pipeline/config/templates/index.ts +2 -0
- package/src/pipeline/config/templates/inputs/BooleanInput.tsx +36 -0
- package/src/pipeline/config/templates/inputs/ListInput.tsx +81 -0
- package/src/pipeline/config/templates/inputs/NumberInput.tsx +39 -0
- package/src/pipeline/config/templates/inputs/ObjectInput.tsx +38 -0
- package/src/pipeline/config/templates/inputs/StringInput.tsx +38 -0
- package/src/pipeline/config/templates/inputs/variableInput.service.ts +40 -0
- package/src/pipeline/config/templates/pipelineTemplate.module.ts +23 -0
- package/src/pipeline/config/templates/templatePlanErrors.component.ts +11 -0
- package/src/pipeline/config/templates/v2/ApplicationSelector.tsx +38 -0
- package/src/pipeline/config/templates/v2/DeletePipelineTemplateV2Modal.less +3 -0
- package/src/pipeline/config/templates/v2/DeletePipelineTemplateV2Modal.tsx +73 -0
- package/src/pipeline/config/templates/v2/PipelineTemplatesV2.less +27 -0
- package/src/pipeline/config/templates/v2/PipelineTemplatesV2.tsx +315 -0
- package/src/pipeline/config/templates/v2/configurePipelineTemplateModalV2.controller.spec.ts +305 -0
- package/src/pipeline/config/templates/v2/configurePipelineTemplateModalV2.controller.ts +263 -0
- package/src/pipeline/config/templates/v2/configurePipelineTemplateModalV2.html +54 -0
- package/src/pipeline/config/templates/v2/createPipelineFromTemplate/CreatePipelineFromTemplate.tsx +170 -0
- package/src/pipeline/config/templates/v2/createPipelineFromTemplate/createPipelineFromTemplate.less +3 -0
- package/src/pipeline/config/templates/v2/createPipelineFromTemplate/index.ts +1 -0
- package/src/pipeline/config/templates/v2/pipelineTemplateV2.service.spec.ts +43 -0
- package/src/pipeline/config/templates/v2/pipelineTemplateV2.service.ts +91 -0
- package/src/pipeline/config/templates/v2/pipelineTemplateV2.states.ts +41 -0
- package/src/pipeline/config/templates/validators/list.validator.ts +19 -0
- package/src/pipeline/config/templates/validators/number.validator.ts +21 -0
- package/src/pipeline/config/templates/validators/object.validator.ts +24 -0
- package/src/pipeline/config/templates/validators/string.validator.ts +17 -0
- package/src/pipeline/config/templates/validators/variableValidator.service.ts +24 -0
- package/src/pipeline/config/templates/variable.component.ts +11 -0
- package/src/pipeline/config/triggers/ExecutionOptionsPageContent.spec.tsx +90 -0
- package/src/pipeline/config/triggers/ExecutionOptionsPageContent.tsx +76 -0
- package/src/pipeline/config/triggers/MetadataPageContent.tsx +133 -0
- package/src/pipeline/config/triggers/NotificationsPageContent.tsx +26 -0
- package/src/pipeline/config/triggers/ParametersPageContent.tsx +58 -0
- package/src/pipeline/config/triggers/PipelineRoles.tsx +47 -0
- package/src/pipeline/config/triggers/RefreshableReactSelectInput.tsx +32 -0
- package/src/pipeline/config/triggers/RunAsUser.tsx +26 -0
- package/src/pipeline/config/triggers/Trigger.less +3 -0
- package/src/pipeline/config/triggers/Trigger.tsx +240 -0
- package/src/pipeline/config/triggers/Triggers.tsx +61 -0
- package/src/pipeline/config/triggers/TriggersPageContent.spec.tsx +151 -0
- package/src/pipeline/config/triggers/TriggersPageContent.tsx +212 -0
- package/src/pipeline/config/triggers/TriggersWrapper.tsx +16 -0
- package/src/pipeline/config/triggers/artifactory/ArtifactoryTrigger.tsx +30 -0
- package/src/pipeline/config/triggers/artifactory/artifactory.trigger.ts +12 -0
- package/src/pipeline/config/triggers/artifactory/artifactoryReader.service.ts +7 -0
- package/src/pipeline/config/triggers/artifacts/ArtifactEditor.ts +22 -0
- package/src/pipeline/config/triggers/artifacts/ArtifactService.ts +18 -0
- package/src/pipeline/config/triggers/artifacts/ExpectedArtifact.less +7 -0
- package/src/pipeline/config/triggers/artifacts/TriggerArtifactConstraintSelectorInput.tsx +136 -0
- package/src/pipeline/config/triggers/artifacts/base64/Base64ArtifactEditor.tsx +131 -0
- package/src/pipeline/config/triggers/artifacts/bitbucket/BitbucketArtifactEditor.tsx +80 -0
- package/src/pipeline/config/triggers/artifacts/custom/CustomArtifactEditor.tsx +117 -0
- package/src/pipeline/config/triggers/artifacts/docker/DockerArtifactEditor.tsx +85 -0
- package/src/pipeline/config/triggers/artifacts/docker/defaultDocker.artifact.spec.ts +90 -0
- package/src/pipeline/config/triggers/artifacts/gcs/GcsArtifactEditor.tsx +75 -0
- package/src/pipeline/config/triggers/artifacts/github/GithubArtifactEditor.tsx +83 -0
- package/src/pipeline/config/triggers/artifacts/gitlab/GitlabArtifactEditor.tsx +83 -0
- package/src/pipeline/config/triggers/artifacts/gitrepo/GitRepoArtifactEditor.tsx +109 -0
- package/src/pipeline/config/triggers/artifacts/helm/HelmArtifactEditor.tsx +169 -0
- package/src/pipeline/config/triggers/artifacts/helm-image/HelmImageArtifactEditor.tsx +169 -0
- package/src/pipeline/config/triggers/artifacts/http/HttpArtifactEditor.tsx +26 -0
- package/src/pipeline/config/triggers/artifacts/index.ts +57 -0
- package/src/pipeline/config/triggers/artifacts/ivy/IvyArtifactEditor.tsx +26 -0
- package/src/pipeline/config/triggers/artifacts/jenkins/JenkinsArtifactEditor.tsx +111 -0
- package/src/pipeline/config/triggers/artifacts/kubernetes/KubernetesArtifactEditor.tsx +79 -0
- package/src/pipeline/config/triggers/artifacts/maven/MavenArtifactEditor.tsx +26 -0
- package/src/pipeline/config/triggers/artifacts/oracle/OracleArtifactEditor.tsx +38 -0
- package/src/pipeline/config/triggers/artifacts/s3/S3ArtifactEditor.tsx +38 -0
- package/src/pipeline/config/triggers/artifacts/singleFieldArtifactEditor.tsx +40 -0
- package/src/pipeline/config/triggers/artifacts/triggerArtifactConstraintSelectorInput.less +4 -0
- package/src/pipeline/config/triggers/baseBuild/BaseBuildTrigger.tsx +91 -0
- package/src/pipeline/config/triggers/baseBuild/BaseBuildTriggerTemplate.tsx +196 -0
- package/src/pipeline/config/triggers/cdevents/CDEventsTrigger.tsx +48 -0
- package/src/pipeline/config/triggers/cdevents/cdevents.trigger.ts +19 -0
- package/src/pipeline/config/triggers/concourse/ConcourseTrigger.tsx +120 -0
- package/src/pipeline/config/triggers/concourse/ConcourseTriggerTemplate.tsx +30 -0
- package/src/pipeline/config/triggers/concourse/concourse.service.ts +19 -0
- package/src/pipeline/config/triggers/concourse/concourse.trigger.ts +36 -0
- package/src/pipeline/config/triggers/cron/CronAdvance.tsx +126 -0
- package/src/pipeline/config/triggers/cron/CronDaily.tsx +172 -0
- package/src/pipeline/config/triggers/cron/CronHourly.tsx +84 -0
- package/src/pipeline/config/triggers/cron/CronMinutes.tsx +61 -0
- package/src/pipeline/config/triggers/cron/CronMonthly.tsx +347 -0
- package/src/pipeline/config/triggers/cron/CronTrigger.tsx +101 -0
- package/src/pipeline/config/triggers/cron/CronWeekly.tsx +111 -0
- package/src/pipeline/config/triggers/cron/cron.trigger.ts +21 -0
- package/src/pipeline/config/triggers/cron/cronConfig.ts +6 -0
- package/src/pipeline/config/triggers/cron/cronSelectOptions.ts +62 -0
- package/src/pipeline/config/triggers/cron/cronTrigger.less +20 -0
- package/src/pipeline/config/triggers/cron/cronValidator.service.ts +13 -0
- package/src/pipeline/config/triggers/git/GitTrigger.tsx +126 -0
- package/src/pipeline/config/triggers/git/GitTriggerExecutionStatus.tsx +19 -0
- package/src/pipeline/config/triggers/git/git.trigger.ts +26 -0
- package/src/pipeline/config/triggers/helm/HelmManualTriggerConfig.tsx +40 -0
- package/src/pipeline/config/triggers/helm/HelmTriggerConfig.tsx +18 -0
- package/src/pipeline/config/triggers/helm/HelmTriggerExecutionStatus.tsx +16 -0
- package/src/pipeline/config/triggers/helm/HelmTriggerTemplate.tsx +90 -0
- package/src/pipeline/config/triggers/helm/helm.trigger.ts +38 -0
- package/src/pipeline/config/triggers/index.ts +16 -0
- package/src/pipeline/config/triggers/jenkins/JenkinsTrigger.tsx +11 -0
- package/src/pipeline/config/triggers/jenkins/JenkinsTriggerExecutionStatus.tsx +10 -0
- package/src/pipeline/config/triggers/jenkins/JenkinsTriggerTemplate.tsx +13 -0
- package/src/pipeline/config/triggers/jenkins/jenkins.trigger.ts +30 -0
- package/src/pipeline/config/triggers/nexus/NexusTrigger.tsx +30 -0
- package/src/pipeline/config/triggers/nexus/nexus.trigger.ts +12 -0
- package/src/pipeline/config/triggers/nexus/nexusReader.service.ts +7 -0
- package/src/pipeline/config/triggers/pipeline/PipelineTrigger.tsx +88 -0
- package/src/pipeline/config/triggers/pipeline/PipelineTriggerTemplate.tsx +201 -0
- package/src/pipeline/config/triggers/pipeline/pipeline.trigger.ts +18 -0
- package/src/pipeline/config/triggers/plugin/PluginTrigger.tsx +32 -0
- package/src/pipeline/config/triggers/plugin/plugin.trigger.ts +9 -0
- package/src/pipeline/config/triggers/pubsub/PubsubTrigger.tsx +77 -0
- package/src/pipeline/config/triggers/pubsub/pubsub.trigger.ts +12 -0
- package/src/pipeline/config/triggers/travis/TravisTrigger.tsx +34 -0
- package/src/pipeline/config/triggers/travis/TravisTriggerTemplate.tsx +13 -0
- package/src/pipeline/config/triggers/travis/travis.trigger.ts +27 -0
- package/src/pipeline/config/triggers/triggers.module.ts +17 -0
- package/src/pipeline/config/triggers/webhook/WebhookTrigger.tsx +41 -0
- package/src/pipeline/config/triggers/webhook/webhook.trigger.ts +19 -0
- package/src/pipeline/config/triggers/wercker/WerckerTrigger.tsx +122 -0
- package/src/pipeline/config/triggers/wercker/WerckerTriggerTemplate.tsx +13 -0
- package/src/pipeline/config/triggers/wercker/wercker.trigger.ts +28 -0
- package/src/pipeline/config/validation/PipelineConfigValidator.ts +215 -0
- package/src/pipeline/config/validation/anyFieldRequired.validator.ts +38 -0
- package/src/pipeline/config/validation/baseRequiredField.validator.ts +54 -0
- package/src/pipeline/config/validation/imageProviderBeforeType.validator.ts +46 -0
- package/src/pipeline/config/validation/pipelineConfig.validator.spec.ts +883 -0
- package/src/pipeline/config/validation/repositoryInformationProvided.validator.ts +3 -0
- package/src/pipeline/config/validation/requiredField.validator.ts +27 -0
- package/src/pipeline/config/validation/serviceAccountAccess.validator.ts +36 -0
- package/src/pipeline/config/validation/stageBeforeType.validator.ts +32 -0
- package/src/pipeline/config/validation/stageOrTriggerBeforeType.validator.ts +80 -0
- package/src/pipeline/config/validation/targetImpedance.validator.ts +63 -0
- package/src/pipeline/config/validation/upstreamHasFlagValidator.builder.ts +42 -0
- package/src/pipeline/config/validation/upstreamVersionProvided.validator.ts +3 -0
- package/src/pipeline/config/warnings.popover.html +18 -0
- package/src/pipeline/create/CreatePipelineButton.tsx +73 -0
- package/src/pipeline/create/CreatePipelineModal.spec.tsx +265 -0
- package/src/pipeline/create/CreatePipelineModal.tsx +572 -0
- package/src/pipeline/create/ManagedTemplateSelector.tsx +54 -0
- package/src/pipeline/create/TemplateDescription.less +13 -0
- package/src/pipeline/create/TemplateDescription.tsx +58 -0
- package/src/pipeline/create/createPipelineModal.less +10 -0
- package/src/pipeline/create/index.ts +1 -0
- package/src/pipeline/details/ExecutionDetailsSectionNav.tsx +70 -0
- package/src/pipeline/details/SingleExecutionDetails.tsx +241 -0
- package/src/pipeline/details/StageExecutionDetails.tsx +239 -0
- package/src/pipeline/details/StageExecutionLogs.tsx +25 -0
- package/src/pipeline/details/StageFailureMessage.tsx +139 -0
- package/src/pipeline/details/StageSummary.tsx +43 -0
- package/src/pipeline/details/StageSummaryWrapper.tsx +10 -0
- package/src/pipeline/details/StepDetails.tsx +77 -0
- package/src/pipeline/details/StepExecutionDetailsWrapper.tsx +10 -0
- package/src/pipeline/details/defaultExecutionDetails.html +7 -0
- package/src/pipeline/details/executionDetailsSection.service.spec.ts +103 -0
- package/src/pipeline/details/executionDetailsSection.service.ts +47 -0
- package/src/pipeline/details/executionDetailsSectionNav.component.ts +11 -0
- package/src/pipeline/details/index.ts +5 -0
- package/src/pipeline/details/singleExecutionDetails.less +3 -0
- package/src/pipeline/details/stageExecutionDetails.less +191 -0
- package/src/pipeline/details/stageFailureMessage.component.ts +11 -0
- package/src/pipeline/details/stageSummary.component.ts +163 -0
- package/src/pipeline/details/stepExecutionDetails.component.ts +52 -0
- package/src/pipeline/executionBuild/ExecutionBuildLink.less +3 -0
- package/src/pipeline/executionBuild/ExecutionBuildLink.tsx +69 -0
- package/src/pipeline/executionBuild/ExecutionBuildTitle.tsx +45 -0
- package/src/pipeline/executionBuild/buildDisplayName.filter.ts +21 -0
- package/src/pipeline/executions/ExecutionNotFound.tsx +9 -0
- package/src/pipeline/executions/Executions.spec.tsx +64 -0
- package/src/pipeline/executions/Executions.tsx +464 -0
- package/src/pipeline/executions/execution/Execution.tsx +544 -0
- package/src/pipeline/executions/execution/ExecutionBreadcrumbs.tsx +62 -0
- package/src/pipeline/executions/execution/ExecutionMarker.tsx +182 -0
- package/src/pipeline/executions/execution/ExecutionMarkerInformationModal.tsx +375 -0
- package/src/pipeline/executions/execution/ExecutionPermalink.tsx +36 -0
- package/src/pipeline/executions/execution/OrchestratedItemRunningTime.ts +34 -0
- package/src/pipeline/executions/execution/execution.less +142 -0
- package/src/pipeline/executions/execution/executionInformation.service.ts +72 -0
- package/src/pipeline/executions/execution/executionMarker.less +56 -0
- package/src/pipeline/executions/execution/executionMarkerInformationModal.less +122 -0
- package/src/pipeline/executions/executionAction/ExecutionAction.spec.tsx +28 -0
- package/src/pipeline/executions/executionAction/ExecutionAction.tsx +41 -0
- package/src/pipeline/executions/executionGroup/ExecutionGroup.tsx +415 -0
- package/src/pipeline/executions/executionGroup/ExecutionGroups.tsx +151 -0
- package/src/pipeline/executions/executionGroup/MigrationTag.tsx +10 -0
- package/src/pipeline/executions/executionGroup/executionGroup.less +138 -0
- package/src/pipeline/executions/executionGroup/executionGroups.less +5 -0
- package/src/pipeline/executions/executions.less +184 -0
- package/src/pipeline/filter/ExecutionFilterModel.ts +133 -0
- package/src/pipeline/filter/ExecutionFilters.tsx +481 -0
- package/src/pipeline/filter/executionFilter.service.spec.ts +27 -0
- package/src/pipeline/filter/executionFilter.service.ts +466 -0
- package/src/pipeline/filter/executionFilters.less +46 -0
- package/src/pipeline/index.ts +27 -0
- package/src/pipeline/manualExecution/CurrentlyRunningExecutions.tsx +42 -0
- package/src/pipeline/manualExecution/DryRun.tsx +13 -0
- package/src/pipeline/manualExecution/ManualPipelineExecutionModal.tsx +457 -0
- package/src/pipeline/manualExecution/NotificationDetails.tsx +101 -0
- package/src/pipeline/manualExecution/Parameters.tsx +98 -0
- package/src/pipeline/manualExecution/PipelineOptions.tsx +130 -0
- package/src/pipeline/manualExecution/StageManualComponents.tsx +19 -0
- package/src/pipeline/manualExecution/TriggerTemplate.tsx +20 -0
- package/src/pipeline/manualExecution/Triggers.tsx +103 -0
- package/src/pipeline/manualExecution/index.ts +1 -0
- package/src/pipeline/manualExecution/layout/ManualExecutionFieldLayout.tsx +30 -0
- package/src/pipeline/manualExecution/manualPipelineExecution.less +32 -0
- package/src/pipeline/pipeline.dataSource.js +108 -0
- package/src/pipeline/pipeline.dataSource.spec.ts +168 -0
- package/src/pipeline/pipeline.less +84 -0
- package/src/pipeline/pipeline.module.ts +128 -0
- package/src/pipeline/pipeline.states.ts +138 -0
- package/src/pipeline/service/ExecutionsTransformer.spec.ts +416 -0
- package/src/pipeline/service/ExecutionsTransformer.ts +504 -0
- package/src/pipeline/service/execution.service.spec.ts +491 -0
- package/src/pipeline/service/execution.service.ts +567 -0
- package/src/pipeline/status/Artifact.spec.tsx +78 -0
- package/src/pipeline/status/Artifact.tsx +59 -0
- package/src/pipeline/status/ArtifactList.spec.tsx +49 -0
- package/src/pipeline/status/ArtifactList.tsx +35 -0
- package/src/pipeline/status/ExecutionCancellationReason.tsx +22 -0
- package/src/pipeline/status/ExecutionParameters.spec.tsx +82 -0
- package/src/pipeline/status/ExecutionParameters.tsx +77 -0
- package/src/pipeline/status/ExecutionStatus.tsx +114 -0
- package/src/pipeline/status/ExecutionUserStatus.tsx +12 -0
- package/src/pipeline/status/ParametersAndArtifacts.tsx +141 -0
- package/src/pipeline/status/ResolvedArtifactList.spec.tsx +137 -0
- package/src/pipeline/status/ResolvedArtifactList.tsx +79 -0
- package/src/pipeline/status/artifact.less +37 -0
- package/src/pipeline/status/artifactList.component.ts +11 -0
- package/src/pipeline/status/artifactList.less +47 -0
- package/src/pipeline/status/executionCancellationReason.less +3 -0
- package/src/pipeline/status/executionParameters.less +43 -0
- package/src/pipeline/status/executionStatus.less +38 -0
- package/src/pipeline/triggers/NextRunTag.tsx +70 -0
- package/src/pipeline/triggers/QuietPeriodBadge.tsx +43 -0
- package/src/pipeline/triggers/TriggersTag.tsx +49 -0
- package/src/pipeline/triggers/useQuietPeriod.hook.ts +43 -0
- package/src/plugins/deck.plugin.spec.ts +64 -0
- package/src/plugins/deck.plugin.ts +44 -0
- package/src/plugins/index.ts +3 -0
- package/src/plugins/plugin.module.ts +36 -0
- package/src/plugins/plugin.registry.spec.ts +166 -0
- package/src/plugins/plugin.registry.ts +173 -0
- package/src/plugins/sharedLibraries.ts +49 -0
- package/src/presentation/CollapsibleElement.less +41 -0
- package/src/presentation/CollapsibleElement.tsx +42 -0
- package/src/presentation/CustomLabels.ts +17 -0
- package/src/presentation/FormElements.tsx +38 -0
- package/src/presentation/HoverablePopover.css +4 -0
- package/src/presentation/HoverablePopover.tsx +254 -0
- package/src/presentation/IconTooltip.tsx +24 -0
- package/src/presentation/LabelComponent.tsx +18 -0
- package/src/presentation/LinkWithClipboard.tsx +17 -0
- package/src/presentation/LoadingAnimation.tsx +9 -0
- package/src/presentation/Markdown.less +13 -0
- package/src/presentation/Markdown.tsx +56 -0
- package/src/presentation/Placement.ts +1 -0
- package/src/presentation/Popover.tsx +45 -0
- package/src/presentation/ReactModal.tsx +78 -0
- package/src/presentation/RenderOutputFile.tsx +28 -0
- package/src/presentation/SpanDropdownTrigger.tsx +27 -0
- package/src/presentation/SpinErrorBoundary.tsx +108 -0
- package/src/presentation/TabBoundary.tsx +46 -0
- package/src/presentation/TetheredCreatable.tsx +37 -0
- package/src/presentation/TetheredSelect.tsx +37 -0
- package/src/presentation/ToggleButtonGroup.tsx +67 -0
- package/src/presentation/Tooltip.tsx +68 -0
- package/src/presentation/WatchValue.tsx +41 -0
- package/src/presentation/anyFieldFilter/anyField.filter.ts +44 -0
- package/src/presentation/autoScroll/autoScroll.directive.spec.js +181 -0
- package/src/presentation/autoScroll/autoScroll.directive.ts +79 -0
- package/src/presentation/collapsibleSection/CollapsibleSection.tsx +123 -0
- package/src/presentation/collapsibleSection/collapsibleSection.directive.html +12 -0
- package/src/presentation/collapsibleSection/collapsibleSection.directive.js +57 -0
- package/src/presentation/details/Details.tsx +71 -0
- package/src/presentation/details.less +197 -0
- package/src/presentation/domPurifyOpenLinksInNewWindow.ts +19 -0
- package/src/presentation/flex-layout.less +164 -0
- package/src/presentation/forms/FormikForm.tsx +31 -0
- package/src/presentation/forms/README.md +237 -0
- package/src/presentation/forms/SpinFormik.spec.tsx +24 -0
- package/src/presentation/forms/SpinFormik.tsx +52 -0
- package/src/presentation/forms/fields/FormField.tsx +79 -0
- package/src/presentation/forms/fields/FormikExpressionField.tsx +56 -0
- package/src/presentation/forms/fields/FormikExpressionRegexField.tsx +161 -0
- package/src/presentation/forms/fields/FormikFormField.spec.tsx +210 -0
- package/src/presentation/forms/fields/FormikFormField.tsx +186 -0
- package/src/presentation/forms/fields/index.ts +7 -0
- package/src/presentation/forms/fields/interface.ts +47 -0
- package/src/presentation/forms/fields/renderContent.tsx +18 -0
- package/src/presentation/forms/forms.less +186 -0
- package/src/presentation/forms/hooks/index.ts +2 -0
- package/src/presentation/forms/hooks/useFormInputValueMapper.hook.ts +44 -0
- package/src/presentation/forms/hooks/useSaveRestoreMutuallyExclusiveFields.hook.spec.tsx +199 -0
- package/src/presentation/forms/hooks/useSaveRestoreMutuallyExclusiveFields.hook.ts +102 -0
- package/src/presentation/forms/index.ts +7 -0
- package/src/presentation/forms/inputs/CheckboxInput.tsx +29 -0
- package/src/presentation/forms/inputs/ChecklistInput.less +26 -0
- package/src/presentation/forms/inputs/ChecklistInput.spec.tsx +126 -0
- package/src/presentation/forms/inputs/ChecklistInput.tsx +81 -0
- package/src/presentation/forms/inputs/DayPickerInput.less +4 -0
- package/src/presentation/forms/inputs/DayPickerInput.tsx +32 -0
- package/src/presentation/forms/inputs/JsonEditor.tsx +65 -0
- package/src/presentation/forms/inputs/NumberInput.css +3 -0
- package/src/presentation/forms/inputs/NumberInput.tsx +31 -0
- package/src/presentation/forms/inputs/RadioButtonInput.spec.tsx +62 -0
- package/src/presentation/forms/inputs/RadioButtonInput.tsx +68 -0
- package/src/presentation/forms/inputs/ReactSelectInput.tsx +124 -0
- package/src/presentation/forms/inputs/SelectInput.spec.tsx +64 -0
- package/src/presentation/forms/inputs/SelectInput.tsx +51 -0
- package/src/presentation/forms/inputs/StringsAsOptions.tsx +37 -0
- package/src/presentation/forms/inputs/TextAreaInput.tsx +16 -0
- package/src/presentation/forms/inputs/TextInput.tsx +30 -0
- package/src/presentation/forms/inputs/aceEditor.less +10 -0
- package/src/presentation/forms/inputs/expression/ExpressionError.tsx +52 -0
- package/src/presentation/forms/inputs/expression/ExpressionInput.tsx +29 -0
- package/src/presentation/forms/inputs/expression/ExpressionPreview.tsx +15 -0
- package/src/presentation/forms/inputs/expression/evaluateExpression.ts +53 -0
- package/src/presentation/forms/inputs/expression/index.ts +7 -0
- package/src/presentation/forms/inputs/expression/spel2js.d.ts +26 -0
- package/src/presentation/forms/inputs/expression/spel2js.templateParser.ts +265 -0
- package/src/presentation/forms/inputs/hooks/index.ts +1 -0
- package/src/presentation/forms/inputs/hooks/useInternalValidator.hook.spec.tsx +130 -0
- package/src/presentation/forms/inputs/hooks/useInternalValidator.hook.ts +27 -0
- package/src/presentation/forms/inputs/index.ts +15 -0
- package/src/presentation/forms/inputs/interface.ts +37 -0
- package/src/presentation/forms/inputs/utils.ts +25 -0
- package/src/presentation/forms/layouts/LayoutContext.tsx +7 -0
- package/src/presentation/forms/layouts/ResponsiveFieldLayout.tsx +41 -0
- package/src/presentation/forms/layouts/StandardFieldLayout.css +11 -0
- package/src/presentation/forms/layouts/StandardFieldLayout.tsx +34 -0
- package/src/presentation/forms/layouts/index.ts +4 -0
- package/src/presentation/forms/layouts/interface.ts +13 -0
- package/src/presentation/forms/stories/FormikIntro.stories.mdx +116 -0
- package/src/presentation/forms/stories/SpinFormik.stories.tsx +167 -0
- package/src/presentation/forms/stories/SpinFormikStoriesHelper.tsx +68 -0
- package/src/presentation/forms/validation/FormValidator.spec.ts +380 -0
- package/src/presentation/forms/validation/FormValidator.ts +162 -0
- package/src/presentation/forms/validation/FormValidatorField.ts +44 -0
- package/src/presentation/forms/validation/ValidationMessage.less +42 -0
- package/src/presentation/forms/validation/ValidationMessage.tsx +52 -0
- package/src/presentation/forms/validation/categories.spec.ts +178 -0
- package/src/presentation/forms/validation/categories.ts +79 -0
- package/src/presentation/forms/validation/index.ts +7 -0
- package/src/presentation/forms/validation/useValidationData.spec.tsx +176 -0
- package/src/presentation/forms/validation/useValidationData.ts +40 -0
- package/src/presentation/forms/validation/validation.ts +70 -0
- package/src/presentation/forms/validation/validators.spec.ts +63 -0
- package/src/presentation/forms/validation/validators.ts +181 -0
- package/src/presentation/hooks/index.ts +19 -0
- package/src/presentation/hooks/useApplicationContext.hook.ts +19 -0
- package/src/presentation/hooks/useContainerClassNames.hook.spec.tsx +76 -0
- package/src/presentation/hooks/useContainerClassNames.hook.ts +43 -0
- package/src/presentation/hooks/useData.hook.spec.tsx +124 -0
- package/src/presentation/hooks/useData.hook.ts +32 -0
- package/src/presentation/hooks/useDataSource.hook.ts +31 -0
- package/src/presentation/hooks/useDataWithRefresh.hook.ts +39 -0
- package/src/presentation/hooks/useDebouncedValue.hook.spec.tsx +125 -0
- package/src/presentation/hooks/useDebouncedValue.hook.ts +18 -0
- package/src/presentation/hooks/useDeepObjectDiff.hook.spec.tsx +26 -0
- package/src/presentation/hooks/useDeepObjectDiff.hook.ts +15 -0
- package/src/presentation/hooks/useDimensions.hook.ts +38 -0
- package/src/presentation/hooks/useEscapeKeyCallback.hook.ts +5 -0
- package/src/presentation/hooks/useEventListener.hook.spec.tsx +177 -0
- package/src/presentation/hooks/useEventListener.hook.ts +33 -0
- package/src/presentation/hooks/useForceUpdate.hook.spec.tsx +34 -0
- package/src/presentation/hooks/useForceUpdate.hook.ts +9 -0
- package/src/presentation/hooks/useInterval.hook.spec.tsx +97 -0
- package/src/presentation/hooks/useInterval.hook.ts +28 -0
- package/src/presentation/hooks/useIsMobile.hook.ts +30 -0
- package/src/presentation/hooks/useIsMountedRef.hook.spec.tsx +62 -0
- package/src/presentation/hooks/useIsMountedRef.hook.ts +14 -0
- package/src/presentation/hooks/useLatestCallback.hook.spec.tsx +65 -0
- package/src/presentation/hooks/useLatestCallback.hook.ts +17 -0
- package/src/presentation/hooks/useLatestPromise.hook.spec.tsx +160 -0
- package/src/presentation/hooks/useLatestPromise.hook.ts +94 -0
- package/src/presentation/hooks/useMountStatusRef.hook.spec.tsx +36 -0
- package/src/presentation/hooks/useMountStatusRef.hook.ts +12 -0
- package/src/presentation/hooks/useObservable.hook.ts +21 -0
- package/src/presentation/hooks/useObservableValue.hook.ts +19 -0
- package/src/presentation/hooks/usePollingData.hook.spec.tsx +125 -0
- package/src/presentation/hooks/usePollingData.hook.ts +44 -0
- package/src/presentation/hooks/usePrevious.hook.spec.tsx +34 -0
- package/src/presentation/hooks/usePrevious.hook.ts +11 -0
- package/src/presentation/horizontalTabs/HorizontalTabs.less +47 -0
- package/src/presentation/horizontalTabs/HorizontalTabs.tsx +47 -0
- package/src/presentation/index.ts +34 -0
- package/src/presentation/isVisible/isVisible.directive.js +13 -0
- package/src/presentation/label.component.ts +11 -0
- package/src/presentation/labeledValues/LabeledValue.tsx +13 -0
- package/src/presentation/labeledValues/LabeledValueList.tsx +6 -0
- package/src/presentation/labeledValues/index.ts +2 -0
- package/src/presentation/less/imports/animations.less +88 -0
- package/src/presentation/less/imports/commonImports.less +4 -0
- package/src/presentation/less/imports/mixins.less +57 -0
- package/src/presentation/linkWithClipboard.component.ts +11 -0
- package/src/presentation/main.less +1617 -0
- package/src/presentation/markdown.component.ts +11 -0
- package/src/presentation/modal/Modal.less +193 -0
- package/src/presentation/modal/Modal.stories.tsx +26 -0
- package/src/presentation/modal/Modal.tsx +59 -0
- package/src/presentation/modal/ModalBody.less +15 -0
- package/src/presentation/modal/ModalBody.tsx +9 -0
- package/src/presentation/modal/ModalContext.ts +7 -0
- package/src/presentation/modal/ModalFooter.less +34 -0
- package/src/presentation/modal/ModalFooter.tsx +15 -0
- package/src/presentation/modal/ModalHeader.less +53 -0
- package/src/presentation/modal/ModalHeader.tsx +26 -0
- package/src/presentation/modal/index.ts +5 -0
- package/src/presentation/modal/showModal.tsx +110 -0
- package/src/presentation/navPopover.less +15 -0
- package/src/presentation/navigation/PageNavigationState.ts +29 -0
- package/src/presentation/navigation/PageNavigator.tsx +186 -0
- package/src/presentation/navigation/PageSection.tsx +52 -0
- package/src/presentation/navigation/index.ts +2 -0
- package/src/presentation/navigation/pageNavigation.less +75 -0
- package/src/presentation/navigation/pageNavigator.component.spec.ts +92 -0
- package/src/presentation/navigation/pageNavigator.component.ts +131 -0
- package/src/presentation/navigation/pageSection.component.ts +65 -0
- package/src/presentation/percent.filter.js +11 -0
- package/src/presentation/presentation.module.js +39 -0
- package/src/presentation/replace.filter.ts +20 -0
- package/src/presentation/robotToHumanFilter/robotToHuman.filter.ts +36 -0
- package/src/presentation/sortToggle/SortToggle.tsx +52 -0
- package/src/presentation/sortToggle/index.ts +1 -0
- package/src/presentation/sortToggle/sorttoggle.directive.html +11 -0
- package/src/presentation/sortToggle/sorttoggle.directive.js +43 -0
- package/src/presentation/spel/FormikSpelContext.ts +12 -0
- package/src/presentation/spel/SpelInput.less +3 -0
- package/src/presentation/spel/SpelInput.spec.tsx +226 -0
- package/src/presentation/spel/SpelInput.tsx +78 -0
- package/src/presentation/spel/SpelService.spec.ts +47 -0
- package/src/presentation/spel/SpelService.ts +61 -0
- package/src/presentation/spel/SpelToggle.tsx +31 -0
- package/src/presentation/spel/index.ts +4 -0
- package/src/presentation/standalone.view.html +5 -0
- package/src/presentation/stickyHeader.less +33 -0
- package/src/presentation/tables/Table.tsx +70 -0
- package/src/presentation/tables/TableCell.tsx +36 -0
- package/src/presentation/tables/TableContext.tsx +14 -0
- package/src/presentation/tables/TableRow.tsx +82 -0
- package/src/presentation/tables/index.ts +5 -0
- package/src/presentation/tables/minimalNativeTableLayout.less +36 -0
- package/src/presentation/tables/minimalNativeTableLayout.tsx +48 -0
- package/src/presentation/tables/standardGridTableLayout.less +203 -0
- package/src/presentation/tables/standardGridTableLayout.tsx +146 -0
- package/src/presentation/text/BreakString.tsx +12 -0
- package/src/presentation/text/SingleLineString.tsx +12 -0
- package/src/presentation/text/index.ts +2 -0
- package/src/projects/ProjectHeader.tsx +138 -0
- package/src/projects/Projects.spec.tsx +141 -0
- package/src/projects/Projects.tsx +148 -0
- package/src/projects/configure/Applications.tsx +54 -0
- package/src/projects/configure/Clusters.tsx +179 -0
- package/src/projects/configure/ConfigureProjectModal.css +19 -0
- package/src/projects/configure/ConfigureProjectModal.tsx +163 -0
- package/src/projects/configure/Pipelines.tsx +198 -0
- package/src/projects/configure/ProjectAttributes.tsx +132 -0
- package/src/projects/configure/configureProject.modal.html +28 -0
- package/src/projects/configure/index.ts +5 -0
- package/src/projects/dashboard/cluster/inconsistentBuilds.tooltip.html +3 -0
- package/src/projects/dashboard/cluster/projectCluster.controller.spec.js +114 -0
- package/src/projects/dashboard/cluster/projectCluster.directive.html +93 -0
- package/src/projects/dashboard/cluster/projectCluster.directive.js +186 -0
- package/src/projects/dashboard/cluster/projectCluster.directive.spec.js +119 -0
- package/src/projects/dashboard/cluster/projectCluster.less +70 -0
- package/src/projects/dashboard/cluster/projectClusterRefresh.tooltip.html +7 -0
- package/src/projects/dashboard/clusterRefresh.tooltip.html +7 -0
- package/src/projects/dashboard/dashboard.controller.js +156 -0
- package/src/projects/dashboard/dashboard.controller.spec.js +146 -0
- package/src/projects/dashboard/dashboard.html +41 -0
- package/src/projects/dashboard/dashboard.less +10 -0
- package/src/projects/dashboard/executionRefresh.tooltip.html +7 -0
- package/src/projects/dashboard/pipeline/ProjectPipeline.tsx +76 -0
- package/src/projects/dashboard/pipeline/projectPipeline.component.ts +11 -0
- package/src/projects/dashboard/pipeline/projectPipeline.less +34 -0
- package/src/projects/dashboard/regionFilter/regionFilter.component.html +17 -0
- package/src/projects/dashboard/regionFilter/regionFilter.component.js +28 -0
- package/src/projects/dashboard/regionFilter/regionFilter.component.less +5 -0
- package/src/projects/dashboard/regionFilter/regionFilter.service.js +39 -0
- package/src/projects/index.ts +6 -0
- package/src/projects/project.less +55 -0
- package/src/projects/projectSearchResultType.tsx +86 -0
- package/src/projects/projects.module.ts +8 -0
- package/src/projects/projects.states.ts +107 -0
- package/src/projects/service/ProjectReader.ts +16 -0
- package/src/projects/service/ProjectWriter.ts +35 -0
- package/src/pubsub/PubsubSubscriptionReader.ts +8 -0
- package/src/pubsub/index.ts +1 -0
- package/src/reactShims/AngularJSAdapter.tsx +77 -0
- package/src/reactShims/index.ts +7 -0
- package/src/reactShims/modal.injector.ts +18 -0
- package/src/reactShims/ngReact.ts +42 -0
- package/src/reactShims/react.ga.ts +15 -0
- package/src/reactShims/react.injector.ts +91 -0
- package/src/reactShims/react.module.ts +20 -0
- package/src/reactShims/react.uirouter.css +5 -0
- package/src/reactShims/reactUtils.ts +3 -0
- package/src/reactShims/state.events.ts +37 -0
- package/src/region/RegionSelectField.tsx +45 -0
- package/src/region/RegionSelectInput.tsx +34 -0
- package/src/region/index.ts +2 -0
- package/src/region/region.module.ts +5 -0
- package/src/region/regionSelectField.directive.js +59 -0
- package/src/region/regionSelectField.directive.spec.js +67 -0
- package/src/registry/Registry.ts +15 -0
- package/src/registry/index.ts +1 -0
- package/src/retry/index.ts +1 -0
- package/src/retry/retry.service.spec.ts +83 -0
- package/src/retry/retry.service.ts +27 -0
- package/src/scheduler/SchedulerFactory.spec.ts +53 -0
- package/src/scheduler/SchedulerFactory.ts +96 -0
- package/src/scheduler/index.ts +1 -0
- package/src/search/global/GlobalSearch.tsx +386 -0
- package/src/search/global/GlobalSearchRecentItems.tsx +47 -0
- package/src/search/global/GlobalSearchResults.tsx +77 -0
- package/src/search/global/globalSearch.less +112 -0
- package/src/search/global/globalSearch.module.ts +8 -0
- package/src/search/global/globalsearch.component.ts +11 -0
- package/src/search/global/utils.ts +25 -0
- package/src/search/index.ts +5 -0
- package/src/search/infrastructure/ProjectSummaryPod.tsx +68 -0
- package/src/search/infrastructure/RecentlyViewedItems.tsx +77 -0
- package/src/search/infrastructure/SearchResult.tsx +24 -0
- package/src/search/infrastructure/SearchResultPod.tsx +43 -0
- package/src/search/infrastructure/SearchResultPodItem.tsx +56 -0
- package/src/search/infrastructure/SearchResultPods.tsx +79 -0
- package/src/search/infrastructure/SearchV2.tsx +195 -0
- package/src/search/infrastructure/infrastructure.controller.js +185 -0
- package/src/search/infrastructure/infrastructure.html +105 -0
- package/src/search/infrastructure/infrastructure.less +148 -0
- package/src/search/infrastructure/infrastructure.states.ts +45 -0
- package/src/search/infrastructure/infrastructureSearch.service.ts +96 -0
- package/src/search/infrastructure/infrastructureSearchV2.component.ts +15 -0
- package/src/search/infrastructure/infrastructureSearchV2.service.ts +63 -0
- package/src/search/infrastructure/projectSummaryPod.component.ts +11 -0
- package/src/search/infrastructure/projectSummaryPod.less +58 -0
- package/src/search/infrastructure/recentlyViewedItems.component.ts +11 -0
- package/src/search/infrastructure/search.infrastructure.module.js +20 -0
- package/src/search/infrastructure/searchResult.component.ts +11 -0
- package/src/search/infrastructure/searchResult.less +7 -0
- package/src/search/search.module.js +11 -0
- package/src/search/search.service.ts +70 -0
- package/src/search/searchRank.filter.ts +25 -0
- package/src/search/searchResult/DefaultSearchResultTab.tsx +51 -0
- package/src/search/searchResult/Renderers.tsx +107 -0
- package/src/search/searchResult/SearchResultGrid.tsx +71 -0
- package/src/search/searchResult/SearchResultTabs.tsx +37 -0
- package/src/search/searchResult/SearchResults.tsx +51 -0
- package/src/search/searchResult/SearchStatus.ts +7 -0
- package/src/search/searchResult/baseTable.less +62 -0
- package/src/search/searchResult/index.ts +6 -0
- package/src/search/searchResult/searchResultType.registry.ts +23 -0
- package/src/search/searchResult/searchResultType.ts +57 -0
- package/src/search/searchResult/searchResults.less +85 -0
- package/src/search/widgets/Filter.spec.tsx +45 -0
- package/src/search/widgets/Filter.tsx +60 -0
- package/src/search/widgets/Filters.spec.tsx +55 -0
- package/src/search/widgets/Filters.tsx +95 -0
- package/src/search/widgets/Search.spec.tsx +53 -0
- package/src/search/widgets/Search.tsx +351 -0
- package/src/search/widgets/SearchFilterTypeRegistry.ts +48 -0
- package/src/search/widgets/filterlist.less +66 -0
- package/src/search/widgets/index.ts +4 -0
- package/src/search/widgets/search.component.ts +15 -0
- package/src/search/widgets/search.less +68 -0
- package/src/securityGroup/AllSecurityGroupsCtrl.js +122 -0
- package/src/securityGroup/CreateSecurityGroupButton.tsx +76 -0
- package/src/securityGroup/SecurityGroup.tsx +151 -0
- package/src/securityGroup/SecurityGroupDetails.tsx +14 -0
- package/src/securityGroup/SecurityGroupPod.tsx +50 -0
- package/src/securityGroup/SecurityGroupWriter.spec.ts +13 -0
- package/src/securityGroup/SecurityGroupWriter.ts +56 -0
- package/src/securityGroup/SecurityGroups.tsx +159 -0
- package/src/securityGroup/filter/SecurityGroupFilterModel.ts +27 -0
- package/src/securityGroup/filter/SecurityGroupFilterService.spec.js +424 -0
- package/src/securityGroup/filter/SecurityGroupFilterService.ts +160 -0
- package/src/securityGroup/filter/SecurityGroupFilters.tsx +214 -0
- package/src/securityGroup/filter/securityGroup.filter.component.ts +11 -0
- package/src/securityGroup/index.ts +4 -0
- package/src/securityGroup/label/FirewallLabel.tsx +11 -0
- package/src/securityGroup/label/FirewallLabels.ts +26 -0
- package/src/securityGroup/label/firewallLabel.component.ts +21 -0
- package/src/securityGroup/label/index.ts +2 -0
- package/src/securityGroup/securityGroup.dataSource.ts +47 -0
- package/src/securityGroup/securityGroup.less +27 -0
- package/src/securityGroup/securityGroup.module.js +16 -0
- package/src/securityGroup/securityGroup.states.ts +154 -0
- package/src/securityGroup/securityGroupReader.service.spec.ts +228 -0
- package/src/securityGroup/securityGroupReader.service.ts +490 -0
- package/src/securityGroup/securityGroupSearchResultType.tsx +83 -0
- package/src/securityGroup/securityGroupTransformer.service.ts +21 -0
- package/src/serverGroup/ServerGroup.tsx +233 -0
- package/src/serverGroup/ServerGroupHeader.tsx +230 -0
- package/src/serverGroup/configure/common/DeployInitializer.tsx +254 -0
- package/src/serverGroup/configure/common/InstanceArchetypeSelector.tsx +7 -0
- package/src/serverGroup/configure/common/InstanceTypeSelector.tsx +6 -0
- package/src/serverGroup/configure/common/ServerGroupNamePreview.tsx +81 -0
- package/src/serverGroup/configure/common/basicSettingsMixin.controller.js +103 -0
- package/src/serverGroup/configure/common/basicSettingsMixin.controller.spec.js +127 -0
- package/src/serverGroup/configure/common/costFactor.html +4 -0
- package/src/serverGroup/configure/common/costFactor.js +36 -0
- package/src/serverGroup/configure/common/deployInitializer.component.html +72 -0
- package/src/serverGroup/configure/common/deployInitializer.component.spec.ts +75 -0
- package/src/serverGroup/configure/common/deployInitializer.component.ts +156 -0
- package/src/serverGroup/configure/common/dirtyInstanceTypeNotification.component.html +19 -0
- package/src/serverGroup/configure/common/dirtyInstanceTypeNotification.component.js +16 -0
- package/src/serverGroup/configure/common/index.ts +7 -0
- package/src/serverGroup/configure/common/instanceArchetypeDirective.html +52 -0
- package/src/serverGroup/configure/common/instanceArchetypeSelector.js +72 -0
- package/src/serverGroup/configure/common/instanceArchtypeSelector.spec.js +59 -0
- package/src/serverGroup/configure/common/instanceTypeDirective.html +52 -0
- package/src/serverGroup/configure/common/instanceTypeSelector.directive.less +7 -0
- package/src/serverGroup/configure/common/instanceTypeSelector.js +78 -0
- package/src/serverGroup/configure/common/serverGroupCommandBuilder.service.ts +209 -0
- package/src/serverGroup/configure/common/serverGroupCommandRegistry.provider.ts +39 -0
- package/src/serverGroup/configure/common/serverGroupConfiguration.service.ts +26 -0
- package/src/serverGroup/configure/common/targetHealthyPercentageSelector.component.html +13 -0
- package/src/serverGroup/configure/common/targetHealthyPercentageSelector.component.ts +11 -0
- package/src/serverGroup/configure/common/v2InstanceTypeSelector.component.ts +109 -0
- package/src/serverGroup/configure/common/v2instanceArchetype.directive.html +39 -0
- package/src/serverGroup/configure/common/v2instanceArchetypeSelector.component.ts +120 -0
- package/src/serverGroup/configure/common/wizard/fields/ServerGroupDetailsField.tsx +50 -0
- package/src/serverGroup/configure/common/wizard/fields/index.ts +1 -0
- package/src/serverGroup/details/RunningTasks.tsx +79 -0
- package/src/serverGroup/details/ServerGroupDetails.tsx +139 -0
- package/src/serverGroup/details/ServerGroupDetailsWrapper.tsx +140 -0
- package/src/serverGroup/details/ServerGroupInsightActions.tsx +41 -0
- package/src/serverGroup/details/ShowUserData.tsx +78 -0
- package/src/serverGroup/details/capacity/CapacityDetailsSection.spec.tsx +17 -0
- package/src/serverGroup/details/capacity/CapacityDetailsSection.tsx +21 -0
- package/src/serverGroup/details/capacity/CurrentCapacity.tsx +10 -0
- package/src/serverGroup/details/capacity/DesiredCapacity.tsx +24 -0
- package/src/serverGroup/details/capacity/index.ts +3 -0
- package/src/serverGroup/details/index.ts +7 -0
- package/src/serverGroup/details/multipleServerGroup.component.html +11 -0
- package/src/serverGroup/details/multipleServerGroup.component.js +15 -0
- package/src/serverGroup/details/multipleServerGroup.component.less +19 -0
- package/src/serverGroup/details/multipleServerGroups.controller.js +148 -0
- package/src/serverGroup/details/multipleServerGroups.controller.spec.js +130 -0
- package/src/serverGroup/details/multipleServerGroups.view.html +39 -0
- package/src/serverGroup/details/runningTasks.component.ts +65 -0
- package/src/serverGroup/details/scalingActivities/ScalingActivitiesModal.less +5 -0
- package/src/serverGroup/details/scalingActivities/ScalingActivitiesModal.spec.ts +80 -0
- package/src/serverGroup/details/scalingActivities/ScalingActivitiesModal.tsx +128 -0
- package/src/serverGroup/details/scalingActivities/ViewScalingActivitiesLink.tsx +15 -0
- package/src/serverGroup/details/scalingActivities/index.ts +1 -0
- package/src/serverGroup/details/scalingActivities/viewScalingActivitiesLink.component.ts +12 -0
- package/src/serverGroup/details/serverGroupWarningMessage.service.spec.ts +228 -0
- package/src/serverGroup/details/serverGroupWarningMessage.service.ts +86 -0
- package/src/serverGroup/details/userData.html +14 -0
- package/src/serverGroup/index.ts +9 -0
- package/src/serverGroup/metrics/CloudMetricsReader.ts +23 -0
- package/src/serverGroup/pod/RunningTasksPopoverContent.tsx +58 -0
- package/src/serverGroup/pod/RunningTasksTag.tsx +33 -0
- package/src/serverGroup/resize/MinMaxDesiredChanges.tsx +36 -0
- package/src/serverGroup/resize/index.ts +1 -0
- package/src/serverGroup/serverGroup.dataSource.ts +63 -0
- package/src/serverGroup/serverGroup.less +12 -0
- package/src/serverGroup/serverGroup.module.ts +29 -0
- package/src/serverGroup/serverGroup.states.ts +89 -0
- package/src/serverGroup/serverGroup.transformer.js +32 -0
- package/src/serverGroup/serverGroupReader.service.ts +40 -0
- package/src/serverGroup/serverGroupSearchResultType.tsx +199 -0
- package/src/serverGroup/serverGroupWriter.service.spec.ts +128 -0
- package/src/serverGroup/serverGroupWriter.service.ts +226 -0
- package/src/serverGroup/templates/index.ts +3 -0
- package/src/serverGroupManager/ServerGroupManager.tsx +101 -0
- package/src/serverGroupManager/ServerGroupManagerDetails.tsx +13 -0
- package/src/serverGroupManager/ServerGroupManagerHeading.tsx +52 -0
- package/src/serverGroupManager/ServerGroupManagerReader.ts +9 -0
- package/src/serverGroupManager/ServerGroupManagerTag.tsx +65 -0
- package/src/serverGroupManager/index.ts +5 -0
- package/src/serverGroupManager/serverGroupManager.dataSource.ts +33 -0
- package/src/serverGroupManager/serverGroupManager.module.ts +7 -0
- package/src/serverGroupManager/serverGroupManager.states.ts +47 -0
- package/src/serviceAccount/ServiceAccountReader.ts +22 -0
- package/src/serviceAccount/index.ts +1 -0
- package/src/services/ServicesReader.ts +14 -0
- package/src/services/index.ts +1 -0
- package/src/slack/SlackChannelSelector.tsx +46 -0
- package/src/slack/SlackReader.spec.ts +34 -0
- package/src/slack/SlackReader.ts +19 -0
- package/src/slack/index.ts +2 -0
- package/src/slack/slackChannelSelector.component.ts +12 -0
- package/src/snapshot/SnapshotReader.ts +8 -0
- package/src/snapshot/SnapshotWriter.ts +69 -0
- package/src/snapshot/diff/snapshotDiff.modal.controller.js +129 -0
- package/src/snapshot/diff/snapshotDiff.modal.controller.spec.js +71 -0
- package/src/snapshot/diff/snapshotDiff.modal.html +58 -0
- package/src/snapshot/diff/snapshotDiff.modal.less +5 -0
- package/src/snapshot/diff/viewSnapshotDiffButton.component.js +51 -0
- package/src/state/index.ts +63 -0
- package/src/storage/StorageAccountReader.ts +7 -0
- package/src/storage/index.ts +1 -0
- package/src/styleguide/styleguide.module.ts +7 -0
- package/src/styleguide/styleguide.states.ts +26 -0
- package/src/subnet/SubnetTag.tsx +37 -0
- package/src/subnet/index.ts +2 -0
- package/src/subnet/subnet.module.ts +5 -0
- package/src/subnet/subnet.read.service.spec.ts +43 -0
- package/src/subnet/subnet.read.service.ts +42 -0
- package/src/subnet/subnetTag.component.html +0 -0
- package/src/subnet/subnetTag.component.js +14 -0
- package/src/task/PlatformHealthOverrideMessage.tsx +84 -0
- package/src/task/StatusGlyph.tsx +28 -0
- package/src/task/TaskNotFound.tsx +9 -0
- package/src/task/TaskProgressBar.tsx +74 -0
- package/src/task/TrafficGuardHelperLink.tsx +26 -0
- package/src/task/displayableTasks.filter.ts +20 -0
- package/src/task/index.ts +8 -0
- package/src/task/modal/TaskMonitorModal.tsx +107 -0
- package/src/task/modal/TaskReason.tsx +26 -0
- package/src/task/modal/reason.directive.html +11 -0
- package/src/task/modal/reason.directive.js +18 -0
- package/src/task/monitor/MultiTaskMonitor.tsx +63 -0
- package/src/task/monitor/TaskMonitor.ts +151 -0
- package/src/task/monitor/TaskMonitorError.tsx +53 -0
- package/src/task/monitor/TaskMonitorStatus.tsx +58 -0
- package/src/task/monitor/TaskMonitorWrapper.tsx +62 -0
- package/src/task/monitor/multiTaskMonitor.component.less +8 -0
- package/src/task/monitor/taskMonitor.directive.less +8 -0
- package/src/task/monitor/taskMonitor.directive.ts +13 -0
- package/src/task/monitor/taskMonitor.module.js +9 -0
- package/src/task/monitor/taskMonitor.spec.ts +129 -0
- package/src/task/platformHealthOverrideMessage.component.ts +60 -0
- package/src/task/platformHealthOverrideMessage.html +10 -0
- package/src/task/statusGlyph.component.ts +11 -0
- package/src/task/task.dataSource.js +73 -0
- package/src/task/task.dataSource.spec.ts +105 -0
- package/src/task/task.module.js +27 -0
- package/src/task/task.read.service.spec.js +180 -0
- package/src/task/task.read.service.ts +116 -0
- package/src/task/task.states.ts +78 -0
- package/src/task/task.write.service.spec.ts +41 -0
- package/src/task/task.write.service.ts +28 -0
- package/src/task/taskExecutor.ts +62 -0
- package/src/task/taskProgressBar.directive.js +14 -0
- package/src/task/tasks.controller.js +300 -0
- package/src/task/tasks.controller.spec.js +236 -0
- package/src/task/tasks.html +204 -0
- package/src/task/tasks.less +115 -0
- package/src/task/verification/UserVerification.tsx +58 -0
- package/src/task/verification/index.ts +1 -0
- package/src/task/verification/userVerification.directive.html +18 -0
- package/src/task/verification/userVerification.directive.js +62 -0
- package/src/task/verification/userVerification.directive.less +23 -0
- package/src/task/verification/userVerification.directive.spec.js +119 -0
- package/src/types/index.d.ts +3 -0
- package/src/types/png.d.ts +4 -0
- package/src/types/promise.d.ts +148 -0
- package/src/types/svg.d.ts +6 -0
- package/src/utils/Logger.ts +56 -0
- package/src/utils/RenderWhenVisible.tsx +65 -0
- package/src/utils/SystemTimezone.tsx +10 -0
- package/src/utils/TimePickerOptions.ts +30 -0
- package/src/utils/angular-messages.d.ts +3 -0
- package/src/utils/angular-sanitize.d.ts +3 -0
- package/src/utils/angular-spinner.d.ts +5 -0
- package/src/utils/clipboard/CopyToClipboard.less +15 -0
- package/src/utils/clipboard/CopyToClipboard.spec.tsx +46 -0
- package/src/utils/clipboard/CopyToClipboard.tsx +147 -0
- package/src/utils/clipboard/copyTextToClipboard.ts +10 -0
- package/src/utils/clipboard/copyToClipboard.component.ts +19 -0
- package/src/utils/consoleDebug.ts +45 -0
- package/src/utils/debug.ts +62 -0
- package/src/utils/failedToInstantiateModule.ts +12 -0
- package/src/utils/feature/Feature.tsx +98 -0
- package/src/utils/feature/FeatureContext.tsx +49 -0
- package/src/utils/feature/index.ts +3 -0
- package/src/utils/feature/useFeature.hook.tsx +25 -0
- package/src/utils/firstDefined.ts +6 -0
- package/src/utils/index.ts +24 -0
- package/src/utils/infiniteScroll.directive.js +79 -0
- package/src/utils/json/DiffView.less +82 -0
- package/src/utils/json/DiffView.tsx +54 -0
- package/src/utils/json/JsonUtils.ts +129 -0
- package/src/utils/json/diffView.component.ts +8 -0
- package/src/utils/json/filterObjectValues.spec.ts +42 -0
- package/src/utils/json/filterObjectValues.ts +25 -0
- package/src/utils/json/json.utility.service.spec.ts +39 -0
- package/src/utils/json/traverseObject.spec.ts +112 -0
- package/src/utils/json/traverseObject.ts +59 -0
- package/src/utils/later/later.d.ts +1 -0
- package/src/utils/later/later.js +1837 -0
- package/src/utils/noop.ts +3 -0
- package/src/utils/parseNum.ts +2 -0
- package/src/utils/q.ts +13 -0
- package/src/utils/renderIfFeature.component.ts +23 -0
- package/src/utils/retryablePromise.ts +34 -0
- package/src/utils/scrollTo/scrollTo.service.ts +21 -0
- package/src/utils/selectOnDblClick.directive.ts +37 -0
- package/src/utils/testUtils/index.tsx +30 -0
- package/src/utils/timeFormatters.spec.ts +132 -0
- package/src/utils/timeFormatters.ts +99 -0
- package/src/utils/ui-select.d.ts +3 -0
- package/src/utils/uibModalRejections.ts +18 -0
- package/src/utils/unicodeBase64.ts +9 -0
- package/src/utils/utils.module.js +25 -0
- package/src/utils/uuid.service.spec.ts +45 -0
- package/src/utils/uuid.service.ts +30 -0
- package/src/utils/waypoints/waypoint.directive.js +18 -0
- package/src/utils/waypoints/waypoint.service.ts +78 -0
- package/src/utils/waypoints/waypointContainer.directive.js +23 -0
- package/src/utils/workerPool.spec.ts +143 -0
- package/src/utils/workerPool.ts +66 -0
- package/src/validation/triggerValidation.directive.js +22 -0
- package/src/validation/validateUnique.directive.js +36 -0
- package/src/validation/validateUnique.directive.spec.js +110 -0
- package/src/validation/validation.module.js +15 -0
- package/src/validation/validationError.directive.js +15 -0
- package/src/validation/validationError.html +1 -0
- package/src/widgets/AccountRegionClusterSelector.tsx +13 -0
- package/src/widgets/ApplicationsPickerInput.spec.tsx +37 -0
- package/src/widgets/ApplicationsPickerInput.tsx +38 -0
- package/src/widgets/Keys.ts +33 -0
- package/src/widgets/ScopeClusterSelector.tsx +78 -0
- package/src/widgets/accountNamespaceClusterSelector.component.html +31 -0
- package/src/widgets/accountNamespaceClusterSelector.component.js +101 -0
- package/src/widgets/accountRegionClusterSelector.component.html +43 -0
- package/src/widgets/accountRegionClusterSelector.component.js +133 -0
- package/src/widgets/accountRegionClusterSelectorWrapper.component.ts +31 -0
- package/src/widgets/actionIcons/actionIcons.component.html +10 -0
- package/src/widgets/actionIcons/actionIcons.component.js +16 -0
- package/src/widgets/cluster/ClusterMatches.tsx +30 -0
- package/src/widgets/cluster/clusterMatches.component.ts +17 -0
- package/src/widgets/index.ts +10 -0
- package/src/widgets/notifier/Notifier.tsx +9 -0
- package/src/widgets/notifier/notifier.component.less +32 -0
- package/src/widgets/notifier/notifier.service.ts +24 -0
- package/src/widgets/scopeClusterSelector.directive.html +32 -0
- package/src/widgets/scopeClusterSelector.directive.js +52 -0
- package/src/widgets/spelText/JsonListBuilder.spec.ts +113 -0
- package/src/widgets/spelText/JsonListBuilder.ts +61 -0
- package/src/widgets/spelText/SpelAutocompleteService.spec.ts +92 -0
- package/src/widgets/spelText/SpelAutocompleteService.ts +440 -0
- package/src/widgets/spelText/SpelNumberInput.tsx +102 -0
- package/src/widgets/spelText/SpelText.tsx +95 -0
- package/src/widgets/spelText/spel.less +160 -0
- package/src/widgets/spelText/spelAutocomplete.service.js +20 -0
- package/src/widgets/spelText/spelSelect.component.js +85 -0
- package/src/widgets/spelText/spelText.decorator.js +77 -0
- package/src/widgets/spinners/Spinner.tsx +66 -0
- package/src/widgets/spinners/loadingIndicator.svg +76 -0
- package/src/widgets/spinners/spinner.component.ts +12 -0
- package/src/widgets/tags/Tag.spec.tsx +89 -0
- package/src/widgets/tags/Tag.tsx +83 -0
- package/src/widgets/tags/TagList.spec.tsx +28 -0
- package/src/widgets/tags/TagList.tsx +125 -0
- package/src/widgets/tags/index.ts +2 -0
- package/src/widgets/tags/taglist.less +40 -0
- package/src/widgets/widgets.module.ts +20 -0
- package/src/yamlEditor/YamlEditor.tsx +84 -0
- package/src/yamlEditor/index.ts +3 -0
- package/src/yamlEditor/yamlEditor.component.ts +11 -0
- package/src/yamlEditor/yamlEditorUtils.spec.ts +107 -0
- package/src/yamlEditor/yamlEditorUtils.ts +23 -0
|
@@ -0,0 +1,1694 @@
|
|
|
1
|
+
{
|
|
2
|
+
"IcoMoonType": "selection",
|
|
3
|
+
"icons": [
|
|
4
|
+
{
|
|
5
|
+
"icon": {
|
|
6
|
+
"paths": [
|
|
7
|
+
"M987.429 256l-219.429 402.286h438.857zM256 256l-219.429 402.286h438.857zM725.143 146.286c-10.857 30.857-36 56-66.857 66.857v737.714h347.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-768c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h347.429v-737.714c-30.857-10.857-56-36-66.857-66.857h-280.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h280.571c15.429-42.857 55.429-73.143 103.429-73.143s88 30.286 103.429 73.143h280.571c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-280.571zM621.714 155.429c25.143 0 45.714-20.571 45.714-45.714s-20.571-45.714-45.714-45.714-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714zM1243.429 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420v0zM512 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420z"
|
|
8
|
+
],
|
|
9
|
+
"attrs": [{}],
|
|
10
|
+
"width": 1243,
|
|
11
|
+
"isMulticolor": false,
|
|
12
|
+
"isMulticolor2": false,
|
|
13
|
+
"grid": 0,
|
|
14
|
+
"tags": ["balance-scale"]
|
|
15
|
+
},
|
|
16
|
+
"attrs": [{}],
|
|
17
|
+
"properties": { "order": 88, "id": 87, "name": "balance-scale", "prevSize": 32, "code": 59734 },
|
|
18
|
+
"setIdx": 0,
|
|
19
|
+
"setId": 1,
|
|
20
|
+
"iconIdx": 0
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"icon": {
|
|
24
|
+
"paths": [
|
|
25
|
+
"M938.368 288c0.005 0 0.011 0 0.017 0 11.782 0 21.333-9.551 21.333-21.333 0-4.659-1.494-8.97-4.028-12.479l0.043 0.063-153.6-215.040c-7.834-10.878-20.463-17.877-34.727-17.877-0.016 0-0.033 0-0.049 0l-223.357-0c-11.782 0-21.333 9.551-21.333 21.333v0 224c0 11.782 9.551 21.333 21.333 21.333v0z",
|
|
26
|
+
"M42.667 352c-11.782 0-21.333 9.551-21.333 21.333v0 586.667c0 23.564 19.103 42.667 42.667 42.667v0h896c23.564 0 42.667-19.103 42.667-42.667v0-586.667c0-11.782-9.551-21.333-21.333-21.333v0zM533.333 768c0-11.782 9.551-21.333 21.333-21.333v0h298.667c11.782 0 21.333 9.551 21.333 21.333v0 85.333c0 11.782-9.551 21.333-21.333 21.333v0h-298.667c-11.782 0-21.333-9.551-21.333-21.333v0z",
|
|
27
|
+
"M458.667 42.667c0-11.782-9.551-21.333-21.333-21.333v0h-180.693c-0.014-0-0.030-0-0.047-0-14.264 0-26.893 6.999-34.64 17.751l-0.087 0.126-153.6 215.040c-2.492 3.446-3.985 7.757-3.985 12.416 0 11.782 9.551 21.333 21.333 21.333 0.006 0 0.012-0 0.018-0l351.7 0c11.782 0 21.333-9.551 21.333-21.333v0z"
|
|
28
|
+
],
|
|
29
|
+
"attrs": [{}, {}, {}],
|
|
30
|
+
"isMulticolor": false,
|
|
31
|
+
"isMulticolor2": false,
|
|
32
|
+
"grid": 0,
|
|
33
|
+
"tags": ["ci-build"]
|
|
34
|
+
},
|
|
35
|
+
"attrs": [{}, {}, {}],
|
|
36
|
+
"properties": { "order": 87, "id": 86, "name": "ci-build", "prevSize": 32, "code": 59729 },
|
|
37
|
+
"setIdx": 0,
|
|
38
|
+
"setId": 1,
|
|
39
|
+
"iconIdx": 1
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"icon": {
|
|
43
|
+
"paths": [
|
|
44
|
+
"M514.339 0c93.165 1.128 168.256 76.915 168.256 170.241 0 72.289-45.054 134.056-108.614 158.752l-1.161 0.397c-3.097 1.343-6.837 2.609-10.693 3.583l-0.531 0.114c-5.619 1.155-6.955 4.322-6.939 9.754 0.179 59.553 0.116 119.107 0.128 178.661 0.009 52.682 0.147 105.364-0.106 158.045-0.089 0.51-0.14 1.097-0.14 1.696 0 5.083 3.656 9.312 8.481 10.201l0.064 0.010c56.651 17.244 99.836 62.334 114.080 118.926l0.245 1.15c3.52 12.439 5.544 26.724 5.544 41.481 0 15.776-2.313 31.012-6.618 45.388l0.288-1.118c-13.584 51.845-50.166 93.099-97.907 112.826l-1.108 0.405c-19.073 8.589-41.347 13.593-64.79 13.593-16.095 0-31.64-2.359-46.306-6.75l1.141 0.293c-51.387-13.59-92.303-49.775-112.101-97.004l-0.409-1.099c-8.666-18.991-13.717-41.192-13.717-64.572 0-7.562 0.528-15 1.55-22.28l-0.096 0.839c6.788-60.62 45.085-110.927 97.911-134.636l1.059-0.425c5.894-2.872 12.87-5.51 20.108-7.524l0.893-0.212c5.248-1.483 6.608-4.243 6.58-9.364-0.183-34.357-0.095-68.716-0.095-103.073 0-78.086-0.1-156.173 0.176-234.258 0.060-0.419 0.094-0.904 0.094-1.396 0-5.189-3.809-9.488-8.783-10.255l-0.058-0.007c-49.286-14.94-88.085-50.972-106.484-97.321l-0.391-1.115c-7.699-18.74-12.169-40.493-12.169-63.289 0-94.257 76.41-170.667 170.667-170.667 0.686 0 1.37 0.004 2.054 0.012l-0.104-0.001z"
|
|
45
|
+
],
|
|
46
|
+
"attrs": [{}],
|
|
47
|
+
"isMulticolor": false,
|
|
48
|
+
"isMulticolor2": false,
|
|
49
|
+
"grid": 0,
|
|
50
|
+
"tags": ["ci-master"]
|
|
51
|
+
},
|
|
52
|
+
"attrs": [{}],
|
|
53
|
+
"properties": { "order": 84, "id": 84, "name": "ci-master", "prevSize": 32, "code": 59730 },
|
|
54
|
+
"setIdx": 0,
|
|
55
|
+
"setId": 1,
|
|
56
|
+
"iconIdx": 2
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"icon": {
|
|
60
|
+
"paths": [
|
|
61
|
+
"M938.667 170.667c0.001-0.182 0.001-0.398 0.001-0.614 0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667c0 79.094 53.804 145.621 126.808 164.979l1.191 0.269v48.701c0 73-53.248 85.333-213.333 85.333-11.143-0.825-24.139-1.295-37.245-1.295-63.045 0-123.549 10.876-179.74 30.853l3.75-1.163q0.008-77.44-0.109-154.891c-0.016-5.432 1.32-8.599 6.94-9.753 4.388-1.090 8.128-2.357 11.727-3.89l-0.503 0.19c64.402-25.227 109.18-86.822 109.18-158.876 0-93.991-76.195-170.186-170.186-170.186s-170.186 76.195-170.186 170.186c0 22.854 4.505 44.655 12.674 64.565l-0.412-1.134c18.79 47.465 57.589 83.498 105.707 98.133l1.168 0.306c5.032 0.775 8.841 5.074 8.841 10.263 0 0.492-0.034 0.976-0.1 1.45l0.006-0.055c-0.276 78.083-0.175 156.172-0.177 234.258q0 30.398 0.057 60.797l-0.059 0.906h0.060c0.010 13.789-0.034 27.581 0.039 41.37 0.026 5.12-1.333 7.883-6.581 9.364-8.13 2.225-15.106 4.863-21.761 8.064l0.761-0.33c-53.885 24.134-92.182 74.44-98.902 134.299l-0.069 0.761c-0.925 6.441-1.453 13.878-1.453 21.44 0 23.381 5.051 45.581 14.121 65.571l-0.405-0.997c20.207 48.329 61.124 84.514 111.349 97.842l1.163 0.263c13.525 4.097 29.069 6.456 45.164 6.456 23.443 0 45.718-5.004 65.814-14.003l-1.022 0.409c48.846-20.132 85.427-61.384 98.752-112.066l0.26-1.162c4.017-13.256 6.329-28.49 6.329-44.265 0-14.759-2.024-29.046-5.81-42.597l0.265 1.111c-14.489-57.74-57.673-102.83-113.142-119.766l-1.181-0.31c-4.889-0.898-8.545-5.127-8.545-10.209 0-0.599 0.051-1.187 0.148-1.758l-0.009 0.061c0.065-13.432 0.005-26.867 0.026-40.3 0.384-72.298 53.814-84.582 213.296-84.582 126.042 0 298.667 0 298.667-170.667v-48.701c74.073-19.449 127.852-85.74 128-164.616l0-0.017z"
|
|
62
|
+
],
|
|
63
|
+
"attrs": [{}],
|
|
64
|
+
"isMulticolor": false,
|
|
65
|
+
"isMulticolor2": false,
|
|
66
|
+
"grid": 0,
|
|
67
|
+
"tags": ["ci-branch"]
|
|
68
|
+
},
|
|
69
|
+
"attrs": [{}],
|
|
70
|
+
"properties": { "order": 85, "id": 85, "name": "ci-branch", "prevSize": 32, "code": 59731 },
|
|
71
|
+
"setIdx": 0,
|
|
72
|
+
"setId": 1,
|
|
73
|
+
"iconIdx": 3
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"icon": {
|
|
77
|
+
"paths": [
|
|
78
|
+
"M872.557 469.315c-34.357 0-154.049-0.089-188.406 0.094-0.411 0.075-0.885 0.118-1.368 0.118-3.867 0-7.092-2.748-7.829-6.398l-0.009-0.051c-2.413-8.040-4.959-14.726-7.912-21.186l0.42 1.025c-0.164-0.349-0.232-0.742-0.401-1.088l-0.396-0.633c-6.663-14.909-14.743-27.76-24.352-39.291l0.217 0.268c-7.934-9.124-16.582-17.239-25.985-24.415l-0.422-0.309c-2.406-1.891-4.878-3.693-7.391-5.44-25.675-18.105-57.4-29.258-91.68-30.139l-0.216-0.004c-3.888-0.154-7.768-0.25-11.617-0.122-2.763 0.125-5.504 0.346-8.271 0.609-7.135 0.63-13.552 1.618-19.829 2.982l1.032-0.188c-1.789 0.375-3.57 0.719-5.357 1.156-7.846 1.968-14.383 4.096-20.727 6.606l1.118-0.39c-1.411 0.531-2.862 0.781-4.267 1.352-0.409 0.167-0.716 0.43-1.123 0.597-0.597 0.253-1.213 0.393-1.81 0.654-3.662 1.599-6.557 3.885-10.034 5.649-8.928 4.214-16.468 8.529-23.635 13.355l0.633-0.401c-4.206 2.953-7.601 6.62-11.453 9.885-5.609 4.466-10.623 9.017-15.328 13.869l-0.039 0.040c-5.792 6.644-11.178 13.99-15.92 21.772l-0.401 0.707c-1.373 2.203-3.084 4.091-4.364 6.38-5.049 8.912-9.68 19.301-13.313 30.148l-0.372 1.279c-0.354 1.041-0.939 1.883-1.28 2.938-0.773 5.032-5.072 8.841-10.26 8.841-0.493 0-0.978-0.034-1.453-0.101l0.055 0.006c-56.047-0.195-154.766-0.138-210.816-0.125v85.388c56.448-0.005 155.565 0.049 212.016-0.117 5.149-0.018 8.117 1.448 9.411 6.357 1.908 6.824 3.813 12.341 5.988 17.72l-0.403-1.126c2.195 5.086 5.268 9.216 7.784 13.952 3.083 6.279 5.997 11.423 9.165 16.39l-0.405-0.679c4.138 5.914 8.232 11.062 12.609 15.951l-0.14-0.159c3.115 3.609 6.12 7.258 9.508 10.568 5.004 4.862 10.371 9.428 16.027 13.625l0.426 0.302c4.036 3.047 8.146 5.854 12.425 8.524 4.21 2.702 9.278 5.566 14.499 8.166l0.977 0.441c6.259 3.098 13.822 6.144 21.629 8.646l1.214 0.336c2.622 0.847 4.807 2.2 7.509 2.953 1.513 0.422 3.034 0.591 4.55 0.972 2.5 0.609 4.984 1.107 7.509 1.604 9.777 2.164 21.006 3.403 32.525 3.403 9.632 0 19.061-0.867 28.215-2.526l-0.958 0.144c2.414-0.399 4.786-0.945 7.193-1.453 2.234-0.512 4.487-0.739 6.716-1.359 2.159-0.597 3.836-1.721 5.943-2.378 6.813-1.624 12.392-3.316 17.836-5.289l-1.135 0.36c6.899-2.999 12.539-5.883 17.986-9.061l-0.809 0.436c0.721-0.384 1.498-0.716 2.214-1.112 11.167-6.468 20.829-13.554 29.653-21.548l-0.145 0.129q3.301-2.961 6.435-6.094c19.746-19.495 34.771-43.725 43.236-70.85l0.327-1.214c1.581-3.661 5.16-6.176 9.326-6.176 0.393 0 0.782 0.022 1.163 0.066l-0.047-0.004c41.565 0.201 168.461 0.115 210.026 0.085v-85.402c-7.81 0.003-15.622-0.018-23.438-0.018zM512 597.419c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333v0c0 47.128-38.205 85.333-85.333 85.333v0z"
|
|
79
|
+
],
|
|
80
|
+
"attrs": [{}],
|
|
81
|
+
"isMulticolor": false,
|
|
82
|
+
"isMulticolor2": false,
|
|
83
|
+
"grid": 0,
|
|
84
|
+
"tags": ["ci-commit"]
|
|
85
|
+
},
|
|
86
|
+
"attrs": [{}],
|
|
87
|
+
"properties": { "order": 83, "id": 83, "name": "ci-commit", "prevSize": 32, "code": 59732 },
|
|
88
|
+
"setIdx": 0,
|
|
89
|
+
"setId": 1,
|
|
90
|
+
"iconIdx": 4
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"icon": {
|
|
94
|
+
"paths": [
|
|
95
|
+
"M173.005 0c93.165 1.128 168.256 76.915 168.256 170.241 0 72.289-45.054 134.056-108.614 158.752l-1.161 0.397c-3.097 1.343-6.837 2.609-10.693 3.583l-0.531 0.114c-5.619 1.155-6.955 4.322-6.939 9.754 0.179 59.553 0.116 119.107 0.126 178.661 0.009 52.682 0.147 105.364-0.106 158.045-0.089 0.51-0.14 1.097-0.14 1.696 0 5.083 3.656 9.312 8.481 10.201l0.064 0.010c56.651 17.244 99.836 62.334 114.080 118.926l0.245 1.15c3.521 12.44 5.545 26.726 5.545 41.485 0 15.775-2.312 31.010-6.616 45.384l0.288-1.118c-13.584 51.845-50.166 93.099-97.907 112.826l-1.108 0.405c-19.073 8.589-41.347 13.593-64.79 13.593-16.095 0-31.64-2.359-46.306-6.75l1.141 0.293c-51.387-13.59-92.303-49.775-112.101-97.004l-0.409-1.099c-8.666-18.991-13.717-41.192-13.717-64.572 0-7.562 0.528-15 1.55-22.28l-0.096 0.839c6.788-60.62 45.085-110.927 97.911-134.636l1.059-0.425c5.894-2.872 12.87-5.51 20.108-7.524l0.893-0.212c5.248-1.483 6.608-4.243 6.58-9.364-0.183-34.357-0.095-68.716-0.095-103.073 0-78.086-0.1-156.173 0.176-234.258 0.060-0.419 0.094-0.904 0.094-1.396 0-5.189-3.809-9.488-8.783-10.255l-0.058-0.007c-49.286-14.94-88.085-50.972-106.484-97.321l-0.391-1.115c-7.911-18.869-12.508-40.797-12.508-63.799 0-52.050 23.535-98.603 60.545-129.597l0.264-0.215c29.5-25.087 68.036-40.346 110.135-40.346 0.707 0 1.414 0.004 2.119 0.013l-0.107-0.001z",
|
|
96
|
+
"M574.357 214.272l66.508 64.887c-3.037 3.464-4.407 5.21-5.963 6.772-16.75 16.803-33.621 33.484-50.229 50.428-3.797 3.873-6.249 3.947-10.135 0.043q-67.147-67.466-134.535-134.695c-8.308-7.736-13.489-18.736-13.489-30.946 0-12.203 5.174-23.197 13.448-30.909l0.025-0.023q67.217-67.413 134.51-134.749c3.808-3.828 6.262-4.005 10.121-0.069 16.905 17.242 34.086 34.214 51.145 51.306 1.158 1.161 2.13 2.506 3.72 4.397l-66.241 66.49c4.576 0.365 7.165 0.75 9.754 0.751q67.157 0.029 134.318-0.032c1.533-0.047 3.336-0.073 5.145-0.073 25.397 0 49.57 5.235 71.501 14.685l-1.174-0.45c44.349 19.363 78.19 55.816 93.646 100.815l0.356 1.194c5.796 16.67 9.143 35.883 9.143 55.879 0 1.075-0.010 2.148-0.029 3.218l0.002-0.161q0.149 188.045-0.125 376.090c-0.103 0.556-0.161 1.195-0.161 1.849 0 5.232 3.766 9.583 8.735 10.492l0.065 0.010c45.438 13.887 81.805 45.524 101.679 86.625l0.431 0.988c11.028 21.335 17.494 46.57 17.494 73.314 0 16.274-2.394 31.99-6.85 46.813l0.297-1.15c-13.625 51.607-50.175 92.624-97.814 112.114l-1.107 0.401c-19.027 8.511-41.235 13.468-64.601 13.468-16.165 0-31.776-2.372-46.503-6.788l1.144 0.295c-51.588-13.664-92.615-50.13-112.261-97.678l-0.405-1.106c-8.529-18.976-13.498-41.133-13.498-64.45 0-12.467 1.42-24.601 4.108-36.252l-0.21 1.082c11.054-54.466 47.354-98.612 95.885-120.315l1.061-0.424c5.831-2.83 12.79-5.501 19.992-7.602l0.977-0.244c3.668-0.642 6.421-3.803 6.421-7.607 0-0.472-0.042-0.935-0.124-1.384l0.007 0.047c-0.128-35.401-0.031-70.803-0.028-106.204q0.010-137.131 0.023-274.258c0.026-0.781 0.041-1.699 0.041-2.621 0-26.297-11.984-49.796-30.788-65.332l-0.143-0.115c-14.085-12.15-32.564-19.549-52.772-19.549-0.209 0-0.417 0.001-0.626 0.002l0.032-0c-48.519-0.132-97.038-0.062-145.557-0.034-2.405 0.164-4.589 0.437-6.733 0.824l0.367-0.055z"
|
|
97
|
+
],
|
|
98
|
+
"attrs": [{}, {}],
|
|
99
|
+
"isMulticolor": false,
|
|
100
|
+
"isMulticolor2": false,
|
|
101
|
+
"grid": 0,
|
|
102
|
+
"tags": ["ci-pr"]
|
|
103
|
+
},
|
|
104
|
+
"attrs": [{}, {}],
|
|
105
|
+
"properties": { "order": 82, "id": 82, "name": "ci-pr", "prevSize": 32, "code": 59733 },
|
|
106
|
+
"setIdx": 0,
|
|
107
|
+
"setId": 1,
|
|
108
|
+
"iconIdx": 5
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"icon": {
|
|
112
|
+
"paths": [
|
|
113
|
+
"M512 354.56c0.050-0 0.11-0 0.169-0 13.53 0 25.579 6.338 33.341 16.208l0.069 0.091 425.429 541.483c5.692 7.184 9.131 16.378 9.131 26.375 0 23.56-19.099 42.659-42.659 42.659-0.003 0-0.005-0-0.008-0l-850.858-0.128c-23.553-0.002-42.645-19.095-42.645-42.648 0-9.984 3.431-19.166 9.177-26.433l-0.068 0.089 425.429-541.397c2.122-2.691 4.477-5.046 7.079-7.1l0.089-0.068c7.172-5.68 16.346-9.117 26.322-9.131l0.003-0zM512.043 397.227l-425.429 541.355 850.859 0.085zM512 13.227c0.048-0 0.104-0 0.16-0 13.524 0 25.571 6.32 33.35 16.167l0.068 0.089 425.557 541.483c5.692 7.184 9.131 16.378 9.131 26.375 0 23.56-19.099 42.659-42.659 42.659-0.003 0-0.005-0-0.008-0l-105.557 0c-11.782 0-21.333-9.551-21.333-21.333s9.551-21.333 21.333-21.333v0h105.557l-425.557-541.483-425.429 541.397h105.429c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333v0h-105.429c-23.553-0.002-42.645-19.095-42.645-42.648 0-9.984 3.431-19.166 9.177-26.433l-0.068 0.089 425.429-541.397c2.122-2.691 4.477-5.046 7.079-7.1l0.089-0.068c7.172-5.68 16.346-9.117 26.322-9.131l0.003-0z"
|
|
114
|
+
],
|
|
115
|
+
"attrs": [{}],
|
|
116
|
+
"isMulticolor": false,
|
|
117
|
+
"isMulticolor2": false,
|
|
118
|
+
"grid": 0,
|
|
119
|
+
"tags": ["update"]
|
|
120
|
+
},
|
|
121
|
+
"attrs": [{}],
|
|
122
|
+
"properties": { "order": 17, "id": 81, "name": "update", "prevSize": 32, "code": 59715 },
|
|
123
|
+
"setIdx": 0,
|
|
124
|
+
"setId": 1,
|
|
125
|
+
"iconIdx": 6
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"icon": {
|
|
129
|
+
"paths": [
|
|
130
|
+
"M197.987 39.188c48.918 0.023 88.566 39.685 88.566 88.606 0 14.075-3.282 27.384-9.122 39.203l0.232-0.518 78.809 78.73c43.551-30.177 97.512-48.207 155.684-48.207 58.074 0 111.952 17.969 156.375 48.651l-0.921-0.602 78.769-78.651c-5.451-11.168-8.638-24.3-8.638-38.176 0-48.977 39.704-88.681 88.681-88.681 24.498 0 46.676 9.934 62.726 25.993l0 0 69.553 69.475c16.207 16.072 26.24 38.347 26.24 62.965 0 48.969-39.697 88.666-88.666 88.666-14.025 0-27.289-3.256-39.078-9.054l0.521 0.232-90.505 90.427c12.954 30.728 20.48 66.45 20.48 103.931 0 0.182-0 0.364-0.001 0.546l0-0.028c-0.146 58.099-18.12 111.97-48.737 156.467l0.609-0.937 118.115 118.233c11.158-5.483 24.285-8.693 38.16-8.704l0.004-0c4.481 0.008 8.878 0.337 13.177 0.965l-0.495-0.059c24.013 3.447 44.542 16.152 58.206 34.315l0.162 0.226c11.010 14.647 17.631 33.139 17.631 53.177 0 24.535-9.927 46.751-25.983 62.851l0.002-0.002-69.475 69.553c-15.87 16.167-37.925 26.216-62.328 26.309l-0.018 0h-0.709v-0.039c-0.001 0-0.003 0-0.005 0-48.941 0-88.615-39.674-88.615-88.615 0-14.087 3.287-27.407 9.136-39.234l-0.232 0.518-57.187-57.226c-14.437 16.382-35.466 26.663-58.896 26.663-0.022 0-0.044-0-0.066-0l0.003 0c-23.485-0.084-44.55-10.373-59.006-26.66l-0.071-0.082c-14.482 16.431-35.575 26.742-59.077 26.742s-44.595-10.311-59.003-26.656l-0.074-0.086c-14.537 16.355-35.596 26.639-59.059 26.742l-0.018 0c-0.028 0-0.061 0-0.094 0-23.373 0-44.356-10.232-58.714-26.462l-0.072-0.083-57.264 57.108c5.6 11.295 8.877 24.595 8.877 38.662 0 48.949-39.681 88.629-88.629 88.629-24.706 0-47.051-10.109-63.124-26.416l-0.010-0.011-69.435-69.514c-16.098-16.051-26.059-38.25-26.059-62.775 0-44.537 32.846-81.402 75.635-87.695l0.482-0.058c3.804-0.568 8.201-0.897 12.673-0.906l0.009-0c13.879 0.006 27.006 3.217 38.684 8.934l-0.52-0.23 118.154-118.272c-29.95-43.542-47.913-97.358-48.128-155.358l-0-0.054c-0-0.093-0-0.203-0-0.312 0-37.517 7.556-73.27 21.23-105.818l-0.671 1.801-90.545-90.545c-11.284 5.566-24.565 8.822-38.607 8.822-24.72 0-47.083-10.092-63.195-26.38l-0.008-0.008c-15.757-15.98-25.488-37.938-25.488-62.169 0-24.7 10.112-47.039 26.421-63.103l0.011-0.011 69.475-69.475c15.945-16.219 38.121-26.27 62.644-26.27 0.145 0 0.289 0 0.434 0.001l-0.022-0zM309.091 659.22l-125.795 125.913c-3.58 3.554-8.511 5.75-13.956 5.75-4.445 0-8.548-1.464-11.854-3.936l0.052 0.037c-8.069-6.146-18.289-9.846-29.374-9.846-0.030 0-0.060 0-0.090 0l0.005-0c-0.043-0-0.094-0-0.145-0-2.437 0-4.83 0.186-7.166 0.545l0.261-0.033c-13.335 1.912-24.737 8.967-32.323 19.055l-0.090 0.125c-6.117 8.132-9.796 18.4-9.796 29.528 0 13.629 5.519 25.968 14.444 34.906l69.553 69.631c8.943 9.141 21.404 14.809 35.189 14.809 27.179 0 49.213-22.033 49.213-49.213 0-11.252-3.776-21.621-10.13-29.911l0.087 0.118c-2.491-3.274-3.99-7.42-3.99-11.916 0-5.448 2.201-10.382 5.763-13.96l-0.001 0.001 77.627-77.43c-0.937-4.505-1.481-9.687-1.497-14.993l-0-0.012v-82.787c-1.969-2.048-3.978-4.135-5.986-6.38zM714.949 659.18q-3.013 3.308-6.026 6.38v82.747c-0.001 5.227-0.531 10.329-1.541 15.257l0.083-0.488 77.588 77.706c3.548 3.567 5.741 8.485 5.741 13.915 0 4.5-1.506 8.649-4.042 11.969l0.035-0.048c-6.243 8.17-10.003 18.528-10.003 29.764 0 13.716 5.603 26.123 14.645 35.058l0.005 0.005c9.053 8.772 21.41 14.179 35.031 14.179 0.021 0 0.043-0 0.064-0l-0.003 0c13.54-0.109 25.751-5.71 34.532-14.682l0.008-0.009 69.632-69.711c8.938-8.948 14.465-21.304 14.465-34.95 0-11.123-3.672-21.389-9.87-29.65l0.092 0.128c-7.677-10.213-19.078-17.269-32.151-19.149l-0.262-0.031c-2.083-0.326-4.486-0.512-6.932-0.512-0.041 0-0.083 0-0.124 0l0.006-0c-11.113 0-21.361 3.7-29.581 9.935l0.122-0.089c-3.256 2.459-7.371 3.939-11.831 3.939-5.435 0-10.357-2.197-13.927-5.751l0.001 0.001zM512 236.387c-130.511 0.009-236.307 105.811-236.307 236.323 0 66.975 27.861 127.442 72.624 170.445l0.079 0.076c3.74 3.575 6.065 8.604 6.065 14.176 0 0.001-0 0.002-0 0.003l0-0v90.979c0.052 4.899 1.002 9.562 2.691 13.852l-0.092-0.264 0.039 0.157c5.709 15.099 20.044 25.64 36.842 25.64 21.699 0 39.289-17.59 39.289-39.289 0-0.034-0-0.068-0-0.102l0 0.005c0-10.876 8.817-19.692 19.692-19.692s19.692 8.817 19.692 19.692v-0c-0 0.038-0 0.084-0 0.13 0 21.752 17.633 39.385 39.385 39.385s39.385-17.633 39.385-39.385c0-0.046-0-0.091-0-0.137l0 0.007c0-10.876 8.817-19.692 19.692-19.692s19.692 8.817 19.692 19.692v-0c-0 0.038-0 0.084-0 0.13 0 21.752 17.633 39.385 39.385 39.385s39.385-17.633 39.385-39.385c0-0.046-0-0.091-0-0.137l0 0.007v-90.979c-0-0.005-0-0.011-0-0.017 0-5.587 2.341-10.627 6.096-14.193l0.008-0.008c44.823-43.152 72.665-103.67 72.665-170.69 0-36.482-8.25-71.037-22.985-101.902l0.614 1.429-0.512-1.181c-39.107-80.108-119.919-134.342-213.409-134.459l-0.016-0zM512 602.703c24.342 0.492 45.232 14.783 55.212 35.349l0.163 0.373c2.151 3.131 3.435 7.004 3.435 11.177 0 6.797-3.407 12.798-8.607 16.388l-0.067 0.043c-3.138 2.1-6.992 3.361-11.139 3.387l-0.007 0c-0.004 0-0.009 0-0.014 0-6.643 0-12.496-3.381-15.933-8.516l-0.044-0.069c-10.713-16.029-13.312-18.787-23.001-18.787-9.531 0-11.894 1.93-22.922 18.668-1.782 2.696-4.801 4.45-8.228 4.45-2.009 0-3.878-0.603-5.435-1.637l0.036 0.023-16.463-10.791c-2.152-1.414-3.696-3.601-4.242-6.159l-0.011-0.064c-0.138-0.611-0.217-1.313-0.217-2.034 0-2.003 0.611-3.863 1.656-5.404l-0.022 0.034c9.962-21.417 31.151-36.074 55.801-36.43l0.046-0.001zM393.846 393.925c43.503 0 78.769 35.266 78.769 78.769s-35.266 78.769-78.769 78.769c-43.503 0-78.769-35.266-78.769-78.769v-0c0.045-43.485 35.284-78.724 78.765-78.769l0.004-0zM630.154 393.925c43.503 0 78.769 35.266 78.769 78.769s-35.266 78.769-78.769 78.769c-43.503 0-78.769-35.266-78.769-78.769v-0c0.045-43.485 35.284-78.724 78.765-78.769l0.004-0zM393.846 433.31c-21.752 0-39.385 17.633-39.385 39.385s17.633 39.385 39.385 39.385c21.752 0 39.385-17.633 39.385-39.385v0c-0.037-21.737-17.648-39.348-39.381-39.385l-0.004-0zM630.154 433.31c-21.752 0-39.385 17.633-39.385 39.385s17.633 39.385 39.385 39.385c21.752 0 39.385-17.633 39.385-39.385v0c-0.022-21.743-17.642-39.363-39.383-39.385l-0.002-0zM198.026 78.533c-0.061-0-0.134-0-0.207-0-13.673 0-26.036 5.606-34.917 14.644l-0.007 0.007-69.711 69.711c-9.101 8.94-14.741 21.376-14.741 35.13 0 27.189 22.041 49.231 49.231 49.231 11.23 0 21.582-3.76 29.866-10.090l-0.119 0.087c3.271-2.507 7.421-4.017 11.924-4.017 5.45 0 10.384 2.213 13.951 5.789l0 0 92.16 92.199c14.198-23.477 30.785-43.661 49.859-61.181l0.199-0.181-86.567-86.488c-3.569-3.565-5.776-8.491-5.776-13.934 0-4.494 1.505-8.636 4.039-11.95l-0.035 0.048c6.273-8.173 10.052-18.546 10.052-29.802 0-27.173-22.028-49.202-49.201-49.203l-0-0zM826.171 78.888c-27.139 0.007-49.136 22.009-49.136 49.148 0 11.143 3.709 21.421 9.959 29.665l-0.089-0.122c2.435 3.26 3.899 7.369 3.899 11.82 0 5.432-2.18 10.354-5.713 13.94l0.002-0.002-86.528 86.41c2.954 2.717 5.75 5.356 8.389 7.995 15.653 15.629 29.444 33.117 41.016 52.105l0.692 1.222 92.042-92.081c3.574-3.554 8.501-5.75 13.941-5.75 4.487 0 8.626 1.495 11.944 4.014l-0.049-0.036c8.176 6.269 18.55 10.046 29.807 10.046 27.194 0 49.24-22.045 49.24-49.24 0-13.731-5.62-26.149-14.686-35.080l-0.006-0.006-69.711-69.593c-8.884-8.929-21.181-14.455-34.769-14.455-0.086 0-0.172 0-0.258 0.001l0.013-0z"
|
|
131
|
+
],
|
|
132
|
+
"attrs": [{}],
|
|
133
|
+
"isMulticolor": false,
|
|
134
|
+
"isMulticolor2": false,
|
|
135
|
+
"grid": 0,
|
|
136
|
+
"tags": ["skull"]
|
|
137
|
+
},
|
|
138
|
+
"attrs": [{}],
|
|
139
|
+
"properties": { "order": 16, "id": 80, "name": "skull", "prevSize": 32, "code": 59716 },
|
|
140
|
+
"setIdx": 0,
|
|
141
|
+
"setId": 1,
|
|
142
|
+
"iconIdx": 7
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"icon": {
|
|
146
|
+
"paths": [
|
|
147
|
+
"M65.792 1024c-35.285 0-64-28.715-64-64v-896c0-35.285 28.715-64 64-64h567.168c17.024 0.128 33.579 7.125 45.397 19.2l157.995 157.696c12.117 12.117 18.773 28.16 18.773 45.269v140.501c0 11.776-9.557 21.333-21.333 21.333s-21.333-9.557-21.333-21.333v-140.501c0-5.675-2.219-11.051-6.229-15.061l-158.165-157.867c-4.096-4.181-9.6-6.528-15.232-6.571h-567.040c-11.776 0-21.333 9.557-21.333 21.333v896c0 11.776 9.557 21.333 21.333 21.333h384c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-384z",
|
|
148
|
+
"M279.125 576.171c-5.717 0-11.051-2.219-15.104-6.229l-128-128c-4.011-4.011-6.229-9.387-6.229-15.104s2.219-11.051 6.229-15.104l128-128c4.011-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.229 6.229 9.387 6.229 15.104-2.219 11.051-6.229 15.061l-112.896 112.896 112.896 112.896c4.011 4.011 6.229 9.387 6.229 15.104s-2.219 11.051-6.229 15.104-9.387 6.272-15.104 6.272z",
|
|
149
|
+
"M407.125 576.171c-5.717 0-11.051-2.219-15.104-6.229s-6.229-9.387-6.229-15.104 2.219-11.051 6.229-15.104l112.896-112.896-112.896-112.939c-4.011-4.011-6.229-9.387-6.229-15.104s2.219-11.008 6.229-15.061 9.387-6.229 15.104-6.229 11.051 2.219 15.104 6.229l128 128c4.011 4.011 6.229 9.387 6.229 15.104s-2.219 11.051-6.229 15.104l-128 128c-4.053 4.011-9.387 6.229-15.104 6.229z",
|
|
150
|
+
"M748.459 1024.171c-152.917 0-277.333-124.416-277.333-277.333s124.416-277.333 277.333-277.333 277.333 124.416 277.333 277.333-124.416 277.333-277.333 277.333zM748.459 512.171c-129.408 0-234.667 105.259-234.667 234.667s105.259 234.667 234.667 234.667 234.667-105.259 234.667-234.667-105.259-234.667-234.667-234.667z",
|
|
151
|
+
"M748.459 896.171c-11.776 0-21.333-9.557-21.333-21.333v-106.667h-106.667c-11.776 0-21.333-9.557-21.333-21.333s9.557-21.333 21.333-21.333h106.667v-106.667c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v106.667h106.667c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-106.667v106.667c0 11.776-9.557 21.333-21.333 21.333z"
|
|
152
|
+
],
|
|
153
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
154
|
+
"isMulticolor": false,
|
|
155
|
+
"isMulticolor2": false,
|
|
156
|
+
"grid": 0,
|
|
157
|
+
"tags": ["template-add"]
|
|
158
|
+
},
|
|
159
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
160
|
+
"properties": { "order": 14, "id": 78, "name": "template-add", "prevSize": 32, "code": 59717 },
|
|
161
|
+
"setIdx": 0,
|
|
162
|
+
"setId": 1,
|
|
163
|
+
"iconIdx": 8
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"icon": {
|
|
167
|
+
"paths": [
|
|
168
|
+
"M307.499 746.667l240.916-240.916c3.77-3.844 6.096-9.116 6.096-14.93 0-11.781-9.55-21.331-21.331-21.331-5.815 0-11.086 2.327-14.934 6.1l0.003-0.003-240.916 240.916-240.916-240.918c-3.844-3.77-9.116-6.096-14.93-6.096-11.781 0-21.331 9.55-21.331 21.331 0 5.815 2.327 11.086 6.1 14.934l-0.003-0.003 240.916 240.918-240.918 240.916c-3.952 3.875-6.401 9.269-6.401 15.235 0 11.781 9.55 21.331 21.331 21.331 5.966 0 11.36-2.449 15.232-6.397l0.003-0.003 240.918-240.916 240.916 240.916c3.844 3.77 9.116 6.096 14.93 6.096 11.781 0 21.331-9.55 21.331-21.331 0-5.815-2.327-11.086-6.1-14.934l0.003 0.003z"
|
|
169
|
+
],
|
|
170
|
+
"attrs": [{}],
|
|
171
|
+
"isMulticolor": false,
|
|
172
|
+
"isMulticolor2": false,
|
|
173
|
+
"grid": 0,
|
|
174
|
+
"tags": ["close-small"]
|
|
175
|
+
},
|
|
176
|
+
"attrs": [{}],
|
|
177
|
+
"properties": { "order": 13, "id": 77, "name": "close-small", "prevSize": 32, "code": 59718 },
|
|
178
|
+
"setIdx": 0,
|
|
179
|
+
"setId": 1,
|
|
180
|
+
"iconIdx": 9
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"icon": {
|
|
184
|
+
"paths": [
|
|
185
|
+
"M793.6 170.667h-558.933c-34.133 0-64 29.867-64 64v550.4c0 38.4 29.867 68.267 64 68.267h554.667c38.4 0 64-29.867 64-64v-554.667c4.267-34.133-25.6-64-59.733-64zM763.733 375.467l-273.067 324.267c-17.067 17.067-42.667 21.333-59.733 4.267l-162.133-136.533c-17.067-17.067-21.333-42.667-4.267-59.733s42.667-21.333 59.733-4.267l132.267 110.933 247.467-294.4c17.067-17.067 42.667-21.333 59.733-4.267 12.8 17.067 17.067 42.667 0 59.733z"
|
|
186
|
+
],
|
|
187
|
+
"attrs": [{}],
|
|
188
|
+
"isMulticolor": false,
|
|
189
|
+
"isMulticolor2": false,
|
|
190
|
+
"grid": 0,
|
|
191
|
+
"tags": ["checkbox-checked"]
|
|
192
|
+
},
|
|
193
|
+
"attrs": [{}],
|
|
194
|
+
"properties": { "order": 12, "id": 76, "name": "checkbox-checked", "prevSize": 32, "code": 59719 },
|
|
195
|
+
"setIdx": 0,
|
|
196
|
+
"setId": 1,
|
|
197
|
+
"iconIdx": 10
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"icon": {
|
|
201
|
+
"paths": [
|
|
202
|
+
"M793.6 170.667h-558.933c-34.133 0-64 29.867-64 64v550.4c0 38.4 29.867 68.267 64 68.267h554.667c38.4 0 64-29.867 64-64v-554.667c4.267-34.133-25.6-64-59.733-64zM725.333 512c0 21.333-17.067 42.667-42.667 42.667h-341.333c-21.333 0-42.667-17.067-42.667-42.667v0c0-21.333 17.067-42.667 42.667-42.667h341.333c25.6 0 42.667 17.067 42.667 42.667v0z"
|
|
203
|
+
],
|
|
204
|
+
"attrs": [{}],
|
|
205
|
+
"isMulticolor": false,
|
|
206
|
+
"isMulticolor2": false,
|
|
207
|
+
"grid": 0,
|
|
208
|
+
"tags": ["checkbox-indeterminate"]
|
|
209
|
+
},
|
|
210
|
+
"attrs": [{}],
|
|
211
|
+
"properties": { "order": 11, "id": 75, "name": "checkbox-indeterminate", "prevSize": 32, "code": 59720 },
|
|
212
|
+
"setIdx": 0,
|
|
213
|
+
"setId": 1,
|
|
214
|
+
"iconIdx": 11
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"icon": {
|
|
218
|
+
"paths": [
|
|
219
|
+
"M227.555 163.527h568.889c35.346 0 64 28.654 64 64v0 568.889c0 35.346-28.654 64-64 64v0h-568.889c-35.346 0-64-28.654-64-64v0-568.889c0-35.346 28.654-64 64-64v-0zM227.555 206.194c-11.782 0-21.333 9.551-21.333 21.333v0 568.889c0 11.782 9.551 21.333 21.333 21.333v0h568.889c11.782 0 21.333-9.551 21.333-21.333v0-568.889c0-11.782-9.551-21.333-21.333-21.333v0z"
|
|
220
|
+
],
|
|
221
|
+
"attrs": [{}],
|
|
222
|
+
"isMulticolor": false,
|
|
223
|
+
"isMulticolor2": false,
|
|
224
|
+
"grid": 0,
|
|
225
|
+
"tags": ["checkbox-unchecked"]
|
|
226
|
+
},
|
|
227
|
+
"attrs": [{}],
|
|
228
|
+
"properties": { "order": 10, "id": 74, "name": "checkbox-unchecked", "prevSize": 32, "code": 59721 },
|
|
229
|
+
"setIdx": 0,
|
|
230
|
+
"setId": 1,
|
|
231
|
+
"iconIdx": 12
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"icon": {
|
|
235
|
+
"paths": [
|
|
236
|
+
"M341.333 1024c-5.717 0-11.051-2.219-15.104-6.229l-64-64c-4.011-4.053-6.229-9.387-6.229-15.104v-55.168l-36.437-36.437c-8.32-8.32-8.32-21.845 0-30.165l36.437-36.395v-25.003l-36.437-36.437c-8.32-8.32-8.32-21.845 0-30.165l36.437-36.395v-27.349c-100.949-35.84-170.752-134.016-170.667-241.579 0.085-133.931 102.4-243.968 234.667-254.848v-22.059c0-58.837 47.829-106.667 106.667-106.667s106.667 47.829 106.667 106.667v74.923c39.765 1.664 78.848 12.672 113.579 32 59.733 33.28 102.955 87.851 121.643 153.6 17.152 60.288 11.733 123.947-15.147 180.181l221.696 221.696c4.011 4.053 6.229 9.387 6.229 15.104v90.496c0 11.776-9.557 21.333-21.333 21.333h-90.496c-5.419 0-10.624-2.048-14.592-5.76l-39.168-36.907h-47.744c-11.776 0-21.333-9.557-21.333-21.333v-54.4l-9.131-9.6h-54.869c-11.776 0-21.333-9.557-21.333-21.333v-54.4l-27.733-24.619c-34.389 16.512-72.619 25.216-111.147 25.216-32.768 0-65.536-6.315-95.787-18.432v264.235c0 5.717-2.219 11.051-6.229 15.104l-64 64c-4.053 4.011-9.387 6.229-15.104 6.229zM341.333 972.501l42.667-42.667v-320.256c0-9.472 6.4-17.92 15.531-20.523 91.264-25.856 155.051-110.208 155.136-205.056 0.085-110.251-83.371-201.387-192-212.139v43.605c49.28 9.984 85.333 53.333 85.333 104.491 0 58.837-47.829 106.667-106.667 106.667s-106.667-47.829-106.667-106.667c0-51.157 36.053-94.507 85.333-104.491v-43.648c-108.459 10.752-191.915 101.717-192 211.797-0.085 95.019 63.744 179.499 155.136 205.44 9.131 2.603 15.531 11.051 15.531 20.523v51.755c0 5.717-2.219 11.051-6.229 15.104l-27.605 27.563 27.563 27.563c4.053 4.053 6.272 9.387 6.272 15.104v42.667c0 5.717-2.219 11.051-6.229 15.104l-27.605 27.563 27.563 27.563c4.053 4.053 6.272 9.387 6.272 15.104v55.168l42.667 42.667zM938.667 853.333v-60.331l-226.475-226.432c-6.699-6.699-8.149-17.195-3.541-25.472 27.733-49.749 34.432-107.349 18.816-162.176-15.573-54.827-51.584-100.267-101.333-128-26.411-14.72-54.699-23.424-84.352-26.027 36.053 45.184 55.595 100.821 55.552 159.104-0.085 107.349-69.888 205.355-170.667 241.152v2.517c29.525 14.763 62.549 22.528 95.872 22.528 36.48 0 72.405-9.301 103.893-26.837 3.2-1.792 6.784-2.688 10.411-2.688 5.205 0 10.24 1.877 14.165 5.333l45.867 40.704c4.523 4.011 7.125 9.856 7.125 15.957v42.667h42.667c5.803 0 11.435 2.432 15.445 6.613l21.333 22.4c3.797 3.968 5.888 9.173 5.888 14.72v41.6h34.859c5.419 0 10.624 2.048 14.592 5.76l39.168 36.907h60.715zM320 259.669c-25.003 8.917-42.667 32.939-42.667 60.245 0 35.285 28.715 64 64 64s64-28.715 64-64c0-27.307-17.664-51.328-42.667-60.245v38.997c0 11.776-9.557 21.333-21.333 21.333s-21.333-9.557-21.333-21.333v-38.997zM362.667 128.725c46.464 3.84 90.24 20.011 128 47.275v-69.333c0-35.285-28.715-64-64-64s-64 28.715-64 64v22.059z"
|
|
237
|
+
],
|
|
238
|
+
"attrs": [{}],
|
|
239
|
+
"isMulticolor": false,
|
|
240
|
+
"isMulticolor2": false,
|
|
241
|
+
"grid": 0,
|
|
242
|
+
"tags": ["account"]
|
|
243
|
+
},
|
|
244
|
+
"attrs": [{}],
|
|
245
|
+
"properties": { "order": 8, "id": 73, "name": "account", "prevSize": 32, "code": 59722 },
|
|
246
|
+
"setIdx": 0,
|
|
247
|
+
"setId": 1,
|
|
248
|
+
"iconIdx": 13
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"icon": {
|
|
252
|
+
"paths": [
|
|
253
|
+
"M42.539 1024.043c-23.509 0-42.667-19.115-42.667-42.667v-64c0-35.285 28.715-64 64-64h298.667c35.285 0 64 28.715 64 64v64c0 23.552-19.157 42.667-42.667 42.667h-341.333zM63.872 896.043c-11.776 0-21.333 9.557-21.333 21.333v64h341.333v-64c0-11.776-9.557-21.333-21.333-21.333h-298.667z",
|
|
254
|
+
"M937.088 792.789c-22.229 0-43.307-8.491-59.264-23.893l-257.536-286.080-60.075 60.075c22.059 29.355 19.755 71.125-6.827 97.707-14.080 14.080-32.853 21.845-52.821 21.845s-38.699-7.765-52.779-21.845l-196.267-196.267c-29.099-29.099-29.099-76.501 0-105.6 14.080-14.080 32.853-21.845 52.821-21.845 16.341 0 31.872 5.205 44.715 14.805l212.267-212.267c-9.643-12.843-14.848-28.373-14.848-44.715 0-19.968 7.765-38.699 21.888-52.779 14.080-14.080 32.811-21.845 52.779-21.845s38.699 7.765 52.821 21.845l196.267 196.267c14.123 14.165 21.845 32.939 21.803 52.907s-7.851 38.699-22.016 52.736c-14.080 14.037-32.768 21.76-52.693 21.76-16.469-0.043-32-5.291-44.843-14.933l-60.032 60.032 285.013 256.512c32.939 34.048 33.195 86.357 1.067 119.595-16.299 16.768-38.059 25.984-61.44 25.984zM908.459 739.243c7.168 6.869 17.451 10.965 28.416 10.965 11.776 0 22.741-4.651 30.891-13.056 16.043-16.64 16.043-42.667 0-59.307l-285.611-256.981-31.701 31.701 258.005 286.677zM304.299 359.509c-8.576 0-16.597 3.328-22.656 9.344-12.459 12.459-12.459 32.768 0 45.269l196.267 196.267c6.016 6.016 14.080 9.344 22.656 9.344s16.597-3.328 22.613-9.344c12.459-12.459 12.459-32.811 0-45.269l-196.267-196.267c-6.016-6.016-14.037-9.344-22.613-9.344zM530.603 512.128l211.157-211.157-150.869-150.869-211.157 211.157 150.869 150.869zM794.539 293.419c6.059 6.101 14.123 9.429 22.656 9.472 8.576 0 16.597-3.328 22.656-9.344s9.387-14.080 9.429-22.613c0-8.533-3.285-16.597-9.344-22.656l-196.224-196.224c-6.016-6.016-14.080-9.344-22.656-9.344s-16.597 3.328-22.656 9.344c-6.059 6.059-9.387 14.080-9.387 22.613s3.328 16.597 9.387 22.656c0 0 7.339 7.296 7.552 7.509l181.077 181.035c0.171 0.171 0.384 0.384 0.555 0.597l6.955 6.955z"
|
|
255
|
+
],
|
|
256
|
+
"attrs": [{}, {}],
|
|
257
|
+
"isMulticolor": false,
|
|
258
|
+
"isMulticolor2": false,
|
|
259
|
+
"grid": 0,
|
|
260
|
+
"tags": ["manual-judgement"]
|
|
261
|
+
},
|
|
262
|
+
"attrs": [{}, {}],
|
|
263
|
+
"properties": { "order": 7, "id": 72, "name": "manual-judgement", "prevSize": 32, "code": 59723 },
|
|
264
|
+
"setIdx": 0,
|
|
265
|
+
"setId": 1,
|
|
266
|
+
"iconIdx": 14
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"icon": {
|
|
270
|
+
"paths": [
|
|
271
|
+
"M512 1002.667c-270.549 0-490.667-220.117-490.667-490.667s220.117-490.667 490.667-490.667 490.667 220.117 490.667 490.667-220.117 490.667-490.667 490.667zM512 64c-247.040 0-448 200.96-448 448s200.96 448 448 448c247.040 0 448-200.96 448-448s-200.96-448-448-448z",
|
|
272
|
+
"M512 789.333c-11.776 0-21.333-9.557-21.333-21.333v-234.667h-234.667c-11.776 0-21.333-9.557-21.333-21.333s9.557-21.333 21.333-21.333h234.667v-234.667c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v234.667h234.667c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-234.667v234.667c0 11.776-9.557 21.333-21.333 21.333z"
|
|
273
|
+
],
|
|
274
|
+
"attrs": [{}, {}],
|
|
275
|
+
"isMulticolor": false,
|
|
276
|
+
"isMulticolor2": false,
|
|
277
|
+
"grid": 0,
|
|
278
|
+
"tags": ["add-another"]
|
|
279
|
+
},
|
|
280
|
+
"attrs": [{}, {}],
|
|
281
|
+
"properties": { "order": 6, "id": 71, "name": "add-another", "prevSize": 32, "code": 59724 },
|
|
282
|
+
"setIdx": 0,
|
|
283
|
+
"setId": 1,
|
|
284
|
+
"iconIdx": 15
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"icon": {
|
|
288
|
+
"paths": [
|
|
289
|
+
"M213.333 917.333c-35.285 0-64-28.715-64-64v-44.843c-42.155-8.149-75.136-41.216-83.499-84.053-11.264-57.728 26.539-113.835 84.267-125.099l-0.768-87.339v-87.509c-0.299-19.797 13.696-37.333 33.28-41.6 26.027-5.077 45.995-24.96 50.987-50.645 6.741-34.645-15.915-68.309-50.56-75.093-19.84-4.267-33.92-21.845-33.707-41.813v-44.672c0-35.285 28.715-64 64-64h428.843c20.096 0 37.376 13.995 41.6 33.28 5.077 26.069 24.917 45.995 50.645 51.029 4.096 0.811 8.277 1.195 12.416 1.195 12.672 0 24.96-3.797 35.584-10.923 14.165-9.557 23.765-24.064 27.051-40.832 4.224-19.627 21.632-33.707 41.344-33.707h45.184c35.285 0 64 28.715 64 64v682.667c0 35.285-28.715 64-64 64h-682.667zM896 874.667c11.776 0 21.333-9.557 21.333-21.333v-320h-66.133c-17.408 0-33.067-10.581-39.467-26.283-0.896-2.261-1.621-4.565-2.176-6.997-0.597-3.157-1.451-5.931-2.389-8.661l-0.64-1.792c-1.024-2.773-2.133-5.419-3.499-7.936-1.408-2.603-2.901-4.864-4.48-7.083l-1.195-1.621c-1.664-2.176-3.413-4.224-5.291-6.144-0.128-0.128-1.152-1.067-1.28-1.152-1.493-1.408-3.072-2.816-4.736-4.096-0.853-0.64-1.664-1.28-2.56-1.877-1.792-1.28-3.669-2.475-5.632-3.584l-1.92-1.067c-2.219-1.109-4.523-2.176-6.912-3.029l-1.749-0.64c-2.688-0.939-5.547-1.749-8.491-2.347-2.133-0.427-4.267-0.725-6.4-0.896-2.432-0.171-4.139-0.256-5.845-0.256 0 0-2.261 0.085-2.347 0.085-1.408 0.043-2.816 0.085-4.224 0.256 0 0-2.389 0.341-2.432 0.341-1.664 0.256-2.688 0.384-3.712 0.597-2.603 0.512-5.12 1.28-7.595 2.091-0.981 0.341-2.005 0.725-2.987 1.109-1.579 0.64-3.029 1.28-4.48 1.963-1.877 0.896-3.755 1.92-5.547 3.029-1.195 0.725-2.133 1.28-2.987 1.877-1.28 0.896-2.517 1.792-3.712 2.773-0.725 0.597-1.365 1.152-2.048 1.749-2.091 1.835-3.797 3.541-5.419 5.376-0.896 0.981-1.749 1.92-2.56 2.944s-1.579 2.048-2.347 3.115c-1.109 1.579-2.219 3.285-3.2 5.077-0.469 0.811-0.939 1.664-1.365 2.56-0.981 2.005-1.92 4.096-2.773 6.272l-0.811 2.261c-0.896 2.688-1.707 5.419-2.261 8.235-4.267 19.627-21.632 33.707-41.387 33.707h-66.347c0 0 0 66.091 0 66.091 3.883 0.811 8.32 2.048 13.525 3.797 0.811 0.256 1.749 0.597 2.645 0.939 4.907 1.835 9.259 3.755 13.099 5.845 4.096 2.261 7.765 4.565 11.605 7.339 0.981 0.725 2.048 1.493 3.115 2.304 3.541 2.731 6.656 5.376 9.429 8.149 0.725 0.725 2.987 3.157 2.987 3.157 2.176 2.304 4.224 4.651 6.187 7.168 1.195 1.493 2.304 3.029 3.413 4.565 0.597 0.768 0.981 1.28 1.365 1.835 1.579 2.389 3.072 4.864 4.437 7.381 0.725 1.28 1.28 2.219 1.792 3.243 1.835 3.541 3.499 7.339 5.077 11.563l0.939 2.56c2.859 8.32 4.693 16.683 5.461 24.917 0.299 3.84 0.469 6.912 0.469 9.984 0 2.987-0.171 6.059-0.427 9.131-0.811 9.088-2.645 17.451-5.504 25.643l-0.939 2.603c-1.621 4.309-3.328 8.107-5.163 11.648-0.555 1.067-1.195 2.219-1.835 3.328-1.365 2.432-2.773 4.864-4.352 7.211-0.341 0.512-0.725 1.024-1.152 1.536-1.323 1.835-2.432 3.328-3.584 4.821-1.963 2.475-4.011 4.821-6.101 7.083l-0.768 0.853c-0.853 0.939-1.749 1.835-2.645 2.731-2.816 2.773-5.845 5.333-9.003 7.765-1.152 0.896-2.261 1.707-3.413 2.517-3.541 2.517-6.955 4.693-10.411 6.571-0.384 0.256-0.811 0.512-1.323 0.768-3.584 1.92-7.723 3.755-12.587 5.547-1.067 0.427-2.176 0.768-3.285 1.152-5.12 1.749-9.515 2.944-13.824 3.797l0.683 65.963h320.085zM192 599.509c0.299 19.755-13.696 37.333-33.28 41.6-34.987 6.827-57.771 40.533-51.029 75.136 5.035 25.685 24.875 45.525 50.56 50.56 19.883 4.309 34.005 21.931 33.707 41.941v44.587c0 11.776 9.557 21.333 21.333 21.333h320v-66.176c-0.299-19.797 13.696-37.333 33.28-41.6 3.115-0.597 5.931-1.408 8.661-2.347l1.792-0.597c2.816-1.024 5.461-2.176 7.979-3.499 2.56-1.408 4.821-2.859 6.997-4.437l1.835-1.365c2.005-1.536 4.011-3.2 5.845-5.077 0.043-0.043 1.237-1.323 1.28-1.365 1.451-1.536 2.816-3.115 4.053-4.693 0.683-0.853 1.323-1.749 1.963-2.645 1.237-1.792 2.432-3.627 3.541-5.589l0.981-1.835c1.152-2.219 2.176-4.565 3.072-6.997l0.64-1.707c0.896-2.645 1.749-5.547 2.304-8.491 0.427-2.091 0.725-4.224 0.896-6.315 0.171-2.347 0.256-4.139 0.256-5.931s-0.085-3.584-0.256-5.376c-0.213-2.645-0.512-4.736-0.939-6.827-0.597-2.987-1.408-5.845-2.389-8.661l-0.512-1.493c-0.939-2.475-1.963-4.821-3.115-7.083l-1.024-1.877c-1.067-1.92-2.261-3.755-3.499-5.504-0.64-0.896-1.323-1.792-2.048-2.688-1.195-1.536-2.432-2.944-3.712-4.309 0 0-1.92-2.048-1.92-2.048-1.707-1.664-3.541-3.243-5.461-4.693-0.64-0.512-1.323-0.981-2.005-1.493-2.005-1.408-4.053-2.773-6.187-3.925-0.213-0.128-0.811-0.469-1.024-0.597-2.176-1.152-4.736-2.219-7.339-3.2l-1.963-0.683c-2.773-0.939-5.504-1.749-8.363-2.304-20.011-4.352-34.005-21.973-33.749-41.984v-65.92h-66.176c-0.683 3.712-1.877 8.064-3.584 13.141-0.427 1.237-0.853 2.475-1.323 3.669-1.408 3.755-3.029 7.424-4.864 10.965-0.512 0.981-1.067 2.005-1.621 3.029-1.835 3.285-3.883 6.443-6.016 9.515-1.067 1.536-2.219 3.072-3.413 4.565-1.707 2.133-3.456 4.139-5.248 6.101-2.133 2.304-4.352 4.48-6.699 6.613-1.749 1.579-3.541 3.157-5.376 4.608-1.749 1.408-3.541 2.731-5.419 4.053-2.261 1.579-4.608 3.029-6.997 4.395-2.176 1.28-4.395 2.475-6.656 3.627-2.859 1.408-5.803 2.731-8.789 3.883-1.707 0.725-2.944 1.195-4.181 1.579-4.48 1.536-8.832 2.688-13.141 3.584-1.536 0.341-2.517 0.469-3.499 0.597l-2.219 0.341c-1.493 0.256-2.987 0.469-4.48 0.64-1.621 0.171-3.285 0.256-4.949 0.341l-2.091 0.085c-1.024 0.043-2.091 0.128-3.115 0.128-0.299 0-0.555 0-0.811 0-1.024 0-1.621-0.043-2.176-0.128-3.541-0.085-7.168-0.384-10.752-0.811-1.664-0.213-3.285-0.427-4.907-0.683-1.152-0.128-1.749-0.256-2.347-0.341-1.109-0.213-2.133-0.512-3.157-0.853-4.011-0.981-7.125-1.792-10.197-2.816-2.219-0.768-4.352-1.621-6.443-2.475 0 0-1.451-0.597-1.493-0.597-2.048-0.853-4.053-1.707-6.016-2.688-2.944-1.493-5.803-3.157-8.619-4.907-1.536-0.811-2.389-1.323-3.243-1.877-0.213-0.128-1.195-0.896-1.408-1.024-1.963-1.408-3.499-2.56-5.035-3.755-2.432-1.92-4.779-3.925-6.997-6.059l-0.853-0.725c-0.939-0.853-1.835-1.707-2.731-2.645-2.773-2.859-5.376-5.888-7.808-9.045-0.853-1.109-1.664-2.219-2.517-3.413-2.56-3.584-4.736-7.040-6.656-10.496-0.213-0.299-0.469-0.725-0.683-1.195-1.92-3.627-3.797-7.808-5.589-12.672-0.384-1.067-0.768-2.133-1.152-3.2-1.579-4.821-2.773-9.003-3.584-13.056h-66.133v66.176zM258.645 490.667c16.597 0 31.701 9.941 38.485 25.301 1.365 3.2 2.133 5.547 2.645 7.979 0.597 3.115 1.451 5.931 2.389 8.661l0.64 1.835c1.024 2.731 2.133 5.376 3.456 7.893 1.408 2.603 2.901 4.864 4.48 7.083l1.237 1.707c1.621 2.133 3.328 4.139 5.205 6.059 0.085 0.085 1.237 1.109 1.323 1.195 1.536 1.493 3.115 2.816 4.736 4.096 0.811 0.597 1.664 1.28 2.517 1.877 1.835 1.323 3.712 2.517 5.675 3.627l1.792 0.981c2.261 1.152 4.565 2.176 6.955 3.072l1.749 0.64c2.773 0.939 5.589 1.792 8.533 2.347 2.091 0.427 4.224 0.725 6.272 0.896 0.085 0 1.536 0.085 1.621 0.085 1.451 0 2.859 0.128 4.309 0.128 0.939 0 3.499-0.171 3.499-0.171l2.859-0.171c1.024-0.085 2.005-0.256 3.029-0.427l3.2-0.512c2.731-0.555 5.376-1.323 7.979-2.219 0.768-0.213 1.579-0.555 2.347-0.853 1.963-0.768 3.712-1.579 5.461-2.432 1.28-0.64 2.645-1.365 3.968-2.176 1.451-0.853 2.816-1.707 4.139-2.645 1.152-0.811 2.261-1.621 3.328-2.475s2.091-1.749 3.115-2.688c1.451-1.323 2.816-2.688 4.139-4.139 1.067-1.152 2.091-2.304 3.072-3.541 0.725-0.939 1.451-1.877 2.133-2.816 1.28-1.792 2.475-3.627 3.541-5.589l1.024-1.963c1.109-2.005 2.048-4.181 2.901-6.443l0.768-2.176c0.896-2.688 1.749-5.461 2.304-8.277 4.267-19.627 21.76-33.707 41.685-33.707h66.176v-66.219c-3.84-0.725-8.149-1.877-13.141-3.584-1.109-0.384-2.261-0.768-3.371-1.195-4.779-1.792-8.875-3.627-12.544-5.547-0.213-0.128-1.152-0.683-1.365-0.811-3.584-2.005-6.912-4.139-10.155-6.443-1.237-0.896-2.432-1.749-3.627-2.688-2.987-2.304-5.845-4.779-8.619-7.424-1.195-1.152-2.304-2.347-3.413-3.541-2.475-2.645-4.395-4.864-6.229-7.211-1.195-1.536-2.389-3.115-3.499-4.693-0.597-0.768-0.939-1.237-1.28-1.749-1.579-2.389-2.987-4.779-4.395-7.253-0.768-1.323-1.323-2.347-1.877-3.413-1.835-3.499-3.499-7.296-5.12-11.52l-0.981-2.688c-2.816-8.149-4.651-16.512-5.419-24.747 0-0.213-0.043-0.853-0.043-1.067-0.213-2.944-0.384-5.931-0.384-8.917 0-2.944 0.171-5.931 0.427-8.917 0.811-9.301 2.645-17.664 5.504-25.856l0.853-2.347c1.707-4.565 3.413-8.405 5.291-12.032l1.493-2.773c1.536-2.731 2.987-5.248 4.651-7.68 0.341-0.512 0.725-1.024 1.109-1.493 1.365-1.877 2.475-3.371 3.627-4.821 2.005-2.517 4.096-4.949 6.272-7.253l0.768-0.896c0.725-0.768 1.451-1.536 2.219-2.304 2.944-2.859 6.059-5.504 9.259-8.021 1.109-0.853 2.219-1.664 3.328-2.475 3.627-2.603 7.125-4.779 10.581-6.699 0.043 0 0.981-0.555 1.024-0.597 3.797-2.005 7.936-3.84 12.8-5.675 1.024-0.384 2.091-0.768 3.2-1.109 5.163-1.749 9.557-2.944 13.867-3.797l-0.725-65.92h-320.085c-11.776 0-21.333 9.557-21.333 21.333v44.843c57.045 11.093 94.763 67.2 83.499 124.928-8.363 42.837-41.429 75.904-84.267 84.267l0.683 65.963h66.731zM746.965 405.205c11.648 0 23.253 2.005 34.475 5.888l2.389 0.853c4.48 1.664 8.32 3.371 11.947 5.248 1.024 0.512 2.005 1.067 3.029 1.664 2.56 1.451 5.077 2.901 7.467 4.523 0.512 0.341 1.024 0.725 1.493 1.109 1.877 1.365 3.371 2.475 4.821 3.627 2.517 1.963 4.992 4.096 7.339 6.315 1.493 1.365 2.304 2.091 3.029 2.859 2.688 2.773 5.333 5.803 8.107 9.387 0.853 1.109 1.621 2.176 2.389 3.243 2.645 3.755 4.907 7.253 6.784 10.752 0.043 0.043 0.555 0.939 0.597 1.024 1.92 3.627 3.797 7.808 5.632 12.715 0.384 1.024 0.768 2.048 1.109 3.157 1.749 5.205 2.987 9.643 3.797 13.909l65.963-0.683v-320.128c0-11.776-9.557-21.333-21.333-21.333h-44.843c-5.248 27.264-21.248 51.371-44.885 67.285-17.707 11.904-38.272 18.219-59.392 18.219-6.869 0-13.824-0.683-20.608-2.005-42.837-8.363-75.947-41.429-84.267-84.267l-66.005 0.64v66.304c0.299 19.797-13.696 37.333-33.28 41.6-3.072 0.597-5.845 1.408-8.533 2.347l-2.219 0.811c-2.219 0.853-4.352 1.792-6.443 2.816-0.811 0.427-1.664 0.853-2.475 1.323-1.792 1.024-3.499 2.091-5.163 3.285-1.024 0.725-2.048 1.493-3.029 2.261-1.067 0.853-2.133 1.792-3.157 2.731-1.664 1.493-3.243 3.115-4.779 4.779-0.853 0.939-1.579 1.749-2.261 2.603-0.896 1.152-1.792 2.347-2.645 3.541-0.768 1.109-1.536 2.304-2.219 3.541-0.981 1.579-1.835 3.157-2.603 4.779-0.768 1.579-1.536 3.243-2.176 4.907-0.427 0.981-0.725 1.835-1.067 2.731-0.853 2.517-1.621 5.12-2.133 7.808 0 0-0.853 5.376-0.939 6.144-0.085 0.939-0.128 1.835-0.171 2.731l-0.171 3.413c0 1.749 0.085 3.541 0.213 5.333 0.213 2.944 0.512 5.077 0.939 7.211 0.512 2.645 1.28 5.461 2.347 8.619l0.555 1.493c0.939 2.517 1.963 4.864 3.157 7.125l0.939 1.707c1.109 2.005 2.304 3.883 3.584 5.675 0.64 0.939 1.323 1.835 2.005 2.688 1.152 1.493 2.432 2.944 3.755 4.309l1.792 1.92c1.749 1.707 3.627 3.285 5.547 4.779l1.963 1.451c2.048 1.451 4.139 2.816 6.357 4.053 3.072 1.664 5.632 2.773 8.277 3.755l1.877 0.683c2.731 0.939 5.504 1.749 8.405 2.304 19.925 4.309 34.005 21.973 33.707 41.984v65.92h66.176c0.683-3.797 1.92-8.32 3.627-13.312l0.896-2.645c1.493-4.011 3.285-8.064 5.333-11.989 0.512-0.981 1.109-2.005 1.664-3.029 2.091-3.712 4.181-7.083 6.528-10.283 0.64-0.896 1.365-1.792 2.091-2.688l0.683-0.853c1.877-2.389 3.84-4.651 5.888-6.827l0.896-0.939c0.896-0.981 1.792-1.92 2.731-2.816 2.603-2.517 5.333-4.821 8.192-7.040 1.493-1.195 3.029-2.304 4.565-3.413 3.072-2.133 6.187-4.139 9.387-5.931 1.109-0.64 2.261-1.195 3.371-1.749 4.267-2.133 7.808-3.755 11.52-5.12l2.176-0.768c4.224-1.451 8.533-2.645 13.269-3.627 0.128-0.085 0.725-0.213 1.323-0.341 0.213-0.043 0.896-0.128 1.067-0.171 2.219-0.427 4.821-0.768 7.381-1.067l2.219-0.299c3.2-0.299 6.4-0.427 9.643-0.427 0.171-0.128 0.256-0.128 0.384-0.128z"
|
|
290
|
+
],
|
|
291
|
+
"attrs": [{}],
|
|
292
|
+
"isMulticolor": false,
|
|
293
|
+
"isMulticolor2": false,
|
|
294
|
+
"grid": 0,
|
|
295
|
+
"tags": ["template"]
|
|
296
|
+
},
|
|
297
|
+
"attrs": [{}],
|
|
298
|
+
"properties": { "order": 5, "id": 70, "name": "template", "prevSize": 32, "code": 59725 },
|
|
299
|
+
"setIdx": 0,
|
|
300
|
+
"setId": 1,
|
|
301
|
+
"iconIdx": 16
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"icon": {
|
|
305
|
+
"paths": [
|
|
306
|
+
"M635.136 596.693c29.053-19.369 47.934-52.003 47.934-89.046 0-58.916-47.761-106.676-106.676-106.676-37.022 0-69.639 18.859-88.768 47.494l-0.244 0.388-46.635-46.635c-11.602-11.548-27.602-18.687-45.269-18.687s-33.667 7.139-45.272 18.69l0.002-0.002-61.781 61.781c-7.766 7.739-12.571 18.445-12.571 30.272 0 11.722 4.719 22.341 12.361 30.062l-0.004-0.004c2.033 2.044 4.266 3.884 6.669 5.49l0.157 0.099c3.625 2.367 6.78 4.94 9.642 7.807l0.001 0.001c11.169 11.508 18.054 27.226 18.054 44.553 0 35.346-28.654 64-64 64-17.242 0-32.891-6.818-44.399-17.905l0.020 0.019c-2.962-2.929-5.618-6.154-7.924-9.632l-0.14-0.224c-7.75-11.613-20.799-19.159-35.611-19.159-8.743 0-16.871 2.629-23.638 7.139l0.156-0.098c-2.499 1.649-4.677 3.434-6.655 5.418l-0.001 0.001-62.251 61.568c-11.567 11.586-18.721 27.581-18.721 45.248s7.153 33.662 18.722 45.249l-0.001-0.001 241.365 241.365c11.583 11.574 27.579 18.732 45.248 18.732s33.665-7.158 45.248-18.733l66.602-66.56c7.774-7.726 12.586-18.426 12.586-30.249 0-17.971-11.116-33.345-26.848-39.623l-0.288-0.101c-8.527-3.345-15.802-8.181-21.843-14.248l-0.002-0.002c-11.559-11.574-18.708-27.556-18.708-45.207 0-35.333 28.643-63.977 63.977-63.977 0.015 0 0.030 0 0.045 0l-0.002-0c0.024-0 0.053-0 0.081-0 26.859 0 49.846 16.579 59.286 40.061l0.153 0.43c6.38 16.019 21.755 27.135 39.727 27.135 5.604 0 10.955-1.081 15.856-3.045l-0.287 0.102c5.718-2.229 10.594-5.475 14.631-9.554l0.003-0.003 66.603-66.645c11.572-11.584 18.728-27.58 18.728-45.248s-7.157-33.664-18.729-45.249l0.001 0.001zM651.563 703.573l-66.603 66.603c-16.045-39.916-54.434-67.583-99.285-67.583-29.393 0-56.010 11.883-75.311 31.106l0.004-0.003c-19.373 19.306-31.361 46.013-31.361 75.519 0 44.863 27.712 83.254 66.952 98.989l0.718 0.254-66.645 66.603c-3.865 3.85-9.196 6.23-15.083 6.23s-11.218-2.38-15.083-6.23l0.001 0.001-241.365-241.365c-3.862-3.859-6.25-9.192-6.25-15.083 0-5.848 2.354-11.147 6.167-14.999l-0.002 0.002 62.251-61.611c19.314 28.472 51.526 46.934 88.049 46.934 28.795 0 54.91-11.475 74.021-30.103l-0.023 0.022c20.042-19.452 32.48-46.642 32.48-76.738 0-28.885-11.458-55.095-30.076-74.331l0.028 0.029c-4.953-4.976-10.381-9.469-16.214-13.409l-0.383-0.244 61.824-61.824c3.865-3.849 9.196-6.229 15.083-6.229s11.218 2.38 15.083 6.229l-0.001-0.001 68.267 68.267c3.863 3.872 9.203 6.269 15.103 6.272l0.001 0c1.959-0.005 3.854-0.27 5.656-0.761l-0.152 0.035c7.382-2.025 13.079-7.722 15.069-14.954l0.035-0.15c7.554-27.541 32.363-47.442 61.821-47.442 35.346 0 64 28.654 64 64 0 29.458-19.902 54.267-46.993 61.716l-0.449 0.105c-9.191 2.521-15.834 10.8-15.834 20.632 0 5.887 2.382 11.218 6.234 15.081l-0.001-0.001 68.267 68.267c3.855 3.862 6.24 9.194 6.24 15.083s-2.384 11.221-6.24 15.083l0-0z",
|
|
307
|
+
"M1014.708 255.042c-3.108-1.875-6.86-2.984-10.872-2.984-7.766 0-14.561 4.156-18.283 10.366l-0.054 0.097-82.033 138.393c-15.743-222.666-200.242-397.339-425.538-397.339-235.571 0-426.539 190.968-426.539 426.539 0 37.487 4.836 73.844 13.918 108.482l-0.662-2.97c2.427 9.299 10.746 16.053 20.645 16.062l0.001 0c0.010 0 0.023 0 0.035 0 1.868 0 3.678-0.243 5.402-0.7l-0.147 0.033c9.304-2.424 16.061-10.751 16.061-20.656 0-1.877-0.243-3.696-0.698-5.43l0.033 0.148c-7.614-28.573-11.987-61.377-11.987-95.203 0-212.103 171.943-384.046 384.046-384.046 204.926 0 372.365 160.505 383.461 362.66l0.043 0.985 0.364 6.893-118.573-121.852c-3.875-3.954-9.271-6.405-15.24-6.405-11.782 0-21.333 9.551-21.333 21.333 0 5.761 2.284 10.989 5.995 14.827l-0.006-0.006 158.165 162.521 0.555 0.378c1.953 1.468 4.183 2.948 6.498 4.3l0.333 0.18c1.761 0.657 3.798 1.091 5.919 1.208l0.054 0.002c0.661 0.062 1.265 0.391 1.932 0.391l0.508-0.029c0.213-0.005 0.401 0.102 0.617 0.091l0.633-0.164 0.784-0.043c0.536-0.065 0.956-0.435 1.482-0.539 2.534-0.461 4.795-1.315 6.836-2.507l-0.099 0.053c0.777-0.516 1.449-1.027 2.086-1.577l-0.026 0.022c1.722-1.322 3.193-2.858 4.406-4.587l0.044-0.066c0.299-0.43 0.794-0.659 1.062-1.112l117.626-198.523c1.883-3.113 2.997-6.874 2.997-10.896 0-7.763-4.152-14.556-10.357-18.28l-0.097-0.054z"
|
|
308
|
+
],
|
|
309
|
+
"attrs": [{}, {}],
|
|
310
|
+
"isMulticolor": false,
|
|
311
|
+
"isMulticolor2": false,
|
|
312
|
+
"grid": 0,
|
|
313
|
+
"tags": ["workflow"]
|
|
314
|
+
},
|
|
315
|
+
"attrs": [{}, {}],
|
|
316
|
+
"properties": { "order": 4, "id": 69, "name": "workflow", "prevSize": 32, "code": 59726 },
|
|
317
|
+
"setIdx": 0,
|
|
318
|
+
"setId": 1,
|
|
319
|
+
"iconIdx": 17
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"icon": {
|
|
323
|
+
"paths": [
|
|
324
|
+
"M426.667 341.333c-204.8 0-426.667-59.733-426.667-170.667s221.867-170.667 426.667-170.667 426.667 59.733 426.667 170.667-221.867 170.667-426.667 170.667zM426.667 42.667c-226.133 0-384 68.267-384 128s157.867 128 384 128 384-68.267 384-128-157.867-128-384-128z",
|
|
325
|
+
"M362.667 725.333c-4.267 0-12.8 0-17.067-4.267l-281.6-281.6c-38.4-46.933-59.733-102.4-64-162.133v-106.667c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v106.667c4.267 46.933 21.333 93.867 55.467 132.267l281.6 281.6c8.533 8.533 8.533 21.333 0 29.867-4.267 4.267-12.8 4.267-17.067 4.267z",
|
|
326
|
+
"M772.267 443.733c-4.267 0-8.533 0-12.8-4.267-8.533-8.533-8.533-21.333 0-29.867 34.133-38.4 51.2-85.333 55.467-132.267l-4.267-106.667c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v106.667c-4.267 59.733-25.6 115.2-64 157.867-4.267 8.533-12.8 8.533-17.067 8.533z",
|
|
327
|
+
"M448 1024h-42.667c-34.133 0-64-29.867-64-64v-256c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v256c0 12.8 8.533 21.333 21.333 21.333h42.667c12.8 0 21.333-8.533 21.333-21.333v-89.6c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v89.6c0 34.133-29.867 64-64 64z",
|
|
328
|
+
"M618.667 554.667c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h384c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-384z",
|
|
329
|
+
"M618.667 725.333c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h298.667c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-298.667z",
|
|
330
|
+
"M618.667 896c-12.8 0-21.333-8.533-21.333-21.333s8.533-21.333 21.333-21.333h213.333c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-213.333z"
|
|
331
|
+
],
|
|
332
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
333
|
+
"isMulticolor": false,
|
|
334
|
+
"isMulticolor2": false,
|
|
335
|
+
"grid": 0,
|
|
336
|
+
"tags": ["filter"]
|
|
337
|
+
},
|
|
338
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
339
|
+
"properties": { "order": 3, "id": 68, "name": "filter", "prevSize": 32, "code": 59727 },
|
|
340
|
+
"setIdx": 0,
|
|
341
|
+
"setId": 1,
|
|
342
|
+
"iconIdx": 18
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"icon": {
|
|
346
|
+
"paths": [
|
|
347
|
+
"M357.845 682.667c-11.776 0-21.333-9.557-21.333-21.333v-85.333c0-105.856 86.144-192 192-192h401.408l-134.315-134.315c-8.32-8.32-8.32-21.845 0-30.165 4.011-4.053 9.387-6.272 15.061-6.272s11.051 2.219 15.104 6.229l170.667 170.667c3.925 3.925 6.101 9.088 6.229 14.592 0 0.213 0 0.384 0 0.597 0 2.048-0.427 3.627-0.683 4.523-0.085 0.555-0.256 1.963-0.939 3.584-1.024 2.645-2.773 5.205-5.077 7.381l-170.197 170.197c-4.011 4.011-9.387 6.229-15.104 6.229s-11.051-2.219-15.104-6.229c-8.32-8.32-8.32-21.845 0-30.165l134.187-134.187h-401.237c-82.347 0-149.333 66.987-149.333 149.333v85.333c0 11.776-9.557 21.333-21.333 21.333z",
|
|
348
|
+
"M59.179 853.333c-35.285 0-64-28.715-64-64v-512c0-35.285 28.715-64 64-64h512c35.285 0 64 28.715 64 64v21.333c0 11.776-9.557 21.333-21.333 21.333s-21.333-9.557-21.333-21.333v-21.333c0-11.776-9.557-21.333-21.333-21.333h-512c-11.776 0-21.333 9.557-21.333 21.333v512c0 11.776 9.557 21.333 21.333 21.333h512c11.776 0 21.333-9.557 21.333-21.333v-234.667c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v234.667c0 35.285-28.715 64-64 64h-512z"
|
|
349
|
+
],
|
|
350
|
+
"attrs": [{}, {}],
|
|
351
|
+
"isMulticolor": false,
|
|
352
|
+
"isMulticolor2": false,
|
|
353
|
+
"tags": ["navigation-out"],
|
|
354
|
+
"grid": 0
|
|
355
|
+
},
|
|
356
|
+
"attrs": [{}, {}],
|
|
357
|
+
"properties": { "order": 80, "id": 0, "name": "navigation-out", "prevSize": 32, "code": 59714 },
|
|
358
|
+
"setIdx": 0,
|
|
359
|
+
"setId": 1,
|
|
360
|
+
"iconIdx": 19
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"icon": {
|
|
364
|
+
"paths": [
|
|
365
|
+
"M853.333 42.667c72.533 0 128 55.467 128 128v682.667c0 72.533-55.467 128-128 128h-682.667c-72.533 0-128-55.467-128-128v-682.667c0-72.533 55.467-128 128-128h682.667zM853.333 0h-682.667c-93.867 0-170.667 76.8-170.667 170.667v682.667c0 93.867 76.8 170.667 170.667 170.667h682.667c93.867 0 170.667-76.8 170.667-170.667v-682.667c0-93.867-76.8-170.667-170.667-170.667v0z",
|
|
366
|
+
"M426.667 853.333h-85.333l256-682.667h85.333z"
|
|
367
|
+
],
|
|
368
|
+
"attrs": [{}, {}],
|
|
369
|
+
"isMulticolor": false,
|
|
370
|
+
"isMulticolor2": false,
|
|
371
|
+
"tags": ["search-slash"],
|
|
372
|
+
"grid": 0
|
|
373
|
+
},
|
|
374
|
+
"attrs": [{}, {}],
|
|
375
|
+
"properties": { "order": 79, "id": 1, "name": "search-slash", "prevSize": 32, "code": 59713 },
|
|
376
|
+
"setIdx": 0,
|
|
377
|
+
"setId": 1,
|
|
378
|
+
"iconIdx": 20
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"icon": {
|
|
382
|
+
"paths": [
|
|
383
|
+
"M490.667 341.333l341.333-106.667-315.733-106.667c0 0-4.267 0-4.267 0s-4.267 0-4.267 0l-320 106.667 302.933 106.667zM128 264.533c0 0 0 0 0 0v452.267c0 8.533 4.267 17.067 12.8 21.333l328.533 149.333v-507.733l-341.333-115.2zM512 887.467l371.2-153.6c8.533-4.267 12.8-12.8 12.8-21.333v-443.733c0 0 0-4.267 0-4.267l-384 115.2v507.733zM490.667 938.667c-4.267 0-8.533 0-12.8-4.267-4.267 0-4.267 0-8.533-4.267l-341.333-153.6c-25.6-8.533-42.667-34.133-42.667-59.733v-448c0-17.067 4.267-29.867 17.067-42.667 0 0 0 0 0 0 8.533-12.8 21.333-17.067 29.867-21.333l362.667-115.2c4.267 0 8.533 0 17.067 0 4.267 0 12.8 0 17.067 0l362.667 115.2c12.8 4.267 21.333 8.533 29.867 17.067 0 0 0 0 0 0 8.533 12.8 17.067 25.6 17.067 42.667v448c0 25.6-17.067 51.2-42.667 59.733l-384 157.867c-4.267 0-4.267 0-8.533 4.267s-8.533 4.267-12.8 4.267z"
|
|
384
|
+
],
|
|
385
|
+
"attrs": [{}],
|
|
386
|
+
"isMulticolor": false,
|
|
387
|
+
"isMulticolor2": false,
|
|
388
|
+
"tags": ["aws"],
|
|
389
|
+
"grid": 0
|
|
390
|
+
},
|
|
391
|
+
"attrs": [{}],
|
|
392
|
+
"properties": { "order": 77, "id": 2, "name": "servergroup-aws", "prevSize": 32, "code": 59708 },
|
|
393
|
+
"setIdx": 0,
|
|
394
|
+
"setId": 1,
|
|
395
|
+
"iconIdx": 21
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"icon": {
|
|
399
|
+
"paths": [
|
|
400
|
+
"M213.333 810.667v85.333h-85.333v-85.333zM384 810.667v85.333h-85.333v-85.333zM554.667 810.667v85.333h-85.333v-85.333zM725.333 810.667v85.333h-85.333v-85.333zM896 810.667v85.333h-85.333v-85.333zM213.333 640v85.333h-85.333v-85.333zM384 640v85.333h-85.333v-85.333zM554.667 640v85.333h-85.333v-85.333zM725.333 640v85.333h-85.333v-85.333zM896 640v85.333h-85.333v-85.333zM213.333 469.333v85.333h-85.333v-85.333zM384 469.333v85.333h-85.333v-85.333zM554.667 469.333v85.333h-85.333v-85.333zM725.333 469.333v85.333h-85.333v-85.333zM896 469.333v85.333h-85.333v-85.333zM213.333 298.667v85.333h-85.333v-85.333zM384 298.667v85.333h-85.333v-85.333zM554.667 298.667v85.333h-85.333v-85.333zM725.333 298.667v85.333h-85.333v-85.333zM896 298.667v85.333h-85.333v-85.333zM213.333 128v85.333h-85.333v-85.333zM384 128v85.333h-85.333v-85.333zM554.667 128v85.333h-85.333v-85.333zM725.333 128v85.333h-85.333v-85.333zM896 128v85.333h-85.333v-85.333z"
|
|
401
|
+
],
|
|
402
|
+
"attrs": [{}],
|
|
403
|
+
"isMulticolor": false,
|
|
404
|
+
"isMulticolor2": false,
|
|
405
|
+
"grid": 0,
|
|
406
|
+
"tags": ["instances"]
|
|
407
|
+
},
|
|
408
|
+
"attrs": [{}],
|
|
409
|
+
"properties": { "order": 15, "id": 79, "name": "instances", "prevSize": 32, "code": 59728 },
|
|
410
|
+
"setIdx": 0,
|
|
411
|
+
"setId": 1,
|
|
412
|
+
"iconIdx": 22
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"icon": {
|
|
416
|
+
"paths": [
|
|
417
|
+
"M298.667 170.667v128h-128v-128h128zM298.667 128h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
418
|
+
"M597.333 170.667v128h-128v-128h128zM597.333 128h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
419
|
+
"M896 170.667v128h-128v-128h128zM896 128h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
420
|
+
"M298.667 469.333v128h-128v-128h128zM298.667 426.667h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
421
|
+
"M597.333 469.333v128h-128v-128h128zM597.333 426.667h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
422
|
+
"M896 469.333v128h-128v-128h128zM896 426.667h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
423
|
+
"M298.667 768v128h-128v-128h128zM298.667 725.333h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
424
|
+
"M597.333 768v128h-128v-128h128zM597.333 725.333h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z",
|
|
425
|
+
"M896 768v128h-128v-128h128zM896 725.333h-128c-25.6 0-42.667 17.067-42.667 42.667v128c0 25.6 17.067 42.667 42.667 42.667h128c25.6 0 42.667-17.067 42.667-42.667v-128c0-25.6-17.067-42.667-42.667-42.667v0z"
|
|
426
|
+
],
|
|
427
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
|
|
428
|
+
"isMulticolor": false,
|
|
429
|
+
"isMulticolor2": false,
|
|
430
|
+
"tags": ["cluster"],
|
|
431
|
+
"grid": 0
|
|
432
|
+
},
|
|
433
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}, {}, {}],
|
|
434
|
+
"properties": { "order": 75, "id": 3, "name": "cluster", "prevSize": 32, "code": 59710 },
|
|
435
|
+
"setIdx": 0,
|
|
436
|
+
"setId": 1,
|
|
437
|
+
"iconIdx": 23
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"icon": {
|
|
441
|
+
"paths": [
|
|
442
|
+
"M640.64 1015.168c-16.939 0-32.896-6.528-44.928-18.389l-558.976-558.933c-21.888-24.32-34.688-54.997-36.437-86.784l-0.299-278.187c0-35.328 28.715-64 64-64h276.992c32.683 1.707 63.445 14.379 87.125 35.627l589.611 589.952c8.32 8.32 8.32 21.845 0 30.165l-331.861 331.819c-12.075 12.075-28.117 18.731-45.227 18.731 0 0 0 0 0 0zM64 51.499c-11.776 0-21.333 9.557-21.333 21.333l0.299 277.035c1.195 21.163 9.984 42.197 24.747 58.624l557.568 557.525c4.309 4.267 9.643 6.485 15.36 6.485s11.051-2.219 15.061-6.229l316.8-316.757-573.739-574.080c-15.701-14.080-36.651-22.699-58.624-23.936l-276.139 0z",
|
|
443
|
+
"M234.667 350.165c-58.837 0-106.667-47.829-106.667-106.667s47.829-106.667 106.667-106.667 106.667 47.872 106.667 106.667-47.872 106.667-106.667 106.667zM234.667 179.499c-35.285 0-64 28.715-64 64s28.715 64 64 64 64-28.715 64-64-28.715-64-64-64z"
|
|
444
|
+
],
|
|
445
|
+
"attrs": [{}, {}],
|
|
446
|
+
"isMulticolor": false,
|
|
447
|
+
"isMulticolor2": false,
|
|
448
|
+
"tags": ["label"],
|
|
449
|
+
"grid": 0
|
|
450
|
+
},
|
|
451
|
+
"attrs": [{}, {}],
|
|
452
|
+
"properties": { "order": 74, "id": 4, "name": "label", "prevSize": 32, "code": 59711 },
|
|
453
|
+
"setIdx": 0,
|
|
454
|
+
"setId": 1,
|
|
455
|
+
"iconIdx": 24
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"icon": {
|
|
459
|
+
"paths": [
|
|
460
|
+
"M291.413 933.12h-2.987c-10.511-1.436-18.524-10.356-18.524-21.148 0-0.968 0.064-1.921 0.189-2.855l-0.012 0.109 105.813-768c-0.132-0.897-0.208-1.933-0.208-2.987 0-11.897 9.644-21.541 21.541-21.541 10.843 0 19.816 8.012 21.32 18.439l0.014 0.116 198.4 445.013 196.693-443.307c1.518-10.543 10.49-18.555 21.333-18.555 11.897 0 21.541 9.644 21.541 21.541 0 1.053-0.076 2.089-0.222 3.102l0.014-0.116 105.813 768c0.113 0.825 0.177 1.778 0.177 2.746 0 10.791-8.013 19.712-18.413 21.135l-0.111 0.012c-0.715 0.083-1.543 0.131-2.382 0.131-10.859 0-19.86-7.954-21.495-18.354l-0.016-0.123-97.707-693.76-187.733 420.693c-3.377 7.598-10.857 12.8-19.552 12.8-0.026 0-0.052-0-0.078-0l0.004 0c-0.022 0-0.048 0-0.074 0-8.695 0-16.176-5.202-19.498-12.664l-0.054-0.136-187.307-420.693-95.573 692.053c-1.505 10.354-10.269 18.235-20.895 18.347l-0.012 0z",
|
|
461
|
+
"M185.6 933.12h-2.987c-10.511-1.436-18.524-10.356-18.524-21.148 0-0.968 0.064-1.921 0.189-2.855l-0.012 0.109 105.813-768c1.518-10.543 10.49-18.555 21.333-18.555 11.897 0 21.541 9.644 21.541 21.541 0 1.053-0.076 2.089-0.222 3.102l0.014-0.116-105.813 768c-1.702 10.224-10.481 17.922-21.059 17.922-0.097 0-0.193-0.001-0.289-0.002l0.015 0z",
|
|
462
|
+
"M80.213 933.12h-2.987c-10.511-1.436-18.524-10.356-18.524-21.148 0-0.968 0.064-1.921 0.189-2.855l-0.012 0.109 105.813-768c1.21-10.502 10.050-18.58 20.777-18.58 1.1 0 2.18 0.085 3.234 0.249l-0.117-0.015c10.511 1.436 18.524 10.356 18.524 21.148 0 0.968-0.064 1.921-0.189 2.855l0.012-0.109-105.813 768c-1.505 10.354-10.269 18.235-20.895 18.347l-0.012 0z"
|
|
463
|
+
],
|
|
464
|
+
"attrs": [{}, {}, {}],
|
|
465
|
+
"isMulticolor": false,
|
|
466
|
+
"isMulticolor2": false,
|
|
467
|
+
"tags": ["md"],
|
|
468
|
+
"grid": 0
|
|
469
|
+
},
|
|
470
|
+
"attrs": [{}, {}, {}],
|
|
471
|
+
"properties": { "order": 66, "id": 5, "name": "md", "prevSize": 32, "code": 59700 },
|
|
472
|
+
"setIdx": 0,
|
|
473
|
+
"setId": 1,
|
|
474
|
+
"iconIdx": 25
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"icon": {
|
|
478
|
+
"paths": [
|
|
479
|
+
"M160.427 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.077 0.682-0.121 1.472-0.121 2.273 0 10.923 8.209 19.928 18.794 21.184l0.101 0.010h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.077-0.682 0.121-1.472 0.121-2.273 0-10.923-8.209-19.928-18.794-21.184l-0.101-0.010z",
|
|
480
|
+
"M75.093 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.109 0.809-0.171 1.744-0.171 2.694 0 10.94 8.235 19.957 18.845 21.19l0.099 0.009h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.109-0.809 0.171-1.744 0.171-2.694 0-10.94-8.235-19.957-18.845-21.19l-0.099-0.009z",
|
|
481
|
+
"M640 256c-63.486 0.389-123.209 16.123-175.764 43.674l2.11-1.008-31.147-279.893c0.055-0.575 0.086-1.244 0.086-1.92 0-11.83-9.59-21.42-21.42-21.42-11.154 0-20.316 8.525-21.327 19.415l-0.006 0.085-64 206.507-64.853-206.507c-1.017-10.974-10.18-19.5-21.333-19.5-11.83 0-21.42 9.59-21.42 21.42 0 0.676 0.031 1.345 0.093 2.005l-0.006-0.085-42.667 384c-0.082 0.704-0.129 1.52-0.129 2.347 0 11.853 9.609 21.462 21.462 21.462 11.026 0 20.111-8.315 21.324-19.017l0.009-0.098 31.573-283.307 55.893 174.507c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v0l55.040-174.933 20.48 197.547c-103.021 69.937-169.817 186.528-169.817 318.719 0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-0.299 0-0.597 0-0.895 0.001l0.046-0zM853.333 673.28h-186.453v186.88c-1.737 13.32-13.013 23.5-26.667 23.5s-24.93-10.18-26.652-23.365l-0.014-0.136v-186.88h-186.88c-13.32-1.737-23.5-13.013-23.5-26.667s10.18-24.93 23.365-26.652l0.136-0.014h186.88v-186.453c-0.136-1.015-0.213-2.188-0.213-3.38 0-14.845 12.035-26.88 26.88-26.88s26.88 12.035 26.88 26.88c0 1.191-0.078 2.365-0.228 3.515l0.014-0.136v186.88h186.453c13.32 1.737 23.5 13.013 23.5 26.667s-10.18 24.93-23.365 26.652l-0.136 0.014z"
|
|
482
|
+
],
|
|
483
|
+
"attrs": [{}, {}, {}],
|
|
484
|
+
"isMulticolor": false,
|
|
485
|
+
"isMulticolor2": false,
|
|
486
|
+
"tags": ["md-created"],
|
|
487
|
+
"grid": 0
|
|
488
|
+
},
|
|
489
|
+
"attrs": [{}, {}, {}],
|
|
490
|
+
"properties": { "order": 67, "id": 6, "name": "md-created", "prevSize": 32, "code": 59701 },
|
|
491
|
+
"setIdx": 0,
|
|
492
|
+
"setId": 1,
|
|
493
|
+
"iconIdx": 26
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"icon": {
|
|
497
|
+
"paths": [
|
|
498
|
+
"M160.427 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.077 0.682-0.121 1.472-0.121 2.273 0 10.923 8.209 19.928 18.794 21.184l0.101 0.010h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.077-0.682 0.121-1.472 0.121-2.273 0-10.923-8.209-19.928-18.794-21.184l-0.101-0.010z",
|
|
499
|
+
"M75.093 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.109 0.809-0.171 1.744-0.171 2.694 0 10.94 8.235 19.957 18.845 21.19l0.099 0.009h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.109-0.809 0.171-1.744 0.171-2.694 0-10.94-8.235-19.957-18.845-21.19l-0.099-0.009z",
|
|
500
|
+
"M472.747 762.88h334.507l-167.253-289.707-167.253 289.707z",
|
|
501
|
+
"M640 256c-63.486 0.389-123.209 16.123-175.764 43.674l2.11-1.008-31.147-279.893c0.055-0.575 0.086-1.244 0.086-1.92 0-11.83-9.59-21.42-21.42-21.42-11.154 0-20.316 8.525-21.327 19.415l-0.006 0.085-64 206.507-64.853-206.507c-1.017-10.974-10.18-19.5-21.333-19.5-11.83 0-21.42 9.59-21.42 21.42 0 0.676 0.031 1.345 0.093 2.005l-0.006-0.085-42.667 384c-0.082 0.704-0.129 1.52-0.129 2.347 0 11.853 9.609 21.462 21.462 21.462 11.026 0 20.111-8.315 21.324-19.017l0.009-0.098 31.573-283.307 55.893 174.507c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v0l55.040-174.933 20.48 197.547c-103.021 69.937-169.817 186.528-169.817 318.719 0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-0.299 0-0.597 0-0.895 0.001l0.046-0zM876.373 802.56c-4.659 7.963-13.169 13.227-22.909 13.227-0.046 0-0.092-0-0.138-0l0.007 0h-426.667c-14.69-0.203-26.521-12.159-26.521-26.878 0-4.863 1.291-9.424 3.55-13.36l-0.069 0.131 213.333-369.493c5.049-7.459 13.479-12.296 23.040-12.296s17.991 4.838 22.978 12.199l0.062 0.097 213.333 369.493c2.305 3.845 3.669 8.483 3.669 13.44s-1.363 9.595-3.735 13.561l0.067-0.121z"
|
|
502
|
+
],
|
|
503
|
+
"attrs": [{}, {}, {}, {}],
|
|
504
|
+
"isMulticolor": false,
|
|
505
|
+
"isMulticolor2": false,
|
|
506
|
+
"tags": ["md-diff"],
|
|
507
|
+
"grid": 0
|
|
508
|
+
},
|
|
509
|
+
"attrs": [{}, {}, {}, {}],
|
|
510
|
+
"properties": { "order": 68, "id": 7, "name": "md-diff", "prevSize": 32, "code": 59702 },
|
|
511
|
+
"setIdx": 0,
|
|
512
|
+
"setId": 1,
|
|
513
|
+
"iconIdx": 27
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"icon": {
|
|
517
|
+
"paths": [
|
|
518
|
+
"M160.427 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.077 0.682-0.121 1.472-0.121 2.273 0 10.923 8.209 19.928 18.794 21.184l0.101 0.010h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.077-0.682 0.121-1.472 0.121-2.273 0-10.923-8.209-19.928-18.794-21.184l-0.101-0.010z",
|
|
519
|
+
"M75.093 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.109 0.809-0.171 1.744-0.171 2.694 0 10.94 8.235 19.957 18.845 21.19l0.099 0.009h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.109-0.809 0.171-1.744 0.171-2.694 0-10.94-8.235-19.957-18.845-21.19l-0.099-0.009z",
|
|
520
|
+
"M640 256c-63.486 0.389-123.209 16.123-175.764 43.674l2.11-1.008-31.147-279.893c0.055-0.575 0.086-1.244 0.086-1.92 0-11.83-9.59-21.42-21.42-21.42-11.154 0-20.316 8.525-21.327 19.415l-0.006 0.085-64 206.507-64.853-206.507c-1.017-10.974-10.18-19.5-21.333-19.5-11.83 0-21.42 9.59-21.42 21.42 0 0.676 0.031 1.345 0.093 2.005l-0.006-0.085-42.667 384c-0.082 0.704-0.129 1.52-0.129 2.347 0 11.853 9.609 21.462 21.462 21.462 11.026 0 20.111-8.315 21.324-19.017l0.009-0.098 31.573-283.307 55.893 174.507c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v0l55.040-174.933 20.48 197.547c-103.021 69.937-169.817 186.528-169.817 318.719 0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-0.299 0-0.597 0-0.895 0.001l0.046-0zM829.44 791.893c3.209 4.374 5.135 9.863 5.135 15.802 0 14.845-12.035 26.88-26.88 26.88-5.939 0-11.428-1.926-15.877-5.188l0.075 0.053-151.893-151.893-151.893 151.893c-4.374 3.209-9.863 5.135-15.802 5.135-14.845 0-26.88-12.035-26.88-26.88 0-5.939 1.926-11.428 5.188-15.877l-0.053 0.075 151.893-151.893-151.893-151.893c-4.805-4.805-7.776-11.442-7.776-18.773 0-14.663 11.887-26.55 26.55-26.55 7.331 0 13.969 2.972 18.773 7.776h-0l151.893 151.893 151.893-151.893c4.374-3.209 9.863-5.135 15.802-5.135 14.845 0 26.88 12.035 26.88 26.88 0 5.939-1.926 11.428-5.188 15.877l0.053-0.075-151.893 151.893z"
|
|
521
|
+
],
|
|
522
|
+
"attrs": [{}, {}, {}],
|
|
523
|
+
"isMulticolor": false,
|
|
524
|
+
"isMulticolor2": false,
|
|
525
|
+
"tags": ["md-error"],
|
|
526
|
+
"grid": 0
|
|
527
|
+
},
|
|
528
|
+
"attrs": [{}, {}, {}],
|
|
529
|
+
"properties": { "order": 69, "id": 8, "name": "md-error", "prevSize": 32, "code": 59703 },
|
|
530
|
+
"setIdx": 0,
|
|
531
|
+
"setId": 1,
|
|
532
|
+
"iconIdx": 28
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"icon": {
|
|
536
|
+
"paths": [
|
|
537
|
+
"M832 505.6c-2.392-4.18-6.305-7.259-10.968-8.505l-0.125-0.028c-2.018-0.855-4.364-1.351-6.827-1.351s-4.809 0.497-6.945 1.395l0.118-0.044-25.6 14.507c-3.035 1.761-6.679 2.8-10.565 2.8-5.658 0-10.801-2.202-14.619-5.797l0.011 0.010c-18.199-16.929-40.16-30.080-64.47-38.049l-1.237-0.351c-8.728-2.807-14.934-10.854-14.934-20.351 0-0.045 0-0.091 0-0.136l-0 0.007v-26.453c0-9.897-8.023-17.92-17.92-17.92v-0h-39.253c-9.897 0-17.92 8.023-17.92 17.92v-0 29.013c0 0.038 0 0.084 0 0.129 0 9.497-6.205 17.544-14.783 20.309l-0.151 0.042c-25.368 8.432-47.169 21.566-65.39 38.501l0.11-0.101c-3.807 3.584-8.951 5.786-14.608 5.786-3.886 0-7.53-1.039-10.668-2.855l0.103 0.055-26.027-14.933c-2.021-0.833-4.367-1.317-6.827-1.317s-4.806 0.484-6.949 1.362l0.122-0.044c-4.788 1.274-8.702 4.353-11.047 8.446l-0.046 0.088-19.627 34.133c-1.607 2.634-2.559 5.82-2.559 9.228 0 6.597 3.565 12.362 8.874 15.473l0.085 0.046 26.027 14.933c6.455 3.749 10.727 10.631 10.727 18.51 0 1.605-0.177 3.169-0.513 4.673l0.027-0.142c-2.598 11.284-4.087 24.241-4.087 37.547s1.489 26.263 4.31 38.715l-0.222-1.168c0.309 1.362 0.487 2.925 0.487 4.53 0 7.879-4.271 14.76-10.625 18.455l-0.102 0.055-25.6 14.933c-5.572 3.111-9.279 8.972-9.279 15.699 0 3.335 0.911 6.457 2.497 9.131l-0.045-0.083 19.627 34.133c3.156 5.394 8.921 8.959 15.518 8.959 3.408 0 6.595-0.952 9.307-2.604l25.521-14.462c3.035-1.761 6.679-2.8 10.565-2.8 5.658 0 10.801 2.202 14.619 5.797l-0.011-0.010c18.085 16.881 39.897 30.023 64.045 38.044l1.235 0.356c8.728 2.807 14.934 10.854 14.934 20.351 0 0.045-0 0.091-0 0.136l0-0.007v28.587c0 9.897 8.023 17.92 17.92 17.92v0h39.253c9.897 0 17.92-8.023 17.92-17.92v0-31.147c-0-0.038-0-0.084-0-0.129 0-9.497 6.205-17.544 14.783-20.309l0.151-0.042c25.372-8.419 47.176-21.554 65.388-38.499l-0.108 0.099c3.807-3.584 8.951-5.786 14.608-5.786 3.886 0 7.53 1.039 10.668 2.855l-0.103-0.055 25.6 14.933c2.591 1.541 5.713 2.452 9.048 2.452 6.727 0 12.587-3.706 15.652-9.188l0.047-0.091 19.627-34.133c1.541-2.591 2.452-5.713 2.452-9.048 0-6.727-3.706-12.587-9.188-15.652l-0.091-0.047-25.6-14.933c-6.455-3.749-10.727-10.631-10.727-18.51 0-1.605 0.177-3.169 0.513-4.673l-0.027 0.142c2.618-11.284 4.118-24.24 4.118-37.547s-1.5-26.263-4.341-38.709l0.223 1.163c-0.309-1.362-0.487-2.925-0.487-4.53 0-7.879 4.271-14.76 10.625-18.455l0.102-0.055 25.6-14.933c5.394-3.156 8.959-8.921 8.959-15.518 0-3.408-0.952-6.595-2.604-9.307l0.045 0.079zM640 740.267c-0.508 0.009-1.107 0.015-1.707 0.015-55.376 0-100.267-44.891-100.267-100.267s44.891-100.267 100.267-100.267c55.371 0 100.258 44.883 100.267 100.251l0 0.001c0 0.004 0 0.009 0 0.015 0 54.776-43.923 99.292-98.47 100.251l-0.090 0.001z",
|
|
538
|
+
"M695.893 640c0 31.812-25.788 57.6-57.6 57.6s-57.6-25.788-57.6-57.6c0-31.812 25.788-57.6 57.6-57.6s57.6 25.788 57.6 57.6z",
|
|
539
|
+
"M640 256c-63.486 0.389-123.209 16.123-175.764 43.674l2.11-1.008-31.147-279.893c0.055-0.575 0.086-1.244 0.086-1.92 0-11.83-9.59-21.42-21.42-21.42-11.154 0-20.316 8.525-21.327 19.415l-0.006 0.085-64 206.507-64.853-206.507c-1.017-10.974-10.18-19.5-21.333-19.5-11.83 0-21.42 9.59-21.42 21.42 0 0.676 0.031 1.345 0.093 2.005l-0.006-0.085-42.667 384c-0.082 0.704-0.129 1.52-0.129 2.347 0 11.853 9.609 21.462 21.462 21.462 11.026 0 20.111-8.315 21.324-19.017l0.009-0.098 31.573-283.307 55.893 174.507c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v0l55.040-174.933 20.48 197.547c-103.021 69.937-169.817 186.528-169.817 318.719 0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-0.299 0-0.597 0-0.895 0.001l0.046-0zM853.333 671.147l12.8 7.253c18.244 10.669 30.306 30.164 30.306 52.477 0 11.155-3.015 21.606-8.274 30.582l0.155-0.286-19.627 34.133c-10.669 18.244-30.164 30.306-52.477 30.306-11.155 0-21.606-3.015-30.582-8.274l0.286 0.155-12.8-6.827c-15.719 12.654-33.735 23.408-53.154 31.464l-1.459 0.536v14.080c0 33.461-27.126 60.587-60.587 60.587v0h-39.253c-33.461 0-60.587-27.126-60.587-60.587v0-13.653c-20.883-8.717-38.897-19.609-55.013-32.742l0.399 0.315-12.373 7.253c-8.663 5.009-19.057 7.965-30.141 7.965-22.32 0-41.841-11.985-52.478-29.871l-0.155-0.281-19.627-34.133c-5.123-8.74-8.148-19.247-8.148-30.461 0-22.394 12.065-41.971 30.050-52.584l0.285-0.155 12.8-7.253c-1.437-9.424-2.258-20.296-2.258-31.36s0.821-21.936 2.405-32.56l-0.147 1.2-12.8-7.253c-18.244-10.669-30.306-30.164-30.306-52.477 0-11.155 3.015-21.606 8.274-30.582l-0.155 0.286 19.627-34.133c10.669-18.244 30.164-30.306 52.477-30.306 11.155 0 21.606 3.015 30.582 8.274l-0.286-0.155 12.8 7.253c15.603-12.618 33.473-23.366 52.734-31.459l1.452-0.541v-14.080c0-33.461 27.126-60.587 60.587-60.587l-0-0h39.253c33.461 0 60.587 27.126 60.587 60.587l0-0v13.653c20.883 8.553 38.904 19.311 55.028 32.324l-0.415-0.324 12.373-7.253c8.691-5.104 19.142-8.119 30.297-8.119 22.312 0 41.808 12.061 52.322 30.019l0.155 0.286 19.627 34.133c5.104 8.691 8.119 19.142 8.119 30.297 0 22.312-12.061 41.808-30.019 52.322l-0.286 0.155-12.8 7.253c1.604 9.927 2.521 21.37 2.521 33.028 0 10.624-0.761 21.070-2.232 31.286l0.138-1.167z",
|
|
540
|
+
"M160.427 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.077 0.682-0.121 1.472-0.121 2.273 0 10.923 8.209 19.928 18.794 21.184l0.101 0.010h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.077-0.682 0.121-1.472 0.121-2.273 0-10.923-8.209-19.928-18.794-21.184l-0.101-0.010z",
|
|
541
|
+
"M75.093 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.109 0.809-0.171 1.744-0.171 2.694 0 10.94 8.235 19.957 18.845 21.19l0.099 0.009h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.109-0.809 0.171-1.744 0.171-2.694 0-10.94-8.235-19.957-18.845-21.19l-0.099-0.009z"
|
|
542
|
+
],
|
|
543
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
544
|
+
"isMulticolor": false,
|
|
545
|
+
"isMulticolor2": false,
|
|
546
|
+
"tags": ["md-actuating"],
|
|
547
|
+
"grid": 0
|
|
548
|
+
},
|
|
549
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
550
|
+
"properties": { "order": 70, "id": 9, "name": "md-actuating", "prevSize": 32, "code": 59704 },
|
|
551
|
+
"setIdx": 0,
|
|
552
|
+
"setId": 1,
|
|
553
|
+
"iconIdx": 29
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"icon": {
|
|
557
|
+
"paths": [
|
|
558
|
+
"M160.427 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.077 0.682-0.121 1.472-0.121 2.273 0 10.923 8.209 19.928 18.794 21.184l0.101 0.010h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.077-0.682 0.121-1.472 0.121-2.273 0-10.923-8.209-19.928-18.794-21.184l-0.101-0.010z",
|
|
559
|
+
"M75.093 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.109 0.809-0.171 1.744-0.171 2.694 0 10.94 8.235 19.957 18.845 21.19l0.099 0.009h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.109-0.809 0.171-1.744 0.171-2.694 0-10.94-8.235-19.957-18.845-21.19l-0.099-0.009z",
|
|
560
|
+
"M961.28 500.907c-29.507 0.242-53.333 24.217-53.333 53.758 0 0.001 0 0.001 0 0.002l-0-0v183.467c-5.061 54.892-50.883 97.543-106.667 97.543s-101.606-42.651-106.635-97.122l-0.031-0.421v-183.467c0.136-1.434 0.213-3.1 0.213-4.785 0-29.691-24.069-53.76-53.76-53.76s-53.76 24.069-53.76 53.76c0 1.684 0.077 3.351 0.229 4.996l-0.016-0.211v183.467c-5.061 54.892-50.883 97.543-106.667 97.543s-101.606-42.651-106.635-97.122l-0.031-0.421v-183.467c0-29.691-24.069-53.76-53.76-53.76l0-0c-19.494 0.156-36.46 10.831-45.517 26.622l-0.136 0.258c-10.692 33.656-16.853 72.365-16.853 112.514 0 212.077 171.923 384 384 384s384-171.923 384-384c0-40.148-6.161-78.858-17.59-115.234l0.737 2.72c-9.256-16.18-26.414-26.908-46.078-26.908-0.601 0-1.199 0.010-1.796 0.030l0.087-0.002z",
|
|
561
|
+
"M426.667 554.667v183.467c0 29.691 24.069 53.76 53.76 53.76s53.76-24.069 53.76-53.76v0-183.467c-0.272-2.862-0.427-6.188-0.427-9.55 0-59.146 47.947-107.093 107.093-107.093s107.093 47.947 107.093 107.093c0 3.362-0.155 6.688-0.458 9.971l0.031-0.421v183.467c2.536 27.56 25.54 48.975 53.547 48.975s51.011-21.416 53.531-48.764l0.016-0.211v-183.467c0-59.146 47.947-107.093 107.093-107.093v0h11.093c-67.778-114.957-190.974-190.873-331.9-190.873-63.71 0-123.797 15.515-176.687 42.974l2.134-1.008-31.147-279.893c0.055-0.575 0.086-1.244 0.086-1.92 0-11.83-9.59-21.42-21.42-21.42-11.154 0-20.316 8.525-21.327 19.415l-0.006 0.085-64 206.507-64.853-206.507c-1.017-10.974-10.18-19.5-21.333-19.5-11.83 0-21.42 9.59-21.42 21.42 0 0.676 0.031 1.345 0.093 2.005l-0.006-0.085-42.667 384c-0.082 0.704-0.129 1.52-0.129 2.347 0 11.853 9.609 21.462 21.462 21.462 11.026 0 20.111-8.315 21.324-19.017l0.009-0.098 31.573-283.307 55.893 174.507c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v0l55.040-174.933 20.48 197.547c-48.68 33.351-88.397 76.202-117.199 126.143l-0.988 1.857h11.52c58.369 0.232 105.709 47.124 106.665 105.297l0.001 0.090z"
|
|
562
|
+
],
|
|
563
|
+
"attrs": [{}, {}, {}, {}],
|
|
564
|
+
"isMulticolor": false,
|
|
565
|
+
"isMulticolor2": false,
|
|
566
|
+
"tags": ["md-flapping"],
|
|
567
|
+
"grid": 0
|
|
568
|
+
},
|
|
569
|
+
"attrs": [{}, {}, {}, {}],
|
|
570
|
+
"properties": { "order": 71, "id": 10, "name": "md-flapping", "prevSize": 32, "code": 59705 },
|
|
571
|
+
"setIdx": 0,
|
|
572
|
+
"setId": 1,
|
|
573
|
+
"iconIdx": 30
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"icon": {
|
|
577
|
+
"paths": [
|
|
578
|
+
"M160.427 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.077 0.682-0.121 1.472-0.121 2.273 0 10.923 8.209 19.928 18.794 21.184l0.101 0.010h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.077-0.682 0.121-1.472 0.121-2.273 0-10.923-8.209-19.928-18.794-21.184l-0.101-0.010z",
|
|
579
|
+
"M75.093 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.109 0.809-0.171 1.744-0.171 2.694 0 10.94 8.235 19.957 18.845 21.19l0.099 0.009h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.109-0.809 0.171-1.744 0.171-2.694 0-10.94-8.235-19.957-18.845-21.19l-0.099-0.009z",
|
|
580
|
+
"M640 256c-63.486 0.389-123.209 16.123-175.764 43.674l2.11-1.008-31.147-279.893c0.055-0.575 0.086-1.244 0.086-1.92 0-11.83-9.59-21.42-21.42-21.42-11.154 0-20.316 8.525-21.327 19.415l-0.006 0.085-64 206.507-64.853-206.507c-1.017-10.974-10.18-19.5-21.333-19.5-11.83 0-21.42 9.59-21.42 21.42 0 0.676 0.031 1.345 0.093 2.005l-0.006-0.085-42.667 384c-0.082 0.704-0.129 1.52-0.129 2.347 0 11.853 9.609 21.462 21.462 21.462 11.026 0 20.111-8.315 21.324-19.017l0.009-0.098 31.573-283.307 55.893 174.507c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v0l55.040-174.933 20.48 197.547c-103.021 69.937-169.817 186.528-169.817 318.719 0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-0.299 0-0.597 0-0.895 0.001l0.046-0zM560.213 817.92c-1.737 13.32-13.013 23.5-26.667 23.5s-24.93-10.18-26.652-23.365l-0.014-0.136v-369.92c1.737-13.32 13.013-23.5 26.667-23.5s24.93 10.18 26.652 23.365l0.014 0.136zM773.547 817.92c0.136 1.015 0.213 2.188 0.213 3.38 0 14.845-12.035 26.88-26.88 26.88s-26.88-12.035-26.88-26.88c0-1.191 0.078-2.365 0.228-3.515l-0.014 0.136v-369.92c1.737-13.32 13.013-23.5 26.667-23.5s24.93 10.18 26.652 23.365l0.014 0.136z"
|
|
581
|
+
],
|
|
582
|
+
"attrs": [{}, {}, {}],
|
|
583
|
+
"isMulticolor": false,
|
|
584
|
+
"isMulticolor2": false,
|
|
585
|
+
"tags": ["md-paused"],
|
|
586
|
+
"grid": 0
|
|
587
|
+
},
|
|
588
|
+
"attrs": [{}, {}, {}],
|
|
589
|
+
"properties": { "order": 72, "id": 11, "name": "md-paused", "prevSize": 32, "code": 59706 },
|
|
590
|
+
"setIdx": 0,
|
|
591
|
+
"setId": 1,
|
|
592
|
+
"iconIdx": 31
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"icon": {
|
|
596
|
+
"paths": [
|
|
597
|
+
"M160.354 0.125c-0.64-0.067-1.383-0.106-2.134-0.106-10.997 0-20.073 8.222-21.418 18.853l-0.011 0.107-42.667 384c-0.082 0.701-0.128 1.514-0.128 2.338 0 10.959 8.253 19.99 18.883 21.216l0.099 0.009c0.712 0.080 1.538 0.125 2.375 0.125l0 0c10.946-0.010 19.961-8.26 21.178-18.881l0.009-0.098 42.667-384c0.082-0.701 0.128-1.514 0.128-2.338 0-10.959-8.253-19.99-18.883-21.216l-0.099-0.009z",
|
|
598
|
+
"M75.021 0.125c-0.617-0.062-1.334-0.098-2.060-0.098-11.011 0-20.104 8.21-21.491 18.843l-0.012 0.109-42.667 384c-0.082 0.701-0.128 1.514-0.128 2.338 0 10.959 8.253 19.99 18.883 21.216l0.099 0.009c0.712 0.080 1.538 0.125 2.375 0.125l0 0c10.946-0.010 19.961-8.26 21.178-18.881l0.009-0.098 42.667-384c0.082-0.701 0.128-1.514 0.128-2.338 0-10.959-8.253-19.99-18.883-21.216l-0.099-0.009z",
|
|
599
|
+
"M640 256c-63.448 0.017-123.274 15.507-175.916 42.901l2.116-1.002-30.992-278.92c-1.23-10.724-10.255-18.976-21.208-18.976-9.498 0-17.547 6.206-20.313 14.784l-0.042 0.151-64.958 206.667-64.875-206.667c-2.809-8.728-10.857-14.933-20.355-14.933-10.952 0-19.977 8.251-21.198 18.875l-0.009 0.099-42.792 384c-0.083 0.706-0.13 1.525-0.13 2.354 0 11.785 9.554 21.339 21.339 21.339 10.956 0 19.983-8.256 21.199-18.886l0.009-0.098 31.562-283.314 54.875 174.814c2.807 8.73 10.855 14.937 20.354 14.937s17.548-6.207 20.312-14.786l0.042-0.151 54.959-174.833 21.877 196.89c-103.058 69.936-169.881 186.548-169.881 318.769 0 212.085 171.929 384.013 384.013 384.013s384.013-171.929 384.013-384.013c0-212.081-171.922-384.007-384.001-384.013l-0-0zM836.505 659.081l-307.677 153.839c-3.933 2.857-8.857 4.57-14.182 4.57-13.415 0-24.289-10.875-24.289-24.289 0-1.365 0.113-2.705 0.329-4.009l-0.019 0.142v-298.667c-0.197-1.163-0.31-2.502-0.31-3.867 0-13.415 10.875-24.289 24.289-24.289 5.325 0 10.249 1.713 14.252 4.619l-0.070-0.049 307.677 153.839c20.989 10.495 20.989 27.667 0 38.161z"
|
|
600
|
+
],
|
|
601
|
+
"attrs": [{}, {}, {}],
|
|
602
|
+
"isMulticolor": false,
|
|
603
|
+
"isMulticolor2": false,
|
|
604
|
+
"tags": ["md-resumed"],
|
|
605
|
+
"grid": 0
|
|
606
|
+
},
|
|
607
|
+
"attrs": [{}, {}, {}],
|
|
608
|
+
"properties": { "order": 78, "id": 12, "name": "md-resumed", "prevSize": 32, "code": 59712 },
|
|
609
|
+
"setIdx": 0,
|
|
610
|
+
"setId": 1,
|
|
611
|
+
"iconIdx": 32
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"icon": {
|
|
615
|
+
"paths": [
|
|
616
|
+
"M160.427 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.077 0.682-0.121 1.472-0.121 2.273 0 10.923 8.209 19.928 18.794 21.184l0.101 0.010h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.077-0.682 0.121-1.472 0.121-2.273 0-10.923-8.209-19.928-18.794-21.184l-0.101-0.010z",
|
|
617
|
+
"M75.093 0c-0.57-0.053-1.232-0.083-1.901-0.083-10.994 0-20.083 8.153-21.552 18.742l-0.013 0.114-42.667 384c-0.109 0.809-0.171 1.744-0.171 2.694 0 10.94 8.235 19.957 18.845 21.19l0.099 0.009h2.133c0.046 0 0.1 0.001 0.154 0.001 10.88 0 19.858-8.145 21.169-18.67l0.011-0.104 42.667-384c0.109-0.809 0.171-1.744 0.171-2.694 0-10.94-8.235-19.957-18.845-21.19l-0.099-0.009z",
|
|
618
|
+
"M640 256c-63.486 0.389-123.209 16.123-175.764 43.674l2.11-1.008-31.147-279.893c0.055-0.575 0.086-1.244 0.086-1.92 0-11.83-9.59-21.42-21.42-21.42-11.154 0-20.316 8.525-21.327 19.415l-0.006 0.085-64 206.507-64.853-206.507c-1.017-10.974-10.18-19.5-21.333-19.5-11.83 0-21.42 9.59-21.42 21.42 0 0.676 0.031 1.345 0.093 2.005l-0.006-0.085-42.667 384c-0.082 0.704-0.129 1.52-0.129 2.347 0 11.853 9.609 21.462 21.462 21.462 11.026 0 20.111-8.315 21.324-19.017l0.009-0.098 31.573-283.307 55.893 174.507c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v0l55.040-174.933 20.48 197.547c-103.021 69.937-169.817 186.528-169.817 318.719 0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384-0.299 0-0.597 0-0.895 0.001l0.046-0zM645.547 917.333c-21.208 0-38.4-17.192-38.4-38.4s17.192-38.4 38.4-38.4c21.208 0 38.4 17.192 38.4 38.4v0c0 21.208-17.192 38.4-38.4 38.4h-0zM672.427 682.667v42.667c-1.737 13.32-13.013 23.5-26.667 23.5s-24.93-10.18-26.652-23.365l-0.014-0.136v-68.267c0.24-14.661 12.181-26.453 26.877-26.453 0.001 0 0.002 0 0.004 0l-0-0c56.083 0 101.547-45.464 101.547-101.547s-45.464-101.547-101.547-101.547c-56.083 0-101.547 45.464-101.547 101.547v0c-1.737 13.32-13.013 23.5-26.667 23.5s-24.93-10.18-26.652-23.365l-0.014-0.136c0.565-85.108 69.689-153.884 154.877-153.884 85.538 0 154.88 69.342 154.88 154.88 0 76.19-55.014 139.531-127.486 152.465l-0.937 0.139z"
|
|
619
|
+
],
|
|
620
|
+
"attrs": [{}, {}, {}],
|
|
621
|
+
"isMulticolor": false,
|
|
622
|
+
"isMulticolor2": false,
|
|
623
|
+
"tags": ["md-unknown"],
|
|
624
|
+
"grid": 0
|
|
625
|
+
},
|
|
626
|
+
"attrs": [{}, {}, {}],
|
|
627
|
+
"properties": { "order": 73, "id": 13, "name": "md-unknown", "prevSize": 32, "code": 59707 },
|
|
628
|
+
"setIdx": 0,
|
|
629
|
+
"setId": 1,
|
|
630
|
+
"iconIdx": 33
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"icon": {
|
|
634
|
+
"paths": [
|
|
635
|
+
"M567.467 806.4h-110.933c-21.333 0-42.667 17.067-42.667 42.667 0 21.333 17.067 42.667 42.667 42.667h110.933c21.333 0 42.667-17.067 42.667-42.667 0-21.333-21.333-42.667-42.667-42.667z",
|
|
636
|
+
"M554.667 213.333v-81.067c0-21.333-17.067-42.667-42.667-42.667s-42.667 17.067-42.667 42.667v81.067c0 21.333 17.067 42.667 42.667 42.667s42.667-17.067 42.667-42.667z",
|
|
637
|
+
"M209.067 477.867h-81.067c-21.333 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h81.067c21.333 0 42.667-17.067 42.667-42.667s-21.333-42.667-42.667-42.667z",
|
|
638
|
+
"M896 477.867h-81.067c-21.333 0-42.667 17.067-42.667 42.667s17.067 42.667 42.667 42.667h81.067c21.333 0 42.667-17.067 42.667-42.667s-17.067-42.667-42.667-42.667z",
|
|
639
|
+
"M221.867 226.133c-17.067-17.067-42.667-17.067-59.733-4.267s-17.067 42.667-4.267 59.733c0 0 4.267 4.267 4.267 4.267l68.267 68.267c17.067 17.067 42.667 17.067 59.733 0s17.067-42.667 0-55.467l-68.267-72.533z",
|
|
640
|
+
"M857.6 285.867c17.067-17.067 17.067-42.667 0-59.733s-42.667-17.067-59.733 0c0 0 0 0 0 0l-68.267 68.267c-17.067 17.067-17.067 42.667 0 59.733s42.667 17.067 59.733 0c0 0 0 0 0 0l68.267-68.267z",
|
|
641
|
+
"M512 324.267c-102.4 0-192 81.067-192 183.467 0 4.267 0 4.267 0 8.533-4.267 64 21.333 123.733 76.8 162.133 4.267 4.267 4.267 8.533 4.267 12.8v17.067c0 17.067 12.8 25.6 25.6 25.6h166.4c17.067 0 25.6-12.8 25.6-25.6v-21.333c0-4.267 4.267-8.533 4.267-12.8 51.2-34.133 81.067-98.133 76.8-162.133 0-102.4-81.067-192-183.467-192 0 4.267 0 4.267-4.267 4.267z"
|
|
642
|
+
],
|
|
643
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
644
|
+
"isMulticolor": false,
|
|
645
|
+
"isMulticolor2": false,
|
|
646
|
+
"tags": ["illuminated-sm"],
|
|
647
|
+
"grid": 0
|
|
648
|
+
},
|
|
649
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
650
|
+
"properties": { "order": 65, "id": 14, "name": "illuminated-sm", "prevSize": 32, "code": 59698 },
|
|
651
|
+
"setIdx": 0,
|
|
652
|
+
"setId": 1,
|
|
653
|
+
"iconIdx": 34
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"icon": {
|
|
657
|
+
"paths": [
|
|
658
|
+
"M512 192c-166.4 4.267-294.4 132.267-298.667 298.667 0 106.667 55.467 209.067 149.333 260.267v145.067c0 38.4 21.333 106.667 149.333 106.667s149.333-68.267 149.333-106.667v-145.067c93.867-51.2 149.333-153.6 149.333-260.267-4.267-166.4-132.267-294.4-298.667-298.667zM618.667 853.333h-213.333v-85.333h213.333v85.333zM512 960c-106.667 0-106.667-46.933-106.667-64h213.333c0 17.067 0 64-106.667 64zM614.4 725.333h-204.8c-93.867-38.4-153.6-132.267-153.6-234.667 4.267-140.8 115.2-251.733 256-256 140.8 4.267 256 115.2 256 256 0 102.4-59.733 196.267-153.6 234.667z",
|
|
659
|
+
"M512 128c12.8 0 21.333-8.533 21.333-21.333v-85.333c0-12.8-8.533-21.333-21.333-21.333s-21.333 8.533-21.333 21.333v85.333c0 12.8 8.533 21.333 21.333 21.333z",
|
|
660
|
+
"M140.8 426.667h-98.133c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h98.133c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z",
|
|
661
|
+
"M217.6 230.4c4.267 4.267 8.533 4.267 17.067 4.267s12.8 0 17.067-4.267c4.267-8.533 4.267-25.6 0-34.133l-85.333-85.333c-8.533-8.533-21.333-8.533-29.867 0s-8.533 25.6-4.267 34.133l85.333 85.333z",
|
|
662
|
+
"M981.333 426.667h-98.133c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h98.133c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333z",
|
|
663
|
+
"M789.333 234.667c4.267 0 12.8 0 17.067-4.267l85.333-85.333c8.533-8.533 8.533-21.333 0-29.867s-21.333-8.533-29.867 0l-85.333 85.333c-8.533 8.533-8.533 21.333 0 29.867 0 4.267 8.533 4.267 12.8 4.267z",
|
|
664
|
+
"M576 405.333c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-128c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h42.667v170.667h-42.667c-12.8 0-21.333 8.533-21.333 21.333s8.533 21.333 21.333 21.333h128c12.8 0 21.333-8.533 21.333-21.333s-8.533-21.333-21.333-21.333h-42.667v-170.667h42.667z"
|
|
665
|
+
],
|
|
666
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
667
|
+
"isMulticolor": false,
|
|
668
|
+
"isMulticolor2": false,
|
|
669
|
+
"tags": ["illuminated"],
|
|
670
|
+
"grid": 0
|
|
671
|
+
},
|
|
672
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
673
|
+
"properties": { "order": 64, "id": 15, "name": "illuminated", "prevSize": 32, "code": 59699 },
|
|
674
|
+
"setIdx": 0,
|
|
675
|
+
"setId": 1,
|
|
676
|
+
"iconIdx": 35
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"icon": {
|
|
680
|
+
"paths": [
|
|
681
|
+
"M276.864 958.549c-5.248 0-10.496-0.64-15.573-1.92l-210.944-52.736c-29.824-7.467-50.133-35.115-48.341-65.792l38.059-701.44c0.256-4.523 0.981-9.003 2.176-13.355 7.552-27.733 32.981-47.147 61.781-47.147 5.675 0 11.307 0.768 16.811 2.261l171.691 46.848c1.835 0.512 3.755 0.768 5.632 0.768 2.048 0 4.053-0.299 6.016-0.896l189.483-56.832c5.973-1.749 12.16-2.688 18.347-2.688s12.373 0.896 18.389 2.688l189.483 57.088c2.005 0.597 4.053 0.896 6.101 0.896 1.877 0 3.755-0.256 5.547-0.768l171.947-46.933c4.395-1.195 8.875-1.92 13.355-2.176 1.152-0.043 2.261-0.085 3.371-0.085 15.872 0 31.104 5.803 42.837 16.341 12.757 11.435 20.267 27.093 21.205 44.16l37.888 701.44c1.621 30.549-18.731 58.112-48.427 65.536l-211.072 52.736c-5.035 1.28-10.283 1.92-15.573 1.92-5.675 0-11.307-0.768-16.811-2.219l-212.736-57.984c-1.835-0.512-3.712-0.768-5.589-0.768-1.92 0-3.797 0.256-5.632 0.768l-212.693 57.984c-5.419 1.536-11.051 2.304-16.725 2.304zM511.957 854.869c5.675 0 11.349 0.768 16.811 2.261l212.693 57.984c1.792 0.469 3.669 0.725 5.589 0.725 1.749 0 3.541-0.213 5.248-0.64l211.072-52.736c9.899-2.475 16.683-11.648 16.128-21.845l-37.888-701.44c-0.299-5.675-2.816-10.88-7.040-14.72-3.883-3.499-9.003-5.419-14.379-5.419l-1.109 0.043c-1.408 0.085-2.944 0.341-4.437 0.725l-171.861 46.933c-5.461 1.493-11.136 2.261-16.853 2.261-6.229 0-12.459-0.896-18.432-2.731l-189.397-57.088c-1.963-0.555-4.011-0.896-6.101-0.896s-4.139 0.299-6.144 0.896l-189.355 56.832c-5.931 1.792-12.117 2.688-18.347 2.688-5.717 0-11.392-0.768-16.896-2.304l-171.648-46.805c-1.877-0.512-3.755-0.768-5.632-0.768-9.6 0-18.048 6.443-20.565 15.701-0.427 1.493-0.64 2.987-0.725 4.48 0 0-38.101 701.611-38.101 701.696-0.512 10.155 6.229 19.328 16.085 21.803l210.987 52.736c1.707 0.427 3.456 0.64 5.205 0.64 1.92 0 3.797-0.256 5.589-0.725l212.651-57.984c5.504-1.536 11.179-2.304 16.853-2.304z",
|
|
682
|
+
"M832.043 511.787c-5.717 0-11.051-2.219-15.104-6.229l-70.229-70.229-70.229 70.229c-4.011 4.011-9.387 6.229-15.104 6.229s-11.051-2.219-15.104-6.229-6.229-9.387-6.229-15.104 2.219-11.051 6.229-15.104l70.229-70.229-70.229-70.229c-4.011-4.011-6.229-9.387-6.229-15.104s2.219-11.051 6.229-15.104 9.387-6.229 15.104-6.229 11.051 2.219 15.104 6.229l70.229 70.229 70.229-70.229c4.011-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.229 6.229 9.387 6.229 15.104-2.219 11.051-6.229 15.104l-70.229 70.229 70.229 70.229c4.011 4.011 6.229 9.387 6.229 15.104s-2.219 11.051-6.229 15.104-9.387 6.229-15.104 6.229z",
|
|
683
|
+
"M170.667 554.453c-9.941 0-18.475-6.741-20.736-16.427-1.323-5.547-0.384-11.264 2.603-16.128s7.68-8.235 13.227-9.557l67.541-16c1.621-0.384 3.243-0.555 4.907-0.555 9.941 0 18.475 6.741 20.779 16.427 1.323 5.547 0.384 11.264-2.603 16.128s-7.68 8.235-13.227 9.557l-67.541 16c-1.621 0.341-3.285 0.555-4.949 0.555z",
|
|
684
|
+
"M362.709 639.787c-7.168 0-13.781-3.541-17.749-9.515l-32.811-49.237c-3.157-4.736-4.267-10.453-3.157-16 1.109-5.589 4.352-10.411 9.088-13.568 3.499-2.347 7.595-3.584 11.819-3.584 7.168 0 13.781 3.541 17.749 9.515l32.811 49.237c3.157 4.736 4.267 10.453 3.157 16-1.109 5.589-4.352 10.411-9.088 13.568-3.541 2.347-7.637 3.584-11.819 3.584z",
|
|
685
|
+
"M448 725.12c-11.776 0-21.333-9.557-21.333-21.333s9.557-21.333 21.333-21.333h64c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-64z",
|
|
686
|
+
"M576 661.12c-5.717 0-11.051-2.219-15.104-6.229s-6.229-9.429-6.229-15.104 2.219-11.051 6.229-15.104l42.667-42.667c4.011-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.229 6.229 9.387 6.229 15.104-2.219 11.051-6.229 15.104l-42.667 42.667c-4.053 4.011-9.387 6.229-15.104 6.229z"
|
|
687
|
+
],
|
|
688
|
+
"attrs": [{}, {}, {}, {}, {}, {}],
|
|
689
|
+
"isMulticolor": false,
|
|
690
|
+
"isMulticolor2": false,
|
|
691
|
+
"tags": ["maps-mark"],
|
|
692
|
+
"grid": 0
|
|
693
|
+
},
|
|
694
|
+
"attrs": [{}, {}, {}, {}, {}, {}],
|
|
695
|
+
"properties": { "order": 58, "id": 16, "name": "maps-mark", "prevSize": 32, "code": 59661 },
|
|
696
|
+
"setIdx": 0,
|
|
697
|
+
"setId": 1,
|
|
698
|
+
"iconIdx": 36
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"icon": {
|
|
702
|
+
"paths": [
|
|
703
|
+
"M650.667 138.667c0 76.583-62.083 138.667-138.667 138.667s-138.667-62.083-138.667-138.667c0-76.583 62.083-138.667 138.667-138.667s138.667 62.083 138.667 138.667z",
|
|
704
|
+
"M650.667 512c0 76.583-62.083 138.667-138.667 138.667s-138.667-62.083-138.667-138.667c0-76.583 62.083-138.667 138.667-138.667s138.667 62.083 138.667 138.667z",
|
|
705
|
+
"M650.667 885.333c0 76.583-62.083 138.667-138.667 138.667s-138.667-62.083-138.667-138.667c0-76.583 62.083-138.667 138.667-138.667s138.667 62.083 138.667 138.667z"
|
|
706
|
+
],
|
|
707
|
+
"attrs": [{}, {}, {}],
|
|
708
|
+
"isMulticolor": false,
|
|
709
|
+
"isMulticolor2": false,
|
|
710
|
+
"tags": ["navigation-menu-vertical"],
|
|
711
|
+
"grid": 0
|
|
712
|
+
},
|
|
713
|
+
"attrs": [{}, {}, {}],
|
|
714
|
+
"properties": { "order": 57, "id": 17, "name": "menu-kebab", "prevSize": 32, "code": 59648 },
|
|
715
|
+
"setIdx": 0,
|
|
716
|
+
"setId": 1,
|
|
717
|
+
"iconIdx": 37
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"icon": {
|
|
721
|
+
"paths": [
|
|
722
|
+
"M832 1023.957c-35.285 0-64-28.715-64-64v-128c0-35.285 28.715-64 64-64h41.685c-10.837-120.491-111.403-213.291-233.685-213.291h-106.667v213.291h42.667c35.285 0 64 28.715 64 64v128c0 35.285-28.715 64-64 64h-128c-35.285 0-64-28.715-64-64v-128c0-35.285 28.715-64 64-64h42.667v-213.291h-106.667c-122.283 0-222.848 92.8-233.685 213.291h41.685c35.285 0 64 28.715 64 64v128c0 35.285-28.715 64-64 64h-128c-35.285 0-64-28.715-64-64v-128c0-35.285 28.715-64 64-64h43.52c10.965-144.341 130.475-255.957 276.48-255.957h106.667v-256.043h-42.667c-35.285 0-64-28.715-64-64v-128c0-35.285 28.715-64 64-64h128c35.285 0 64 28.715 64 64v128c0 35.285-28.715 64-64 64h-42.667v256.043h106.667c146.005 0 265.515 111.616 276.437 255.957h43.563c35.285 0 64 28.715 64 64v128c0 35.285-28.715 64-64 64h-128zM832 810.624c-11.776 0-21.333 9.557-21.333 21.333v128c0 11.776 9.557 21.333 21.333 21.333h128c11.776 0 21.333-9.557 21.333-21.333v-128c0-11.776-9.557-21.333-21.333-21.333h-63.104c-0.299 0.043-0.597 0.043-0.896 0.043s-0.597 0-0.896-0.043h-63.104zM448 810.624c-11.776 0-21.333 9.557-21.333 21.333v128c0 11.776 9.557 21.333 21.333 21.333h128c11.776 0 21.333-9.557 21.333-21.333v-128c0-11.776-9.557-21.333-21.333-21.333h-128zM64 810.624c-11.776 0-21.333 9.557-21.333 21.333v128c0 11.776 9.557 21.333 21.333 21.333h128c11.776 0 21.333-9.557 21.333-21.333v-128c0-11.776-9.557-21.333-21.333-21.333h-63.104c-0.299 0.043-0.597 0.043-0.896 0.043s-0.597 0-0.896-0.043h-63.104zM448 42.624c-11.776 0-21.333 9.557-21.333 21.333v128c0 11.776 9.557 21.333 21.333 21.333h128c11.776 0 21.333-9.557 21.333-21.333v-128c0-11.776-9.557-21.333-21.333-21.333h-128z"
|
|
723
|
+
],
|
|
724
|
+
"attrs": [{}],
|
|
725
|
+
"isMulticolor": false,
|
|
726
|
+
"isMulticolor2": false,
|
|
727
|
+
"tags": ["hierarchy-4"],
|
|
728
|
+
"grid": 0
|
|
729
|
+
},
|
|
730
|
+
"attrs": [{}],
|
|
731
|
+
"properties": { "order": 56, "id": 18, "name": "load-balancer", "prevSize": 32, "code": 59649 },
|
|
732
|
+
"setIdx": 0,
|
|
733
|
+
"setId": 1,
|
|
734
|
+
"iconIdx": 38
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"icon": {
|
|
738
|
+
"paths": [
|
|
739
|
+
"M348.667 597.333l163.333 163.333 163.333-163.333 50 50-213.333 213.333-213.333-213.333z",
|
|
740
|
+
"M675.333 426.747l-163.333-163.333-163.333 163.333-50-50 213.333-213.333 213.333 213.333z"
|
|
741
|
+
],
|
|
742
|
+
"attrs": [{}, {}],
|
|
743
|
+
"isMulticolor": false,
|
|
744
|
+
"isMulticolor2": false,
|
|
745
|
+
"tags": ["expand-all"],
|
|
746
|
+
"grid": 0
|
|
747
|
+
},
|
|
748
|
+
"attrs": [{}, {}],
|
|
749
|
+
"properties": { "order": 18, "id": 19, "name": "expand-all", "prevSize": 32, "code": 59688 },
|
|
750
|
+
"setIdx": 0,
|
|
751
|
+
"setId": 1,
|
|
752
|
+
"iconIdx": 39
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"icon": {
|
|
756
|
+
"paths": ["M348.667 384l163.333 163.333 163.333-163.333 50 50-213.333 213.333-213.333-213.333z"],
|
|
757
|
+
"attrs": [{}],
|
|
758
|
+
"isMulticolor": false,
|
|
759
|
+
"isMulticolor2": false,
|
|
760
|
+
"tags": ["collapse"],
|
|
761
|
+
"grid": 0
|
|
762
|
+
},
|
|
763
|
+
"attrs": [{}],
|
|
764
|
+
"properties": { "order": 50, "id": 20, "name": "collapse", "prevSize": 32, "code": 59689 },
|
|
765
|
+
"setIdx": 0,
|
|
766
|
+
"setId": 1,
|
|
767
|
+
"iconIdx": 40
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"icon": {
|
|
771
|
+
"paths": ["M643.667 352.333l-163.333 163.333 163.333 163.333-50 50-213.333-213.333 213.333-213.333z"],
|
|
772
|
+
"attrs": [{}],
|
|
773
|
+
"isMulticolor": false,
|
|
774
|
+
"isMulticolor2": false,
|
|
775
|
+
"tags": ["expand"],
|
|
776
|
+
"grid": 0
|
|
777
|
+
},
|
|
778
|
+
"attrs": [{}],
|
|
779
|
+
"properties": { "order": 52, "id": 21, "name": "expand", "prevSize": 32, "code": 59690 },
|
|
780
|
+
"setIdx": 0,
|
|
781
|
+
"setId": 1,
|
|
782
|
+
"iconIdx": 41
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"icon": {
|
|
786
|
+
"paths": [
|
|
787
|
+
"M813.056 317.355c45.644 0 82.645-37.002 82.645-82.645s-37.002-82.645-82.645-82.645c-45.644 0-82.645 37.002-82.645 82.645s37.002 82.645 82.645 82.645zM813.056 274.688c-22.080 0-39.979-17.899-39.979-39.979s17.899-39.979 39.979-39.979c22.080 0 39.979 17.899 39.979 39.979s-17.899 39.979-39.979 39.979z",
|
|
788
|
+
"M887.712 90.817c1.557 5.044 6.746 8.029 11.874 6.844l46.674-10.823c27.241-6.145 55.307 6.182 69.213 30.399s10.405 54.67-8.519 74.975l-32.699 35.651c-3.656 3.931-3.656 10.018 0.033 13.984l32.534 35.135c18.98 20.437 22.445 50.85 8.55 75.033s-41.914 36.506-69.35 30.351l-46.292-10.903c-5.143-1.189-10.332 1.796-11.875 6.794l-14.087 46.004c-8.037 26.805-32.707 45.162-60.691 45.162s-52.653-18.358-60.662-45.069l-13.973-45.837c-1.557-5.044-6.746-8.029-11.874-6.844l-46.7 10.829c-27.215 6.104-55.234-6.218-69.129-30.402s-10.429-54.596 8.529-75.010l32.587-35.193c3.656-3.931 3.656-10.018-0.024-13.974l-32.517-35.074c-19.039-20.43-22.54-50.882-8.634-75.1s41.971-36.544 69.338-30.371l46.534 10.791c5.143 1.189 10.332-1.796 11.843-6.688l13.937-46.372c8.001-26.859 32.697-45.27 60.723-45.27 28 0 52.677 18.379 60.701 45.199l13.955 45.779zM832.927 57.421c-2.652-8.902-10.718-14.915-19.871-14.915s-17.219 6.013-19.847 14.835l-13.998 46.573c-8.155 26.418-35.328 42.052-62.281 35.823l-46.424-10.766c-8.983-2.026-18.238 2.039-22.823 10.024s-3.431 18.028 2.885 24.805l32.531 35.089c18.891 20.309 18.891 51.759 0.033 72.032l-32.576 35.18c-6.259 6.739-7.402 16.768-2.82 24.743s13.822 12.038 22.646 10.059l46.564-10.798c26.938-6.226 54.111 9.408 62.288 35.898l14.023 46.003c2.625 8.754 10.682 14.75 19.821 14.75s17.197-5.996 19.857-14.869l14.137-46.169c8.155-26.418 35.328-42.052 62.352-35.806l46.157 10.872c8.974 2.013 18.214-2.050 22.796-10.025s3.439-18.003-2.841-24.766l-32.522-35.122c-18.891-20.309-18.891-51.759-0.102-71.957l32.713-35.666c6.278-6.737 7.433-16.779 2.847-24.765s-13.84-12.051-22.699-10.053l-46.564 10.798c-26.938 6.226-54.111-9.408-62.288-35.898l-13.995-45.909z",
|
|
789
|
+
"M315.774 396.358c6.593 7.37 15.846 11.509 25.56 11.509s18.967-4.139 25.56-11.509l26.867-29.549c21.846-24.217 56.574-32.058 86.706-19.576s49.142 42.583 47.464 75.152l-2.047 39.827c-0.489 9.721 3.159 19.194 10.041 26.077s16.356 10.53 26.053 10.043l39.848-2.048c32.572-1.678 62.673 17.332 75.155 47.464s4.642 64.859-19.564 86.695l-29.691 26.824c-7.24 6.475-11.379 15.729-11.379 25.442s4.139 18.967 11.459 25.514l29.599 26.741c24.217 21.846 32.058 56.574 19.576 86.706s-42.583 49.142-75.152 47.464l-39.827-2.047c-9.721-0.489-19.194 3.159-26.077 10.041s-10.53 16.356-10.043 26.053l2.048 39.848c1.678 32.572-17.332 62.673-47.464 75.155s-64.859 4.642-86.695-19.564l-26.824-29.691c-6.475-7.24-15.729-11.379-25.442-11.379s-18.967 4.139-25.605 11.558l-26.992 29.499c-21.846 24.217-56.574 32.058-86.706 19.576s-49.142-42.583-47.464-75.152l2.047-39.827c0.489-9.721-3.159-19.194-10.041-26.077s-16.356-10.53-26.053-10.043l-39.974 2.054c-32.443 1.479-62.331-17.542-74.73-47.56s-4.645-64.586 19.435-86.477l29.691-26.824c7.24-6.475 11.379-15.729 11.379-25.442s-4.139-18.967-11.459-25.514l-29.599-26.741c-24.217-21.846-32.058-56.574-19.576-86.706s42.583-49.142 75.152-47.464l39.827 2.047c9.721 0.489 19.194-3.159 26.077-10.041s10.53-16.356 10.042-26.057l-2.051-40.048c-1.556-32.459 17.418-62.406 47.433-74.861s64.617-4.742 86.513 19.296l26.923 29.611zM257.295 395.465c-9.766-10.722-25.209-14.164-38.604-8.605s-21.863 18.924-21.172 33.34l2.049 39.999c1.095 21.766-7.074 42.979-22.484 58.39s-36.623 23.579-58.413 22.483l-39.854-2.048c-14.537-0.749-27.97 7.735-33.541 21.183s-2.072 28.946 8.748 38.707l29.531 26.68c16.291 14.57 25.602 35.39 25.602 57.246s-9.312 42.676-25.523 57.174l-29.562 26.708c-10.725 9.75-14.185 25.178-8.652 38.574s18.872 21.886 33.228 21.231l39.874-2.049c21.766-1.095 42.979 7.074 58.39 22.484s23.579 36.623 22.483 58.413l-2.048 39.854c-0.749 14.537 7.735 27.97 21.183 33.541s28.946 2.072 38.797-8.848l26.931-29.431c14.57-16.291 35.39-25.602 57.246-25.602s42.676 9.312 57.174 25.523l26.763 29.623c9.75 10.808 25.248 14.307 38.696 8.736s21.932-19.004 21.182-33.544l-2.049-39.874c-1.095-21.766 7.074-42.979 22.484-58.39s36.623-23.579 58.413-22.483l39.854 2.048c14.537 0.749 27.97-7.735 33.541-21.183s2.072-28.946-8.748-38.707l-29.531-26.68c-16.291-14.57-25.602-35.39-25.602-57.246s9.312-42.676 25.523-57.174l29.623-26.763c10.808-9.75 14.307-25.248 8.736-38.696s-19.004-21.932-33.544-21.182l-39.874 2.049c-21.766 1.095-42.979-7.074-58.39-22.484s-23.579-36.623-22.483-58.413l2.048-39.854c0.749-14.537-7.735-27.97-21.183-33.541s-28.946-2.072-38.752 8.798l-26.805 29.481c-14.57 16.291-35.39 25.602-57.246 25.602-21.824 0-42.616-9.285-57.182-25.532l-26.856-29.537z",
|
|
790
|
+
"M341.333 853.376c94.257 0 170.667-76.41 170.667-170.667s-76.41-170.667-170.667-170.667c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667zM341.333 810.709c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128z"
|
|
791
|
+
],
|
|
792
|
+
"attrs": [{}, {}, {}, {}],
|
|
793
|
+
"isMulticolor": false,
|
|
794
|
+
"isMulticolor2": false,
|
|
795
|
+
"tags": ["md-actuation-launched"],
|
|
796
|
+
"grid": 0
|
|
797
|
+
},
|
|
798
|
+
"attrs": [{}, {}, {}, {}],
|
|
799
|
+
"properties": { "order": 51, "id": 22, "name": "md-actuation-launched", "prevSize": 32, "code": 59691 },
|
|
800
|
+
"setIdx": 0,
|
|
801
|
+
"setId": 1,
|
|
802
|
+
"iconIdx": 42
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"icon": {
|
|
806
|
+
"paths": [
|
|
807
|
+
"M384 37.631l290.518 581.036h-581.036l290.518-581.036zM384 133.036l-221.482 442.964h442.964l-221.482-442.964z",
|
|
808
|
+
"M672 437.333c-147.276 0-266.667 119.391-266.667 266.667s119.391 266.667 266.667 266.667c147.276 0 266.667-119.391 266.667-266.667-0.165-147.208-119.459-266.502-266.667-266.667zM806.955 651.861l-118.741 158.379c-10.922 14.615-27.702 23.706-45.909 24.875-1.493 0-3.072 0-4.565 0-16.605-0.014-32.511-6.684-44.16-18.517l-61.227-61.269c-11.749-12.608-11.402-32.256 0.784-44.443s31.834-12.533 44.443-0.784l52.651 52.651c2.249 2.237 5.374 3.362 8.533 3.072 3.090-0.212 5.93-1.773 7.765-4.267l109.355-148.267c6.607-9.828 18.097-15.21 29.877-13.996s21.93 8.827 26.394 19.796c4.464 10.969 2.514 23.506-5.071 32.601l-0.128 0.171z"
|
|
809
|
+
],
|
|
810
|
+
"attrs": [{}, {}],
|
|
811
|
+
"isMulticolor": false,
|
|
812
|
+
"isMulticolor2": false,
|
|
813
|
+
"tags": ["md-delta-resolved"],
|
|
814
|
+
"grid": 0
|
|
815
|
+
},
|
|
816
|
+
"attrs": [{}, {}],
|
|
817
|
+
"properties": { "order": 53, "id": 23, "name": "md-delta-resolved", "prevSize": 32, "code": 59692 },
|
|
818
|
+
"setIdx": 0,
|
|
819
|
+
"setId": 1,
|
|
820
|
+
"iconIdx": 43
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"icon": {
|
|
824
|
+
"paths": [
|
|
825
|
+
"M640 853.504c129.603 0 234.667-105.064 234.667-234.667s-105.064-234.667-234.667-234.667c-129.603 0-234.667 105.064-234.667 234.667s105.064 234.667 234.667 234.667zM640 810.837c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192z",
|
|
826
|
+
"M788.243 797.25l135.339 135.339c8.331 8.331 21.839 8.331 30.17 0s8.331-21.839 0-30.17l-135.339-135.339c-8.331-8.331-21.839-8.331-30.17 0s-8.331 21.839 0 30.17z",
|
|
827
|
+
"M384 37.631l290.518 581.036h-581.036l290.518-581.036zM384 133.036l-221.482 442.964h442.964l-221.482-442.964z"
|
|
828
|
+
],
|
|
829
|
+
"attrs": [{}, {}, {}],
|
|
830
|
+
"isMulticolor": false,
|
|
831
|
+
"isMulticolor2": false,
|
|
832
|
+
"tags": ["md-delta-detected"],
|
|
833
|
+
"grid": 0
|
|
834
|
+
},
|
|
835
|
+
"attrs": [{}, {}, {}],
|
|
836
|
+
"properties": { "order": 54, "id": 24, "name": "md-delta-detected", "prevSize": 32, "code": 59693 },
|
|
837
|
+
"setIdx": 0,
|
|
838
|
+
"setId": 1,
|
|
839
|
+
"iconIdx": 44
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"icon": {
|
|
843
|
+
"paths": [
|
|
844
|
+
"M1024 255.917c0 11.782-9.551 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-33.112c0-9.72-6.57-18.211-15.979-20.651-11.405-2.957-18.253-14.6-15.296-26.005s14.6-18.253 26.005-15.296c28.226 7.319 47.936 32.792 47.936 61.952v33.112zM1024 426.584c0 11.782-9.551 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-85.333c0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v85.333zM1024 597.251c0 11.782-9.551 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-85.333c0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v85.333zM1021.972 773.163c-2.944 11.408-14.578 18.27-25.987 15.327s-18.27-14.578-15.327-25.987c0.447-1.732 0.675-3.521 0.675-5.34v-74.579c0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v74.579c0 5.425-0.685 10.795-2.028 16zM855.468 859.479c-11.177 3.726-23.259-2.315-26.985-13.492s2.315-23.259 13.492-26.985l80.954-26.985c11.177-3.726 23.259 2.315 26.985 13.492s-2.315 23.259-13.492 26.985l-80.954 26.985zM693.559 913.448c-11.177 3.726-23.259-2.315-26.985-13.492s2.315-23.259 13.492-26.985l80.954-26.985c11.177-3.726 23.259 2.315 26.985 13.492s-2.315 23.259-13.492 26.985l-80.954 26.985zM531.651 967.418c-11.177 3.726-23.259-2.315-26.985-13.492s2.315-23.259 13.492-26.985l80.954-26.985c11.177-3.726 23.259 2.315 26.985 13.492s-2.315 23.259-13.492 26.985l-80.954 26.985zM355.347 932.090c-11.073-4.027-16.784-16.268-12.757-27.34s16.268-16.784 27.34-12.757l80.194 29.166c11.073 4.027 16.784 16.268 12.757 27.34s-16.268 16.784-27.34 12.757l-80.194-29.166zM194.958 873.758c-11.073-4.027-16.784-16.268-12.757-27.34s16.268-16.784 27.34-12.757l80.194 29.166c11.073 4.027 16.784 16.268 12.757 27.34s-16.268 16.784-27.34 12.757l-80.194-29.166zM31.232 813.006c-10.121-6.031-13.437-19.125-7.406-29.247s19.125-13.437 29.247-7.406c1.146 0.683 2.36 1.259 3.627 1.721l72.648 26.421c11.073 4.027 16.784 16.268 12.757 27.34s-16.268 16.784-27.34 12.757l-72.652-26.423c-3.796-1.381-7.435-3.111-10.88-5.163zM-0 628.276c0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v85.333c0 11.782-9.551 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-85.333zM-0 457.609c0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v85.333c0 11.782-9.551 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-85.333zM-0 286.942c0-11.782 9.551-21.333 21.333-21.333s21.333 9.551 21.333 21.333v85.333c0 11.782-9.551 21.333-21.333 21.333s-21.333-9.551-21.333-21.333v-85.333zM100.47 147.235c11.4-2.978 23.055 3.849 26.032 15.249s-3.849 23.055-15.249 26.032l-54.066 14.071c-5.092 1.71-9.321 5.275-11.893 9.957-5.674 10.326-18.644 14.098-28.97 8.424s-14.098-18.644-8.424-28.97c7.699-14.012 20.395-24.715 37.102-30.275l55.467-14.489zM265.714 104.397c11.405-2.957 23.048 3.892 26.004 15.297s-3.892 23.048-15.297 26.004l-82.603 21.414c-11.405 2.957-23.048-3.892-26.004-15.297s3.892-23.048 15.297-26.004l82.603-21.414zM430.919 61.57c11.405-2.957 23.048 3.892 26.004 15.297s-3.892 23.048-15.297 26.004l-82.603 21.414c-11.405 2.957-23.048-3.892-26.004-15.297s3.892-23.048 15.297-26.004l82.603-21.414zM607.514 65.33c11.405 2.956 18.255 14.598 15.298 26.003s-14.598 18.255-26.003 15.298l-79.599-20.631c-0.765-0.187-0.765-0.187-1.536-0.336-11.597-2.082-19.31-13.171-17.228-24.767s13.171-19.31 24.767-17.228c2.336 0.449 2.336 0.449 4.677 1.022l79.624 20.638zM772.722 108.15c11.405 2.956 18.255 14.598 15.298 26.003s-14.598 18.255-26.003 15.298l-82.604-21.41c-11.405-2.956-18.255-14.598-15.298-26.003s14.598-18.255 26.003-15.298l82.604 21.41zM937.93 150.97c11.405 2.956 18.255 14.598 15.298 26.003s-14.598 18.255-26.003 15.298l-82.604-21.41c-11.405-2.956-18.255-14.598-15.298-26.003s14.598-18.255 26.003-15.298l82.604 21.41z",
|
|
845
|
+
"M469.333 318.592v85.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v-85.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333zM469.333 489.259v85.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v-85.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333zM469.333 659.925v85.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v-85.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333zM469.333 830.592v85.333c0 11.782 9.551 21.333 21.333 21.333s21.333-9.551 21.333-21.333v-85.333c0-11.782-9.551-21.333-21.333-21.333s-21.333 9.551-21.333 21.333z",
|
|
846
|
+
"M985.846 172.839l-82.787 20.692c-11.43 2.857-18.381 14.439-15.524 25.869s14.439 18.381 25.87 15.524l82.787-20.691c11.43-2.857 18.381-14.439 15.524-25.87s-14.439-18.381-25.87-15.524zM820.272 214.222l-82.787 20.692c-11.43 2.857-18.381 14.439-15.524 25.869s14.439 18.381 25.87 15.524l82.787-20.691c11.43-2.857 18.381-14.439 15.524-25.87s-14.439-18.381-25.87-15.524zM654.699 255.605l-82.787 20.692c-11.43 2.857-18.381 14.439-15.524 25.869s14.439 18.381 25.87 15.524l82.787-20.691c11.43-2.857 18.381-14.439 15.524-25.87s-14.439-18.381-25.87-15.524zM489.125 296.988l-3.632 0.908 5.173 20.697 5.614-20.581-78.714-21.472c-11.367-3.101-23.095 3.6-26.196 14.967s3.6 23.095 14.967 26.196l78.714 21.472c3.526 0.962 7.241 1.002 10.787 0.115l3.632-0.908c11.43-2.857 18.381-14.439 15.524-25.87s-14.439-18.381-25.87-15.524zM335.242 254.081l-82.325-22.457c-11.367-3.101-23.095 3.6-26.196 14.967s3.6 23.095 14.967 26.196l82.325 22.457c11.367 3.101 23.095-3.6 26.196-14.967s-3.6-23.095-14.967-26.196zM170.591 209.167l-82.325-22.457c-11.367-3.101-23.095 3.6-26.196 14.967s3.6 23.095 14.967 26.196l82.325 22.457c11.367 3.101 23.095-3.6 26.196-14.967s-3.6-23.095-14.967-26.196z"
|
|
847
|
+
],
|
|
848
|
+
"attrs": [{}, {}, {}],
|
|
849
|
+
"isMulticolor": false,
|
|
850
|
+
"isMulticolor2": false,
|
|
851
|
+
"tags": ["md-missing-resource"],
|
|
852
|
+
"grid": 0
|
|
853
|
+
},
|
|
854
|
+
"attrs": [{}, {}, {}],
|
|
855
|
+
"properties": { "order": 55, "id": 25, "name": "md-missing-resource", "prevSize": 32, "code": 59694 },
|
|
856
|
+
"setIdx": 0,
|
|
857
|
+
"setId": 1,
|
|
858
|
+
"iconIdx": 45
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"icon": {
|
|
862
|
+
"paths": [
|
|
863
|
+
"M1002.667 1023.957c-5.717 0-11.051-2.219-15.104-6.229l-475.563-475.605-475.563 475.605c-4.011 4.011-9.387 6.229-15.104 6.229s-11.051-2.219-15.104-6.229c-8.32-8.32-8.32-21.845 0-30.165l475.563-475.563-475.52-475.605c-8.32-8.32-8.32-21.845 0-30.165 4.011-4.053 9.387-6.272 15.061-6.272s11.051 2.219 15.104 6.229l475.563 475.605 475.605-475.563c4.011-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.229c8.32 8.32 8.32 21.845 0 30.165l-475.648 475.563 475.563 475.563c8.32 8.32 8.32 21.845 0 30.165-4.011 4.053-9.344 6.272-15.061 6.272z"
|
|
864
|
+
],
|
|
865
|
+
"attrs": [{}],
|
|
866
|
+
"isMulticolor": false,
|
|
867
|
+
"isMulticolor2": false,
|
|
868
|
+
"tags": ["close"],
|
|
869
|
+
"grid": 0
|
|
870
|
+
},
|
|
871
|
+
"attrs": [{}],
|
|
872
|
+
"properties": { "order": 48, "id": 26, "name": "close", "prevSize": 32, "code": 59687 },
|
|
873
|
+
"setIdx": 0,
|
|
874
|
+
"setId": 1,
|
|
875
|
+
"iconIdx": 46
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"icon": {
|
|
879
|
+
"paths": [
|
|
880
|
+
"M106.667 960.171c-58.837 0-106.667-47.872-106.667-106.667v-682.667c0-58.837 47.829-106.667 106.667-106.667h810.667c58.795 0 106.667 47.829 106.667 106.667v682.667c0 58.795-47.872 106.667-106.667 106.667h-810.667zM42.667 853.504c0 35.285 28.715 64 64 64h810.667c35.285 0 64-28.715 64-64v-533.333h-938.667v533.333zM981.333 277.504v-106.667c0-35.285-28.715-64-64-64h-810.667c-35.285 0-64 28.715-64 64v106.667h938.667z",
|
|
881
|
+
"M202.667 192.171c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z",
|
|
882
|
+
"M330.667 192.171c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z",
|
|
883
|
+
"M458.667 192.171c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"
|
|
884
|
+
],
|
|
885
|
+
"attrs": [{}, {}, {}, {}],
|
|
886
|
+
"isMulticolor": false,
|
|
887
|
+
"isMulticolor2": false,
|
|
888
|
+
"tags": ["app-window"],
|
|
889
|
+
"grid": 0
|
|
890
|
+
},
|
|
891
|
+
"attrs": [{}, {}, {}, {}],
|
|
892
|
+
"properties": { "order": 47, "id": 27, "name": "app-window", "prevSize": 32, "code": 59684 },
|
|
893
|
+
"setIdx": 0,
|
|
894
|
+
"setId": 1,
|
|
895
|
+
"iconIdx": 47
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"icon": {
|
|
899
|
+
"paths": [
|
|
900
|
+
"M192 853.504c-58.837 0-106.667-47.872-106.667-106.667v-469.333c0-58.837 47.829-106.667 106.667-106.667h640c58.795 0 106.667 47.829 106.667 106.667v469.333c0 58.795-47.872 106.667-106.667 106.667h-640zM128 746.837c0 35.285 28.715 64 64 64h640c35.285 0 64-28.715 64-64v-362.667h-768v362.667zM896 341.504v-64c0-35.285-28.715-64-64-64h-640c-35.285 0-64 28.715-64 64v64h768z",
|
|
901
|
+
"M234.667 309.504c-17.664 0-32-14.336-32-32 0-16 11.819-29.44 27.648-31.616 0.043 0 0.085 0 0.128 0 0.683-0.128 1.621-0.256 2.347-0.256 0.469-0.043 1.365-0.128 1.877-0.128 0.597 0 1.237 0.043 1.835 0.128l1.067 0.128c15.957 1.024 29.099 15.019 29.099 31.744 0 17.621-14.336 32-32 32z",
|
|
902
|
+
"M320 309.504c-17.664 0-32-14.336-32-32 0-16.939 13.269-30.933 30.251-31.872 0.427-0.085 1.067-0.128 1.749-0.128 17.664 0 32 14.336 32 32s-14.336 32-32 32z",
|
|
903
|
+
"M405.333 309.504c-17.664 0-32-14.336-32-32 0-16 11.861-29.44 27.691-31.616 0.128-0.043 0.213-0.043 0.299-0.085 0.555-0.085 1.707-0.213 2.261-0.213 0.341-0.043 1.024-0.085 1.749-0.085 0.427 0 1.792 0.128 1.92 0.128 16.597 0.683 30.080 14.677 30.080 31.872 0 17.621-14.336 32-32 32z"
|
|
904
|
+
],
|
|
905
|
+
"attrs": [{}, {}, {}, {}],
|
|
906
|
+
"isMulticolor": false,
|
|
907
|
+
"isMulticolor2": false,
|
|
908
|
+
"tags": ["app-window-sm"],
|
|
909
|
+
"grid": 0
|
|
910
|
+
},
|
|
911
|
+
"attrs": [{}, {}, {}, {}],
|
|
912
|
+
"properties": { "order": 76, "id": 28, "name": "app-window-sm", "prevSize": 32, "code": 59709 },
|
|
913
|
+
"setIdx": 0,
|
|
914
|
+
"setId": 1,
|
|
915
|
+
"iconIdx": 48
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"icon": {
|
|
919
|
+
"paths": [
|
|
920
|
+
"M512 985.6c-17.067 0-34.133-4.267-46.933-17.067l-409.6-409.6c-12.8-12.8-17.067-29.867-17.067-46.933s8.533-34.133 17.067-46.933l409.6-409.6c25.6-25.6 64-25.6 89.6 0l409.6 409.6c25.6 25.6 25.6 64 0 89.6l-409.6 409.6c-8.533 12.8-25.6 21.333-42.667 21.333zM512 81.067c-4.267 0-12.8 0-17.067 4.267l-409.6 409.6c0 0 0 0 0 0 0 4.267-4.267 12.8-4.267 17.067s4.267 12.8 4.267 17.067l409.6 409.6c8.533 8.533 21.333 8.533 29.867 0l409.6-409.6c8.533-8.533 8.533-21.333 0-29.867l-409.6-409.6c0-4.267-8.533-8.533-12.8-8.533zM72.533 482.133v0 0z",
|
|
921
|
+
"M512 618.667c-12.8 0-21.333-8.533-21.333-21.333v-298.667c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v298.667c0 12.8-8.533 21.333-21.333 21.333z",
|
|
922
|
+
"M512 661.333c0 0 0 0 0 0s0 0 0 0c-4.267 0-4.267 0-8.533 0 0 0 0 0-4.267 0s-12.8 4.267-12.8 8.533c-4.267 4.267-8.533 12.8-8.533 21.333 0 17.067 12.8 29.867 34.133 29.867 8.533 0 17.067-4.267 21.333-8.533s8.533-12.8 8.533-21.333c4.267-12.8-12.8-29.867-29.867-29.867z"
|
|
923
|
+
],
|
|
924
|
+
"attrs": [{}, {}, {}],
|
|
925
|
+
"isMulticolor": false,
|
|
926
|
+
"isMulticolor2": false,
|
|
927
|
+
"tags": ["warn-diamond"],
|
|
928
|
+
"grid": 0
|
|
929
|
+
},
|
|
930
|
+
"attrs": [{}, {}, {}],
|
|
931
|
+
"properties": { "order": 46, "id": 29, "name": "warn-diamond", "prevSize": 32, "code": 59680 },
|
|
932
|
+
"setIdx": 0,
|
|
933
|
+
"setId": 1,
|
|
934
|
+
"iconIdx": 49
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"icon": {
|
|
938
|
+
"paths": [
|
|
939
|
+
"M1002.667 1024c-5.717 0-11.051-2.219-15.104-6.229l-384.171-384.171c-66.56 59.221-151.637 91.733-240.725 91.733-199.979 0-362.667-162.688-362.667-362.667s162.688-362.667 362.667-362.667c199.979 0 362.667 162.688 362.667 362.667 0 89.088-32.512 174.165-91.776 240.725l384.171 384.171c4.053 4.053 6.272 9.387 6.272 15.104s-2.219 11.051-6.229 15.104-9.387 6.229-15.104 6.229zM362.667 42.667c-176.427 0-320 143.573-320 320s143.573 320 320 320 320-143.573 320-320-143.573-320-320-320z"
|
|
940
|
+
],
|
|
941
|
+
"attrs": [{}],
|
|
942
|
+
"isMulticolor": false,
|
|
943
|
+
"isMulticolor2": false,
|
|
944
|
+
"tags": ["search"],
|
|
945
|
+
"grid": 0
|
|
946
|
+
},
|
|
947
|
+
"attrs": [{}],
|
|
948
|
+
"properties": { "order": 45, "id": 30, "name": "search", "prevSize": 32, "code": 59681 },
|
|
949
|
+
"setIdx": 0,
|
|
950
|
+
"setId": 1,
|
|
951
|
+
"iconIdx": 50
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"icon": {
|
|
955
|
+
"paths": [
|
|
956
|
+
"M725.333 554.667v-85.333h42.667v85.333h85.333v42.667h-85.333v85.333h-42.667v-85.333h-85.333v-42.667z",
|
|
957
|
+
"M354.133 802.133c-12.8 0-21.333 0-34.133-4.267s-17.067-4.267-21.333-8.533l12.8-46.933c12.8 4.267 25.6 8.533 38.4 8.533 25.6 0 42.667-8.533 51.2-29.867s17.067-51.2 21.333-89.6l17.067-166.4h-64v-46.933l51.2-4.267h21.333l4.267-42.667c4.267-51.2 17.067-89.6 38.4-115.2 17.067-29.867 46.933-42.667 89.6-42.667 12.8 0 21.333 0 34.133 4.267s21.333 4.267 25.6 8.533l-12.8 46.933c-4.267-4.267-12.8-4.267-17.067-8.533-8.533-4.267-12.8-4.267-25.6-4.267s-21.333 4.267-29.867 8.533c-8.533 4.267-17.067 12.8-21.333 21.333s-8.533 21.333-12.8 29.867-8.533 29.867-8.533 42.667l-4.267 46.933h98.133v46.933h-102.4l-21.333 183.467c-4.267 25.6-8.533 46.933-12.8 64-4.267 21.333-12.8 34.133-21.333 51.2-8.533 12.8-21.333 25.6-38.4 34.133s-34.133 12.8-55.467 12.8z",
|
|
958
|
+
"M512 42.667c260.267 0 469.333 209.067 469.333 469.333s-209.067 469.333-469.333 469.333-469.333-209.067-469.333-469.333 209.067-469.333 469.333-469.333zM512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512c0-281.6-230.4-512-512-512v0z"
|
|
959
|
+
],
|
|
960
|
+
"attrs": [{}, {}, {}],
|
|
961
|
+
"isMulticolor": false,
|
|
962
|
+
"isMulticolor2": false,
|
|
963
|
+
"tags": ["new-function"],
|
|
964
|
+
"grid": 0
|
|
965
|
+
},
|
|
966
|
+
"attrs": [{}, {}, {}],
|
|
967
|
+
"properties": { "order": 44, "id": 31, "name": "new-function", "prevSize": 32, "code": 59682 },
|
|
968
|
+
"setIdx": 0,
|
|
969
|
+
"setId": 1,
|
|
970
|
+
"iconIdx": 51
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"icon": {
|
|
974
|
+
"paths": [
|
|
975
|
+
"M512 0c-281.6 0-512 230.4-512 512s230.4 512 512 512 512-230.4 512-512-230.4-512-512-512zM512 938.667c-234.667 0-426.667-192-426.667-426.667s192-426.667 426.667-426.667 426.667 192 426.667 426.667c0 234.667-192 426.667-426.667 426.667z",
|
|
976
|
+
"M430.933 776.533l-119.467-8.533 162.133-384-4.267-8.533c-4.267-21.333-12.8-34.133-25.6-42.667s-25.6-17.067-42.667-17.067c-12.8 0-21.333 0-29.867 4.267-8.533 0-17.067 4.267-25.6 8.533l-21.333-93.867c12.8-4.267 25.6-8.533 38.4-12.8s29.867-4.267 55.467-4.267 81.067 12.8 106.667 38.4c25.6 25.6 46.933 68.267 64 123.733l136.533 388.267h-119.467l-72.533-256h-4.267l-98.133 264.533z"
|
|
977
|
+
],
|
|
978
|
+
"attrs": [{}, {}],
|
|
979
|
+
"isMulticolor": false,
|
|
980
|
+
"isMulticolor2": false,
|
|
981
|
+
"tags": ["lambda"],
|
|
982
|
+
"grid": 0
|
|
983
|
+
},
|
|
984
|
+
"attrs": [{}, {}],
|
|
985
|
+
"properties": { "order": 43, "id": 32, "name": "lambda", "prevSize": 32, "code": 59683 },
|
|
986
|
+
"setIdx": 0,
|
|
987
|
+
"setId": 1,
|
|
988
|
+
"iconIdx": 52
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"icon": {
|
|
992
|
+
"paths": [
|
|
993
|
+
"M192 332.8h640c17.067 0 34.133-12.8 34.133-34.133s-12.8-34.133-34.133-34.133h-640c-17.067 0-34.133 17.067-34.133 34.133s17.067 34.133 34.133 34.133z",
|
|
994
|
+
"M832 691.2h-640c-17.067 0-34.133 12.8-34.133 34.133s12.8 34.133 34.133 34.133h640c17.067 0 34.133-12.8 34.133-34.133s-17.067-34.133-34.133-34.133z",
|
|
995
|
+
"M192 546.133h640c17.067 0 34.133-12.8 34.133-34.133s-12.8-34.133-34.133-34.133h-640c-17.067 0-34.133 12.8-34.133 34.133s17.067 34.133 34.133 34.133z"
|
|
996
|
+
],
|
|
997
|
+
"attrs": [{}, {}, {}],
|
|
998
|
+
"isMulticolor": false,
|
|
999
|
+
"isMulticolor2": false,
|
|
1000
|
+
"tags": ["menu"],
|
|
1001
|
+
"grid": 0
|
|
1002
|
+
},
|
|
1003
|
+
"attrs": [{}, {}, {}],
|
|
1004
|
+
"properties": { "order": 41, "id": 33, "name": "menu", "prevSize": 32, "code": 59685 },
|
|
1005
|
+
"setIdx": 0,
|
|
1006
|
+
"setId": 1,
|
|
1007
|
+
"iconIdx": 53
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"icon": {
|
|
1011
|
+
"paths": [
|
|
1012
|
+
"M981.333 477.867h-861.867l115.2-115.2c8.533-4.267 8.533-12.8 8.533-21.333s0-17.067-8.533-21.333c-12.8-12.8-34.133-12.8-46.933 0l-170.667 170.667c-4.267 4.267-4.267 8.533-8.533 8.533-4.267 8.533-4.267 17.067 0 25.6 0 4.267 4.267 8.533 8.533 8.533l170.667 170.667c4.267 4.267 12.8 8.533 21.333 8.533s17.067-4.267 21.333-8.533 8.533-12.8 8.533-21.333-4.267-17.067-8.533-21.333l-115.2-115.2h866.133c17.067 0 34.133-12.8 34.133-34.133 0-17.067-17.067-34.133-34.133-34.133z",
|
|
1013
|
+
"M341.333 332.8h640c17.067 0 34.133-12.8 34.133-34.133s-17.067-34.133-34.133-34.133h-640c-17.067 0-34.133 17.067-34.133 34.133s17.067 34.133 34.133 34.133z",
|
|
1014
|
+
"M981.333 691.2h-640c-17.067 0-34.133 12.8-34.133 34.133s12.8 34.133 34.133 34.133h640c17.067 0 34.133-12.8 34.133-34.133s-17.067-34.133-34.133-34.133z"
|
|
1015
|
+
],
|
|
1016
|
+
"attrs": [{}, {}, {}],
|
|
1017
|
+
"isMulticolor": false,
|
|
1018
|
+
"isMulticolor2": false,
|
|
1019
|
+
"tags": ["menu-close"],
|
|
1020
|
+
"grid": 0
|
|
1021
|
+
},
|
|
1022
|
+
"attrs": [{}, {}, {}],
|
|
1023
|
+
"properties": { "order": 40, "id": 34, "name": "menu-close", "prevSize": 32, "code": 59686 },
|
|
1024
|
+
"setIdx": 0,
|
|
1025
|
+
"setId": 1,
|
|
1026
|
+
"iconIdx": 54
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"icon": {
|
|
1030
|
+
"paths": [
|
|
1031
|
+
"M482.133 1024c-174.933-8.533-332.8-106.667-418.133-260.267-4.267-4.267-4.267-4.267-4.267-8.533-42.667-76.8-64-166.4-59.733-256v-8.533c4.267-93.867 34.133-179.2 85.333-256 0-4.267 4.267-4.267 4.267-8.533 89.6-128 230.4-209.067 384-217.6v0c12.8 0 21.333 0 34.133 0 8.533 0 17.067 0 25.6 0 238.933 12.8 435.2 187.733 477.867 422.4 0 4.267 0 12.8-4.267 17.067s-8.533 8.533-12.8 8.533h-4.267c-8.533 0-21.333-8.533-21.333-17.067-4.267-72.533-29.867-132.267-64-183.467h-192c12.8 38.4 25.6 81.067 34.133 123.733 0 12.8-4.267 21.333-17.067 25.6h-4.267c-8.533 0-21.333-8.533-21.333-17.067-8.533-46.933-21.333-89.6-34.133-132.267h-315.733c-25.6 68.267-42.667 140.8-42.667 213.333h157.867c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-157.867c4.267 68.267 17.067 140.8 42.667 213.333h51.2c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-34.133c29.867 72.533 76.8 149.333 128 221.867v4.267c0 0 0 0 0 4.267v4.267c0 0 0 0 0 4.267v0c0 0 0 0 0 4.267v4.267c0 0 0 0 0 4.267s0 0-4.267 4.267v0h-4.267c0-0 0-0-8.533-0 8.533 0 4.267 0 0 0 4.267 0 0 0 0 0zM119.467 768c72.533 110.933 192 187.733 320 209.067-46.933-68.267-85.333-136.533-110.933-209.067h-209.067zM311.467 725.333c-25.6-72.533-38.4-145.067-42.667-213.333h-226.133c0 72.533 17.067 149.333 51.2 213.333h217.6zM268.8 469.333c0-72.533 17.067-145.067 42.667-213.333h-192c-42.667 64-68.267 136.533-72.533 213.333h221.867zM874.667 213.333c-68.267-85.333-170.667-145.067-277.333-162.133 42.667 51.2 72.533 102.4 98.133 162.133h179.2zM648.533 213.333c-29.867-64-68.267-119.467-115.2-170.667-8.533 0-12.8 0-21.333 0s-12.8 0-21.333 0c-46.933 55.467-85.333 110.933-115.2 170.667h273.067zM328.533 213.333c25.6-55.467 59.733-110.933 98.133-162.133-106.667 17.067-204.8 76.8-277.333 162.133h179.2z",
|
|
1032
|
+
"M746.667 1024c-153.6 0-277.333-123.733-277.333-277.333s123.733-277.333 277.333-277.333 277.333 123.733 277.333 277.333-123.733 277.333-277.333 277.333zM746.667 512c-128 0-234.667 106.667-234.667 234.667s106.667 234.667 234.667 234.667 234.667-106.667 234.667-234.667-106.667-234.667-234.667-234.667z",
|
|
1033
|
+
"M708.267 866.133c-8.533 4.267-21.333 4.267-29.867-4.267l-85.333-85.333c-8.533-8.533-8.533-21.333 0-29.867s21.333-8.533 29.867 0l76.8 72.533 166.4-166.4c8.533-8.533 21.333-8.533 29.867 0s8.533 21.333 0 29.867c0 0-157.867 157.867-187.733 183.467z"
|
|
1034
|
+
],
|
|
1035
|
+
"attrs": [{}, {}, {}],
|
|
1036
|
+
"isMulticolor": false,
|
|
1037
|
+
"isMulticolor2": false,
|
|
1038
|
+
"tags": ["network-good"],
|
|
1039
|
+
"grid": 0
|
|
1040
|
+
},
|
|
1041
|
+
"attrs": [{}, {}, {}],
|
|
1042
|
+
"properties": { "order": 5, "id": 35, "name": "network-good", "prevSize": 32, "code": 59668 },
|
|
1043
|
+
"setIdx": 0,
|
|
1044
|
+
"setId": 1,
|
|
1045
|
+
"iconIdx": 55
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"icon": {
|
|
1049
|
+
"paths": [
|
|
1050
|
+
"M483.755 1023.36c-175.36-9.685-331.776-107.605-418.133-261.973-2.347-2.475-4.011-5.504-4.949-8.875-42.069-78.763-62.677-167.765-59.648-257.493-0.299-1.195-0.555-2.603-0.555-4.224 0-2.005 0.299-3.968 0.853-5.931l0.043-0.939c5.077-91.904 34.859-180.651 86.101-256.811 1.195-3.072 3.029-5.76 5.504-7.979 89.856-128.256 230.485-207.573 386.091-217.728 0.469-0.043 1.109-0.085 1.792-0.085 10.837-0.683 22.272-1.067 33.28-1.067 9.003 0 18.005 0.256 26.752 0.725 238.592 13.184 434.261 186.752 475.861 422.059 0.981 5.589-0.256 11.264-3.541 15.957-3.243 4.651-8.149 7.765-13.781 8.789-1.28 0.213-2.475 0.299-3.712 0.299-10.411 0-19.243-7.424-21.035-17.621-11.093-62.72-34.133-121.344-68.437-174.379h-192.853c14.763 40.533 25.856 82.304 32.981 124.416 1.963 11.605-5.888 22.656-17.493 24.619-1.152 0.213-2.347 0.299-3.541 0.299-10.411 0-19.285-7.467-21.035-17.749-7.595-44.843-19.883-89.045-36.48-131.584h-312.32c-27.264 68.224-41.899 139.904-43.605 213.333h157.483c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-156.971c3.115 70.187 17.792 141.824 43.733 213.333h49.195c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-32.256c31.573 74.325 75.051 148.651 129.451 221.184 0.597 0.768 1.451 2.389 1.792 3.285 0.213 0.299 0.939 1.579 1.493 3.328 0.512 1.707 0.64 3.243 0.725 4.181 0.043 0.043 0.341 1.408 0.256 3.115-0.043 0.597-0.128 1.28-0.299 1.963-0.213 1.195-0.512 2.133-0.683 2.773-0.384 1.323-0.768 2.645-1.536 4.139-0.512 0.939-1.152 1.835-1.835 2.731s-1.493 1.92-2.56 2.944c-0.555 0.597-1.195 1.195-1.792 1.621-0.981 0.768-2.133 1.28-2.731 1.536-0.469 0.256-1.835 0.939-2.389 1.152-2.603 0.939-5.035 1.408-7.467 1.408-0.427-0-1.365-0.043-1.749-0.085zM119.381 768.085c72.789 111.403 190.379 187.435 321.109 207.829-47.061-68.096-84.949-137.856-112.896-207.829h-208.213zM311.893 725.419c-24.491-71.808-38.357-143.445-41.301-213.333h-227.2c-0.043 74.197 17.621 147.584 51.285 213.333h217.216zM270.080 469.419c1.579-72.875 15.232-144.512 40.619-213.333h-191.189c-41.728 63.829-67.243 137.259-74.197 213.333h224.768zM875.136 213.419c-70.187-85.205-169.685-143.317-278.784-163.029 40.576 49.579 74.112 104.277 99.925 163.029h178.859zM649.344 213.419c-29.525-62.336-68.48-119.467-116.011-170.112-6.784-0.299-13.568-0.427-20.267-0.427-7.339 0-14.805 0.171-22.315 0.512-48.256 53.376-87.339 110.507-116.352 170.027h274.944zM328.149 213.419c25.557-57.045 59.264-111.701 100.523-162.944-108.075 19.755-207.189 77.824-277.76 162.944h177.237z",
|
|
1051
|
+
"M746.667 1024.085c-152.917 0-277.333-124.416-277.333-277.333s124.416-277.333 277.333-277.333 277.333 124.416 277.333 277.333-124.416 277.333-277.333 277.333zM746.667 512.085c-129.408 0-234.667 105.259-234.667 234.667s105.259 234.667 234.667 234.667 234.667-105.259 234.667-234.667-105.259-234.667-234.667-234.667z",
|
|
1052
|
+
"M837.163 858.624c-5.717 0-11.051-2.219-15.104-6.229l-75.392-75.477-75.435 75.435c-4.011 4.011-9.387 6.229-15.104 6.229s-11.051-2.219-15.104-6.229c-8.32-8.32-8.32-21.845 0-30.165l75.435-75.435-75.435-75.435c-8.32-8.32-8.32-21.845 0-30.165 4.011-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.229l75.435 75.435 75.435-75.435c4.011-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.229c8.32 8.32 8.32 21.845 0 30.165l-75.435 75.435 75.435 75.435c8.32 8.32 8.32 21.845 0 30.165-4.096 4.053-9.429 6.272-15.147 6.272z"
|
|
1053
|
+
],
|
|
1054
|
+
"attrs": [{}, {}, {}],
|
|
1055
|
+
"isMulticolor": false,
|
|
1056
|
+
"isMulticolor2": false,
|
|
1057
|
+
"tags": ["network-bad"],
|
|
1058
|
+
"grid": 0
|
|
1059
|
+
},
|
|
1060
|
+
"attrs": [{}, {}, {}],
|
|
1061
|
+
"properties": { "order": 6, "id": 36, "name": "network-bad", "prevSize": 32, "code": 59679 },
|
|
1062
|
+
"setIdx": 0,
|
|
1063
|
+
"setId": 1,
|
|
1064
|
+
"iconIdx": 56
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"icon": {
|
|
1068
|
+
"paths": [
|
|
1069
|
+
"M149.333 631.467c-1.536 0-3.072-0.171-4.565-0.469-75.648-16.555-127.531-84.693-123.435-162.005 0.213-10.752 1.536-22.016 3.968-33.109 9.941-45.227 36.907-83.84 75.861-108.757 27.989-17.877 60.16-27.349 93.099-27.349 4.693 0 9.472 0.213 14.208 0.597 22.272-147.627 149.291-257.664 299.691-257.664h5.717c110.421 0 215.211 62.037 268.8 158.549 119.723 1.28 218.197 99.029 219.947 219.051 2.603 82.219-44.117 157.781-119.040 192.427-2.816 1.323-5.845 1.963-8.96 1.963 0 0 0 0 0 0-8.277 0-15.872-4.864-19.328-12.373-2.389-5.163-2.645-10.965-0.683-16.341 1.963-5.333 5.888-9.6 11.093-11.989 59.349-27.435 96.341-87.381 94.293-152.747-1.451-97.877-82.048-177.365-179.627-177.365h-2.688c-2.261 0.043-4.48 0.128-6.699 0.213 0 0-0.043 0-0.085 0-9.173 0-16.469-4.523-20.096-11.776-44.288-89.301-137.387-146.987-237.099-146.987h-5.035c-135.765 0-250.027 105.813-260.224 240.939-0.427 6.144-3.541 11.819-8.491 15.488-3.712 2.731-8.107 4.224-12.715 4.224-1.536 0-3.072-0.171-4.565-0.512-9.387-2.048-18.944-3.072-28.373-3.072-24.747 0-48.981 7.125-70.059 20.651-29.397 18.773-49.707 47.872-57.216 81.963-1.835 8.363-2.859 16.939-3.029 25.515-3.029 56.917 34.773 106.709 89.899 118.784 5.547 1.237 10.325 4.523 13.397 9.344s4.096 10.496 2.901 16.085c-2.133 9.685-10.88 16.725-20.864 16.725z",
|
|
1070
|
+
"M512 981.333c-152.917 0-277.333-124.416-277.333-277.333s124.416-277.333 277.333-277.333 277.333 124.416 277.333 277.333-124.416 277.333-277.333 277.333zM512 469.333c-129.408 0-234.667 105.259-234.667 234.667s105.301 234.667 234.667 234.667c129.408 0 234.667-105.259 234.667-234.667s-105.259-234.667-234.667-234.667z",
|
|
1071
|
+
"M602.496 815.829c-5.717 0-11.051-2.219-15.104-6.229l-75.392-75.435-75.392 75.435c-4.011 4.011-9.387 6.229-15.104 6.229s-11.051-2.219-15.104-6.229c-8.32-8.32-8.32-21.845 0-30.165l75.392-75.435-75.392-75.435c-8.32-8.32-8.32-21.845 0-30.165 4.011-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.229l75.392 75.435 75.392-75.435c4.011-4.011 9.387-6.229 15.104-6.229v0c5.717 0 11.051 2.219 15.104 6.229 8.32 8.32 8.32 21.845 0 30.165l-75.435 75.435 75.435 75.435c8.32 8.32 8.32 21.845 0 30.165-4.053 4.011-9.387 6.229-15.104 6.229z"
|
|
1072
|
+
],
|
|
1073
|
+
"attrs": [{}, {}, {}],
|
|
1074
|
+
"isMulticolor": false,
|
|
1075
|
+
"isMulticolor2": false,
|
|
1076
|
+
"tags": ["cloud-remove"],
|
|
1077
|
+
"defaultCode": 59663,
|
|
1078
|
+
"grid": 0
|
|
1079
|
+
},
|
|
1080
|
+
"attrs": [{}, {}, {}],
|
|
1081
|
+
"properties": { "order": 9, "id": 37, "name": "cloud-remove", "prevSize": 32, "code": 59663 },
|
|
1082
|
+
"setIdx": 0,
|
|
1083
|
+
"setId": 1,
|
|
1084
|
+
"iconIdx": 57
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"icon": {
|
|
1088
|
+
"paths": [
|
|
1089
|
+
"M1013.333 405.205v0 0z",
|
|
1090
|
+
"M191.104 639.872c-8.96 0-88.917-1.536-142.933-54.741-31.957-31.488-48.171-74.112-48.171-126.592 0-12.501 1.323-25.045 3.883-37.248 9.941-47.403 37.76-88.107 78.336-114.603 29.611-19.328 63.787-29.568 98.773-29.568 4.693 0 9.429 0.171 14.165 0.555 14.080-107.093 82.517-201.216 180.651-247.424 43.136-20.309 88.875-30.635 135.936-30.635 36.779 0 73.216 6.4 108.331 19.029 75.776 27.264 137.6 81.152 174.805 152.192 127.317 3.115 229.248 107.093 229.163 234.368 0 204.971-208.469 234.197-210.603 234.496-0.853 0.128-1.792 0.171-2.731 0.171h-619.605zM181.077 319.829c-26.752 0-52.864 7.808-75.52 22.613-31.019 20.224-52.309 51.371-59.947 87.637-1.963 9.301-2.944 18.901-2.944 28.459 0 40.661 11.947 73.003 35.456 96.213 42.624 41.984 110.208 42.496 113.067 42.496h617.984c20.864-3.157 172.16-31.445 172.16-192.043 0.043-51.115-19.883-99.2-56.107-135.467s-84.267-56.235-135.381-56.277h-1.707c-1.92 0-3.755 0.085-5.632 0.171 0 0-0.043 0-0.043 0-9.045 0-16.64-4.821-20.096-12.245-45.44-96.469-143.915-158.848-250.88-158.848-40.832 0-80.341 8.875-117.504 26.368-91.819 43.221-152.491 132.992-158.421 234.283-0.384 6.229-3.413 11.947-8.363 15.701-3.669 2.859-8.277 4.395-12.885 4.395-1.493 0-3.029-0.171-4.48-0.469-9.472-2.005-19.157-2.987-28.757-2.987z",
|
|
1091
|
+
"M192 1023.872c-19.371 0-38.272-3.712-56.235-11.051-0.384-0.085-0.725-0.213-1.067-0.341-0.384-0.171-0.811-0.341-1.195-0.555-55.339-23.808-90.837-77.525-90.837-137.387 0-82.347 66.987-149.333 149.333-149.333h640c82.347 0 149.333 66.987 149.333 149.333s-66.987 149.333-149.333 149.333h-640zM832 981.205c58.795 0 106.667-47.872 106.667-106.667s-47.872-106.667-106.667-106.667h-189.056l-88.363 213.333h277.419zM508.416 981.205l88.363-213.333h-81.835l-88.363 213.333h81.835zM380.416 981.205l88.363-213.333h-81.835l-88.363 213.333h81.835zM171.435 979.2c6.741 1.323 13.653 2.005 20.565 2.005h60.416l88.363-213.333h-81.835l-87.509 211.328zM192 767.872c-58.837 0-106.667 47.872-106.667 106.667 0 35.584 17.664 68.395 46.763 88.149l80.683-194.816h-20.779z"
|
|
1092
|
+
],
|
|
1093
|
+
"attrs": [{}, {}, {}],
|
|
1094
|
+
"isMulticolor": false,
|
|
1095
|
+
"isMulticolor2": false,
|
|
1096
|
+
"tags": ["cloud-loading"],
|
|
1097
|
+
"defaultCode": 59659,
|
|
1098
|
+
"grid": 0
|
|
1099
|
+
},
|
|
1100
|
+
"attrs": [{}, {}, {}],
|
|
1101
|
+
"properties": { "order": 10, "id": 38, "name": "cloud-loading", "prevSize": 32, "code": 59659 },
|
|
1102
|
+
"setIdx": 0,
|
|
1103
|
+
"setId": 1,
|
|
1104
|
+
"iconIdx": 58
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"icon": {
|
|
1108
|
+
"paths": [
|
|
1109
|
+
"M149.376 631.467c-1.493 0-3.029-0.171-4.565-0.469-75.648-16.555-127.573-84.693-123.435-162.005 0.213-10.752 1.536-22.016 3.968-33.109 9.941-45.227 36.907-83.883 75.904-108.8 27.947-17.877 60.16-27.349 93.099-27.349 4.693 0 9.429 0.213 14.165 0.597 22.315-147.627 149.547-257.664 300.288-257.664h3.499l1.579 10.667v-10.667c110.464 0 215.253 62.037 268.843 158.592 119.723 1.237 218.197 99.029 219.947 219.051 2.56 82.176-44.16 157.781-119.040 192.427-2.773 1.323-5.803 2.005-8.96 2.005v0c-8.277 0-15.872-4.864-19.371-12.416-2.389-5.163-2.645-10.965-0.64-16.299 1.963-5.333 5.888-9.6 11.093-11.989 59.307-27.435 96.341-87.381 94.293-152.704-1.451-97.877-82.048-177.365-179.627-177.365h-2.688c-2.219 0.043-4.437 0.128-6.656 0.213 0 0-0.043 0-0.085 0-9.216 0-16.555-4.523-20.139-11.819-44.331-89.344-137.045-147.029-236.117-147.029h-6.016c-135.765 0-250.069 105.813-260.224 240.939-0.469 6.144-3.584 11.819-8.533 15.488-3.712 2.731-8.107 4.224-12.715 4.224-1.536 0-3.072-0.171-4.523-0.469-9.387-2.091-18.901-3.115-28.373-3.115-24.747 0-48.981 7.125-70.101 20.651-29.397 18.816-49.707 47.915-57.173 82.005-1.835 8.363-2.859 16.939-3.029 25.515-3.029 56.917 34.773 106.709 89.899 118.784 11.477 2.517 18.773 13.909 16.299 25.387-2.176 9.685-10.923 16.725-20.864 16.725z",
|
|
1110
|
+
"M512 981.376c-152.917 0-277.333-124.416-277.333-277.333s124.416-277.333 277.333-277.333c152.917 0 277.333 124.416 277.333 277.333s-124.373 277.333-277.333 277.333zM512 469.376c-129.408 0-234.667 105.259-234.667 234.667s105.259 234.667 234.667 234.667 234.667-105.259 234.667-234.667-105.259-234.667-234.667-234.667z",
|
|
1111
|
+
"M476.715 829.013c-11.605 0-22.656-3.669-31.957-10.667-2.005-1.493-3.883-3.115-5.632-4.907l-64.043-64.043c-4.011-4.011-6.229-9.387-6.229-15.104s2.219-11.051 6.229-15.104 9.387-6.229 15.104-6.229 11.051 2.219 15.104 6.229l64 64c0.341 0.341 0.768 0.683 1.195 1.024 1.835 1.365 4.011 2.091 6.357 2.091 3.413 0 6.528-1.536 8.533-4.267l123.733-165.291c4.011-5.333 10.411-8.533 17.109-8.533 4.651 0 9.045 1.493 12.8 4.267 9.387 7.040 11.307 20.437 4.267 29.867l-123.733 165.291c-10.112 13.44-26.069 21.376-42.837 21.376z"
|
|
1112
|
+
],
|
|
1113
|
+
"attrs": [{}, {}, {}],
|
|
1114
|
+
"isMulticolor": false,
|
|
1115
|
+
"isMulticolor2": false,
|
|
1116
|
+
"tags": ["cloud-check"],
|
|
1117
|
+
"defaultCode": 59660,
|
|
1118
|
+
"grid": 0
|
|
1119
|
+
},
|
|
1120
|
+
"attrs": [{}, {}, {}],
|
|
1121
|
+
"properties": { "order": 11, "id": 39, "name": "cloud-check", "prevSize": 32, "code": 59660 },
|
|
1122
|
+
"setIdx": 0,
|
|
1123
|
+
"setId": 1,
|
|
1124
|
+
"iconIdx": 59
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"icon": {
|
|
1128
|
+
"paths": [
|
|
1129
|
+
"M511.8 939.2c-117.7 0-231.3-49.2-311.7-135.1-77.9-83.3-118.7-191.9-114.9-305.8 3.2-97.5 39.5-190.2 102.5-263.6h-145c-11.8 0-21.3-9.6-21.3-21.3s9.6-21.3 21.3-21.3h192c11.8 0 21.3 9.6 21.3 21.3v192c0 11.8-9.6 21.4-21.3 21.4s-21.3-9.6-21.3-21.3v-134.7c-52.6 64.7-82.7 145-85.5 229-3.4 102.5 33.3 200.2 103.4 275.1 72.3 77.3 174.6 121.6 280.5 121.6 0 0 0 0 0 0 73.4 0 145-21 207-60.7 3.5-2.2 7.4-3.4 11.5-3.4 7.3 0 14 3.7 18 9.8 6.4 9.9 3.5 23.1-6.4 29.5-68.9 44.1-148.5 67.5-230.1 67.5v0z",
|
|
1130
|
+
"M981.3 832.1h-192c-11.8 0-21.3-9.6-21.3-21.3v-192c0-11.8 9.6-21.3 21.3-21.3 11.8 0 21.3 9.6 21.3 21.3v134.9c52.7-64.7 82.9-145 85.7-229 3.5-102.5-33.2-200.2-103.2-275.2-72.3-77.3-174.7-121.7-280.9-121.7-72.6 0-143.4 20.5-204.8 59.3-3.4 2.2-7.4 3.3-11.4 3.3-7.4 0-14.1-3.7-18-9.9-6.3-9.9-3.3-23.2 6.7-29.4 68.2-43.1 146.9-65.9 227.6-65.9 118 0 231.7 49.3 312 135.3 77.8 83.1 118.5 191.7 114.7 305.5-3.3 97.5-39.5 190.1-102.6 263.4h144.9c11.8 0 21.3 9.6 21.3 21.3s-9.5 21.4-21.3 21.4v0z"
|
|
1131
|
+
],
|
|
1132
|
+
"attrs": [{}, {}],
|
|
1133
|
+
"isMulticolor": false,
|
|
1134
|
+
"isMulticolor2": false,
|
|
1135
|
+
"tags": ["button-refresh-arrows"],
|
|
1136
|
+
"defaultCode": 59651,
|
|
1137
|
+
"grid": 0
|
|
1138
|
+
},
|
|
1139
|
+
"attrs": [{}, {}],
|
|
1140
|
+
"properties": { "order": 39, "id": 40, "name": "button-refresh-arrows", "prevSize": 32, "code": 59651 },
|
|
1141
|
+
"setIdx": 0,
|
|
1142
|
+
"setId": 1,
|
|
1143
|
+
"iconIdx": 60
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"icon": {
|
|
1147
|
+
"paths": [
|
|
1148
|
+
"M136.533 806.4v-68.267c-21.333-4.267-42.667-8.533-64-17.067s-38.4-21.333-51.2-34.133l25.6-38.4c12.8 12.8 29.867 25.6 46.933 34.133s38.4 12.8 59.733 12.8c25.6 0 46.933-8.533 55.467-21.333 12.8-12.8 17.067-29.867 17.067-51.2 0-17.067-4.267-34.133-12.8-46.933s-21.333-21.333-34.133-29.867c-12.8-8.533-29.867-17.067-46.933-25.6s-29.867-17.067-46.933-29.867c-12.8-8.533-25.6-21.333-34.133-38.4s-12.8-29.867-12.8-51.2c0-29.867 8.533-55.467 25.6-76.8s42.667-34.133 72.533-38.4v-68.267h42.667v68.267c21.333 4.267 42.667 8.533 55.467 17.067 17.067 8.533 29.867 21.333 42.667 34.133l-29.867 34.133c-12.8-12.8-25.6-21.333-38.4-29.867-12.8-4.267-29.867-8.533-46.933-8.533-21.333 0-38.4 4.267-51.2 17.067s-17.067 25.6-17.067 46.933c0 17.067 4.267 29.867 12.8 42.667s21.333 21.333 34.133 29.867c12.8 8.533 29.867 17.067 46.933 21.333 17.067 8.533 34.133 17.067 46.933 25.6 12.8 12.8 25.6 25.6 34.133 38.4 8.533 17.067 12.8 34.133 12.8 59.733 0 34.133-8.533 59.733-29.867 81.067-17.067 21.333-46.933 34.133-76.8 38.4v68.267h-38.4z",
|
|
1149
|
+
"M622.933 529.067l-25.6-21.333 38.4-64-68.267-25.6 12.8-34.133 68.267 17.067 4.267-72.533h34.133l4.267 72.533 76.8-17.067 8.533 29.867-68.267 25.6 38.4 64-25.6 21.333-46.933-55.467-51.2 59.733z",
|
|
1150
|
+
"M844.8 806.4v-34.133h17.067c17.067 0 29.867-4.267 38.4-12.8 4.267-8.533 8.533-25.6 8.533-46.933s0-42.667 0-59.733c0-21.333 0-42.667 0-64s4.267-38.4 8.533-51.2c4.267-12.8 17.067-21.333 29.867-25.6v0c-12.8-4.267-25.6-12.8-29.867-25.6s-8.533-29.867-8.533-51.2c0-21.333 0-42.667 0-64s0-38.4 0-59.733c0-21.333-4.267-38.4-8.533-46.933s-17.067-12.8-38.4-12.8h-17.067v-34.133h29.867c12.8 0 25.6 0 34.133 4.267s17.067 8.533 25.6 12.8c8.533 8.533 12.8 17.067 12.8 29.867 4.267 12.8 4.267 25.6 4.267 42.667 0 25.6 0 46.933-4.267 68.267 0 21.333-4.267 42.667-4.267 64 0 12.8 4.267 25.6 12.8 34.133 8.533 12.8 25.6 17.067 46.933 17.067v34.133c-12.8 0-21.333 0-29.867 4.267s-12.8 8.533-17.067 12.8c-4.267 4.267-8.533 12.8-8.533 17.067s-4.267 12.8-4.267 21.333c0 12.8 0 21.333 0 34.133 0 8.533 0 21.333 0 29.867s0 21.333 0 34.133c0 12.8 0 21.333 0 34.133 0 17.067 0 34.133-4.267 42.667-4.267 12.8-8.533 21.333-12.8 29.867-8.533 8.533-17.067 12.8-25.6 12.8-8.533 4.267-21.333 4.267-34.133 4.267h-21.333z",
|
|
1151
|
+
"M494.933 217.6v34.133h-17.067c-17.067 0-29.867 4.267-38.4 12.8-4.267 8.533-8.533 25.6-8.533 46.933s0 42.667 0 59.733c0 21.333 0 42.667 0 64s-4.267 38.4-8.533 51.2-12.8 21.333-29.867 25.6v0c12.8 4.267 25.6 12.8 29.867 25.6s8.533 29.867 8.533 51.2c0 21.333 0 42.667 0 64s0 38.4 0 59.733c0 21.333 4.267 38.4 8.533 46.933s17.067 12.8 38.4 12.8h17.067v34.133h-29.867c-12.8 0-25.6 0-34.133-4.267s-17.067-8.533-25.6-12.8c-8.533-8.533-12.8-17.067-12.8-29.867-4.267-12.8-4.267-25.6-4.267-42.667 0-25.6 0-46.933 4.267-68.267 0-21.333 4.267-42.667 4.267-64 0-12.8-4.267-25.6-12.8-34.133-8.533-12.8-25.6-17.067-46.933-17.067v-34.133c12.8 0 21.333 0 29.867-4.267s12.8-8.533 17.067-12.8c4.267-4.267 8.533-12.8 8.533-17.067s4.267-12.8 4.267-21.333c0-12.8 0-21.333 0-34.133 0-8.533 0-21.333 0-29.867s0-21.333 0-34.133c0-12.8 0-21.333 0-34.133 0-17.067 0-34.133 4.267-42.667s8.533-21.333 12.8-29.867c8.533-8.533 17.067-12.8 25.6-12.8 8.533-4.267 21.333-4.267 34.133-4.267h21.333z"
|
|
1152
|
+
],
|
|
1153
|
+
"attrs": [{}, {}, {}, {}],
|
|
1154
|
+
"isMulticolor": false,
|
|
1155
|
+
"isMulticolor2": false,
|
|
1156
|
+
"tags": ["sp-spel"],
|
|
1157
|
+
"defaultCode": 59652,
|
|
1158
|
+
"grid": 0
|
|
1159
|
+
},
|
|
1160
|
+
"attrs": [{}, {}, {}, {}],
|
|
1161
|
+
"properties": { "order": 15, "id": 41, "name": "spel", "prevSize": 32, "code": 59652 },
|
|
1162
|
+
"setIdx": 0,
|
|
1163
|
+
"setId": 1,
|
|
1164
|
+
"iconIdx": 61
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
"icon": {
|
|
1168
|
+
"paths": [
|
|
1169
|
+
"M21.632 1024c-5.632 0-11.093-2.261-15.104-6.229-5.76-5.76-7.723-14.123-5.163-21.803l90.496-271.531c0.213-0.597 0.597-1.451 0.896-2.005 0.853-2.005 2.133-3.968 3.712-5.675 0.128-0.128 0.256-0.299 0.384-0.427l672.555-672.597c28.203-27.264 65.024-42.197 103.808-42.197l2.773 0.043c39.893 0.683 77.099 16.896 104.832 45.568 56.192 58.197 56.192 149.333 0 207.488l-29.781 29.781c-0.213 0.256-0.427 0.469-0.64 0.683l-642.133 642.133c-0.427 0.427-0.896 0.811-1.408 1.195-1.493 1.237-3.072 2.219-4.779 3.029-0.043 0-0.128 0.043-0.213 0.085-0.512 0.299-1.28 0.683-2.304 0.981l-271.189 90.368c-2.133 0.725-4.395 1.109-6.741 1.109zM55.381 968.917l198.315-66.091-132.224-132.224-66.091 198.315zM293.205 882.005l611.968-611.968-150.869-150.869-611.968 611.968 150.869 150.869zM935.296 239.829l15.104-15.104c39.936-41.344 39.851-106.411-0.256-147.925-19.797-20.48-46.379-32.043-74.88-32.555h-1.92c-27.733 0-54.059 10.624-74.069 29.952l-14.805 14.805 150.827 150.827z"
|
|
1170
|
+
],
|
|
1171
|
+
"attrs": [{}],
|
|
1172
|
+
"isMulticolor": false,
|
|
1173
|
+
"isMulticolor2": false,
|
|
1174
|
+
"tags": ["pencil"],
|
|
1175
|
+
"defaultCode": 59653,
|
|
1176
|
+
"grid": 0
|
|
1177
|
+
},
|
|
1178
|
+
"attrs": [{}],
|
|
1179
|
+
"properties": { "order": 16, "id": 42, "name": "pencil", "prevSize": 32, "code": 59653 },
|
|
1180
|
+
"setIdx": 0,
|
|
1181
|
+
"setId": 1,
|
|
1182
|
+
"iconIdx": 62
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"icon": {
|
|
1186
|
+
"paths": [
|
|
1187
|
+
"M942.464 1023.275c-1.792 0-3.627-0.085-5.419-0.341h-850.432c-1.749 0.213-3.499 0.299-5.248 0.299-22.528 0-41.515-16.085-45.099-38.272-1.835-11.307 0.597-22.784 6.869-32.341l430.549-861.013c12.416-24.875 30.805-27.52 38.144-27.52 9.131 0 26.197 3.584 38.144 27.52l430.549 861.056c13.269 20.181 8.192 47.872-11.477 62.037-7.808 5.589-16.981 8.576-26.581 8.576zM80.683 973.013c-0.512 0.981-1.067 1.963-1.749 2.859-0.512 0.725-0.683 1.451-0.555 2.219 0.256 1.536 1.621 2.475 2.816 2.475 1.664-0.256 2.816-0.341 3.968-0.341h853.333c1.152 0 2.304 0.085 3.456 0.299 0.128 0 0.213 0 0.341 0 0.853 0 1.323-0.171 1.792-0.512 1.323-0.939 1.621-2.773 0.683-4.096-0.64-0.853-1.237-1.835-1.749-2.859l-431.189-862.379-431.147 862.336z",
|
|
1188
|
+
"M511.829 745.771c-11.776 0-21.333-9.557-21.333-21.333v-298.667c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v298.667c0 11.776-9.557 21.333-21.333 21.333z",
|
|
1189
|
+
"M512.427 852.437c-17.579-0.043-31.872-13.611-32.555-30.933-0.171-8.832 2.944-16.981 8.832-23.168s13.824-9.728 22.357-9.856c18.091 0.341 32.128 13.952 32.768 30.976 0.171 8.832-2.944 16.981-8.832 23.168s-13.824 9.685-22.357 9.856c-0.043-0.043-0.128-0.043-0.213-0.043 0 0 0 0 0 0z"
|
|
1190
|
+
],
|
|
1191
|
+
"attrs": [{}, {}, {}],
|
|
1192
|
+
"isMulticolor": false,
|
|
1193
|
+
"isMulticolor2": false,
|
|
1194
|
+
"tags": ["alert-triangle"],
|
|
1195
|
+
"defaultCode": 59654,
|
|
1196
|
+
"grid": 0
|
|
1197
|
+
},
|
|
1198
|
+
"attrs": [{}, {}, {}],
|
|
1199
|
+
"properties": { "order": 17, "id": 43, "name": "alert-triangle", "prevSize": 32, "code": 59654 },
|
|
1200
|
+
"setIdx": 0,
|
|
1201
|
+
"setId": 1,
|
|
1202
|
+
"iconIdx": 63
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"icon": {
|
|
1206
|
+
"paths": [
|
|
1207
|
+
"M512 1024c-135.723 0-263.595-52.736-360.192-148.523-0.555-0.384-1.152-0.853-1.792-1.493-0.469-0.469-1.067-1.195-1.536-1.92-95.531-95.915-148.48-224.043-148.48-360.064 0-282.325 229.675-512 512-512 135.723 0 263.595 52.736 360.235 148.523 0.512 0.341 1.152 0.853 1.792 1.451 0.427 0.427 0.939 1.067 1.365 1.707 95.829 96.64 148.608 224.555 148.608 360.32 0 282.325-229.675 512-512 512zM195.797 858.368c86.827 79.403 198.699 122.965 316.203 122.965 258.773 0 469.333-210.56 469.333-469.333 0-117.504-43.563-229.376-122.965-316.203l-662.571 662.571zM512 42.667c-258.773 0-469.333 210.56-469.333 469.333 0 117.504 43.563 229.376 122.965 316.203l662.571-662.571c-86.827-79.403-198.699-122.965-316.203-122.965z"
|
|
1208
|
+
],
|
|
1209
|
+
"attrs": [{}],
|
|
1210
|
+
"isMulticolor": false,
|
|
1211
|
+
"isMulticolor2": false,
|
|
1212
|
+
"tags": ["delete"],
|
|
1213
|
+
"defaultCode": 59655,
|
|
1214
|
+
"grid": 0
|
|
1215
|
+
},
|
|
1216
|
+
"attrs": [{}],
|
|
1217
|
+
"properties": { "order": 18, "id": 44, "name": "delete", "prevSize": 32, "code": 59655 },
|
|
1218
|
+
"setIdx": 0,
|
|
1219
|
+
"setId": 1,
|
|
1220
|
+
"iconIdx": 64
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"icon": {
|
|
1224
|
+
"paths": [
|
|
1225
|
+
"M192 1024c-35.285 0-64-28.715-64-64v-789.333h-106.667c-11.776 0-21.333-9.557-21.333-21.333s9.557-21.333 21.333-21.333h277.333v-64c0-35.285 28.715-64 64-64h298.667c35.285 0 64 28.715 64 64v64h277.333c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-106.667v789.333c0 35.285-28.715 64-64 64h-640zM170.667 960c0 11.776 9.557 21.333 21.333 21.333h640c11.776 0 21.333-9.557 21.333-21.333v-789.333h-682.667v789.333zM682.667 128v-64c0-11.776-9.557-21.333-21.333-21.333h-298.667c-11.776 0-21.333 9.557-21.333 21.333v64h341.333z",
|
|
1226
|
+
"M320 832c-11.776 0-21.333-9.557-21.333-21.333v-512c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v512c0 11.776-9.557 21.333-21.333 21.333z",
|
|
1227
|
+
"M512 832c-11.776 0-21.333-9.557-21.333-21.333v-512c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v512c0 11.776-9.557 21.333-21.333 21.333z",
|
|
1228
|
+
"M704 832c-11.776 0-21.333-9.557-21.333-21.333v-512c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v512c0 11.776-9.557 21.333-21.333 21.333z"
|
|
1229
|
+
],
|
|
1230
|
+
"attrs": [{}, {}, {}, {}],
|
|
1231
|
+
"isMulticolor": false,
|
|
1232
|
+
"isMulticolor2": false,
|
|
1233
|
+
"tags": ["bin"],
|
|
1234
|
+
"defaultCode": 59656,
|
|
1235
|
+
"grid": 0
|
|
1236
|
+
},
|
|
1237
|
+
"attrs": [{}, {}, {}, {}],
|
|
1238
|
+
"properties": { "order": 19, "id": 45, "name": "bin", "prevSize": 32, "code": 59656 },
|
|
1239
|
+
"setIdx": 0,
|
|
1240
|
+
"setId": 1,
|
|
1241
|
+
"iconIdx": 65
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"icon": {
|
|
1245
|
+
"paths": [
|
|
1246
|
+
"M341.333 85.333c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333zM341.333 42.667c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128c0-72.533-55.467-128-128-128v0z",
|
|
1247
|
+
"M682.667 85.333c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333zM682.667 42.667c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128c0-72.533-55.467-128-128-128v0z",
|
|
1248
|
+
"M341.333 426.667c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333zM341.333 384c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128c0-72.533-55.467-128-128-128v0z",
|
|
1249
|
+
"M682.667 426.667c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333zM682.667 384c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128c0-72.533-55.467-128-128-128v0z",
|
|
1250
|
+
"M341.333 768c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333zM341.333 725.333c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128c0-72.533-55.467-128-128-128v0z",
|
|
1251
|
+
"M682.667 768c46.933 0 85.333 38.4 85.333 85.333s-38.4 85.333-85.333 85.333-85.333-38.4-85.333-85.333 38.4-85.333 85.333-85.333zM682.667 725.333c-72.533 0-128 55.467-128 128s55.467 128 128 128 128-55.467 128-128c0-72.533-55.467-128-128-128v0z"
|
|
1252
|
+
],
|
|
1253
|
+
"attrs": [{}, {}, {}, {}, {}, {}],
|
|
1254
|
+
"isMulticolor": false,
|
|
1255
|
+
"isMulticolor2": false,
|
|
1256
|
+
"tags": ["sp-handle"],
|
|
1257
|
+
"defaultCode": 59657,
|
|
1258
|
+
"grid": 0
|
|
1259
|
+
},
|
|
1260
|
+
"attrs": [{}, {}, {}, {}, {}, {}],
|
|
1261
|
+
"properties": { "order": 20, "id": 46, "name": "sp-handle", "prevSize": 32, "code": 59657 },
|
|
1262
|
+
"setIdx": 0,
|
|
1263
|
+
"setId": 1,
|
|
1264
|
+
"iconIdx": 66
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"icon": {
|
|
1268
|
+
"paths": [
|
|
1269
|
+
"M512.043 682.667c-94.123 0-170.667-76.544-170.667-170.667s76.544-170.667 170.667-170.667 170.667 76.544 170.667 170.667-76.587 170.667-170.667 170.667zM512.043 384c-70.571 0-128 57.429-128 128s57.429 128 128 128c70.571 0 128-57.429 128-128s-57.429-128-128-128z",
|
|
1270
|
+
"M512.043 810.667c-244.053 0-445.483-207.104-501.376-270.592-13.952-16.043-13.952-40.107-0.085-56.107 55.936-63.488 257.408-270.635 501.461-270.635 243.797 0 445.099 206.72 501.205 270.379 0.085 0.085 0.171 0.171 0.256 0.299 13.867 15.957 13.867 40.021 0 55.979-55.979 63.531-257.451 270.677-501.461 270.677zM512.043 256c-226.133 0-416.469 196.011-469.376 256.128 52.949 59.861 243.2 255.872 469.376 255.872 226.133 0 416.427-196.011 469.376-256.128-52.992-59.861-243.285-255.872-469.376-255.872z"
|
|
1271
|
+
],
|
|
1272
|
+
"attrs": [{}, {}],
|
|
1273
|
+
"isMulticolor": false,
|
|
1274
|
+
"isMulticolor2": false,
|
|
1275
|
+
"tags": ["view-1"],
|
|
1276
|
+
"defaultCode": 59658,
|
|
1277
|
+
"grid": 0
|
|
1278
|
+
},
|
|
1279
|
+
"attrs": [{}, {}],
|
|
1280
|
+
"properties": { "order": 21, "id": 47, "name": "view-1", "prevSize": 32, "code": 59658 },
|
|
1281
|
+
"setIdx": 0,
|
|
1282
|
+
"setId": 1,
|
|
1283
|
+
"iconIdx": 67
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"icon": {
|
|
1287
|
+
"paths": [
|
|
1288
|
+
"M512 1002.581c-270.549 0-490.667-220.117-490.667-490.667s220.117-490.667 490.667-490.667 490.667 220.117 490.667 490.667-220.117 490.667-490.667 490.667zM512 63.915c-247.040 0-448 200.96-448 448s200.96 448 448 448c247.040 0 448-200.96 448-448s-200.96-448-448-448z",
|
|
1289
|
+
"M704 746.667c-11.776 0-21.333-9.557-21.333-21.333 0-11.093 8.491-20.224 19.328-21.248 9.6-7.467 40.107-62.080 40.107-124.715 0-26.795-6.059-48.725-17.536-63.445-13.056-16.768-34.347-25.259-63.232-25.259h-353.749l91.52 91.52c8.32 8.32 8.32 21.845 0 30.165-4.053 4.011-9.387 6.229-15.104 6.229s-11.051-2.219-15.104-6.229l-127.744-127.744c-2.048-1.92-3.797-4.48-4.949-7.339-0.64-1.579-0.811-2.944-0.896-3.627-0.213-0.768-0.64-2.304-0.64-4.309 0-0.171 0-0.384 0-0.555 0.085-5.504 2.304-10.709 6.229-14.635l128-128c4.053-4.011 9.387-6.229 15.104-6.229s11.051 2.219 15.104 6.272c8.32 8.32 8.32 21.845 0 30.165l-91.691 91.648h353.92c42.667 0 75.264 14.037 96.853 41.685 17.365 22.272 26.581 53.291 26.581 89.685 0 65.792-34.688 167.296-80.768 167.296z"
|
|
1290
|
+
],
|
|
1291
|
+
"attrs": [{}, {}],
|
|
1292
|
+
"isMulticolor": false,
|
|
1293
|
+
"isMulticolor2": false,
|
|
1294
|
+
"tags": ["navigation-left-circle"],
|
|
1295
|
+
"grid": 0
|
|
1296
|
+
},
|
|
1297
|
+
"attrs": [{}, {}],
|
|
1298
|
+
"properties": { "order": 24, "id": 48, "name": "navigation-left-circle", "prevSize": 32, "code": 59666 },
|
|
1299
|
+
"setIdx": 0,
|
|
1300
|
+
"setId": 1,
|
|
1301
|
+
"iconIdx": 68
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
"icon": {
|
|
1305
|
+
"paths": [
|
|
1306
|
+
"M981.333 960l-217.6-409.6c-4.267-4.267-8.533-8.533-12.8-8.533h-4.267c-4.267 0-4.267 0-8.533 4.267-4.267 0-4.267 4.267-8.533 8.533l-217.6 409.6c-4.267 4.267-4.267 12.8 0 17.067s8.533 8.533 17.067 8.533h430.933c8.533 0 12.8-4.267 17.067-8.533 4.267-8.533 4.267-12.8 4.267-21.333zM725.333 674.133c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v128c0 12.8-8.533 21.333-21.333 21.333s-21.333-12.8-21.333-25.6v-123.733zM746.667 925.867c-17.067 0-34.133-12.8-34.133-34.133s12.8-34.133 34.133-34.133c17.067 0 34.133 12.8 34.133 34.133s-17.067 34.133-34.133 34.133z",
|
|
1307
|
+
"M405.333 1011.2h-4.267c-21.333-4.267-42.667-12.8-64-21.333v0c-230.4-85.333-366.933-324.267-324.267-567.467v-4.267c0-8.533 4.267-12.8 4.267-21.333 46.933-230.4 256-396.8 494.933-396.8 38.4 0 76.8 4.267 110.933 12.8 132.267 29.867 247.467 110.933 320 226.133s98.133 251.733 68.267 388.267c-8.533 29.867-17.067 59.733-29.867 85.333 0 8.533-8.533 12.8-17.067 12.8-4.267 0-4.267 0-8.533 0-12.8-4.267-17.067-17.067-12.8-29.867 12.8-25.6 21.333-51.2 25.6-81.067 25.6-123.733 4.267-247.467-59.733-354.133-17.067-25.6-34.133-46.933-55.467-68.267h-238.933c-21.333 0-38.4 8.533-51.2 21.333s-21.333 34.133-21.333 51.2c0 42.667 34.133 72.533 72.533 76.8h17.067c51.2 0 98.133 25.6 123.733 68.267l4.267 8.533c8.533 0 8.533 8.533 8.533 12.8s-4.267 8.533-8.533 12.8-8.533 4.267-12.8 4.267c-8.533 0-12.8-4.267-17.067-8.533l-4.267-8.533c-21.333-29.867-55.467-46.933-89.6-46.933h-17.067c-64 0-115.2-51.2-115.2-115.2 0-29.867 12.8-59.733 34.133-81.067s51.2-34.133 81.067-34.133h192c-55.467-46.933-123.733-76.8-196.267-93.867-34.133-12.8-68.267-17.067-102.4-17.067-217.6 0-409.6 153.6-456.533 362.667h234.667c38.4 0 76.8 17.067 106.667 42.667l46.933 46.933c55.467 55.467 59.733 145.067 4.267 204.8l-59.733 68.267c-17.067 21.333-25.6 42.667-25.6 72.533v119.467c17.067 4.267 29.867 8.533 46.933 12.8 12.8 4.267 17.067 12.8 17.067 25.6-4.267 8.533-12.8 12.8-21.333 12.8zM46.933 448c-29.867 204.8 85.333 409.6 273.067 490.667v-102.4c0-38.4 12.8-72.533 38.4-98.133l59.733-64c38.4-42.667 34.133-106.667-4.267-145.067l-46.933-46.933c-21.333-21.333-46.933-29.867-76.8-29.867-0-4.267-243.2-4.267-243.2-4.267z"
|
|
1308
|
+
],
|
|
1309
|
+
"attrs": [{}, {}],
|
|
1310
|
+
"isMulticolor": false,
|
|
1311
|
+
"isMulticolor2": false,
|
|
1312
|
+
"tags": ["earth-warning"],
|
|
1313
|
+
"grid": 0
|
|
1314
|
+
},
|
|
1315
|
+
"attrs": [{}, {}],
|
|
1316
|
+
"properties": { "order": 25, "id": 49, "name": "earth-warning", "prevSize": 32, "code": 59669 },
|
|
1317
|
+
"setIdx": 0,
|
|
1318
|
+
"setId": 1,
|
|
1319
|
+
"iconIdx": 69
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"icon": {
|
|
1323
|
+
"paths": [
|
|
1324
|
+
"M192 917.333c-105.856 0-192-86.144-192-192v-426.667c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v106.667h42.667v-256c0-23.509 19.157-42.667 42.667-42.667h170.667c23.509 0 42.667 19.157 42.667 42.667v256h42.667v-256c0-23.509 19.157-42.667 42.667-42.667h170.667c23.552 0 42.667 19.157 42.667 42.667v256h42.667v-256c0-23.509 19.115-42.667 42.667-42.667h170.667c23.552 0 42.667 19.157 42.667 42.667v256h42.667v-106.667c0-11.776 9.557-21.333 21.333-21.333s21.333 9.557 21.333 21.333v426.667c0 105.856-86.144 192-192 192h-640zM42.667 725.333c0 82.347 66.987 149.333 149.333 149.333h640c82.347 0 149.333-66.987 149.333-149.333v-277.333h-42.667v170.667c0 34.176-13.312 66.304-37.461 90.496-24.192 24.192-56.32 37.504-90.539 37.504-4.395 0-8.789-0.213-13.184-0.683-67.029-9.301-116.224-66.816-114.816-133.845v-164.139h-42.667v170.667c0 34.176-13.312 66.304-37.461 90.496-24.192 24.192-56.32 37.504-90.539 37.504-4.395 0-8.789-0.213-13.184-0.683-66.987-9.259-116.181-66.816-114.816-133.803v-164.181h-42.667v170.667c0 34.176-13.312 66.347-37.461 90.496-24.192 24.192-56.32 37.504-90.539 37.504-4.395 0-8.789-0.213-13.184-0.683-66.987-9.259-116.181-66.816-114.816-133.803v-164.181h-42.667v277.333zM725.333 612.608c-0.939 45.739 32.256 84.779 77.269 91.051 2.176 0.213 5.12 0.341 8.064 0.341 22.784 0 44.203-8.875 60.331-25.003 16.128-16.085 25.003-37.547 25.003-60.331v-256h-170.667v249.941zM426.667 612.608c-0.939 45.739 32.256 84.779 77.269 91.051 2.176 0.213 5.12 0.341 8.107 0.341 22.784 0 44.203-8.875 60.331-25.003 16.085-16.085 24.96-37.547 24.96-60.331v-256h-170.667v249.941zM128 612.608c-0.939 45.739 32.256 84.779 77.269 91.051 2.176 0.213 5.12 0.341 8.064 0.341 22.784 0 44.203-8.875 60.331-25.003s25.003-37.547 25.003-60.331v-256h-170.667v249.941zM896 320v-170.667h-170.667v170.667h170.667zM597.333 320v-170.667h-170.667v170.667h170.667zM298.667 320v-170.667h-170.667v170.667h170.667z",
|
|
1325
|
+
"M224 426.667c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z",
|
|
1326
|
+
"M266.667 597.333c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z",
|
|
1327
|
+
"M522.667 426.667c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z",
|
|
1328
|
+
"M864 448c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z",
|
|
1329
|
+
"M821.333 554.667c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z",
|
|
1330
|
+
"M565.333 554.667c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"
|
|
1331
|
+
],
|
|
1332
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
1333
|
+
"isMulticolor": false,
|
|
1334
|
+
"isMulticolor2": false,
|
|
1335
|
+
"tags": ["lab-tubes"],
|
|
1336
|
+
"grid": 0
|
|
1337
|
+
},
|
|
1338
|
+
"attrs": [{}, {}, {}, {}, {}, {}, {}],
|
|
1339
|
+
"properties": { "order": 26, "id": 50, "name": "lab-tubes", "prevSize": 32, "code": 59670 },
|
|
1340
|
+
"setIdx": 0,
|
|
1341
|
+
"setId": 1,
|
|
1342
|
+
"iconIdx": 70
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"icon": {
|
|
1346
|
+
"paths": [
|
|
1347
|
+
"M286.635 593.237c-5.205 0-10.283-0.939-15.189-2.816-10.581-4.053-18.944-11.989-23.552-22.357l-110.123-244.864c-2.517-5.76-3.755-11.904-3.669-17.963 0.384-23.509 19.328-41.941 43.136-41.984 2.432 0.085 4.523 0.085 6.656 0.085 32.896 0 66.005-7.083 95.744-20.437l416.171-186.923c9.088-4.096 18.603-7.296 28.331-9.472 10.965-2.475 22.144-3.755 33.28-3.755 27.989 0 55.424 7.979 79.36 23.040 33.749 21.291 57.173 54.4 66.005 93.312 14.635 70.997-22.912 142.976-89.216 171.392l-411.477 185.003c-31.829 14.251-60.501 35.84-82.901 62.549-4.053 4.907-9.344 8.875-15.275 11.52-5.547 2.432-11.349 3.669-17.28 3.669zM286.848 550.656c18.859-22.869 41.6-42.368 67.456-58.027l-44.715-99.456c-4.821-10.709 0-23.381 10.709-28.203 2.773-1.237 5.717-1.877 8.747-1.877 8.405 0 16.043 4.949 19.456 12.587l43.819 97.451 77.867-34.987-26.325-58.539c-2.347-5.205-2.517-11.008-0.469-16.299 2.005-5.333 6.016-9.557 11.179-11.904 2.773-1.237 5.717-1.877 8.747-1.877 8.363 0 16 4.949 19.456 12.544l26.368 58.581 77.824-34.987-43.819-97.408c-2.347-5.205-2.517-11.008-0.469-16.299s6.016-9.557 11.179-11.904c2.773-1.237 5.717-1.877 8.747-1.877 8.363 0 16 4.949 19.456 12.587l43.861 97.451 77.824-34.987-26.283-58.581c-2.347-5.205-2.517-11.008-0.469-16.341 2.005-5.333 6.016-9.557 11.179-11.861 2.773-1.237 5.717-1.877 8.789-1.877 8.405 0 16 4.949 19.456 12.629l26.283 58.539 53.845-24.192c48.043-20.608 75.136-72.405 64.64-123.307-6.229-27.435-22.955-51.029-47.061-66.219-17.109-10.795-36.693-16.469-56.661-16.469-7.936 0-15.957 0.896-23.808 2.688-6.912 1.579-13.739 3.84-20.224 6.784l-416.341 186.795c-35.2 15.829-74.325 24.192-113.195 24.192-2.347 0-4.736-0.043-7.083-0.085l110.037 244.736z",
|
|
1348
|
+
"M223.829 981.291c-58.837 0-106.667-47.872-106.667-106.667 0-30.421 24.533-77.824 72.875-140.971 7.083-9.088 17.195-14.848 28.501-16.256 1.792-0.213 3.541-0.341 5.291-0.341 9.557 0 18.603 3.115 26.197 9.003 2.773 2.176 5.291 4.651 7.424 7.424 48.512 63.232 73.045 110.677 73.045 141.141 0 58.795-47.872 106.667-106.667 106.667zM223.744 759.723c-47.189 61.653-63.957 100.437-63.957 114.901 0 35.285 28.715 64 64 64s64-28.715 64-64c0-14.507-16.768-53.291-64.043-114.944v0.043z"
|
|
1349
|
+
],
|
|
1350
|
+
"attrs": [{}, {}],
|
|
1351
|
+
"isMulticolor": false,
|
|
1352
|
+
"isMulticolor2": false,
|
|
1353
|
+
"tags": ["lab-tube"],
|
|
1354
|
+
"grid": 0
|
|
1355
|
+
},
|
|
1356
|
+
"attrs": [{}, {}],
|
|
1357
|
+
"properties": { "order": 27, "id": 51, "name": "lab-tube", "prevSize": 32, "code": 59671 },
|
|
1358
|
+
"setIdx": 0,
|
|
1359
|
+
"setId": 1,
|
|
1360
|
+
"iconIdx": 71
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"icon": {
|
|
1364
|
+
"paths": [
|
|
1365
|
+
"M85.333 832c-34.133 0-64-29.867-64-64v-597.333c0-34.133 29.867-64 64-64h149.333v-64c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v64h384v-64c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v64h149.333c34.133 0 64 29.867 64 64v277.333c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-85.333h-810.667v405.333c0 12.8 8.533 21.333 21.333 21.333h341.333c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-341.333zM874.667 320v-149.333c0-12.8-8.533-21.333-21.333-21.333h-149.333v106.667c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-106.667h-384v106.667c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-106.667h-149.333c-12.8 0-21.333 8.533-21.333 21.333v149.333h810.667z",
|
|
1366
|
+
"M981.333 960l-217.6-409.6c-4.267-4.267-8.533-8.533-12.8-8.533h-4.267c-4.267 0-4.267 0-8.533 4.267-4.267 0-4.267 4.267-8.533 8.533l-217.6 409.6c-4.267 4.267-4.267 12.8 0 17.067s8.533 8.533 17.067 8.533h430.933c8.533 0 12.8-4.267 17.067-8.533 4.267-8.533 4.267-12.8 4.267-21.333zM725.333 674.133c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v128c0 12.8-8.533 21.333-21.333 21.333s-21.333-12.8-21.333-25.6v-123.733zM746.667 925.867c-17.067 0-34.133-12.8-34.133-34.133s12.8-34.133 34.133-34.133c17.067 0 34.133 12.8 34.133 34.133s-17.067 34.133-34.133 34.133z"
|
|
1367
|
+
],
|
|
1368
|
+
"attrs": [{}, {}],
|
|
1369
|
+
"isMulticolor": false,
|
|
1370
|
+
"isMulticolor2": false,
|
|
1371
|
+
"tags": ["calendar-warning"],
|
|
1372
|
+
"grid": 0
|
|
1373
|
+
},
|
|
1374
|
+
"attrs": [{}, {}],
|
|
1375
|
+
"properties": { "order": 28, "id": 52, "name": "calendar-warning", "prevSize": 32, "code": 128502 },
|
|
1376
|
+
"setIdx": 0,
|
|
1377
|
+
"setId": 1,
|
|
1378
|
+
"iconIdx": 72
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
"icon": {
|
|
1382
|
+
"paths": [
|
|
1383
|
+
"M21.333 853.333c-12.8 0-21.333-8.533-21.333-21.333v-725.333c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v704h85.333v-554.667c0-25.6 17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667v554.667h42.667v-341.333c0-25.6 17.067-42.667 42.667-42.667h85.333c25.6 0 42.667 17.067 42.667 42.667v85.333c0 12.8-8.533 21.333-21.333 21.333s-21.333-8.533-21.333-21.333v-85.333h-85.333v341.333h34.133c12.8 0 21.333 8.533 21.333 21.333s-8.533 21.333-21.333 21.333h-396.8zM256 810.667v-554.667h-85.333v554.667h85.333z",
|
|
1384
|
+
"M128 149.333c-4.267 0-12.8-4.267-17.067-4.267l-42.667-42.667c0-4.267-4.267-12.8-4.267-17.067s4.267-12.8 4.267-17.067 12.8-4.267 17.067-4.267 12.8 4.267 17.067 4.267l42.667 42.667c0 4.267 4.267 12.8 4.267 17.067s-4.267 12.8-4.267 17.067-12.8 4.267-17.067 4.267z",
|
|
1385
|
+
"M213.333 106.667c-12.8 0-21.333-8.533-21.333-21.333v-64c0-12.8 8.533-21.333 21.333-21.333s21.333 8.533 21.333 21.333v64c0 12.8-8.533 21.333-21.333 21.333z",
|
|
1386
|
+
"M298.667 149.333c-4.267 0-12.8-4.267-17.067-4.267s-4.267-12.8-4.267-17.067 4.267-12.8 4.267-17.067l42.667-42.667c4.267 0 12.8-4.267 17.067-4.267s12.8 4.267 17.067 4.267 4.267 12.8 4.267 17.067-4.267 12.8-4.267 17.067l-42.667 42.667c-4.267 0-12.8 4.267-17.067 4.267z",
|
|
1387
|
+
"M1002.667 1024c-4.267 0-12.8-4.267-17.067-4.267l-123.733-123.733c-38.4 29.867-85.333 46.933-136.533 46.933-119.467 0-213.333-98.133-213.333-213.333s98.133-213.333 213.333-213.333 213.333 98.133 213.333 213.333c0 51.2-17.067 98.133-46.933 136.533l123.733 123.733c4.267 4.267 4.267 8.533 4.267 17.067s-4.267 12.8-4.267 17.067-8.533 0-12.8 0zM725.333 554.667c-93.867 0-170.667 76.8-170.667 170.667s76.8 170.667 170.667 170.667 170.667-76.8 170.667-170.667-72.533-170.667-170.667-170.667z"
|
|
1388
|
+
],
|
|
1389
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
1390
|
+
"isMulticolor": false,
|
|
1391
|
+
"isMulticolor2": false,
|
|
1392
|
+
"tags": ["explore-data"],
|
|
1393
|
+
"grid": 0
|
|
1394
|
+
},
|
|
1395
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
1396
|
+
"properties": { "order": 29, "id": 53, "name": "explore-data", "prevSize": 32, "code": 59675 },
|
|
1397
|
+
"setIdx": 0,
|
|
1398
|
+
"setId": 1,
|
|
1399
|
+
"iconIdx": 73
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"icon": {
|
|
1403
|
+
"paths": [
|
|
1404
|
+
"M836.267 388.267c-21.333 0-64-38.4-64-59.733s42.667-59.733 64-59.733c21.333 0 64 38.4 64 59.733 0 17.067-42.667 59.733-64 59.733zM772.267 4.267h128l-8.533 213.333h-115.2l-4.267-213.333z",
|
|
1405
|
+
"M806.4 588.8c-4.267-4.267-8.533-8.533-12.8-12.8l-102.4-42.667c-8.533-4.267-12.8-8.533-12.8-17.067-12.8-119.467-119.467-204.8-238.933-192-106.667 17.067-192 110.933-192 226.133 0 12.8-12.8 25.6-25.6 25.6 0 0 0 0 0 0-55.467-4.267-110.933-34.133-149.333-72.533-12.8-12.8-34.133-17.067-51.2-8.533s-25.6 25.6-25.6 42.667c4.267 110.933 59.733 217.6 153.6 281.6 8.533 8.533 12.8 21.333 4.267 29.867 0 0 0 4.267-4.267 4.267-17.067 12.8-38.4 38.4-110.933 102.4-17.067 17.067-17.067 42.667-4.267 59.733 17.067 4.267 29.867 8.533 42.667 8.533h256c183.467 0 337.067-140.8 349.867-328.533 0-8.533 4.267-12.8 12.8-17.067l106.667-59.733c8.533-4.267 12.8-17.067 4.267-29.867zM366.933 614.4c-29.867 0-55.467-21.333-55.467-51.2 12.8-34.133 29.867-68.267 55.467-98.133 25.6 29.867 42.667 64 55.467 98.133 0 29.867-25.6 51.2-55.467 51.2zM512 533.333c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667 42.667 17.067 42.667 42.667-17.067 42.667-42.667 42.667z"
|
|
1406
|
+
],
|
|
1407
|
+
"attrs": [{}, {}],
|
|
1408
|
+
"isMulticolor": false,
|
|
1409
|
+
"isMulticolor2": false,
|
|
1410
|
+
"tags": ["canary-marginal"],
|
|
1411
|
+
"grid": 0
|
|
1412
|
+
},
|
|
1413
|
+
"attrs": [{}, {}],
|
|
1414
|
+
"properties": { "order": 30, "id": 54, "name": "canary-marginal", "prevSize": 32, "code": 59676 },
|
|
1415
|
+
"setIdx": 0,
|
|
1416
|
+
"setId": 1,
|
|
1417
|
+
"iconIdx": 74
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"icon": {
|
|
1421
|
+
"paths": [
|
|
1422
|
+
"M806.4 588.8c-4.267-4.267-8.533-8.533-12.8-12.8l-102.4-42.667c-8.533-4.267-12.8-8.533-12.8-17.067-12.8-119.467-119.467-204.8-238.933-192-106.667 17.067-192 110.933-192 226.133 0 12.8-12.8 25.6-25.6 25.6 0 0 0 0 0 0-55.467-4.267-110.933-34.133-149.333-72.533-12.8-12.8-34.133-17.067-51.2-8.533s-25.6 25.6-25.6 42.667c4.267 110.933 59.733 217.6 153.6 281.6 8.533 8.533 12.8 21.333 4.267 29.867 0 0 0 4.267-4.267 4.267-17.067 12.8-38.4 38.4-110.933 102.4-17.067 17.067-17.067 42.667-4.267 59.733 17.067 4.267 29.867 8.533 42.667 8.533h256c183.467 0 337.067-140.8 349.867-328.533 0-8.533 4.267-12.8 12.8-17.067l106.667-59.733c8.533-4.267 12.8-17.067 4.267-29.867zM580.267 520.533c4.267 4.267 4.267 8.533 0 12.8l-12.8 12.8c0 0-4.267 4.267-4.267 4.267s-4.267 0-4.267-4.267l-38.4-34.133c0 0 0 0 0 0l-34.133 34.133c0 0-4.267 4.267-4.267 4.267s-4.267 0-4.267-4.267l-12.8-12.8c-4.267-4.267-4.267-8.533 0-12.8l34.133-34.133c0 0 0 0 0 0l-34.133-34.133c-4.267-4.267-4.267-8.533 0-12.8l4.267-17.067c0 0 4.267-4.267 4.267-4.267s4.267 0 4.267 4.267l34.133 34.133c0 0 0 0 0 0l42.667-34.133c0 0 4.267-4.267 4.267-4.267s4.267 0 4.267 4.267l12.8 12.8c4.267 4.267 4.267 8.533 0 12.8l-34.133 34.133c0 0 0 0 0 0l38.4 38.4z",
|
|
1423
|
+
"M806.4 128l-72.533-72.533c0 0 0 0 0 0l-12.8-12.8c-38.4-38.4-102.4-38.4-136.533 0-8.533 8.533-12.8 12.8-17.067 21.333-17.067 38.4-12.8 81.067 17.067 110.933l145.067 149.333c8.533 8.533 25.6 8.533 34.133 0 0 0 0 0 0 0l42.667-42.667-81.067-72.533 81.067-81.067z",
|
|
1424
|
+
"M994.133 72.533c-25.6-46.933-85.333-68.267-132.267-42.667-8.533 4.267-17.067 8.533-21.333 17.067l-29.867 25.6 55.467 55.467-76.8 76.8 81.067 81.067 102.4-106.667c29.867-25.6 38.4-72.533 21.333-106.667z"
|
|
1425
|
+
],
|
|
1426
|
+
"attrs": [{}, {}, {}],
|
|
1427
|
+
"isMulticolor": false,
|
|
1428
|
+
"isMulticolor2": false,
|
|
1429
|
+
"tags": ["canary-fail"],
|
|
1430
|
+
"grid": 0
|
|
1431
|
+
},
|
|
1432
|
+
"attrs": [{}, {}, {}],
|
|
1433
|
+
"properties": { "order": 31, "id": 55, "name": "canary-fail", "prevSize": 32, "code": 59677 },
|
|
1434
|
+
"setIdx": 0,
|
|
1435
|
+
"setId": 1,
|
|
1436
|
+
"iconIdx": 75
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"icon": {
|
|
1440
|
+
"paths": [
|
|
1441
|
+
"M795.563 578.048l-101.888-44.501c-6.906-3.004-11.846-9.363-12.789-16.963l-0.011-0.104c-12.561-109.003-104.316-192.853-215.655-192.853-7.567 0-15.044 0.387-22.411 1.143l0.924-0.077c-110.469 15.006-194.706 108.723-194.706 222.114 0 1.008 0.007 2.015 0.020 3.020l-0.002-0.153c0 0.007 0 0.014 0 0.022 0 13.667-11.079 24.747-24.747 24.747-0.631 0-1.256-0.024-1.874-0.070l0.082 0.005c-59.271-6.085-111.207-33.448-148.847-74.209l-0.145-0.159c-7.757-7.952-18.579-12.884-30.552-12.884-6.833 0-13.292 1.606-19.018 4.462l0.247-0.112c-14.325 6.815-24.050 21.171-24.050 37.798 0 1.58 0.088 3.139 0.259 4.673l-0.017-0.189c4.32 116.192 63.179 217.785 151.586 280.421l1.118 0.752c5.853 3.867 9.661 10.417 9.661 17.857 0 5.975-2.456 11.376-6.414 15.249l-0.004 0.004c-15.104 14.72-40.107 36.821-109.696 102.016-8.403 7.815-13.644 18.933-13.644 31.275 0 23.561 19.097 42.661 42.656 42.667l256.257 0c184.963-0.301 336.35-143.647 349.46-325.308l0.066-1.135c0.593-7.375 4.855-13.638 10.941-17.011l0.109-0.056 105.643-57.728c7.652-4.351 12.729-12.449 12.729-21.733 0-10.286-6.232-19.116-15.126-22.92l-0.162-0.062zM512 533.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0z",
|
|
1442
|
+
"M1013.76 52.651c-16.639-31.522-49.2-52.641-86.693-52.641-26.619 0-50.752 10.645-68.374 27.91l0.017-0.016-11.776 11.605c-3.845 3.771-9.117 6.098-14.933 6.098s-11.088-2.327-14.937-6.102l0.003 0.003-11.776-11.605c-17.602-17.266-41.741-27.922-68.369-27.922-37.497 0-70.059 21.132-86.425 52.136l-0.256 0.532c-6.471 12.411-10.266 27.104-10.266 42.684 0 26.368 10.872 50.197 28.379 67.248l0.021 0.020 146.304 150.144c4.408 4.487 10.541 7.268 17.323 7.268s12.914-2.781 17.319-7.265l0.003-0.004 146.304-150.144c17.527-17.071 28.4-40.9 28.4-67.268 0-15.58-3.796-30.273-10.513-43.205l0.246 0.521z"
|
|
1443
|
+
],
|
|
1444
|
+
"attrs": [{}, {}],
|
|
1445
|
+
"isMulticolor": false,
|
|
1446
|
+
"isMulticolor2": false,
|
|
1447
|
+
"tags": ["canary-pass"],
|
|
1448
|
+
"grid": 0
|
|
1449
|
+
},
|
|
1450
|
+
"attrs": [{}, {}],
|
|
1451
|
+
"properties": { "order": 32, "id": 56, "name": "canary-pass", "prevSize": 32, "code": 59678 },
|
|
1452
|
+
"setIdx": 0,
|
|
1453
|
+
"setId": 1,
|
|
1454
|
+
"iconIdx": 76
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"icon": {
|
|
1458
|
+
"paths": [
|
|
1459
|
+
"M853.333 238.933c-17.067-119.467-110.933-217.6-230.4-234.667 0 0-4.267 0-4.267 0s0 0 0 0c-12.8-4.267-29.867-4.267-42.667-4.267h-512c-34.133 0-64 29.867-64 64v682.667c0 12.8 8.533 21.333 21.333 21.333s21.333-8.533 21.333-21.333v-682.667c0-12.8 8.533-21.333 21.333-21.333h512c8.533 0 12.8 0 21.333 0v149.333c0 34.133 29.867 64 64 64h149.333v277.333c0 12.8 8.533 21.333 21.333 21.333s21.333-8.533 21.333-21.333v-281.6c0-4.267 0-8.533 0-12.8zM640 192v-140.8c76.8 21.333 140.8 81.067 162.133 162.133h-140.8c-12.8 0-21.333-8.533-21.333-21.333z",
|
|
1460
|
+
"M102.4 1015.467c-21.333 0-34.133-4.267-51.2-12.8-12.8-8.533-25.6-21.333-34.133-34.133l34.133-25.6c4.267 8.533 12.8 17.067 21.333 21.333s17.067 8.533 25.6 8.533c12.8 0 21.333-4.267 29.867-12.8s8.533-21.333 8.533-42.667v-187.733h51.2v192c0 12.8 0 25.6-4.267 34.133-4.267 12.8-8.533 21.333-12.8 29.867-8.533 8.533-17.067 17.067-25.6 21.333s-29.867 8.533-42.667 8.533z",
|
|
1461
|
+
"M337.067 1015.467c-17.067 0-38.4-4.267-55.467-8.533-17.067-8.533-34.133-17.067-46.933-29.867l29.867-38.4c8.533 8.533 21.333 17.067 34.133 21.333s25.6 8.533 38.4 8.533c17.067 0 29.867-4.267 38.4-8.533s8.533-12.8 8.533-25.6c0-4.267 0-8.533-4.267-12.8s-4.267-8.533-8.533-8.533-8.533-4.267-12.8-8.533c-4.267-4.267-8.533-8.533-17.067-8.533l-38.4-17.067c-8.533-4.267-12.8-8.533-21.333-8.533-8.533-4.267-12.8-8.533-17.067-17.067-4.267-4.267-8.533-12.8-12.8-21.333s-4.267-17.067-4.267-25.6c0-12.8 4.267-21.333 8.533-29.867s12.8-17.067 21.333-25.6 17.067-12.8 29.867-17.067c8.533-8.533 21.333-8.533 34.133-8.533 17.067 0 29.867 4.267 46.933 8.533s29.867 17.067 38.4 25.6l-25.6 29.867c-8.533-8.533-17.067-12.8-29.867-17.067s-17.067-4.267-29.867-4.267c-12.8 0-25.6 4.267-34.133 8.533-4.267 4.267-8.533 12.8-8.533 25.6 0 4.267 0 8.533 4.267 12.8s4.267 8.533 8.533 8.533 8.533 4.267 12.8 8.533c4.267 4.267 12.8 4.267 17.067 8.533l38.4 17.067c8.533 4.267 17.067 8.533 21.333 12.8 8.533 4.267 12.8 8.533 17.067 17.067 4.267 4.267 8.533 12.8 12.8 21.333s4.267 17.067 4.267 25.6c0 12.8-4.267 21.333-8.533 34.133-0 4.267-8.533 12.8-17.067 21.333s-17.067 12.8-29.867 17.067-29.867 8.533-42.667 8.533z",
|
|
1462
|
+
"M593.067 1015.467c-17.067 0-34.133-4.267-51.2-8.533-17.067-8.533-29.867-17.067-38.4-29.867s-21.333-29.867-25.6-46.933c-4.267-17.067-8.533-38.4-8.533-59.733s4.267-42.667 8.533-59.733c4.267-17.067 12.8-34.133 25.6-46.933s25.6-21.333 38.4-29.867c17.067-8.533 29.867-8.533 51.2-8.533 17.067 0 34.133 4.267 51.2 8.533s29.867 17.067 38.4 29.867c12.8 12.8 21.333 25.6 25.6 46.933 4.267 17.067 8.533 38.4 8.533 59.733s-4.267 42.667-8.533 59.733c-4.267 17.067-12.8 34.133-25.6 46.933s-25.6 21.333-38.4 29.867c-12.8 4.267-29.867 8.533-51.2 8.533zM593.067 972.8c12.8 0 21.333-4.267 29.867-8.533s17.067-12.8 21.333-21.333c4.267-8.533 12.8-21.333 12.8-34.133s4.267-25.6 4.267-42.667c0-29.867-8.533-55.467-21.333-72.533s-29.867-25.6-51.2-25.6-38.4 8.533-51.2 25.6c-12.8 17.067-21.333 42.667-21.333 72.533 0 17.067 0 29.867 4.267 42.667s8.533 21.333 12.8 34.133c4.267 8.533 12.8 17.067 21.333 21.333 21.333 4.267 29.867 8.533 38.4 8.533z",
|
|
1463
|
+
"M934.4 729.6h46.933v277.333h-51.2l-106.667-196.267c0 12.8 0 196.267 0 196.267h-46.933v-277.333h51.2l110.933 209.067z"
|
|
1464
|
+
],
|
|
1465
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
1466
|
+
"isMulticolor": false,
|
|
1467
|
+
"isMulticolor2": false,
|
|
1468
|
+
"tags": ["file-json"],
|
|
1469
|
+
"grid": 0
|
|
1470
|
+
},
|
|
1471
|
+
"attrs": [{}, {}, {}, {}, {}],
|
|
1472
|
+
"properties": { "order": 33, "id": 57, "name": "file-json", "prevSize": 32, "code": 59667 },
|
|
1473
|
+
"setIdx": 0,
|
|
1474
|
+
"setId": 1,
|
|
1475
|
+
"iconIdx": 77
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"icon": {
|
|
1479
|
+
"paths": [
|
|
1480
|
+
"M64 938.667c-35.285 0-64-28.715-64-64v-682.667c0-35.285 28.715-64 64-64h67.669c8.917-25.173 33.024-42.667 60.331-42.667h85.333c0 0 0-0.043 0-0.043 0-47.061 38.272-85.333 85.333-85.333s85.333 38.272 85.333 85.333c0 0 0 0.043 0 0.043h85.333c27.307 0 51.413 17.493 60.331 42.667h67.669c35.285 0 64 28.715 64 64v149.333c0 11.776-9.557 21.333-21.333 21.333s-21.333-9.557-21.333-21.333v-149.333c0-11.776-9.557-21.333-21.333-21.333h-64v21.333c0 35.285-28.715 64-64 64h-341.333c-35.285 0-64-28.715-64-64v-21.333h-64c-11.776 0-21.333 9.557-21.333 21.333v682.667c0 11.776 9.557 21.333 21.333 21.333h341.333c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-341.333zM192 128c-11.776 0-21.333 9.557-21.333 21.333v42.667c0 11.776 9.557 21.333 21.333 21.333h341.333c11.776 0 21.333-9.557 21.333-21.333v-42.667c0-11.776-9.557-21.333-21.333-21.333h-96.896c-15.189 26.112-43.435 42.624-73.771 42.624s-58.581-16.512-73.771-42.624h-96.896zM362.667 42.624c-23.509 0-42.667 19.157-42.667 42.667s19.157 42.667 42.667 42.667 42.667-19.157 42.667-42.667-19.157-42.667-42.667-42.667z",
|
|
1481
|
+
"M533.333 1024c-35.285 0-64-28.715-64-64v-490.667c0-35.285 28.715-64 64-64h302.336c17.109 0 33.152 6.656 45.269 18.731l81.664 81.664c11.904 11.947 18.731 28.416 18.731 45.269v409.003c0 35.285-28.715 64-64 64h-384zM533.333 448c-11.776 0-21.333 9.557-21.333 21.333v490.667c0 11.776 9.557 21.333 21.333 21.333h384c11.776 0 21.333-9.557 21.333-21.333v-409.003c0-5.632-2.261-11.093-6.229-15.061l-81.664-81.664c-4.011-4.011-9.387-6.229-15.104-6.229h-302.336z",
|
|
1482
|
+
"M618.667 639.957c-11.776 0-21.333-9.557-21.333-21.333s9.557-21.333 21.333-21.333h213.333c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-213.333z",
|
|
1483
|
+
"M618.667 767.957c-11.776 0-21.333-9.557-21.333-21.333s9.557-21.333 21.333-21.333h213.333c11.776 0 21.333 9.557 21.333 21.333s-9.557 21.333-21.333 21.333h-213.333z"
|
|
1484
|
+
],
|
|
1485
|
+
"attrs": [{}, {}, {}, {}],
|
|
1486
|
+
"isMulticolor": false,
|
|
1487
|
+
"isMulticolor2": false,
|
|
1488
|
+
"tags": ["copy-paste"],
|
|
1489
|
+
"grid": 0
|
|
1490
|
+
},
|
|
1491
|
+
"attrs": [{}, {}, {}, {}],
|
|
1492
|
+
"properties": { "order": 34, "id": 58, "name": "copy-paste", "prevSize": 32, "code": 59674 },
|
|
1493
|
+
"setIdx": 0,
|
|
1494
|
+
"setId": 1,
|
|
1495
|
+
"iconIdx": 78
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
"icon": {
|
|
1499
|
+
"paths": [
|
|
1500
|
+
"M746.667 1024c-35.285 0-64-28.715-64-64 0-27.307 17.493-51.413 42.667-60.331v-86.315c-0.043-34.304-19.925-65.109-50.347-79.488-10.923 20.779-32.384 34.133-56.32 34.133-27.307 0-51.413-17.493-60.331-42.667h-174.336c-171.392-0.213-318.805-132.096-338.901-301.653-26.581-8.149-45.099-32.64-45.099-61.013 0-31.616 22.827-57.856 53.333-62.933 38.357-149.205 176.171-256.853 330.624-257.067h174.379c8.917-25.173 33.024-42.667 60.331-42.667 35.285 0 64 28.715 64 64v213.333c0 35.285-28.715 64-64 64-27.307 0-51.413-17.493-60.331-42.667h-174.336c-16.256 0.043-32.128 4.821-45.824 13.653 15.275 11.947 24.491 30.379 24.491 50.347 0 31.531-22.912 57.813-52.992 63.061 14.976 26.539 43.307 43.563 74.325 43.605h174.293c8.917-25.173 33.024-42.667 60.331-42.667 28.501 0 53.035 18.688 61.099 45.397 169.515 21.376 301.397 169.813 301.568 341.248v86.315c25.173 8.917 42.667 33.024 42.667 60.331 0 35.285-28.715 64-64 64h-213.291zM746.667 938.667c-11.776 0-21.333 9.557-21.333 21.333s9.557 21.333 21.333 21.333h213.333c11.776 0 21.333-9.557 21.333-21.333s-9.557-21.333-21.333-21.333zM938.667 896v-82.645c-0.171-149.419-109.397-275.413-256-297.813v175.317c51.243 18.859 85.248 67.115 85.333 122.453v82.688zM618.667 469.333c-11.776 0-21.333 9.557-21.333 21.333v213.333c0 11.776 9.557 21.333 21.333 21.333s21.333-9.557 21.333-21.333v-213.333c0-11.776-9.557-21.333-21.333-21.333zM88.491 426.667c21.205 146.603 146.219 255.829 295.509 256h170.667v-170.667h-170.667c-54.144-0.043-102.656-34.773-120.661-85.333zM64 341.333c-11.776 0-21.333 9.557-21.333 21.333s9.557 21.333 21.333 21.333h234.667c11.776 0 21.333-9.557 21.333-21.333s-9.557-21.333-21.333-21.333zM618.667 42.667c-11.776 0-21.333 9.557-21.333 21.333v213.333c0 11.776 9.557 21.333 21.333 21.333s21.333-9.557 21.333-21.333v-213.333c0-11.776-9.557-21.333-21.333-21.333zM289.067 298.667c24.32-27.093 58.624-42.581 94.891-42.667h170.709v-170.667h-170.667c-132.651 0.171-248.448 87.211-286.208 213.333z"
|
|
1501
|
+
],
|
|
1502
|
+
"attrs": [{}],
|
|
1503
|
+
"isMulticolor": false,
|
|
1504
|
+
"isMulticolor2": false,
|
|
1505
|
+
"tags": ["pipeline"],
|
|
1506
|
+
"grid": 0
|
|
1507
|
+
},
|
|
1508
|
+
"attrs": [{}],
|
|
1509
|
+
"properties": { "order": 35, "id": 59, "name": "pipeline", "prevSize": 32, "code": 59672 },
|
|
1510
|
+
"setIdx": 0,
|
|
1511
|
+
"setId": 1,
|
|
1512
|
+
"iconIdx": 79
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"icon": {
|
|
1516
|
+
"paths": [
|
|
1517
|
+
"M513.707 1023.957c-282.325 0-512-229.675-512-512s229.675-512 512-512c282.325 0 512 229.675 512 512s-229.675 512-512 512zM513.707 42.624c-258.773 0-469.333 210.56-469.333 469.333s210.56 469.333 469.333 469.333 469.333-210.56 469.333-469.333-210.56-469.333-469.333-469.333z",
|
|
1518
|
+
"M388.395 732.16c-2.432 0-4.907-0.213-7.339-0.597-23.936-3.883-40.832-26.368-38.016-50.347v-295.765c-1.323-11.221 1.664-22.869 8.277-32.043 7.125-9.899 17.664-16.427 29.696-18.347 2.475-0.384 4.949-0.597 7.381-0.597 8.917 0 17.536 2.603 24.96 7.467l306.432 153.259c23.936 11.989 27.52 29.056 27.52 38.144s-3.584 26.155-27.477 38.144l-306.432 153.216c-7.509 4.907-16.085 7.467-25.003 7.467zM387.84 377.173c-0.768 0.128-1.408 0.512-1.92 1.195-0.427 0.597-0.64 1.451-0.512 2.176 0.213 1.109 0.299 2.304 0.299 3.456v298.667c0 1.109-0.085 2.261-0.256 3.371s0.256 1.877 0.512 2.261c0.341 0.427 0.939 1.024 1.92 1.195 0.128 0 0.256 0 0.384 0 0.896 0 1.365-0.171 1.835-0.512 0.896-0.64 1.835-1.237 2.859-1.749l307.797-153.899c0 0-307.712-153.899-307.712-153.899-1.067-0.512-2.048-1.109-2.987-1.749-0.512-0.384-1.109-0.555-1.707-0.555l-0.512 0.043z"
|
|
1519
|
+
],
|
|
1520
|
+
"attrs": [{}, {}],
|
|
1521
|
+
"isMulticolor": false,
|
|
1522
|
+
"isMulticolor2": false,
|
|
1523
|
+
"tags": ["button-play"],
|
|
1524
|
+
"grid": 0
|
|
1525
|
+
},
|
|
1526
|
+
"attrs": [{}, {}],
|
|
1527
|
+
"properties": { "order": 36, "id": 60, "name": "button-play", "prevSize": 32, "code": 59673 },
|
|
1528
|
+
"setIdx": 0,
|
|
1529
|
+
"setId": 1,
|
|
1530
|
+
"iconIdx": 80
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"icon": {
|
|
1534
|
+
"paths": [
|
|
1535
|
+
"M904.533 311.467l-362.667-196.267c-21.333-8.533-42.667-8.533-64 0l-358.4 196.267c-21.333 12.8-34.133 34.133-34.133 55.467v89.6c0 12.8 4.267 25.6 17.067 29.867s25.6 4.267 38.4 0l362.667-196.267c4.267 0 12.8 0 17.067 0l362.667 196.267c12.8 8.533 25.6 8.533 38.4 0 12.8-4.267 17.067-17.067 17.067-29.867v-89.6c0-21.333-12.8-42.667-34.133-55.467z",
|
|
1536
|
+
"M904.533 695.467l-362.667-196.267c-21.333-8.533-42.667-8.533-64 0l-362.667 196.267c-17.067 12.8-29.867 34.133-29.867 55.467v89.6c0 12.8 4.267 25.6 17.067 29.867s25.6 4.267 38.4 0l362.667-196.267c4.267 0 12.8 0 17.067 0l362.667 196.267c12.8 8.533 25.6 8.533 38.4 0 12.8-4.267 17.067-17.067 17.067-29.867v-89.6c0-21.333-12.8-42.667-34.133-55.467z"
|
|
1537
|
+
],
|
|
1538
|
+
"attrs": [{}, {}],
|
|
1539
|
+
"isMulticolor": false,
|
|
1540
|
+
"isMulticolor2": false,
|
|
1541
|
+
"tags": ["critical"],
|
|
1542
|
+
"grid": 0
|
|
1543
|
+
},
|
|
1544
|
+
"attrs": [{}, {}],
|
|
1545
|
+
"properties": { "order": 37, "id": 61, "name": "critical", "prevSize": 32, "code": 59650 },
|
|
1546
|
+
"setIdx": 0,
|
|
1547
|
+
"setId": 1,
|
|
1548
|
+
"iconIdx": 81
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
"icon": {
|
|
1552
|
+
"paths": [
|
|
1553
|
+
"M976 768h-16v-208c0-61.76-50.24-112-112-112h-272v-128h16c26.389 0 48-21.611 48-48v-160c0-26.411-21.611-48-48-48h-160c-26.389 0-48 21.589-48 48v160c0 26.389 21.611 48 48 48h16v128h-272c-61.76 0-112 50.24-112 112v208h-16c-26.389 0-48 21.611-48 48v160c0 26.389 21.611 48 48 48h160c26.411 0 48-21.611 48-48v-160c0-26.389-21.589-48-48-48h-16v-192h256v192h-16c-26.389 0-48 21.611-48 48v160c0 26.389 21.611 48 48 48h160c26.389 0 48-21.611 48-48v-160c0-26.389-21.611-48-48-48h-16v-192h256v192h-16c-26.389 0-48 21.611-48 48v160c0 26.389 21.611 48 48 48h160c26.389 0 48-21.611 48-48v-160c0-26.389-21.611-48-48-48z"
|
|
1554
|
+
],
|
|
1555
|
+
"attrs": [{}],
|
|
1556
|
+
"isMulticolor": false,
|
|
1557
|
+
"isMulticolor2": false,
|
|
1558
|
+
"tags": ["loadBalancer"],
|
|
1559
|
+
"defaultCode": 59664,
|
|
1560
|
+
"grid": 0
|
|
1561
|
+
},
|
|
1562
|
+
"attrs": [{}],
|
|
1563
|
+
"properties": { "order": 22, "id": 62, "name": "sitemap", "prevSize": 32, "ligatures": "", "code": 59664 },
|
|
1564
|
+
"setIdx": 0,
|
|
1565
|
+
"setId": 1,
|
|
1566
|
+
"iconIdx": 82
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"icon": {
|
|
1570
|
+
"paths": [
|
|
1571
|
+
"M512 0c-282.773 0-512 229.227-512 512s229.227 512 512 512 512-229.227 512-512-229.227-512-512-512zM512 256c141.376 0 256 114.624 256 256s-114.624 256-256 256-256-114.624-256-256 114.624-256 256-256zM817.472 817.472c-81.6 81.6-190.080 126.528-305.472 126.528s-223.872-44.928-305.472-126.528-126.528-190.080-126.528-305.472c0-115.392 44.928-223.872 126.528-305.472l67.883 67.883c0 0 0 0 0 0-131.008 131.008-131.008 344.171 0 475.179 63.467 63.467 147.84 98.411 237.589 98.411s174.123-34.944 237.589-98.411c131.008-131.008 131.008-344.171 0-475.179l67.883-67.883c81.6 81.6 126.528 190.080 126.528 305.472s-44.928 223.872-126.528 305.472z"
|
|
1572
|
+
],
|
|
1573
|
+
"attrs": [{}],
|
|
1574
|
+
"isMulticolor": false,
|
|
1575
|
+
"isMulticolor2": false,
|
|
1576
|
+
"tags": ["spinner"],
|
|
1577
|
+
"defaultCode": 59665,
|
|
1578
|
+
"grid": 0
|
|
1579
|
+
},
|
|
1580
|
+
"attrs": [{}],
|
|
1581
|
+
"properties": { "order": 23, "id": 63, "name": "spinner", "prevSize": 32, "code": 59665 },
|
|
1582
|
+
"setIdx": 0,
|
|
1583
|
+
"setId": 1,
|
|
1584
|
+
"iconIdx": 83
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"icon": {
|
|
1588
|
+
"paths": [
|
|
1589
|
+
"M10.624 307.488l468.64 532.096c8.288 8.64 19.936 14.016 32.832 14.016s24.544-5.376 32.832-13.984v0l468.448-532.096c6.592-7.392 10.624-17.216 10.624-27.968 0-12.992-5.888-24.608-15.104-32.32l-0.064-0.064-78.944-66.432c-7.584-6.432-17.472-10.336-28.288-10.336-13.184 0-24.992 5.824-33.024 15.008l-0.032 0.064-348.384 403.328c-1.952 2.272-4.864 3.712-8.096 3.712s-6.112-1.44-8.064-3.712v0l-348.512-403.36c-7.36-8.384-17.824-13.888-29.568-14.752h-0.128c-1.12-0.096-2.464-0.16-3.776-0.16-10.656 0-20.416 3.904-27.872 10.368l0.064-0.032-78.976 66.336c-8.576 7.104-14.24 17.408-15.168 29.088v0.16c-0.064 0.96-0.128 2.048-0.128 3.168 0 10.752 4.064 20.576 10.784 28l-0.032-0.032z"
|
|
1590
|
+
],
|
|
1591
|
+
"attrs": [{}],
|
|
1592
|
+
"isMulticolor": false,
|
|
1593
|
+
"isMulticolor2": false,
|
|
1594
|
+
"tags": ["arrow-button-down"],
|
|
1595
|
+
"grid": 0
|
|
1596
|
+
},
|
|
1597
|
+
"attrs": [{}],
|
|
1598
|
+
"properties": { "order": 60, "id": 64, "name": "arrow-button-down", "prevSize": 32, "code": 59662 },
|
|
1599
|
+
"setIdx": 0,
|
|
1600
|
+
"setId": 1,
|
|
1601
|
+
"iconIdx": 84
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"icon": {
|
|
1605
|
+
"paths": [
|
|
1606
|
+
"M307.488 1013.376l532.096-468.64c8.64-8.288 14.016-19.936 14.016-32.832s-5.376-24.544-13.984-32.832v0l-532.096-468.448c-7.392-6.592-17.216-10.624-27.968-10.624-12.992 0-24.608 5.888-32.32 15.104l-0.064 0.064-66.432 78.944c-6.432 7.584-10.336 17.472-10.336 28.288 0 13.184 5.824 24.992 15.008 33.024l0.064 0.032 403.328 348.384c2.272 1.952 3.712 4.864 3.712 8.096s-1.44 6.112-3.712 8.064v0l-403.2 348.512c-8.48 7.392-14.048 17.888-14.88 29.728v0.128c-0.096 1.12-0.16 2.464-0.16 3.776 0 10.656 3.904 20.416 10.368 27.872l-0.032-0.064 66.464 78.976c7.808 9.28 19.392 15.136 32.384 15.136 10.752 0 20.544-4 28-10.624l-0.032 0.032z"
|
|
1607
|
+
],
|
|
1608
|
+
"attrs": [{}],
|
|
1609
|
+
"isMulticolor": false,
|
|
1610
|
+
"isMulticolor2": false,
|
|
1611
|
+
"tags": ["arrow-button-right"],
|
|
1612
|
+
"grid": 0
|
|
1613
|
+
},
|
|
1614
|
+
"attrs": [{}],
|
|
1615
|
+
"properties": { "order": 61, "id": 65, "name": "arrow-button-right", "prevSize": 32, "code": 59695 },
|
|
1616
|
+
"setIdx": 0,
|
|
1617
|
+
"setId": 1,
|
|
1618
|
+
"iconIdx": 85
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"icon": {
|
|
1622
|
+
"paths": [
|
|
1623
|
+
"M513.696 804.992c-12.192 0-23.84-5.248-31.968-14.336l-474.624-536.48c-7.808-8.8-7.008-22.304 1.824-30.080 3.936-3.456 8.928-5.376 14.112-5.376 6.112 0 11.936 2.656 16 7.2l474.656 536.448 474.72-536.448c4.064-4.576 9.856-7.2 16-7.2 5.216 0 10.24 1.92 14.112 5.344 8.832 7.808 9.632 21.344 1.824 30.112l-474.72 536.48c-1.12 1.28-2.304 2.432-3.552 3.552-7.936 7.008-18.016 10.784-28.448 10.784z"
|
|
1624
|
+
],
|
|
1625
|
+
"attrs": [{}],
|
|
1626
|
+
"isMulticolor": false,
|
|
1627
|
+
"isMulticolor2": false,
|
|
1628
|
+
"tags": ["arrow-down-1"],
|
|
1629
|
+
"grid": 0
|
|
1630
|
+
},
|
|
1631
|
+
"attrs": [{}],
|
|
1632
|
+
"properties": { "order": 62, "id": 66, "name": "arrow-down-1", "prevSize": 32, "code": 59696 },
|
|
1633
|
+
"setIdx": 0,
|
|
1634
|
+
"setId": 1,
|
|
1635
|
+
"iconIdx": 86
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"icon": {
|
|
1639
|
+
"paths": [
|
|
1640
|
+
"M22.816 805.248c-5.216 0-10.208-1.888-14.112-5.344-8.832-7.808-9.632-21.344-1.888-30.112l474.72-536.448c1.12-1.28 2.336-2.528 3.68-3.68 7.808-6.912 17.824-10.72 28.256-10.72 12.256 0 23.904 5.248 32 14.368l474.72 536.448c7.808 8.832 6.944 22.304-1.824 30.112-3.936 3.456-8.928 5.344-14.112 5.344 0 0 0 0 0 0-6.112 0-11.904-2.592-15.968-7.168l-474.752-536.48-474.656 536.48c-4.064 4.576-9.888 7.168-16 7.168z"
|
|
1641
|
+
],
|
|
1642
|
+
"attrs": [{}],
|
|
1643
|
+
"isMulticolor": false,
|
|
1644
|
+
"isMulticolor2": false,
|
|
1645
|
+
"tags": ["arrow-up-1"],
|
|
1646
|
+
"grid": 0
|
|
1647
|
+
},
|
|
1648
|
+
"attrs": [{}],
|
|
1649
|
+
"properties": { "order": 63, "id": 67, "name": "arrow-up-1", "prevSize": 32, "code": 59697 },
|
|
1650
|
+
"setIdx": 0,
|
|
1651
|
+
"setId": 1,
|
|
1652
|
+
"iconIdx": 87
|
|
1653
|
+
}
|
|
1654
|
+
],
|
|
1655
|
+
"height": 1024,
|
|
1656
|
+
"metadata": { "name": "icomoon" },
|
|
1657
|
+
"preferences": {
|
|
1658
|
+
"showGlyphs": true,
|
|
1659
|
+
"showCodes": true,
|
|
1660
|
+
"showQuickUse": true,
|
|
1661
|
+
"showQuickUse2": true,
|
|
1662
|
+
"showSVGs": true,
|
|
1663
|
+
"fontPref": {
|
|
1664
|
+
"prefix": "icon-",
|
|
1665
|
+
"metadata": { "fontFamily": "icomoon", "majorVersion": 1, "minorVersion": 0 },
|
|
1666
|
+
"metrics": { "emSize": 1024, "baseline": 6.25, "whitespace": 50 },
|
|
1667
|
+
"embed": false,
|
|
1668
|
+
"showSelector": true,
|
|
1669
|
+
"showMetadata": true,
|
|
1670
|
+
"noie8": true,
|
|
1671
|
+
"ie7": false,
|
|
1672
|
+
"postfix": "",
|
|
1673
|
+
"showMetrics": false,
|
|
1674
|
+
"showVersion": false,
|
|
1675
|
+
"resetPoint": 59648
|
|
1676
|
+
},
|
|
1677
|
+
"imagePref": {
|
|
1678
|
+
"prefix": "icon-",
|
|
1679
|
+
"png": true,
|
|
1680
|
+
"useClassSelector": true,
|
|
1681
|
+
"color": 0,
|
|
1682
|
+
"bgColor": 16777215,
|
|
1683
|
+
"classSelector": ".icon",
|
|
1684
|
+
"name": "icomoon",
|
|
1685
|
+
"height": 24,
|
|
1686
|
+
"columns": 16,
|
|
1687
|
+
"margin": 16,
|
|
1688
|
+
"overrideSize": "true"
|
|
1689
|
+
},
|
|
1690
|
+
"historySize": 50,
|
|
1691
|
+
"gridSize": 16,
|
|
1692
|
+
"showLiga": false
|
|
1693
|
+
}
|
|
1694
|
+
}
|