@avalabs/k2-alpine 1.229.1-alpha.3.f032d4884 → 1.235.0
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/AutosizeTextField/AutosizeTextField.d.ts +3 -0
- package/dist/components/AutosizeTextField/types.d.ts +9 -0
- package/dist/components/CurrencyInput/AdornmentWrapper.d.ts +6 -0
- package/dist/components/CurrencyInput/CurrencyInput.d.ts +2 -0
- package/dist/components/CurrencyInput/types.d.ts +24 -0
- package/dist/components/CurrencyInput/utils.d.ts +5 -0
- package/dist/components/CustomDialog/CustomDialog.d.ts +4 -0
- package/dist/components/Icons/Arbitrum.d.ts +3 -0
- package/dist/components/Icons/Base.d.ts +3 -0
- package/dist/components/Icons/Optimism.d.ts +3 -0
- package/dist/components/Icons/Sell.d.ts +2 -0
- package/dist/components/Icons/Solana.d.ts +1 -0
- package/dist/components/Icons/Withdraw.d.ts +2 -0
- package/dist/components/Icons/index.d.ts +27 -0
- package/dist/components/Toast/Toast.d.ts +2 -0
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2733 -2454
- package/dist/index.js.map +1 -1
- package/dist/utils/getVariableFontSize.d.ts +10 -0
- package/package.json +11 -14
- package/dist/components/SelectCountry/SelectCountry.d.ts +0 -20
- package/dist/components/SelectCountry/index.d.ts +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ export { Popover, type PopoverProps } from './components/Popover/Popover';
|
|
|
22
22
|
export { PopoverContent, type PopoverContentProps } from './components/Popover/PopoverContent';
|
|
23
23
|
export { PopoverItem, type PopoverItemProps } from './components/PopoverItem/PopoverItem';
|
|
24
24
|
export { Select, type BorderlessSelectProps } from './components/Select/Select';
|
|
25
|
-
export { SelectCountry, type SelectCountryProps, type Country } from './components/SelectCountry';
|
|
26
25
|
export { SearchInput, type SearchInputProps } from './components/SearchInput/SearchInput';
|
|
27
26
|
export { AppStore, PlayStore, ChromeStore } from './components/StoreButtons';
|
|
28
27
|
export { Tilt, type TiltProps } from './components/Tilt/Tilt';
|
|
@@ -35,3 +34,5 @@ export { Stepper, type StepperProps } from './components/Stepper/Stepper';
|
|
|
35
34
|
export { DateTimePicker, type DateTimePickerProps, type UseDayPickerContextProps, } from './components/DateTimePicker';
|
|
36
35
|
export * from './theme/logos';
|
|
37
36
|
export { TabBar, type TabBarItemProps } from './components/TabBar';
|
|
37
|
+
export { CurrencyInput } from './components/CurrencyInput/CurrencyInput';
|
|
38
|
+
export type { CurrencyInputProps } from './components/CurrencyInput/types';
|