@platformatic/ui-components 0.13.3 → 0.13.4

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/dist/index.html CHANGED
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Platformatic UI Components</title>
7
- <script type="module" crossorigin src="/assets/index-BexnS8FK.js"></script>
7
+ <script type="module" crossorigin src="/assets/index-CvMjKwW6.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-DMinbJlj.css">
9
9
  </head>
10
10
  <body>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@platformatic/ui-components",
3
3
  "description": "Platformatic UI Components",
4
- "version": "0.13.3",
4
+ "version": "0.13.4",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -0,0 +1,104 @@
1
+ import * as React from 'react'
2
+ import PropTypes from 'prop-types'
3
+ import styles from './Icons.module.css'
4
+ import { COLORS_ICON, SIZES, SMALL, MEDIUM, LARGE, MAIN_DARK_BLUE } from '../constants'
5
+
6
+ const ScheduledJobsAppIcon = ({
7
+ color = MAIN_DARK_BLUE,
8
+ size = MEDIUM,
9
+ disabled = false,
10
+ inactive = false
11
+ }) => {
12
+ let className = `${styles.svgClassName} ` + styles[`${color}`]
13
+ if (disabled) {
14
+ className += ` ${styles.iconDisabled}`
15
+ }
16
+ if (inactive) {
17
+ className += ` ${styles.iconInactive}`
18
+ }
19
+ let icon = <></>
20
+
21
+ switch (size) {
22
+ case SMALL:
23
+ icon = (
24
+ <svg
25
+ width={16}
26
+ height={16}
27
+ viewBox='0 0 16 16'
28
+ fill='none'
29
+ xmlns='http://www.w3.org/2000/svg'
30
+ className={className}
31
+ >
32
+ <path d='M14 8.5L10.5 6.75L7 8.5M14 8.5V12.25L10.5 14M14 8.5L10.5 10.25M10.5 14L7 12.25V8.5M10.5 14V10.25M7 8.5L10.5 10.25' stroke='white' strokeLinejoin='round' />
33
+ <path d='M5.79744 11C3.70017 11 2 9.2952 2 7.19227C2 5.08934 3.70017 3.38458 5.79744 3.38458C7.40205 3.38458 8.77421 4.3825 9.33032 5.79316' stroke='white' strokeLinecap='round' />
34
+ <path d='M5.79739 3.38462V2M4.4165 2H7.17828' stroke='white' strokeLinecap='round' strokeLinejoin='round' />
35
+ <path d='M8.73792 4.27069L9.23166 3.78676M8.74902 3.29169L9.71429 4.28182' stroke='white' strokeLinecap='round' strokeLinejoin='round' />
36
+ <path d='M3.00073 4.32292L2.52032 3.82567M2.02441 4.30737L3.01623 3.34397' stroke='white' strokeLinecap='round' strokeLinejoin='round' />
37
+ <path d='M7.00592 5.46146L5.79758 7.53839' stroke='white' strokeLinecap='round' strokeLinejoin='round' />
38
+ </svg>
39
+ )
40
+ break
41
+ case MEDIUM:
42
+ icon = (
43
+ <svg
44
+ width={24}
45
+ height={24}
46
+ viewBox='0 0 24 24'
47
+ fill='none'
48
+ xmlns='http://www.w3.org/2000/svg'
49
+ className={className}
50
+ >
51
+ <path d='M21 12.75L15.75 10.125L10.5 12.75M21 12.75V18.375L15.75 21M21 12.75L15.75 15.375M15.75 21L10.5 18.375V12.75M15.75 21V15.375M10.5 12.75L15.75 15.375' stroke='white' strokeWidth={1.5} strokeLinejoin='round' />
52
+ <path d='M8.69616 16.5C5.55026 16.5 3 13.9428 3 10.7884C3 7.63405 5.55026 5.0769 8.69616 5.0769C11.1031 5.0769 13.1613 6.57378 13.9955 8.68977' stroke='white' strokeWidth={1.5} strokeLinecap='round' />
53
+ <path d='M8.69584 5.07692V3M6.62451 3H10.7672' stroke='white' strokeWidth={1.5} strokeLinecap='round' strokeLinejoin='round' />
54
+ <path d='M13.1064 6.40601L13.847 5.6801M13.123 4.9375L14.571 6.42271' stroke='white' strokeWidth={1.5} strokeLinecap='round' strokeLinejoin='round' />
55
+ <path d='M4.50109 6.48444L3.78048 5.73857M3.03662 6.46112L4.52434 5.01602' stroke='white' strokeWidth={1.5} strokeLinecap='round' strokeLinejoin='round' />
56
+ <path d='M10.5086 8.19219L8.69612 11.3076' stroke='white' strokeWidth={1.5} strokeLinecap='round' strokeLinejoin='round' />
57
+ </svg>
58
+ )
59
+ break
60
+ case LARGE:
61
+ icon = (
62
+ <svg
63
+ width={40}
64
+ height={40}
65
+ viewBox='0 0 40 40'
66
+ fill='none'
67
+ xmlns='http://www.w3.org/2000/svg'
68
+ className={className}
69
+ >
70
+ <path d='M35 21.25L26.25 16.875L17.5 21.25M35 21.25V30.625L26.25 35M35 21.25L26.25 25.625M26.25 35L17.5 30.625V21.25M26.25 35V25.625M17.5 21.25L26.25 25.625' stroke='white' strokeWidth={2} strokeLinejoin='round' />
71
+ <path d='M14.4936 27.4999C9.25043 27.4999 5 23.238 5 17.9807C5 12.7234 9.25043 8.46149 14.4936 8.46149C18.5051 8.46149 21.9355 10.9563 23.3258 14.4829' stroke='white' strokeWidth={2} strokeLinecap='round' />
72
+ <path d='M14.4932 8.46154V5M11.041 5H17.9454' stroke='white' strokeWidth={2} strokeLinecap='round' strokeLinejoin='round' />
73
+ <path d='M21.8443 10.6766L23.0787 9.4668M21.8721 8.22913L24.2852 10.7045' stroke='white' strokeWidth={2} strokeLinecap='round' strokeLinejoin='round' />
74
+ <path d='M7.50181 10.8074L6.3008 9.56424M5.06104 10.7685L7.54057 8.35999' stroke='white' strokeWidth={2} strokeLinecap='round' strokeLinejoin='round' />
75
+ <path d='M17.5146 13.6537L14.4937 18.846' stroke='white' strokeWidth={2} strokeLinecap='round' strokeLinejoin='round' />
76
+ </svg>
77
+ )
78
+ break
79
+ default:
80
+ break
81
+ }
82
+ return icon
83
+ }
84
+
85
+ ScheduledJobsAppIcon.propTypes = {
86
+ /**
87
+ * color of text, icon and borders
88
+ */
89
+ color: PropTypes.oneOf(COLORS_ICON),
90
+ /**
91
+ * Size
92
+ */
93
+ size: PropTypes.oneOf(SIZES),
94
+ /**
95
+ * disabled
96
+ */
97
+ disabled: PropTypes.bool,
98
+ /**
99
+ * inactive
100
+ */
101
+ inactive: PropTypes.bool
102
+ }
103
+
104
+ export default ScheduledJobsAppIcon
@@ -1,27 +1,28 @@
1
- import AddIcon from './AddIcon'
2
1
  import AddEnvVariableIcon from './AddEnvVariableIcon'
2
+ import AddIcon from './AddIcon'
3
3
  import AddRouteIcon from './AddRouteIcon'
4
4
  import AddUserIcon from './AddUserIcon'
5
5
  import AlertIcon from './AlertIcon'
6
6
  import AllAppsIcon from './AllAppsIcon'
7
7
  import AllInOneIcon from './AllInOneIcon'
8
- import APIDocsIcon from './APIDocsIcon'
9
8
  import ApiCloudIcon from './ApiCloudIcon'
10
- import APIKeyIcon from './APIKeyIcon'
9
+ import ApiEmptyIcon from './ApiEmptyIcon'
11
10
  import ApiIcon from './ApiIcon'
12
11
  import ApiIconClosed from './ApiIconClosed'
13
- import ApiEmptyIcon from './ApiEmptyIcon'
14
12
  import ApiPerformanceIcon from './ApiPerformanceIcon'
13
+ import APIDocsIcon from './APIDocsIcon'
14
+ import APIKeyIcon from './APIKeyIcon'
15
15
  import AppConfigurationIcon from './AppConfigurationIcon'
16
16
  import AppDetailsIcon from './AppDetailsIcon'
17
17
  import AppEditIcon from './AppEditIcon'
18
18
  import AppEmptyIcon from './AppEmptyIcon'
19
19
  import AppIcon from './AppIcon'
20
+ import ApplicationTypeIcon from './ApplicationTypeIcon'
20
21
  import AppListIcon from './AppListIcon'
21
22
  import AppMissingIcon from './AppMissingIcon'
22
23
  import AppOptimizedIcon from './AppOptimizedIcon'
23
24
  import AppSettingsIcon from './AppSettingsIcon'
24
- import ApplicationTypeIcon from './ApplicationTypeIcon'
25
+ import AppStoppedIcon from './AppStoppedIcon'
25
26
  import AppWorkspace from './AppWorkspace'
26
27
  import ArrowDownFullIcon from './ArrowDownFullIcon'
27
28
  import ArrowDownIcon from './ArrowDownIcon'
@@ -35,51 +36,50 @@ import ArrowUpIcon from './ArrowUpIcon'
35
36
  import AWSIcon from './AWSIcon'
36
37
  import BellIcon from './BellIcon'
37
38
  import BillingIcon from './BillingIcon'
38
- import BuiltInLoggingIcon from './BuiltInLoggingIcon'
39
39
  import BranchIcon from './BranchIcon'
40
+ import BuiltInLoggingIcon from './BuiltInLoggingIcon'
40
41
  import CachingIcon from './CachingIcon'
41
- import CalendarIcon from './CalendarIcon'
42
42
  import Calendar1DayIcon from './Calendar1DayIcon'
43
43
  import Calendar7DaysIcon from './Calendar7DaysIcon'
44
+ import CalendarIcon from './CalendarIcon'
44
45
  import CheckListIcon from './CheckListIcon'
45
46
  import CheckListReviewIcon from './CheckListReviewIcon'
46
47
  import CircleAddIcon from './CircleAddIcon'
47
48
  import CircleArrowLeftIcon from './CircleArrowLeftIcon'
48
49
  import CircleArrowRightIcon from './CircleArrowRightIcon'
49
50
  import CircleCheckMarkButtonIcon from './CircleCheckMarkButtonIcon'
50
- import CircleCheckMarkIcon from './CircleCheckMarkIcon'
51
51
  import CircleCheckMarkFullIcon from './CircleCheckMarkFullIcon'
52
- import CircleCopyPasteIcon from './CircleCopyPasteIcon'
53
- import CircleCloseIcon from './CircleCloseIcon'
52
+ import CircleCheckMarkIcon from './CircleCheckMarkIcon'
54
53
  import CircleCloseHoverIcon from './CircleCloseHoverIcon'
54
+ import CircleCloseIcon from './CircleCloseIcon'
55
+ import CircleCopyPasteIcon from './CircleCopyPasteIcon'
55
56
  import CircleDownloadIcon from './CircleDownloadIcon'
56
- import CircleExclamationIcon from './CircleExclamationIcon'
57
57
  import CircleEditIcon from './CircleEditIcon'
58
+ import CircleExclamationIcon from './CircleExclamationIcon'
58
59
  import CircleFullIcon from './CircleFullIcon'
59
60
  import CircleGearIcon from './CircleGearIcon'
60
- import CircleRestartIcon from './CircleRestartIcon'
61
61
  import CirclePlayIcon from './CirclePlayIcon'
62
- import CircleSubtractIcon from './CircleSubtractIcon'
62
+ import CircleRestartIcon from './CircleRestartIcon'
63
63
  import CircleStopIcon from './CircleStopIcon'
64
+ import CircleSubtractIcon from './CircleSubtractIcon'
64
65
  import CircleTwoArrowsDownIcon from './CircleTwoArrowsDownIcon'
65
66
  import CircleTwoArrowsUpIcon from './CircleTwoArrowsUpIcon'
67
+ import CLIIcon from './CLIIcon'
66
68
  import CloseIcon from './CloseIcon'
67
69
  import CloudIcon from './CloudIcon'
68
- import CLIIcon from './CLIIcon'
69
70
  import CodeTestingIcon from './CodeTestingIcon'
70
71
  import CollapseIcon from './CollapseIcon'
71
72
  import CollapseSquareIcon from './CollapseSquareIcon'
72
73
  import ComputerIcon from './ComputerIcon'
73
74
  import ComputerInIcon from './ComputerInIcon'
74
75
  import ComputerOutIcon from './ComputerOutIcon'
75
- import CopyPasteIcon from './CopyPasteIcon'
76
- import CreditCardIcon from './CreditCardIcon'
77
76
  import ConfigureDatabaseIcon from './ConfigureDatabaseIcon'
77
+ import CopyPasteIcon from './CopyPasteIcon'
78
78
  import CreateAppIcon from './CreateAppIcon'
79
79
  import CreatingAppIcon from './CreatingAppIcon'
80
- import RunningAppIcon from './RunningAppIcon'
81
- import DatabaseIcon from './DatabaseIcon'
80
+ import CreditCardIcon from './CreditCardIcon'
82
81
  import DatabaseEditIcon from './DatabaseEditIcon'
82
+ import DatabaseIcon from './DatabaseIcon'
83
83
  import DatabaseMigrationIcon from './DatabaseMigrationIcon'
84
84
  import DepencenciesReloadIcon from './DepencenciesReloadIcon'
85
85
  import DeploymentHistoryIcon from './DeploymentHistoryIcon'
@@ -87,9 +87,9 @@ import DocumentIcon from './DocumentIcon'
87
87
  import DownloadIcon from './DownloadIcon'
88
88
  import EditDocumentIcon from './EditDocumentIcon'
89
89
  import EditIcon from './EditIcon'
90
- import EntrypointIcon from './EntrypointIcon'
91
90
  import EnlargeIcon from './EnlargeIcon'
92
91
  import EntryIcon from './EntryIcon'
92
+ import EntrypointIcon from './EntrypointIcon'
93
93
  import EnvVariableszIcon from './EnvVariableszIcon'
94
94
  import ExpandIcon from './ExpandIcon'
95
95
  import ExpandSquareIcon from './ExpandSquadreIcon'
@@ -102,16 +102,13 @@ import FolderIcon from './FolderIcon'
102
102
  import FoldersIcon from './FoldersIcon'
103
103
  import GearIcon from './GearIcon'
104
104
  import GenerationLoadingIcon from './GenerationLoadingIcon'
105
- import GiveOwnershipIcon from './GiveOwnershipIcon'
106
- import GitHubRepoIcon from './GitHubRepoIcon'
107
105
  import GitHubRepo2Icon from './GitHubRepo2Icon'
108
- import GraphQLIcon from './GraphQLIcon'
106
+ import GitHubRepoIcon from './GitHubRepoIcon'
107
+ import GiveOwnershipIcon from './GiveOwnershipIcon'
109
108
  import GraphQLEditsIcon from './GraphQLEditsIcon'
109
+ import GraphQLIcon from './GraphQLIcon'
110
110
  import HorizontalPodAutoscalerIcon from './HorizontalPodAutoscalerIcon'
111
111
  import HourglassIcon from './HourglassIcon'
112
- import K8SIcon from './K8SIcon'
113
- import K8SMetricsIcon from './K8SMetricsIcon'
114
- import KeyIcon from './KeyIcon'
115
112
  import ImportAppIcon from './ImportAppIcon'
116
113
  import ImportIcon from './ImportIcon'
117
114
  import InfoCircleIcon from './InfoCircleIcon'
@@ -119,6 +116,9 @@ import InfrastructureIcon from './InfrastructureIcon'
119
116
  import IngressControllIcon from './IngressControllIcon'
120
117
  import InternalLinkIcon from './InternalLinkIcon'
121
118
  import InternetIcon from './InternetIcon'
119
+ import K8SIcon from './K8SIcon'
120
+ import K8SMetricsIcon from './K8SMetricsIcon'
121
+ import KeyIcon from './KeyIcon'
122
122
  import LabelIcon from './LabelIcon'
123
123
  import LayersIcon from './LayersIcon'
124
124
  import LensIcon from './LensIcon'
@@ -133,18 +133,18 @@ import MetricsLogsIcon from './MetricsLogsIcon'
133
133
  import MissingTemplateIcon from './MissingTemplateIcon'
134
134
  import NameAppIcon from './NameAppIcon'
135
135
  import NextJSIcon from './NextJSIcon'
136
- import NodeJSMetricsIcon from './NodeJSMetricsIcon'
137
136
  import NoActivitiesIcon from './NoActivitiesIcon'
138
- import NoDeploymentsIcon from './NoDeploymentsIcon'
139
137
  import NodeJSIcon from './NodeJSIcon'
138
+ import NodeJSMetricsIcon from './NodeJSMetricsIcon'
139
+ import NoDeploymentsIcon from './NoDeploymentsIcon'
140
140
  import NoMetricsIcon from './NoMetricsIcon'
141
141
  import NoResultsIcon from './NoResultsIcon'
142
142
  import NotCompliantServiceIcon from './NotCompliantServiceIcon'
143
143
  import OpenAPIEditsIcon from './OpenAPIEditsIcon'
144
144
  import OrganizationIcon from './OrganizationIcon'
145
- import OutOfBoxGraphQLIcon from './OutOfBoxGraphQLIcon'
146
- import OutdatedServiceIcon from './OutdatedServiceIcon'
147
145
  import OtherLogosGoogleIcon from './OtherLogosGoogleIcon'
146
+ import OutdatedServiceIcon from './OutdatedServiceIcon'
147
+ import OutOfBoxGraphQLIcon from './OutOfBoxGraphQLIcon'
148
148
  import PlatformaticComposerIcon from './PlatformaticComposerIcon'
149
149
  import PlatformaticDBIcon from './PlatformaticDBIcon'
150
150
  import PlatformaticRuntimeIcon from './PlatformaticRuntimeIcon'
@@ -154,8 +154,8 @@ import PodDetailsIcon from './PodDetailsIcon'
154
154
  import PodhealthIcon from './PodhealthIcon'
155
155
  import PodLogsIcon from './PodLogsIcon'
156
156
  import PodMetricsIcon from './PodMetricsIcon'
157
- import PodServicesIcon from './PodServicesIcon'
158
157
  import PodPerformanceIcon from './PodPerformanceIcon'
158
+ import PodServicesIcon from './PodServicesIcon'
159
159
  import PreviewPRIcon from './PreviewPRIcon'
160
160
  import PullRequestIcon from './PullRequestIcon'
161
161
  import PullRequestLoadingIcon from './PullRequestLoadingIcon'
@@ -167,19 +167,19 @@ import RequestsIcon from './RequestsIcon'
167
167
  import ResourceIcon from './ResourceIcon'
168
168
  import RestartIcon from './RestartIcon'
169
169
  import RocketIcon from './RocketIcon'
170
+ import RunningAppIcon from './RunningAppIcon'
170
171
  import RunningIcon from './RunningIcon'
171
- import ScheduledJobsIcon from './ScheduledJobsIcon'
172
- import ScheduledJobSettingsIcon from './ScheduledJobSettingsIcon'
173
- import ScheduledJobsSuspendIcon from './ScheduledJobsSuspendIcon'
174
- import ScheduledJobsDetailIcon from './ScheduledJobsDetailIcon'
175
172
  import ScalerDetailsIcon from './ScalerDetailsIcon'
176
173
  import ScalerHistoryIcon from './ScalerHistoryIcon'
174
+ import ScheduledJobsAppIcon from './ScheduledJobsAppIcon'
175
+ import ScheduledJobsDetailIcon from './ScheduledJobsDetailIcon'
176
+ import ScheduledJobSettingsIcon from './ScheduledJobSettingsIcon'
177
+ import ScheduledJobsIcon from './ScheduledJobsIcon'
178
+ import ScheduledJobsSuspendIcon from './ScheduledJobsSuspendIcon'
177
179
  import SendIcon from './SendIcon'
178
180
  import ServiceIcon from './ServiceIcon'
179
181
  import ServicesWorkingIcon from './ServicesWorkingIcon'
180
182
  import SlotIcon from './SlotIcon'
181
- import SuspendIcon from './SuspendIcon'
182
- import SwitchIcon from './SwitchIcon'
183
183
  import SocialDiscordIcon from './SocialDiscordIcon'
184
184
  import SocialGitHubIcon from './SocialGitHubIcon'
185
185
  import SocialGitLabIcon from './SocialGitLabIcon'
@@ -187,22 +187,23 @@ import SocialLinkedInIcon from './SocialLinkedInIcon'
187
187
  import SocialNPMIcon from './SocialNPMIcon'
188
188
  import SocialXIcon from './SocialXIcon'
189
189
  import SortableIcon from './SortableIcon'
190
- import SortIcon from './SortIcon'
191
190
  import SortDownArrowAndBarIcon from './SortDownArrowAndBarIcon'
192
191
  import SortDownIcon from './SortDownIcon'
192
+ import SortIcon from './SortIcon'
193
193
  import SortUpArrowAndBarIcon from './SortUpArrowAndBarIcon'
194
194
  import SortUpIcon from './SortUpIcon'
195
195
  import StackablesIcon from './StackablesIcon'
196
196
  import StackablesPluginIcon from './StackablesPluginIcon'
197
197
  import StackablesTemplateIcon from './StackablesTemplateIcon'
198
198
  import StopIcon from './StopIcon'
199
- import AppStoppedIcon from './AppStoppedIcon'
199
+ import SuspendIcon from './SuspendIcon'
200
+ import SwitchIcon from './SwitchIcon'
200
201
  import TableIcon from './TableIcon'
201
202
  import TaxonomyIcon from './TaxonomyIcon'
202
- import TerminalIcon from './TerminalIcon'
203
- import TwoUsersIcon from './TwoUsersIcon'
204
203
  import TeamsIcon from './TeamsIcon'
204
+ import TerminalIcon from './TerminalIcon'
205
205
  import TrashIcon from './TrashIcon'
206
+ import TwoUsersIcon from './TwoUsersIcon'
206
207
  import UpgradeIcon from './UpgradeIcon'
207
208
  import UploadFileIcon from './UploadFileIcon'
208
209
  import UserComputerIcon from './UserComputerIcon'
@@ -211,8 +212,8 @@ import UserRemoveIcon from './UserRemoveIcon'
211
212
  import UserRoleIcon from './UserRoleIcon'
212
213
  import WorkspaceDynamicIcon from './WorkspaceDynamicIcon'
213
214
  import WorkspaceEmptyIcon from './WorkspaceEmptyIcon'
214
- import WorkspaceGitHubIcon from './WorkspaceGitHubIcon'
215
215
  import WorkspaceFailIcon from './WorkspaceFailIcon'
216
+ import WorkspaceGitHubIcon from './WorkspaceGitHubIcon'
216
217
  import WorkspaceLoadingIcon from './WorkspaceLoadingIcon'
217
218
  import WorkspaceReadyIcon from './WorkspaceReadyIcon'
218
219
  import WorkspaceStaticIcon from './WorkspaceStaticIcon'
@@ -220,20 +221,20 @@ import ZoomInIcon from './ZoomInIcon'
220
221
  import ZoomOutIcon from './ZoomOutIcon'
221
222
 
222
223
  export default {
223
- AddIcon,
224
224
  AddEnvVariableIcon,
225
+ AddIcon,
225
226
  AddRouteIcon,
226
227
  AddUserIcon,
227
228
  AlertIcon,
228
229
  AllAppsIcon,
229
230
  AllInOneIcon,
230
- APIDocsIcon,
231
231
  ApiCloudIcon,
232
- APIKeyIcon,
232
+ ApiEmptyIcon,
233
233
  ApiIcon,
234
234
  ApiIconClosed,
235
- ApiEmptyIcon,
236
235
  ApiPerformanceIcon,
236
+ APIDocsIcon,
237
+ APIKeyIcon,
237
238
  AppConfigurationIcon,
238
239
  AppDetailsIcon,
239
240
  AppEditIcon,
@@ -244,6 +245,7 @@ export default {
244
245
  AppMissingIcon,
245
246
  AppOptimizedIcon,
246
247
  AppSettingsIcon,
248
+ AppStoppedIcon,
247
249
  AppWorkspace,
248
250
  ArrowDownFullIcon,
249
251
  ArrowDownIcon,
@@ -257,51 +259,50 @@ export default {
257
259
  AWSIcon,
258
260
  BellIcon,
259
261
  BillingIcon,
260
- BuiltInLoggingIcon,
261
262
  BranchIcon,
263
+ BuiltInLoggingIcon,
262
264
  CachingIcon,
263
- CalendarIcon,
264
265
  Calendar1DayIcon,
265
266
  Calendar7DaysIcon,
267
+ CalendarIcon,
266
268
  CheckListIcon,
267
269
  CheckListReviewIcon,
268
270
  CircleAddIcon,
269
271
  CircleArrowLeftIcon,
270
272
  CircleArrowRightIcon,
271
273
  CircleCheckMarkButtonIcon,
272
- CircleCheckMarkIcon,
273
274
  CircleCheckMarkFullIcon,
274
- CircleCopyPasteIcon,
275
- CircleCloseIcon,
275
+ CircleCheckMarkIcon,
276
276
  CircleCloseHoverIcon,
277
+ CircleCloseIcon,
278
+ CircleCopyPasteIcon,
277
279
  CircleDownloadIcon,
278
- CircleExclamationIcon,
279
280
  CircleEditIcon,
281
+ CircleExclamationIcon,
280
282
  CircleFullIcon,
281
283
  CircleGearIcon,
282
- CircleRestartIcon,
283
284
  CirclePlayIcon,
284
- CircleSubtractIcon,
285
+ CircleRestartIcon,
285
286
  CircleStopIcon,
287
+ CircleSubtractIcon,
286
288
  CircleTwoArrowsDownIcon,
287
289
  CircleTwoArrowsUpIcon,
290
+ CLIIcon,
288
291
  CloseIcon,
289
292
  CloudIcon,
290
- CLIIcon,
291
293
  CodeTestingIcon,
292
294
  CollapseIcon,
293
295
  CollapseSquareIcon,
294
296
  ComputerIcon,
295
297
  ComputerInIcon,
296
298
  ComputerOutIcon,
297
- CopyPasteIcon,
298
- CreditCardIcon,
299
299
  ConfigureDatabaseIcon,
300
+ CopyPasteIcon,
300
301
  CreateAppIcon,
301
302
  CreatingAppIcon,
302
- RunningAppIcon,
303
- DatabaseIcon,
303
+ CreditCardIcon,
304
304
  DatabaseEditIcon,
305
+ DatabaseIcon,
305
306
  DatabaseMigrationIcon,
306
307
  DepencenciesReloadIcon,
307
308
  DeploymentHistoryIcon,
@@ -309,9 +310,9 @@ export default {
309
310
  DownloadIcon,
310
311
  EditDocumentIcon,
311
312
  EditIcon,
312
- EntrypointIcon,
313
313
  EnlargeIcon,
314
314
  EntryIcon,
315
+ EntrypointIcon,
315
316
  EnvVariableszIcon,
316
317
  ExpandIcon,
317
318
  ExpandSquareIcon,
@@ -324,16 +325,13 @@ export default {
324
325
  FoldersIcon,
325
326
  GearIcon,
326
327
  GenerationLoadingIcon,
327
- GiveOwnershipIcon,
328
- GitHubRepoIcon,
329
328
  GitHubRepo2Icon,
330
- GraphQLIcon,
329
+ GitHubRepoIcon,
330
+ GiveOwnershipIcon,
331
331
  GraphQLEditsIcon,
332
+ GraphQLIcon,
332
333
  HorizontalPodAutoscalerIcon,
333
334
  HourglassIcon,
334
- K8SIcon,
335
- K8SMetricsIcon,
336
- KeyIcon,
337
335
  ImportAppIcon,
338
336
  ImportIcon,
339
337
  InfoCircleIcon,
@@ -341,6 +339,9 @@ export default {
341
339
  IngressControllIcon,
342
340
  InternalLinkIcon,
343
341
  InternetIcon,
342
+ K8SIcon,
343
+ K8SMetricsIcon,
344
+ KeyIcon,
344
345
  LabelIcon,
345
346
  LayersIcon,
346
347
  LensIcon,
@@ -355,18 +356,18 @@ export default {
355
356
  MissingTemplateIcon,
356
357
  NameAppIcon,
357
358
  NextJSIcon,
358
- NodeJSMetricsIcon,
359
359
  NoActivitiesIcon,
360
- NoDeploymentsIcon,
361
360
  NodeJSIcon,
361
+ NodeJSMetricsIcon,
362
+ NoDeploymentsIcon,
362
363
  NoMetricsIcon,
363
364
  NoResultsIcon,
364
365
  NotCompliantServiceIcon,
365
366
  OpenAPIEditsIcon,
366
367
  OrganizationIcon,
367
- OutOfBoxGraphQLIcon,
368
- OutdatedServiceIcon,
369
368
  OtherLogosGoogleIcon,
369
+ OutdatedServiceIcon,
370
+ OutOfBoxGraphQLIcon,
370
371
  PlatformaticComposerIcon,
371
372
  PlatformaticDBIcon,
372
373
  PlatformaticRuntimeIcon,
@@ -376,8 +377,8 @@ export default {
376
377
  PodhealthIcon,
377
378
  PodLogsIcon,
378
379
  PodMetricsIcon,
379
- PodServicesIcon,
380
380
  PodPerformanceIcon,
381
+ PodServicesIcon,
381
382
  PreviewPRIcon,
382
383
  PullRequestIcon,
383
384
  PullRequestLoadingIcon,
@@ -389,19 +390,19 @@ export default {
389
390
  ResourceIcon,
390
391
  RestartIcon,
391
392
  RocketIcon,
393
+ RunningAppIcon,
392
394
  RunningIcon,
393
- ScheduledJobsIcon,
394
- ScheduledJobSettingsIcon,
395
- ScheduledJobsSuspendIcon,
396
- ScheduledJobsDetailIcon,
397
395
  ScalerDetailsIcon,
398
396
  ScalerHistoryIcon,
397
+ ScheduledJobsAppIcon,
398
+ ScheduledJobsDetailIcon,
399
+ ScheduledJobSettingsIcon,
400
+ ScheduledJobsIcon,
401
+ ScheduledJobsSuspendIcon,
399
402
  SendIcon,
400
403
  ServiceIcon,
401
404
  ServicesWorkingIcon,
402
405
  SlotIcon,
403
- SuspendIcon,
404
- SwitchIcon,
405
406
  SocialDiscordIcon,
406
407
  SocialGitHubIcon,
407
408
  SocialGitLabIcon,
@@ -409,22 +410,23 @@ export default {
409
410
  SocialNPMIcon,
410
411
  SocialXIcon,
411
412
  SortableIcon,
412
- SortIcon,
413
413
  SortDownArrowAndBarIcon,
414
414
  SortDownIcon,
415
+ SortIcon,
415
416
  SortUpArrowAndBarIcon,
416
417
  SortUpIcon,
417
418
  StackablesIcon,
418
419
  StackablesPluginIcon,
419
420
  StackablesTemplateIcon,
420
421
  StopIcon,
421
- AppStoppedIcon,
422
+ SuspendIcon,
423
+ SwitchIcon,
422
424
  TableIcon,
423
425
  TaxonomyIcon,
424
- TerminalIcon,
425
- TwoUsersIcon,
426
426
  TeamsIcon,
427
+ TerminalIcon,
427
428
  TrashIcon,
429
+ TwoUsersIcon,
428
430
  UpgradeIcon,
429
431
  UploadFileIcon,
430
432
  UserComputerIcon,
@@ -433,8 +435,8 @@ export default {
433
435
  UserRoleIcon,
434
436
  WorkspaceDynamicIcon,
435
437
  WorkspaceEmptyIcon,
436
- WorkspaceGitHubIcon,
437
438
  WorkspaceFailIcon,
439
+ WorkspaceGitHubIcon,
438
440
  WorkspaceLoadingIcon,
439
441
  WorkspaceReadyIcon,
440
442
  WorkspaceStaticIcon,