@cloud-ru/uikit-product-icons 17.11.0 → 17.12.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 +11 -0
- package/dist/cjs/components/service-icons/AdvancedConfig.d.ts +9 -0
- package/dist/cjs/components/service-icons/AdvancedConfig.js +67 -0
- package/dist/cjs/components/service-icons/ManagedIdentities.js +1 -1
- package/dist/cjs/components/service-icons/index.d.ts +1 -0
- package/dist/cjs/components/service-icons/index.js +9 -7
- package/dist/esm/components/service-icons/AdvancedConfig.d.ts +9 -0
- package/dist/esm/components/service-icons/AdvancedConfig.js +32 -0
- package/dist/esm/components/service-icons/ManagedIdentities.js +1 -1
- package/dist/esm/components/service-icons/index.d.ts +1 -0
- package/dist/esm/components/service-icons/index.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.12.0 (2026-08-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **PDS-4213:** add AdvancedConfig, change ManagedIdentities icons ([cc76a20](https://github.com/cloud-ru-tech/uikit-product/commit/cc76a20abffc80afc86565b32d17965919db354f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# 17.11.0 (2026-08-11)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -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 SvgAdvancedConfig: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAdvancedConfig;
|
|
@@ -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 SvgAdvancedConfig = 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-advanced-config';
|
|
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", { d: 'M7.61 4.491 3.24 6.82v10.364l4.35 2.318c2.393 1.275 4.377 2.318 4.41 2.318s2.018-1.043 4.41-2.318l4.35-2.318V6.82l-4.373-2.33a653 653 0 0 0-4.39-2.329c-.009 0-1.983 1.049-4.387 2.33m8.034 1.299 3.592 1.91.001 4.3.001 4.3-3.619 1.926L12 20.152l-3.619-1.926L4.762 16.3l.001-4.3V7.7l3.589-1.909c1.973-1.05 3.613-1.91 3.644-1.91.031-.001 1.673.858 3.648 1.909m-4.185.682c-1.017.352-1.496 1.458-1.037 2.397.117.238.495.646.696.75l.122.063v2.186l-1.005.596c-.553.328-1.016.592-1.03.587L9 12.976a2 2 0 0 0-.466-.086 1.67 1.67 0 0 0-1.32.48c-.947.894-.592 2.444.658 2.874.297.102.799.102 1.096 0a1.715 1.715 0 0 0 1.192-1.663v-.327l.917-.546.916-.546.919.546.919.547.016.402c.019.513.146.809.494 1.156.364.363.708.506 1.222.507.524 0 .953-.187 1.304-.57.87-.948.409-2.48-.847-2.816a1.9 1.9 0 0 0-.901.008c-.121.034-.256.072-.301.083-.058.015-.374-.151-1.06-.559l-.978-.581-.011-1.101-.01-1.102.163-.103c.414-.262.731-.745.798-1.217a1.75 1.75 0 0 0-1.235-1.905c-.257-.078-.778-.07-1.026.015' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgAdvancedConfig;
|
|
@@ -62,6 +62,6 @@ const SvgManagedIdentities = React.forwardRef((_a, ref) => {
|
|
|
62
62
|
props.style.width = size + 'px';
|
|
63
63
|
props.style.height = size + 'px';
|
|
64
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: '
|
|
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: 'M14.4 4.06v.74h2.699l.771.77.77.769V9.04h1.52v-3.3l-1.21-1.21-1.21-1.21H14.4zm-6.761-.463c-1.256.232-2.329 1.301-2.614 2.605-.019.084-.06.112-.229.155-.314.081-.785.333-1.086.581A3.6 3.6 0 0 0 2.554 8.74c-.113.422-.125 1.264-.024 1.683.259 1.08.998 1.97 1.972 2.375.57.237.612.241 3.188.241l2.35.001v-1.48H7.818c-1.883 0-2.265-.01-2.5-.063-.628-.143-1.165-.719-1.313-1.41-.195-.911.209-1.813.986-2.196.301-.149.309-.15.87-.165l.568-.015.022-.565c.025-.635.099-.938.306-1.262.599-.932 1.786-1.107 2.567-.377.443.415.592.805.625 1.639l.022.565.568.015c.56.015.57.017.864.162.163.081.363.216.444.3.175.18.433.597.433.7 0 .067.053.072.76.072h.76v-.118c0-.341-.339-1.074-.69-1.494-.369-.441-1.121-.928-1.56-1.009-.12-.022-.155-.05-.174-.134A3.4 3.4 0 0 0 9.168 3.71c-.296-.1-.422-.12-.848-.132a5 5 0 0 0-.681.019m8.021 6.747c-.734.095-1.274.374-1.771.915-.934 1.021-.927 2.638.016 3.657.728.787 1.729 1.085 2.753.819.72-.186 1.401-.748 1.743-1.438.193-.388.278-.761.278-1.217 0-.461-.085-.829-.287-1.237-.321-.653-1.044-1.244-1.732-1.416-.254-.064-.798-.109-1-.083m.809 1.61c.523.269.774.765.684 1.356-.065.425-.459.858-.887.974a1.31 1.31 0 0 1-1.243-.366c-.23-.254-.314-.478-.314-.838 0-.576.328-1.02.891-1.205.185-.061.686-.015.869.079M2.64 16.69v1.65l1.23 1.23L5.1 20.8h3.3v-1.48H5.739l-.789-.79-.79-.791V15.04H2.64zm9.392 1.78-1.111 1.516-.123.167.606.443.605.443.068-.089c.038-.05.434-.59.88-1.2l.812-1.11h4.268l.791 1.18c.436.649.802 1.18.814 1.18.013 0 .295-.186.629-.414l.606-.413-1.027-1.527-1.027-1.526h-2.901l-2.902.001z' }) })));
|
|
66
66
|
});
|
|
67
67
|
exports.default = SvgManagedIdentities;
|
|
@@ -2,6 +2,7 @@ export { default as Svg1CSVG } from './1C';
|
|
|
2
2
|
export { default as AccidentsSVG } from './Accidents';
|
|
3
3
|
export { default as ActveDirectorySVG } from './ActveDirectory';
|
|
4
4
|
export { default as AdvancedSVG } from './Advanced';
|
|
5
|
+
export { default as AdvancedConfigSVG } from './AdvancedConfig';
|
|
5
6
|
export { default as AgentBackupSVG } from './AgentBackup';
|
|
6
7
|
export { default as AgentsSpaceSVG } from './AgentsSpace';
|
|
7
8
|
export { default as AiServicesSVG } from './AiServices';
|
|
@@ -3,13 +3,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
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 = exports.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = exports.TermideskSVG = exports.TechnologyConsultingSVG = void 0;
|
|
6
|
+
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.AgentsSpaceSVG = exports.AgentBackupSVG = exports.AdvancedConfigSVG = exports.AdvancedSVG = exports.ActveDirectorySVG = exports.AccidentsSVG = exports.Svg1CSVG = void 0;
|
|
7
|
+
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 = exports.CloudEyeSVG = exports.CloudDnsSVG = void 0;
|
|
8
|
+
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.GigaIdSVG = exports.GeminiDbSVG = exports.FunctionGraphSVG = exports.FirewallSVG = exports.ExperimentsSVG = exports.ExperimentTrackingSVG = 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 = exports.ElasticCloudServerSVG = exports.DocumentDatabaseServiceSVG = void 0;
|
|
9
|
+
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 = exports.IstioSVG = exports.IotDeviceAccessSVG = exports.IntegrationWithSiemSVG = exports.ImagesSVG = exports.ImageManagementServiceSVG = exports.IdentityAndAccessManagementSVG = void 0;
|
|
10
|
+
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 = exports.LogStashSVG = exports.LogGroupsSVG = exports.LoadBalancerGeneralSVG = exports.LoadBalancerSVG = exports.LinuxSVG = exports.LicensesOfBasaltSpoProductsSVG = void 0;
|
|
11
|
+
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 = exports.ObjectStorageServiceSVG = exports.ObjectContainerSVG = exports.NutnixSVG = exports.NsxVMwareSVG = exports.NotificationSVG = exports.NodeJsSVG = 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 = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = exports.TermideskSVG = exports.TechnologyConsultingSVG = exports.TasksAndEnvironmentsSVG = 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");
|
|
@@ -18,6 +18,8 @@ var ActveDirectory_1 = require("./ActveDirectory");
|
|
|
18
18
|
Object.defineProperty(exports, "ActveDirectorySVG", { enumerable: true, get: function () { return __importDefault(ActveDirectory_1).default; } });
|
|
19
19
|
var Advanced_1 = require("./Advanced");
|
|
20
20
|
Object.defineProperty(exports, "AdvancedSVG", { enumerable: true, get: function () { return __importDefault(Advanced_1).default; } });
|
|
21
|
+
var AdvancedConfig_1 = require("./AdvancedConfig");
|
|
22
|
+
Object.defineProperty(exports, "AdvancedConfigSVG", { enumerable: true, get: function () { return __importDefault(AdvancedConfig_1).default; } });
|
|
21
23
|
var AgentBackup_1 = require("./AgentBackup");
|
|
22
24
|
Object.defineProperty(exports, "AgentBackupSVG", { enumerable: true, get: function () { return __importDefault(AgentBackup_1).default; } });
|
|
23
25
|
var AgentsSpace_1 = require("./AgentsSpace");
|
|
@@ -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 SvgAdvancedConfig: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAdvancedConfig;
|
|
@@ -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 SvgAdvancedConfig = 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-advanced-config';
|
|
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", { d: 'M7.61 4.491 3.24 6.82v10.364l4.35 2.318c2.393 1.275 4.377 2.318 4.41 2.318s2.018-1.043 4.41-2.318l4.35-2.318V6.82l-4.373-2.33a653 653 0 0 0-4.39-2.329c-.009 0-1.983 1.049-4.387 2.33m8.034 1.299 3.592 1.91.001 4.3.001 4.3-3.619 1.926L12 20.152l-3.619-1.926L4.762 16.3l.001-4.3V7.7l3.589-1.909c1.973-1.05 3.613-1.91 3.644-1.91.031-.001 1.673.858 3.648 1.909m-4.185.682c-1.017.352-1.496 1.458-1.037 2.397.117.238.495.646.696.75l.122.063v2.186l-1.005.596c-.553.328-1.016.592-1.03.587L9 12.976a2 2 0 0 0-.466-.086 1.67 1.67 0 0 0-1.32.48c-.947.894-.592 2.444.658 2.874.297.102.799.102 1.096 0a1.715 1.715 0 0 0 1.192-1.663v-.327l.917-.546.916-.546.919.546.919.547.016.402c.019.513.146.809.494 1.156.364.363.708.506 1.222.507.524 0 .953-.187 1.304-.57.87-.948.409-2.48-.847-2.816a1.9 1.9 0 0 0-.901.008c-.121.034-.256.072-.301.083-.058.015-.374-.151-1.06-.559l-.978-.581-.011-1.101-.01-1.102.163-.103c.414-.262.731-.745.798-1.217a1.75 1.75 0 0 0-1.235-1.905c-.257-.078-.778-.07-1.026.015' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgAdvancedConfig;
|
|
@@ -27,6 +27,6 @@ const SvgManagedIdentities = React.forwardRef((_a, ref) => {
|
|
|
27
27
|
props.style.width = size + 'px';
|
|
28
28
|
props.style.height = size + 'px';
|
|
29
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: '
|
|
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: 'M14.4 4.06v.74h2.699l.771.77.77.769V9.04h1.52v-3.3l-1.21-1.21-1.21-1.21H14.4zm-6.761-.463c-1.256.232-2.329 1.301-2.614 2.605-.019.084-.06.112-.229.155-.314.081-.785.333-1.086.581A3.6 3.6 0 0 0 2.554 8.74c-.113.422-.125 1.264-.024 1.683.259 1.08.998 1.97 1.972 2.375.57.237.612.241 3.188.241l2.35.001v-1.48H7.818c-1.883 0-2.265-.01-2.5-.063-.628-.143-1.165-.719-1.313-1.41-.195-.911.209-1.813.986-2.196.301-.149.309-.15.87-.165l.568-.015.022-.565c.025-.635.099-.938.306-1.262.599-.932 1.786-1.107 2.567-.377.443.415.592.805.625 1.639l.022.565.568.015c.56.015.57.017.864.162.163.081.363.216.444.3.175.18.433.597.433.7 0 .067.053.072.76.072h.76v-.118c0-.341-.339-1.074-.69-1.494-.369-.441-1.121-.928-1.56-1.009-.12-.022-.155-.05-.174-.134A3.4 3.4 0 0 0 9.168 3.71c-.296-.1-.422-.12-.848-.132a5 5 0 0 0-.681.019m8.021 6.747c-.734.095-1.274.374-1.771.915-.934 1.021-.927 2.638.016 3.657.728.787 1.729 1.085 2.753.819.72-.186 1.401-.748 1.743-1.438.193-.388.278-.761.278-1.217 0-.461-.085-.829-.287-1.237-.321-.653-1.044-1.244-1.732-1.416-.254-.064-.798-.109-1-.083m.809 1.61c.523.269.774.765.684 1.356-.065.425-.459.858-.887.974a1.31 1.31 0 0 1-1.243-.366c-.23-.254-.314-.478-.314-.838 0-.576.328-1.02.891-1.205.185-.061.686-.015.869.079M2.64 16.69v1.65l1.23 1.23L5.1 20.8h3.3v-1.48H5.739l-.789-.79-.79-.791V15.04H2.64zm9.392 1.78-1.111 1.516-.123.167.606.443.605.443.068-.089c.038-.05.434-.59.88-1.2l.812-1.11h4.268l.791 1.18c.436.649.802 1.18.814 1.18.013 0 .295-.186.629-.414l.606-.413-1.027-1.527-1.027-1.526h-2.901l-2.902.001z' }) })));
|
|
31
31
|
});
|
|
32
32
|
export default SvgManagedIdentities;
|
|
@@ -2,6 +2,7 @@ export { default as Svg1CSVG } from './1C';
|
|
|
2
2
|
export { default as AccidentsSVG } from './Accidents';
|
|
3
3
|
export { default as ActveDirectorySVG } from './ActveDirectory';
|
|
4
4
|
export { default as AdvancedSVG } from './Advanced';
|
|
5
|
+
export { default as AdvancedConfigSVG } from './AdvancedConfig';
|
|
5
6
|
export { default as AgentBackupSVG } from './AgentBackup';
|
|
6
7
|
export { default as AgentsSpaceSVG } from './AgentsSpace';
|
|
7
8
|
export { default as AiServicesSVG } from './AiServices';
|
|
@@ -2,6 +2,7 @@ export { default as Svg1CSVG } from './1C';
|
|
|
2
2
|
export { default as AccidentsSVG } from './Accidents';
|
|
3
3
|
export { default as ActveDirectorySVG } from './ActveDirectory';
|
|
4
4
|
export { default as AdvancedSVG } from './Advanced';
|
|
5
|
+
export { default as AdvancedConfigSVG } from './AdvancedConfig';
|
|
5
6
|
export { default as AgentBackupSVG } from './AgentBackup';
|
|
6
7
|
export { default as AgentsSpaceSVG } from './AgentsSpace';
|
|
7
8
|
export { default as AiServicesSVG } from './AiServices';
|
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.12.0",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.svg",
|
|
7
7
|
"*.css",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"svgo": "3.3.4",
|
|
80
80
|
"yargs": "17.7.2"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "0a0311ac159ab553b2e19ed908ac51e2d6ecd74f"
|
|
83
83
|
}
|