@dynatrace/strato-icons 0.32.0 → 0.34.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.
Files changed (39) hide show
  1. package/index.cjs.js +907 -765
  2. package/index.esm.js +907 -765
  3. package/index.esm.js.map +4 -4
  4. package/package.json +1 -1
  5. package/src/__icons/AcceptIcon.d.ts +1 -1
  6. package/src/__icons/AirplaneFilledIcon.d.ts +20 -0
  7. package/src/__icons/AirplaneIcon.d.ts +17 -0
  8. package/src/__icons/ApplicationsIcon.d.ts +17 -0
  9. package/src/__icons/ArrowRightIcon.d.ts +3 -0
  10. package/src/__icons/ChevronDownIcon.d.ts +3 -0
  11. package/src/__icons/ChevronDownSmallIcon.d.ts +3 -0
  12. package/src/__icons/ChevronLeftIcon.d.ts +3 -0
  13. package/src/__icons/ChevronLeftSmallIcon.d.ts +3 -0
  14. package/src/__icons/ChevronRightIcon.d.ts +3 -0
  15. package/src/__icons/ChevronRightSmallIcon.d.ts +3 -0
  16. package/src/__icons/ChevronUpIcon.d.ts +3 -0
  17. package/src/__icons/ChevronUpSmallIcon.d.ts +3 -0
  18. package/src/__icons/CopyIcon.d.ts +3 -0
  19. package/src/__icons/CriticalFailedIcon.d.ts +17 -0
  20. package/src/__icons/CriticalIcon.d.ts +17 -0
  21. package/src/__icons/DavisCoPilotIcon.d.ts +17 -0
  22. package/src/__icons/DavisCoPilotSignetIcon.d.ts +17 -0
  23. package/src/__icons/DeclineIcon.d.ts +1 -1
  24. package/src/__icons/DuplicateIcon.d.ts +3 -0
  25. package/src/__icons/DynatraceIcon.d.ts +17 -0
  26. package/src/__icons/DynatraceSignetIcon.d.ts +17 -0
  27. package/src/__icons/ErrorIcon.d.ts +3 -0
  28. package/src/__icons/FileCopyIcon.d.ts +3 -0
  29. package/src/__icons/LocationMarkerFilledIcon.d.ts +20 -0
  30. package/src/__icons/LocationMarkerIcon.d.ts +17 -0
  31. package/src/__icons/ResourceContentionIcon.d.ts +17 -0
  32. package/src/__icons/SecurityResolvedIcon.d.ts +17 -0
  33. package/src/__icons/StopIcon.d.ts +17 -0
  34. package/src/__icons/SuccessIcon.d.ts +20 -0
  35. package/src/__icons/ThresholdIcon.d.ts +17 -0
  36. package/src/__icons/UnavailableIcon.d.ts +17 -0
  37. package/src/__icons/WarningFailedIcon.d.ts +17 -0
  38. package/src/__icons/ZoomToFitIcon.d.ts +17 -0
  39. package/src/index.d.ts +19 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dynatrace/strato-icons",
3
3
  "private": false,
4
- "version": "0.32.0",
4
+ "version": "0.34.0",
5
5
  "license": "Apache-2.0",
6
6
  "types": "./index.d.ts",
7
7
  "main": "./index.cjs.js",
@@ -15,6 +15,6 @@
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
17
  /**
18
- * Opposite of Decline
18
+ * @deprecated Use 'SuccessIcon' instead of 'AcceptIcon'
19
19
  */
20
20
  export declare const AcceptIcon: SvgIconType;
@@ -0,0 +1,20 @@
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 { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Usage only for world map
19
+ */
20
+ export declare const AirplaneFilledIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const AirplaneIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const ApplicationsIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Use for navigate to another internal page or show direction
19
+ */
17
20
  export declare const ArrowRightIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates an expandable/expanded component such as a dropdown or tree navigation
19
+ */
17
20
  export declare const ChevronDownIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates an expandable/expanded component such as a dropdown or tree navigation
19
+ */
17
20
  export declare const ChevronDownSmallIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates the ability to navigate to a previous step or view overflow items to the left. Do not use in trees to show something is closed
19
+ */
17
20
  export declare const ChevronLeftIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates the ability to navigate to a previous step or view overflow items to the left. Do not use in trees to show something is closed
19
+ */
17
20
  export declare const ChevronLeftSmallIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates the ability to navigate to the next step, view overflow items to the right, expand the tree
19
+ */
17
20
  export declare const ChevronRightIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates the ability to navigate to the next step, view overflow items to the right, expand the tree
19
+ */
17
20
  export declare const ChevronRightSmallIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates the ability to collapse a dropdown
19
+ */
17
20
  export declare const ChevronUpIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Indicates the ability to collapse a dropdown
19
+ */
17
20
  export declare const ChevronUpSmallIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Creates a copy of an item in a different location that you specify
19
+ */
17
20
  export declare const CopyIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const CriticalFailedIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const CriticalIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const DavisCoPilotIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const DavisCoPilotSignetIcon: SvgIconType;
@@ -15,6 +15,6 @@
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
17
  /**
18
- * Opposite of Accept
18
+ * Opposite of Success
19
19
  */
20
20
  export declare const DeclineIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Creates a copy of an item in the same location as the original
19
+ */
17
20
  export declare const DuplicateIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const DynatraceIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const DynatraceSignetIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * @deprecated Use 'CriticalIcon' instead of 'ErrorIcon'
19
+ */
17
20
  export declare const ErrorIcon: SvgIconType;
@@ -14,4 +14,7 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import { SvgIconType } from '../lib/types';
17
+ /**
18
+ * @deprecated Use Copy instead
19
+ */
17
20
  export declare const FileCopyIcon: SvgIconType;
@@ -0,0 +1,20 @@
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 { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Usage only for world map
19
+ */
20
+ export declare const LocationMarkerFilledIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const LocationMarkerIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const ResourceContentionIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const SecurityResolvedIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const StopIcon: SvgIconType;
@@ -0,0 +1,20 @@
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 { SvgIconType } from '../lib/types';
17
+ /**
18
+ * Opposite of Decline
19
+ */
20
+ export declare const SuccessIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const ThresholdIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const UnavailableIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const WarningFailedIcon: SvgIconType;
@@ -0,0 +1,17 @@
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 { SvgIconType } from '../lib/types';
17
+ export declare const ZoomToFitIcon: SvgIconType;
package/src/index.d.ts CHANGED
@@ -19,12 +19,15 @@ export { AcceptIcon } from './__icons/AcceptIcon';
19
19
  export { AccountIcon } from './__icons/AccountIcon';
20
20
  export { ActionIcon } from './__icons/ActionIcon';
21
21
  export { ActionTriggerIcon } from './__icons/ActionTriggerIcon';
22
+ export { AirplaneFilledIcon } from './__icons/AirplaneFilledIcon';
23
+ export { AirplaneIcon } from './__icons/AirplaneIcon';
22
24
  export { AnalyticsIcon } from './__icons/AnalyticsIcon';
23
25
  export { AppEngineIcon } from './__icons/AppEngineIcon';
24
26
  export { AppEngineSignetIcon } from './__icons/AppEngineSignetIcon';
25
27
  export { AppearanceIcon } from './__icons/AppearanceIcon';
26
28
  export { ApplicationSecurityIcon } from './__icons/ApplicationSecurityIcon';
27
29
  export { ApplicationSecuritySignetIcon } from './__icons/ApplicationSecuritySignetIcon';
30
+ export { ApplicationsIcon } from './__icons/ApplicationsIcon';
28
31
  export { AppsIcon } from './__icons/AppsIcon';
29
32
  export { ArrowDownIcon } from './__icons/ArrowDownIcon';
30
33
  export { ArrowDownLeftIcon } from './__icons/ArrowDownLeftIcon';
@@ -90,6 +93,8 @@ export { CodeblockIcon } from './__icons/CodeblockIcon';
90
93
  export { CollapseIcon } from './__icons/CollapseIcon';
91
94
  export { ConditionsIcon } from './__icons/ConditionsIcon';
92
95
  export { CopyIcon } from './__icons/CopyIcon';
96
+ export { CriticalFailedIcon } from './__icons/CriticalFailedIcon';
97
+ export { CriticalIcon } from './__icons/CriticalIcon';
93
98
  export { CrosshairIcon } from './__icons/CrosshairIcon';
94
99
  export { CursorIcon } from './__icons/CursorIcon';
95
100
  export { CycleIcon } from './__icons/CycleIcon';
@@ -98,6 +103,8 @@ export { DataTableIcon } from './__icons/DataTableIcon';
98
103
  export { DatabaseIcon } from './__icons/DatabaseIcon';
99
104
  export { DavisAiIcon } from './__icons/DavisAiIcon';
100
105
  export { DavisAiSignetIcon } from './__icons/DavisAiSignetIcon';
106
+ export { DavisCoPilotIcon } from './__icons/DavisCoPilotIcon';
107
+ export { DavisCoPilotSignetIcon } from './__icons/DavisCoPilotSignetIcon';
101
108
  export { DeclineIcon } from './__icons/DeclineIcon';
102
109
  export { DeleteIcon } from './__icons/DeleteIcon';
103
110
  export { DescriptionIcon } from './__icons/DescriptionIcon';
@@ -109,6 +116,8 @@ export { DragAllDirectionIcon } from './__icons/DragAllDirectionIcon';
109
116
  export { DragHandleIcon } from './__icons/DragHandleIcon';
110
117
  export { DragVerticalIcon } from './__icons/DragVerticalIcon';
111
118
  export { DuplicateIcon } from './__icons/DuplicateIcon';
119
+ export { DynatraceIcon } from './__icons/DynatraceIcon';
120
+ export { DynatraceSignetIcon } from './__icons/DynatraceSignetIcon';
112
121
  export { EditIcon } from './__icons/EditIcon';
113
122
  export { EducationIcon } from './__icons/EducationIcon';
114
123
  export { EnterIcon } from './__icons/EnterIcon';
@@ -160,6 +169,8 @@ export { LightmodeIcon } from './__icons/LightmodeIcon';
160
169
  export { LineChartIcon } from './__icons/LineChartIcon';
161
170
  export { LinkIcon } from './__icons/LinkIcon';
162
171
  export { ListIcon } from './__icons/ListIcon';
172
+ export { LocationMarkerFilledIcon } from './__icons/LocationMarkerFilledIcon';
173
+ export { LocationMarkerIcon } from './__icons/LocationMarkerIcon';
163
174
  export { LockIcon } from './__icons/LockIcon';
164
175
  export { LoginIcon } from './__icons/LoginIcon';
165
176
  export { LogoutIcon } from './__icons/LogoutIcon';
@@ -207,12 +218,14 @@ export { RequestIcon } from './__icons/RequestIcon';
207
218
  export { ResearchIcon } from './__icons/ResearchIcon';
208
219
  export { ResetIcon } from './__icons/ResetIcon';
209
220
  export { ResizeIcon } from './__icons/ResizeIcon';
221
+ export { ResourceContentionIcon } from './__icons/ResourceContentionIcon';
210
222
  export { SaveIcon } from './__icons/SaveIcon';
211
223
  export { ScatterplotIcon } from './__icons/ScatterplotIcon';
212
224
  export { SecurityCriticalIcon } from './__icons/SecurityCriticalIcon';
213
225
  export { SecurityHighIcon } from './__icons/SecurityHighIcon';
214
226
  export { SecurityIcon } from './__icons/SecurityIcon';
215
227
  export { SecurityMediumIcon } from './__icons/SecurityMediumIcon';
228
+ export { SecurityResolvedIcon } from './__icons/SecurityResolvedIcon';
216
229
  export { SelectIcon } from './__icons/SelectIcon';
217
230
  export { SelectIndicatorIcon } from './__icons/SelectIndicatorIcon';
218
231
  export { SettingIcon } from './__icons/SettingIcon';
@@ -232,9 +245,11 @@ export { StackedAreaChartIcon } from './__icons/StackedAreaChartIcon';
232
245
  export { StackedBarChartIcon } from './__icons/StackedBarChartIcon';
233
246
  export { StarEmptyIcon } from './__icons/StarEmptyIcon';
234
247
  export { StarIcon } from './__icons/StarIcon';
248
+ export { StopIcon } from './__icons/StopIcon';
235
249
  export { StopwatchIcon } from './__icons/StopwatchIcon';
236
250
  export { StorageIcon } from './__icons/StorageIcon';
237
251
  export { StrikethroughSIcon } from './__icons/StrikethroughSIcon';
252
+ export { SuccessIcon } from './__icons/SuccessIcon';
238
253
  export { SupportIcon } from './__icons/SupportIcon';
239
254
  export { SyncDoneIcon } from './__icons/SyncDoneIcon';
240
255
  export { SyncDownloadIcon } from './__icons/SyncDownloadIcon';
@@ -244,12 +259,14 @@ export { SyncUploadIcon } from './__icons/SyncUploadIcon';
244
259
  export { TableIcon } from './__icons/TableIcon';
245
260
  export { TechnologiesIcon } from './__icons/TechnologiesIcon';
246
261
  export { TerminalIcon } from './__icons/TerminalIcon';
262
+ export { ThresholdIcon } from './__icons/ThresholdIcon';
247
263
  export { ThumbsDownIcon } from './__icons/ThumbsDownIcon';
248
264
  export { ThumbsUpIcon } from './__icons/ThumbsUpIcon';
249
265
  export { TitleIcon } from './__icons/TitleIcon';
250
266
  export { TitleOffIcon } from './__icons/TitleOffIcon';
251
267
  export { TrashIcon } from './__icons/TrashIcon';
252
268
  export { TriggerIcon } from './__icons/TriggerIcon';
269
+ export { UnavailableIcon } from './__icons/UnavailableIcon';
253
270
  export { UndoIcon } from './__icons/UndoIcon';
254
271
  export { UnfavoriteIcon } from './__icons/UnfavoriteIcon';
255
272
  export { UnfavouriteIcon } from './__icons/UnfavouriteIcon';
@@ -264,6 +281,7 @@ export { VolumeIcon } from './__icons/VolumeIcon';
264
281
  export { VolumeOffIcon } from './__icons/VolumeOffIcon';
265
282
  export { VulnerableFunctionIcon } from './__icons/VulnerableFunctionIcon';
266
283
  export { VulnerableFunctionOffIcon } from './__icons/VulnerableFunctionOffIcon';
284
+ export { WarningFailedIcon } from './__icons/WarningFailedIcon';
267
285
  export { WarningIcon } from './__icons/WarningIcon';
268
286
  export { WhatsNewIcon } from './__icons/WhatsNewIcon';
269
287
  export { WrapTextIcon } from './__icons/WrapTextIcon';
@@ -273,4 +291,5 @@ export { Zoom1DIcon } from './__icons/Zoom1DIcon';
273
291
  export { ZoomHorizontalIcon } from './__icons/ZoomHorizontalIcon';
274
292
  export { ZoomInIcon } from './__icons/ZoomInIcon';
275
293
  export { ZoomOutIcon } from './__icons/ZoomOutIcon';
294
+ export { ZoomToFitIcon } from './__icons/ZoomToFitIcon';
276
295
  export { ZoomVerticalIcon } from './__icons/ZoomVerticalIcon';