@loja-integrada/admin-components 0.21.1 → 0.21.2
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/admin-components.cjs.development.js +27 -27
- package/dist/admin-components.cjs.development.js.map +1 -1
- package/dist/admin-components.cjs.production.min.js +1 -1
- package/dist/admin-components.cjs.production.min.js.map +1 -1
- package/dist/admin-components.esm.js +27 -27
- package/dist/admin-components.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Components/Button/Button.tsx +1 -1
- package/src/Components/Table/Table.tsx +1 -1
- package/src/Components/TableList/TableList.tsx +1 -1
- package/src/Forms/InputLabel/InputLabel.tsx +1 -1
- package/src/Layout/Box/Components/Header/BoxHeader.tsx +1 -1
package/package.json
CHANGED
|
@@ -109,7 +109,7 @@ const ButtonComponent = (
|
|
|
109
109
|
const horizontalPadding =
|
|
110
110
|
variant === 'onlyText' ? '' : `px-5 komea:px-4 ${listOfSizePaddings[size]}`
|
|
111
111
|
|
|
112
|
-
let classes = `inline-flex font-medium items-center justify-center ${horizontalPadding} text-center no-underline cursor-pointer transition rounded-md after:align-middle focus:outline-none `
|
|
112
|
+
let classes = `inline-flex font-semibold komea:font-medium items-center justify-center ${horizontalPadding} text-center no-underline cursor-pointer transition rounded-md after:align-middle focus:outline-none `
|
|
113
113
|
|
|
114
114
|
if (loading) {
|
|
115
115
|
classes +=
|
|
@@ -211,7 +211,7 @@ const TableComponent = ({
|
|
|
211
211
|
<tr>
|
|
212
212
|
<td colSpan={columnsLength || 1} className={`${TdClasses}`}>
|
|
213
213
|
<TdWrapper>
|
|
214
|
-
<div className="text-center py-16 text-xl font-medium text-on-base-2">
|
|
214
|
+
<div className="text-center py-16 text-xl font-semibold komea:font-medium text-on-base-2">
|
|
215
215
|
{emptyText}
|
|
216
216
|
</div>
|
|
217
217
|
</TdWrapper>
|
|
@@ -60,7 +60,7 @@ const TableListComponent = ({
|
|
|
60
60
|
{empty.illustration}
|
|
61
61
|
</div>
|
|
62
62
|
)}
|
|
63
|
-
<div className="table-list-empty-title text-center text-f4 font-medium text-primary-bold">
|
|
63
|
+
<div className="table-list-empty-title text-center text-f4 font-semibold komea:font-medium text-primary-bold">
|
|
64
64
|
{empty.title}
|
|
65
65
|
</div>
|
|
66
66
|
{empty.subTitle && (
|
|
@@ -12,7 +12,7 @@ export const InputLabel = React.memo(
|
|
|
12
12
|
if (!label) return null
|
|
13
13
|
return (
|
|
14
14
|
<label
|
|
15
|
-
className={`input-label text-f6 font-medium inline-flex items-center mb-0.5 ${
|
|
15
|
+
className={`input-label text-f6 font-semibold komea:font-medium inline-flex items-center mb-0.5 ${
|
|
16
16
|
hasError ? 'text-danger' : 'text-on-base'
|
|
17
17
|
} ${className}`}
|
|
18
18
|
htmlFor={htmlFor}
|
|
@@ -30,7 +30,7 @@ export const BoxHeader = React.memo(
|
|
|
30
30
|
>
|
|
31
31
|
<div className="flex-1 min-w-0 mr-2">
|
|
32
32
|
{title && (
|
|
33
|
-
<h3 className="text-f5 font-medium break-words lg:text-f4">
|
|
33
|
+
<h3 className="text-f5 font-semibold komea:font-medium break-words lg:text-f4">
|
|
34
34
|
{title}
|
|
35
35
|
</h3>
|
|
36
36
|
)}
|