@cloud-ru/uikit-product-icons 17.4.0 → 17.5.1
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 +22 -0
- package/dist/cjs/components/service-icons/EvolutionProtectionPlatform.d.ts +9 -0
- package/dist/cjs/components/service-icons/EvolutionProtectionPlatform.js +67 -0
- package/dist/cjs/components/service-icons/index.d.ts +1 -0
- package/dist/cjs/components/service-icons/index.js +7 -5
- package/dist/esm/components/service-icons/EvolutionProtectionPlatform.d.ts +9 -0
- package/dist/esm/components/service-icons/EvolutionProtectionPlatform.js +32 -0
- package/dist/esm/components/service-icons/index.d.ts +1 -0
- package/dist/esm/components/service-icons/index.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 17.5.1 (2026-06-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **FF-8690:** upd fast-xml-parser ([af1a724](https://github.com/cloud-ru-tech/uikit-product/commit/af1a7245a62e375db68bc1f91522682fc9e0e36e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 17.5.0 (2026-06-15)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **PDS-3881:** add EPP icon ([6119854](https://github.com/cloud-ru-tech/uikit-product/commit/61198541deb1b864a95b9290dad980b3ab79eff7))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# 17.4.0 (2026-06-05)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
className?: string;
|
|
5
|
+
size?: number;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
}
|
|
8
|
+
declare const SvgEvolutionProtectionPlatform: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionProtectionPlatform;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
48
|
+
// DO NOT EDIT IT MANUALLY
|
|
49
|
+
const React = __importStar(require("react"));
|
|
50
|
+
const SvgEvolutionProtectionPlatform = React.forwardRef((_a, ref) => {
|
|
51
|
+
var { size = 24 } = _a, props = __rest(_a, ["size"]);
|
|
52
|
+
props.width = undefined;
|
|
53
|
+
props.height = undefined;
|
|
54
|
+
const testId = 'icon-evolution-protection-platform';
|
|
55
|
+
const style = {};
|
|
56
|
+
const isCustomSize = typeof size === 'number';
|
|
57
|
+
if (isCustomSize) {
|
|
58
|
+
style.width = size + 'px';
|
|
59
|
+
style.height = size + 'px';
|
|
60
|
+
if (!props.style)
|
|
61
|
+
props.style = {};
|
|
62
|
+
props.style.width = size + 'px';
|
|
63
|
+
props.style.height = size + 'px';
|
|
64
|
+
}
|
|
65
|
+
return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'currentColor', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: (0, jsx_runtime_1.jsx)("path", { fill: 'inherit', fillRule: 'evenodd', d: 'M9.18 3.213a1.33 1.33 0 0 0-.747.687c-.133.291-.131.763.005 1.04.391.796 1.425.988 2.035.377l.158-.157H19.6l.01 4.85.01 4.85.75.011.75.011V3.68H10.669l-.177-.163c-.276-.254-.534-.357-.892-.354a1.6 1.6 0 0 0-.42.05M2.889 9.59 2.9 15.5l.11.397c.267.971.879 1.846 1.664 2.379.238.162 7.25 3.684 7.334 3.684.026 0 1.388-.685 3.025-1.523l2.978-1.522.267.047a1.255 1.255 0 0 0 1.395-.722c.299-.645.027-1.363-.633-1.672a1.35 1.35 0 0 0-1.02-.013c-.367.163-.672.535-.733.896l-.028.163-2.6 1.332c-1.429.732-2.622 1.332-2.65 1.333s-1.508-.728-3.289-1.62l-3.239-1.62-.29-.29a2.75 2.75 0 0 1-.682-1.069l-.089-.26-.011-5.13-.01-5.13H5.72V3.68H2.878zm6.863-5.342c.068.068.06.255-.015.329-.085.086-.201.079-.297-.017s-.1-.154-.018-.271c.069-.098.25-.121.33-.041m1.743 3.349c-1.079.173-2.096 1.059-2.392 2.086-.064.222-.065.223-.294.294-.953.297-1.737 1.107-2.015 2.085-.118.411-.127 1.182-.02 1.571a3.08 3.08 0 0 0 2.559 2.247c.374.049 4.96.049 5.334 0a2.97 2.97 0 0 0 1.769-.892c.412-.418.639-.808.789-1.35.108-.395.099-1.162-.019-1.576-.278-.978-1.087-1.813-2.014-2.081l-.228-.065-.065-.228c-.263-.909-1.079-1.711-2.039-2.006-.313-.096-1.02-.14-1.365-.085m1.069 1.577q.439.18.7.575c.202.304.226.403.253 1.031l.023.56.58.02c.518.018.604.031.802.124.285.134.598.447.744.744.102.208.114.273.114.632 0 .354-.013.428-.113.644a1.7 1.7 0 0 1-.767.764l-.24.112H9.34l-.24-.112a1.7 1.7 0 0 1-.767-.764c-.1-.216-.113-.29-.113-.644 0-.359.012-.424.114-.632.146-.297.459-.61.744-.744.198-.093.284-.106.802-.124l.58-.02.022-.58c.024-.627.055-.743.281-1.059.167-.232.4-.415.673-.527a1.7 1.7 0 0 1 1.128 0m6.038 8.347c.182.098.18.302-.006.401-.21.113-.385-.241-.187-.38.105-.074.096-.073.193-.021' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgEvolutionProtectionPlatform;
|
|
@@ -123,6 +123,7 @@ export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
|
123
123
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
124
124
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
125
125
|
export { default as EvolutionPromptRegistrySVG } from './EvolutionPromptRegistry';
|
|
126
|
+
export { default as EvolutionProtectionPlatformSVG } from './EvolutionProtectionPlatform';
|
|
126
127
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
127
128
|
export { default as EvolutionStackSVG } from './EvolutionStack';
|
|
128
129
|
export { default as ExchangeSVG } from './Exchange';
|
|
@@ -5,11 +5,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.CloudEyeSVG = exports.CloudDnsSVG = exports.CloudContainerInstanceSVG = exports.CloudContainerEngineSVG = exports.CloudCommandLineInterfaceSVG = exports.CloudCertificateManagerSVG = exports.CloudBastionHostSVG = exports.CloudBackupAndRecoverySVG = exports.CloudAdvisorSVG = exports.ClientsSVG = exports.ClientDataBusSVG = exports.CertificationSVG = exports.CertificateManagerSVG = exports.CerebroSVG = exports.CdnSVG = exports.CalculatorSVG = exports.BillingSVG = exports.BiZoneTdrSVG = exports.BaseAltSVG = exports.BareMetalSVG = exports.BackupSVG = exports.AvabilityGroupsSVG = exports.AutoScalingSVG = exports.ArtifactRegistrySVG = exports.ArenadataStreamingSVG = exports.ArenadataQuickMartsSVG = exports.ArenadataHadoopSVG = exports.ArenadataDbSVG = exports.ArenadataAnalyticalDbSVG = exports.ApplicationsForPlacementSVG = exports.ApplicationPerformanceManagementSVG = exports.ApplicationOrchestrationServiceSVG = exports.ApplicationOperationManagementSVG = exports.ApplicationSVG = exports.AppStageSVG = exports.ApiGatewaySVG = exports.ApacheIgnitSVG = exports.ApacheFlinkSVG = exports.AntiDdosWafSVG = exports.AntiDdosFromQratorLabsSVG = exports.AnthropicSVG = exports.AllocatonsSVG = exports.AlertsSVG = exports.AirflowSVG = exports.AiServicesSVG = exports.AgentBackupSVG = exports.AdvancedSVG = exports.ActveDirectorySVG = exports.AccidentsSVG = exports.Svg1CSVG = void 0;
|
|
7
7
|
exports.ElasticCloudServerSVG = exports.DocumentDatabaseServiceSVG = exports.DockerRegistrySVG = exports.DistributedMessageServiceForRocketMqSVG = exports.DistributedMessageServiceForRabbitMqSVG = exports.DistributedMessageServiceForKafkaSVG = exports.DistributedDatabaseMiddlewareSVG = exports.DistributedCacheServiceForRedisSVG = exports.DistributedCacheServiceForMemcachedSVG = exports.DisksSVG = exports.DirectConnectSVG = exports.DeploysSVG = exports.DeployImagesSVG = exports.DeepSeekSVG = exports.DatbriksSVG = exports.DatasetRegistrySVG = exports.DatabaseSecurityServiceSVG = exports.DataWarehouseServiceSVG = exports.DataTransferServiceSVG = exports.DataReplicationServiceSVG = exports.DataLakeInsightSVG = exports.DataHubSVG = exports.DataEncryptionWorkshopSVG = exports.DataArtsStudioSVG = exports.DataArtsInsightSVG = exports.DataAdminServiceSVG = exports.DashboardsSVG = exports.CrossPlatformConnectionSVG = exports.CouchDbSVG = exports.ContainerSecurityPlatformSVG = exports.ContainerGuardServiceSVG = exports.ContainerAppsSVG = exports.ConnectionHubSVG = exports.ConnectedServicesSVG = exports.CodeArtsTestPlanSVG = exports.CodeArtsReqSVG = exports.CodeArtsRepoSVG = exports.CodeArtsPipelineSVG = exports.CodeArtsDeploySVG = exports.CodeArtsCheckSVG = exports.CodeArtsBuildSVG = exports.CodeArtsArtifactSVG = exports.CodeArtsSVG = exports.CloudTraceServiceSVG = exports.CloudTableSVG = exports.CloudServiceEngineSVG = exports.CloudSearchServiceSVG = exports.CloudPerformanceTestServiceSVG = exports.CloudLoggingSVG = exports.CloudFirewallSVG = void 0;
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareDisasterRecoverySVG = exports.VmwareSVG = exports.VmVirtualizationPlatformsSVG = exports.VmManagerSVG = exports.VmIaasBasisSVG = exports.VmEncryptionSVG = exports.VmBackupSVG = exports.VllmSVG = exports.VirtualizationPlatformsSVG = exports.VirtualPrivateCloudSVG = exports.VirtualIpSVG = exports.VirtualDesktopInfrastructureSVG = exports.VirtualDataCenterWithGpuSVG = exports.VirtualDataCenterSVG = exports.VictriaMetricsSVG = exports.VcenterManagerSVG = exports.VMwareVSphereClientSVG = exports.VMwareVSphereSVG = exports.VMwareVShpereHypervisorSVG = exports.VMwareVCentrServerSVG = exports.VMwareNsxAdvancedLoadBalancerSVG = exports.VMwareEsxiSVG = exports.VMwareCloudDirectrAvailabilitySVG = exports.VMwareCloudDirectrAppLaunchpadSVG = exports.VMwareCloudDirectorServiceSVG = exports.VMwareCloudDirectorSVG = exports.VMwareBackupServerSVG = exports.VMwareAriaOperatonsforLogsSVG = exports.VMwareAriaOperatonsSVG = exports.VAppSVG = exports.UserGateVirtualNgfw1SVG = void 0;
|
|
8
|
+
exports.IstioSVG = exports.IntegrationWithSiemSVG = exports.ImagesSVG = exports.ImageManagementServiceSVG = exports.IdentityAndAccessManagementSVG = exports.HuggingFaceSVG = exports.HostSecurityServiceSVG = exports.HistoryOfPipelineLaunchesSVG = exports.HadoopMapReduceSVG = exports.HaProxySVG = exports.GreenplumDatbaseSVG = exports.GraphEngineServiceSVG = exports.GrafanaSVG = exports.GpuResourcesSVG = exports.GoSVG = exports.GitlabCiSVG = exports.GitabSVG = exports.GitSVG = exports.FunctionGraphSVG = exports.FirewallSVG = exports.ExperimentsSVG = exports.ExchangeSVG = exports.EvolutionStackSVG = exports.EvolutionRepoSVG = exports.EvolutionProtectionPlatformSVG = exports.EvolutionPromptRegistrySVG = exports.EvolutionPipelineSVG = exports.EvolutionMlFinetuningSVG = exports.EvolutionMagicBridgeSVG = exports.EvolutionIdentityAccessManagementSVG = exports.EvolutionHybridUsergateSVG = exports.EvolutionFoundationModelsSVG = exports.EvolutionDistributedTrainSVG = exports.EvolutionDisasterRecoverySVG = exports.EvolutionDataPlatfromSVG = exports.EvolutionComputeSVG = exports.EvolutionCloudMonitoringSVG = exports.EvolutionBiSVG = exports.EvolutionBareMetalEnterpriseSVG = exports.EvolutionAiAssistantSVG = exports.EvolutionAiAgentsSVG = exports.EvolutionSVG = exports.EvoDnsSVG = exports.EnterpriseRouterSVG = exports.EnterpriseProjectManagementServiceSVG = exports.ElasticVolumeServiceSVG = exports.ElasticSearchSVG = exports.ElasticLoadBalanceSVG = exports.ElasticIpSVG = exports.ElasticCloudServerWithGpuSVG = void 0;
|
|
9
|
+
exports.LogStashSVG = exports.LogGroupsSVG = exports.LoadBalancerGeneralSVG = exports.LoadBalancerSVG = exports.LinuxSVG = exports.LicensesOfBasaltSpoProductsSVG = exports.KubernetesUserSVG = exports.KubernetesSvcSVG = exports.KubernetesStsSVG = exports.KubernetesSecretSVG = exports.KubernetesSchedTitleSVG = exports.KubernetesSchedSVG = exports.KubernetesScSVG = exports.KubernetesSaSVG = exports.KubernetesRsSVG = exports.KubernetesRoleSVG = exports.KubernetesRbSVG = exports.KubernetesQuotaSVG = exports.KubernetesPvcSVG = exports.KubernetesPvSVG = exports.KubernetesPspSVG = exports.KubernetesPodSVG = exports.KubernetesNsSVG = exports.KubernetesNodeTitleSVG = exports.KubernetesNodeSVG = exports.KubernetesNetpolSVG = exports.KubernetesLimitsSVG = exports.KubernetesKubeletSVG = exports.KubernetesKproxySVG = exports.KubernetesJobSVG = exports.KubernetesIngSVG = exports.KubernetesHpaSVG = exports.KubernetesGroupSVG = exports.KubernetesEtcdSVG = exports.KubernetesEpSVG = exports.KubernetesDsSVG = exports.KubernetesDeploySVG = exports.KubernetesCronJobSVG = exports.KubernetesCrdSVG = exports.KubernetesCrbSVG = exports.KubernetesCmListSVG = exports.KubernetesCmSVG = exports.KubernetesCcmSVG = exports.KubernetesCRoleSVG = exports.KubernetesApiSVG = exports.KubernetesSVG = exports.KibanaSVG = exports.KeyManagementSVG = exports.KafkaSVG = exports.JupyterServersSVG = void 0;
|
|
10
|
+
exports.ObjectStorageServiceSVG = exports.ObjectContainerSVG = exports.NutnixSVG = exports.NsxVMwareSVG = exports.NotificationSVG = exports.NodeJsSVG = exports.NatGatewaySVG = exports.N8NSVG = exports.MyOfficeSVG = exports.MyCompanyProfileSVG = exports.MssqlSVG = exports.MongoDbSVG = exports.ModelRegistrySVG = exports.ModelMonitoringSVG = exports.MlsCliSVG = exports.MlSpaceSVG = exports.MlFlowSVG = exports.MistralSVG = exports.MindContollerSVG = exports.MilvusDbSVG = exports.MigrationToAdvancedSVG = exports.MigrationInTheCloudVMwareSVG = exports.MigrationSVG = exports.MicrosoftNetSVG = exports.MetastoreSVG = exports.McpServerSVG = exports.MarketplaceSVG = exports.MariaDbSVG = exports.MapReduceServiceSVG = exports.ManagedTimescaleDbSVG = exports.ManagedServicesSVG = exports.ManagedSearchSVG = exports.ManagedRedisSVG = exports.ManagedRagSVG = exports.ManagedRabbitMqSVG = exports.ManagedPostgreSqlSVG = exports.ManagedPangolinSVG = exports.ManagedMySqlSVG = exports.ManagedKubernetesSVG = exports.ManagedKafkaSVG = exports.ManagedIdentitiesSVG = exports.ManagedDocumentDbSVG = exports.ManagedDataGridSVG = exports.ManagedCoraxSVG = exports.ManagedCloudberrySVG = exports.ManagedClickHouseSVG = exports.MagicRouterSVG = exports.MlInferenceSVG = exports.LoggingAuditSVG = exports.LogTankServiceSVG = void 0;
|
|
11
|
+
exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = exports.TermideskSVG = exports.TechnologyConsultingSVG = exports.TasksAndEnvironmentsSVG = exports.TaskHistorySVG = exports.TagsSVG = exports.SystemObjectsSVG = exports.SupersetSVG = exports.SubnetsSVG = exports.SshSVG = exports.SparkSVG = exports.SoftwareRepositoryForContainersSVG = exports.SnatSVG = exports.SimpleMessageNotificationSVG = exports.SharedStorageNfsSVG = exports.ServicesSVG = exports.ServiceStageSVG = exports.ServerlessFunctionSVG = exports.ServerlessSVG = exports.ServerMigrationServiceSVG = exports.SecurityGroupsSVG = exports.SecretManagementSVG = exports.ScalableFileServiceSVG = exports.SapInTheCloudSVG = exports.SapSVG = exports.S3StorageSVG = exports.S3SVG = exports.RosaOperationSystemSVG = exports.ResourceManagerSVG = exports.RentUsbPortsSVG = exports.RelationalDatabaseServiceSVG = exports.ReferralsSVG = exports.ReferralLinksSVG = exports.RedisSVG = exports.QwenSVG = exports.QuotasSVG = exports.PytonSVG = exports.PublicIpSVG = exports.PrometeusSVG = exports.PowerBiSVG = exports.PipelinesSVG = exports.PartnerMaterialsSVG = exports.PartnerAccountSVG = exports.OracleSVG = exports.OpenSearchSVG = exports.OpenApiSVG = exports.OpenAiSVG = exports.OllamaSVG = void 0;
|
|
12
|
+
exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareDisasterRecoverySVG = exports.VmwareSVG = exports.VmVirtualizationPlatformsSVG = exports.VmManagerSVG = exports.VmIaasBasisSVG = exports.VmEncryptionSVG = exports.VmBackupSVG = exports.VllmSVG = exports.VirtualizationPlatformsSVG = exports.VirtualPrivateCloudSVG = exports.VirtualIpSVG = exports.VirtualDesktopInfrastructureSVG = exports.VirtualDataCenterWithGpuSVG = exports.VirtualDataCenterSVG = exports.VictriaMetricsSVG = exports.VcenterManagerSVG = exports.VMwareVSphereClientSVG = exports.VMwareVSphereSVG = exports.VMwareVShpereHypervisorSVG = exports.VMwareVCentrServerSVG = exports.VMwareNsxAdvancedLoadBalancerSVG = exports.VMwareEsxiSVG = exports.VMwareCloudDirectrAvailabilitySVG = exports.VMwareCloudDirectrAppLaunchpadSVG = exports.VMwareCloudDirectorServiceSVG = exports.VMwareCloudDirectorSVG = exports.VMwareBackupServerSVG = exports.VMwareAriaOperatonsforLogsSVG = exports.VMwareAriaOperatonsSVG = exports.VAppSVG = exports.UserGateVirtualNgfw1SVG = exports.UserGateVirtualNgfwSVG = void 0;
|
|
13
13
|
var _1C_1 = require("./1C");
|
|
14
14
|
Object.defineProperty(exports, "Svg1CSVG", { enumerable: true, get: function () { return __importDefault(_1C_1).default; } });
|
|
15
15
|
var Accidents_1 = require("./Accidents");
|
|
@@ -260,6 +260,8 @@ var EvolutionPipeline_1 = require("./EvolutionPipeline");
|
|
|
260
260
|
Object.defineProperty(exports, "EvolutionPipelineSVG", { enumerable: true, get: function () { return __importDefault(EvolutionPipeline_1).default; } });
|
|
261
261
|
var EvolutionPromptRegistry_1 = require("./EvolutionPromptRegistry");
|
|
262
262
|
Object.defineProperty(exports, "EvolutionPromptRegistrySVG", { enumerable: true, get: function () { return __importDefault(EvolutionPromptRegistry_1).default; } });
|
|
263
|
+
var EvolutionProtectionPlatform_1 = require("./EvolutionProtectionPlatform");
|
|
264
|
+
Object.defineProperty(exports, "EvolutionProtectionPlatformSVG", { enumerable: true, get: function () { return __importDefault(EvolutionProtectionPlatform_1).default; } });
|
|
263
265
|
var EvolutionRepo_1 = require("./EvolutionRepo");
|
|
264
266
|
Object.defineProperty(exports, "EvolutionRepoSVG", { enumerable: true, get: function () { return __importDefault(EvolutionRepo_1).default; } });
|
|
265
267
|
var EvolutionStack_1 = require("./EvolutionStack");
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
className?: string;
|
|
5
|
+
size?: number;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
}
|
|
8
|
+
declare const SvgEvolutionProtectionPlatform: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionProtectionPlatform;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
// DO NOT EDIT IT MANUALLY
|
|
14
|
+
import * as React from 'react';
|
|
15
|
+
const SvgEvolutionProtectionPlatform = React.forwardRef((_a, ref) => {
|
|
16
|
+
var { size = 24 } = _a, props = __rest(_a, ["size"]);
|
|
17
|
+
props.width = undefined;
|
|
18
|
+
props.height = undefined;
|
|
19
|
+
const testId = 'icon-evolution-protection-platform';
|
|
20
|
+
const style = {};
|
|
21
|
+
const isCustomSize = typeof size === 'number';
|
|
22
|
+
if (isCustomSize) {
|
|
23
|
+
style.width = size + 'px';
|
|
24
|
+
style.height = size + 'px';
|
|
25
|
+
if (!props.style)
|
|
26
|
+
props.style = {};
|
|
27
|
+
props.style.width = size + 'px';
|
|
28
|
+
props.style.height = size + 'px';
|
|
29
|
+
}
|
|
30
|
+
return (_jsx("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'currentColor', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: _jsx("path", { fill: 'inherit', fillRule: 'evenodd', d: 'M9.18 3.213a1.33 1.33 0 0 0-.747.687c-.133.291-.131.763.005 1.04.391.796 1.425.988 2.035.377l.158-.157H19.6l.01 4.85.01 4.85.75.011.75.011V3.68H10.669l-.177-.163c-.276-.254-.534-.357-.892-.354a1.6 1.6 0 0 0-.42.05M2.889 9.59 2.9 15.5l.11.397c.267.971.879 1.846 1.664 2.379.238.162 7.25 3.684 7.334 3.684.026 0 1.388-.685 3.025-1.523l2.978-1.522.267.047a1.255 1.255 0 0 0 1.395-.722c.299-.645.027-1.363-.633-1.672a1.35 1.35 0 0 0-1.02-.013c-.367.163-.672.535-.733.896l-.028.163-2.6 1.332c-1.429.732-2.622 1.332-2.65 1.333s-1.508-.728-3.289-1.62l-3.239-1.62-.29-.29a2.75 2.75 0 0 1-.682-1.069l-.089-.26-.011-5.13-.01-5.13H5.72V3.68H2.878zm6.863-5.342c.068.068.06.255-.015.329-.085.086-.201.079-.297-.017s-.1-.154-.018-.271c.069-.098.25-.121.33-.041m1.743 3.349c-1.079.173-2.096 1.059-2.392 2.086-.064.222-.065.223-.294.294-.953.297-1.737 1.107-2.015 2.085-.118.411-.127 1.182-.02 1.571a3.08 3.08 0 0 0 2.559 2.247c.374.049 4.96.049 5.334 0a2.97 2.97 0 0 0 1.769-.892c.412-.418.639-.808.789-1.35.108-.395.099-1.162-.019-1.576-.278-.978-1.087-1.813-2.014-2.081l-.228-.065-.065-.228c-.263-.909-1.079-1.711-2.039-2.006-.313-.096-1.02-.14-1.365-.085m1.069 1.577q.439.18.7.575c.202.304.226.403.253 1.031l.023.56.58.02c.518.018.604.031.802.124.285.134.598.447.744.744.102.208.114.273.114.632 0 .354-.013.428-.113.644a1.7 1.7 0 0 1-.767.764l-.24.112H9.34l-.24-.112a1.7 1.7 0 0 1-.767-.764c-.1-.216-.113-.29-.113-.644 0-.359.012-.424.114-.632.146-.297.459-.61.744-.744.198-.093.284-.106.802-.124l.58-.02.022-.58c.024-.627.055-.743.281-1.059.167-.232.4-.415.673-.527a1.7 1.7 0 0 1 1.128 0m6.038 8.347c.182.098.18.302-.006.401-.21.113-.385-.241-.187-.38.105-.074.096-.073.193-.021' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgEvolutionProtectionPlatform;
|
|
@@ -123,6 +123,7 @@ export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
|
123
123
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
124
124
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
125
125
|
export { default as EvolutionPromptRegistrySVG } from './EvolutionPromptRegistry';
|
|
126
|
+
export { default as EvolutionProtectionPlatformSVG } from './EvolutionProtectionPlatform';
|
|
126
127
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
127
128
|
export { default as EvolutionStackSVG } from './EvolutionStack';
|
|
128
129
|
export { default as ExchangeSVG } from './Exchange';
|
|
@@ -123,6 +123,7 @@ export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
|
123
123
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
124
124
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
125
125
|
export { default as EvolutionPromptRegistrySVG } from './EvolutionPromptRegistry';
|
|
126
|
+
export { default as EvolutionProtectionPlatformSVG } from './EvolutionProtectionPlatform';
|
|
126
127
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
127
128
|
export { default as EvolutionStackSVG } from './EvolutionStack';
|
|
128
129
|
export { default as ExchangeSVG } from './Exchange';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-icons",
|
|
3
3
|
"title": "React Icons package",
|
|
4
|
-
"version": "17.
|
|
4
|
+
"version": "17.5.1",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.svg",
|
|
7
7
|
"*.css",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"@types/lodash.kebabcase": "4.1.9",
|
|
73
73
|
"@types/svg-sprite": "0.0.39",
|
|
74
74
|
"@types/yargs": "17.0.33",
|
|
75
|
-
"fast-xml-parser": "5.3
|
|
75
|
+
"fast-xml-parser": "5.9.3",
|
|
76
76
|
"lodash.camelcase": "4.3.0",
|
|
77
77
|
"oslllo-svg-fixer": "5.0.0",
|
|
78
78
|
"svg-sprite": "2.0.4",
|
|
79
79
|
"svgo": "3.3.2",
|
|
80
80
|
"yargs": "17.7.2"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "7e5052322e20a0a7fcd9dc03ff788a9ccf2167d4"
|
|
83
83
|
}
|