@tactics/toddle-styleguide 0.1.0 → 0.1.3

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/.yarnrc.yml CHANGED
@@ -1 +1,2 @@
1
- nodeLinker: node-modules
1
+ yarnPath: .yarn/releases/yarn-3.3.1.cjs
2
+ nodeLinker: node-modules
package/index.tsx CHANGED
@@ -34,6 +34,7 @@ import {Calendar} from './src/components/atoms/calendar/calendar.component';
34
34
  import {IncrementInput} from './src/components/atoms/increment-input/increment-input.component';
35
35
  import {Swipe} from './src/components/atoms/swipe/swipe.component';
36
36
  import {Logo} from './src/components/atoms/logo/logo.component';
37
+ import {DaySelect} from './src/components/atoms/day-select/day-select.component';
37
38
 
38
39
  // Exports of enums
39
40
  import {BubbleAlignment} from "./src/types/bubble-alignment.enum";
@@ -81,4 +82,5 @@ export {
81
82
  IncrementInput,
82
83
  Swipe,
83
84
  Logo,
85
+ DaySelect
84
86
  };
package/package.json CHANGED
@@ -1,20 +1,23 @@
1
1
  {
2
2
  "name": "@tactics/toddle-styleguide",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "main": "index.tsx",
5
5
  "types": "index.d.ts",
6
6
  "prepublish": "tsc",
7
7
  "scripts": {
8
8
  "expo": "./node_modules/.bin/tsc && ./node_modules/.bin/expo",
9
- "start": "./node_modules/.bin/tsc && node_modules/.bin/expo start",
9
+ "start": "./node_modules/.bin/tsc && ./node_modules/.bin/expo start",
10
10
  "test": "./node_modules/.bin/jest",
11
11
  "format": "./node_modules/.bin/prettier --write src/.",
12
12
  "types": "./node_modules/.bin/tsc index.tsx --declaration --allowJs --emitDeclarationOnly --esModuleInterop --jsx react-native --skipLibCheck"
13
13
  },
14
+ "engineStrict": true,
14
15
  "engines": {
15
16
  "npm": "please-use-yarn",
16
- "yarn": ">= 3.2.4"
17
+ "yarn": "3.3.1"
17
18
  },
19
+ "private": false,
20
+ "packageManager": "yarn@3.3.1",
18
21
  "dependencies": {
19
22
  "@callstack/react-theme-provider": "^3.0.8",
20
23
  "@expo/webpack-config": "^0.17.0",
@@ -32,7 +35,6 @@
32
35
  "expo-font": "^10.2.1",
33
36
  "expo-linear-gradient": "~11.4.0",
34
37
  "expo-status-bar": "~1.4.0",
35
- "formik": "^2.2.9",
36
38
  "intl": "^1.2.5",
37
39
  "jsc-android": "^250230.2.1",
38
40
  "luxon": "^3.1.1",
@@ -40,7 +42,7 @@
40
42
  "react-dom": "18.0.0",
41
43
  "react-native": "0.69.6",
42
44
  "react-native-calendars": "^1.1292.0",
43
- "react-native-gesture-handler": "^2.8.0",
45
+ "react-native-gesture-handler": "~2.5.0",
44
46
  "react-native-picker-select": "^8.0.4",
45
47
  "react-native-safe-area-context": "4.3.1",
46
48
  "react-native-screens": "~3.15.0",
@@ -83,7 +83,6 @@ export const Calendar = ({
83
83
  return (
84
84
  <RNCalendar
85
85
  initialDate={initDate}
86
- context={{date: ''}}
87
86
  minDate={minDate}
88
87
  maxDate={maxDate}
89
88
  onDayPress={(day) => {
@@ -1,5 +1,5 @@
1
1
  import React, {useState} from 'react';
2
- import {DaySelect} from './day-select-component';
2
+ import {DaySelect} from './day-select.component';
3
3
  import {View} from 'react-native';
4
4
  import {DateTime} from 'luxon';
5
5