@platformatic/ui-components 0.2.4 → 0.2.6
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-CYL6XgVn.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/CLIIcon.jsx +115 -0
- package/src/components/icons/CirclePlayIcon.jsx +98 -0
- package/src/components/icons/CircleStopIcon.jsx +97 -0
- package/src/components/icons/StoppedAppIcon.jsx +107 -0
- package/src/components/icons/index.js +8 -0
- package/dist/assets/index-DcjcxgBQ.js +0 -206
|
@@ -39,11 +39,14 @@ import CircleEditIcon from './CircleEditIcon'
|
|
|
39
39
|
import CircleFullIcon from './CircleFullIcon'
|
|
40
40
|
import CircleGearIcon from './CircleGearIcon'
|
|
41
41
|
import CircleRestartIcon from './CircleRestartIcon'
|
|
42
|
+
import CirclePlayIcon from './CirclePlayIcon'
|
|
42
43
|
import CircleSubtractIcon from './CircleSubtractIcon'
|
|
44
|
+
import CircleStopIcon from './CircleStopIcon'
|
|
43
45
|
import CircleTwoArrowsDownIcon from './CircleTwoArrowsDownIcon'
|
|
44
46
|
import CircleTwoArrowsUpIcon from './CircleTwoArrowsUpIcon'
|
|
45
47
|
import CloseIcon from './CloseIcon'
|
|
46
48
|
import CloudIcon from './CloudIcon'
|
|
49
|
+
import CLIIcon from './CLIIcon'
|
|
47
50
|
import ComputerIcon from './ComputerIcon'
|
|
48
51
|
import CopyPasteIcon from './CopyPasteIcon'
|
|
49
52
|
import CreditCardIcon from './CreditCardIcon'
|
|
@@ -113,6 +116,7 @@ import StackablesIcon from './StackablesIcon'
|
|
|
113
116
|
import StackablesPluginIcon from './StackablesPluginIcon'
|
|
114
117
|
import StackablesTemplateIcon from './StackablesTemplateIcon'
|
|
115
118
|
import StopIcon from './StopIcon'
|
|
119
|
+
import StoppedAppIcon from './StoppedAppIcon'
|
|
116
120
|
import TerminalIcon from './TerminalIcon'
|
|
117
121
|
import TwoUsersIcon from './TwoUsersIcon'
|
|
118
122
|
import TeamsIcon from './TeamsIcon'
|
|
@@ -172,11 +176,14 @@ export default {
|
|
|
172
176
|
CircleFullIcon,
|
|
173
177
|
CircleGearIcon,
|
|
174
178
|
CircleRestartIcon,
|
|
179
|
+
CirclePlayIcon,
|
|
175
180
|
CircleSubtractIcon,
|
|
181
|
+
CircleStopIcon,
|
|
176
182
|
CircleTwoArrowsDownIcon,
|
|
177
183
|
CircleTwoArrowsUpIcon,
|
|
178
184
|
CloseIcon,
|
|
179
185
|
CloudIcon,
|
|
186
|
+
CLIIcon,
|
|
180
187
|
ComputerIcon,
|
|
181
188
|
CopyPasteIcon,
|
|
182
189
|
CreditCardIcon,
|
|
@@ -231,6 +238,7 @@ export default {
|
|
|
231
238
|
SendIcon,
|
|
232
239
|
ServiceIcon,
|
|
233
240
|
StopIcon,
|
|
241
|
+
StoppedAppIcon,
|
|
234
242
|
SlotIcon,
|
|
235
243
|
SwitchIcon,
|
|
236
244
|
SocialDiscordIcon,
|