@veevarts/design-system 1.0.0-alpha.10 → 1.0.0-alpha.13
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/components/index.d.ts +12 -0
- package/dist/index.cjs +11 -11
- package/dist/index.d.ts +4 -4
- package/dist/index.js +8163 -8582
- package/dist/patterns/EventDetails/EventDetails.test.d.ts +1 -0
- package/dist/patterns/RevenueDistribution/RevenueDistributionCard.d.ts +16 -0
- package/dist/patterns/RevenueDistribution/RevenueDistributionCard.test.d.ts +1 -0
- package/dist/patterns/RevenueDistribution/RevenueDistributionEmpty.d.ts +11 -0
- package/dist/patterns/RevenueDistribution/RevenueDistributionError.d.ts +11 -0
- package/dist/patterns/RevenueDistribution/RevenueDistributionSkeleton.d.ts +11 -0
- package/dist/patterns/RevenueDistribution/examples/InteractiveExample.d.ts +8 -0
- package/dist/patterns/RevenueDistribution/examples/MultipleDistributionsFormExample.d.ts +10 -0
- package/dist/patterns/RevenueDistribution/examples/WithGlAccountSearchExample.d.ts +7 -0
- package/dist/patterns/RevenueDistribution/examples/index.d.ts +9 -0
- package/dist/patterns/RevenueDistribution/index.d.ts +14 -0
- package/dist/patterns/RevenueDistribution/types.d.ts +394 -0
- package/dist/patterns/RevenueDistribution/utils/amount.d.ts +56 -0
- package/dist/patterns/RevenueDistribution/utils/data.d.ts +4 -0
- package/dist/patterns/RevenueDistribution/utils/index.d.ts +5 -0
- package/dist/patterns/RichText/TipTapArea/TipTapArea.d.ts +1 -1
- package/dist/patterns/RichText/types/props.d.ts +1 -1
- package/dist/patterns/Stepper/Stepper.d.ts +1 -1
- package/dist/patterns/index.d.ts +2 -1
- package/dist/tokens/colors.d.ts +39 -0
- package/package.json +2 -1
|
@@ -1,2 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Components Index
|
|
3
|
+
*
|
|
4
|
+
* Re-exports all HeroUI components and overrides with custom implementations.
|
|
5
|
+
* Import from this file instead of @heroui/react to ensure custom components are used.
|
|
6
|
+
*
|
|
7
|
+
* Example:
|
|
8
|
+
* import { Button, Card, Input } from '../../components';
|
|
9
|
+
*
|
|
10
|
+
* When a component is customized, it will automatically be used instead of the HeroUI version.
|
|
11
|
+
*/
|
|
12
|
+
export * from '@heroui/react';
|
|
1
13
|
export { Button } from './Button';
|
|
2
14
|
export type { ButtonProps } from './Button';
|