@hyphen/hyphen-components 7.8.0 → 7.8.1
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/css/utilities.css +1 -1
- package/dist/css/variables.css +5 -5
- package/dist/hyphen-components.cjs.development.js.map +1 -1
- package/dist/hyphen-components.cjs.production.min.js.map +1 -1
- package/dist/hyphen-components.esm.js.map +1 -1
- package/dist/index.d.ts +42 -0
- package/package.json +3 -2
- package/src/components/FormControl/FormControl.stories.tsx +92 -0
- package/src/components/HelpText/HelpText.stories.tsx +45 -0
- package/src/components/InputValidationMessage/InputValidationMessage.stories.tsx +50 -0
- package/src/components/Sidebar/Sidebar.mdx +208 -0
- package/src/components/Sidebar/Sidebar.stories.tsx +13 -0
- package/src/components/Sidebar/Sidebar.tsx +42 -0
package/dist/css/utilities.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
\********************************************************************************************************************************************************/
|
|
4
4
|
/**
|
|
5
5
|
* Do not edit directly
|
|
6
|
-
* Generated on Thu, 09 Jul 2026
|
|
6
|
+
* Generated on Thu, 09 Jul 2026 18:43:08 GMT
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
.font-family-monospace { font-family: var(--assets-font-family-monospace); }
|
package/dist/css/variables.css
CHANGED
|
@@ -399,8 +399,8 @@
|
|
|
399
399
|
--color-background-button-primary-hover: #e5e5e5;
|
|
400
400
|
--color-background-button-primary-active: #e5e5e5;
|
|
401
401
|
--color-background-button-secondary: #171717;
|
|
402
|
-
--color-background-button-secondary-hover: #
|
|
403
|
-
--color-background-button-secondary-active: #
|
|
402
|
+
--color-background-button-secondary-hover: #262626;
|
|
403
|
+
--color-background-button-secondary-active: #171717;
|
|
404
404
|
--color-background-button-tertiary: transparent;
|
|
405
405
|
--color-background-button-tertiary-hover: #404040;
|
|
406
406
|
--color-background-button-tertiary-active: #525252;
|
|
@@ -433,9 +433,9 @@
|
|
|
433
433
|
--color-border-button-primary: #FFFFFF;
|
|
434
434
|
--color-border-button-primary-hover: #e5e5e5;
|
|
435
435
|
--color-border-button-primary-active: #e5e5e5;
|
|
436
|
-
--color-border-button-secondary: #
|
|
437
|
-
--color-border-button-secondary-hover: #
|
|
438
|
-
--color-border-button-secondary-active: #
|
|
436
|
+
--color-border-button-secondary: #525252;
|
|
437
|
+
--color-border-button-secondary-hover: #737373;
|
|
438
|
+
--color-border-button-secondary-active: #a3a3a3;
|
|
439
439
|
--color-border-button-tertiary: transparent;
|
|
440
440
|
--color-border-button-tertiary-hover: transparent;
|
|
441
441
|
--color-border-button-tertiary-active: transparent;
|