styled-components 5.3.2 → 6.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +187 -0
- package/dist/base.d.ts +17 -0
- package/dist/constants.d.ts +8 -0
- package/dist/constructors/constructWithOptions.d.ts +19 -0
- package/dist/constructors/createGlobalStyle.d.ts +3 -0
- package/dist/constructors/css.d.ts +4 -0
- package/dist/constructors/keyframes.d.ts +3 -0
- package/dist/constructors/styled.d.ts +185 -0
- package/dist/hoc/withTheme.d.ts +3 -0
- package/dist/hoc/withTheme.spec.d.ts +1 -0
- package/dist/hooks/useTheme.d.ts +3 -0
- package/dist/index-standalone.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/macro/index.d.ts +2 -0
- package/dist/models/ComponentStyle.d.ts +15 -0
- package/dist/models/GlobalStyle.d.ts +11 -0
- package/dist/models/InlineStyle.d.ts +6 -0
- package/dist/models/Keyframes.d.ts +11 -0
- package/dist/models/ServerStyleSheet.d.ts +15 -0
- package/dist/models/StyleSheetManager.d.ts +21 -0
- package/dist/models/StyledComponent.d.ts +3 -0
- package/dist/models/StyledNativeComponent.d.ts +3 -0
- package/dist/models/ThemeProvider.d.ts +17 -0
- package/dist/native/index.d.ts +64 -0
- package/dist/primitives/index.d.ts +22 -0
- package/dist/secretInternals.d.ts +5 -0
- package/dist/sheet/GroupIDAllocator.d.ts +4 -0
- package/dist/sheet/GroupedTag.d.ts +11 -0
- package/dist/sheet/Rehydration.d.ts +3 -0
- package/dist/sheet/Sheet.d.ts +40 -0
- package/dist/sheet/Tag.d.ts +54 -0
- package/dist/sheet/dom.d.ts +4 -0
- package/dist/sheet/index.d.ts +1 -0
- package/dist/sheet/types.d.ts +34 -0
- package/dist/styled-components-macro.cjs.js +1 -1
- package/dist/styled-components-macro.cjs.js.map +1 -1
- package/dist/styled-components-macro.esm.js +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/dist/test/globals.d.ts +2 -0
- package/dist/test/utils.d.ts +191 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/types.d.ts +120 -0
- package/dist/utils/addUnitIfNeeded.d.ts +1 -0
- package/dist/utils/checkDynamicCreation.d.ts +1 -0
- package/dist/utils/createWarnTooManyClasses.d.ts +3 -0
- package/dist/utils/determineTheme.d.ts +2 -0
- package/dist/utils/domElements.d.ts +2 -0
- package/dist/utils/empties.d.ts +3 -0
- package/dist/utils/error.d.ts +5 -0
- package/dist/utils/errors.d.ts +20 -0
- package/dist/utils/escape.d.ts +5 -0
- package/dist/utils/flatten.d.ts +4 -0
- package/dist/utils/generateAlphabeticName.d.ts +1 -0
- package/dist/utils/generateComponentId.d.ts +1 -0
- package/dist/utils/generateDisplayName.d.ts +2 -0
- package/dist/utils/getComponentName.d.ts +2 -0
- package/dist/utils/hash.d.ts +3 -0
- package/dist/utils/hoist.d.ts +51 -0
- package/dist/utils/hyphenateStyleName.d.ts +14 -0
- package/dist/utils/interleave.d.ts +2 -0
- package/dist/utils/isFunction.d.ts +1 -0
- package/dist/utils/isPlainObject.d.ts +1 -0
- package/dist/utils/isStatelessFunction.d.ts +1 -0
- package/dist/utils/isStaticRules.d.ts +2 -0
- package/dist/utils/isStyledComponent.d.ts +2 -0
- package/dist/utils/isTag.d.ts +2 -0
- package/dist/utils/joinStrings.d.ts +4 -0
- package/dist/utils/mixinDeep.d.ts +7 -0
- package/dist/utils/nonce.d.ts +1 -0
- package/dist/utils/stylis.d.ts +9 -0
- package/native/dist/base.d.ts +17 -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 +3 -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 +64 -0
- package/native/dist/native/index.d.ts.map +1 -0
- package/native/dist/primitives/index.d.ts +22 -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 +1157 -6115
- package/native/dist/styled-components.native.cjs.js.map +1 -1
- package/native/dist/styled-components.native.esm.js +1153 -6115
- 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 +120 -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 +72 -44
- package/primitives/dist/base.d.ts +17 -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 +3 -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 +64 -0
- package/primitives/dist/native/index.d.ts.map +1 -0
- package/primitives/dist/primitives/index.d.ts +22 -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 +1107 -6115
- package/primitives/dist/styled-components-primitives.cjs.js.map +1 -1
- package/primitives/dist/styled-components-primitives.esm.js +1101 -6114
- 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 +120 -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
- package/test-utils/{index.js → index.ts} +10 -13
- package/test-utils/{setupTestFramework.js → setupTestFramework.ts} +2 -5
- package/scripts/generateErrorMap.js +0 -22
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const seedNextClassnames: (names: string[]) => string[];
|
|
3
|
+
export declare const resetStyled: (isServer?: boolean) => (<Target extends import("../types").WebTarget>(tag: Target) => {
|
|
4
|
+
<Props = unknown, Statics = unknown>(initialStyles: import("../types").Styles<Props>, ...interpolations: import("../types").Interpolation<Props>[]): import("../types").IStyledComponent<Target, Props> & Statics;
|
|
5
|
+
attrs(attrs: import("../types").Attrs<unknown>): any;
|
|
6
|
+
withConfig(config: import("../types").StyledOptions<unknown>): any;
|
|
7
|
+
}) & {
|
|
8
|
+
a: import("../constructors/constructWithOptions").WebStyled<"a", import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, unknown>;
|
|
9
|
+
abbr: import("../constructors/constructWithOptions").WebStyled<"abbr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
10
|
+
address: import("../constructors/constructWithOptions").WebStyled<"address", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
11
|
+
area: import("../constructors/constructWithOptions").WebStyled<"area", import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, unknown>;
|
|
12
|
+
article: import("../constructors/constructWithOptions").WebStyled<"article", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
13
|
+
aside: import("../constructors/constructWithOptions").WebStyled<"aside", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
14
|
+
audio: import("../constructors/constructWithOptions").WebStyled<"audio", import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, unknown>;
|
|
15
|
+
b: import("../constructors/constructWithOptions").WebStyled<"b", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
16
|
+
base: import("../constructors/constructWithOptions").WebStyled<"base", import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, unknown>;
|
|
17
|
+
bdi: import("../constructors/constructWithOptions").WebStyled<"bdi", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
18
|
+
bdo: import("../constructors/constructWithOptions").WebStyled<"bdo", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
19
|
+
big: import("../constructors/constructWithOptions").WebStyled<"big", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
20
|
+
blockquote: import("../constructors/constructWithOptions").WebStyled<"blockquote", import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
21
|
+
body: import("../constructors/constructWithOptions").WebStyled<"body", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, unknown>;
|
|
22
|
+
br: import("../constructors/constructWithOptions").WebStyled<"br", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, unknown>;
|
|
23
|
+
button: import("../constructors/constructWithOptions").WebStyled<"button", import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, unknown>;
|
|
24
|
+
canvas: import("../constructors/constructWithOptions").WebStyled<"canvas", import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, unknown>;
|
|
25
|
+
caption: import("../constructors/constructWithOptions").WebStyled<"caption", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
26
|
+
cite: import("../constructors/constructWithOptions").WebStyled<"cite", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
27
|
+
code: import("../constructors/constructWithOptions").WebStyled<"code", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
28
|
+
col: import("../constructors/constructWithOptions").WebStyled<"col", import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, unknown>;
|
|
29
|
+
colgroup: import("../constructors/constructWithOptions").WebStyled<"colgroup", import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, unknown>;
|
|
30
|
+
data: import("../constructors/constructWithOptions").WebStyled<"data", import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, unknown>;
|
|
31
|
+
datalist: import("../constructors/constructWithOptions").WebStyled<"datalist", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, unknown>;
|
|
32
|
+
dd: import("../constructors/constructWithOptions").WebStyled<"dd", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
33
|
+
del: import("../constructors/constructWithOptions").WebStyled<"del", import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
34
|
+
details: import("../constructors/constructWithOptions").WebStyled<"details", import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
35
|
+
dfn: import("../constructors/constructWithOptions").WebStyled<"dfn", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
36
|
+
dialog: import("../constructors/constructWithOptions").WebStyled<"dialog", import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, unknown>;
|
|
37
|
+
div: import("../constructors/constructWithOptions").WebStyled<"div", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, unknown>;
|
|
38
|
+
dl: import("../constructors/constructWithOptions").WebStyled<"dl", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, unknown>;
|
|
39
|
+
dt: import("../constructors/constructWithOptions").WebStyled<"dt", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
40
|
+
em: import("../constructors/constructWithOptions").WebStyled<"em", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
41
|
+
embed: import("../constructors/constructWithOptions").WebStyled<"embed", import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, unknown>;
|
|
42
|
+
fieldset: import("../constructors/constructWithOptions").WebStyled<"fieldset", import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, unknown>;
|
|
43
|
+
figcaption: import("../constructors/constructWithOptions").WebStyled<"figcaption", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
44
|
+
figure: import("../constructors/constructWithOptions").WebStyled<"figure", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
45
|
+
footer: import("../constructors/constructWithOptions").WebStyled<"footer", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
46
|
+
form: import("../constructors/constructWithOptions").WebStyled<"form", import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, unknown>;
|
|
47
|
+
h1: import("../constructors/constructWithOptions").WebStyled<"h1", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
48
|
+
h2: import("../constructors/constructWithOptions").WebStyled<"h2", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
49
|
+
h3: import("../constructors/constructWithOptions").WebStyled<"h3", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
50
|
+
h4: import("../constructors/constructWithOptions").WebStyled<"h4", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
51
|
+
h5: import("../constructors/constructWithOptions").WebStyled<"h5", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
52
|
+
h6: import("../constructors/constructWithOptions").WebStyled<"h6", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, unknown>;
|
|
53
|
+
head: import("../constructors/constructWithOptions").WebStyled<"head", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, unknown>;
|
|
54
|
+
header: import("../constructors/constructWithOptions").WebStyled<"header", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
55
|
+
hgroup: import("../constructors/constructWithOptions").WebStyled<"hgroup", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
56
|
+
hr: import("../constructors/constructWithOptions").WebStyled<"hr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, unknown>;
|
|
57
|
+
html: import("../constructors/constructWithOptions").WebStyled<"html", import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, unknown>;
|
|
58
|
+
i: import("../constructors/constructWithOptions").WebStyled<"i", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
59
|
+
iframe: import("../constructors/constructWithOptions").WebStyled<"iframe", import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, unknown>;
|
|
60
|
+
img: import("../constructors/constructWithOptions").WebStyled<"img", import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, unknown>;
|
|
61
|
+
input: import("../constructors/constructWithOptions").WebStyled<"input", import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, unknown>;
|
|
62
|
+
ins: import("../constructors/constructWithOptions").WebStyled<"ins", import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement>, unknown>;
|
|
63
|
+
kbd: import("../constructors/constructWithOptions").WebStyled<"kbd", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
64
|
+
keygen: import("../constructors/constructWithOptions").WebStyled<"keygen", import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
65
|
+
label: import("../constructors/constructWithOptions").WebStyled<"label", import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, unknown>;
|
|
66
|
+
legend: import("../constructors/constructWithOptions").WebStyled<"legend", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, unknown>;
|
|
67
|
+
li: import("../constructors/constructWithOptions").WebStyled<"li", import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, unknown>;
|
|
68
|
+
link: import("../constructors/constructWithOptions").WebStyled<"link", import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, unknown>;
|
|
69
|
+
main: import("../constructors/constructWithOptions").WebStyled<"main", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
70
|
+
map: import("../constructors/constructWithOptions").WebStyled<"map", import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, unknown>;
|
|
71
|
+
mark: import("../constructors/constructWithOptions").WebStyled<"mark", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
72
|
+
menu: import("../constructors/constructWithOptions").WebStyled<"menu", import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
73
|
+
menuitem: import("../constructors/constructWithOptions").WebStyled<"menuitem", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
74
|
+
meta: import("../constructors/constructWithOptions").WebStyled<"meta", import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, unknown>;
|
|
75
|
+
meter: import("../constructors/constructWithOptions").WebStyled<"meter", import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
76
|
+
nav: import("../constructors/constructWithOptions").WebStyled<"nav", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
77
|
+
noindex: import("../constructors/constructWithOptions").WebStyled<"noindex", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
78
|
+
noscript: import("../constructors/constructWithOptions").WebStyled<"noscript", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
79
|
+
object: import("../constructors/constructWithOptions").WebStyled<"object", import("react").DetailedHTMLProps<import("react").ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>, unknown>;
|
|
80
|
+
ol: import("../constructors/constructWithOptions").WebStyled<"ol", import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, unknown>;
|
|
81
|
+
optgroup: import("../constructors/constructWithOptions").WebStyled<"optgroup", import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, unknown>;
|
|
82
|
+
option: import("../constructors/constructWithOptions").WebStyled<"option", import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, unknown>;
|
|
83
|
+
output: import("../constructors/constructWithOptions").WebStyled<"output", import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
84
|
+
p: import("../constructors/constructWithOptions").WebStyled<"p", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, unknown>;
|
|
85
|
+
param: import("../constructors/constructWithOptions").WebStyled<"param", import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, unknown>;
|
|
86
|
+
picture: import("../constructors/constructWithOptions").WebStyled<"picture", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
87
|
+
pre: import("../constructors/constructWithOptions").WebStyled<"pre", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, unknown>;
|
|
88
|
+
progress: import("../constructors/constructWithOptions").WebStyled<"progress", import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, unknown>;
|
|
89
|
+
q: import("../constructors/constructWithOptions").WebStyled<"q", import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, unknown>;
|
|
90
|
+
rp: import("../constructors/constructWithOptions").WebStyled<"rp", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
91
|
+
rt: import("../constructors/constructWithOptions").WebStyled<"rt", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
92
|
+
ruby: import("../constructors/constructWithOptions").WebStyled<"ruby", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
93
|
+
s: import("../constructors/constructWithOptions").WebStyled<"s", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
94
|
+
samp: import("../constructors/constructWithOptions").WebStyled<"samp", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
95
|
+
slot: import("../constructors/constructWithOptions").WebStyled<"slot", import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>, unknown>;
|
|
96
|
+
script: import("../constructors/constructWithOptions").WebStyled<"script", import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, unknown>;
|
|
97
|
+
section: import("../constructors/constructWithOptions").WebStyled<"section", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
98
|
+
select: import("../constructors/constructWithOptions").WebStyled<"select", import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, unknown>;
|
|
99
|
+
small: import("../constructors/constructWithOptions").WebStyled<"small", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
100
|
+
source: import("../constructors/constructWithOptions").WebStyled<"source", import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, unknown>;
|
|
101
|
+
span: import("../constructors/constructWithOptions").WebStyled<"span", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, unknown>;
|
|
102
|
+
strong: import("../constructors/constructWithOptions").WebStyled<"strong", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
103
|
+
style: import("../constructors/constructWithOptions").WebStyled<"style", import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, unknown>;
|
|
104
|
+
sub: import("../constructors/constructWithOptions").WebStyled<"sub", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
105
|
+
summary: import("../constructors/constructWithOptions").WebStyled<"summary", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
106
|
+
sup: import("../constructors/constructWithOptions").WebStyled<"sup", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
107
|
+
table: import("../constructors/constructWithOptions").WebStyled<"table", import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, unknown>;
|
|
108
|
+
template: import("../constructors/constructWithOptions").WebStyled<"template", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, unknown>;
|
|
109
|
+
tbody: import("../constructors/constructWithOptions").WebStyled<"tbody", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, unknown>;
|
|
110
|
+
td: import("../constructors/constructWithOptions").WebStyled<"td", import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, unknown>;
|
|
111
|
+
textarea: import("../constructors/constructWithOptions").WebStyled<"textarea", import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, unknown>;
|
|
112
|
+
tfoot: import("../constructors/constructWithOptions").WebStyled<"tfoot", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, unknown>;
|
|
113
|
+
th: import("../constructors/constructWithOptions").WebStyled<"th", import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, unknown>;
|
|
114
|
+
thead: import("../constructors/constructWithOptions").WebStyled<"thead", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, unknown>;
|
|
115
|
+
time: import("../constructors/constructWithOptions").WebStyled<"time", import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
116
|
+
title: import("../constructors/constructWithOptions").WebStyled<"title", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, unknown>;
|
|
117
|
+
tr: import("../constructors/constructWithOptions").WebStyled<"tr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, unknown>;
|
|
118
|
+
track: import("../constructors/constructWithOptions").WebStyled<"track", import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, unknown>;
|
|
119
|
+
u: import("../constructors/constructWithOptions").WebStyled<"u", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
120
|
+
ul: import("../constructors/constructWithOptions").WebStyled<"ul", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, unknown>;
|
|
121
|
+
var: import("../constructors/constructWithOptions").WebStyled<"var", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
122
|
+
video: import("../constructors/constructWithOptions").WebStyled<"video", import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, unknown>;
|
|
123
|
+
wbr: import("../constructors/constructWithOptions").WebStyled<"wbr", import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, unknown>;
|
|
124
|
+
webview: import("../constructors/constructWithOptions").WebStyled<"webview", import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, unknown>;
|
|
125
|
+
svg: import("../constructors/constructWithOptions").WebStyled<"svg", import("react").SVGProps<SVGSVGElement>, unknown>;
|
|
126
|
+
animate: import("../constructors/constructWithOptions").WebStyled<"animate", import("react").SVGProps<SVGElement>, unknown>;
|
|
127
|
+
animateMotion: import("../constructors/constructWithOptions").WebStyled<"animateMotion", import("react").SVGProps<SVGElement>, unknown>;
|
|
128
|
+
animateTransform: import("../constructors/constructWithOptions").WebStyled<"animateTransform", import("react").SVGProps<SVGElement>, unknown>;
|
|
129
|
+
circle: import("../constructors/constructWithOptions").WebStyled<"circle", import("react").SVGProps<SVGCircleElement>, unknown>;
|
|
130
|
+
clipPath: import("../constructors/constructWithOptions").WebStyled<"clipPath", import("react").SVGProps<SVGClipPathElement>, unknown>;
|
|
131
|
+
defs: import("../constructors/constructWithOptions").WebStyled<"defs", import("react").SVGProps<SVGDefsElement>, unknown>;
|
|
132
|
+
desc: import("../constructors/constructWithOptions").WebStyled<"desc", import("react").SVGProps<SVGDescElement>, unknown>;
|
|
133
|
+
ellipse: import("../constructors/constructWithOptions").WebStyled<"ellipse", import("react").SVGProps<SVGEllipseElement>, unknown>;
|
|
134
|
+
feBlend: import("../constructors/constructWithOptions").WebStyled<"feBlend", import("react").SVGProps<SVGFEBlendElement>, unknown>;
|
|
135
|
+
feColorMatrix: import("../constructors/constructWithOptions").WebStyled<"feColorMatrix", import("react").SVGProps<SVGFEColorMatrixElement>, unknown>;
|
|
136
|
+
feComponentTransfer: import("../constructors/constructWithOptions").WebStyled<"feComponentTransfer", import("react").SVGProps<SVGFEComponentTransferElement>, unknown>;
|
|
137
|
+
feComposite: import("../constructors/constructWithOptions").WebStyled<"feComposite", import("react").SVGProps<SVGFECompositeElement>, unknown>;
|
|
138
|
+
feConvolveMatrix: import("../constructors/constructWithOptions").WebStyled<"feConvolveMatrix", import("react").SVGProps<SVGFEConvolveMatrixElement>, unknown>;
|
|
139
|
+
feDiffuseLighting: import("../constructors/constructWithOptions").WebStyled<"feDiffuseLighting", import("react").SVGProps<SVGFEDiffuseLightingElement>, unknown>;
|
|
140
|
+
feDisplacementMap: import("../constructors/constructWithOptions").WebStyled<"feDisplacementMap", import("react").SVGProps<SVGFEDisplacementMapElement>, unknown>;
|
|
141
|
+
feDistantLight: import("../constructors/constructWithOptions").WebStyled<"feDistantLight", import("react").SVGProps<SVGFEDistantLightElement>, unknown>;
|
|
142
|
+
feDropShadow: import("../constructors/constructWithOptions").WebStyled<"feDropShadow", import("react").SVGProps<SVGFEDropShadowElement>, unknown>;
|
|
143
|
+
feFlood: import("../constructors/constructWithOptions").WebStyled<"feFlood", import("react").SVGProps<SVGFEFloodElement>, unknown>;
|
|
144
|
+
feFuncA: import("../constructors/constructWithOptions").WebStyled<"feFuncA", import("react").SVGProps<SVGFEFuncAElement>, unknown>;
|
|
145
|
+
feFuncB: import("../constructors/constructWithOptions").WebStyled<"feFuncB", import("react").SVGProps<SVGFEFuncBElement>, unknown>;
|
|
146
|
+
feFuncG: import("../constructors/constructWithOptions").WebStyled<"feFuncG", import("react").SVGProps<SVGFEFuncGElement>, unknown>;
|
|
147
|
+
feFuncR: import("../constructors/constructWithOptions").WebStyled<"feFuncR", import("react").SVGProps<SVGFEFuncRElement>, unknown>;
|
|
148
|
+
feGaussianBlur: import("../constructors/constructWithOptions").WebStyled<"feGaussianBlur", import("react").SVGProps<SVGFEGaussianBlurElement>, unknown>;
|
|
149
|
+
feImage: import("../constructors/constructWithOptions").WebStyled<"feImage", import("react").SVGProps<SVGFEImageElement>, unknown>;
|
|
150
|
+
feMerge: import("../constructors/constructWithOptions").WebStyled<"feMerge", import("react").SVGProps<SVGFEMergeElement>, unknown>;
|
|
151
|
+
feMergeNode: import("../constructors/constructWithOptions").WebStyled<"feMergeNode", import("react").SVGProps<SVGFEMergeNodeElement>, unknown>;
|
|
152
|
+
feMorphology: import("../constructors/constructWithOptions").WebStyled<"feMorphology", import("react").SVGProps<SVGFEMorphologyElement>, unknown>;
|
|
153
|
+
feOffset: import("../constructors/constructWithOptions").WebStyled<"feOffset", import("react").SVGProps<SVGFEOffsetElement>, unknown>;
|
|
154
|
+
fePointLight: import("../constructors/constructWithOptions").WebStyled<"fePointLight", import("react").SVGProps<SVGFEPointLightElement>, unknown>;
|
|
155
|
+
feSpecularLighting: import("../constructors/constructWithOptions").WebStyled<"feSpecularLighting", import("react").SVGProps<SVGFESpecularLightingElement>, unknown>;
|
|
156
|
+
feSpotLight: import("../constructors/constructWithOptions").WebStyled<"feSpotLight", import("react").SVGProps<SVGFESpotLightElement>, unknown>;
|
|
157
|
+
feTile: import("../constructors/constructWithOptions").WebStyled<"feTile", import("react").SVGProps<SVGFETileElement>, unknown>;
|
|
158
|
+
feTurbulence: import("../constructors/constructWithOptions").WebStyled<"feTurbulence", import("react").SVGProps<SVGFETurbulenceElement>, unknown>;
|
|
159
|
+
filter: import("../constructors/constructWithOptions").WebStyled<"filter", import("react").SVGProps<SVGFilterElement>, unknown>;
|
|
160
|
+
foreignObject: import("../constructors/constructWithOptions").WebStyled<"foreignObject", import("react").SVGProps<SVGForeignObjectElement>, unknown>;
|
|
161
|
+
g: import("../constructors/constructWithOptions").WebStyled<"g", import("react").SVGProps<SVGGElement>, unknown>;
|
|
162
|
+
image: import("../constructors/constructWithOptions").WebStyled<"image", import("react").SVGProps<SVGImageElement>, unknown>;
|
|
163
|
+
line: import("../constructors/constructWithOptions").WebStyled<"line", import("react").SVGProps<SVGLineElement>, unknown>;
|
|
164
|
+
linearGradient: import("../constructors/constructWithOptions").WebStyled<"linearGradient", import("react").SVGProps<SVGLinearGradientElement>, unknown>;
|
|
165
|
+
marker: import("../constructors/constructWithOptions").WebStyled<"marker", import("react").SVGProps<SVGMarkerElement>, unknown>;
|
|
166
|
+
mask: import("../constructors/constructWithOptions").WebStyled<"mask", import("react").SVGProps<SVGMaskElement>, unknown>;
|
|
167
|
+
metadata: import("../constructors/constructWithOptions").WebStyled<"metadata", import("react").SVGProps<SVGMetadataElement>, unknown>;
|
|
168
|
+
mpath: import("../constructors/constructWithOptions").WebStyled<"mpath", import("react").SVGProps<SVGElement>, unknown>;
|
|
169
|
+
path: import("../constructors/constructWithOptions").WebStyled<"path", import("react").SVGProps<SVGPathElement>, unknown>;
|
|
170
|
+
pattern: import("../constructors/constructWithOptions").WebStyled<"pattern", import("react").SVGProps<SVGPatternElement>, unknown>;
|
|
171
|
+
polygon: import("../constructors/constructWithOptions").WebStyled<"polygon", import("react").SVGProps<SVGPolygonElement>, unknown>;
|
|
172
|
+
polyline: import("../constructors/constructWithOptions").WebStyled<"polyline", import("react").SVGProps<SVGPolylineElement>, unknown>;
|
|
173
|
+
radialGradient: import("../constructors/constructWithOptions").WebStyled<"radialGradient", import("react").SVGProps<SVGRadialGradientElement>, unknown>;
|
|
174
|
+
rect: import("../constructors/constructWithOptions").WebStyled<"rect", import("react").SVGProps<SVGRectElement>, unknown>;
|
|
175
|
+
stop: import("../constructors/constructWithOptions").WebStyled<"stop", import("react").SVGProps<SVGStopElement>, unknown>;
|
|
176
|
+
switch: import("../constructors/constructWithOptions").WebStyled<"switch", import("react").SVGProps<SVGSwitchElement>, unknown>;
|
|
177
|
+
symbol: import("../constructors/constructWithOptions").WebStyled<"symbol", import("react").SVGProps<SVGSymbolElement>, unknown>;
|
|
178
|
+
text: import("../constructors/constructWithOptions").WebStyled<"text", import("react").SVGProps<SVGTextElement>, unknown>;
|
|
179
|
+
textPath: import("../constructors/constructWithOptions").WebStyled<"textPath", import("react").SVGProps<SVGTextPathElement>, unknown>;
|
|
180
|
+
tspan: import("../constructors/constructWithOptions").WebStyled<"tspan", import("react").SVGProps<SVGTSpanElement>, unknown>;
|
|
181
|
+
use: import("../constructors/constructWithOptions").WebStyled<"use", import("react").SVGProps<SVGUseElement>, unknown>;
|
|
182
|
+
view: import("../constructors/constructWithOptions").WebStyled<"view", import("react").SVGProps<SVGViewElement>, unknown>;
|
|
183
|
+
};
|
|
184
|
+
export declare const rehydrateTestStyles: () => void;
|
|
185
|
+
export declare const stripComments: (str: string) => string;
|
|
186
|
+
export declare const stripWhitespace: (str: string) => string;
|
|
187
|
+
export declare const getCSS: (scope: Document | HTMLElement) => string;
|
|
188
|
+
export declare const expectCSSMatches: (_expectation: string, opts?: {
|
|
189
|
+
ignoreWhitespace: boolean;
|
|
190
|
+
}) => string;
|
|
191
|
+
export declare const getRenderedCSS: () => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.d.ts","../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../src/constants.ts","../node_modules/@types/react/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../node_modules/@types/react/index.d.ts","../src/utils/errors.ts","../src/utils/error.ts","../../../node_modules/@types/shallowequal/index.d.ts","../../../node_modules/@types/stylis/index.d.ts","../src/utils/hash.ts","../src/utils/stylis.ts","../src/models/stylesheetmanager.tsx","../src/models/keyframes.ts","../src/utils/addunitifneeded.ts","../src/utils/getcomponentname.ts","../src/utils/hyphenatestylename.ts","../src/utils/isfunction.ts","../src/utils/isplainobject.ts","../src/utils/isstatelessfunction.ts","../src/utils/isstyledcomponent.ts","../src/utils/flatten.ts","../src/utils/generatealphabeticname.ts","../src/utils/isstaticrules.ts","../src/models/componentstyle.ts","../src/models/themeprovider.tsx","../src/utils/createwarntoomanyclasses.ts","../src/types.ts","../src/utils/empties.ts","../src/sheet/types.ts","../src/sheet/groupedtag.ts","../src/sheet/groupidallocator.ts","../src/sheet/rehydration.ts","../src/utils/nonce.ts","../src/sheet/dom.ts","../src/sheet/tag.ts","../src/sheet/sheet.ts","../src/sheet/index.ts","../src/models/globalstyle.ts","../src/utils/checkdynamiccreation.ts","../src/utils/determinetheme.ts","../src/utils/generatecomponentid.ts","../src/utils/interleave.ts","../src/constructors/css.ts","../src/constructors/createglobalstyle.ts","../src/constructors/keyframes.ts","../src/utils/hoist.ts","../src/hoc/withtheme.tsx","../src/hooks/usetheme.ts","../src/models/serverstylesheet.tsx","../src/secretinternals.ts","../src/base.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../src/global.d.ts","../../../node_modules/@emotion/is-prop-valid/types/index.d.ts","../src/utils/domelements.ts","../src/utils/escape.ts","../src/utils/istag.ts","../src/utils/generatedisplayname.ts","../src/utils/joinstrings.ts","../src/utils/mixindeep.ts","../src/models/styledcomponent.ts","../src/constructors/constructwithoptions.ts","../src/constructors/styled.tsx","../src/index-standalone.ts","../src/index.ts","../../../node_modules/@types/react/global.d.ts","../../../node_modules/@types/react/index.d.ts","../../../node_modules/@types/react-test-renderer/index.d.ts","../src/hoc/withtheme.spec.tsx","../../../node_modules/@types/babel-plugin-macros/index.d.ts","../src/macro/index.ts","../src/macro/test/babel.config.ts","../../../node_modules/source-map/source-map.d.ts","../../../node_modules/postcss/lib/postcss.d.ts","../src/models/inlinestyle.ts","../src/models/stylednativecomponent.ts","../../../node_modules/@types/react-native/globals.d.ts","../../../node_modules/@types/react-native/legacy-properties.d.ts","../../../node_modules/@types/react-native/batchedbridge.d.ts","../../../node_modules/@types/react-native/devtools.d.ts","../../../node_modules/@types/react-native/launchscreen.d.ts","../../../node_modules/@types/react-native/index.d.ts","../src/native/index.ts","../../../node_modules/@types/react-primitives/node_modules/@types/react-native/globals.d.ts","../../../node_modules/@types/react-primitives/node_modules/@types/react-native/legacy-properties.d.ts","../../../node_modules/@types/react-primitives/node_modules/@types/react-native/batchedbridge.d.ts","../../../node_modules/@types/react-primitives/node_modules/@types/react-native/devtools.d.ts","../../../node_modules/@types/react-primitives/node_modules/@types/react-native/launchscreen.d.ts","../../../node_modules/@types/react-primitives/node_modules/@types/react-native/index.d.ts","../../../node_modules/@types/react-primitives/index.d.ts","../src/primitives/index.ts","../src/test/globals.ts","../../../node_modules/@types/js-beautify/index.d.ts","../src/test/utils.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/babel-plugin-tester/index.d.ts","../../../node_modules/@types/cheerio/index.d.ts","../../../node_modules/@types/enzyme/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/react-dom/index.d.ts","../../../node_modules/@types/react-frame-component/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/scheduler/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["2dc8c927c9c162a773c6bb3cdc4f3286c23f10eedc67414028f9cb5951610f60",{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","be2c7522ef4bd9166f8aeea3574a659d1bc777679792496bf687db1c27186126",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"bb2abaec0a3d756fd42b4a05a1dfc2a576522380771be3b090d2130098992095","affectsGlobalScope":true},"e3812064407d7c207d687871c9878954e2c1e28647e4010df4d2178e88ed8a5e","6ae412410cf58baf36d2c922924bf7e6bfbac76c59a0fb853ce788c4d0b674e4","a440a1b0129449cdc6fa715d1998bcd5e914fec1e68b076a4230d71524561d48","df1cfd1b3a49ccd3b1d674fe738cc5fb9b185bbbc11919639a771791bc7f1b70","6645e6fbbcfd9001df7a4041029a30df3d0c7c5b84473cd8acff1d3276e58d52","4bd6f4a98f455dd65e960157772738d0b6b163f58244f42f5628d97ace649f0f","784ccb4a4a151ed3b17ff454895fcda91810c2c998bdae341f038929f3dc13bf","b3b7e804dd2c160b1cb5891622691988411f2ce31305e7884b73118876461e65","8b43f0c154b192b796c1deaae91033ac405cba7f442817ea94fba1dfaf40b9a7","4a717918ae0fe77bb13da0c46105582f26f1b78bc28e675a5200a74b2253fb59","4e4428f949173233726d434897eae09c2e6c69c48b1777cd5b88bbed21913c38","2381d19982774cb17f2a552dec2786e132266aa62136995dfc66a2f85c06da4c","8a27be8a57aead2a79a1827e7ef47f8d51228019d4e2ee4e6f0cd1a4b39271fd","37fcf4492b833484d01e28ddd4048a94b92e5b8f9458b8e0c9a4cfd2566fa777","8ec987a1657ac4f9ef1b36cbed28e29a9bd61fdcfd556d2c075e31f5ac237410","6d3bb049c0578f55b6289cb02b8cfcb226feaeeb53e381d3b022a3d3b1d3af0d","7587ef41d1013242d5fbdedc1a48d83e3f0dcfe83c8f73bce02012d80e218430","d0918950a903a1ac78d6caadbc937830d49b7744fe430b5394dbfca6ec8e42b1","4d3d04879cb3c38d307b6e3d9fe59c45742e7ff92ff020121f6c50f43a66dc2e","2dfbdacc2c5f0661977c86eb6a6c63c312766fc3f57963a045512eaf759a308b","f135804bc028ab9aebf8c2b1c6ff77808981cc47d4319c2f2224ac7cf3ecd1be","326186c930c594645409d22b09538edf471a704818cf49604a234bb7f56a5fb8","ad41e08db2e9e157ee9bf16e403526194bbfbd326a0ad002ed277528abdd6168","8f394103a50a27c1f8d13c747d1858b2bf0503b2f3d859be81b1333ce197e86d","2a359fa9154ed2fad097e72d57317c9b6d27ecfbeb972cf04fb585b71ca75863","ef4c637026d52e2243aeabd79221af9aabc004c96da963d99a1d6fa7f6a50c9e","82556a5f24827435e8ad7c9657cffd3341631deb54da4e39c80654df28aece23","5b7906915831baa6be41f5e194b2fe1b28e99e819486f1dcd88586f6631a7237","ecf18399c7dda358138dd13ee4edb32bdfd297a9df8578acfa793b880db604b7","b6884e4092142ff38d9ccbd430e1ebe8ef2893d0a6a490239fc684e70b4d38cc","24318e86e85224f00e1a1c4d005b5166655b125f0a6ee0a01240d34bbad552f5","e27bbd0b7b7e54b3703765eebb805658672c52752342d8dfaa56820c88fc8333","ecbd8b6330e4d800d4644dd350a7d65cde5635440d47a1dba345ddc16f0bdf06","d99aa855438f63b964f4d2fc10d3a59bca529672a2aed4b1bfb120b03d706ee6","2c29a758a3731619cd9df654047f53873b869cd49545da781d6e882cb2d8521b","ac38403e1fb1c8d34fb97481fce497cc0db13086cf1256c3a20ed41d836243b8","7d829fba0c431ecf3f62a0a9d7bcfe806319ea811e2637bd0fc1d5e4a7c69aab","9ac6fa302dd502e6d02ac0acc73b354dc8e86309215b05abae4976da923b0c47","f96260b1296539598670912a64dcff64063f2b5c179d1fc4410ab423d16bf11d","11f59e42371bf2e8de2fbbc1fc25351242b4914c6ea2c7ff62fca91f1be202d4","9361ae56e80a5e770ef14f6148c0cae324b8e87de1eb9628d8f81bc4190ea2de","3d35e4d3973a1cd1361c485ad4a18ec0737b62e06886a68069edc3b50bbebfb6","e574d85583d7f20dc4df5afaaeeb11c6a02a1022cd2b650554a980d8ce480438","9fd55aa51e7fce77cc9ba3996d69ec5c81afc20c489d0a1a96ea7b85bc5dbbe1","f490eb43084df972e3b48603bebbe2cd05b1c04443bb354de91fd4c2cef52117",{"version":"3a71ae59ef9a04d22e02d3a6a7a254ab5d58e8c33290dfb8ad21ef3a24faee9e","affectsGlobalScope":true},"f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","d0926be95843f8cf5226c94fbab97ae7e9a7fd9c2d562b5ee6272d63f1e3ce59","7ad334804a1d33fb26b63a782aefec3e9de8cbc7c85d9329a57a835c78e94d8d","2c2ee921f076227f235cacc1e29675f9234d91ce79df8381804dd64204208202","7470a275c8d47dfdfb530326143bde1b2e19372222f4348b5337ba8617d7ba5e","cd01c15654be769a0b7b019c270bc254e0664ec69aa36553ef21094c8f934548","4836b6ac716008a345d3612ea69764dfbdb82b10242b47d91d1bce86704f00b1","3d0501e3a3e5685600211a7254127967cfe8e4958b5b15027ee2fb4c101e8ba8","8b33f17f75d0000d80461968a90ad27ec58318542ad9ab05a53fd3dd21bb3d27","8f6d593ffdebd101123203e504b9432fd75a5e1e23dd6e3de5818c48bd14f676","f70deada4b2b9b82c7e3305f533eaf46b0bde62398be3fe079ab3aecd5842ee8","374a6458186f61502c413018780ad6698310c2ef958df9002376c1f4d9d2283b","94d023f4aa0e5e2b10d255cf68dc88a11489581253c66eb94c2164ce796b4583","fd1e65f7e754941285f087cc6b51500fb28446c792afc7c00c6969a2c519ebf9",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},{"version":"aa0f9b45668ef0efaed8f6a9cc606d5151804f6bccd4e36129f99ee9f45ff472","affectsGlobalScope":true},"60aaac5fb1858fbd4c4eb40e01706eb227eed9eca5c665564bd146971280dbd3","13dc07602449fd2efb401577f3b4154e754dca6c645e85cb6ba3ff197e49d6b2","063857f728dfa41428c5a9a4a243e6bfb3a9e046916ce0fe9f864da9401c7d2f","e16359630b327087d15996a9adae312a2d027ba73de417546b777a3ec4aef3cb",{"version":"2fe993862c756df0406caf3e0ff8aeabb333446ab916846b1175560da6d22ab9","affectsGlobalScope":true},"2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","aec0cabbdfacf43db998d8e50ee6f1e72131d24b5018dfb84f14806717baa0a6","aaec543a779499fe99943f9e5bc433f32eb2d2b99bcd23f44aacf057ace3116b","291e8200ae85d4e19feb6765daa67dbc14c1139e46a0d303f4e6f45aaa44c232",{"version":"6320ff8ec9e626bcfc539fe80d67499fa398dc10ecf73f6979a43d369c24cf1f","affectsGlobalScope":true},"818a9a35cf844bd8380e9273b8ed82023c614164d0975f096b8c9b680730cbc3",{"version":"efd32b1ab5e3897f64ed3d0f236657c3c9c7bcc669449e608ebee1ad9dbe396a","affectsGlobalScope":true},"7fb3279c4bf36d993b1e8b339cded5908f7b2ec1b6e0ac2feaa842b5b6b143f1","234b97ac9af46707f2315ff395a9b340d37b7dbc8290d91f5d6bd97189d220f3",{"version":"ca58e41b3898dda7bb3397dd05d8a29982ef35e1ef4189bf14376f88bcf6ec00","affectsGlobalScope":true},"d34a39ebfb7e5f56d532af525ce89dd62e042be92dfb225e7cf4cacc188c0469",{"version":"44ae1263bb526f9f08419f9532e10d39b9cca5564f0481362ce8b4cbf1def8d9","affectsGlobalScope":true},"818a9a35cf844bd8380e9273b8ed82023c614164d0975f096b8c9b680730cbc3",{"version":"496293b62091a5bfb97dac7a0055f3e73dfc7b8d8c220000ecf68635c0bef790","affectsGlobalScope":true},"715ee74e86e7388d2923cd6377fafcf3f86bea534d5cb4c827a1603383fabdb3","234b97ac9af46707f2315ff395a9b340d37b7dbc8290d91f5d6bd97189d220f3",{"version":"0269d23aa40f8dc261ac0d1358483a28d5c171997626490309369a67a00351d8","affectsGlobalScope":true},"e68704840cb9554540a1913e7a352ff7421ce05769747d7827e7e93cc83a2f8f","36f010ffdde4c1b20f3d465d4efcebe4153afce0c2067eae33ac6ca1455e70c3",{"version":"fa96f05ff7691e59614d1dc94fd1b577a43947b9529b5b2e95340ef9bd5a8847","affectsGlobalScope":true},"d1f1f5d242211b8fac9e851f81788804b5e70ccbc235f6b554c040d5b8189a9e","2aa0d53b35abcfc8df4fb6712b927b2a0782c9d0f4a8c69ff944b6d025856cbf","4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"e71aa3dcef67c4e22d57a8ff085806b986818c27d515a6c548547dbb06153c01","affectsGlobalScope":true},"64e2803203b14d7f104f570f2152fde13abb6edc17b2ddb33d81ad86cf43d494","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9b2a8f604e7c0482a9061755f00b287cc99bd8718dc82d8207dd74c599b6dc43","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","64576aba4ff801004122056ccd049f0597aa471dcfd7670a6a0b877ee8dd97c0","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"cc829932ffaf5c49092f878bec18af1fa5d8591b45a45e2b7f757f793cb3b4ed","47db10fdc4e76c4f4598cf7c91ba6bfde6cf6d8082c51860fe751643bf359739","53d2c24a3cbc00a88ebaf8ab8e1b6e206bc3a6647d544f877241684ea3d484e3","3be5ff21956db30c674bf2a98eb348e4ce7b4635cd9673413d86fbce761b77d8","0ce99c641ea20b0c0c09d093fc28f18f5ab31dc80033707a1ac3154399de2559","f0c33a0b325d3499cc9aded7d32886f998c9a27b465097c6cc136944d0aafdaa","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d4a0c39ece1e7c99d701e9c02a7dde8e3b75e03405f78d58d48dfea797ddbbac","1606ea615c0a5ea9f5c1376a33e34c0e1112e8dee31a5b3b8a74ce781893aa6f","9fef9de633d01cb7f01f68195626a890ededd25cf96a1e785617d08c8668230d","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","82e1723b20fa0b15a7da0d1a03fec88348f82f640f7a2f308d6c0fac780cfc7c","605c24042a348b033b30121cff64380eb5d6d82853c5608f1f94ef72385cf5c9","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"79d679a1d56574cc5cef92be1f0e5e8fb4af62fb55933b236670a0e0a23c83f6","ced6b5d728596e292b6312a4f1139931bc28955f4a248c268c2f4144b5624c93","51affebffd34ee783f8b817571a276af6e9d89df5ffa4fc123936508eba59dd6",{"version":"745456954d9f4a5054c30b0da14049719a97ed6d9aa819cdc0d3e68f768b0bcb","affectsGlobalScope":true},"b1b1adc57093310531ddf3f78b21bda16c30f7319088b0981449476a6616cff3","9f3554130bc117f19a9d4186bd83a97145c71818c1b1c51424967e0f607324d5","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27","3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","782abf371043fc65a987f835a3acfd80602a30c3e2122f6d5756a86bf6913352","509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","82251920b05f30981c9a4109cb5f3169dce4b477effc845c6d781044a30e7672","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","b4dfafe583b829a382edccbe32303535d0785f0c02ba7f04418e2a81de97af8a","bafa568523f5be851e6b90841ce06b3ec12ba728097c17c55a995a868f87c723","2880728492d6a6baa55411d14cc42fa55714a24b1d1d27ff9a8a610abd47c761","3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"declarationDir":"..","downlevelIteration":true,"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"inlineSources":true,"jsx":2,"module":99,"noEmitHelpers":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":1},"fileIdsList":[[85,117,118,119,124,125,126],[117,118,119,124,125,126],[90,117,118,119,124,125,126],[90,117,118,119,124,125,126,177],[85,86,87,88,89,117,118,119,124,125,126],[85,87,117,118,119,124,125,126],[117,118,119,124,125,126,176],[105,117,118,119,124,125,126,179],[117,118,119,124,125,126,146,176],[117,118,119,124,125,126,183],[117,118,119,124,125,126,184],[117,118,119,124,125,126,190,192],[117,118,119,124,125,126,195,197,198,199,200,201,202,203,204,205,206,207],[117,118,119,124,125,126,195,196,198,199,200,201,202,203,204,205,206,207],[117,118,119,124,125,126,196,197,198,199,200,201,202,203,204,205,206,207],[117,118,119,124,125,126,195,196,197,199,200,201,202,203,204,205,206,207],[117,118,119,124,125,126,195,196,197,198,200,201,202,203,204,205,206,207],[117,118,119,124,125,126,195,196,197,198,199,201,202,203,204,205,206,207],[117,118,119,124,125,126,195,196,197,198,199,200,202,203,204,205,206,207],[117,118,119,124,125,126,195,196,197,198,199,200,201,203,204,205,206,207],[117,118,119,124,125,126,195,196,197,198,199,200,201,202,204,205,206,207],[117,118,119,124,125,126,195,196,197,198,199,200,201,202,203,205,206,207],[117,118,119,124,125,126,195,196,197,198,199,200,201,202,203,204,206,207],[117,118,119,124,125,126,195,196,197,198,199,200,201,202,203,204,205,207],[117,118,119,124,125,126,195,196,197,198,199,200,201,202,203,204,205,206],[105,117,118,119,124,125,126],[118,119,124,125,126],[105,115,116,117,118,119,124,125,126],[117,118,124,125,126],[116,117,118,119,120,124,125,126],[105,117,118,119,123,124,125,126,127],[117,118,119,125,126],[105,117,118,119,122,123,124,125,126],[117,118,119,124,125],[117,118,119,123,124,125,126,127],[35,36,37,104,117,118,119,124,125,126],[117,118,119,124,125,126,215],[117,118,119,124,125,126,186,187],[117,118,119,124,125,126,186,187,188,189],[111,117,118,119,124,125,126],[117,118,119,124,125,126,191],[117,118,119,124,125,126,133],[117,118,119,124,125,126,135],[117,118,119,124,125,126,136,141],[117,118,119,124,125,126,137,145,146,153,162],[117,118,119,124,125,126,137,138,145,153],[117,118,119,124,125,126,139,169],[117,118,119,124,125,126,140,141,146,154],[117,118,119,124,125,126,141,162],[117,118,119,124,125,126,142,143,145,153],[117,118,119,124,125,126,143],[117,118,119,124,125,126,144,145],[117,118,119,124,125,126,145],[117,118,119,124,125,126,145,146,147,162,168],[117,118,119,124,125,126,146,147],[117,118,119,124,125,126,148,153,162,168],[117,118,119,124,125,126,145,146,148,149,153,162,165,168],[117,118,119,124,125,126,148,150,162,165,168],[117,118,119,124,125,126,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175],[117,118,119,124,125,126,145,151],[117,118,119,124,125,126,152,168],[117,118,119,124,125,126,143,145,153,162],[117,118,119,124,125,126,154],[117,118,119,124,125,126,155],[117,118,119,124,125,126,135,156],[117,118,119,124,125,126,157,167],[117,118,119,124,125,126,158],[117,118,119,124,125,126,159],[117,118,119,124,125,126,145,160],[117,118,119,124,125,126,160,161,169,171],[117,118,119,124,125,126,145,162],[117,118,119,124,125,126,163],[117,118,119,124,125,126,164],[117,118,119,124,125,126,153,162,165],[117,118,119,124,125,126,166],[117,118,119,124,125,126,153,167],[117,118,119,124,125,126,159,168],[117,118,119,124,125,126,169],[117,118,119,124,125,126,162,170],[117,118,119,124,125,126,171],[117,118,119,124,125,126,172],[117,118,119,124,125,126,145,147,162,168,171,173],[117,118,119,124,125,126,162,174],[34,35,36,37,117,118,119,124,125,126],[32,33,45,53,58,76,77,78,80,81,82,83,117,118,119,124,125,126],[32,117,118,119,124,125,126],[32,40,60,61,76,117,118,119,124,125,126],[32,33,38,45,58,60,70,71,72,73,74,76,117,118,119,124,125,126],[32,50,51,54,60,61,75,117,118,119,124,125,126],[32,46,60,74,76,117,118,119,124,125,126],[32,60,93,99,100,117,118,119,124,125,126],[32,38,58,60,80,106,117,118,119,124,125,126],[32,38,48,58,60,73,79,117,118,119,124,125,126],[32,38,58,117,118,119,124,125,126],[32,84,101,117,118,119,124,125,126],[32,89,90,91,108,117,118,119,124,125,126],[32,33,43,54,55,56,60,70,117,118,119,124,125,126],[32,54,56,60,70,117,118,119,124,125,126],[32,54,60,74,91,112,117,118,119,124,125,126],[32,40,45,60,70,117,118,119,124,125,126],[32,33,38,40,45,66,70,117,118,119,124,125,126,162],[32,33,38,45,48,53,57,58,59,60,61,72,73,74,79,92,93,94,95,96,97,98,117,118,119,124,125,126],[32,38,53,58,60,61,73,79,96,98,117,118,119,124,125,126],[32,38,41,44,60,70,117,118,119,124,125,126],[32,38,40,50,117,118,119,124,125,126],[32,38,53,58,60,76,80,81,100,113,114,116,117,118,119,120,124,125,126],[32,53,58,60,76,80,81,100,113,114,117,118,119,124,125,126,128],[32,45,70,117,118,119,124,125,126],[32,33,40,66,117,118,119,124,125,126],[32,33,40,62,117,118,119,124,125,126],[32,40,117,118,119,124,125,126],[32,69,117,118,119,124,125,126],[32,33,62,64,117,118,119,124,125,126],[32,33,61,62,63,64,65,68,117,118,119,124,125,126],[32,62,67,117,118,119,124,125,126],[32,40,45,64,65,101,117,118,119,124,125,126,131],[32,38,57,58,59,117,118,119,124,125,126],[32,91,117,118,119,124,125,126],[32,38,117,118,119,124,125,126],[32,60,117,118,119,124,125,126],[32,60,61,117,118,119,124,125,126],[32,39,60,117,118,119,124,125,126],[32,46,47,48,49,50,51,52,53,60,70,117,118,119,124,125,126],[32,43,55,117,118,119,124,125,126],[32,48,60,95,117,118,119,124,125,126],[32,38,60,117,118,119,124,125,126],[32,50,53,60,117,118,119,124,125,126],[32,51,60,117,118,119,124,125,126],[32,40,42,43,60,61,117,118,119,124,125,126]],"referencedMap":[[87,1],[85,2],[92,2],[108,3],[178,4],[90,5],[86,1],[88,6],[89,1],[179,7],[180,8],[181,2],[182,9],[183,2],[184,10],[185,11],[193,12],[131,2],[194,2],[196,13],[197,14],[195,15],[198,16],[199,17],[200,18],[201,19],[202,20],[203,21],[204,22],[205,23],[206,24],[207,25],[208,2],[209,2],[177,2],[36,2],[210,26],[211,26],[117,27],[118,2],[115,2],[120,28],[119,29],[116,30],[128,31],[124,32],[125,2],[122,2],[127,33],[126,34],[123,35],[106,26],[104,2],[105,36],[212,7],[213,2],[37,2],[41,2],[214,2],[42,2],[215,2],[216,37],[35,2],[186,2],[188,38],[190,39],[189,38],[187,2],[112,40],[192,41],[191,2],[111,2],[32,2],[1,2],[7,2],[11,2],[10,2],[3,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[4,2],[5,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[6,2],[27,2],[28,2],[29,2],[30,2],[2,2],[31,2],[9,2],[8,2],[133,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,50],[143,51],[144,52],[145,53],[146,54],[147,55],[134,2],[175,2],[148,56],[149,57],[150,58],[176,59],[151,60],[152,61],[153,62],[154,63],[155,64],[156,65],[157,66],[158,67],[159,68],[160,69],[161,70],[162,71],[163,72],[164,73],[165,74],[166,75],[167,76],[168,77],[169,78],[170,79],[171,80],[172,81],[173,82],[174,83],[34,2],[38,84],[84,85],[33,86],[100,87],[77,88],[76,89],[78,90],[101,91],[91,3],[107,92],[80,93],[81,94],[102,95],[103,95],[109,96],[110,2],[57,97],[71,98],[113,99],[46,100],[82,101],[99,102],[114,103],[45,104],[58,105],[121,106],[129,107],[83,108],[67,109],[63,110],[64,111],[70,112],[65,113],[69,114],[68,115],[62,86],[130,2],[132,116],[60,117],[47,118],[72,119],[59,120],[73,121],[93,86],[61,120],[40,122],[39,86],[94,86],[54,123],[55,86],[74,124],[96,125],[48,120],[43,86],[79,126],[49,86],[75,120],[50,86],[51,86],[52,86],[56,127],[53,120],[95,120],[97,86],[98,128],[66,86],[44,129]],"exportedModulesMap":[[87,1],[85,2],[92,2],[108,3],[178,4],[90,5],[86,1],[88,6],[89,1],[179,7],[180,8],[181,2],[182,9],[183,2],[184,10],[185,11],[193,12],[131,2],[194,2],[196,13],[197,14],[195,15],[198,16],[199,17],[200,18],[201,19],[202,20],[203,21],[204,22],[205,23],[206,24],[207,25],[208,2],[209,2],[177,2],[36,2],[210,26],[211,26],[117,27],[118,2],[115,2],[120,28],[119,29],[116,30],[128,31],[124,32],[125,2],[122,2],[127,33],[126,34],[123,35],[106,26],[104,2],[105,36],[212,7],[213,2],[37,2],[41,2],[214,2],[42,2],[215,2],[216,37],[35,2],[186,2],[188,38],[190,39],[189,38],[187,2],[112,40],[192,41],[191,2],[111,2],[32,2],[1,2],[7,2],[11,2],[10,2],[3,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[4,2],[5,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[6,2],[27,2],[28,2],[29,2],[30,2],[2,2],[31,2],[9,2],[8,2],[133,42],[135,43],[136,44],[137,45],[138,46],[139,47],[140,48],[141,49],[142,50],[143,51],[144,52],[145,53],[146,54],[147,55],[134,2],[175,2],[148,56],[149,57],[150,58],[176,59],[151,60],[152,61],[153,62],[154,63],[155,64],[156,65],[157,66],[158,67],[159,68],[160,69],[161,70],[162,71],[163,72],[164,73],[165,74],[166,75],[167,76],[168,77],[169,78],[170,79],[171,80],[172,81],[173,82],[174,83],[34,2],[38,84],[84,85],[33,86],[100,87],[77,88],[76,89],[78,90],[101,91],[91,3],[107,92],[80,93],[81,94],[102,95],[103,95],[109,96],[110,2],[57,97],[71,98],[113,99],[46,100],[82,101],[99,102],[114,103],[45,104],[58,105],[121,106],[129,107],[83,108],[67,109],[63,110],[64,111],[70,112],[65,113],[69,114],[68,115],[62,86],[130,2],[132,116],[60,117],[47,118],[72,119],[59,120],[73,121],[93,86],[61,120],[40,122],[39,86],[94,86],[54,123],[55,86],[74,124],[96,125],[48,120],[43,86],[79,126],[49,86],[75,120],[50,86],[51,86],[52,86],[56,127],[53,120],[95,120],[97,86],[98,128],[66,86],[44,129]],"semanticDiagnosticsPerFile":[87,85,92,108,178,90,86,88,89,179,180,181,182,183,184,185,193,131,194,196,197,195,198,199,200,201,202,203,204,205,206,207,208,209,177,36,210,211,117,118,115,120,119,116,128,124,125,122,127,126,123,106,104,105,212,213,37,41,214,42,215,216,35,186,188,190,189,187,112,192,191,111,32,1,7,11,10,3,12,13,14,15,16,17,18,19,4,5,23,20,21,22,24,25,26,6,27,28,29,30,2,31,9,8,133,135,136,137,138,139,140,141,142,143,144,145,146,147,134,175,148,149,150,176,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,34,38,84,33,100,77,76,78,101,91,107,80,81,102,103,109,110,57,71,113,46,82,99,114,45,58,121,129,83,67,63,64,70,65,69,68,62,130,132,60,47,72,59,73,93,61,40,39,94,54,55,74,96,48,43,79,49,75,50,51,52,56,53,95,97,98,66,44]},"version":"4.5.5"}
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import ComponentStyle from './models/ComponentStyle';
|
|
3
|
+
import { DefaultTheme } from './models/ThemeProvider';
|
|
4
|
+
import createWarnTooManyClasses from './utils/createWarnTooManyClasses';
|
|
5
|
+
interface ExoticComponentWithDisplayName<P = unknown> extends React.ExoticComponent<P> {
|
|
6
|
+
defaultProps?: Partial<P>;
|
|
7
|
+
displayName?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare type AnyComponent<P = any> = ExoticComponentWithDisplayName<P> | React.ComponentType<P>;
|
|
10
|
+
export interface StyledOptions<Props> {
|
|
11
|
+
attrs?: Attrs<Props>[];
|
|
12
|
+
componentId?: string;
|
|
13
|
+
displayName?: string;
|
|
14
|
+
parentComponentId?: string;
|
|
15
|
+
shouldForwardProp?: ShouldForwardProp;
|
|
16
|
+
}
|
|
17
|
+
export interface StyledNativeOptions<Props> {
|
|
18
|
+
attrs?: Attrs<Props>[];
|
|
19
|
+
displayName?: string;
|
|
20
|
+
shouldForwardProp?: ShouldForwardProp;
|
|
21
|
+
}
|
|
22
|
+
export declare type KnownWebTarget = keyof JSX.IntrinsicElements | AnyComponent;
|
|
23
|
+
export declare type WebTarget = string | KnownWebTarget;
|
|
24
|
+
export declare type NativeTarget = AnyComponent;
|
|
25
|
+
export interface BaseExtensibleObject {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
}
|
|
28
|
+
export interface ExtensibleObject extends BaseExtensibleObject {
|
|
29
|
+
$as?: KnownWebTarget;
|
|
30
|
+
$forwardedAs?: KnownWebTarget;
|
|
31
|
+
as?: KnownWebTarget;
|
|
32
|
+
forwardedAs?: KnownWebTarget;
|
|
33
|
+
theme?: DefaultTheme;
|
|
34
|
+
}
|
|
35
|
+
export interface ExecutionContext extends ExtensibleObject {
|
|
36
|
+
theme: DefaultTheme;
|
|
37
|
+
}
|
|
38
|
+
export interface StyleFunction<Props> {
|
|
39
|
+
(executionContext: ExecutionContext & Props): string | number | StyledObject | CSSConstructor<Props> | StyleFunction<Props>;
|
|
40
|
+
}
|
|
41
|
+
export declare type Interpolation<Props> = StyleFunction<Props> | StyledObject | string | number | Keyframes | IStyledComponent<any, any> | Interpolation<Props>[];
|
|
42
|
+
export declare type Attrs<Props> = (ExtensibleObject & Props) | ((props: ExecutionContext & Props) => ExecutionContext & Props);
|
|
43
|
+
export declare type RuleSet<Props> = Interpolation<Props>[];
|
|
44
|
+
export declare type Styles<Props> = TemplateStringsArray | StyledObject | StyleFunction<Props>;
|
|
45
|
+
export declare type NameGenerator = (hash: number) => string;
|
|
46
|
+
export interface CSSConstructor<Props> {
|
|
47
|
+
(strings: string[], ...interpolations: Interpolation<Props>[]): RuleSet<Props>;
|
|
48
|
+
}
|
|
49
|
+
export interface StyleSheet {
|
|
50
|
+
create: Function;
|
|
51
|
+
}
|
|
52
|
+
export interface Keyframes {
|
|
53
|
+
id: string;
|
|
54
|
+
name: string;
|
|
55
|
+
rules: string;
|
|
56
|
+
}
|
|
57
|
+
export interface Flattener<Props> {
|
|
58
|
+
(chunks: Interpolation<Props>[], executionContext: Object | null | undefined, styleSheet: Object | null | undefined): Interpolation<Props>[];
|
|
59
|
+
}
|
|
60
|
+
export declare type FlattenerResult<Props> = RuleSet<Props> | number | string | string[] | IStyledComponent<any, any> | Keyframes;
|
|
61
|
+
export interface Stringifier {
|
|
62
|
+
(css: string, selector?: string, prefix?: string, componentId?: string): string;
|
|
63
|
+
hash: string;
|
|
64
|
+
}
|
|
65
|
+
export interface ShouldForwardProp {
|
|
66
|
+
(prop: string, isValidAttr: (prop: string) => boolean, elementToBeCreated?: WebTarget | NativeTarget): boolean;
|
|
67
|
+
}
|
|
68
|
+
export interface CommonStatics<Props> {
|
|
69
|
+
attrs: Attrs<Props>[];
|
|
70
|
+
target: StyledTarget;
|
|
71
|
+
shouldForwardProp?: ShouldForwardProp;
|
|
72
|
+
withComponent: any;
|
|
73
|
+
}
|
|
74
|
+
export interface IStyledStatics<OuterProps = unknown> extends CommonStatics<OuterProps> {
|
|
75
|
+
componentStyle: ComponentStyle;
|
|
76
|
+
foldedComponentIds: Array<string>;
|
|
77
|
+
target: WebTarget;
|
|
78
|
+
styledComponentId: string;
|
|
79
|
+
warnTooManyClasses?: ReturnType<typeof createWarnTooManyClasses>;
|
|
80
|
+
withComponent: <Target extends WebTarget, Props = unknown>(tag: Target) => IStyledComponent<Target, OuterProps & Props>;
|
|
81
|
+
}
|
|
82
|
+
declare type CustomComponentProps<ActualComponent extends StyledTarget, PropsToBeInjectedIntoActualComponent extends {}, ActualComponentProps = ActualComponent extends KnownWebTarget ? React.ComponentPropsWithRef<ActualComponent> : {}> = React.HTMLAttributes<ActualComponent> & Omit<PropsToBeInjectedIntoActualComponent, keyof ActualComponentProps | 'as' | '$as'> & ActualComponentProps & ({
|
|
83
|
+
$as: ActualComponent;
|
|
84
|
+
as?: AnyComponent;
|
|
85
|
+
} | {
|
|
86
|
+
as?: ActualComponent;
|
|
87
|
+
});
|
|
88
|
+
interface CustomComponent<FallbackComponent extends StyledTarget, ExpectedProps = unknown, PropsToBeInjectedIntoActualComponent = unknown> extends React.ForwardRefExoticComponent<ExpectedProps> {
|
|
89
|
+
<ActualComponent extends StyledTarget = FallbackComponent>(props: CustomComponentProps<ActualComponent, ExpectedProps & PropsToBeInjectedIntoActualComponent>): React.ReactElement<CustomComponentProps<ActualComponent, ExecutionContext & ExpectedProps & PropsToBeInjectedIntoActualComponent>, ActualComponent>;
|
|
90
|
+
}
|
|
91
|
+
export interface IStyledComponent<Target extends WebTarget, Props = unknown> extends CustomComponent<Target, Props, ExecutionContext>, IStyledStatics<Props> {
|
|
92
|
+
defaultProps?: Partial<ExtensibleObject & (Target extends KnownWebTarget ? React.ComponentProps<Target> : {}) & Props>;
|
|
93
|
+
toString: () => string;
|
|
94
|
+
}
|
|
95
|
+
export interface IStyledComponentFactory<Target extends WebTarget, Props = unknown, Statics = unknown> {
|
|
96
|
+
(target: Target, options: StyledOptions<Props>, rules: RuleSet<Props>): IStyledComponent<Target, Props> & Statics;
|
|
97
|
+
}
|
|
98
|
+
export interface IStyledNativeStatics<OuterProps = unknown> extends CommonStatics<OuterProps> {
|
|
99
|
+
inlineStyle: InstanceType<IInlineStyleConstructor<OuterProps>>;
|
|
100
|
+
target: NativeTarget;
|
|
101
|
+
withComponent: <Target extends NativeTarget, Props = unknown>(tag: Target) => IStyledNativeComponent<Target, OuterProps & Props>;
|
|
102
|
+
}
|
|
103
|
+
export interface IStyledNativeComponent<Target extends NativeTarget, Props = unknown> extends CustomComponent<Target, Props, ExecutionContext>, IStyledNativeStatics<Props> {
|
|
104
|
+
defaultProps?: Partial<ExtensibleObject & (Target extends KnownWebTarget ? React.ComponentProps<Target> : {}) & Props>;
|
|
105
|
+
}
|
|
106
|
+
export interface IStyledNativeComponentFactory<Target extends NativeTarget, Props = unknown, Statics = unknown> {
|
|
107
|
+
(target: Target, options: StyledNativeOptions<Props>, rules: RuleSet<Props>): IStyledNativeComponent<Target, Props> & Statics;
|
|
108
|
+
}
|
|
109
|
+
export interface IInlineStyleConstructor<Props = unknown> {
|
|
110
|
+
new (rules: RuleSet<Props>): IInlineStyle<Props>;
|
|
111
|
+
}
|
|
112
|
+
export interface IInlineStyle<Props = unknown> {
|
|
113
|
+
rules: RuleSet<Props>;
|
|
114
|
+
generateStyleObject(executionContext: Object): Object;
|
|
115
|
+
}
|
|
116
|
+
export declare type StyledTarget = WebTarget | NativeTarget;
|
|
117
|
+
export interface StyledObject {
|
|
118
|
+
[key: string]: Record<string, any> | string | number | StyleFunction<ExecutionContext>;
|
|
119
|
+
}
|
|
120
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function addUnitIfNeeded(name: string, value: any): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const checkDynamicCreation: (displayName: string, componentId?: string | undefined) => void;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: readonly ["a", "abbr", "address", "area", "article", "aside", "audio", "b", "base", "bdi", "bdo", "big", "blockquote", "body", "br", "button", "canvas", "caption", "cite", "code", "col", "colgroup", "data", "datalist", "dd", "del", "details", "dfn", "dialog", "div", "dl", "dt", "em", "embed", "fieldset", "figcaption", "figure", "footer", "form", "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html", "i", "iframe", "img", "input", "ins", "kbd", "keygen", "label", "legend", "li", "link", "main", "map", "mark", "menu", "menuitem", "meta", "meter", "nav", "noscript", "object", "ol", "optgroup", "option", "output", "p", "param", "picture", "pre", "progress", "q", "rp", "rt", "ruby", "s", "samp", "script", "section", "select", "small", "source", "span", "strong", "style", "sub", "summary", "sup", "table", "tbody", "td", "textarea", "tfoot", "th", "thead", "time", "title", "tr", "track", "u", "ul", "var", "video", "wbr", "circle", "clipPath", "defs", "ellipse", "foreignObject", "g", "image", "line", "linearGradient", "marker", "mask", "path", "pattern", "polygon", "polyline", "radialGradient", "rect", "stop", "svg", "text", "tspan"];
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
'1': string;
|
|
3
|
+
'2': string;
|
|
4
|
+
'3': string;
|
|
5
|
+
'4': string;
|
|
6
|
+
'5': string;
|
|
7
|
+
'6': string;
|
|
8
|
+
'7': string;
|
|
9
|
+
'8': string;
|
|
10
|
+
'9': string;
|
|
11
|
+
'10': string;
|
|
12
|
+
'11': string;
|
|
13
|
+
'12': string;
|
|
14
|
+
'13': string;
|
|
15
|
+
'14': string;
|
|
16
|
+
'15': string;
|
|
17
|
+
'16': string;
|
|
18
|
+
'17': string;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import StyleSheet from '../sheet';
|
|
2
|
+
import { ExecutionContext, ExtensibleObject, Interpolation, Stringifier } from '../types';
|
|
3
|
+
export declare const objToCssArray: (obj: ExtensibleObject, prevKey?: string | undefined) => string[];
|
|
4
|
+
export default function flatten<Props = unknown>(chunk: Interpolation<Props>, executionContext?: ExecutionContext & Props, styleSheet?: StyleSheet, stylisInstance?: Stringifier): Interpolation<Props>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function generateAlphabeticName(code: number): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function generateComponentId(str: string): string;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { AnyComponent } from '../types';
|
|
3
|
+
/**
|
|
4
|
+
* Adapted from hoist-non-react-statics to avoid the react-is dependency.
|
|
5
|
+
*/
|
|
6
|
+
declare const REACT_STATICS: {
|
|
7
|
+
childContextTypes: boolean;
|
|
8
|
+
contextType: boolean;
|
|
9
|
+
contextTypes: boolean;
|
|
10
|
+
defaultProps: boolean;
|
|
11
|
+
displayName: boolean;
|
|
12
|
+
getDefaultProps: boolean;
|
|
13
|
+
getDerivedStateFromError: boolean;
|
|
14
|
+
getDerivedStateFromProps: boolean;
|
|
15
|
+
mixins: boolean;
|
|
16
|
+
propTypes: boolean;
|
|
17
|
+
type: boolean;
|
|
18
|
+
};
|
|
19
|
+
declare const KNOWN_STATICS: {
|
|
20
|
+
name: boolean;
|
|
21
|
+
length: boolean;
|
|
22
|
+
prototype: boolean;
|
|
23
|
+
caller: boolean;
|
|
24
|
+
callee: boolean;
|
|
25
|
+
arguments: boolean;
|
|
26
|
+
arity: boolean;
|
|
27
|
+
};
|
|
28
|
+
declare const FORWARD_REF_STATICS: {
|
|
29
|
+
$$typeof: boolean;
|
|
30
|
+
render: boolean;
|
|
31
|
+
defaultProps: boolean;
|
|
32
|
+
displayName: boolean;
|
|
33
|
+
propTypes: boolean;
|
|
34
|
+
};
|
|
35
|
+
declare const MEMO_STATICS: {
|
|
36
|
+
$$typeof: boolean;
|
|
37
|
+
compare: boolean;
|
|
38
|
+
defaultProps: boolean;
|
|
39
|
+
displayName: boolean;
|
|
40
|
+
propTypes: boolean;
|
|
41
|
+
type: boolean;
|
|
42
|
+
};
|
|
43
|
+
declare type OmniComponent = AnyComponent;
|
|
44
|
+
declare type ExcludeList = {
|
|
45
|
+
[key: string]: true;
|
|
46
|
+
};
|
|
47
|
+
declare type NonReactStatics<S extends OmniComponent, C extends ExcludeList = {}> = {
|
|
48
|
+
[key in Exclude<keyof S, S extends React.MemoExoticComponent<any> ? keyof typeof MEMO_STATICS | keyof C : S extends React.ForwardRefExoticComponent<any> ? keyof typeof FORWARD_REF_STATICS | keyof C : keyof typeof REACT_STATICS | keyof typeof KNOWN_STATICS | keyof C>]: S[key];
|
|
49
|
+
};
|
|
50
|
+
export default function hoistNonReactStatics<T extends OmniComponent, S extends OmniComponent, C extends ExcludeList = {}>(targetComponent: T, sourceComponent: S, excludelist?: C): T & NonReactStatics<S, C>;
|
|
51
|
+
export {};
|