Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 6 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
/src/style/typography.js
# TODO: lint all packages
packages/web-demo-app/**/*
packages/unicorn-demo-app/**/*
packages/uilib-native/components/**/*
packages/uilib-docs/**/*
packages/eslint-plugin-uilib/**/*
10 changes: 10 additions & 0 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

COMMAND="yarn prepush"

$COMMAND
RESULT=$?
if [ $RESULT -ne 0 ]; then
echo "pre-push hook failed $COMMAND"
exit 1
fi
Binary file not shown.
873 changes: 0 additions & 873 deletions .yarn/releases/yarn-3.4.1.cjs

This file was deleted.

942 changes: 942 additions & 0 deletions .yarn/releases/yarn-4.12.0.cjs

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

14 changes: 13 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
compressionLevel: 0

enableGlobalCache: true

enableTelemetry: false

nmMode: hardlinks-local

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.4.1.cjs
npmRegistryServer: "https://registry.npmjs.org/"
npmMinimalAgeGate: "14d"
npmPreapprovedPackages: ["@wix/*"]

yarnPath: .yarn/releases/yarn-4.12.0.cjs
6 changes: 3 additions & 3 deletions docs/getting-started/v5.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ props change:
- `containerStyle` => `style`

#### Dialog
Old implementation was deprecated. See new [example screen](https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/DialogScreen.js)
Old implementation was deprecated. See new [example screen](https://github.com/wix/react-native-ui-lib/blob/master/packages/unicorn-demo-app/src/screens/componentScreens/DialogScreen.js)

#### TextInput
Component renamed to `TextField` and enhanced with more form capabilities like validations.
Expand All @@ -42,7 +42,7 @@ props change:
- `value` => `initialValue`

#### Toast
Implementation had slightly changed, please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/ToastsScreen.js)
Implementation had slightly changed, please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/packages/unicorn-demo-app/src/screens/componentScreens/ToastsScreen.js)
- `relative` value for `position` prop was removed
- Blur effect is not part of the component

Expand All @@ -54,7 +54,7 @@ Remove `animationProps`

#### Drawer
Component implementation was completely changed and is using `react-native-gesture-handler` as its base infrastructure instead of `react-native-interactable`
Please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/DrawerScreen.tsx)
Please see [example screen](https://github.com/wix/react-native-ui-lib/blob/master/packages/unicorn-demo-app/src/screens/componentScreens/DrawerScreen.tsx)

#### Carousel
Component API and implementation has changed.
Expand Down
3 changes: 0 additions & 3 deletions docuilib/babel.config.js

This file was deleted.

Loading