dash-ui-kit 1.0.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/README.md +91 -0
- package/dist/react/components/accordion/index.d.ts +21 -0
- package/dist/react/components/avatar/index.d.ts +17 -0
- package/dist/react/components/bigNumber/index.d.ts +19 -0
- package/dist/react/components/button/index.d.ts +15 -0
- package/dist/react/components/copyButton/index.d.ts +10 -0
- package/dist/react/components/dashLogo/index.d.ts +28 -0
- package/dist/react/components/dateBlock/index.d.ts +21 -0
- package/dist/react/components/dialog/index.d.ts +21 -0
- package/dist/react/components/heading/index.d.ts +11 -0
- package/dist/react/components/icons/index.d.ts +37 -0
- package/dist/react/components/identifier/index.d.ts +25 -0
- package/dist/react/components/index.d.ts +26 -0
- package/dist/react/components/input/index.d.ts +38 -0
- package/dist/react/components/list/index.d.ts +13 -0
- package/dist/react/components/notActive/index.d.ts +6 -0
- package/dist/react/components/overlayMenu/index.d.ts +39 -0
- package/dist/react/components/overlaySelect/index.d.ts +40 -0
- package/dist/react/components/progressStepBar/index.d.ts +8 -0
- package/dist/react/components/select/index.d.ts +47 -0
- package/dist/react/components/switch/index.d.ts +56 -0
- package/dist/react/components/tabs/index.d.ts +37 -0
- package/dist/react/components/text/index.d.ts +31 -0
- package/dist/react/components/textarea/index.d.ts +41 -0
- package/dist/react/components/timeDelta/index.d.ts +21 -0
- package/dist/react/components/transactionStatusIcon/index.d.ts +26 -0
- package/dist/react/components/valueCard/index.d.ts +33 -0
- package/dist/react/contexts/ThemeContext.d.ts +36 -0
- package/dist/react/contexts/index.d.ts +1 -0
- package/dist/react/hooks/index.d.ts +1 -0
- package/dist/react/hooks/useDebounce.d.ts +42 -0
- package/dist/react/index.cjs.js +11175 -0
- package/dist/react/index.cjs.js.map +1 -0
- package/dist/react/index.d.ts +28 -0
- package/dist/react/index.esm.js +11100 -0
- package/dist/react/index.esm.js.map +1 -0
- package/dist/react/utils/copyToClipboard.d.ts +14 -0
- package/dist/react/utils/datetime.d.ts +41 -0
- package/dist/react/utils/index.d.ts +2 -0
- package/dist/styles.css +1 -0
- package/dist/theme.css +1 -0
- package/package.json +125 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export { Accordion, type AccordionProps } from './components/accordion';
|
|
2
|
+
export { Button, type ButtonProps } from './components/button';
|
|
3
|
+
export { Input, type InputProps } from './components/input';
|
|
4
|
+
export { Textarea, type TextareaProps } from './components/textarea';
|
|
5
|
+
export { Text, type TextProps } from './components/text';
|
|
6
|
+
export { ValueCard, type ValueCardProps } from './components/valueCard';
|
|
7
|
+
export { Select, type SelectProps, type SelectOption } from './components/select';
|
|
8
|
+
export { OverlaySelect, type OverlaySelectProps, type OverlaySelectOption } from './components/overlaySelect';
|
|
9
|
+
export { OverlayMenu, type OverlayMenuProps, type OverlayMenuItem } from './components/overlayMenu';
|
|
10
|
+
export { Switch, type SwitchProps, type SwitchOption } from './components/switch';
|
|
11
|
+
export { Avatar, type AvatarProps } from './components/avatar';
|
|
12
|
+
export { List, type ListProps, type ListItem } from './components/list';
|
|
13
|
+
export { BigNumber, type BigNumberProps, type BigNumberVariant } from './components/bigNumber';
|
|
14
|
+
export { default as Identifier, type IdentifierProps } from './components/identifier';
|
|
15
|
+
export { Heading, type HeadingProps } from './components/heading';
|
|
16
|
+
export { CopyButton, type CopyButtonProps } from './components/copyButton';
|
|
17
|
+
export { NotActive, type NotActiveProps } from './components/notActive';
|
|
18
|
+
export { TimeDelta, type TimeDeltaProps } from './components/timeDelta';
|
|
19
|
+
export { DateBlock, type DateBlockProps, type DateBlockFormat } from './components/dateBlock';
|
|
20
|
+
export { TransactionStatusIcon, type TransactionStatusIconProps, type StatusKey } from './components/transactionStatusIcon';
|
|
21
|
+
export { ProgressStepBar, type ProgressStepBarProps } from './components/progressStepBar';
|
|
22
|
+
export { DashLogo, type DashLogoProps } from './components/dashLogo';
|
|
23
|
+
export { Dialog, type DialogProps } from './components/dialog';
|
|
24
|
+
export { Tabs, type TabsProps, type TabItem } from './components/tabs';
|
|
25
|
+
export type { TimeDeltaFormat } from './utils/datetime';
|
|
26
|
+
export { ThemeProvider, useTheme, type Theme, type ThemeContextValue, type ThemeProviderProps } from './contexts/ThemeContext';
|
|
27
|
+
export { ArrowIcon, CopyIcon, SuccessIcon, ErrorIcon, QueuedIcon, PooledIcon, BroadcastedIcon, CalendarIcon, EyeOpenIcon, EyeClosedIcon, CheckIcon, KeyIcon, ProtectedMessageIcon, SmartphoneIcon, CrossIcon, WalletIcon, PlusIcon, FilterIcon, EditIcon, DeleteIcon, ChevronIcon, BurgerMenuIcon, KebabMenuIcon, CircleProcessIcon, CreditsIcon, WebIcon, ChainSmallIcon, SettingsIcon, ShieldSmallIcon, QuestionMessageIcon } from './components/icons';
|
|
28
|
+
export type { IconProps } from './components/icons';
|