@tactics/toddle-styleguide 0.1.0 → 0.1.1

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/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,6 +1,6 @@
1
1
  {
2
2
  "name": "@tactics/toddle-styleguide",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "main": "index.tsx",
5
5
  "types": "index.d.ts",
6
6
  "prepublish": "tsc",
@@ -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