@hyphen/hyphen-components 2.9.2 → 2.9.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/README.md +1 -1
- package/dist/css/utilities.css +1 -1
- package/dist/css/variables.css +2 -2
- package/dist/hyphen-components.cjs.development.js +2 -2
- package/dist/hyphen-components.cjs.development.js.map +1 -1
- package/dist/hyphen-components.cjs.production.min.js +1 -1
- package/dist/hyphen-components.cjs.production.min.js.map +1 -1
- package/dist/hyphen-components.esm.js +2 -2
- package/dist/hyphen-components.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Box/Box.tsx +3 -1
- package/src/components/Pagination/Pagination.tsx +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://hyphen.ai" rel="noopener" target="_blank"><img width="150" src="
|
|
2
|
+
<a href="https://hyphen.ai" rel="noopener" target="_blank"><img width="150" src="public/images/logo.png" alt="Hyphen logo"></a></p>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h1 align="center" style="border-bottom: none;">Hyphen Component Library</h1>
|
package/dist/css/utilities.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
\***************************************************************************************************************************/
|
|
4
4
|
/**
|
|
5
5
|
* Do not edit directly
|
|
6
|
-
* Generated on Fri, 24 May 2024 23:
|
|
6
|
+
* Generated on Fri, 24 May 2024 23:07:08 GMT
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
.font-family-monospace { font-family: var(--assets-font-family-monospace); }
|
package/dist/css/variables.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
\*********************************************************************************************************************/
|
|
4
4
|
/**
|
|
5
5
|
* Do not edit directly
|
|
6
|
-
* Generated on Fri, 24 May 2024 23:
|
|
6
|
+
* Generated on Fri, 24 May 2024 23:07:08 GMT
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
:root {
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
\*******************************************************************************************************************************/
|
|
296
296
|
/**
|
|
297
297
|
* Do not edit directly
|
|
298
|
-
* Generated on Fri, 24 May 2024 23:
|
|
298
|
+
* Generated on Fri, 24 May 2024 23:07:08 GMT
|
|
299
299
|
*/
|
|
300
300
|
|
|
301
301
|
:root.dark {
|
|
@@ -3516,7 +3516,7 @@ var Pagination = function Pagination(_ref) {
|
|
|
3516
3516
|
},
|
|
3517
3517
|
gap: isCompact ? 'xs' : 'sm'
|
|
3518
3518
|
}, React.createElement(Button, {
|
|
3519
|
-
variant: "
|
|
3519
|
+
variant: "secondary",
|
|
3520
3520
|
size: isCompact ? 'sm' : 'md',
|
|
3521
3521
|
isDisabled: activePage === 1,
|
|
3522
3522
|
onClick: function onClick() {
|
|
@@ -3542,7 +3542,7 @@ var Pagination = function Pagination(_ref) {
|
|
|
3542
3542
|
className: className
|
|
3543
3543
|
}, isPage ? pageNumber : '...');
|
|
3544
3544
|
})), React.createElement(Button, {
|
|
3545
|
-
variant: "
|
|
3545
|
+
variant: "secondary",
|
|
3546
3546
|
size: isCompact ? 'sm' : 'md',
|
|
3547
3547
|
isDisabled: activePage === pageTotal,
|
|
3548
3548
|
onClick: function onClick() {
|