@draftbit/core 48.4.10 → 48.4.12-4c749a.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Picker/NativePicker.js +1 -0
- package/lib/commonjs/components/Picker/PickerCommon.js +1 -0
- package/lib/commonjs/components/Picker/PickerInputContainer.js +1 -0
- package/lib/commonjs/components/Picker/dropdown/DropDownPicker.js +1 -0
- package/lib/commonjs/components/Picker/dropdown/MultiSelectPicker.js +1 -0
- package/lib/commonjs/components/Picker/dropdown/PickerItem.js +1 -0
- package/lib/commonjs/components/Picker/index.js +1 -0
- package/lib/commonjs/components/PinInput/PinInput.js +1 -1
- package/lib/commonjs/components/TextField.js +1 -1
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/utilities.js +1 -1
- package/lib/typescript/src/components/Picker/NativePicker.d.ts +4662 -0
- package/lib/typescript/src/components/Picker/NativePicker.js +95 -0
- package/lib/typescript/src/components/Picker/NativePicker.js.map +1 -0
- package/lib/typescript/src/components/Picker/PickerCommon.d.ts +51 -0
- package/lib/typescript/src/components/Picker/PickerCommon.js +23 -0
- package/lib/typescript/src/components/Picker/PickerCommon.js.map +1 -0
- package/lib/typescript/src/components/Picker/PickerInputContainer.d.ts +10 -0
- package/lib/typescript/src/components/Picker/PickerInputContainer.js +37 -0
- package/lib/typescript/src/components/Picker/PickerInputContainer.js.map +1 -0
- package/lib/typescript/src/components/Picker/dropdown/DropDownPicker.d.ts +6 -0
- package/lib/typescript/src/components/Picker/dropdown/DropDownPicker.js +65 -0
- package/lib/typescript/src/components/Picker/dropdown/DropDownPicker.js.map +1 -0
- package/lib/typescript/src/components/Picker/dropdown/MultiSelectPicker.d.ts +6 -0
- package/lib/typescript/src/components/Picker/dropdown/MultiSelectPicker.js +9 -0
- package/lib/typescript/src/components/Picker/dropdown/MultiSelectPicker.js.map +1 -0
- package/lib/typescript/src/components/Picker/dropdown/PickerItem.d.ts +14 -0
- package/lib/typescript/src/components/Picker/dropdown/PickerItem.js +9 -0
- package/lib/typescript/src/components/Picker/dropdown/PickerItem.js.map +1 -0
- package/lib/typescript/src/components/Picker/index.d.ts +10 -0
- package/lib/typescript/src/components/Picker/index.js +18 -0
- package/lib/typescript/src/components/Picker/index.js.map +1 -0
- package/lib/typescript/src/components/PinInput/PinInput.js +2 -2
- package/lib/typescript/src/components/PinInput/PinInput.js.map +1 -1
- package/lib/typescript/src/components/TextField.d.ts +3 -3
- package/lib/typescript/src/components/TextField.js +11 -7
- package/lib/typescript/src/components/TextField.js.map +1 -1
- package/lib/typescript/src/index.d.ts +1 -1
- package/lib/typescript/src/index.js +1 -1
- package/lib/typescript/src/index.js.map +1 -1
- package/lib/typescript/src/utilities.d.ts +8 -0
- package/lib/typescript/src/utilities.js +22 -1
- package/lib/typescript/src/utilities.js.map +1 -1
- package/lib/typescript/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -3
- package/src/components/Picker/NativePicker.js +95 -0
- package/src/components/Picker/NativePicker.js.map +1 -0
- package/src/components/Picker/NativePicker.tsx +156 -0
- package/src/components/Picker/PickerCommon.js +23 -0
- package/src/components/Picker/PickerCommon.js.map +1 -0
- package/src/components/Picker/PickerCommon.ts +87 -0
- package/src/components/Picker/PickerInputContainer.js +37 -0
- package/src/components/Picker/PickerInputContainer.js.map +1 -0
- package/src/components/Picker/PickerInputContainer.tsx +87 -0
- package/src/components/Picker/dropdown/DropDownPicker.js +65 -0
- package/src/components/Picker/dropdown/DropDownPicker.js.map +1 -0
- package/src/components/Picker/dropdown/DropDownPicker.tsx +150 -0
- package/src/components/Picker/dropdown/MultiSelectPicker.js +9 -0
- package/src/components/Picker/dropdown/MultiSelectPicker.js.map +1 -0
- package/src/components/Picker/dropdown/MultiSelectPicker.tsx +16 -0
- package/src/components/Picker/dropdown/PickerItem.js +9 -0
- package/src/components/Picker/dropdown/PickerItem.js.map +1 -0
- package/src/components/Picker/dropdown/PickerItem.tsx +19 -0
- package/src/components/Picker/index.js +18 -0
- package/src/components/Picker/index.js.map +1 -0
- package/src/components/Picker/index.tsx +27 -0
- package/src/components/PinInput/PinInput.js +2 -2
- package/src/components/PinInput/PinInput.js.map +1 -1
- package/src/components/PinInput/PinInput.tsx +2 -2
- package/src/components/TextField.js +11 -7
- package/src/components/TextField.js.map +1 -1
- package/src/components/TextField.tsx +17 -9
- package/src/index.js +1 -1
- package/src/index.js.map +1 -1
- package/src/index.tsx +1 -1
- package/src/utilities.js +22 -1
- package/src/utilities.js.map +1 -1
- package/src/utilities.ts +33 -1
- package/lib/commonjs/components/Picker/Picker.js +0 -1
- package/lib/commonjs/components/Picker/PickerComponent.android.js +0 -1
- package/lib/commonjs/components/Picker/PickerComponent.ios.js +0 -1
- package/lib/commonjs/components/Picker/PickerComponent.web.js +0 -1
- package/lib/commonjs/components/Picker/PickerTypes.js +0 -1
- package/lib/typescript/src/components/Picker/Picker.d.ts +0 -36
- package/lib/typescript/src/components/Picker/Picker.js +0 -288
- package/lib/typescript/src/components/Picker/Picker.js.map +0 -1
- package/lib/typescript/src/components/Picker/PickerComponent.android.d.ts +0 -6
- package/lib/typescript/src/components/Picker/PickerComponent.android.js +0 -70
- package/lib/typescript/src/components/Picker/PickerComponent.android.js.map +0 -1
- package/lib/typescript/src/components/Picker/PickerComponent.ios.d.ts +0 -7
- package/lib/typescript/src/components/Picker/PickerComponent.ios.js +0 -80
- package/lib/typescript/src/components/Picker/PickerComponent.ios.js.map +0 -1
- package/lib/typescript/src/components/Picker/PickerComponent.web.d.ts +0 -6
- package/lib/typescript/src/components/Picker/PickerComponent.web.js +0 -71
- package/lib/typescript/src/components/Picker/PickerComponent.web.js.map +0 -1
- package/lib/typescript/src/components/Picker/PickerTypes.d.ts +0 -18
- package/lib/typescript/src/components/Picker/PickerTypes.js +0 -2
- package/lib/typescript/src/components/Picker/PickerTypes.js.map +0 -1
- package/src/components/Picker/Picker.js +0 -288
- package/src/components/Picker/Picker.js.map +0 -1
- package/src/components/Picker/Picker.tsx +0 -509
- package/src/components/Picker/PickerComponent.android.js +0 -70
- package/src/components/Picker/PickerComponent.android.js.map +0 -1
- package/src/components/Picker/PickerComponent.android.tsx +0 -116
- package/src/components/Picker/PickerComponent.ios.js +0 -80
- package/src/components/Picker/PickerComponent.ios.js.map +0 -1
- package/src/components/Picker/PickerComponent.ios.tsx +0 -142
- package/src/components/Picker/PickerComponent.web.js +0 -71
- package/src/components/Picker/PickerComponent.web.js.map +0 -1
- package/src/components/Picker/PickerComponent.web.tsx +0 -117
- package/src/components/Picker/PickerTypes.js +0 -2
- package/src/components/Picker/PickerTypes.js.map +0 -1
- package/src/components/Picker/PickerTypes.ts +0 -18
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.