Skip to content

Commit

Permalink
Move back StyleSheet -> stylesheet
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofthelake committed Jan 22, 2020
1 parent 12dd68c commit 435bce2
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/Artboard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { or } from 'airbnb-prop-types';
import StyleSheet from '../StyleSheet';
import StyleSheet from '../stylesheet';
import ViewStylePropTypes from './ViewStylePropTypes';

const ViewportPropTypes = {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Image.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { or } from 'airbnb-prop-types';
import StyleSheet from '../StyleSheet';
import StyleSheet from '../stylesheet';
import ResizeModePropTypes from './ResizeModePropTypes';
import ImageStylePropTypes from './ImageStylePropTypes';
import { ViewPropTypes } from './View';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { or } from 'airbnb-prop-types';
import StyleSheet from '../StyleSheet';
import StyleSheet from '../stylesheet';
import PageStylePropTypes from './PageStylePropTypes';

export const PagePropTypes = {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Svg/Svg.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { ViewPropTypes } from '../View';
import StyleSheet from '../../StyleSheet';
import StyleSheet from '../../stylesheet';
import Circle from './Circle';
import ClipPath from './ClipPath';
import Defs from './Defs';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Text.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { or } from 'airbnb-prop-types';
import StyleSheet from '../StyleSheet';
import StyleSheet from '../stylesheet';
import TextStylePropTypes from './TextStylePropTypes';
import { ViewPropTypes } from './View';

Expand Down
2 changes: 1 addition & 1 deletion src/components/View.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import * as PropTypes from 'prop-types';
import { or } from 'airbnb-prop-types';
import StyleSheet from '../StyleSheet';
import StyleSheet from '../stylesheet';
import ViewStylePropTypes from './ViewStylePropTypes';
import ResizingConstraintPropTypes from './ResizingConstraintPropTypes';
import ShadowsPropTypes from './ShadowsPropTypes';
Expand Down
2 changes: 1 addition & 1 deletion src/index.common.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { default as Platform } from './Platform';
export { default as StyleSheet } from './StyleSheet';
export { default as StyleSheet } from './stylesheet';
export * from './components';
export { getSymbolComponentByName, getSymbolMasterByName, injectSymbols } from './symbol';
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/symbol.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as PropTypes from 'prop-types';
import { FileFormat1 as FileFormat } from '@sketch-hq/sketch-file-format-ts';
import convertJsonToSketch from './jsonUtils/sketchJson/convertJsonToSketch';
import convertSketchToJson from './jsonUtils/sketchJson/convertSketchToJson';
import StyleSheet from './StyleSheet';
import StyleSheet from './stylesheet';
import { generateID } from './jsonUtils/models';
import ViewStylePropTypes from './components/ViewStylePropTypes';
import ResizingConstraintPropTypes from './components/ResizingConstraintPropTypes';
Expand Down

0 comments on commit 435bce2

Please sign in to comment.