@dynatrace/strato-icons 0.36.0 → 0.36.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/index.cjs.js +609 -567
- package/index.esm.js +609 -567
- package/index.esm.js.map +4 -4
- package/package.json +1 -1
- package/src/__icons/ChartToolsIcon.d.ts +1 -1
- package/src/__icons/ExternalLinkIcon.d.ts +1 -1
- package/src/__icons/FilterForIcon.d.ts +1 -1
- package/src/__icons/FilterOutIcon.d.ts +1 -1
- package/src/__icons/FontOptionsIcon.d.ts +21 -0
- package/src/__icons/QueryTreeIcon.d.ts +18 -0
- package/src/__icons/RefreshAutoIcon.d.ts +18 -0
- package/src/__icons/RepairIcon.d.ts +18 -0
- package/src/__icons/SyntheticMonitoringIcon.d.ts +18 -0
- package/src/__icons/VariableIcon.d.ts +18 -0
- package/src/index.d.ts +6 -0
package/package.json
CHANGED
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
import React from 'react';
|
|
17
17
|
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Configurations and options for customization that only influence a selected chart.
|
|
20
20
|
*/
|
|
21
21
|
export declare const ChartToolsIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
import React from 'react';
|
|
17
17
|
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
18
|
/**
|
|
19
|
-
* Use to open
|
|
19
|
+
* Use to open an external app or page
|
|
20
20
|
*/
|
|
21
21
|
export declare const ExternalLinkIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
import React from 'react';
|
|
17
17
|
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
18
|
/**
|
|
19
|
-
* Subtract a specific unit of data from a wider data set.
|
|
19
|
+
* Subtract a specific unit of data from a wider data set.
|
|
20
20
|
*/
|
|
21
21
|
export declare const FilterForIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
import React from 'react';
|
|
17
17
|
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
18
|
/**
|
|
19
|
-
* Filter a wider data set by a specific piece of data
|
|
19
|
+
* Filter a wider data set by a specific piece of data. To remove a filter use "XmarkIcon"
|
|
20
20
|
*/
|
|
21
21
|
export declare const FilterOutIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
|
+
/**
|
|
19
|
+
* Use to give different font options like switching between DT Flow and Mono
|
|
20
|
+
*/
|
|
21
|
+
export declare const FontOptionsIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
|
+
export declare const QueryTreeIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
|
+
export declare const RefreshAutoIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
|
+
export declare const RepairIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
|
+
export declare const SyntheticMonitoringIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Dynatrace LLC
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { SvgIconProps } from '../lib/SvgIcon';
|
|
18
|
+
export declare const VariableIcon: React.ForwardRefExoticComponent<SvgIconProps & React.RefAttributes<SVGSVGElement>>;
|
package/src/index.d.ts
CHANGED
|
@@ -157,6 +157,7 @@ export { FilterForIcon } from './__icons/FilterForIcon';
|
|
|
157
157
|
export { FilterIcon } from './__icons/FilterIcon';
|
|
158
158
|
export { FilterOutIcon } from './__icons/FilterOutIcon';
|
|
159
159
|
export { FolderOpenIcon } from './__icons/FolderOpenIcon';
|
|
160
|
+
export { FontOptionsIcon } from './__icons/FontOptionsIcon';
|
|
160
161
|
export { FormatBoldIcon } from './__icons/FormatBoldIcon';
|
|
161
162
|
export { FormatItalicIcon } from './__icons/FormatItalicIcon';
|
|
162
163
|
export { FormatListNumberedIcon } from './__icons/FormatListNumberedIcon';
|
|
@@ -250,11 +251,14 @@ export { PublicExposureIcon } from './__icons/PublicExposureIcon';
|
|
|
250
251
|
export { PublicExposureOffIcon } from './__icons/PublicExposureOffIcon';
|
|
251
252
|
export { PurePathIcon } from './__icons/PurePathIcon';
|
|
252
253
|
export { PurePathSignetIcon } from './__icons/PurePathSignetIcon';
|
|
254
|
+
export { QueryTreeIcon } from './__icons/QueryTreeIcon';
|
|
253
255
|
export { QueuesIcon } from './__icons/QueuesIcon';
|
|
254
256
|
export { RamIcon } from './__icons/RamIcon';
|
|
255
257
|
export { RecommendIcon } from './__icons/RecommendIcon';
|
|
256
258
|
export { RedoIcon } from './__icons/RedoIcon';
|
|
259
|
+
export { RefreshAutoIcon } from './__icons/RefreshAutoIcon';
|
|
257
260
|
export { RefreshIcon } from './__icons/RefreshIcon';
|
|
261
|
+
export { RepairIcon } from './__icons/RepairIcon';
|
|
258
262
|
export { RepeatIcon } from './__icons/RepeatIcon';
|
|
259
263
|
export { ReplayIcon } from './__icons/ReplayIcon';
|
|
260
264
|
export { RequestIcon } from './__icons/RequestIcon';
|
|
@@ -305,6 +309,7 @@ export { SyncDownloadIcon } from './__icons/SyncDownloadIcon';
|
|
|
305
309
|
export { SyncIcon } from './__icons/SyncIcon';
|
|
306
310
|
export { SyncOffIcon } from './__icons/SyncOffIcon';
|
|
307
311
|
export { SyncUploadIcon } from './__icons/SyncUploadIcon';
|
|
312
|
+
export { SyntheticMonitoringIcon } from './__icons/SyntheticMonitoringIcon';
|
|
308
313
|
export { TableIcon } from './__icons/TableIcon';
|
|
309
314
|
export { TechnologiesIcon } from './__icons/TechnologiesIcon';
|
|
310
315
|
export { TemplateIcon } from './__icons/TemplateIcon';
|
|
@@ -325,6 +330,7 @@ export { UnfoldLessIcon } from './__icons/UnfoldLessIcon';
|
|
|
325
330
|
export { UnfoldMoreIcon } from './__icons/UnfoldMoreIcon';
|
|
326
331
|
export { UnlockIcon } from './__icons/UnlockIcon';
|
|
327
332
|
export { UploadIcon } from './__icons/UploadIcon';
|
|
333
|
+
export { VariableIcon } from './__icons/VariableIcon';
|
|
328
334
|
export { ViewIcon } from './__icons/ViewIcon';
|
|
329
335
|
export { ViewOffIcon } from './__icons/ViewOffIcon';
|
|
330
336
|
export { ViewSidebarIcon } from './__icons/ViewSidebarIcon';
|