@sproutsocial/seeds-react-mixins 1.0.0 → 2.0.0
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/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +2304 -0
- package/dist/index.mjs +2293 -0
- package/package.json +8 -13
- package/__flow__/index.flow.js +0 -7
- package/__flow__/index.js +0 -3
- package/commonjs/index.flow.js +0 -1
- package/commonjs/index.js +0 -19
- package/commonjs/index.js.flow +0 -3
- package/dist/types/index.d.ts +0 -6
- package/dist/types/index.d.ts.map +0 -1
- package/lib/index.flow.js +0 -0
- package/lib/index.js +0 -13
- package/lib/index.js.flow +0 -3
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as styled_components from 'styled-components';
|
|
2
|
+
|
|
3
|
+
declare const svgToDataURL: (svgStr: string) => string;
|
|
4
|
+
declare const visuallyHidden: styled_components.FlattenSimpleInterpolation;
|
|
5
|
+
declare const focusRing: styled_components.FlattenSimpleInterpolation;
|
|
6
|
+
declare const pill: styled_components.FlattenSimpleInterpolation;
|
|
7
|
+
declare const disabled: styled_components.FlattenSimpleInterpolation;
|
|
8
|
+
|
|
9
|
+
export { disabled, focusRing, pill, svgToDataURL, visuallyHidden };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as styled_components from 'styled-components';
|
|
2
|
+
|
|
3
|
+
declare const svgToDataURL: (svgStr: string) => string;
|
|
4
|
+
declare const visuallyHidden: styled_components.FlattenSimpleInterpolation;
|
|
5
|
+
declare const focusRing: styled_components.FlattenSimpleInterpolation;
|
|
6
|
+
declare const pill: styled_components.FlattenSimpleInterpolation;
|
|
7
|
+
declare const disabled: styled_components.FlattenSimpleInterpolation;
|
|
8
|
+
|
|
9
|
+
export { disabled, focusRing, pill, svgToDataURL, visuallyHidden };
|