Skip to content

Commit 26d1f3c

Browse files
committed
fix imports
Signed-off-by: Leonardo Rossi <[email protected]>
1 parent 9fea6dd commit 26d1f3c

File tree

261 files changed

+262
-270
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

261 files changed

+262
-270
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@platformatic/ui-components",
33
"description": "Platformatic UI Components",
4-
"version": "0.15.5",
4+
"version": "0.16.0",
55
"type": "module",
66
"license": "Apache-2.0",
77
"repository": {

src/components/BorderedBox.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useEffect, useState } from 'react'
22
import styles from './BorderedBox.module.css'
33
import commonStyles from './Common.module.css'
4-
import { COLORS_BORDERED_BOX, DARK_BLUE, TRANSPARENT, OPACITIES, OPACITY_100 } from './constants'
4+
import { DARK_BLUE, TRANSPARENT, OPACITY_100 } from './constants'
55

66
function BorderedBox (props) {
77
const {

src/components/Button.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,12 @@ import styles from './Button.module.css'
33
import commonStyles from './Common.module.css'
44
import PlatformaticIcon from './PlatformaticIcon'
55
import {
6-
SIZES,
7-
COLORS_BUTTON,
86
BOX_SHADOW,
97
UNDERLINE,
10-
HOVER_EFFECTS_BUTTONS,
118
DULLS_BACKGROUND_COLOR,
129
MAIN_DARK_BLUE,
1310
LARGE,
1411
CHANGE_BACKGROUND_COLOR,
15-
BUTTON_BACKGROUNDS_COLOR_HOVER,
1612
ACTIVE_AND_INACTIVE_STATUS,
1713
TRANSPARENT
1814
} from './constants'

src/components/ButtonFullRounded.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import commonStyles from './Common.module.css'
33
import styles from './ButtonFullRounded.module.css'
44
import PlatformaticIcon from './PlatformaticIcon'
5-
import { COLORS_ICON, SIZES, DULLS_BACKGROUND_COLOR, PADDING_SIZES, SMALL, WHITE, NONE } from './constants'
5+
import { DULLS_BACKGROUND_COLOR, SMALL, WHITE, NONE } from './constants'
66
function ButtonFullRounded ({
77
className = '',
88
iconName = '',

src/components/ButtonOnlyIcon.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react'
22
import styles from './ButtonOnlyIcon.module.css'
33
import commonStyles from './Common.module.css'
44
import PlatformaticIcon from './PlatformaticIcon'
5-
import { SIZES, COLORS_BUTTON, BOX_SHADOW, UNDERLINE, HOVER_EFFECTS_BUTTONS, DULLS_BACKGROUND_COLOR, MAIN_DARK_BLUE, LARGE, MEDIUM, TRANSPARENT } from './constants'
5+
import { BOX_SHADOW, UNDERLINE, DULLS_BACKGROUND_COLOR, MAIN_DARK_BLUE, LARGE, MEDIUM, TRANSPARENT } from './constants'
66

77
function ButtonOnlyIcon ({
88
textClass = '',

src/components/Checkbox.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
22
import styles from './Checkbox.module.css'
3-
import { MAIN_DARK_BLUE, MEDIUM, RICH_BLACK, SMALL, WHITE } from './constants'
3+
import { MAIN_DARK_BLUE, MEDIUM } from './constants'
44
function Checkbox ({
55
disabled = false,
66
color = MAIN_DARK_BLUE,

src/components/CopyAndPaste.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { useState } from 'react'
2-
import { COLORS_ICON, DIRECTION_TOP, MEDIUM, SIZES, POSITIONS, POSITION_CENTER, MAIN_DARK_BLUE } from './constants'
2+
import { DIRECTION_TOP, MEDIUM, POSITION_CENTER, MAIN_DARK_BLUE } from './constants'
33
import PlatformaticIcon from './PlatformaticIcon'
44
import TooltipAbsolute from './TooltipAbsolute'
55
import Tooltip from './Tooltip'

src/components/DropDown.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useEffect, useRef, useState } from 'react'
22
import styles from './DropDown.module.css'
33
import commonStyles from './Common.module.css'
44
import PlatformaticIcon from './PlatformaticIcon'
5-
import { DARK_BLUE, LIGHT_BLUE, MAIN_DARK_BLUE, RICH_BLACK, WHITE } from './constants'
5+
import { DARK_BLUE, MAIN_DARK_BLUE, RICH_BLACK, WHITE } from './constants'
66

77
function DropDown ({
88
pictureUrl = '',

src/components/FollowUs.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useState } from 'react'
22
import styles from './FollowUs.module.css'
33
import Icons from './icons'
4-
import { MAIN_GREEN, WHITE, MEDIUM, SMALL, MAIN_DARK_BLUE, LIGHT_GREEN } from './constants'
4+
import { WHITE, MEDIUM } from './constants'
55

66
function SocialElement ({ href, iconName, iconClassName, iconColor, iconSize }) {
77
const [hover, setHover] = useState(false)

0 commit comments

Comments
 (0)