@@ -103,7 +103,7 @@ const TestCallExpression = styled_default.default(Test).withConfig({
103103` ;
104104
105105exports[` fixtures should minify css in helpers 1 ` ] = `
106- " import { css, keyframes } from \' styled-components/no-tags \' ;
106+ " import { css, keyframes } from \' styled-components\' ;
107107
108108const key = keyframes \` to{ transform :rotate (360deg );} \` ;
109109
@@ -119,31 +119,31 @@ var _templateObject = _taggedTemplateLiteral([\'width:100%;\'], [\'width:100%;\'
119119 _templateObject4 = _taggedTemplateLiteral([\' color:red;\' ], [\' color:red;\' ]),
120120 _templateObject5 = _taggedTemplateLiteral([\' & :hover{ color :blue ;} \' ], [\' & :hover{ color :blue ;} \' ]);
121121
122- var _noTags = require(\' styled-components/no-tags \' );
122+ var _styledComponents = require(\' styled-components\' );
123123
124- var _noTags2 = _interopRequireDefault(_noTags );
124+ var _styledComponents2 = _interopRequireDefault(_styledComponents );
125125
126126function _interopRequireDefault(obj) { return obj && obj .__esModule ? obj : { default: obj }; }
127127
128128function _taggedTemplateLiteral(strings, raw) { return Object .freeze (Object .defineProperties (strings , { raw: { value: Object .freeze (raw ) } })); }
129129
130- var Simple = (0, _noTags2 .default)(\' div\' )(_templateObject);
130+ var Simple = (0, _styledComponents2 .default)(\' div\' )(_templateObject);
131131
132- var Interpolation = (0, _noTags2 .default)(\' div\' )(_templateObject2, function (props) {
132+ var Interpolation = (0, _styledComponents2 .default)(\' div\' )(_templateObject2, function (props) {
133133 return props .text ;
134134} );
135135
136- var SpecialCharacters = (0, _noTags2 .default)(\' div\' )(_templateObject3, function (props) {
136+ var SpecialCharacters = (0, _styledComponents2 .default)(\' div\' )(_templateObject3, function (props) {
137137 return props .text ;
138138} );
139139
140- var Comment = (0, _noTags2 .default)(\' div\' )(_templateObject4);
140+ var Comment = (0, _styledComponents2 .default)(\' div\' )(_templateObject4);
141141
142- var Parens = (0, _noTags2 .default)(\' div\' )(_templateObject5);"
142+ var Parens = (0, _styledComponents2 .default)(\' div\' )(_templateObject5);"
143143` ;
144144
145145exports [` fixtures should minify css to use without transpilation 1` ] = `
146- "import styled from \' styled-components/no-tags \' ;
146+ "import styled from \' styled-components\' ;
147147
148148const Simple = styled(\' div\' )\` width:100%;\` ;
149149
@@ -198,13 +198,13 @@ const Test7 = styled(\'div\').withConfig({
198198` ;
199199
200200exports[` fixtures should not use private api if not required 1 ` ] = `
201- " import styled from \' styled-components/no-tags \' ;
201+ " import styled from \' styled-components\' ;
202202
203203const Test = styled (\' div\' )\` width:100%;\` ;"
204204` ;
205205
206206exports[` fixtures should track the imported variable 1 ` ] = `
207- " import s from \" styled-components/no-tags \" ;
207+ " import s from \" styled-components\" ;
208208
209209const Test = s (\" div\" ).withConfig({
210210 displayName : \" Test\" ,
@@ -254,47 +254,47 @@ const TestCallExpression = styled_default.default(Test).withConfig({
254254exports[` fixtures should transpile template literals with config 1 ` ] = `
255255" \' use strict\' ;
256256
257- var _noTags = require (\' styled-components/no-tags \' );
257+ var _styledComponents = require (\' styled-components\' );
258258
259- var _noTags2 = _interopRequireDefault (_noTags );
259+ var _styledComponents2 = _interopRequireDefault (_styledComponents );
260260
261261function _interopRequireDefault(obj ) { return obj && obj .__esModule ? obj : { default : obj }; }
262262
263- var Named = (0 , _noTags2 .default )(\' div\' ).withConfig({
263+ var Named = (0 , _styledComponents2 .default )(\' div\' ).withConfig({
264264 displayName : \' transpile-template-literals-with-config__Named\'
265265})([\'\\ n width: 100%;\\ n\' ]);
266266
267- var NamedWithInterpolation = (0 , _noTags2 .default )(\' div\' ).withConfig({
267+ var NamedWithInterpolation = (0 , _styledComponents2 .default )(\' div\' ).withConfig({
268268 displayName : \' transpile-template-literals-with-config__NamedWithInterpolation\'
269269})([\'\\ n color: \' , \' ;\\ n\' ], function (color) {
270270 return props .color ;
271271});
272272
273- var Wrapped = (0 , _noTags2 .default )(Inner ).withConfig ({
273+ var Wrapped = (0 , _styledComponents2 .default )(Inner ).withConfig ({
274274 displayName: \' transpile-template-literals-with-config__Wrapped\'
275275})([\' color: red;\' ]);"
276276` ;
277277
278278exports[` fixtures should transpile template literals without config 1 ` ] = `
279279" \' use strict\' ;
280280
281- var _noTags = require (\' styled-components/no-tags \' );
281+ var _styledComponents = require (\' styled-components\' );
282282
283- var _noTags2 = _interopRequireDefault (_noTags );
283+ var _styledComponents2 = _interopRequireDefault (_styledComponents );
284284
285285function _interopRequireDefault(obj ) { return obj && obj .__esModule ? obj : { default : obj }; }
286286
287- var Named = (0 , _noTags2 .default )(\' div\' )([\'\\ n width: 100%;\\ n\' ]);
287+ var Named = (0 , _styledComponents2 .default )(\' div\' )([\'\\ n width: 100%;\\ n\' ]);
288288
289- var NamedWithInterpolation = (0 , _noTags2 .default )(\' div\' )([\'\\ n color: \' , \' ;\\ n\' ], function (color) {
289+ var NamedWithInterpolation = (0 , _styledComponents2 .default )(\' div\' )([\'\\ n color: \' , \' ;\\ n\' ], function (color) {
290290 return props .color ;
291291});
292292
293- var Wrapped = (0 , _noTags2 .default )(Inner )([\' color: red;\' ]);"
293+ var Wrapped = (0 , _styledComponents2 .default )(Inner )([\' color: red;\' ]);"
294294` ;
295295
296296exports[` fixtures should use file name 1 ` ] = `
297- " import styled from \" styled-components/no-tags \" ;
297+ " import styled from \" styled-components\" ;
298298
299299const Test = styled (\" div\" ).withConfig({
300300 displayName : \" use-file-name__Test\" ,
@@ -319,5 +319,5 @@ exports[`fixtures should work with hoisted default as import 1`] = `
319319 displayName : \' work-with-hoisted-default-as-import__Test\' ,
320320 componentId : \' sc-1te5tgi-0\'
321321})\` width:100%;\` ;
322- import { default as s , css } from \' styled-components/no-tags \' ;"
322+ import { default as s , css } from \' styled-components\' ;"
323323` ;
0 commit comments