styled-components 5.3.2 → 5.3.5
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/README.md +187 -0
- package/dist/styled-components-macro.cjs.js.map +1 -1
- package/dist/styled-components-macro.esm.js.map +1 -1
- package/dist/styled-components.browser.cjs.js +1 -1
- package/dist/styled-components.browser.cjs.js.map +1 -1
- package/dist/styled-components.browser.esm.js +1 -1
- package/dist/styled-components.browser.esm.js.map +1 -1
- package/dist/styled-components.cjs.js +1 -1
- package/dist/styled-components.cjs.js.map +1 -1
- package/dist/styled-components.esm.js +1 -1
- package/dist/styled-components.esm.js.map +1 -1
- package/dist/styled-components.js +1 -1
- package/dist/styled-components.js.map +1 -1
- package/dist/styled-components.min.js +1 -1
- package/dist/styled-components.min.js.map +1 -1
- package/native/dist/base.d.ts +18 -0
- package/native/dist/base.d.ts.map +1 -0
- package/native/dist/constants.d.ts +8 -0
- package/native/dist/constants.d.ts.map +1 -0
- package/native/dist/constructors/constructWithOptions.d.ts +19 -0
- package/native/dist/constructors/constructWithOptions.d.ts.map +1 -0
- package/native/dist/constructors/createGlobalStyle.d.ts +3 -0
- package/native/dist/constructors/createGlobalStyle.d.ts.map +1 -0
- package/native/dist/constructors/css.d.ts +4 -0
- package/native/dist/constructors/css.d.ts.map +1 -0
- package/native/dist/constructors/keyframes.d.ts +3 -0
- package/native/dist/constructors/keyframes.d.ts.map +1 -0
- package/native/dist/constructors/styled.d.ts +185 -0
- package/native/dist/constructors/styled.d.ts.map +1 -0
- package/native/dist/dist/base.d.ts +18 -0
- package/native/dist/dist/base.d.ts.map +1 -0
- package/native/dist/dist/constants.d.ts +9 -0
- package/native/dist/dist/constants.d.ts.map +1 -0
- package/native/dist/dist/constructors/constructWithOptions.d.ts +20 -0
- package/native/dist/dist/constructors/constructWithOptions.d.ts.map +1 -0
- package/native/dist/dist/constructors/createGlobalStyle.d.ts +4 -0
- package/native/dist/dist/constructors/createGlobalStyle.d.ts.map +1 -0
- package/native/dist/dist/constructors/css.d.ts +5 -0
- package/native/dist/dist/constructors/css.d.ts.map +1 -0
- package/native/dist/dist/constructors/keyframes.d.ts +4 -0
- package/native/dist/dist/constructors/keyframes.d.ts.map +1 -0
- package/native/dist/dist/constructors/styled.d.ts +186 -0
- package/native/dist/dist/constructors/styled.d.ts.map +1 -0
- package/native/dist/dist/hoc/withTheme.d.ts +4 -0
- package/native/dist/dist/hoc/withTheme.d.ts.map +1 -0
- package/native/dist/dist/hoc/withTheme.spec.d.ts +2 -0
- package/native/dist/dist/hoc/withTheme.spec.d.ts.map +1 -0
- package/native/dist/dist/hooks/useTheme.d.ts +4 -0
- package/native/dist/dist/hooks/useTheme.d.ts.map +1 -0
- package/native/dist/dist/index-standalone.d.ts +3 -0
- package/native/dist/dist/index-standalone.d.ts.map +1 -0
- package/native/dist/dist/index.d.ts +4 -0
- package/native/dist/dist/index.d.ts.map +1 -0
- package/native/dist/dist/macro/index.d.ts +3 -0
- package/native/dist/dist/macro/index.d.ts.map +1 -0
- package/native/dist/dist/macro/test/babel.config.d.ts +1 -0
- package/native/dist/dist/macro/test/babel.config.d.ts.map +1 -0
- package/native/dist/dist/models/ComponentStyle.d.ts +16 -0
- package/native/dist/dist/models/ComponentStyle.d.ts.map +1 -0
- package/native/dist/dist/models/GlobalStyle.d.ts +12 -0
- package/native/dist/dist/models/GlobalStyle.d.ts.map +1 -0
- package/native/dist/dist/models/InlineStyle.d.ts +7 -0
- package/native/dist/dist/models/InlineStyle.d.ts.map +1 -0
- package/native/dist/dist/models/Keyframes.d.ts +12 -0
- package/native/dist/dist/models/Keyframes.d.ts.map +1 -0
- package/native/dist/dist/models/ServerStyleSheet.d.ts +16 -0
- package/native/dist/dist/models/ServerStyleSheet.d.ts.map +1 -0
- package/native/dist/dist/models/StyleSheetManager.d.ts +22 -0
- package/native/dist/dist/models/StyleSheetManager.d.ts.map +1 -0
- package/native/dist/dist/models/StyledComponent.d.ts +4 -0
- package/native/dist/dist/models/StyledComponent.d.ts.map +1 -0
- package/native/dist/dist/models/StyledNativeComponent.d.ts +4 -0
- package/native/dist/dist/models/StyledNativeComponent.d.ts.map +1 -0
- package/native/dist/dist/models/ThemeProvider.d.ts +18 -0
- package/native/dist/dist/models/ThemeProvider.d.ts.map +1 -0
- package/native/dist/dist/native/index.d.ts +65 -0
- package/native/dist/dist/native/index.d.ts.map +1 -0
- package/native/dist/dist/primitives/index.d.ts +23 -0
- package/native/dist/dist/primitives/index.d.ts.map +1 -0
- package/native/dist/dist/secretInternals.d.ts +6 -0
- package/native/dist/dist/secretInternals.d.ts.map +1 -0
- package/native/dist/dist/sheet/GroupIDAllocator.d.ts +5 -0
- package/native/dist/dist/sheet/GroupIDAllocator.d.ts.map +1 -0
- package/native/dist/dist/sheet/GroupedTag.d.ts +12 -0
- package/native/dist/dist/sheet/GroupedTag.d.ts.map +1 -0
- package/native/dist/dist/sheet/Rehydration.d.ts +4 -0
- package/native/dist/dist/sheet/Rehydration.d.ts.map +1 -0
- package/native/dist/dist/sheet/Sheet.d.ts +41 -0
- package/native/dist/dist/sheet/Sheet.d.ts.map +1 -0
- package/native/dist/dist/sheet/Tag.d.ts +55 -0
- package/native/dist/dist/sheet/Tag.d.ts.map +1 -0
- package/native/dist/dist/sheet/dom.d.ts +5 -0
- package/native/dist/dist/sheet/dom.d.ts.map +1 -0
- package/native/dist/dist/sheet/index.d.ts +2 -0
- package/native/dist/dist/sheet/index.d.ts.map +1 -0
- package/native/dist/dist/sheet/types.d.ts +35 -0
- package/native/dist/dist/sheet/types.d.ts.map +1 -0
- package/native/dist/dist/test/globals.d.ts +3 -0
- package/native/dist/dist/test/globals.d.ts.map +1 -0
- package/native/dist/dist/test/utils.d.ts +192 -0
- package/native/dist/dist/test/utils.d.ts.map +1 -0
- package/native/dist/dist/types.d.ts +121 -0
- package/native/dist/dist/types.d.ts.map +1 -0
- package/native/dist/dist/utils/addUnitIfNeeded.d.ts +2 -0
- package/native/dist/dist/utils/addUnitIfNeeded.d.ts.map +1 -0
- package/native/dist/dist/utils/checkDynamicCreation.d.ts +2 -0
- package/native/dist/dist/utils/checkDynamicCreation.d.ts.map +1 -0
- package/native/dist/dist/utils/createWarnTooManyClasses.d.ts +4 -0
- package/native/dist/dist/utils/createWarnTooManyClasses.d.ts.map +1 -0
- package/native/dist/dist/utils/determineTheme.d.ts +3 -0
- package/native/dist/dist/utils/determineTheme.d.ts.map +1 -0
- package/native/dist/dist/utils/domElements.d.ts +3 -0
- package/native/dist/dist/utils/domElements.d.ts.map +1 -0
- package/native/dist/dist/utils/empties.d.ts +4 -0
- package/native/dist/dist/utils/empties.d.ts.map +1 -0
- package/native/dist/dist/utils/error.d.ts +6 -0
- package/native/dist/dist/utils/error.d.ts.map +1 -0
- package/native/dist/dist/utils/errors.d.ts +21 -0
- package/native/dist/dist/utils/errors.d.ts.map +1 -0
- package/native/dist/dist/utils/escape.d.ts +6 -0
- package/native/dist/dist/utils/escape.d.ts.map +1 -0
- package/native/dist/dist/utils/flatten.d.ts +5 -0
- package/native/dist/dist/utils/flatten.d.ts.map +1 -0
- package/native/dist/dist/utils/generateAlphabeticName.d.ts +2 -0
- package/native/dist/dist/utils/generateAlphabeticName.d.ts.map +1 -0
- package/native/dist/dist/utils/generateComponentId.d.ts +2 -0
- package/native/dist/dist/utils/generateComponentId.d.ts.map +1 -0
- package/native/dist/dist/utils/generateDisplayName.d.ts +3 -0
- package/native/dist/dist/utils/generateDisplayName.d.ts.map +1 -0
- package/native/dist/dist/utils/getComponentName.d.ts +3 -0
- package/native/dist/dist/utils/getComponentName.d.ts.map +1 -0
- package/native/dist/dist/utils/hash.d.ts +4 -0
- package/native/dist/dist/utils/hash.d.ts.map +1 -0
- package/native/dist/dist/utils/hoist.d.ts +52 -0
- package/native/dist/dist/utils/hoist.d.ts.map +1 -0
- package/native/dist/dist/utils/hyphenateStyleName.d.ts +15 -0
- package/native/dist/dist/utils/hyphenateStyleName.d.ts.map +1 -0
- package/native/dist/dist/utils/interleave.d.ts +3 -0
- package/native/dist/dist/utils/interleave.d.ts.map +1 -0
- package/native/dist/dist/utils/isFunction.d.ts +2 -0
- package/native/dist/dist/utils/isFunction.d.ts.map +1 -0
- package/native/dist/dist/utils/isPlainObject.d.ts +2 -0
- package/native/dist/dist/utils/isPlainObject.d.ts.map +1 -0
- package/native/dist/dist/utils/isStatelessFunction.d.ts +2 -0
- package/native/dist/dist/utils/isStatelessFunction.d.ts.map +1 -0
- package/native/dist/dist/utils/isStaticRules.d.ts +3 -0
- package/native/dist/dist/utils/isStaticRules.d.ts.map +1 -0
- package/native/dist/dist/utils/isStyledComponent.d.ts +3 -0
- package/native/dist/dist/utils/isStyledComponent.d.ts.map +1 -0
- package/native/dist/dist/utils/isTag.d.ts +3 -0
- package/native/dist/dist/utils/isTag.d.ts.map +1 -0
- package/native/dist/dist/utils/joinStrings.d.ts +5 -0
- package/native/dist/dist/utils/joinStrings.d.ts.map +1 -0
- package/native/dist/dist/utils/mixinDeep.d.ts +8 -0
- package/native/dist/dist/utils/mixinDeep.d.ts.map +1 -0
- package/native/dist/dist/utils/nonce.d.ts +2 -0
- package/native/dist/dist/utils/nonce.d.ts.map +1 -0
- package/native/dist/dist/utils/stylis.d.ts +10 -0
- package/native/dist/dist/utils/stylis.d.ts.map +1 -0
- package/native/dist/hoc/withTheme.d.ts +3 -0
- package/native/dist/hoc/withTheme.d.ts.map +1 -0
- package/native/dist/hoc/withTheme.spec.d.ts +1 -0
- package/native/dist/hoc/withTheme.spec.d.ts.map +1 -0
- package/native/dist/hooks/useTheme.d.ts +3 -0
- package/native/dist/hooks/useTheme.d.ts.map +1 -0
- package/native/dist/index-standalone.d.ts +2 -0
- package/native/dist/index-standalone.d.ts.map +1 -0
- package/native/dist/index.d.ts +4 -0
- package/native/dist/index.d.ts.map +1 -0
- package/native/dist/macro/index.d.ts +2 -0
- package/native/dist/macro/index.d.ts.map +1 -0
- package/native/dist/macro/test/babel.config.d.ts +1 -0
- package/native/dist/macro/test/babel.config.d.ts.map +1 -0
- package/native/dist/models/ComponentStyle.d.ts +15 -0
- package/native/dist/models/ComponentStyle.d.ts.map +1 -0
- package/native/dist/models/GlobalStyle.d.ts +11 -0
- package/native/dist/models/GlobalStyle.d.ts.map +1 -0
- package/native/dist/models/InlineStyle.d.ts +6 -0
- package/native/dist/models/InlineStyle.d.ts.map +1 -0
- package/native/dist/models/Keyframes.d.ts +11 -0
- package/native/dist/models/Keyframes.d.ts.map +1 -0
- package/native/dist/models/ServerStyleSheet.d.ts +15 -0
- package/native/dist/models/ServerStyleSheet.d.ts.map +1 -0
- package/native/dist/models/StyleSheetManager.d.ts +21 -0
- package/native/dist/models/StyleSheetManager.d.ts.map +1 -0
- package/native/dist/models/StyledComponent.d.ts +3 -0
- package/native/dist/models/StyledComponent.d.ts.map +1 -0
- package/native/dist/models/StyledNativeComponent.d.ts +3 -0
- package/native/dist/models/StyledNativeComponent.d.ts.map +1 -0
- package/native/dist/models/ThemeProvider.d.ts +17 -0
- package/native/dist/models/ThemeProvider.d.ts.map +1 -0
- package/native/dist/native/index.d.ts +65 -0
- package/native/dist/native/index.d.ts.map +1 -0
- package/native/dist/primitives/index.d.ts +23 -0
- package/native/dist/primitives/index.d.ts.map +1 -0
- package/native/dist/secretInternals.d.ts +5 -0
- package/native/dist/secretInternals.d.ts.map +1 -0
- package/native/dist/sheet/GroupIDAllocator.d.ts +4 -0
- package/native/dist/sheet/GroupIDAllocator.d.ts.map +1 -0
- package/native/dist/sheet/GroupedTag.d.ts +11 -0
- package/native/dist/sheet/GroupedTag.d.ts.map +1 -0
- package/native/dist/sheet/Rehydration.d.ts +3 -0
- package/native/dist/sheet/Rehydration.d.ts.map +1 -0
- package/native/dist/sheet/Sheet.d.ts +40 -0
- package/native/dist/sheet/Sheet.d.ts.map +1 -0
- package/native/dist/sheet/Tag.d.ts +54 -0
- package/native/dist/sheet/Tag.d.ts.map +1 -0
- package/native/dist/sheet/dom.d.ts +4 -0
- package/native/dist/sheet/dom.d.ts.map +1 -0
- package/native/dist/sheet/index.d.ts +1 -0
- package/native/dist/sheet/index.d.ts.map +1 -0
- package/native/dist/sheet/types.d.ts +34 -0
- package/native/dist/sheet/types.d.ts.map +1 -0
- package/native/dist/styled-components.native.cjs.js +43 -43
- package/native/dist/styled-components.native.cjs.js.map +1 -1
- package/native/dist/styled-components.native.esm.js +43 -43
- package/native/dist/styled-components.native.esm.js.map +1 -1
- package/native/dist/test/globals.d.ts +2 -0
- package/native/dist/test/globals.d.ts.map +1 -0
- package/native/dist/test/utils.d.ts +191 -0
- package/native/dist/test/utils.d.ts.map +1 -0
- package/native/dist/types.d.ts +121 -0
- package/native/dist/types.d.ts.map +1 -0
- package/native/dist/utils/addUnitIfNeeded.d.ts +1 -0
- package/native/dist/utils/addUnitIfNeeded.d.ts.map +1 -0
- package/native/dist/utils/checkDynamicCreation.d.ts +1 -0
- package/native/dist/utils/checkDynamicCreation.d.ts.map +1 -0
- package/native/dist/utils/createWarnTooManyClasses.d.ts +3 -0
- package/native/dist/utils/createWarnTooManyClasses.d.ts.map +1 -0
- package/native/dist/utils/determineTheme.d.ts +2 -0
- package/native/dist/utils/determineTheme.d.ts.map +1 -0
- package/native/dist/utils/domElements.d.ts +2 -0
- package/native/dist/utils/domElements.d.ts.map +1 -0
- package/native/dist/utils/empties.d.ts +3 -0
- package/native/dist/utils/empties.d.ts.map +1 -0
- package/native/dist/utils/error.d.ts +5 -0
- package/native/dist/utils/error.d.ts.map +1 -0
- package/native/dist/utils/errors.d.ts +20 -0
- package/native/dist/utils/errors.d.ts.map +1 -0
- package/native/dist/utils/escape.d.ts +5 -0
- package/native/dist/utils/escape.d.ts.map +1 -0
- package/native/dist/utils/flatten.d.ts +4 -0
- package/native/dist/utils/flatten.d.ts.map +1 -0
- package/native/dist/utils/generateAlphabeticName.d.ts +1 -0
- package/native/dist/utils/generateAlphabeticName.d.ts.map +1 -0
- package/native/dist/utils/generateComponentId.d.ts +1 -0
- package/native/dist/utils/generateComponentId.d.ts.map +1 -0
- package/native/dist/utils/generateDisplayName.d.ts +2 -0
- package/native/dist/utils/generateDisplayName.d.ts.map +1 -0
- package/native/dist/utils/getComponentName.d.ts +2 -0
- package/native/dist/utils/getComponentName.d.ts.map +1 -0
- package/native/dist/utils/hash.d.ts +3 -0
- package/native/dist/utils/hash.d.ts.map +1 -0
- package/native/dist/utils/hoist.d.ts +51 -0
- package/native/dist/utils/hoist.d.ts.map +1 -0
- package/native/dist/utils/hyphenateStyleName.d.ts +14 -0
- package/native/dist/utils/hyphenateStyleName.d.ts.map +1 -0
- package/native/dist/utils/interleave.d.ts +2 -0
- package/native/dist/utils/interleave.d.ts.map +1 -0
- package/native/dist/utils/isFunction.d.ts +1 -0
- package/native/dist/utils/isFunction.d.ts.map +1 -0
- package/native/dist/utils/isPlainObject.d.ts +1 -0
- package/native/dist/utils/isPlainObject.d.ts.map +1 -0
- package/native/dist/utils/isStatelessFunction.d.ts +1 -0
- package/native/dist/utils/isStatelessFunction.d.ts.map +1 -0
- package/native/dist/utils/isStaticRules.d.ts +2 -0
- package/native/dist/utils/isStaticRules.d.ts.map +1 -0
- package/native/dist/utils/isStyledComponent.d.ts +2 -0
- package/native/dist/utils/isStyledComponent.d.ts.map +1 -0
- package/native/dist/utils/isTag.d.ts +2 -0
- package/native/dist/utils/isTag.d.ts.map +1 -0
- package/native/dist/utils/joinStrings.d.ts +4 -0
- package/native/dist/utils/joinStrings.d.ts.map +1 -0
- package/native/dist/utils/mixinDeep.d.ts +7 -0
- package/native/dist/utils/mixinDeep.d.ts.map +1 -0
- package/native/dist/utils/nonce.d.ts +1 -0
- package/native/dist/utils/nonce.d.ts.map +1 -0
- package/native/dist/utils/stylis.d.ts +9 -0
- package/native/dist/utils/stylis.d.ts.map +1 -0
- package/package.json +5 -3
- package/postinstall.js +82 -0
- package/primitives/dist/base.d.ts +18 -0
- package/primitives/dist/base.d.ts.map +1 -0
- package/primitives/dist/constants.d.ts +8 -0
- package/primitives/dist/constants.d.ts.map +1 -0
- package/primitives/dist/constructors/constructWithOptions.d.ts +19 -0
- package/primitives/dist/constructors/constructWithOptions.d.ts.map +1 -0
- package/primitives/dist/constructors/createGlobalStyle.d.ts +3 -0
- package/primitives/dist/constructors/createGlobalStyle.d.ts.map +1 -0
- package/primitives/dist/constructors/css.d.ts +4 -0
- package/primitives/dist/constructors/css.d.ts.map +1 -0
- package/primitives/dist/constructors/keyframes.d.ts +3 -0
- package/primitives/dist/constructors/keyframes.d.ts.map +1 -0
- package/primitives/dist/constructors/styled.d.ts +185 -0
- package/primitives/dist/constructors/styled.d.ts.map +1 -0
- package/primitives/dist/dist/base.d.ts +18 -0
- package/primitives/dist/dist/base.d.ts.map +1 -0
- package/primitives/dist/dist/constants.d.ts +9 -0
- package/primitives/dist/dist/constants.d.ts.map +1 -0
- package/primitives/dist/dist/constructors/constructWithOptions.d.ts +20 -0
- package/primitives/dist/dist/constructors/constructWithOptions.d.ts.map +1 -0
- package/primitives/dist/dist/constructors/createGlobalStyle.d.ts +4 -0
- package/primitives/dist/dist/constructors/createGlobalStyle.d.ts.map +1 -0
- package/primitives/dist/dist/constructors/css.d.ts +5 -0
- package/primitives/dist/dist/constructors/css.d.ts.map +1 -0
- package/primitives/dist/dist/constructors/keyframes.d.ts +4 -0
- package/primitives/dist/dist/constructors/keyframes.d.ts.map +1 -0
- package/primitives/dist/dist/constructors/styled.d.ts +186 -0
- package/primitives/dist/dist/constructors/styled.d.ts.map +1 -0
- package/primitives/dist/dist/hoc/withTheme.d.ts +4 -0
- package/primitives/dist/dist/hoc/withTheme.d.ts.map +1 -0
- package/primitives/dist/dist/hoc/withTheme.spec.d.ts +2 -0
- package/primitives/dist/dist/hoc/withTheme.spec.d.ts.map +1 -0
- package/primitives/dist/dist/hooks/useTheme.d.ts +4 -0
- package/primitives/dist/dist/hooks/useTheme.d.ts.map +1 -0
- package/primitives/dist/dist/index-standalone.d.ts +3 -0
- package/primitives/dist/dist/index-standalone.d.ts.map +1 -0
- package/primitives/dist/dist/index.d.ts +4 -0
- package/primitives/dist/dist/index.d.ts.map +1 -0
- package/primitives/dist/dist/macro/index.d.ts +3 -0
- package/primitives/dist/dist/macro/index.d.ts.map +1 -0
- package/primitives/dist/dist/macro/test/babel.config.d.ts +1 -0
- package/primitives/dist/dist/macro/test/babel.config.d.ts.map +1 -0
- package/primitives/dist/dist/models/ComponentStyle.d.ts +16 -0
- package/primitives/dist/dist/models/ComponentStyle.d.ts.map +1 -0
- package/primitives/dist/dist/models/GlobalStyle.d.ts +12 -0
- package/primitives/dist/dist/models/GlobalStyle.d.ts.map +1 -0
- package/primitives/dist/dist/models/InlineStyle.d.ts +7 -0
- package/primitives/dist/dist/models/InlineStyle.d.ts.map +1 -0
- package/primitives/dist/dist/models/Keyframes.d.ts +12 -0
- package/primitives/dist/dist/models/Keyframes.d.ts.map +1 -0
- package/primitives/dist/dist/models/ServerStyleSheet.d.ts +16 -0
- package/primitives/dist/dist/models/ServerStyleSheet.d.ts.map +1 -0
- package/primitives/dist/dist/models/StyleSheetManager.d.ts +22 -0
- package/primitives/dist/dist/models/StyleSheetManager.d.ts.map +1 -0
- package/primitives/dist/dist/models/StyledComponent.d.ts +4 -0
- package/primitives/dist/dist/models/StyledComponent.d.ts.map +1 -0
- package/primitives/dist/dist/models/StyledNativeComponent.d.ts +4 -0
- package/primitives/dist/dist/models/StyledNativeComponent.d.ts.map +1 -0
- package/primitives/dist/dist/models/ThemeProvider.d.ts +18 -0
- package/primitives/dist/dist/models/ThemeProvider.d.ts.map +1 -0
- package/primitives/dist/dist/native/index.d.ts +65 -0
- package/primitives/dist/dist/native/index.d.ts.map +1 -0
- package/primitives/dist/dist/primitives/index.d.ts +23 -0
- package/primitives/dist/dist/primitives/index.d.ts.map +1 -0
- package/primitives/dist/dist/secretInternals.d.ts +6 -0
- package/primitives/dist/dist/secretInternals.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/GroupIDAllocator.d.ts +5 -0
- package/primitives/dist/dist/sheet/GroupIDAllocator.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/GroupedTag.d.ts +12 -0
- package/primitives/dist/dist/sheet/GroupedTag.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/Rehydration.d.ts +4 -0
- package/primitives/dist/dist/sheet/Rehydration.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/Sheet.d.ts +41 -0
- package/primitives/dist/dist/sheet/Sheet.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/Tag.d.ts +55 -0
- package/primitives/dist/dist/sheet/Tag.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/dom.d.ts +5 -0
- package/primitives/dist/dist/sheet/dom.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/index.d.ts +2 -0
- package/primitives/dist/dist/sheet/index.d.ts.map +1 -0
- package/primitives/dist/dist/sheet/types.d.ts +35 -0
- package/primitives/dist/dist/sheet/types.d.ts.map +1 -0
- package/primitives/dist/dist/test/globals.d.ts +3 -0
- package/primitives/dist/dist/test/globals.d.ts.map +1 -0
- package/primitives/dist/dist/test/utils.d.ts +192 -0
- package/primitives/dist/dist/test/utils.d.ts.map +1 -0
- package/primitives/dist/dist/types.d.ts +121 -0
- package/primitives/dist/dist/types.d.ts.map +1 -0
- package/primitives/dist/dist/utils/addUnitIfNeeded.d.ts +2 -0
- package/primitives/dist/dist/utils/addUnitIfNeeded.d.ts.map +1 -0
- package/primitives/dist/dist/utils/checkDynamicCreation.d.ts +2 -0
- package/primitives/dist/dist/utils/checkDynamicCreation.d.ts.map +1 -0
- package/primitives/dist/dist/utils/createWarnTooManyClasses.d.ts +4 -0
- package/primitives/dist/dist/utils/createWarnTooManyClasses.d.ts.map +1 -0
- package/primitives/dist/dist/utils/determineTheme.d.ts +3 -0
- package/primitives/dist/dist/utils/determineTheme.d.ts.map +1 -0
- package/primitives/dist/dist/utils/domElements.d.ts +3 -0
- package/primitives/dist/dist/utils/domElements.d.ts.map +1 -0
- package/primitives/dist/dist/utils/empties.d.ts +4 -0
- package/primitives/dist/dist/utils/empties.d.ts.map +1 -0
- package/primitives/dist/dist/utils/error.d.ts +6 -0
- package/primitives/dist/dist/utils/error.d.ts.map +1 -0
- package/primitives/dist/dist/utils/errors.d.ts +21 -0
- package/primitives/dist/dist/utils/errors.d.ts.map +1 -0
- package/primitives/dist/dist/utils/escape.d.ts +6 -0
- package/primitives/dist/dist/utils/escape.d.ts.map +1 -0
- package/primitives/dist/dist/utils/flatten.d.ts +5 -0
- package/primitives/dist/dist/utils/flatten.d.ts.map +1 -0
- package/primitives/dist/dist/utils/generateAlphabeticName.d.ts +2 -0
- package/primitives/dist/dist/utils/generateAlphabeticName.d.ts.map +1 -0
- package/primitives/dist/dist/utils/generateComponentId.d.ts +2 -0
- package/primitives/dist/dist/utils/generateComponentId.d.ts.map +1 -0
- package/primitives/dist/dist/utils/generateDisplayName.d.ts +3 -0
- package/primitives/dist/dist/utils/generateDisplayName.d.ts.map +1 -0
- package/primitives/dist/dist/utils/getComponentName.d.ts +3 -0
- package/primitives/dist/dist/utils/getComponentName.d.ts.map +1 -0
- package/primitives/dist/dist/utils/hash.d.ts +4 -0
- package/primitives/dist/dist/utils/hash.d.ts.map +1 -0
- package/primitives/dist/dist/utils/hoist.d.ts +52 -0
- package/primitives/dist/dist/utils/hoist.d.ts.map +1 -0
- package/primitives/dist/dist/utils/hyphenateStyleName.d.ts +15 -0
- package/primitives/dist/dist/utils/hyphenateStyleName.d.ts.map +1 -0
- package/primitives/dist/dist/utils/interleave.d.ts +3 -0
- package/primitives/dist/dist/utils/interleave.d.ts.map +1 -0
- package/primitives/dist/dist/utils/isFunction.d.ts +2 -0
- package/primitives/dist/dist/utils/isFunction.d.ts.map +1 -0
- package/primitives/dist/dist/utils/isPlainObject.d.ts +2 -0
- package/primitives/dist/dist/utils/isPlainObject.d.ts.map +1 -0
- package/primitives/dist/dist/utils/isStatelessFunction.d.ts +2 -0
- package/primitives/dist/dist/utils/isStatelessFunction.d.ts.map +1 -0
- package/primitives/dist/dist/utils/isStaticRules.d.ts +3 -0
- package/primitives/dist/dist/utils/isStaticRules.d.ts.map +1 -0
- package/primitives/dist/dist/utils/isStyledComponent.d.ts +3 -0
- package/primitives/dist/dist/utils/isStyledComponent.d.ts.map +1 -0
- package/primitives/dist/dist/utils/isTag.d.ts +3 -0
- package/primitives/dist/dist/utils/isTag.d.ts.map +1 -0
- package/primitives/dist/dist/utils/joinStrings.d.ts +5 -0
- package/primitives/dist/dist/utils/joinStrings.d.ts.map +1 -0
- package/primitives/dist/dist/utils/mixinDeep.d.ts +8 -0
- package/primitives/dist/dist/utils/mixinDeep.d.ts.map +1 -0
- package/primitives/dist/dist/utils/nonce.d.ts +2 -0
- package/primitives/dist/dist/utils/nonce.d.ts.map +1 -0
- package/primitives/dist/dist/utils/stylis.d.ts +10 -0
- package/primitives/dist/dist/utils/stylis.d.ts.map +1 -0
- package/primitives/dist/hoc/withTheme.d.ts +3 -0
- package/primitives/dist/hoc/withTheme.d.ts.map +1 -0
- package/primitives/dist/hoc/withTheme.spec.d.ts +1 -0
- package/primitives/dist/hoc/withTheme.spec.d.ts.map +1 -0
- package/primitives/dist/hooks/useTheme.d.ts +3 -0
- package/primitives/dist/hooks/useTheme.d.ts.map +1 -0
- package/primitives/dist/index-standalone.d.ts +2 -0
- package/primitives/dist/index-standalone.d.ts.map +1 -0
- package/primitives/dist/index.d.ts +4 -0
- package/primitives/dist/index.d.ts.map +1 -0
- package/primitives/dist/macro/index.d.ts +2 -0
- package/primitives/dist/macro/index.d.ts.map +1 -0
- package/primitives/dist/macro/test/babel.config.d.ts +1 -0
- package/primitives/dist/macro/test/babel.config.d.ts.map +1 -0
- package/primitives/dist/models/ComponentStyle.d.ts +15 -0
- package/primitives/dist/models/ComponentStyle.d.ts.map +1 -0
- package/primitives/dist/models/GlobalStyle.d.ts +11 -0
- package/primitives/dist/models/GlobalStyle.d.ts.map +1 -0
- package/primitives/dist/models/InlineStyle.d.ts +6 -0
- package/primitives/dist/models/InlineStyle.d.ts.map +1 -0
- package/primitives/dist/models/Keyframes.d.ts +11 -0
- package/primitives/dist/models/Keyframes.d.ts.map +1 -0
- package/primitives/dist/models/ServerStyleSheet.d.ts +15 -0
- package/primitives/dist/models/ServerStyleSheet.d.ts.map +1 -0
- package/primitives/dist/models/StyleSheetManager.d.ts +21 -0
- package/primitives/dist/models/StyleSheetManager.d.ts.map +1 -0
- package/primitives/dist/models/StyledComponent.d.ts +3 -0
- package/primitives/dist/models/StyledComponent.d.ts.map +1 -0
- package/primitives/dist/models/StyledNativeComponent.d.ts +3 -0
- package/primitives/dist/models/StyledNativeComponent.d.ts.map +1 -0
- package/primitives/dist/models/ThemeProvider.d.ts +17 -0
- package/primitives/dist/models/ThemeProvider.d.ts.map +1 -0
- package/primitives/dist/native/index.d.ts +65 -0
- package/primitives/dist/native/index.d.ts.map +1 -0
- package/primitives/dist/primitives/index.d.ts +23 -0
- package/primitives/dist/primitives/index.d.ts.map +1 -0
- package/primitives/dist/secretInternals.d.ts +5 -0
- package/primitives/dist/secretInternals.d.ts.map +1 -0
- package/primitives/dist/sheet/GroupIDAllocator.d.ts +4 -0
- package/primitives/dist/sheet/GroupIDAllocator.d.ts.map +1 -0
- package/primitives/dist/sheet/GroupedTag.d.ts +11 -0
- package/primitives/dist/sheet/GroupedTag.d.ts.map +1 -0
- package/primitives/dist/sheet/Rehydration.d.ts +3 -0
- package/primitives/dist/sheet/Rehydration.d.ts.map +1 -0
- package/primitives/dist/sheet/Sheet.d.ts +40 -0
- package/primitives/dist/sheet/Sheet.d.ts.map +1 -0
- package/primitives/dist/sheet/Tag.d.ts +54 -0
- package/primitives/dist/sheet/Tag.d.ts.map +1 -0
- package/primitives/dist/sheet/dom.d.ts +4 -0
- package/primitives/dist/sheet/dom.d.ts.map +1 -0
- package/primitives/dist/sheet/index.d.ts +1 -0
- package/primitives/dist/sheet/index.d.ts.map +1 -0
- package/primitives/dist/sheet/types.d.ts +34 -0
- package/primitives/dist/sheet/types.d.ts.map +1 -0
- package/primitives/dist/styled-components-primitives.cjs.js +43 -43
- package/primitives/dist/styled-components-primitives.cjs.js.map +1 -1
- package/primitives/dist/styled-components-primitives.esm.js +43 -43
- package/primitives/dist/styled-components-primitives.esm.js.map +1 -1
- package/primitives/dist/test/globals.d.ts +2 -0
- package/primitives/dist/test/globals.d.ts.map +1 -0
- package/primitives/dist/test/utils.d.ts +191 -0
- package/primitives/dist/test/utils.d.ts.map +1 -0
- package/primitives/dist/types.d.ts +121 -0
- package/primitives/dist/types.d.ts.map +1 -0
- package/primitives/dist/utils/addUnitIfNeeded.d.ts +1 -0
- package/primitives/dist/utils/addUnitIfNeeded.d.ts.map +1 -0
- package/primitives/dist/utils/checkDynamicCreation.d.ts +1 -0
- package/primitives/dist/utils/checkDynamicCreation.d.ts.map +1 -0
- package/primitives/dist/utils/createWarnTooManyClasses.d.ts +3 -0
- package/primitives/dist/utils/createWarnTooManyClasses.d.ts.map +1 -0
- package/primitives/dist/utils/determineTheme.d.ts +2 -0
- package/primitives/dist/utils/determineTheme.d.ts.map +1 -0
- package/primitives/dist/utils/domElements.d.ts +2 -0
- package/primitives/dist/utils/domElements.d.ts.map +1 -0
- package/primitives/dist/utils/empties.d.ts +3 -0
- package/primitives/dist/utils/empties.d.ts.map +1 -0
- package/primitives/dist/utils/error.d.ts +5 -0
- package/primitives/dist/utils/error.d.ts.map +1 -0
- package/primitives/dist/utils/errors.d.ts +20 -0
- package/primitives/dist/utils/errors.d.ts.map +1 -0
- package/primitives/dist/utils/escape.d.ts +5 -0
- package/primitives/dist/utils/escape.d.ts.map +1 -0
- package/primitives/dist/utils/flatten.d.ts +4 -0
- package/primitives/dist/utils/flatten.d.ts.map +1 -0
- package/primitives/dist/utils/generateAlphabeticName.d.ts +1 -0
- package/primitives/dist/utils/generateAlphabeticName.d.ts.map +1 -0
- package/primitives/dist/utils/generateComponentId.d.ts +1 -0
- package/primitives/dist/utils/generateComponentId.d.ts.map +1 -0
- package/primitives/dist/utils/generateDisplayName.d.ts +2 -0
- package/primitives/dist/utils/generateDisplayName.d.ts.map +1 -0
- package/primitives/dist/utils/getComponentName.d.ts +2 -0
- package/primitives/dist/utils/getComponentName.d.ts.map +1 -0
- package/primitives/dist/utils/hash.d.ts +3 -0
- package/primitives/dist/utils/hash.d.ts.map +1 -0
- package/primitives/dist/utils/hoist.d.ts +51 -0
- package/primitives/dist/utils/hoist.d.ts.map +1 -0
- package/primitives/dist/utils/hyphenateStyleName.d.ts +14 -0
- package/primitives/dist/utils/hyphenateStyleName.d.ts.map +1 -0
- package/primitives/dist/utils/interleave.d.ts +2 -0
- package/primitives/dist/utils/interleave.d.ts.map +1 -0
- package/primitives/dist/utils/isFunction.d.ts +1 -0
- package/primitives/dist/utils/isFunction.d.ts.map +1 -0
- package/primitives/dist/utils/isPlainObject.d.ts +1 -0
- package/primitives/dist/utils/isPlainObject.d.ts.map +1 -0
- package/primitives/dist/utils/isStatelessFunction.d.ts +1 -0
- package/primitives/dist/utils/isStatelessFunction.d.ts.map +1 -0
- package/primitives/dist/utils/isStaticRules.d.ts +2 -0
- package/primitives/dist/utils/isStaticRules.d.ts.map +1 -0
- package/primitives/dist/utils/isStyledComponent.d.ts +2 -0
- package/primitives/dist/utils/isStyledComponent.d.ts.map +1 -0
- package/primitives/dist/utils/isTag.d.ts +2 -0
- package/primitives/dist/utils/isTag.d.ts.map +1 -0
- package/primitives/dist/utils/joinStrings.d.ts +4 -0
- package/primitives/dist/utils/joinStrings.d.ts.map +1 -0
- package/primitives/dist/utils/mixinDeep.d.ts +7 -0
- package/primitives/dist/utils/mixinDeep.d.ts.map +1 -0
- package/primitives/dist/utils/nonce.d.ts +1 -0
- package/primitives/dist/utils/nonce.d.ts.map +1 -0
- package/primitives/dist/utils/stylis.d.ts +9 -0
- package/primitives/dist/utils/stylis.d.ts.map +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hyphenates a camelcased CSS property name, for example:
|
|
3
|
+
*
|
|
4
|
+
* > hyphenateStyleName('backgroundColor')
|
|
5
|
+
* < "background-color"
|
|
6
|
+
* > hyphenateStyleName('MozTransition')
|
|
7
|
+
* < "-moz-transition"
|
|
8
|
+
* > hyphenateStyleName('msTransition')
|
|
9
|
+
* < "-ms-transition"
|
|
10
|
+
*
|
|
11
|
+
* As Modernizr suggests (http://modernizr.com/docs/#prefixed), an `ms` prefix
|
|
12
|
+
* is converted to `-ms-`.
|
|
13
|
+
*/
|
|
14
|
+
export default function hyphenateStyleName(string: string): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hyphenateStyleName.d.ts","sourceRoot":"","sources":["../src/utils/hyphenateStyleName.ts"],"names":[],"mappings":"AASA;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,MAAM,EAAE,MAAM,UAIxD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interleave.d.ts","sourceRoot":"","sources":["../src/utils/interleave.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,GAAG,OAAO,EAChD,OAAO,EAAE,oBAAoB,EAC7B,cAAc,EAAE,aAAa,CAAC,KAAK,CAAC,EAAE,GACrC,aAAa,CAAC,KAAK,CAAC,EAAE,CAQxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function isFunction(test: any): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isFunction.d.ts","sourceRoot":"","sources":["../src/utils/isFunction.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,IAAI,EAAE,GAAG,WAE3C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function isPlainObject(x: any): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isPlainObject.d.ts","sourceRoot":"","sources":["../src/utils/isPlainObject.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,CAAC,EAAE,GAAG,GAAG,OAAO,CAWrD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function isStatelessFunction(test: any): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isStatelessFunction.d.ts","sourceRoot":"","sources":["../src/utils/isStatelessFunction.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,UAAU,mBAAmB,CAAC,IAAI,EAAE,GAAG,WAEpD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isStaticRules.d.ts","sourceRoot":"","sources":["../src/utils/isStaticRules.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,OAAO,EAAE,MAAM,UAAU,CAAC;AAInE,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,KAAK,GAAG,OAAO,EAAE,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,WAY3E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isStyledComponent.d.ts","sourceRoot":"","sources":["../src/utils/isStyledComponent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE5C,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,MAAM,EAAE,GAAG,GAAG,MAAM,IAAI,gBAAgB,CAAC,GAAG,CAAC,CAEtF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isTag.d.ts","sourceRoot":"","sources":["../src/utils/isTag.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAExC,MAAM,CAAC,OAAO,UAAU,KAAK,CAAC,MAAM,EAAE,YAAY,WAOjD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"joinStrings.d.ts","sourceRoot":"","sources":["../src/utils/joinStrings.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,EAAE,MAAM,sBAEzD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ExtensibleObject } from '../types';
|
|
2
|
+
/**
|
|
3
|
+
* Arrays & POJOs merged recursively, other objects and value types are overridden
|
|
4
|
+
* If target is not a POJO or an Array, it will get source properties injected via shallow merge
|
|
5
|
+
* Source objects applied left to right. Mutates & returns target. Similar to lodash merge.
|
|
6
|
+
*/
|
|
7
|
+
export default function mixinDeep(target?: ExtensibleObject, ...sources: any[]): ExtensibleObject;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mixinDeep.d.ts","sourceRoot":"","sources":["../src/utils/mixinDeep.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAuB5C;;;;GAIG;AACH,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,MAAM,GAAE,gBAAqB,EAAE,GAAG,OAAO,EAAE,GAAG,EAAE,oBAMjF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function getNonce(): string | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nonce.d.ts","sourceRoot":"","sources":["../src/utils/nonce.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,OAAO,UAAU,QAAQ,kBAE/B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Stringifier } from '../types';
|
|
2
|
+
declare type StylisInstanceConstructorArgs = {
|
|
3
|
+
options?: {
|
|
4
|
+
prefix?: boolean;
|
|
5
|
+
};
|
|
6
|
+
plugins?: stylis.Middleware[];
|
|
7
|
+
};
|
|
8
|
+
export default function createStylisInstance({ options, plugins, }?: StylisInstanceConstructorArgs): Stringifier;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stylis.d.ts","sourceRoot":"","sources":["../src/utils/stylis.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAQvC,aAAK,6BAA6B,GAAG;IACnC,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,OAAO,CAAA;KAAE,CAAC;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC,UAAU,EAAE,CAAC;CAC/B,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAC1C,EACE,OAAgC,EAChC,OAAuD,GACxD,GAAE,6BAAsD,eAiF1D"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "styled-components",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.5",
|
|
4
4
|
"description": "Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress",
|
|
5
5
|
"main": "dist/styled-components.cjs.js",
|
|
6
6
|
"jsnext:main": "dist/styled-components.esm.js",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"lint": "eslint src",
|
|
31
31
|
"lint:size": "bundlewatch",
|
|
32
32
|
"prettier": "prettier */**/*.js --write",
|
|
33
|
+
"postinstall": "node ./postinstall.js",
|
|
33
34
|
"prepublishOnly": "npm run build",
|
|
34
35
|
"dev": "cross-env BABEL_ENV=cjs babel-node example/startServer.js"
|
|
35
36
|
},
|
|
@@ -45,7 +46,8 @@
|
|
|
45
46
|
"primitives",
|
|
46
47
|
"scripts",
|
|
47
48
|
"test-utils",
|
|
48
|
-
"macro"
|
|
49
|
+
"macro",
|
|
50
|
+
"postinstall.js"
|
|
49
51
|
],
|
|
50
52
|
"keywords": [
|
|
51
53
|
"react",
|
|
@@ -65,7 +67,7 @@
|
|
|
65
67
|
"dependencies": {
|
|
66
68
|
"@babel/helper-module-imports": "^7.0.0",
|
|
67
69
|
"@babel/traverse": "^7.4.5",
|
|
68
|
-
"@emotion/is-prop-valid": "^
|
|
70
|
+
"@emotion/is-prop-valid": "^1.1.0",
|
|
69
71
|
"@emotion/stylis": "^0.8.4",
|
|
70
72
|
"@emotion/unitless": "^0.7.4",
|
|
71
73
|
"babel-plugin-styled-components": ">= 1.12.0",
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
const statement = `
|
|
2
|
+
A message from the styled-components core team:
|
|
3
|
+
|
|
4
|
+
If you are seeing this, your environment is set to Russian locale. By now, it is our hope that you have seen the devastation, horrors, and complete disregard the Russian military has for Ukranian civilians. Our position is that this war is unprovoked, unjust, and a senseless act of genocide and aggression against the Ukranian people.
|
|
5
|
+
|
|
6
|
+
As of March 24, 2022 the following has been reported (based on the Kyiv Independent @kyivindependent news publication):
|
|
7
|
+
|
|
8
|
+
87 residential buildings damaged in Kyiv since Feb. 24.
|
|
9
|
+
|
|
10
|
+
According to the Kyiv City State Administration, Russian attacks have also damaged 10 private houses, 12 schools, and 6 kindergartens in the Ukrainian capital since the beginning of the full-scale invasion.
|
|
11
|
+
|
|
12
|
+
Russia launched 1,200 missiles on Ukraine.
|
|
13
|
+
|
|
14
|
+
Half of all Ukrainian children have been displaced since Feb. 24, according to UNICEF.
|
|
15
|
+
|
|
16
|
+
“Since the start of the war a month ago, out of every boy and girl in the country, one out of two now has had to flee their homes,” UNICEF spokesperson James Elder told CNN.
|
|
17
|
+
|
|
18
|
+
The Institute of Mass Information reported that one journalist also went missing. Overall, Russia has committed 148 crimes against journalists and media in Ukraine, according to the report.
|
|
19
|
+
|
|
20
|
+
Mariupol city council: Russian occupiers forcibly move 6,000 Mariupol residents to Russia.
|
|
21
|
+
|
|
22
|
+
The local authorities in the besieged seaport said on March 24 that Russian occupiers are now forcibly moving more of its residents to Russia, confiscating their Ukrainian passports.
|
|
23
|
+
|
|
24
|
+
“We’ve seen numerous credible reports of indiscriminate attacks and attacks deliberately targeting civilians, as well as other atrocities,” reads the March 23 statement by U.S. Secretary of State Antony Blinken.
|
|
25
|
+
|
|
26
|
+
1,143 buildings have been destroyed in Kharkiv since the beginning of the full-scale invasion of Ukraine.
|
|
27
|
+
|
|
28
|
+
According to Kharkiv Mayor Ihor Terekhov, Russian forces destroyed 1,143 buildings in Ukraine’s second-biggest city, 998 of which are residential buildings.
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
This is a small sampling of the things being reported on the ground in Ukraine. If you are in a position to do something, have connections, or can spread the word, this is the time to do so. Don't let Vladimir Putin permanently stain the souls of all Russian people with these atrocities. He must be removed from power immediately.
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
russian via google translate (sorry, I'm sure it's not perfect):
|
|
37
|
+
|
|
38
|
+
Сообщение от команды styled-components:
|
|
39
|
+
|
|
40
|
+
Если вы виде это, ваша среда настроена на русский язык. Мы надеемся, что к настоящему моменту вы видели разруху, ужасы и полное пренебрежение российских военных к гражданскому населению Украины. Наша позиция заключается в том, что эта война является неспровоцированной, несправедливой и бессмысленным актом геноцида и агрессии против украинского народа.
|
|
41
|
+
|
|
42
|
+
По состоянию на 24 марта 2022 года сообщалось следующее (по материалам новостного издания Kyiv Independent @kyivindependent):
|
|
43
|
+
|
|
44
|
+
С 24 февраля в Киеве повреждено 87 жилых домов.
|
|
45
|
+
|
|
46
|
+
По данным Киевской городской государственной администрации, с начала полномасштабного вторжения российские обстрелы также повредили 10 частных домов, 12 школ и 6 детских садов в украинской столице.
|
|
47
|
+
|
|
48
|
+
Россия запустила 1200 ракет по Украине.
|
|
49
|
+
|
|
50
|
+
По данным ЮНИСЕФ, половина всех украинских детей были перемещены с 24 февраля.
|
|
51
|
+
|
|
52
|
+
«С начала войны месяц назад из каждого мальчика и девочки в стране каждый второй был вынужден покинуть свои дома», — сказал CNN представитель ЮНИСЕФ Джеймс Элдер.
|
|
53
|
+
|
|
54
|
+
Институт массовой информации сообщил, что также пропал один журналист. Всего Россия совершила 148 преступлений против журналистов и СМИ в Украине, говорится в отчете.
|
|
55
|
+
|
|
56
|
+
Мариупольский горсовет: российские оккупанты насильно переселяют в Россию 6 тысяч мариупольцев.
|
|
57
|
+
|
|
58
|
+
24 марта местные власти осажденного морского порта заявили, что российские оккупанты сейчас насильственно переселяют в Россию все больше его жителей, отбирая у них украинские паспорта.
|
|
59
|
+
|
|
60
|
+
«Мы получили многочисленные заслуживающие доверия сообщения о неизбирательных нападениях и нападениях, преднамеренно направленных против гражданских лиц, а также о других зверствах», — говорится в заявлении госсекретаря США Энтони Блинкена от 23 марта.
|
|
61
|
+
|
|
62
|
+
В Харькове с начала полномасштабного вторжения в Украину разрушено 1143 дома.
|
|
63
|
+
|
|
64
|
+
По словам мэра Харькова Игоря Терехова, российские войска разрушили 1143 здания во втором по величине городе Украины, 998 из которых являются жилыми домами.
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
Это небольшая выборка того, что сообщается на местах в Украине. Если у вас есть возможность что-то сделать, у вас есть связи или вы можете распространить информацию, сейчас самое время это сделать. Не позволяйте Владимиру Путину навсегда запятнать души всех русских людей этими зверствами. Он должен быть немедленно отстранен от власти.
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
Slava Ukraini 🇺🇦
|
|
73
|
+
`;
|
|
74
|
+
|
|
75
|
+
if (
|
|
76
|
+
Intl.DateTimeFormat()
|
|
77
|
+
.resolvedOptions()
|
|
78
|
+
.locale.startsWith('ru')
|
|
79
|
+
) {
|
|
80
|
+
// eslint-disable-next-line
|
|
81
|
+
console.warn(statement);
|
|
82
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SC_VERSION } from './constants';
|
|
2
|
+
import createGlobalStyle from './constructors/createGlobalStyle';
|
|
3
|
+
import css from './constructors/css';
|
|
4
|
+
import keyframes from './constructors/keyframes';
|
|
5
|
+
import withTheme from './hoc/withTheme';
|
|
6
|
+
import useTheme from './hooks/useTheme';
|
|
7
|
+
import ServerStyleSheet from './models/ServerStyleSheet';
|
|
8
|
+
import StyleSheetManager, { StyleSheetConsumer, StyleSheetContext } from './models/StyleSheetManager';
|
|
9
|
+
import ThemeProvider, { ThemeConsumer, ThemeContext } from './models/ThemeProvider';
|
|
10
|
+
import isStyledComponent from './utils/isStyledComponent';
|
|
11
|
+
declare global {
|
|
12
|
+
interface Window {
|
|
13
|
+
'__styled-components-init__'?: number;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export * from './secretInternals';
|
|
17
|
+
export { Attrs, DefaultTheme, ShouldForwardProp } from './types';
|
|
18
|
+
export { createGlobalStyle, css, isStyledComponent, keyframes, ServerStyleSheet, StyleSheetConsumer, StyleSheetContext, StyleSheetManager, ThemeConsumer, ThemeContext, ThemeProvider, useTheme, SC_VERSION as version, withTheme, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["src/base.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,iBAAiB,MAAM,kCAAkC,CAAC;AACjE,OAAO,GAAG,MAAM,oBAAoB,CAAC;AACrC,OAAO,SAAS,MAAM,0BAA0B,CAAC;AAEjD,OAAO,SAAS,MAAM,iBAAiB,CAAC;AAExC,OAAO,QAAQ,MAAM,kBAAkB,CAAC;AACxC,OAAO,gBAAgB,MAAM,2BAA2B,CAAC;AACzD,OAAO,iBAAiB,EAAE,EACxB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,4BAA4B,CAAC;AAEpC,OAAO,aAAa,EAAE,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACpF,OAAO,iBAAiB,MAAM,2BAA2B,CAAC;AAI1D,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,4BAA4B,CAAC,EAAE,MAAM,CAAC;KACvC;CACF;AAsCD,cAAc,mBAAmB,CAAC;AAClC,OAAO,EACL,iBAAiB,EACjB,GAAG,EACH,iBAAiB,EACjB,SAAS,EACT,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,aAAa,EACb,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,UAAU,IAAI,OAAO,EACrB,SAAS,GACV,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const SC_ATTR: string;
|
|
2
|
+
export declare const SC_ATTR_ACTIVE = "active";
|
|
3
|
+
export declare const SC_ATTR_VERSION = "data-styled-version";
|
|
4
|
+
export declare const SC_VERSION: string;
|
|
5
|
+
export declare const SPLITTER = "/*!sc*/\n";
|
|
6
|
+
export declare const IS_BROWSER: boolean;
|
|
7
|
+
export declare const DISABLE_SPEEDY: boolean;
|
|
8
|
+
export declare const STATIC_EXECUTION_CONTEXT: {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["src/constants.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,EAAE,MAEP,CAAC;AAEhB,eAAO,MAAM,cAAc,WAAW,CAAC;AACvC,eAAO,MAAM,eAAe,wBAAwB,CAAC;AACrD,eAAO,MAAM,UAAU,QAAc,CAAC;AACtC,eAAO,MAAM,QAAQ,cAAc,CAAC;AAEpC,eAAO,MAAM,UAAU,SAA2D,CAAC;AAEnF,eAAO,MAAM,cAAc,SAgB1B,CAAC;AAGF,eAAO,MAAM,wBAAwB,IAAK,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Attrs, Interpolation, IStyledComponent, IStyledComponentFactory, IStyledNativeComponent, IStyledNativeComponentFactory, NativeTarget, StyledNativeOptions, StyledOptions, StyledTarget, Styles, WebTarget } from '../types';
|
|
2
|
+
export interface NativeStyled<Target extends NativeTarget, OuterProps = unknown, OuterStatics = unknown> {
|
|
3
|
+
<Props = unknown, Statics = unknown>(initialStyles: Styles<OuterProps & Props>, ...interpolations: Exclude<Interpolation<OuterProps & Props>, IStyledComponent<any>>[]): IStyledNativeComponent<Target, OuterProps & Props> & OuterStatics & Statics;
|
|
4
|
+
attrs(attrs: Attrs<OuterProps>): NativeStyled<Target, OuterProps, OuterStatics>;
|
|
5
|
+
withConfig(config: StyledNativeOptions<OuterProps>): NativeStyled<Target, OuterProps, OuterStatics>;
|
|
6
|
+
}
|
|
7
|
+
export interface WebStyled<Target extends WebTarget, OuterProps = unknown, OuterStatics = unknown> {
|
|
8
|
+
<Props = unknown, Statics = unknown>(initialStyles: Styles<OuterProps & Props>, ...interpolations: Interpolation<OuterProps & Props>[]): IStyledComponent<Target, OuterProps & Props> & OuterStatics & Statics;
|
|
9
|
+
attrs(attrs: Attrs<OuterProps>): WebStyled<Target, OuterProps, OuterStatics>;
|
|
10
|
+
withConfig(config: StyledOptions<OuterProps>): WebStyled<Target, OuterProps, OuterStatics>;
|
|
11
|
+
}
|
|
12
|
+
export default function constructWithOptions<Environment extends 'web' | 'native', Target extends StyledTarget, OuterProps = unknown, // used for styled<{}>().attrs() so attrs() gets the generic prop context
|
|
13
|
+
OuterStatics = unknown>(componentConstructor: Environment extends 'web' ? IStyledComponentFactory<any, any, any> : IStyledNativeComponentFactory<any, any, any>, tag: Target, options?: Environment extends 'web' ? StyledOptions<OuterProps> : StyledNativeOptions<OuterProps>): {
|
|
14
|
+
<Props = unknown, Statics = unknown>(initialStyles: Styles<OuterProps & Props>, ...interpolations: Interpolation<OuterProps & Props>[]): ReturnType<Environment extends "web" ? IStyledComponentFactory<Target, OuterProps & Props, OuterStatics & Statics> : IStyledNativeComponentFactory<Target, OuterProps & Props, OuterStatics & Statics>>;
|
|
15
|
+
attrs(attrs: Attrs<OuterProps>): any;
|
|
16
|
+
/**
|
|
17
|
+
* If config methods are called, wrap up a new template function and merge options */
|
|
18
|
+
withConfig(config: Environment extends 'web' ? StyledOptions<OuterProps> : StyledNativeOptions<OuterProps>): any;
|
|
19
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constructWithOptions.d.ts","sourceRoot":"","sources":["../src/constructors/constructWithOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,EACL,aAAa,EACb,gBAAgB,EAChB,uBAAuB,EACvB,sBAAsB,EACtB,6BAA6B,EAC7B,YAAY,EAEZ,mBAAmB,EACnB,aAAa,EACb,YAAY,EACZ,MAAM,EACN,SAAS,EACV,MAAM,UAAU,CAAC;AAKlB,MAAM,WAAW,YAAY,CAC3B,MAAM,SAAS,YAAY,EAC3B,UAAU,GAAG,OAAO,EACpB,YAAY,GAAG,OAAO;IAEtB,CAAC,KAAK,GAAG,OAAO,EAAE,OAAO,GAAG,OAAO,EACjC,aAAa,EAAE,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC,EACzC,GAAG,cAAc,EAAE,OAAO,CAAC,aAAa,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE,gBAAgB,CAAC,GAAG,CAAC,CAAC,EAAE,GACrF,sBAAsB,CAAC,MAAM,EAAE,UAAU,GAAG,KAAK,CAAC,GAAG,YAAY,GAAG,OAAO,CAAC;IAC/E,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,UAAU,EAAE,YAAY,CAAC,CAAC;IAChF,UAAU,CACR,MAAM,EAAE,mBAAmB,CAAC,UAAU,CAAC,GACtC,YAAY,CAAC,MAAM,EAAE,UAAU,EAAE,YAAY,CAAC,CAAC;CACnD;AAED,MAAM,WAAW,SAAS,CAAC,MAAM,SAAS,SAAS,EAAE,UAAU,GAAG,OAAO,EAAE,YAAY,GAAG,OAAO;IAC/F,CAAC,KAAK,GAAG,OAAO,EAAE,OAAO,GAAG,OAAO,EACjC,aAAa,EAAE,MAAM,CAAC,UAAU,GAAG,KAAK,CAAC,EACzC,GAAG,cAAc,EAAE,aAAa,CAAC,UAAU,GAAG,KAAK,CAAC,EAAE,GACrD,gBAAgB,CAAC,MAAM,EAAE,UAAU,GAAG,KAAK,CAAC,GAAG,YAAY,GAAG,OAAO,CAAC;IACzE,KAAK,CAAC,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,YAAY,CAAC,CAAC;IAC7E,UAAU,CAAC,MAAM,EAAE,aAAa,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,YAAY,CAAC,CAAC;CAC5F;AAED,MAAM,CAAC,OAAO,UAAU,oBAAoB,CAC1C,WAAW,SAAS,KAAK,GAAG,QAAQ,EACpC,MAAM,SAAS,YAAY,EAC3B,UAAU,GAAG,OAAO,EAAE,yEAAyE;AAC/F,YAAY,GAAG,OAAO,EAEtB,oBAAoB,EAAE,WAAW,SAAS,KAAK,GAC3C,uBAAuB,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,GACtC,6BAA6B,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAChD,GAAG,EAAE,MAAM,EACX,OAAO,GAAE,WAAW,SAAS,KAAK,GAC9B,aAAa,CAAC,UAAU,CAAC,GACzB,mBAAmB,CAAC,UAAU,CAA6C;;iBA6B9C,MAAM,UAAU,CAAC;IAMlD;yFACqF;uBAE3E,WAAW,SAAS,KAAK,GAAG,cAAc,UAAU,CAAC,GAAG,oBAAoB,UAAU,CAAC;EAQlG"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ExtensibleObject, Interpolation, Styles } from '../types';
|
|
3
|
+
export default function createGlobalStyle<Props = unknown>(strings: Styles<Props>, ...interpolations: Array<Interpolation<Props>>): React.NamedExoticComponent<ExtensibleObject>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createGlobalStyle.d.ts","sourceRoot":"","sources":["../src/constructors/createGlobalStyle.ts"],"names":[],"mappings":"AAAA,OAAO,KAA8C,MAAM,OAAO,CAAC;AAMnE,OAAO,EAEL,gBAAgB,EAChB,aAAa,EAGb,MAAM,EACP,MAAM,UAAU,CAAC;AAMlB,MAAM,CAAC,OAAO,UAAU,iBAAiB,CAAC,KAAK,GAAG,OAAO,EACvD,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,EACtB,GAAG,cAAc,EAAE,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,gDA6E/C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"css.d.ts","sourceRoot":"","sources":["../src/constructors/css.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAA+B,MAAM,EAAE,MAAM,UAAU,CAAC;AAmB9E,MAAM,CAAC,OAAO,UAAU,GAAG,CAAC,KAAK,EAC/B,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,EACrB,GAAG,cAAc,EAAE,aAAa,CAAC,KAAK,CAAC,EAAE;;GA0B1C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyframes.d.ts","sourceRoot":"","sources":["../src/constructors/keyframes.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAC5C,OAAO,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAIjD,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,KAAK,GAAG,OAAO,EAC/C,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,EACtB,GAAG,cAAc,EAAE,KAAK,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,GAC7C,SAAS,CAgBX"}
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { WebTarget } from '../types';
|
|
3
|
+
import { WebStyled } from './constructWithOptions';
|
|
4
|
+
declare const styled: (<Target extends WebTarget>(tag: Target) => {
|
|
5
|
+
<Props = unknown, Statics = unknown>(initialStyles: import("../types").Styles<Props>, ...interpolations: import("../types").Interpolation<Props>[]): import("../types").IStyledComponent<Target, Props> & Statics;
|
|
6
|
+
attrs(attrs: import("../types").Attrs<unknown>): any;
|
|
7
|
+
withConfig(config: import("../types").StyledOptions<unknown>): any;
|
|
8
|
+
}) & {
|
|
9
|
+
a: WebStyled<"a", import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, unknown>;
|
|
10
|
+
abbr: WebStyled<"abbr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
11
|
+
address: WebStyled<"address", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
12
|
+
area: WebStyled<"area", import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, unknown>;
|
|
13
|
+
article: WebStyled<"article", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
14
|
+
aside: WebStyled<"aside", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
15
|
+
audio: WebStyled<"audio", import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, unknown>;
|
|
16
|
+
b: WebStyled<"b", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
17
|
+
base: WebStyled<"base", import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, unknown>;
|
|
18
|
+
bdi: WebStyled<"bdi", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
19
|
+
bdo: WebStyled<"bdo", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
20
|
+
big: WebStyled<"big", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
21
|
+
blockquote: WebStyled<"blockquote", import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
22
|
+
body: WebStyled<"body", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, unknown>;
|
|
23
|
+
br: WebStyled<"br", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, unknown>;
|
|
24
|
+
button: WebStyled<"button", import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, unknown>;
|
|
25
|
+
canvas: WebStyled<"canvas", import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, unknown>;
|
|
26
|
+
caption: WebStyled<"caption", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
27
|
+
cite: WebStyled<"cite", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
28
|
+
code: WebStyled<"code", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
29
|
+
col: WebStyled<"col", import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, unknown>;
|
|
30
|
+
colgroup: WebStyled<"colgroup", import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, unknown>;
|
|
31
|
+
data: WebStyled<"data", import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, unknown>;
|
|
32
|
+
datalist: WebStyled<"datalist", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, unknown>;
|
|
33
|
+
dd: WebStyled<"dd", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
34
|
+
del: WebStyled<"del", import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
35
|
+
details: WebStyled<"details", import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
36
|
+
dfn: WebStyled<"dfn", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
37
|
+
dialog: WebStyled<"dialog", import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, unknown>;
|
|
38
|
+
div: WebStyled<"div", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, unknown>;
|
|
39
|
+
dl: WebStyled<"dl", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, unknown>;
|
|
40
|
+
dt: WebStyled<"dt", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
41
|
+
em: WebStyled<"em", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
42
|
+
embed: WebStyled<"embed", import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, unknown>;
|
|
43
|
+
fieldset: WebStyled<"fieldset", import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, unknown>;
|
|
44
|
+
figcaption: WebStyled<"figcaption", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
45
|
+
figure: WebStyled<"figure", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
46
|
+
footer: WebStyled<"footer", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
47
|
+
form: WebStyled<"form", import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, unknown>;
|
|
48
|
+
h1: WebStyled<"h1", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
49
|
+
h2: WebStyled<"h2", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
50
|
+
h3: WebStyled<"h3", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
51
|
+
h4: WebStyled<"h4", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
52
|
+
h5: WebStyled<"h5", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
53
|
+
h6: WebStyled<"h6", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
54
|
+
head: WebStyled<"head", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, unknown>;
|
|
55
|
+
header: WebStyled<"header", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
56
|
+
hgroup: WebStyled<"hgroup", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
57
|
+
hr: WebStyled<"hr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, unknown>;
|
|
58
|
+
html: WebStyled<"html", import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, unknown>;
|
|
59
|
+
i: WebStyled<"i", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
60
|
+
iframe: WebStyled<"iframe", import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, unknown>;
|
|
61
|
+
img: WebStyled<"img", import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, unknown>;
|
|
62
|
+
input: WebStyled<"input", import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, unknown>;
|
|
63
|
+
ins: WebStyled<"ins", import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement>, unknown>;
|
|
64
|
+
kbd: WebStyled<"kbd", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
65
|
+
keygen: WebStyled<"keygen", import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
66
|
+
label: WebStyled<"label", import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, unknown>;
|
|
67
|
+
legend: WebStyled<"legend", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, unknown>;
|
|
68
|
+
li: WebStyled<"li", import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, unknown>;
|
|
69
|
+
link: WebStyled<"link", import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, unknown>;
|
|
70
|
+
main: WebStyled<"main", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
71
|
+
map: WebStyled<"map", import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, unknown>;
|
|
72
|
+
mark: WebStyled<"mark", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
73
|
+
menu: WebStyled<"menu", import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
74
|
+
menuitem: WebStyled<"menuitem", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
75
|
+
meta: WebStyled<"meta", import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, unknown>;
|
|
76
|
+
meter: WebStyled<"meter", import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
77
|
+
nav: WebStyled<"nav", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
78
|
+
noindex: WebStyled<"noindex", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
79
|
+
noscript: WebStyled<"noscript", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
80
|
+
object: WebStyled<"object", import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, unknown>;
|
|
81
|
+
ol: WebStyled<"ol", import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, unknown>;
|
|
82
|
+
optgroup: WebStyled<"optgroup", import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, unknown>;
|
|
83
|
+
option: WebStyled<"option", import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, unknown>;
|
|
84
|
+
output: WebStyled<"output", import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
85
|
+
p: WebStyled<"p", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, unknown>;
|
|
86
|
+
param: WebStyled<"param", import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, unknown>;
|
|
87
|
+
picture: WebStyled<"picture", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
88
|
+
pre: WebStyled<"pre", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, unknown>;
|
|
89
|
+
progress: WebStyled<"progress", import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, unknown>;
|
|
90
|
+
q: WebStyled<"q", import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, unknown>;
|
|
91
|
+
rp: WebStyled<"rp", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
92
|
+
rt: WebStyled<"rt", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
93
|
+
ruby: WebStyled<"ruby", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
94
|
+
s: WebStyled<"s", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
95
|
+
samp: WebStyled<"samp", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
96
|
+
slot: WebStyled<"slot", import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>, unknown>;
|
|
97
|
+
script: WebStyled<"script", import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, unknown>;
|
|
98
|
+
section: WebStyled<"section", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
99
|
+
select: WebStyled<"select", import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, unknown>;
|
|
100
|
+
small: WebStyled<"small", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
101
|
+
source: WebStyled<"source", import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, unknown>;
|
|
102
|
+
span: WebStyled<"span", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, unknown>;
|
|
103
|
+
strong: WebStyled<"strong", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
104
|
+
style: WebStyled<"style", import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, unknown>;
|
|
105
|
+
sub: WebStyled<"sub", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
106
|
+
summary: WebStyled<"summary", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
107
|
+
sup: WebStyled<"sup", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
108
|
+
table: WebStyled<"table", import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, unknown>;
|
|
109
|
+
template: WebStyled<"template", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, unknown>;
|
|
110
|
+
tbody: WebStyled<"tbody", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, unknown>;
|
|
111
|
+
td: WebStyled<"td", import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, unknown>;
|
|
112
|
+
textarea: WebStyled<"textarea", import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, unknown>;
|
|
113
|
+
tfoot: WebStyled<"tfoot", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, unknown>;
|
|
114
|
+
th: WebStyled<"th", import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, unknown>;
|
|
115
|
+
thead: WebStyled<"thead", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, unknown>;
|
|
116
|
+
time: WebStyled<"time", import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
117
|
+
title: WebStyled<"title", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, unknown>;
|
|
118
|
+
tr: WebStyled<"tr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, unknown>;
|
|
119
|
+
track: WebStyled<"track", import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, unknown>;
|
|
120
|
+
u: WebStyled<"u", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
121
|
+
ul: WebStyled<"ul", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, unknown>;
|
|
122
|
+
var: WebStyled<"var", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
123
|
+
video: WebStyled<"video", import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, unknown>;
|
|
124
|
+
wbr: WebStyled<"wbr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
125
|
+
webview: WebStyled<"webview", import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, unknown>;
|
|
126
|
+
svg: WebStyled<"svg", import("react").SVGProps<SVGSVGElement>, unknown>;
|
|
127
|
+
animate: WebStyled<"animate", import("react").SVGProps<SVGElement>, unknown>;
|
|
128
|
+
animateMotion: WebStyled<"animateMotion", import("react").SVGProps<SVGElement>, unknown>;
|
|
129
|
+
animateTransform: WebStyled<"animateTransform", import("react").SVGProps<SVGElement>, unknown>;
|
|
130
|
+
circle: WebStyled<"circle", import("react").SVGProps<SVGCircleElement>, unknown>;
|
|
131
|
+
clipPath: WebStyled<"clipPath", import("react").SVGProps<SVGClipPathElement>, unknown>;
|
|
132
|
+
defs: WebStyled<"defs", import("react").SVGProps<SVGDefsElement>, unknown>;
|
|
133
|
+
desc: WebStyled<"desc", import("react").SVGProps<SVGDescElement>, unknown>;
|
|
134
|
+
ellipse: WebStyled<"ellipse", import("react").SVGProps<SVGEllipseElement>, unknown>;
|
|
135
|
+
feBlend: WebStyled<"feBlend", import("react").SVGProps<SVGFEBlendElement>, unknown>;
|
|
136
|
+
feColorMatrix: WebStyled<"feColorMatrix", import("react").SVGProps<SVGFEColorMatrixElement>, unknown>;
|
|
137
|
+
feComponentTransfer: WebStyled<"feComponentTransfer", import("react").SVGProps<SVGFEComponentTransferElement>, unknown>;
|
|
138
|
+
feComposite: WebStyled<"feComposite", import("react").SVGProps<SVGFECompositeElement>, unknown>;
|
|
139
|
+
feConvolveMatrix: WebStyled<"feConvolveMatrix", import("react").SVGProps<SVGFEConvolveMatrixElement>, unknown>;
|
|
140
|
+
feDiffuseLighting: WebStyled<"feDiffuseLighting", import("react").SVGProps<SVGFEDiffuseLightingElement>, unknown>;
|
|
141
|
+
feDisplacementMap: WebStyled<"feDisplacementMap", import("react").SVGProps<SVGFEDisplacementMapElement>, unknown>;
|
|
142
|
+
feDistantLight: WebStyled<"feDistantLight", import("react").SVGProps<SVGFEDistantLightElement>, unknown>;
|
|
143
|
+
feDropShadow: WebStyled<"feDropShadow", import("react").SVGProps<SVGFEDropShadowElement>, unknown>;
|
|
144
|
+
feFlood: WebStyled<"feFlood", import("react").SVGProps<SVGFEFloodElement>, unknown>;
|
|
145
|
+
feFuncA: WebStyled<"feFuncA", import("react").SVGProps<SVGFEFuncAElement>, unknown>;
|
|
146
|
+
feFuncB: WebStyled<"feFuncB", import("react").SVGProps<SVGFEFuncBElement>, unknown>;
|
|
147
|
+
feFuncG: WebStyled<"feFuncG", import("react").SVGProps<SVGFEFuncGElement>, unknown>;
|
|
148
|
+
feFuncR: WebStyled<"feFuncR", import("react").SVGProps<SVGFEFuncRElement>, unknown>;
|
|
149
|
+
feGaussianBlur: WebStyled<"feGaussianBlur", import("react").SVGProps<SVGFEGaussianBlurElement>, unknown>;
|
|
150
|
+
feImage: WebStyled<"feImage", import("react").SVGProps<SVGFEImageElement>, unknown>;
|
|
151
|
+
feMerge: WebStyled<"feMerge", import("react").SVGProps<SVGFEMergeElement>, unknown>;
|
|
152
|
+
feMergeNode: WebStyled<"feMergeNode", import("react").SVGProps<SVGFEMergeNodeElement>, unknown>;
|
|
153
|
+
feMorphology: WebStyled<"feMorphology", import("react").SVGProps<SVGFEMorphologyElement>, unknown>;
|
|
154
|
+
feOffset: WebStyled<"feOffset", import("react").SVGProps<SVGFEOffsetElement>, unknown>;
|
|
155
|
+
fePointLight: WebStyled<"fePointLight", import("react").SVGProps<SVGFEPointLightElement>, unknown>;
|
|
156
|
+
feSpecularLighting: WebStyled<"feSpecularLighting", import("react").SVGProps<SVGFESpecularLightingElement>, unknown>;
|
|
157
|
+
feSpotLight: WebStyled<"feSpotLight", import("react").SVGProps<SVGFESpotLightElement>, unknown>;
|
|
158
|
+
feTile: WebStyled<"feTile", import("react").SVGProps<SVGFETileElement>, unknown>;
|
|
159
|
+
feTurbulence: WebStyled<"feTurbulence", import("react").SVGProps<SVGFETurbulenceElement>, unknown>;
|
|
160
|
+
filter: WebStyled<"filter", import("react").SVGProps<SVGFilterElement>, unknown>;
|
|
161
|
+
foreignObject: WebStyled<"foreignObject", import("react").SVGProps<SVGForeignObjectElement>, unknown>;
|
|
162
|
+
g: WebStyled<"g", import("react").SVGProps<SVGGElement>, unknown>;
|
|
163
|
+
image: WebStyled<"image", import("react").SVGProps<SVGImageElement>, unknown>;
|
|
164
|
+
line: WebStyled<"line", import("react").SVGProps<SVGLineElement>, unknown>;
|
|
165
|
+
linearGradient: WebStyled<"linearGradient", import("react").SVGProps<SVGLinearGradientElement>, unknown>;
|
|
166
|
+
marker: WebStyled<"marker", import("react").SVGProps<SVGMarkerElement>, unknown>;
|
|
167
|
+
mask: WebStyled<"mask", import("react").SVGProps<SVGMaskElement>, unknown>;
|
|
168
|
+
metadata: WebStyled<"metadata", import("react").SVGProps<SVGMetadataElement>, unknown>;
|
|
169
|
+
mpath: WebStyled<"mpath", import("react").SVGProps<SVGElement>, unknown>;
|
|
170
|
+
path: WebStyled<"path", import("react").SVGProps<SVGPathElement>, unknown>;
|
|
171
|
+
pattern: WebStyled<"pattern", import("react").SVGProps<SVGPatternElement>, unknown>;
|
|
172
|
+
polygon: WebStyled<"polygon", import("react").SVGProps<SVGPolygonElement>, unknown>;
|
|
173
|
+
polyline: WebStyled<"polyline", import("react").SVGProps<SVGPolylineElement>, unknown>;
|
|
174
|
+
radialGradient: WebStyled<"radialGradient", import("react").SVGProps<SVGRadialGradientElement>, unknown>;
|
|
175
|
+
rect: WebStyled<"rect", import("react").SVGProps<SVGRectElement>, unknown>;
|
|
176
|
+
stop: WebStyled<"stop", import("react").SVGProps<SVGStopElement>, unknown>;
|
|
177
|
+
switch: WebStyled<"switch", import("react").SVGProps<SVGSwitchElement>, unknown>;
|
|
178
|
+
symbol: WebStyled<"symbol", import("react").SVGProps<SVGSymbolElement>, unknown>;
|
|
179
|
+
text: WebStyled<"text", import("react").SVGProps<SVGTextElement>, unknown>;
|
|
180
|
+
textPath: WebStyled<"textPath", import("react").SVGProps<SVGTextPathElement>, unknown>;
|
|
181
|
+
tspan: WebStyled<"tspan", import("react").SVGProps<SVGTSpanElement>, unknown>;
|
|
182
|
+
use: WebStyled<"use", import("react").SVGProps<SVGUseElement>, unknown>;
|
|
183
|
+
view: WebStyled<"view", import("react").SVGProps<SVGViewElement>, unknown>;
|
|
184
|
+
};
|
|
185
|
+
export default styled;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styled.d.ts","sourceRoot":"","sources":["../src/constructors/styled.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,OAA6B,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAKzE,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEX,CAAC;AAQF,eAAe,MAAM,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { SC_VERSION } from './constants';
|
|
2
|
+
import createGlobalStyle from './constructors/createGlobalStyle';
|
|
3
|
+
import css from './constructors/css';
|
|
4
|
+
import keyframes from './constructors/keyframes';
|
|
5
|
+
import withTheme from './hoc/withTheme';
|
|
6
|
+
import useTheme from './hooks/useTheme';
|
|
7
|
+
import ServerStyleSheet from './models/ServerStyleSheet';
|
|
8
|
+
import StyleSheetManager, { StyleSheetConsumer, StyleSheetContext } from './models/StyleSheetManager';
|
|
9
|
+
import ThemeProvider, { ThemeConsumer, ThemeContext } from './models/ThemeProvider';
|
|
10
|
+
import isStyledComponent from './utils/isStyledComponent';
|
|
11
|
+
declare global {
|
|
12
|
+
interface Window {
|
|
13
|
+
'__styled-components-init__'?: number;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export * from './secretInternals';
|
|
17
|
+
export { createGlobalStyle, css, isStyledComponent, keyframes, ServerStyleSheet, StyleSheetConsumer, StyleSheetContext, StyleSheetManager, ThemeConsumer, ThemeContext, ThemeProvider, useTheme, SC_VERSION as version, withTheme, };
|
|
18
|
+
//# sourceMappingURL=base.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,iBAAiB,MAAM,kCAAkC,CAAC;AACjE,OAAO,GAAG,MAAM,oBAAoB,CAAC;AACrC,OAAO,SAAS,MAAM,0BAA0B,CAAC;AAEjD,OAAO,SAAS,MAAM,iBAAiB,CAAC;AAExC,OAAO,QAAQ,MAAM,kBAAkB,CAAC;AACxC,OAAO,gBAAgB,MAAM,2BAA2B,CAAC;AACzD,OAAO,iBAAiB,EAAE,EACxB,kBAAkB,EAClB,iBAAiB,EAClB,MAAM,4BAA4B,CAAC;AAEpC,OAAO,aAAa,EAAE,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACpF,OAAO,iBAAiB,MAAM,2BAA2B,CAAC;AAI1D,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,4BAA4B,CAAC,EAAE,MAAM,CAAC;KACvC;CACF;AAsCD,cAAc,mBAAmB,CAAC;AAClC,OAAO,EACL,iBAAiB,EACjB,GAAG,EACH,iBAAiB,EACjB,SAAS,EACT,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,aAAa,EACb,YAAY,EACZ,aAAa,EACb,QAAQ,EACR,UAAU,IAAI,OAAO,EACrB,SAAS,GACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const SC_ATTR: string;
|
|
2
|
+
export declare const SC_ATTR_ACTIVE = "active";
|
|
3
|
+
export declare const SC_ATTR_VERSION = "data-styled-version";
|
|
4
|
+
export declare const SC_VERSION: string;
|
|
5
|
+
export declare const SPLITTER = "/*!sc*/\n";
|
|
6
|
+
export declare const IS_BROWSER: boolean;
|
|
7
|
+
export declare const DISABLE_SPEEDY: boolean;
|
|
8
|
+
export declare const STATIC_EXECUTION_CONTEXT: {};
|
|
9
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,EAAE,MAEP,CAAC;AAEhB,eAAO,MAAM,cAAc,WAAW,CAAC;AACvC,eAAO,MAAM,eAAe,wBAAwB,CAAC;AACrD,eAAO,MAAM,UAAU,QAAc,CAAC;AACtC,eAAO,MAAM,QAAQ,cAAc,CAAC;AAEpC,eAAO,MAAM,UAAU,SAA2D,CAAC;AAEnF,eAAO,MAAM,cAAc,SAgB1B,CAAC;AAGF,eAAO,MAAM,wBAAwB,IAAK,CAAC"}
|