@luxfi/ui 7.3.0 → 7.3.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/accordion.d.cts +74 -0
- package/dist/accordion.d.ts +74 -0
- package/dist/alert.d.cts +30 -0
- package/dist/alert.d.ts +30 -0
- package/dist/avatar.d.cts +25 -0
- package/dist/avatar.d.ts +25 -0
- package/dist/badge.d.cts +19 -0
- package/dist/badge.d.ts +19 -0
- package/dist/bank.d.cts +76 -0
- package/dist/bank.d.ts +76 -0
- package/dist/button.d.cts +55 -0
- package/dist/button.d.ts +55 -0
- package/dist/checkbox.d.cts +31 -0
- package/dist/checkbox.d.ts +31 -0
- package/dist/close-button.d.cts +9 -0
- package/dist/close-button.d.ts +9 -0
- package/dist/collapsible.d.cts +23 -0
- package/dist/collapsible.d.ts +23 -0
- package/dist/color-mode.d.cts +25 -0
- package/dist/color-mode.d.ts +25 -0
- package/dist/dialog.d.cts +65 -0
- package/dist/dialog.d.ts +65 -0
- package/dist/drawer.d.cts +36 -0
- package/dist/drawer.d.ts +36 -0
- package/dist/empty-state.d.cts +13 -0
- package/dist/empty-state.d.ts +13 -0
- package/dist/expiration-selector.d.cts +16 -0
- package/dist/expiration-selector.d.ts +16 -0
- package/dist/field.d.cts +24 -0
- package/dist/field.d.ts +24 -0
- package/dist/greeks-display.d.cts +14 -0
- package/dist/greeks-display.d.ts +14 -0
- package/dist/heading.d.cts +10 -0
- package/dist/heading.d.ts +10 -0
- package/dist/icon-button.d.cts +33 -0
- package/dist/icon-button.d.ts +33 -0
- package/dist/image.d.cts +57 -0
- package/dist/image.d.ts +57 -0
- package/dist/index.cjs +278 -275
- package/dist/index.d.cts +56 -0
- package/dist/index.d.ts +56 -0
- package/dist/index.js +278 -275
- package/dist/input-group.d.cts +17 -0
- package/dist/input-group.d.ts +17 -0
- package/dist/input.d.cts +11 -0
- package/dist/input.d.ts +11 -0
- package/dist/link.d.cts +37 -0
- package/dist/link.d.ts +37 -0
- package/dist/menu.d.cts +84 -0
- package/dist/menu.d.ts +84 -0
- package/dist/option-chain.d.cts +37 -0
- package/dist/option-chain.d.ts +37 -0
- package/dist/option-position.d.cts +29 -0
- package/dist/option-position.d.ts +29 -0
- package/dist/pin-input.d.cts +25 -0
- package/dist/pin-input.d.ts +25 -0
- package/dist/pnl-diagram.d.cts +11 -0
- package/dist/pnl-diagram.d.ts +11 -0
- package/dist/popover.d.cts +73 -0
- package/dist/popover.d.ts +73 -0
- package/dist/progress-circle.d.cts +47 -0
- package/dist/progress-circle.d.ts +47 -0
- package/dist/progress.d.cts +28 -0
- package/dist/progress.d.ts +28 -0
- package/dist/provider.cjs +9 -1
- package/dist/provider.d.cts +12 -0
- package/dist/provider.d.ts +12 -0
- package/dist/provider.js +5 -1
- package/dist/radio.d.cts +53 -0
- package/dist/radio.d.ts +53 -0
- package/dist/rating.d.cts +14 -0
- package/dist/rating.d.ts +14 -0
- package/dist/select.d.cts +130 -0
- package/dist/select.d.ts +130 -0
- package/dist/separator.d.cts +13 -0
- package/dist/separator.d.ts +13 -0
- package/dist/skeleton.d.cts +60 -0
- package/dist/skeleton.d.ts +60 -0
- package/dist/slider.d.cts +24 -0
- package/dist/slider.d.ts +24 -0
- package/dist/strategy-builder.d.cts +26 -0
- package/dist/strategy-builder.d.ts +26 -0
- package/dist/switch.d.cts +27 -0
- package/dist/switch.d.ts +27 -0
- package/dist/table.d.cts +107 -0
- package/dist/table.d.ts +107 -0
- package/dist/tabs.d.cts +78 -0
- package/dist/tabs.d.ts +78 -0
- package/dist/tag.d.cts +21 -0
- package/dist/tag.d.ts +21 -0
- package/dist/textarea.d.cts +11 -0
- package/dist/textarea.d.ts +11 -0
- package/dist/toaster.d.cts +29 -0
- package/dist/toaster.d.ts +29 -0
- package/dist/tooltip.d.cts +38 -0
- package/dist/tooltip.d.ts +38 -0
- package/dist/utils.d.cts +5 -0
- package/dist/utils.d.ts +5 -0
- package/package.json +1 -1
- package/src/index.ts +0 -2
- package/src/provider.tsx +3 -2
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export { AppProvider } from './provider.cjs';
|
|
2
|
+
export { cn } from './utils.cjs';
|
|
3
|
+
export { AccordionItem, AccordionItemContent, AccordionItemTrigger, AccordionRoot, useAccordion } from './accordion.cjs';
|
|
4
|
+
export { Alert, AlertProps } from './alert.cjs';
|
|
5
|
+
export { Avatar, AvatarGroup, AvatarProps } from './avatar.cjs';
|
|
6
|
+
export { Badge, BadgeProps } from './badge.cjs';
|
|
7
|
+
export { Button, ButtonGroup, ButtonGroupProps, ButtonGroupRadio, ButtonGroupRadioProps, ButtonProps, buttonVariants } from './button.cjs';
|
|
8
|
+
export { Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps } from './checkbox.cjs';
|
|
9
|
+
export { CloseButton, CloseButtonProps } from './close-button.cjs';
|
|
10
|
+
export { CollapsibleDetails, CollapsibleList } from './collapsible.cjs';
|
|
11
|
+
export { ColorMode, ColorModeProvider, useColorMode, useColorModeValue } from './color-mode.cjs';
|
|
12
|
+
export { DialogActionTrigger, DialogBackdrop, DialogBody, DialogCloseTrigger, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogRoot, DialogTitle, DialogTrigger } from './dialog.cjs';
|
|
13
|
+
export { DrawerActionTrigger, DrawerBody, DrawerCloseTrigger, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerRoot, DrawerTitle, DrawerTrigger } from './drawer.cjs';
|
|
14
|
+
export { EmptyState, EmptyStateProps } from './empty-state.cjs';
|
|
15
|
+
export { Field, FieldProps } from './field.cjs';
|
|
16
|
+
export { Heading, HeadingProps } from './heading.cjs';
|
|
17
|
+
export { IconButton, IconButtonProps } from './icon-button.cjs';
|
|
18
|
+
export { Image, ImageProps } from './image.cjs';
|
|
19
|
+
export { Input, InputProps } from './input.cjs';
|
|
20
|
+
export { InputGroup, InputGroupProps } from './input-group.cjs';
|
|
21
|
+
export { Link, LinkBox, LinkExternalIcon, LinkOverlay, LinkProps } from './link.cjs';
|
|
22
|
+
export { MenuArrow, MenuCheckboxItem, MenuContent, MenuItem, MenuItemGroup, MenuItemText, MenuRadioItem, MenuRadioItemGroup, MenuRoot, MenuSeparator, MenuTrigger, MenuTriggerItem } from './menu.cjs';
|
|
23
|
+
export { PinInput } from './pin-input.cjs';
|
|
24
|
+
export { PopoverArrow, PopoverBody, PopoverCloseTrigger, PopoverCloseTriggerWrapper, PopoverContent, PopoverDescription, PopoverFooter, PopoverHeader, PopoverRoot, PopoverTitle, PopoverTrigger } from './popover.cjs';
|
|
25
|
+
export { Progress } from './progress.cjs';
|
|
26
|
+
export { ProgressCircleRing, ProgressCircleRoot, ProgressCircleValueText } from './progress-circle.cjs';
|
|
27
|
+
export { Radio, RadioGroup } from './radio.cjs';
|
|
28
|
+
export { Rating } from './rating.cjs';
|
|
29
|
+
export { ListCollection, Select, SelectAsync, SelectAsyncProps, SelectClearTrigger, SelectContent, SelectControl, SelectItem, SelectItemGroup, SelectItemText, SelectLabel, SelectOption, SelectProps, SelectRoot, SelectRootProps, SelectValueText, createListCollection } from './select.cjs';
|
|
30
|
+
export { Separator, SeparatorProps } from './separator.cjs';
|
|
31
|
+
export { Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps } from './skeleton.cjs';
|
|
32
|
+
export { Slider } from './slider.cjs';
|
|
33
|
+
export { Switch } from './switch.cjs';
|
|
34
|
+
export { TableBody, TableCaption, TableCell, TableColumnHeader, TableColumnHeaderSortable, TableFooter, TableHeader, TableHeaderSticky, TableRoot, TableRow, TableScrollWrapper } from './table.cjs';
|
|
35
|
+
export { TabsContent, TabsCounter, TabsList, TabsRoot, TabsTrigger } from './tabs.cjs';
|
|
36
|
+
export { Tag, TagProps } from './tag.cjs';
|
|
37
|
+
export { Textarea, TextareaProps } from './textarea.cjs';
|
|
38
|
+
export { Toaster, toaster } from './toaster.cjs';
|
|
39
|
+
export { Tooltip, TooltipProps } from './tooltip.cjs';
|
|
40
|
+
export { OptionChain, OptionChainProps, OptionContract, OptionQuote, Strike } from './option-chain.cjs';
|
|
41
|
+
export { GreeksDisplay, GreeksDisplayProps } from './greeks-display.cjs';
|
|
42
|
+
export { StrategyBuilder, StrategyBuilderProps, StrategyLeg, StrategySubmission, StrategyType } from './strategy-builder.cjs';
|
|
43
|
+
export { PnlDiagram, PnlDiagramProps } from './pnl-diagram.cjs';
|
|
44
|
+
export { OptionPosition, OptionPositionCard, OptionPositionCardProps } from './option-position.cjs';
|
|
45
|
+
export { ExpirationOption, ExpirationSelector, ExpirationSelectorProps } from './expiration-selector.cjs';
|
|
46
|
+
export { BankAlert, BankAlertProps, BankAlertText, BankButton, BankButtonProps, BankButtonText, BankCard, BankCardProps, BankDivider, BankField, BankHeading, BankHeadingProps, BankInput, BankInputProps, BankPage, BankPageProps, BankPinBox, BankPinBoxProps, BankText, BankTextProps, bankColors } from './bank.cjs';
|
|
47
|
+
import 'react/jsx-runtime';
|
|
48
|
+
import '@tanstack/react-query';
|
|
49
|
+
import 'react';
|
|
50
|
+
import 'clsx';
|
|
51
|
+
import '@radix-ui/react-accordion';
|
|
52
|
+
import '@radix-ui/react-checkbox';
|
|
53
|
+
import '@radix-ui/react-dialog';
|
|
54
|
+
import '@radix-ui/react-select';
|
|
55
|
+
import '@radix-ui/react-tabs';
|
|
56
|
+
import '@hanzogui/core';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export { AppProvider } from './provider.js';
|
|
2
|
+
export { cn } from './utils.js';
|
|
3
|
+
export { AccordionItem, AccordionItemContent, AccordionItemTrigger, AccordionRoot, useAccordion } from './accordion.js';
|
|
4
|
+
export { Alert, AlertProps } from './alert.js';
|
|
5
|
+
export { Avatar, AvatarGroup, AvatarProps } from './avatar.js';
|
|
6
|
+
export { Badge, BadgeProps } from './badge.js';
|
|
7
|
+
export { Button, ButtonGroup, ButtonGroupProps, ButtonGroupRadio, ButtonGroupRadioProps, ButtonProps, buttonVariants } from './button.js';
|
|
8
|
+
export { Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps } from './checkbox.js';
|
|
9
|
+
export { CloseButton, CloseButtonProps } from './close-button.js';
|
|
10
|
+
export { CollapsibleDetails, CollapsibleList } from './collapsible.js';
|
|
11
|
+
export { ColorMode, ColorModeProvider, useColorMode, useColorModeValue } from './color-mode.js';
|
|
12
|
+
export { DialogActionTrigger, DialogBackdrop, DialogBody, DialogCloseTrigger, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogRoot, DialogTitle, DialogTrigger } from './dialog.js';
|
|
13
|
+
export { DrawerActionTrigger, DrawerBody, DrawerCloseTrigger, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerRoot, DrawerTitle, DrawerTrigger } from './drawer.js';
|
|
14
|
+
export { EmptyState, EmptyStateProps } from './empty-state.js';
|
|
15
|
+
export { Field, FieldProps } from './field.js';
|
|
16
|
+
export { Heading, HeadingProps } from './heading.js';
|
|
17
|
+
export { IconButton, IconButtonProps } from './icon-button.js';
|
|
18
|
+
export { Image, ImageProps } from './image.js';
|
|
19
|
+
export { Input, InputProps } from './input.js';
|
|
20
|
+
export { InputGroup, InputGroupProps } from './input-group.js';
|
|
21
|
+
export { Link, LinkBox, LinkExternalIcon, LinkOverlay, LinkProps } from './link.js';
|
|
22
|
+
export { MenuArrow, MenuCheckboxItem, MenuContent, MenuItem, MenuItemGroup, MenuItemText, MenuRadioItem, MenuRadioItemGroup, MenuRoot, MenuSeparator, MenuTrigger, MenuTriggerItem } from './menu.js';
|
|
23
|
+
export { PinInput } from './pin-input.js';
|
|
24
|
+
export { PopoverArrow, PopoverBody, PopoverCloseTrigger, PopoverCloseTriggerWrapper, PopoverContent, PopoverDescription, PopoverFooter, PopoverHeader, PopoverRoot, PopoverTitle, PopoverTrigger } from './popover.js';
|
|
25
|
+
export { Progress } from './progress.js';
|
|
26
|
+
export { ProgressCircleRing, ProgressCircleRoot, ProgressCircleValueText } from './progress-circle.js';
|
|
27
|
+
export { Radio, RadioGroup } from './radio.js';
|
|
28
|
+
export { Rating } from './rating.js';
|
|
29
|
+
export { ListCollection, Select, SelectAsync, SelectAsyncProps, SelectClearTrigger, SelectContent, SelectControl, SelectItem, SelectItemGroup, SelectItemText, SelectLabel, SelectOption, SelectProps, SelectRoot, SelectRootProps, SelectValueText, createListCollection } from './select.js';
|
|
30
|
+
export { Separator, SeparatorProps } from './separator.js';
|
|
31
|
+
export { Skeleton, SkeletonCircle, SkeletonCircleProps, SkeletonProps, SkeletonText, SkeletonTextProps } from './skeleton.js';
|
|
32
|
+
export { Slider } from './slider.js';
|
|
33
|
+
export { Switch } from './switch.js';
|
|
34
|
+
export { TableBody, TableCaption, TableCell, TableColumnHeader, TableColumnHeaderSortable, TableFooter, TableHeader, TableHeaderSticky, TableRoot, TableRow, TableScrollWrapper } from './table.js';
|
|
35
|
+
export { TabsContent, TabsCounter, TabsList, TabsRoot, TabsTrigger } from './tabs.js';
|
|
36
|
+
export { Tag, TagProps } from './tag.js';
|
|
37
|
+
export { Textarea, TextareaProps } from './textarea.js';
|
|
38
|
+
export { Toaster, toaster } from './toaster.js';
|
|
39
|
+
export { Tooltip, TooltipProps } from './tooltip.js';
|
|
40
|
+
export { OptionChain, OptionChainProps, OptionContract, OptionQuote, Strike } from './option-chain.js';
|
|
41
|
+
export { GreeksDisplay, GreeksDisplayProps } from './greeks-display.js';
|
|
42
|
+
export { StrategyBuilder, StrategyBuilderProps, StrategyLeg, StrategySubmission, StrategyType } from './strategy-builder.js';
|
|
43
|
+
export { PnlDiagram, PnlDiagramProps } from './pnl-diagram.js';
|
|
44
|
+
export { OptionPosition, OptionPositionCard, OptionPositionCardProps } from './option-position.js';
|
|
45
|
+
export { ExpirationOption, ExpirationSelector, ExpirationSelectorProps } from './expiration-selector.js';
|
|
46
|
+
export { BankAlert, BankAlertProps, BankAlertText, BankButton, BankButtonProps, BankButtonText, BankCard, BankCardProps, BankDivider, BankField, BankHeading, BankHeadingProps, BankInput, BankInputProps, BankPage, BankPageProps, BankPinBox, BankPinBoxProps, BankText, BankTextProps, bankColors } from './bank.js';
|
|
47
|
+
import 'react/jsx-runtime';
|
|
48
|
+
import '@tanstack/react-query';
|
|
49
|
+
import 'react';
|
|
50
|
+
import 'clsx';
|
|
51
|
+
import '@radix-ui/react-accordion';
|
|
52
|
+
import '@radix-ui/react-checkbox';
|
|
53
|
+
import '@radix-ui/react-dialog';
|
|
54
|
+
import '@radix-ui/react-select';
|
|
55
|
+
import '@radix-ui/react-tabs';
|
|
56
|
+
import '@hanzogui/core';
|