@platformatic/ui-components 0.2.5 → 0.2.7
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/assets/{index-DGu0wALr.css → index-C-rgNKxt.css} +1 -1
- package/dist/assets/index-CcMC5HmW.js +40 -0
- package/dist/index.html +2 -2
- package/dist/main.css +4 -0
- package/index.js +2 -0
- package/package.json +1 -1
- package/src/components/PlatformaticIcon.jsx +10 -3
- package/src/components/PlatformaticIcon.module.css +3 -0
- package/src/components/Tooltip.jsx +65 -0
- package/src/components/Tooltip.module.css +31 -0
- package/src/components/constants.js +5 -0
- package/src/components/icons/AllAppsIcon.jsx +110 -0
- package/src/components/icons/AppConfigurationIcon.jsx +117 -0
- package/src/components/icons/AppDetailsIcon.jsx +99 -0
- package/src/components/icons/AppEditIcon.jsx +103 -0
- package/src/components/icons/AppSettingsIcon.jsx +97 -0
- package/src/components/icons/CodeTestingIcon.jsx +119 -0
- package/src/components/icons/CreateAppIcon.jsx +7 -18
- package/src/components/icons/ImportAppIcon.jsx +11 -15
- package/src/components/icons/RecentAppsIcon.jsx +26 -37
- package/src/components/icons/RunningAppIcon.jsx +103 -0
- package/src/components/icons/StoppedAppIcon.jsx +12 -18
- package/src/components/icons/index.js +14 -2
- package/dist/assets/index-DnNOQ9Mz.js +0 -206
- package/src/components/icons/CreatingAppIcon.jsx +0 -110
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
import AddIcon from './AddIcon'
|
|
2
2
|
import AlertIcon from './AlertIcon'
|
|
3
|
+
import AllAppsIcon from './AllAppsIcon'
|
|
3
4
|
import AllInOneIcon from './AllInOneIcon'
|
|
4
5
|
import ApiCloudIcon from './ApiCloudIcon'
|
|
5
6
|
import ApiIcon from './ApiIcon'
|
|
6
7
|
import ApiIconClosed from './ApiIconClosed'
|
|
7
8
|
import ApiEmptyIcon from './ApiEmptyIcon'
|
|
8
9
|
import ApiPerformanceIcon from './ApiPerformanceIcon'
|
|
10
|
+
import AppConfigurationIcon from './AppConfigurationIcon'
|
|
11
|
+
import AppDetailsIcon from './AppDetailsIcon'
|
|
12
|
+
import AppEditIcon from './AppEditIcon'
|
|
9
13
|
import AppIcon from './AppIcon'
|
|
10
14
|
import AppListIcon from './AppListIcon'
|
|
11
15
|
import AppEmptyIcon from './AppEmptyIcon'
|
|
16
|
+
import AppSettingsIcon from './AppSettingsIcon'
|
|
12
17
|
import ApplicationTypeIcon from './ApplicationTypeIcon'
|
|
13
18
|
import AppWorkspace from './AppWorkspace'
|
|
14
19
|
import ArrowDownFullIcon from './ArrowDownFullIcon'
|
|
@@ -47,12 +52,13 @@ import CircleTwoArrowsUpIcon from './CircleTwoArrowsUpIcon'
|
|
|
47
52
|
import CloseIcon from './CloseIcon'
|
|
48
53
|
import CloudIcon from './CloudIcon'
|
|
49
54
|
import CLIIcon from './CLIIcon'
|
|
55
|
+
import CodeTestingIcon from './CodeTestingIcon'
|
|
50
56
|
import ComputerIcon from './ComputerIcon'
|
|
51
57
|
import CopyPasteIcon from './CopyPasteIcon'
|
|
52
58
|
import CreditCardIcon from './CreditCardIcon'
|
|
53
59
|
import ConfigureDatabaseIcon from './ConfigureDatabaseIcon'
|
|
54
60
|
import CreateAppIcon from './CreateAppIcon'
|
|
55
|
-
import
|
|
61
|
+
import RunningAppIcon from './RunningAppIcon'
|
|
56
62
|
import DatabaseIcon from './DatabaseIcon'
|
|
57
63
|
import DatabaseMigrationIcon from './DatabaseMigrationIcon'
|
|
58
64
|
import DepencenciesReloadIcon from './DepencenciesReloadIcon'
|
|
@@ -137,15 +143,20 @@ import WorkspaceStaticIcon from './WorkspaceStaticIcon'
|
|
|
137
143
|
export default {
|
|
138
144
|
AddIcon,
|
|
139
145
|
AlertIcon,
|
|
146
|
+
AllAppsIcon,
|
|
140
147
|
AllInOneIcon,
|
|
141
148
|
ApiCloudIcon,
|
|
142
149
|
ApiIcon,
|
|
143
150
|
ApiIconClosed,
|
|
144
151
|
ApiEmptyIcon,
|
|
145
152
|
ApiPerformanceIcon,
|
|
153
|
+
AppConfigurationIcon,
|
|
154
|
+
AppDetailsIcon,
|
|
155
|
+
AppEditIcon,
|
|
146
156
|
AppIcon,
|
|
147
157
|
AppListIcon,
|
|
148
158
|
AppEmptyIcon,
|
|
159
|
+
AppSettingsIcon,
|
|
149
160
|
ApplicationTypeIcon,
|
|
150
161
|
AppWorkspace,
|
|
151
162
|
ArrowDownFullIcon,
|
|
@@ -184,12 +195,13 @@ export default {
|
|
|
184
195
|
CloseIcon,
|
|
185
196
|
CloudIcon,
|
|
186
197
|
CLIIcon,
|
|
198
|
+
CodeTestingIcon,
|
|
187
199
|
ComputerIcon,
|
|
188
200
|
CopyPasteIcon,
|
|
189
201
|
CreditCardIcon,
|
|
190
202
|
ConfigureDatabaseIcon,
|
|
191
203
|
CreateAppIcon,
|
|
192
|
-
|
|
204
|
+
RunningAppIcon,
|
|
193
205
|
DatabaseIcon,
|
|
194
206
|
DatabaseMigrationIcon,
|
|
195
207
|
DepencenciesReloadIcon,
|