@worldcoin/mini-apps-ui-kit-react 1.0.0-canary.8 → 1.0.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/README.md +4 -35
- package/dist/_virtual/_commonjsHelpers.js +3 -3
- package/dist/_virtual/create-plugin.js +2 -2
- package/dist/_virtual/createPlugin.js +2 -2
- package/dist/_virtual/plugin.js +5 -5
- package/dist/components/AlertDialog/AlertDialog.d.ts +1 -1
- package/dist/components/AlertDialog/AlertDialog.js +79 -74
- package/dist/components/AlertDialog/index.d.ts +2 -1
- package/dist/components/AlertDialog/use-alert-dialog.js +9 -7
- package/dist/components/BottomBar/BottomBar.d.ts +4 -3
- package/dist/components/BottomBar/BottomBar.js +11 -8
- package/dist/components/BottomBar/index.d.ts +1 -1
- package/dist/components/BulletList/BulletList.d.ts +10 -5
- package/dist/components/BulletList/BulletList.js +28 -8
- package/dist/components/BulletList/index.d.ts +1 -1
- package/dist/components/Button/Button.d.ts +4 -9
- package/dist/components/Button/Button.js +40 -48
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts +4 -3
- package/dist/components/Checkbox/Checkbox.js +22 -20
- package/dist/components/Checkbox/index.d.ts +1 -1
- package/dist/components/Chip/Chip.d.ts +5 -4
- package/dist/components/Chip/Chip.js +25 -23
- package/dist/components/Chip/index.d.ts +1 -1
- package/dist/components/CircularIcon/CircularIcon.d.ts +5 -3
- package/dist/components/CircularIcon/CircularIcon.js +14 -12
- package/dist/components/CircularIcon/index.d.ts +1 -1
- package/dist/components/CircularState/CircularState.d.ts +8 -0
- package/dist/components/CircularState/CircularState.js +41 -0
- package/dist/components/CircularState/index.d.ts +2 -0
- package/dist/components/ClearButton/Clear.d.ts +3 -2
- package/dist/components/ClearButton/Clear.js +7 -7
- package/dist/components/ClearButton/ClearButton.d.ts +2 -2
- package/dist/components/ClearButton/ClearButton.js +23 -17
- package/dist/components/ClearButton/index.d.ts +1 -1
- package/dist/components/ColorPicker/ColorPicker.d.ts +4 -3
- package/dist/components/ColorPicker/ColorPicker.js +37 -32
- package/dist/components/ColorPicker/index.d.ts +2 -1
- package/dist/components/CountryDrawer/CountryDrawer.d.ts +14 -2
- package/dist/components/CountryDrawer/CountryDrawer.js +59 -47
- package/dist/components/CountryDrawer/index.d.ts +1 -1
- package/dist/components/CountryDrawer/useCountryFiltering.js +7 -6
- package/dist/components/CountryDrawer/useCountryGrouping.js +18 -12
- package/dist/components/Drawer/Drawer.d.ts +1 -1
- package/dist/components/Drawer/Drawer.js +58 -55
- package/dist/components/Drawer/index.d.ts +2 -1
- package/dist/components/Drawer/use-drawer.js +9 -7
- package/dist/components/Flag/Flag.d.ts +4 -4
- package/dist/components/Flag/Flag.js +24 -10
- package/dist/components/Flag/constants.d.ts +23 -2
- package/dist/components/Flag/constants.js +235 -5
- package/dist/components/Flag/index.d.ts +1 -2
- package/dist/components/Flag/types.d.ts +2 -0
- package/dist/components/Flag/utils.d.ts +1 -1
- package/dist/components/Flag/utils.js +5 -3
- package/dist/components/Form/Form.d.ts +8 -7
- package/dist/components/Form/Form.js +29 -24
- package/dist/components/Icons/ArrowDown.js +6 -6
- package/dist/components/Icons/Clear.d.ts +8 -0
- package/dist/components/Icons/Clock.d.ts +2 -0
- package/dist/components/Icons/Clock.js +30 -0
- package/dist/components/Icons/Delete.d.ts +1 -0
- package/dist/components/Icons/Fail.js +77 -75
- package/dist/components/Icons/MagicWand.js +11 -11
- package/dist/components/Icons/Magnifier.js +8 -8
- package/dist/components/Icons/Success.js +77 -75
- package/dist/components/Icons/Tick.js +7 -7
- package/dist/components/Icons/Warning.d.ts +2 -0
- package/dist/components/Icons/Warning.js +26 -0
- package/dist/components/Icons/XMark.js +7 -7
- package/dist/components/Input/Input.d.ts +14 -43
- package/dist/components/Input/Input.js +182 -130
- package/dist/components/Input/index.d.ts +1 -1
- package/dist/components/ListItem/ListItem.d.ts +3 -2
- package/dist/components/ListItem/ListItem.js +30 -28
- package/dist/components/ListItem/index.d.ts +1 -1
- package/dist/components/LiveFeedback/LiveFeedback.d.ts +21 -0
- package/dist/components/LiveFeedback/LiveFeedback.js +66 -0
- package/dist/components/LiveFeedback/index.d.ts +1 -0
- package/dist/components/Marble/Marble.d.ts +2 -2
- package/dist/components/Marble/Marble.js +12 -13
- package/dist/components/Marble/index.d.ts +1 -1
- package/dist/components/NumberPad/Delete.js +7 -6
- package/dist/components/NumberPad/NumberPad.d.ts +3 -2
- package/dist/components/NumberPad/NumberPad.js +43 -38
- package/dist/components/NumberPad/index.d.ts +1 -1
- package/dist/components/OTPField/OTPField.d.ts +53 -2
- package/dist/components/OTPField/OTPField.js +65 -40
- package/dist/components/OTPField/index.d.ts +1 -1
- package/dist/components/PasswordField/PasswordField.d.ts +4 -3
- package/dist/components/PasswordField/index.d.ts +1 -1
- package/dist/components/PasteButton/PasteButton.d.ts +2 -2
- package/dist/components/PasteButton/PasteButton.js +27 -25
- package/dist/components/PasteButton/index.d.ts +1 -1
- package/dist/components/PhoneField/CountryListItem.js +34 -33
- package/dist/components/PhoneField/CountrySelectorButton.js +29 -27
- package/dist/components/PhoneField/GroupedCountryList.js +28 -24
- package/dist/components/PhoneField/PhoneField.d.ts +5 -9
- package/dist/components/PhoneField/PhoneField.js +79 -76
- package/dist/components/PhoneField/constants.d.ts +0 -3
- package/dist/components/PhoneField/constants.js +2 -24
- package/dist/components/PhoneField/index.d.ts +1 -1
- package/dist/components/PhoneField/utils.js +31 -20
- package/dist/components/Pill/Pill.d.ts +4 -3
- package/dist/components/Pill/Pill.js +27 -24
- package/dist/components/Pill/index.d.ts +1 -1
- package/dist/components/Progress/Progress.d.ts +6 -2
- package/dist/components/Progress/Progress.js +32 -29
- package/dist/components/Progress/index.d.ts +1 -1
- package/dist/components/RadioGroup/RadioGroup.d.ts +4 -3
- package/dist/components/RadioGroup/RadioGroup.js +31 -28
- package/dist/components/RadioGroup/RadioGroupItem.d.ts +4 -3
- package/dist/components/RadioGroup/RadioGroupItem.js +20 -19
- package/dist/components/RadioGroup/index.d.ts +2 -2
- package/dist/components/SearchField/SearchField.d.ts +4 -3
- package/dist/components/SearchField/SearchField.js +73 -67
- package/dist/components/SearchField/index.d.ts +1 -1
- package/dist/components/Select/Select.d.ts +5 -4
- package/dist/components/Select/Select.js +104 -63
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/components/Spinner/Spinner.d.ts +6 -2
- package/dist/components/Spinner/Spinner.js +37 -34
- package/dist/components/Spinner/index.d.ts +1 -1
- package/dist/components/Switch/Switch.d.ts +4 -3
- package/dist/components/Switch/Switch.js +21 -19
- package/dist/components/Switch/index.d.ts +1 -1
- package/dist/components/Tabs/Tabs.js +42 -37
- package/dist/components/Tabs/index.d.ts +2 -2
- package/dist/components/TextArea/TextArea.d.ts +9 -4
- package/dist/components/TextArea/TextArea.js +70 -49
- package/dist/components/TextArea/index.d.ts +1 -1
- package/dist/components/Toast/Toast.js +47 -44
- package/dist/components/Toast/Toaster.d.ts +5 -1
- package/dist/components/Toast/Toaster.js +10 -9
- package/dist/components/Toast/index.d.ts +3 -3
- package/dist/components/Toast/use-toast.d.ts +2 -10
- package/dist/components/Toast/use-toast.js +99 -67
- package/dist/components/ToggleGroup/ToggleGroup.js +27 -18
- package/dist/components/ToggleGroup/index.d.ts +1 -0
- package/dist/components/Token/Token.d.ts +3 -2
- package/dist/components/Token/Token.js +11 -11
- package/dist/components/Token/icons/btc.js +8 -8
- package/dist/components/Token/icons/dai.js +8 -8
- package/dist/components/Token/icons/doge.d.ts +3 -0
- package/dist/components/Token/icons/doge.js +29 -0
- package/dist/components/Token/icons/eth.js +8 -8
- package/dist/components/Token/icons/index.d.ts +5 -0
- package/dist/components/Token/icons/index.js +22 -12
- package/dist/components/Token/icons/link.d.ts +3 -0
- package/dist/components/Token/icons/link.js +27 -0
- package/dist/components/Token/icons/sol.d.ts +3 -0
- package/dist/components/Token/icons/sol.js +93 -0
- package/dist/components/Token/icons/sui.d.ts +3 -0
- package/dist/components/Token/icons/sui.js +29 -0
- package/dist/components/Token/icons/usdc.js +10 -10
- package/dist/components/Token/icons/usdt.js +8 -8
- package/dist/components/Token/icons/utils.js +10 -9
- package/dist/components/Token/icons/wld.js +8 -8
- package/dist/components/Token/icons/xrp.d.ts +3 -0
- package/dist/components/Token/icons/xrp.js +34 -0
- package/dist/components/Token/index.d.ts +1 -1
- package/dist/components/TopBar/TopBar.d.ts +8 -2
- package/dist/components/TopBar/TopBar.js +34 -20
- package/dist/components/TopBar/index.d.ts +1 -1
- package/dist/components/Typography/Typography.d.ts +4 -3
- package/dist/components/Typography/Typography.js +27 -25
- package/dist/components/Typography/index.d.ts +1 -1
- package/dist/components/WalletAddressField/WalletAddressField.d.ts +4 -3
- package/dist/components/WalletAddressField/WalletAddressField.js +75 -65
- package/dist/components/WalletAddressField/index.d.ts +1 -1
- package/dist/globals.css +3 -0
- package/dist/index.d.ts +36 -35
- package/dist/index.js +95 -103
- package/dist/lib/constants/dropdownStyles.js +2 -2
- package/dist/lib/haptics.d.ts +28 -0
- package/dist/lib/haptics.js +45 -0
- package/dist/lib/utils.js +11 -9
- package/dist/node_modules/.pnpm/@floating-ui_core@1.6.8/node_modules/@floating-ui/core/dist/floating-ui.core.js +558 -368
- package/dist/node_modules/.pnpm/@floating-ui_dom@1.6.12/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +515 -304
- package/dist/node_modules/.pnpm/@floating-ui_react-dom@2.1.2_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +258 -171
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.8/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +137 -102
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.8/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +110 -86
- package/dist/node_modules/.pnpm/@radix-ui_number@1.1.0/node_modules/@radix-ui/number/dist/index.js +3 -3
- package/dist/node_modules/.pnpm/@radix-ui_primitive@1.1.1/node_modules/@radix-ui/primitive/dist/index.js +7 -5
- package/dist/node_modules/.pnpm/@radix-ui_react-arrow@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.1_wfj52omijboqejc6zhpwkjvyjq/node_modules/@radix-ui/react-arrow/dist/index.js +17 -16
- package/dist/node_modules/.pnpm/@radix-ui_react-checkbox@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18._5vtvszwgvdmnkk62ia2dob365m/node_modules/@radix-ui/react-checkbox/dist/index.js +122 -96
- package/dist/node_modules/.pnpm/@radix-ui_react-collection@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@1_du3umibpgknzrmwryvhzp3lgou/node_modules/@radix-ui/react-collection/dist/index.js +55 -35
- package/dist/node_modules/.pnpm/@radix-ui_react-collection@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@1_tagbd57u5fsqga6qdjecsll7fm/node_modules/@radix-ui/react-collection/dist/index.js +55 -35
- package/dist/node_modules/.pnpm/@radix-ui_react-compose-refs@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-compose-refs/dist/index.js +29 -19
- package/dist/node_modules/.pnpm/@radix-ui_react-compose-refs@1.1.2_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-compose-refs/dist/index.js +35 -0
- package/dist/node_modules/.pnpm/@radix-ui_react-context@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-context/dist/index.js +64 -53
- package/dist/node_modules/.pnpm/@radix-ui_react-dialog@1.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._vurlugjqrhlu53o6edaj3yx2bq/node_modules/@radix-ui/react-dialog/dist/index.js +274 -195
- package/dist/node_modules/.pnpm/@radix-ui_react-direction@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-direction/dist/index.js +6 -6
- package/dist/node_modules/.pnpm/@radix-ui_react-dismissable-layer@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types__ejthwt4vwbnzwtfufv7q3bddiy/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +182 -97
- package/dist/node_modules/.pnpm/@radix-ui_react-dismissable-layer@1.1.5_@types_react-dom@18.3.5_@types_react@18.3.18__@types__nitdfoqpcbroetgllwgz3is5ai/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +186 -100
- package/dist/node_modules/.pnpm/@radix-ui_react-focus-guards@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-focus-guards/dist/index.js +23 -11
- package/dist/node_modules/.pnpm/@radix-ui_react-focus-scope@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@_4owg5o3kd7femmpae5yic5inii/node_modules/@radix-ui/react-focus-scope/dist/index.js +170 -99
- package/dist/node_modules/.pnpm/@radix-ui_react-form@0.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.18_z32yjmfa36dn2egycaeb5u52lm/node_modules/@radix-ui/react-form/dist/index.js +365 -234
- package/dist/node_modules/.pnpm/@radix-ui_react-id@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-id/dist/index.js +11 -10
- package/dist/node_modules/.pnpm/@radix-ui_react-label@2.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.1_qr7n7ocfbwauilv6obluyms2qy/node_modules/@radix-ui/react-label/dist/index.js +21 -15
- package/dist/node_modules/.pnpm/@radix-ui_react-popper@1.2.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._z2gu7tymhfvx6ebd6lqqykecmq/node_modules/@radix-ui/react-popper/dist/index.js +206 -138
- package/dist/node_modules/.pnpm/@radix-ui_react-portal@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._jmui37rk6fvzofztyauznikgpi/node_modules/@radix-ui/react-portal/dist/index.js +15 -13
- package/dist/node_modules/.pnpm/@radix-ui_react-portal@1.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._ulc3jfxcmrz2rfz7bui53djdtu/node_modules/@radix-ui/react-portal/dist/index.js +15 -13
- package/dist/node_modules/.pnpm/@radix-ui_react-presence@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18._pqwkltkxenlrsgmgun6icjiigu/node_modules/@radix-ui/react-presence/dist/index.js +104 -46
- package/dist/node_modules/.pnpm/@radix-ui_react-primitive@2.0.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18_sspjpiczol7qxzbuuyfihuep4u/node_modules/@radix-ui/react-primitive/dist/index.js +20 -14
- package/dist/node_modules/.pnpm/@radix-ui_react-primitive@2.0.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18_sejcxqoscaweil2bvgwwavaoha/node_modules/@radix-ui/react-primitive/dist/index.js +20 -14
- package/dist/node_modules/.pnpm/@radix-ui_react-primitive@2.0.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18_ecf5vqfgocrxupsewlhf3pl374/node_modules/@radix-ui/react-primitive/dist/index.js +38 -0
- package/dist/node_modules/.pnpm/@radix-ui_react-progress@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18._wpsg2ubedou6txnsnvgmus4txq/node_modules/@radix-ui/react-progress/dist/index.js +71 -59
- package/dist/node_modules/.pnpm/@radix-ui_react-radio-group@1.2.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@_2u6lfd2xt65wmbxn7lgvaxqbmy/node_modules/@radix-ui/react-radio-group/dist/index.js +211 -161
- package/dist/node_modules/.pnpm/@radix-ui_react-roving-focus@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_bkbd3syfptkiebtjifbhjosaba/node_modules/@radix-ui/react-roving-focus/dist/index.js +176 -132
- package/dist/node_modules/.pnpm/@radix-ui_react-roving-focus@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_ki7uy4u3diz5446cqygvbjwuge/node_modules/@radix-ui/react-roving-focus/dist/index.js +176 -132
- package/dist/node_modules/.pnpm/@radix-ui_react-select@2.1.4_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._atdh45n5c7sked5b6tbwgdz7re/node_modules/@radix-ui/react-select/dist/index.js +938 -607
- package/dist/node_modules/.pnpm/@radix-ui_react-slot@1.1.1_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js +70 -36
- package/dist/node_modules/.pnpm/@radix-ui_react-slot@1.1.2_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js +72 -34
- package/dist/node_modules/.pnpm/@radix-ui_react-slot@1.2.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-slot/dist/index.js +88 -0
- package/dist/node_modules/.pnpm/@radix-ui_react-switch@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._udl6ccyllphugejc6sszfrese4/node_modules/@radix-ui/react-switch/dist/index.js +104 -81
- package/dist/node_modules/.pnpm/@radix-ui_react-toast@1.2.6_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.1_mux33mveszkw5z6iia6acnivvy/node_modules/@radix-ui/react-toast/dist/index.js +517 -323
- package/dist/node_modules/.pnpm/@radix-ui_react-toggle-group@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react_3smwloudr6a3igss4kifyxcwju/node_modules/@radix-ui/react-toggle-group/dist/index.js +139 -105
- package/dist/node_modules/.pnpm/@radix-ui_react-toggle@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3._yiv2ptaqcv244n5f7zfldmgupm/node_modules/@radix-ui/react-toggle/dist/index.js +25 -21
- package/dist/node_modules/.pnpm/@radix-ui_react-use-callback-ref@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +10 -9
- package/dist/node_modules/.pnpm/@radix-ui_react-use-controllable-state@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +36 -23
- package/dist/node_modules/.pnpm/@radix-ui_react-use-escape-keydown@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +13 -10
- package/dist/node_modules/.pnpm/@radix-ui_react-use-layout-effect@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +3 -3
- package/dist/node_modules/.pnpm/@radix-ui_react-use-previous@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-previous/dist/index.js +11 -5
- package/dist/node_modules/.pnpm/@radix-ui_react-use-size@1.1.0_@types_react@18.3.18_react@18.3.1/node_modules/@radix-ui/react-use-size/dist/index.js +34 -22
- package/dist/node_modules/.pnpm/@radix-ui_react-visually-hidden@1.1.1_@types_react-dom@18.3.5_@types_react@18.3.18__@types_re_m7thze522i3jfpb2tnge6dybgi/node_modules/@radix-ui/react-visually-hidden/dist/index.js +29 -26
- package/dist/node_modules/.pnpm/@radix-ui_react-visually-hidden@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_re_omyrydx3gc2oidaiqb4gsovieq/node_modules/@radix-ui/react-visually-hidden/dist/index.js +29 -26
- package/dist/node_modules/.pnpm/@radix-ui_react-visually-hidden@1.1.3_@types_react-dom@18.3.5_@types_react@18.3.18__@types_re_cidkwodbmpmiwtvvmizcw56fem/node_modules/@radix-ui/react-visually-hidden/dist/index.js +33 -0
- package/dist/node_modules/.pnpm/@uidotdev_usehooks@2.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@uidotdev/usehooks/index.js +53 -26
- package/dist/node_modules/.pnpm/aria-hidden@1.2.4/node_modules/aria-hidden/dist/es2015/index.js +111 -41
- package/dist/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.js +40 -30
- package/dist/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js +13 -13
- package/dist/node_modules/.pnpm/get-nonce@1.0.1/node_modules/get-nonce/dist/es2015/index.js +5 -3
- package/dist/node_modules/.pnpm/input-otp@1.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/input-otp/dist/index.js +152 -145
- package/dist/node_modules/.pnpm/react-international-phone@4.4.0_react@18.3.1/node_modules/react-international-phone/dist/index.js +291 -271
- package/dist/node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/component.js +41 -65
- package/dist/node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +8 -5
- package/dist/node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +28 -16
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/Combination.js +8 -8
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +157 -95
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/UI.js +31 -24
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +12 -9
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +86 -48
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/medium.js +3 -3
- package/dist/node_modules/.pnpm/react-remove-scroll@2.6.2_@types_react@18.3.18_react@18.3.1/node_modules/react-remove-scroll/dist/es2015/sidecar.js +5 -5
- package/dist/node_modules/.pnpm/react-style-singleton@2.2.3_@types_react@18.3.18_react@18.3.1/node_modules/react-style-singleton/dist/es2015/component.js +9 -7
- package/dist/node_modules/.pnpm/react-style-singleton@2.2.3_@types_react@18.3.18_react@18.3.1/node_modules/react-style-singleton/dist/es2015/hook.js +11 -10
- package/dist/node_modules/.pnpm/react-style-singleton@2.2.3_@types_react@18.3.18_react@18.3.1/node_modules/react-style-singleton/dist/es2015/singleton.js +35 -17
- package/dist/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.js +625 -424
- package/dist/node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/public/create-plugin.js +21 -17
- package/dist/node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/util/createPlugin.js +28 -21
- package/dist/node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/plugin.js +10 -8
- package/dist/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.js +33 -21
- package/dist/node_modules/.pnpm/use-callback-ref@1.3.3_@types_react@18.3.18_react@18.3.1/node_modules/use-callback-ref/dist/es2015/assignRef.js +8 -3
- package/dist/node_modules/.pnpm/use-callback-ref@1.3.3_@types_react@18.3.18_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +28 -19
- package/dist/node_modules/.pnpm/use-callback-ref@1.3.3_@types_react@18.3.18_react@18.3.1/node_modules/use-callback-ref/dist/es2015/useRef.js +15 -11
- package/dist/node_modules/.pnpm/use-sidecar@1.1.3_@types_react@18.3.18_react@18.3.1/node_modules/use-sidecar/dist/es2015/exports.js +15 -12
- package/dist/node_modules/.pnpm/use-sidecar@1.1.3_@types_react@18.3.18_react@18.3.1/node_modules/use-sidecar/dist/es2015/medium.js +64 -43
- package/dist/node_modules/.pnpm/vaul@1.1.2_@types_react-dom@18.3.5_@types_react@18.3.18__@types_react@18.3.18_react-dom@18.3._7iqkcrcg5qjc3n2ixm6rnrnx3e/node_modules/vaul/dist/index.js +1205 -764
- package/dist/tailwind/index.d.ts +36 -0
- package/dist/{tailwind/index.js → tailwind.js} +119 -20
- package/package.json +88 -84
- package/dist/_virtual/dynamic-import-helper.js +0 -16
- package/dist/components/AlertDialog/index.js +0 -12
- package/dist/components/AlertDialog/types.js +0 -1
- package/dist/components/BottomBar/index.js +0 -4
- package/dist/components/BulletList/index.js +0 -4
- package/dist/components/BulletListItem/BulletListItem.d.ts +0 -7
- package/dist/components/BulletListItem/BulletListItem.js +0 -23
- package/dist/components/BulletListItem/index.d.ts +0 -1
- package/dist/components/BulletListItem/index.js +0 -4
- package/dist/components/BulletPoint/BulletPoint.d.ts +0 -6
- package/dist/components/BulletPoint/BulletPoint.js +0 -22
- package/dist/components/BulletPoint/index.d.ts +0 -1
- package/dist/components/BulletPoint/index.js +0 -1
- package/dist/components/Button/index.js +0 -4
- package/dist/components/Checkbox/index.js +0 -4
- package/dist/components/Chip/index.js +0 -4
- package/dist/components/CircularIcon/index.js +0 -4
- package/dist/components/ClearButton/index.js +0 -4
- package/dist/components/ColorPicker/index.js +0 -5
- package/dist/components/CountryDrawer/index.js +0 -4
- package/dist/components/Drawer/index.js +0 -9
- package/dist/components/Drawer/types.js +0 -1
- package/dist/components/Flag/LazyFlag.d.ts +0 -13
- package/dist/components/Flag/LazyFlag.js +0 -25
- package/dist/components/Flag/flag-components/ad.d.ts +0 -3
- package/dist/components/Flag/flag-components/ad.js +0 -56
- package/dist/components/Flag/flag-components/ae.d.ts +0 -3
- package/dist/components/Flag/flag-components/ae.js +0 -48
- package/dist/components/Flag/flag-components/af.d.ts +0 -3
- package/dist/components/Flag/flag-components/af.js +0 -55
- package/dist/components/Flag/flag-components/ag.d.ts +0 -3
- package/dist/components/Flag/flag-components/ag.js +0 -62
- package/dist/components/Flag/flag-components/ai.d.ts +0 -3
- package/dist/components/Flag/flag-components/ai.js +0 -90
- package/dist/components/Flag/flag-components/al.d.ts +0 -3
- package/dist/components/Flag/flag-components/al.js +0 -34
- package/dist/components/Flag/flag-components/am.d.ts +0 -3
- package/dist/components/Flag/flag-components/am.js +0 -41
- package/dist/components/Flag/flag-components/ao.d.ts +0 -3
- package/dist/components/Flag/flag-components/ao.js +0 -55
- package/dist/components/Flag/flag-components/ar.d.ts +0 -3
- package/dist/components/Flag/flag-components/ar.js +0 -48
- package/dist/components/Flag/flag-components/as.d.ts +0 -3
- package/dist/components/Flag/flag-components/as.js +0 -62
- package/dist/components/Flag/flag-components/at.d.ts +0 -3
- package/dist/components/Flag/flag-components/at.js +0 -41
- package/dist/components/Flag/flag-components/au.d.ts +0 -3
- package/dist/components/Flag/flag-components/au.js +0 -98
- package/dist/components/Flag/flag-components/aw.d.ts +0 -3
- package/dist/components/Flag/flag-components/aw.js +0 -62
- package/dist/components/Flag/flag-components/ax.d.ts +0 -3
- package/dist/components/Flag/flag-components/ax.js +0 -62
- package/dist/components/Flag/flag-components/az.d.ts +0 -3
- package/dist/components/Flag/flag-components/az.js +0 -55
- package/dist/components/Flag/flag-components/ba.d.ts +0 -3
- package/dist/components/Flag/flag-components/ba.js +0 -48
- package/dist/components/Flag/flag-components/bb.d.ts +0 -3
- package/dist/components/Flag/flag-components/bb.js +0 -48
- package/dist/components/Flag/flag-components/bd.d.ts +0 -3
- package/dist/components/Flag/flag-components/bd.js +0 -34
- package/dist/components/Flag/flag-components/be.d.ts +0 -3
- package/dist/components/Flag/flag-components/be.js +0 -41
- package/dist/components/Flag/flag-components/bf.d.ts +0 -3
- package/dist/components/Flag/flag-components/bf.js +0 -49
- package/dist/components/Flag/flag-components/bg.d.ts +0 -3
- package/dist/components/Flag/flag-components/bg.js +0 -41
- package/dist/components/Flag/flag-components/bh.d.ts +0 -3
- package/dist/components/Flag/flag-components/bh.js +0 -34
- package/dist/components/Flag/flag-components/bi.d.ts +0 -3
- package/dist/components/Flag/flag-components/bi.js +0 -83
- package/dist/components/Flag/flag-components/bj.d.ts +0 -3
- package/dist/components/Flag/flag-components/bj.js +0 -41
- package/dist/components/Flag/flag-components/bl.d.ts +0 -3
- package/dist/components/Flag/flag-components/bl.js +0 -71
- package/dist/components/Flag/flag-components/bm.d.ts +0 -3
- package/dist/components/Flag/flag-components/bm.js +0 -85
- package/dist/components/Flag/flag-components/bn.d.ts +0 -3
- package/dist/components/Flag/flag-components/bn.js +0 -66
- package/dist/components/Flag/flag-components/bo.d.ts +0 -3
- package/dist/components/Flag/flag-components/bo.js +0 -41
- package/dist/components/Flag/flag-components/bq.d.ts +0 -3
- package/dist/components/Flag/flag-components/bq.js +0 -55
- package/dist/components/Flag/flag-components/br.d.ts +0 -3
- package/dist/components/Flag/flag-components/br.js +0 -55
- package/dist/components/Flag/flag-components/bs.d.ts +0 -3
- package/dist/components/Flag/flag-components/bs.js +0 -48
- package/dist/components/Flag/flag-components/bt.d.ts +0 -3
- package/dist/components/Flag/flag-components/bt.js +0 -48
- package/dist/components/Flag/flag-components/bw.d.ts +0 -3
- package/dist/components/Flag/flag-components/bw.js +0 -48
- package/dist/components/Flag/flag-components/by.d.ts +0 -3
- package/dist/components/Flag/flag-components/by.js +0 -83
- package/dist/components/Flag/flag-components/bz.d.ts +0 -3
- package/dist/components/Flag/flag-components/bz.js +0 -70
- package/dist/components/Flag/flag-components/ca.d.ts +0 -3
- package/dist/components/Flag/flag-components/ca.js +0 -48
- package/dist/components/Flag/flag-components/cc.d.ts +0 -3
- package/dist/components/Flag/flag-components/cc.js +0 -90
- package/dist/components/Flag/flag-components/cd.d.ts +0 -3
- package/dist/components/Flag/flag-components/cd.js +0 -55
- package/dist/components/Flag/flag-components/cf.d.ts +0 -3
- package/dist/components/Flag/flag-components/cf.js +0 -85
- package/dist/components/Flag/flag-components/cg.d.ts +0 -3
- package/dist/components/Flag/flag-components/cg.js +0 -41
- package/dist/components/Flag/flag-components/ch.d.ts +0 -3
- package/dist/components/Flag/flag-components/ch.js +0 -34
- package/dist/components/Flag/flag-components/ci.d.ts +0 -3
- package/dist/components/Flag/flag-components/ci.js +0 -41
- package/dist/components/Flag/flag-components/ck.d.ts +0 -3
- package/dist/components/Flag/flag-components/ck.js +0 -111
- package/dist/components/Flag/flag-components/cl.d.ts +0 -3
- package/dist/components/Flag/flag-components/cl.js +0 -48
- package/dist/components/Flag/flag-components/cm.d.ts +0 -3
- package/dist/components/Flag/flag-components/cm.js +0 -48
- package/dist/components/Flag/flag-components/cn.d.ts +0 -3
- package/dist/components/Flag/flag-components/cn.js +0 -62
- package/dist/components/Flag/flag-components/co.d.ts +0 -3
- package/dist/components/Flag/flag-components/co.js +0 -41
- package/dist/components/Flag/flag-components/cr.d.ts +0 -3
- package/dist/components/Flag/flag-components/cr.js +0 -48
- package/dist/components/Flag/flag-components/cu.d.ts +0 -3
- package/dist/components/Flag/flag-components/cu.js +0 -63
- package/dist/components/Flag/flag-components/cv.d.ts +0 -3
- package/dist/components/Flag/flag-components/cv.js +0 -118
- package/dist/components/Flag/flag-components/cw.d.ts +0 -3
- package/dist/components/Flag/flag-components/cw.js +0 -55
- package/dist/components/Flag/flag-components/cy.d.ts +0 -3
- package/dist/components/Flag/flag-components/cy.js +0 -41
- package/dist/components/Flag/flag-components/cz.d.ts +0 -3
- package/dist/components/Flag/flag-components/cz.js +0 -41
- package/dist/components/Flag/flag-components/de.d.ts +0 -3
- package/dist/components/Flag/flag-components/de.js +0 -41
- package/dist/components/Flag/flag-components/dj.d.ts +0 -3
- package/dist/components/Flag/flag-components/dj.js +0 -48
- package/dist/components/Flag/flag-components/dk.d.ts +0 -3
- package/dist/components/Flag/flag-components/dk.js +0 -55
- package/dist/components/Flag/flag-components/dm.d.ts +0 -3
- package/dist/components/Flag/flag-components/dm.js +0 -195
- package/dist/components/Flag/flag-components/do.d.ts +0 -3
- package/dist/components/Flag/flag-components/do.js +0 -76
- package/dist/components/Flag/flag-components/dz.d.ts +0 -3
- package/dist/components/Flag/flag-components/dz.js +0 -48
- package/dist/components/Flag/flag-components/ec.d.ts +0 -3
- package/dist/components/Flag/flag-components/ec.js +0 -62
- package/dist/components/Flag/flag-components/ee.d.ts +0 -3
- package/dist/components/Flag/flag-components/ee.js +0 -41
- package/dist/components/Flag/flag-components/eg.d.ts +0 -3
- package/dist/components/Flag/flag-components/eg.js +0 -48
- package/dist/components/Flag/flag-components/er.d.ts +0 -3
- package/dist/components/Flag/flag-components/er.js +0 -48
- package/dist/components/Flag/flag-components/es.d.ts +0 -3
- package/dist/components/Flag/flag-components/es.js +0 -41
- package/dist/components/Flag/flag-components/et.d.ts +0 -3
- package/dist/components/Flag/flag-components/et.js +0 -62
- package/dist/components/Flag/flag-components/eu.d.ts +0 -3
- package/dist/components/Flag/flag-components/eu.js +0 -83
- package/dist/components/Flag/flag-components/fi.d.ts +0 -3
- package/dist/components/Flag/flag-components/fi.js +0 -34
- package/dist/components/Flag/flag-components/fj.d.ts +0 -3
- package/dist/components/Flag/flag-components/fj.js +0 -77
- package/dist/components/Flag/flag-components/fk.d.ts +0 -3
- package/dist/components/Flag/flag-components/fk.js +0 -83
- package/dist/components/Flag/flag-components/fm.d.ts +0 -3
- package/dist/components/Flag/flag-components/fm.js +0 -55
- package/dist/components/Flag/flag-components/fo.d.ts +0 -3
- package/dist/components/Flag/flag-components/fo.js +0 -41
- package/dist/components/Flag/flag-components/fr.d.ts +0 -3
- package/dist/components/Flag/flag-components/fr.js +0 -41
- package/dist/components/Flag/flag-components/ga.d.ts +0 -3
- package/dist/components/Flag/flag-components/ga.js +0 -41
- package/dist/components/Flag/flag-components/gb.d.ts +0 -3
- package/dist/components/Flag/flag-components/gb.js +0 -118
- package/dist/components/Flag/flag-components/gd.d.ts +0 -3
- package/dist/components/Flag/flag-components/gd.js +0 -140
- package/dist/components/Flag/flag-components/ge.d.ts +0 -3
- package/dist/components/Flag/flag-components/ge.js +0 -62
- package/dist/components/Flag/flag-components/gg.d.ts +0 -3
- package/dist/components/Flag/flag-components/gg.js +0 -41
- package/dist/components/Flag/flag-components/gh.d.ts +0 -3
- package/dist/components/Flag/flag-components/gh.js +0 -48
- package/dist/components/Flag/flag-components/gi.d.ts +0 -3
- package/dist/components/Flag/flag-components/gi.js +0 -48
- package/dist/components/Flag/flag-components/gl.d.ts +0 -3
- package/dist/components/Flag/flag-components/gl.js +0 -48
- package/dist/components/Flag/flag-components/gm.d.ts +0 -3
- package/dist/components/Flag/flag-components/gm.js +0 -48
- package/dist/components/Flag/flag-components/gn.d.ts +0 -3
- package/dist/components/Flag/flag-components/gn.js +0 -41
- package/dist/components/Flag/flag-components/gp.d.ts +0 -3
- package/dist/components/Flag/flag-components/gp.js +0 -41
- package/dist/components/Flag/flag-components/gq.d.ts +0 -3
- package/dist/components/Flag/flag-components/gq.js +0 -63
- package/dist/components/Flag/flag-components/gr.d.ts +0 -3
- package/dist/components/Flag/flag-components/gr.js +0 -62
- package/dist/components/Flag/flag-components/gt.d.ts +0 -3
- package/dist/components/Flag/flag-components/gt.js +0 -55
- package/dist/components/Flag/flag-components/gu.d.ts +0 -3
- package/dist/components/Flag/flag-components/gu.js +0 -71
- package/dist/components/Flag/flag-components/gw.d.ts +0 -3
- package/dist/components/Flag/flag-components/gw.js +0 -55
- package/dist/components/Flag/flag-components/gy.d.ts +0 -3
- package/dist/components/Flag/flag-components/gy.js +0 -62
- package/dist/components/Flag/flag-components/hk.d.ts +0 -3
- package/dist/components/Flag/flag-components/hk.js +0 -62
- package/dist/components/Flag/flag-components/hn.d.ts +0 -3
- package/dist/components/Flag/flag-components/hn.js +0 -76
- package/dist/components/Flag/flag-components/hr.d.ts +0 -3
- package/dist/components/Flag/flag-components/hr.js +0 -108
- package/dist/components/Flag/flag-components/ht.d.ts +0 -3
- package/dist/components/Flag/flag-components/ht.js +0 -64
- package/dist/components/Flag/flag-components/hu.d.ts +0 -3
- package/dist/components/Flag/flag-components/hu.js +0 -41
- package/dist/components/Flag/flag-components/id.d.ts +0 -3
- package/dist/components/Flag/flag-components/id.js +0 -34
- package/dist/components/Flag/flag-components/ie.d.ts +0 -3
- package/dist/components/Flag/flag-components/ie.js +0 -41
- package/dist/components/Flag/flag-components/il.d.ts +0 -3
- package/dist/components/Flag/flag-components/il.js +0 -48
- package/dist/components/Flag/flag-components/im.d.ts +0 -3
- package/dist/components/Flag/flag-components/im.js +0 -34
- package/dist/components/Flag/flag-components/in.d.ts +0 -3
- package/dist/components/Flag/flag-components/in.js +0 -62
- package/dist/components/Flag/flag-components/index.d.ts +0 -232
- package/dist/components/Flag/flag-components/index.js +0 -466
- package/dist/components/Flag/flag-components/io.d.ts +0 -3
- package/dist/components/Flag/flag-components/io.js +0 -136
- package/dist/components/Flag/flag-components/iq.d.ts +0 -3
- package/dist/components/Flag/flag-components/iq.js +0 -62
- package/dist/components/Flag/flag-components/ir.d.ts +0 -3
- package/dist/components/Flag/flag-components/ir.js +0 -48
- package/dist/components/Flag/flag-components/is.d.ts +0 -3
- package/dist/components/Flag/flag-components/is.js +0 -62
- package/dist/components/Flag/flag-components/it.d.ts +0 -3
- package/dist/components/Flag/flag-components/it.js +0 -41
- package/dist/components/Flag/flag-components/je.d.ts +0 -3
- package/dist/components/Flag/flag-components/je.js +0 -48
- package/dist/components/Flag/flag-components/jm.d.ts +0 -3
- package/dist/components/Flag/flag-components/jm.js +0 -55
- package/dist/components/Flag/flag-components/jo.d.ts +0 -3
- package/dist/components/Flag/flag-components/jo.js +0 -55
- package/dist/components/Flag/flag-components/jp.d.ts +0 -3
- package/dist/components/Flag/flag-components/jp.js +0 -34
- package/dist/components/Flag/flag-components/ke.d.ts +0 -3
- package/dist/components/Flag/flag-components/ke.js +0 -90
- package/dist/components/Flag/flag-components/kg.d.ts +0 -3
- package/dist/components/Flag/flag-components/kg.js +0 -69
- package/dist/components/Flag/flag-components/kh.d.ts +0 -3
- package/dist/components/Flag/flag-components/kh.js +0 -48
- package/dist/components/Flag/flag-components/ki.d.ts +0 -3
- package/dist/components/Flag/flag-components/ki.js +0 -76
- package/dist/components/Flag/flag-components/km.d.ts +0 -3
- package/dist/components/Flag/flag-components/km.js +0 -90
- package/dist/components/Flag/flag-components/kp.d.ts +0 -3
- package/dist/components/Flag/flag-components/kp.js +0 -62
- package/dist/components/Flag/flag-components/kr.d.ts +0 -3
- package/dist/components/Flag/flag-components/kr.js +0 -167
- package/dist/components/Flag/flag-components/kw.d.ts +0 -3
- package/dist/components/Flag/flag-components/kw.js +0 -48
- package/dist/components/Flag/flag-components/ky.d.ts +0 -3
- package/dist/components/Flag/flag-components/ky.js +0 -91
- package/dist/components/Flag/flag-components/kz.d.ts +0 -3
- package/dist/components/Flag/flag-components/kz.js +0 -48
- package/dist/components/Flag/flag-components/la.d.ts +0 -3
- package/dist/components/Flag/flag-components/la.js +0 -48
- package/dist/components/Flag/flag-components/lb.d.ts +0 -3
- package/dist/components/Flag/flag-components/lb.js +0 -48
- package/dist/components/Flag/flag-components/lc.d.ts +0 -3
- package/dist/components/Flag/flag-components/lc.js +0 -30
- package/dist/components/Flag/flag-components/li.d.ts +0 -3
- package/dist/components/Flag/flag-components/li.js +0 -41
- package/dist/components/Flag/flag-components/lk.d.ts +0 -3
- package/dist/components/Flag/flag-components/lk.js +0 -50
- package/dist/components/Flag/flag-components/lr.d.ts +0 -3
- package/dist/components/Flag/flag-components/lr.js +0 -118
- package/dist/components/Flag/flag-components/ls.d.ts +0 -3
- package/dist/components/Flag/flag-components/ls.js +0 -48
- package/dist/components/Flag/flag-components/lt.d.ts +0 -3
- package/dist/components/Flag/flag-components/lt.js +0 -41
- package/dist/components/Flag/flag-components/lu.d.ts +0 -3
- package/dist/components/Flag/flag-components/lu.js +0 -41
- package/dist/components/Flag/flag-components/lv.d.ts +0 -3
- package/dist/components/Flag/flag-components/lv.js +0 -41
- package/dist/components/Flag/flag-components/ly.d.ts +0 -3
- package/dist/components/Flag/flag-components/ly.js +0 -55
- package/dist/components/Flag/flag-components/ma.d.ts +0 -3
- package/dist/components/Flag/flag-components/ma.js +0 -34
- package/dist/components/Flag/flag-components/mc.d.ts +0 -3
- package/dist/components/Flag/flag-components/mc.js +0 -34
- package/dist/components/Flag/flag-components/md.d.ts +0 -3
- package/dist/components/Flag/flag-components/md.js +0 -56
- package/dist/components/Flag/flag-components/me.d.ts +0 -3
- package/dist/components/Flag/flag-components/me.js +0 -56
- package/dist/components/Flag/flag-components/mg.d.ts +0 -3
- package/dist/components/Flag/flag-components/mg.js +0 -41
- package/dist/components/Flag/flag-components/mh.d.ts +0 -3
- package/dist/components/Flag/flag-components/mh.js +0 -48
- package/dist/components/Flag/flag-components/mk.d.ts +0 -3
- package/dist/components/Flag/flag-components/mk.js +0 -97
- package/dist/components/Flag/flag-components/ml.d.ts +0 -3
- package/dist/components/Flag/flag-components/ml.js +0 -41
- package/dist/components/Flag/flag-components/mm.d.ts +0 -3
- package/dist/components/Flag/flag-components/mm.js +0 -48
- package/dist/components/Flag/flag-components/mn.d.ts +0 -3
- package/dist/components/Flag/flag-components/mn.js +0 -66
- package/dist/components/Flag/flag-components/mo.d.ts +0 -3
- package/dist/components/Flag/flag-components/mo.js +0 -83
- package/dist/components/Flag/flag-components/mp.d.ts +0 -3
- package/dist/components/Flag/flag-components/mp.js +0 -55
- package/dist/components/Flag/flag-components/mq.d.ts +0 -3
- package/dist/components/Flag/flag-components/mq.js +0 -83
- package/dist/components/Flag/flag-components/mr.d.ts +0 -3
- package/dist/components/Flag/flag-components/mr.js +0 -41
- package/dist/components/Flag/flag-components/ms.d.ts +0 -3
- package/dist/components/Flag/flag-components/ms.js +0 -76
- package/dist/components/Flag/flag-components/mt.d.ts +0 -3
- package/dist/components/Flag/flag-components/mt.js +0 -41
- package/dist/components/Flag/flag-components/mu.d.ts +0 -3
- package/dist/components/Flag/flag-components/mu.js +0 -48
- package/dist/components/Flag/flag-components/mv.d.ts +0 -3
- package/dist/components/Flag/flag-components/mv.js +0 -35
- package/dist/components/Flag/flag-components/mw.d.ts +0 -3
- package/dist/components/Flag/flag-components/mw.js +0 -48
- package/dist/components/Flag/flag-components/mx.d.ts +0 -3
- package/dist/components/Flag/flag-components/mx.js +0 -55
- package/dist/components/Flag/flag-components/my.d.ts +0 -3
- package/dist/components/Flag/flag-components/my.js +0 -76
- package/dist/components/Flag/flag-components/mz.d.ts +0 -3
- package/dist/components/Flag/flag-components/mz.js +0 -70
- package/dist/components/Flag/flag-components/na.d.ts +0 -3
- package/dist/components/Flag/flag-components/na.js +0 -55
- package/dist/components/Flag/flag-components/ne.d.ts +0 -3
- package/dist/components/Flag/flag-components/ne.js +0 -48
- package/dist/components/Flag/flag-components/nf.d.ts +0 -3
- package/dist/components/Flag/flag-components/nf.js +0 -48
- package/dist/components/Flag/flag-components/ng.d.ts +0 -3
- package/dist/components/Flag/flag-components/ng.js +0 -41
- package/dist/components/Flag/flag-components/ni.d.ts +0 -3
- package/dist/components/Flag/flag-components/ni.js +0 -63
- package/dist/components/Flag/flag-components/nl.d.ts +0 -3
- package/dist/components/Flag/flag-components/nl.js +0 -41
- package/dist/components/Flag/flag-components/no.d.ts +0 -3
- package/dist/components/Flag/flag-components/no.js +0 -62
- package/dist/components/Flag/flag-components/np.d.ts +0 -3
- package/dist/components/Flag/flag-components/np.js +0 -63
- package/dist/components/Flag/flag-components/nr.d.ts +0 -3
- package/dist/components/Flag/flag-components/nr.js +0 -55
- package/dist/components/Flag/flag-components/nu.d.ts +0 -3
- package/dist/components/Flag/flag-components/nu.js +0 -91
- package/dist/components/Flag/flag-components/nz.d.ts +0 -3
- package/dist/components/Flag/flag-components/nz.js +0 -83
- package/dist/components/Flag/flag-components/om.d.ts +0 -3
- package/dist/components/Flag/flag-components/om.js +0 -62
- package/dist/components/Flag/flag-components/pa.d.ts +0 -3
- package/dist/components/Flag/flag-components/pa.js +0 -55
- package/dist/components/Flag/flag-components/pe.d.ts +0 -3
- package/dist/components/Flag/flag-components/pe.js +0 -41
- package/dist/components/Flag/flag-components/pf.d.ts +0 -3
- package/dist/components/Flag/flag-components/pf.js +0 -58
- package/dist/components/Flag/flag-components/pg.d.ts +0 -3
- package/dist/components/Flag/flag-components/pg.js +0 -76
- package/dist/components/Flag/flag-components/ph.d.ts +0 -3
- package/dist/components/Flag/flag-components/ph.js +0 -69
- package/dist/components/Flag/flag-components/pk.d.ts +0 -3
- package/dist/components/Flag/flag-components/pk.js +0 -55
- package/dist/components/Flag/flag-components/pl.d.ts +0 -3
- package/dist/components/Flag/flag-components/pl.js +0 -34
- package/dist/components/Flag/flag-components/pn.d.ts +0 -3
- package/dist/components/Flag/flag-components/pn.js +0 -83
- package/dist/components/Flag/flag-components/pr.d.ts +0 -3
- package/dist/components/Flag/flag-components/pr.js +0 -62
- package/dist/components/Flag/flag-components/ps.d.ts +0 -3
- package/dist/components/Flag/flag-components/ps.js +0 -48
- package/dist/components/Flag/flag-components/pt.d.ts +0 -3
- package/dist/components/Flag/flag-components/pt.js +0 -55
- package/dist/components/Flag/flag-components/pw.d.ts +0 -3
- package/dist/components/Flag/flag-components/pw.js +0 -34
- package/dist/components/Flag/flag-components/py.d.ts +0 -3
- package/dist/components/Flag/flag-components/py.js +0 -55
- package/dist/components/Flag/flag-components/qa.d.ts +0 -3
- package/dist/components/Flag/flag-components/qa.js +0 -34
- package/dist/components/Flag/flag-components/ro.d.ts +0 -3
- package/dist/components/Flag/flag-components/ro.js +0 -41
- package/dist/components/Flag/flag-components/rs.d.ts +0 -3
- package/dist/components/Flag/flag-components/rs.js +0 -69
- package/dist/components/Flag/flag-components/ru.d.ts +0 -3
- package/dist/components/Flag/flag-components/ru.js +0 -41
- package/dist/components/Flag/flag-components/rw.d.ts +0 -3
- package/dist/components/Flag/flag-components/rw.js +0 -48
- package/dist/components/Flag/flag-components/sa.d.ts +0 -3
- package/dist/components/Flag/flag-components/sa.js +0 -57
- package/dist/components/Flag/flag-components/sb.d.ts +0 -3
- package/dist/components/Flag/flag-components/sb.js +0 -76
- package/dist/components/Flag/flag-components/sc.d.ts +0 -3
- package/dist/components/Flag/flag-components/sc.js +0 -55
- package/dist/components/Flag/flag-components/sd.d.ts +0 -3
- package/dist/components/Flag/flag-components/sd.js +0 -48
- package/dist/components/Flag/flag-components/se.d.ts +0 -3
- package/dist/components/Flag/flag-components/se.js +0 -63
- package/dist/components/Flag/flag-components/sg.d.ts +0 -3
- package/dist/components/Flag/flag-components/sg.js +0 -76
- package/dist/components/Flag/flag-components/si.d.ts +0 -3
- package/dist/components/Flag/flag-components/si.js +0 -48
- package/dist/components/Flag/flag-components/sk.d.ts +0 -3
- package/dist/components/Flag/flag-components/sk.js +0 -69
- package/dist/components/Flag/flag-components/sl.d.ts +0 -3
- package/dist/components/Flag/flag-components/sl.js +0 -41
- package/dist/components/Flag/flag-components/sm.d.ts +0 -3
- package/dist/components/Flag/flag-components/sm.js +0 -69
- package/dist/components/Flag/flag-components/sn.d.ts +0 -3
- package/dist/components/Flag/flag-components/sn.js +0 -48
- package/dist/components/Flag/flag-components/so.d.ts +0 -3
- package/dist/components/Flag/flag-components/so.js +0 -34
- package/dist/components/Flag/flag-components/sr.d.ts +0 -3
- package/dist/components/Flag/flag-components/sr.js +0 -55
- package/dist/components/Flag/flag-components/ss.d.ts +0 -3
- package/dist/components/Flag/flag-components/ss.js +0 -62
- package/dist/components/Flag/flag-components/st.d.ts +0 -3
- package/dist/components/Flag/flag-components/st.js +0 -62
- package/dist/components/Flag/flag-components/sv.d.ts +0 -3
- package/dist/components/Flag/flag-components/sv.js +0 -56
- package/dist/components/Flag/flag-components/sx.d.ts +0 -3
- package/dist/components/Flag/flag-components/sx.js +0 -76
- package/dist/components/Flag/flag-components/sy.d.ts +0 -3
- package/dist/components/Flag/flag-components/sy.js +0 -55
- package/dist/components/Flag/flag-components/sz.d.ts +0 -3
- package/dist/components/Flag/flag-components/sz.js +0 -80
- package/dist/components/Flag/flag-components/tc.d.ts +0 -3
- package/dist/components/Flag/flag-components/tc.js +0 -90
- package/dist/components/Flag/flag-components/td.d.ts +0 -3
- package/dist/components/Flag/flag-components/td.js +0 -41
- package/dist/components/Flag/flag-components/tg.d.ts +0 -3
- package/dist/components/Flag/flag-components/tg.js +0 -62
- package/dist/components/Flag/flag-components/th.d.ts +0 -3
- package/dist/components/Flag/flag-components/th.js +0 -48
- package/dist/components/Flag/flag-components/tj.d.ts +0 -3
- package/dist/components/Flag/flag-components/tj.js +0 -97
- package/dist/components/Flag/flag-components/tk.d.ts +0 -3
- package/dist/components/Flag/flag-components/tk.js +0 -62
- package/dist/components/Flag/flag-components/tl.d.ts +0 -3
- package/dist/components/Flag/flag-components/tl.js +0 -48
- package/dist/components/Flag/flag-components/tm.d.ts +0 -3
- package/dist/components/Flag/flag-components/tm.js +0 -161
- package/dist/components/Flag/flag-components/tn.d.ts +0 -3
- package/dist/components/Flag/flag-components/tn.js +0 -48
- package/dist/components/Flag/flag-components/to.d.ts +0 -3
- package/dist/components/Flag/flag-components/to.js +0 -41
- package/dist/components/Flag/flag-components/tr.d.ts +0 -3
- package/dist/components/Flag/flag-components/tr.js +0 -41
- package/dist/components/Flag/flag-components/tt.d.ts +0 -3
- package/dist/components/Flag/flag-components/tt.js +0 -48
- package/dist/components/Flag/flag-components/tv.d.ts +0 -3
- package/dist/components/Flag/flag-components/tv.js +0 -120
- package/dist/components/Flag/flag-components/tw.d.ts +0 -3
- package/dist/components/Flag/flag-components/tw.js +0 -55
- package/dist/components/Flag/flag-components/tz.d.ts +0 -3
- package/dist/components/Flag/flag-components/tz.js +0 -48
- package/dist/components/Flag/flag-components/ua.d.ts +0 -3
- package/dist/components/Flag/flag-components/ua.js +0 -34
- package/dist/components/Flag/flag-components/ug.d.ts +0 -3
- package/dist/components/Flag/flag-components/ug.js +0 -69
- package/dist/components/Flag/flag-components/us.d.ts +0 -3
- package/dist/components/Flag/flag-components/us.js +0 -62
- package/dist/components/Flag/flag-components/uy.d.ts +0 -3
- package/dist/components/Flag/flag-components/uy.js +0 -69
- package/dist/components/Flag/flag-components/uz.d.ts +0 -3
- package/dist/components/Flag/flag-components/uz.js +0 -146
- package/dist/components/Flag/flag-components/va.d.ts +0 -3
- package/dist/components/Flag/flag-components/va.js +0 -48
- package/dist/components/Flag/flag-components/vc.d.ts +0 -3
- package/dist/components/Flag/flag-components/vc.js +0 -70
- package/dist/components/Flag/flag-components/ve.d.ts +0 -3
- package/dist/components/Flag/flag-components/ve.js +0 -97
- package/dist/components/Flag/flag-components/vg.d.ts +0 -3
- package/dist/components/Flag/flag-components/vg.js +0 -83
- package/dist/components/Flag/flag-components/vn.d.ts +0 -3
- package/dist/components/Flag/flag-components/vn.js +0 -34
- package/dist/components/Flag/flag-components/vu.d.ts +0 -3
- package/dist/components/Flag/flag-components/vu.js +0 -189
- package/dist/components/Flag/flag-components/ws.d.ts +0 -3
- package/dist/components/Flag/flag-components/ws.js +0 -69
- package/dist/components/Flag/flag-components/xk.d.ts +0 -3
- package/dist/components/Flag/flag-components/xk.js +0 -76
- package/dist/components/Flag/flag-components/ye.d.ts +0 -3
- package/dist/components/Flag/flag-components/ye.js +0 -41
- package/dist/components/Flag/flag-components/za.d.ts +0 -3
- package/dist/components/Flag/flag-components/za.js +0 -62
- package/dist/components/Flag/flag-components/zm.d.ts +0 -3
- package/dist/components/Flag/flag-components/zm.js +0 -55
- package/dist/components/Flag/flag-components/zw.d.ts +0 -3
- package/dist/components/Flag/flag-components/zw.js +0 -97
- package/dist/components/Flag/index.js +0 -8
- package/dist/components/Form/index.js +0 -4
- package/dist/components/Icons/Eye.js +0 -40
- package/dist/components/Icons/EyeClosed.js +0 -60
- package/dist/components/Input/index.js +0 -6
- package/dist/components/ListItem/index.js +0 -4
- package/dist/components/Marble/index.js +0 -4
- package/dist/components/NumberPad/index.js +0 -4
- package/dist/components/OTPField/index.js +0 -4
- package/dist/components/PasswordField/PasswordField.js +0 -45
- package/dist/components/PasswordField/index.js +0 -4
- package/dist/components/PasteButton/index.js +0 -4
- package/dist/components/PhoneField/index.js +0 -6
- package/dist/components/Pill/index.js +0 -4
- package/dist/components/Progress/index.js +0 -4
- package/dist/components/RadioGroup/index.js +0 -6
- package/dist/components/SearchField/index.js +0 -4
- package/dist/components/Select/index.js +0 -4
- package/dist/components/Spinner/index.js +0 -4
- package/dist/components/Switch/index.js +0 -4
- package/dist/components/Tabs/index.js +0 -5
- package/dist/components/Tabs/types.js +0 -1
- package/dist/components/TextArea/index.js +0 -4
- package/dist/components/Toast/index.js +0 -12
- package/dist/components/ToggleGroup/index.js +0 -5
- package/dist/components/ToggleGroup/types.js +0 -1
- package/dist/components/Token/icons/types.js +0 -1
- package/dist/components/Token/index.js +0 -4
- package/dist/components/TopBar/index.js +0 -4
- package/dist/components/Typography/index.js +0 -5
- package/dist/components/WalletAddressField/index.js +0 -4
- package/dist/node_modules/.pnpm/countries-list@3.1.1/node_modules/countries-list/mjs/index.js +0 -8
- package/public/fonts/TWKLausanne-350.woff +0 -0
- package/public/fonts/TWKLausanne-350Italic.woff +0 -0
- package/public/fonts/TWKLausanne-500.woff +0 -0
- package/public/fonts/TWKLausanne-500Italic.woff +0 -0
- package/public/fonts/TWKLausanne-600.woff +0 -0
- package/public/fonts/TWKLausanne-600Italic.woff +0 -0
- package/public/globals.css +0 -2297
- package/public/images/marbles/marble1.png +0 -0
- package/public/images/marbles/marble2.png +0 -0
- package/public/images/marbles/marble3.svg +0 -36
@@ -0,0 +1,34 @@
|
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
2
|
+
import { getBackgroundClass, getIconFillClass } from "./utils.js";
|
3
|
+
const XRP = (props) => /* @__PURE__ */ jsxs(
|
4
|
+
"svg",
|
5
|
+
{
|
6
|
+
width: "88",
|
7
|
+
height: "88",
|
8
|
+
viewBox: "0 0 88 88",
|
9
|
+
fill: "none",
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
11
|
+
...props,
|
12
|
+
style: { color: "#23292F" },
|
13
|
+
children: [
|
14
|
+
/* @__PURE__ */ jsx("rect", { width: "88", height: "88", rx: "44", className: getBackgroundClass(props) }),
|
15
|
+
/* @__PURE__ */ jsx(
|
16
|
+
"path",
|
17
|
+
{
|
18
|
+
d: "M60.9687 24.125H67.9062L53.4687 38.42C48.2403 43.5941 39.7634 43.5941 34.5312 38.42L20.0881 24.125H27.0312L38 34.9841C39.5981 36.5592 41.7519 37.4421 43.9958 37.4421C46.2397 37.4421 48.3934 36.5592 49.9916 34.9841L60.9687 24.125Z",
|
19
|
+
className: getIconFillClass(props)
|
20
|
+
}
|
21
|
+
),
|
22
|
+
/* @__PURE__ */ jsx(
|
23
|
+
"path",
|
24
|
+
{
|
25
|
+
d: "M26.9422 63.875H20L34.5312 49.4919C39.7597 44.3178 48.2366 44.3178 53.4688 49.4919L68 63.875H61.0625L50 52.9278C48.4019 51.3527 46.2481 50.4697 44.0042 50.4697C41.7603 50.4697 39.6066 51.3527 38.0084 52.9278L26.9422 63.875Z",
|
26
|
+
className: getIconFillClass(props)
|
27
|
+
}
|
28
|
+
)
|
29
|
+
]
|
30
|
+
}
|
31
|
+
);
|
32
|
+
export {
|
33
|
+
XRP as default
|
34
|
+
};
|
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export { Token, type TokenProps } from './Token';
|
@@ -6,6 +6,12 @@ interface TopBarProps {
|
|
6
6
|
startAdornment?: React.ReactNode;
|
7
7
|
/** Element rendered on the right side */
|
8
8
|
endAdornment?: React.ReactNode;
|
9
|
+
/** Additional class name for the top bar */
|
10
|
+
className?: string;
|
9
11
|
}
|
10
|
-
|
11
|
-
|
12
|
+
declare function TopBar({ title, startAdornment, endAdornment, className }: TopBarProps): import("react/jsx-runtime").JSX.Element;
|
13
|
+
declare namespace TopBar {
|
14
|
+
var displayName: string;
|
15
|
+
}
|
16
|
+
export { TopBar };
|
17
|
+
export type { TopBarProps };
|
@@ -1,23 +1,37 @@
|
|
1
|
-
import { jsxs
|
2
|
-
import { cn
|
3
|
-
import { Typography
|
4
|
-
function
|
5
|
-
const
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
1
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
2
|
+
import { cn } from "../../lib/utils.js";
|
3
|
+
import { Typography } from "../Typography/Typography.js";
|
4
|
+
function TopBar({ title, startAdornment, endAdornment, className }) {
|
5
|
+
const hasStartAdornment = Boolean(startAdornment);
|
6
|
+
const hasEndAdornment = Boolean(endAdornment);
|
7
|
+
const textAlignment = hasStartAdornment ? "text-center" : "text-left";
|
8
|
+
const justifyContent = hasStartAdornment || hasEndAdornment ? "justify-between" : "justify-start";
|
9
|
+
return /* @__PURE__ */ jsxs(
|
10
|
+
"div",
|
11
|
+
{
|
12
|
+
className: cn(
|
13
|
+
"flex items-center px-6 pt-6 pb-2 w-full h-[4.5rem] gap-10",
|
14
|
+
justifyContent,
|
15
|
+
className
|
16
|
+
),
|
17
|
+
children: [
|
18
|
+
startAdornment && /* @__PURE__ */ jsx("div", { className: "shrink-0", children: startAdornment }),
|
19
|
+
/* @__PURE__ */ jsx(
|
20
|
+
Typography,
|
21
|
+
{
|
22
|
+
variant: hasStartAdornment ? "subtitle" : "heading",
|
23
|
+
level: hasStartAdornment ? 1 : 3,
|
24
|
+
className: cn("flex-1 grow truncate", textAlignment),
|
25
|
+
children: title
|
26
|
+
}
|
27
|
+
),
|
28
|
+
endAdornment && /* @__PURE__ */ jsx("div", { className: "shrink-0", children: endAdornment }),
|
29
|
+
!endAdornment && hasStartAdornment && /* @__PURE__ */ jsx("div", { className: "shrink-0 invisible", "aria-hidden": "true", children: startAdornment })
|
30
|
+
]
|
31
|
+
}
|
32
|
+
);
|
20
33
|
}
|
34
|
+
TopBar.displayName = "TopBar";
|
21
35
|
export {
|
22
|
-
|
36
|
+
TopBar
|
23
37
|
};
|
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export { TopBar, type TopBarProps } from './TopBar';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { PropsWithChildren } from 'react';
|
2
|
-
|
2
|
+
interface TypographyProps extends React.HTMLAttributes<HTMLElement> {
|
3
3
|
/**
|
4
4
|
* The HTML element to render the typography as
|
5
5
|
* @default "p"
|
@@ -27,5 +27,6 @@ export declare const typographyVariants: (props?: ({
|
|
27
27
|
variant?: "number" | "heading" | "subtitle" | "body" | "label" | "display" | null | undefined;
|
28
28
|
level?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
|
29
29
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
30
|
-
|
31
|
-
export
|
30
|
+
declare const Typography: import('react').ForwardRefExoticComponent<PropsWithChildren<TypographyComponentProps> & import('react').RefAttributes<HTMLElement>>;
|
31
|
+
export { Typography };
|
32
|
+
export type { TypographyProps };
|
@@ -1,16 +1,16 @@
|
|
1
|
-
import { jsx
|
2
|
-
import { cva
|
3
|
-
import { forwardRef
|
4
|
-
import { cn
|
5
|
-
const
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
2
|
+
import { cva } from "../../node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.js";
|
3
|
+
import { forwardRef } from "react";
|
4
|
+
import { cn } from "../../lib/utils.js";
|
5
|
+
const typographyVariants = cva("", {
|
6
6
|
variants: {
|
7
7
|
variant: {
|
8
|
-
display: "font-sans font-semibold leading-narrow tracking-[-0.02em]",
|
9
|
-
heading: "font-sans font-semibold leading-narrow tracking-[-0.01em]",
|
10
|
-
subtitle: "font-sans font-medium leading-narrow",
|
11
|
-
label: "font-sans font-semibold leading-narrow",
|
12
|
-
body: "font-sans font-normal leading-compact",
|
13
|
-
number: "font-sans font-semibold"
|
8
|
+
display: "font-sans font-semibold leading-narrow tracking-[-0.02em] antialiased",
|
9
|
+
heading: "font-sans font-semibold leading-narrow tracking-[-0.01em] antialiased",
|
10
|
+
subtitle: "font-sans font-medium leading-narrow antialiased",
|
11
|
+
label: "font-sans font-semibold leading-narrow antialiased",
|
12
|
+
body: "font-sans font-normal leading-compact antialiased",
|
13
|
+
number: "font-sans font-semibold antialiased"
|
14
14
|
},
|
15
15
|
level: {
|
16
16
|
1: "",
|
@@ -143,20 +143,22 @@ const c = m("", {
|
|
143
143
|
variant: "body",
|
144
144
|
level: 2
|
145
145
|
}
|
146
|
-
})
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
146
|
+
});
|
147
|
+
const Typography = forwardRef(
|
148
|
+
({ variant = "body", level = 2, children, as: Component = "p", className, ...props }, ref) => {
|
149
|
+
return /* @__PURE__ */ jsx(
|
150
|
+
Component,
|
151
|
+
{
|
152
|
+
className: cn(typographyVariants({ variant, level, className })),
|
153
|
+
ref,
|
154
|
+
...props,
|
155
|
+
children
|
156
|
+
}
|
157
|
+
);
|
158
|
+
}
|
156
159
|
);
|
157
|
-
|
160
|
+
Typography.displayName = "Typography";
|
158
161
|
export {
|
159
|
-
|
160
|
-
|
161
|
-
c as typographyVariants
|
162
|
+
Typography,
|
163
|
+
typographyVariants
|
162
164
|
};
|
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export { Typography, type TypographyProps } from './Typography';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { InputProps } from '../Input';
|
2
|
-
|
2
|
+
interface WalletAddressFieldProps extends Omit<InputProps, "startAdornment" | "endAdornment"> {
|
3
3
|
/**
|
4
4
|
* If true, the input will display in an error state with error styling
|
5
5
|
*/
|
@@ -19,5 +19,6 @@ export interface WalletAddressFieldProps extends Omit<InputProps, "startAdornmen
|
|
19
19
|
*/
|
20
20
|
pasteButtonLabel?: string;
|
21
21
|
}
|
22
|
-
|
23
|
-
export
|
22
|
+
declare const WalletAddressField: import('react').ForwardRefExoticComponent<WalletAddressFieldProps & import('react').RefAttributes<HTMLInputElement>>;
|
23
|
+
export { WalletAddressField };
|
24
|
+
export type { WalletAddressFieldProps };
|
@@ -1,81 +1,91 @@
|
|
1
1
|
"use client";
|
2
|
-
import { jsx
|
3
|
-
import { createChangeEvent
|
4
|
-
import { forwardRef
|
5
|
-
import
|
6
|
-
import { Input
|
7
|
-
import
|
8
|
-
const
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
3
|
+
import { createChangeEvent } from "../../lib/utils.js";
|
4
|
+
import { forwardRef, useRef, useState, useImperativeHandle } from "react";
|
5
|
+
import { PasteButton } from "../PasteButton/PasteButton.js";
|
6
|
+
import { Input } from "../Input/Input.js";
|
7
|
+
import { ClearButton } from "../ClearButton/ClearButton.js";
|
8
|
+
const WalletAddressField = forwardRef(
|
9
9
|
({
|
10
|
-
isValid
|
11
|
-
disabled
|
12
|
-
type
|
13
|
-
autoComplete
|
14
|
-
spellCheck
|
15
|
-
label
|
16
|
-
pasteButtonLabel
|
17
|
-
...
|
18
|
-
},
|
19
|
-
const
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
10
|
+
isValid,
|
11
|
+
disabled,
|
12
|
+
type = "text",
|
13
|
+
autoComplete = "off",
|
14
|
+
spellCheck = "false",
|
15
|
+
label = "Wallet address",
|
16
|
+
pasteButtonLabel = "Paste",
|
17
|
+
...props
|
18
|
+
}, forwardedRef) => {
|
19
|
+
const inputRef = useRef(null);
|
20
|
+
const [isPasted, setIsPasted] = useState(false);
|
21
|
+
const [value, setValue] = useState("");
|
22
|
+
const [isFocused, setIsFocused] = useState(false);
|
23
|
+
useImperativeHandle(forwardedRef, () => inputRef.current);
|
24
|
+
let endAdornment;
|
25
|
+
if (!disabled && !isPasted && !value) {
|
26
|
+
endAdornment = /* @__PURE__ */ jsx(
|
27
|
+
PasteButton,
|
28
|
+
{
|
29
|
+
inputRef,
|
30
|
+
label: pasteButtonLabel,
|
31
|
+
onPaste: () => {
|
32
|
+
var _a;
|
33
|
+
if (inputRef.current) {
|
34
|
+
const event = createChangeEvent(inputRef.current);
|
35
|
+
(_a = props.onChange) == null ? void 0 : _a.call(props, event);
|
36
|
+
setIsPasted(true);
|
37
|
+
}
|
32
38
|
}
|
33
39
|
}
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
40
|
+
);
|
41
|
+
} else if (isFocused && !disabled) {
|
42
|
+
endAdornment = /* @__PURE__ */ jsx(
|
43
|
+
ClearButton,
|
44
|
+
{
|
45
|
+
inputRef,
|
46
|
+
onClear: () => {
|
47
|
+
var _a;
|
48
|
+
if (inputRef.current) {
|
49
|
+
const event = createChangeEvent(inputRef.current);
|
50
|
+
(_a = props.onChange) == null ? void 0 : _a.call(props, event);
|
51
|
+
setValue("");
|
52
|
+
}
|
44
53
|
}
|
45
54
|
}
|
46
|
-
|
47
|
-
|
48
|
-
|
55
|
+
);
|
56
|
+
}
|
57
|
+
return /* @__PURE__ */ jsx(
|
58
|
+
Input,
|
49
59
|
{
|
50
|
-
...
|
51
|
-
ref:
|
52
|
-
isValid
|
53
|
-
disabled
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
i(!0), (n = e.onFocus) == null || n.call(e, t);
|
60
|
+
...props,
|
61
|
+
ref: inputRef,
|
62
|
+
isValid,
|
63
|
+
disabled,
|
64
|
+
endAdornment,
|
65
|
+
type,
|
66
|
+
autoComplete,
|
67
|
+
spellCheck,
|
68
|
+
label,
|
69
|
+
onFocus: (e) => {
|
70
|
+
var _a;
|
71
|
+
setIsFocused(true);
|
72
|
+
(_a = props.onFocus) == null ? void 0 : _a.call(props, e);
|
64
73
|
},
|
65
|
-
onBlur: (
|
66
|
-
var
|
67
|
-
|
74
|
+
onBlur: (e) => {
|
75
|
+
var _a;
|
76
|
+
setIsFocused(false);
|
77
|
+
(_a = props.onBlur) == null ? void 0 : _a.call(props, e);
|
68
78
|
},
|
69
|
-
onChange: (
|
70
|
-
var
|
71
|
-
(
|
79
|
+
onChange: (e) => {
|
80
|
+
var _a;
|
81
|
+
(_a = props.onChange) == null ? void 0 : _a.call(props, e);
|
82
|
+
setValue(e.target.value);
|
72
83
|
}
|
73
84
|
}
|
74
85
|
);
|
75
86
|
}
|
76
87
|
);
|
77
|
-
|
88
|
+
WalletAddressField.displayName = "WalletAddressField";
|
78
89
|
export {
|
79
|
-
|
80
|
-
S as default
|
90
|
+
WalletAddressField
|
81
91
|
};
|
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export { WalletAddressField, type WalletAddressFieldProps } from './WalletAddressField';
|
package/dist/globals.css
ADDED
@@ -0,0 +1,3 @@
|
|
1
|
+
@font-face{font-family:TWK Lausanne;src:url(https://mini-apps-ui-kit.world.org/fonts/TWKLausanne-350.woff) format("woff");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:TWK Lausanne;src:url(https://mini-apps-ui-kit.world.org/fonts/TWKLausanne-350Italic.woff) format("woff");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:TWK Lausanne;src:url(https://mini-apps-ui-kit.world.org/fonts/TWKLausanne-500.woff) format("woff");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:TWK Lausanne;src:url(https://mini-apps-ui-kit.world.org/fonts/TWKLausanne-500Italic.woff) format("woff");font-weight:500;font-style:italic;font-display:swap}@font-face{font-family:TWK Lausanne;src:url(https://mini-apps-ui-kit.world.org/fonts/TWKLausanne-600.woff) format("woff");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:TWK Lausanne;src:url(https://mini-apps-ui-kit.world.org/fonts/TWKLausanne-600Italic.woff) format("woff");font-weight:600;font-style:italic;font-display:swap}:root{--font-sans:"TWK Lausanne",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{display:none}input::-webkit-clear-button{display:none}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{display:none}input::-webkit-calendar-picker-indicator{display:none}input::-webkit-datetime-edit,input::-webkit-datetime-edit-ampm-field,input::-webkit-datetime-edit-day-field,input::-webkit-datetime-edit-fields-wrapper,input::-webkit-datetime-edit-hour-field,input::-webkit-datetime-edit-minute-field,input::-webkit-datetime-edit-month-field,input::-webkit-datetime-edit-second-field,input::-webkit-datetime-edit-text,input::-webkit-datetime-edit-year-field{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }
|
2
|
+
|
3
|
+
/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border-width:0;border-style:solid;border-color:rgb(var(--gray-200)/1)}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:var(--font-sans);font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:rgb(var(--gray-400)/1)}input::placeholder,textarea::placeholder{opacity:1;color:rgb(var(--gray-400)/1)}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--font-sans:TWK Lausanne;--gray-0:255 255 255;--gray-50:249 250 251;--gray-100:243 244 245;--gray-200:235 236 239;--gray-300:214 217 221;--gray-350:177 184 194;--gray-400:155 163 174;--gray-500:113 118 128;--gray-700:60 66 75;--gray-900:24 24 24;--success-100:230 249 236;--success-200:204 243 217;--success-300:153 232 179;--success-400:102 220 141;--success-500:51 209 103;--success-600:0 194 48;--success-700:0 155 38;--success-800:0 116 29;--success-900:0 77 19;--error-100:254 233 231;--error-200:253 211 207;--error-300:251 167 159;--error-400:249 123 111;--error-500:247 80 63;--error-600:242 40 13;--error-700:194 32 10;--error-800:145 24 8;--error-900:97 16 5;--warning-100:255 246 230;--warning-200:255 237 204;--warning-300:255 219 153;--warning-400:255 201 102;--warning-500:255 184 51;--warning-600:255 174 0;--warning-700:204 139 0;--warning-800:153 104 0;--warning-900:102 70 0;--info-100:230 240 255;--info-200:204 224 255;--info-300:153 194 255;--info-400:102 163 255;--info-500:51 133 255;--info-600:0 92 255;--info-700:0 74 204;--info-800:0 55 153;--info-900:0 36 102;--world-blue-primary:63,219,237;--world-blue-secondary:236,251,253;--carrot-orange-primary:255,90,0;--carrot-orange-secondary:255,237,230;--purple-primary:134,0,255;--purple-secondary:242,230,255;--green-primary:0,194,48;--green-secondary:230,249,236;--blue-primary:0,92,255;--blue-secondary:230,240,255;--worldcoin-primary:24,24,24;--worldcoin-secondary:243,244,245;--digital-dollars-primary:0,194,48;--digital-dollars-secondary:230,249,236;--bitcoin-primary:255,90,0;--bitcoin-secondary:255,237,230;--ethereum-primary:51,133,255;--ethereum-secondary:230,240,255}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.inset-x-0{left:0;right:0}.bottom-0{bottom:0}.left-0{left:0}.right-0{right:0}.start-0{inset-inline-start:0}.top-0{top:0}.top-1\/2{top:50%}.top-6{top:1.5rem}.z-10{z-index:10}.z-50{z-index:50}.z-\[100\]{z-index:100}.m-3{margin:.75rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-4{margin-top:1rem;margin-bottom:1rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-8{margin-bottom:2rem}.ml-4{margin-left:1rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mt-1{margin-top:.25rem}.mt-24{margin-top:6rem}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.size-10{width:2.5rem;height:2.5rem}.size-11{width:2.75rem;height:2.75rem}.size-12{width:3rem;height:3rem}.size-16{width:4rem;height:4rem}.size-5{width:1.25rem;height:1.25rem}.size-6{width:1.5rem;height:1.5rem}.size-8{width:2rem;height:2rem}.size-9{width:2.25rem;height:2.25rem}.size-\[0\.875rem\]{width:.875rem;height:.875rem}.size-\[1\.5rem\]{width:1.5rem;height:1.5rem}.size-\[1\.625rem\]{width:1.625rem;height:1.625rem}.size-\[2\.125rem\]{width:2.125rem;height:2.125rem}.size-\[3\.25rem\]{width:3.25rem;height:3.25rem}.size-\[5\.5rem\]{width:5.5rem;height:5.5rem}.size-full{width:100%;height:100%}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-20{height:5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-9{height:2.25rem}.h-\[1\.625rem\]{height:1.625rem}.h-\[1px\]{height:1px}.h-\[3\.125rem\]{height:3.125rem}.h-\[3\.5rem\]{height:3.5rem}.h-\[3\.75rem\]{height:3.75rem}.h-\[4\.25rem\]{height:4.25rem}.h-\[4\.5rem\]{height:4.5rem}.h-\[4\.75rem\]{height:4.75rem}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-auto{height:auto}.h-full{height:100%}.max-h-\[11\.75rem\]{max-height:11.75rem}.max-h-screen{max-height:100vh}.min-h-14{min-height:3.5rem}.min-h-\[7\.5rem\]{min-height:7.5rem}.w-1{width:.25rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-16{width:4rem}.w-24{width:6rem}.w-32{width:8rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-80{width:20rem}.w-\[300px\]{width:300px}.w-\[400px\]{width:400px}.w-\[7\.5rem\]{width:7.5rem}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0}.min-w-10{min-width:2.5rem}.min-w-14{min-width:3.5rem}.min-w-28{min-width:7rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.max-w-full{max-width:100%}.max-w-md{max-width:28rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.translate-y-\[-50\%\]{--tw-translate-y:-50%}.transform,.translate-y-\[-50\%\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes spin{to{transform:rotate(1turn)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.cursor-text{cursor:text}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize-y{resize:vertical}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.auto-cols-fr{grid-auto-columns:minmax(0,1fr)}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-\[auto_1fr\]{grid-template-columns:auto 1fr}.grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.content-start{align-content:flex-start}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-10{gap:2.5rem}.gap-12{gap:3rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-x-2{-moz-column-gap:.5rem;column-gap:.5rem}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.gap-y-5{row-gap:1.25rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.overflow-auto{overflow:auto}.overflow-hidden,.truncate{overflow:hidden}.truncate{white-space:nowrap}.text-ellipsis,.truncate{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-\[0\.625rem\]{border-radius:.625rem}.rounded-\[1\.75rem\]{border-radius:1.75rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-t-\[0\.625rem\]{border-top-left-radius:.625rem;border-top-right-radius:.625rem}.rounded-t-\[1\.75rem\]{border-top-left-radius:1.75rem;border-top-right-radius:1.75rem}.border{border-width:1px}.border-2{border-width:2px}.border-\[0\.09375rem\]{border-width:.09375rem}.border-x{border-left-width:1px}.border-r,.border-x{border-right-width:1px}.border-t{border-top-width:1px}.border-none{border-style:none}.\!border-error-600{--tw-border-opacity:1!important;border-color:rgb(var(--error-600)/var(--tw-border-opacity,1))!important}.border-error-600{--tw-border-opacity:1;border-color:rgb(var(--error-600)/var(--tw-border-opacity,1))}.border-gray-0{--tw-border-opacity:1;border-color:rgb(var(--gray-0)/var(--tw-border-opacity,1))}.border-gray-100{--tw-border-opacity:1;border-color:rgb(var(--gray-100)/var(--tw-border-opacity,1))}.border-gray-200{--tw-border-opacity:1;border-color:rgb(var(--gray-200)/var(--tw-border-opacity,1))}.border-gray-300{--tw-border-opacity:1;border-color:rgb(var(--gray-300)/var(--tw-border-opacity,1))}.\!bg-gray-0{--tw-bg-opacity:1!important;background-color:rgb(var(--gray-0)/var(--tw-bg-opacity,1))!important}.bg-current{background-color:currentColor}.bg-error-100{--tw-bg-opacity:1;background-color:rgb(var(--error-100)/var(--tw-bg-opacity,1))}.bg-error-500{--tw-bg-opacity:1;background-color:rgb(var(--error-500)/var(--tw-bg-opacity,1))}.bg-error-600{--tw-bg-opacity:1;background-color:rgb(var(--error-600)/var(--tw-bg-opacity,1))}.bg-gray-0{--tw-bg-opacity:1;background-color:rgb(var(--gray-0)/var(--tw-bg-opacity,1))}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(var(--gray-100)/var(--tw-bg-opacity,1))}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(var(--gray-200)/var(--tw-bg-opacity,1))}.bg-gray-400{--tw-bg-opacity:1;background-color:rgb(var(--gray-400)/var(--tw-bg-opacity,1))}.bg-gray-50{--tw-bg-opacity:1;background-color:rgb(var(--gray-50)/var(--tw-bg-opacity,1))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(var(--gray-900)/var(--tw-bg-opacity,1))}.bg-gray-900\/40{background-color:rgb(var(--gray-900)/.4)}.bg-info-100{--tw-bg-opacity:1;background-color:rgb(var(--info-100)/var(--tw-bg-opacity,1))}.bg-success-100{--tw-bg-opacity:1;background-color:rgb(var(--success-100)/var(--tw-bg-opacity,1))}.bg-success-500{--tw-bg-opacity:1;background-color:rgb(var(--success-500)/var(--tw-bg-opacity,1))}.bg-success-600{--tw-bg-opacity:1;background-color:rgb(var(--success-600)/var(--tw-bg-opacity,1))}.bg-transparent{background-color:transparent}.bg-warning-100{--tw-bg-opacity:1;background-color:rgb(var(--warning-100)/var(--tw-bg-opacity,1))}.bg-warning-600{--tw-bg-opacity:1;background-color:rgb(var(--warning-600)/var(--tw-bg-opacity,1))}.bg-\[radial-gradient\(111\.32\%_111\.8\%_at_22\.73\%_0\%\2c _rgba\(255\2c 255\2c 255\2c 0\.2\)_0\%\2c _rgba\(255\2c 255\2c 255\2c 0\)_100\%\)\]{background-image:radial-gradient(111.32% 111.8% at 22.73% 0,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,0) 100%)}.fill-current{fill:currentColor}.fill-gray-0{fill:rgb(var(--gray-0)/1)}.fill-gray-100{fill:rgb(var(--gray-100)/1)}.fill-gray-350{fill:rgb(var(--gray-350)/1)}.fill-gray-900{fill:rgb(var(--gray-900)/1)}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0\.5{padding:.125rem}.p-2{padding:.5rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.p-\[3px\]{padding:3px}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem}.pb-2,.py-2{padding-bottom:.5rem}.pb-20{padding-bottom:5rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-2{padding-right:.5rem}.pr-3{padding-right:.75rem}.pt-4{padding-top:1rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.font-sans{font-family:var(--font-sans)}.text-2xl{font-size:1.625rem}.text-2xs{font-size:.6875rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.125rem}.text-5xl{font-size:2.5rem}.text-6xl{font-size:2.75rem}.text-7xl{font-size:3.5rem}.text-\[1\.375rem\]{font-size:1.375rem}.text-\[15px\]{font-size:15px}.text-\[17px\]{font-size:17px}.text-\[3\.5rem\]{font-size:3.5rem}.text-base{font-size:1.0625rem}.text-lg{font-size:1.1875rem}.text-sm{font-size:.9375rem}.text-xl{font-size:1.3125rem}.text-xs{font-size:.8125rem}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.leading-\[1\.2\]{line-height:1.2}.leading-compact{line-height:1.3}.leading-narrow{line-height:1.2}.leading-none{line-height:1}.tracking-\[-0\.01em\]{letter-spacing:-.01em}.tracking-\[-0\.02em\]{letter-spacing:-.02em}.tracking-normal{letter-spacing:0}.text-error-600{--tw-text-opacity:1;color:rgb(var(--error-600)/var(--tw-text-opacity,1))}.text-error-700{--tw-text-opacity:1;color:rgb(var(--error-700)/var(--tw-text-opacity,1))}.text-gray-0{--tw-text-opacity:1;color:rgb(var(--gray-0)/var(--tw-text-opacity,1))}.text-gray-350{--tw-text-opacity:1;color:rgb(var(--gray-350)/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(var(--gray-400)/var(--tw-text-opacity,1))}.text-gray-500{--tw-text-opacity:1;color:rgb(var(--gray-500)/var(--tw-text-opacity,1))}.text-gray-900{--tw-text-opacity:1;color:rgb(var(--gray-900)/var(--tw-text-opacity,1))}.text-info-700{--tw-text-opacity:1;color:rgb(var(--info-700)/var(--tw-text-opacity,1))}.text-success-600{--tw-text-opacity:1;color:rgb(var(--success-600)/var(--tw-text-opacity,1))}.text-success-700{--tw-text-opacity:1;color:rgb(var(--success-700)/var(--tw-text-opacity,1))}.text-warning-700{--tw-text-opacity:1;color:rgb(var(--warning-700)/var(--tw-text-opacity,1))}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-20{opacity:.2}.shadow-\[inset_0_0_0_1px_rgba\(255\2c 255\2c 255\2c 0\.3\)\]{--tw-shadow:inset 0 0 0 1px hsla(0,0%,100%,.3);--tw-shadow-colored:inset 0 0 0 1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-\[top\2c transform\2c scale\2c opacity\2c color\]{transition-property:top,transform,scale,opacity,color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-700{transition-duration:.7s}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0) scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1)) rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0) scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1)) rotate(var(--tw-exit-rotate,0))}}.duration-100{animation-duration:.1s}.duration-200{animation-duration:.2s}.duration-300{animation-duration:.3s}.duration-700{animation-duration:.7s}.ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)}.placeholder\:text-gray-500::-moz-placeholder{--tw-text-opacity:1;color:rgb(var(--gray-500)/var(--tw-text-opacity,1))}.placeholder\:text-gray-500::placeholder{--tw-text-opacity:1;color:rgb(var(--gray-500)/var(--tw-text-opacity,1))}.placeholder\:text-transparent::-moz-placeholder{color:transparent}.placeholder\:text-transparent::placeholder{color:transparent}.focus-within\:isolate:focus-within{isolation:isolate}.focus-within\:border-error-600:focus-within{--tw-border-opacity:1;border-color:rgb(var(--error-600)/var(--tw-border-opacity,1))}.focus-within\:border-gray-300:focus-within{--tw-border-opacity:1;border-color:rgb(var(--gray-300)/var(--tw-border-opacity,1))}.focus-within\:bg-gray-0:focus-within{--tw-bg-opacity:1;background-color:rgb(var(--gray-0)/var(--tw-bg-opacity,1))}.hover\:bg-gray-50:hover{--tw-bg-opacity:1;background-color:rgb(var(--gray-50)/var(--tw-bg-opacity,1))}.hover\:text-gray-500:hover{--tw-text-opacity:1;color:rgb(var(--gray-500)/var(--tw-text-opacity,1))}.focus\:border-error-600:focus{--tw-border-opacity:1;border-color:rgb(var(--error-600)/var(--tw-border-opacity,1))}.focus\:border-gray-300:focus{--tw-border-opacity:1;border-color:rgb(var(--gray-300)/var(--tw-border-opacity,1))}.focus\:bg-gray-0:focus{--tw-bg-opacity:1;background-color:rgb(var(--gray-0)/var(--tw-bg-opacity,1))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:border-gray-100:disabled{--tw-border-opacity:1;border-color:rgb(var(--gray-100)/var(--tw-border-opacity,1))}.disabled\:bg-gray-100:disabled{--tw-bg-opacity:1;background-color:rgb(var(--gray-100)/var(--tw-bg-opacity,1))}.disabled\:bg-gray-50:disabled{--tw-bg-opacity:1;background-color:rgb(var(--gray-50)/var(--tw-bg-opacity,1))}.disabled\:text-gray-300:disabled{--tw-text-opacity:1;color:rgb(var(--gray-300)/var(--tw-text-opacity,1))}.disabled\:text-gray-400:disabled{--tw-text-opacity:1;color:rgb(var(--gray-400)/var(--tw-text-opacity,1))}.disabled\:opacity-20:disabled{opacity:.2}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-90:disabled{opacity:.9}.group:last-child .group-last\:hidden{display:none}.peer:-moz-placeholder-shown~.peer-placeholder-shown\:text-sm{font-size:.9375rem}.peer:placeholder-shown~.peer-placeholder-shown\:text-sm{font-size:.9375rem}.peer:focus~.peer-focus\:pointer-events-auto{pointer-events:auto}.peer:focus~.peer-focus\:top-\[1\.125rem\]{top:1.125rem}.peer:focus~.peer-focus\:border-gray-300{--tw-border-opacity:1;border-color:rgb(var(--gray-300)/var(--tw-border-opacity,1))}.peer:focus~.peer-focus\:bg-gray-0{--tw-bg-opacity:1;background-color:rgb(var(--gray-0)/var(--tw-bg-opacity,1))}.peer:focus~.peer-focus\:text-xs{font-size:.8125rem}.peer:not(:-moz-placeholder-shown)~.peer-\[\:not\(\:-moz-placeholder-shown\)\]\:pointer-events-auto{pointer-events:auto}.peer:not(:placeholder-shown)~.peer-\[\:not\(\:placeholder-shown\)\]\:pointer-events-auto{pointer-events:auto}.peer:not(:-moz-placeholder-shown)~.peer-\[\:not\(\:-moz-placeholder-shown\)\]\:top-\[1\.125rem\]{top:1.125rem}.peer:not(:placeholder-shown)~.peer-\[\:not\(\:placeholder-shown\)\]\:top-\[1\.125rem\]{top:1.125rem}.peer:not(:-moz-placeholder-shown)~.peer-\[\:not\(\:-moz-placeholder-shown\)\]\:text-xs{font-size:.8125rem}.peer:not(:placeholder-shown)~.peer-\[\:not\(\:placeholder-shown\)\]\:text-xs{font-size:.8125rem}.has-\[input\:disabled\]\:cursor-not-allowed:has(input:disabled){cursor:not-allowed}.has-\[\:disabled\]\:opacity-50:has(:disabled){opacity:.5}.has-\[input\:disabled\]\:opacity-50:has(input:disabled){opacity:.5}.data-\[state\=checked\]\:translate-x-4[data-state=checked]{--tw-translate-x:1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked],.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel]{--tw-translate-x:0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end]{--tw-translate-x:var(--radix-toast-swipe-end-x)}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end],.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]{--tw-translate-x:var(--radix-toast-swipe-move-x)}.data-\[state\=checked\]\:border-gray-900[data-state=checked]{--tw-border-opacity:1;border-color:rgb(var(--gray-900)/var(--tw-border-opacity,1))}.data-\[state\=closed\]\:border-gray-100[data-state=closed]{--tw-border-opacity:1;border-color:rgb(var(--gray-100)/var(--tw-border-opacity,1))}.data-\[state\=unchecked\]\:border-gray-200[data-state=unchecked]{--tw-border-opacity:1;border-color:rgb(var(--gray-200)/var(--tw-border-opacity,1))}.data-\[state\=unchecked\]\:border-gray-300[data-state=unchecked]{--tw-border-opacity:1;border-color:rgb(var(--gray-300)/var(--tw-border-opacity,1))}.data-\[state\=checked\]\:bg-gray-900[data-state=checked]{--tw-bg-opacity:1;background-color:rgb(var(--gray-900)/var(--tw-bg-opacity,1))}.data-\[state\=closed\]\:bg-gray-100[data-state=closed],.data-\[state\=on\]\:bg-gray-100[data-state=on]{--tw-bg-opacity:1;background-color:rgb(var(--gray-100)/var(--tw-bg-opacity,1))}.data-\[state\=unchecked\]\:bg-gray-300[data-state=unchecked]{--tw-bg-opacity:1;background-color:rgb(var(--gray-300)/var(--tw-bg-opacity,1))}.data-\[state\=unchecked\]\:bg-transparent[data-state=unchecked]{background-color:transparent}.data-\[placeholder\]\:text-gray-500[data-placeholder]{--tw-text-opacity:1;color:rgb(var(--gray-500)/var(--tw-text-opacity,1))}.data-\[state\=on\]\:text-gray-900[data-state=on]{--tw-text-opacity:1;color:rgb(var(--gray-900)/var(--tw-text-opacity,1))}.data-\[swipe\=move\]\:transition-none[data-swipe=move]{transition-property:none}.data-\[state\=open\]\:animate-in[data-state=open]{animation-name:enter;animation-duration:.15s;--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial}.data-\[state\=closed\]\:animate-out[data-state=closed],.data-\[swipe\=end\]\:animate-out[data-swipe=end]{animation-name:exit;animation-duration:.15s;--tw-exit-opacity:initial;--tw-exit-scale:initial;--tw-exit-rotate:initial;--tw-exit-translate-x:initial;--tw-exit-translate-y:initial}.data-\[state\=closed\]\:fade-out-50[data-state=closed]{--tw-exit-opacity:0.5}.data-\[state\=closed\]\:slide-out-to-top-full[data-state=closed]{--tw-exit-translate-y:-100%}.data-\[state\=open\]\:slide-in-from-top-full[data-state=open]{--tw-enter-translate-y:-100%}.group[data-state=on] .group-data-\[state\=on\]\:block{display:block}.group[data-state=on] .group-data-\[state\=on\]\:hidden{display:none}@media (min-width:768px){.md\:grid-cols-\[1fr_2fr\]{grid-template-columns:1fr 2fr}}.\[\&\:has\(\>\*\:nth-child\(2\)\)\]\:grid-cols-2:has(>:nth-child(2)){grid-template-columns:repeat(2,minmax(0,1fr))}.\[\&\>\*\]\:col-span-1>*{grid-column:span 1/span 1}.\[\&\>span\:first-of-type\]\:line-clamp-1>span:first-of-type{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}
|
package/dist/index.d.ts
CHANGED
@@ -1,36 +1,37 @@
|
|
1
|
-
export
|
2
|
-
export
|
3
|
-
export
|
4
|
-
export
|
5
|
-
export
|
6
|
-
export
|
7
|
-
export
|
8
|
-
export
|
9
|
-
export
|
10
|
-
export
|
11
|
-
export
|
12
|
-
export
|
13
|
-
export
|
14
|
-
export
|
15
|
-
export
|
16
|
-
export
|
17
|
-
export
|
18
|
-
export
|
19
|
-
export
|
20
|
-
export
|
21
|
-
export
|
22
|
-
export
|
23
|
-
export
|
24
|
-
export
|
25
|
-
export
|
26
|
-
export
|
27
|
-
export
|
28
|
-
export
|
29
|
-
export
|
30
|
-
export
|
31
|
-
export
|
32
|
-
export
|
33
|
-
export
|
34
|
-
export
|
35
|
-
export
|
1
|
+
export { Button } from './components/Button';
|
2
|
+
export { Checkbox } from './components/Checkbox';
|
3
|
+
export { Chip } from './components/Chip';
|
4
|
+
export { CircularIcon } from './components/CircularIcon';
|
5
|
+
export { CircularState } from './components/CircularState';
|
6
|
+
export { ColorPickerItem, ColorPickerGroup } from './components/ColorPicker';
|
7
|
+
export { Flag } from './components/Flag';
|
8
|
+
export type { CountryCode } from './components/Flag';
|
9
|
+
export { Form } from './components/Form';
|
10
|
+
export { Input } from './components/Input';
|
11
|
+
export { ListItem } from './components/ListItem';
|
12
|
+
export { NumberPad } from './components/NumberPad';
|
13
|
+
export { OTPField } from './components/OTPField';
|
14
|
+
export { Pill } from './components/Pill';
|
15
|
+
export { RadioGroup, RadioGroupItem } from './components/RadioGroup';
|
16
|
+
export { Select } from './components/Select';
|
17
|
+
export { SearchField } from './components/SearchField';
|
18
|
+
export { PhoneField } from './components/PhoneField';
|
19
|
+
export { Spinner } from './components/Spinner';
|
20
|
+
export { Switch } from './components/Switch';
|
21
|
+
export { Token } from './components/Token';
|
22
|
+
export { Toast, Toaster, useToast } from './components/Toast';
|
23
|
+
export { Typography } from './components/Typography';
|
24
|
+
export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerTitle, } from './components/Drawer';
|
25
|
+
export { Progress } from './components/Progress';
|
26
|
+
export { TextArea } from './components/TextArea';
|
27
|
+
export { WalletAddressField } from './components/WalletAddressField';
|
28
|
+
export { AlertDialog, AlertDialogPortal, AlertDialogTrigger, AlertDialogClose, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, } from './components/AlertDialog';
|
29
|
+
export { BottomBar } from './components/BottomBar';
|
30
|
+
export { BulletList, BulletListItem } from './components/BulletList';
|
31
|
+
export { Marble } from './components/Marble';
|
32
|
+
export { TopBar } from './components/TopBar';
|
33
|
+
export { CountryDrawer } from './components/CountryDrawer';
|
34
|
+
export { ToggleGroupRoot, ToggleGroupItem } from './components/ToggleGroup';
|
35
|
+
export { Tabs, TabItem } from './components/Tabs';
|
36
|
+
export { LiveFeedback } from './components/LiveFeedback';
|
36
37
|
export { default as uiKitTailwindPlugin } from './tailwind';
|