Skip to content

Commit

Permalink
fix(CheckboxRadioBase): Export CHECKBOX_RADIO_VARIANT
Browse files Browse the repository at this point in the history
  • Loading branch information
jpveooys committed Sep 20, 2022
1 parent 46af731 commit c9d9b34
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react'

import { CheckboxRadioBase, CheckboxRadioBaseProps } from '../CheckboxRadioBase'
import { CheckboxRadioBase } from '../CheckboxRadioBase/CheckboxRadioBase'
import { CheckboxRadioBaseProps } from '../CheckboxRadioBase/CheckboxRadioBaseProps'
import { StyledCheckbox } from './partials/StyledCheckbox'
import { StyledCheckmark } from './partials/StyledCheckmark'
import { StyledCheckmarkWrapper } from './partials/StyledCheckmarkWrapper'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { selectors } from '@defencedigital/design-tokens'
import styled, { css } from 'styled-components'

import { CheckboxRootProps } from '../../CheckboxRadioBase'
import { CheckboxRootProps } from '../../CheckboxRadioBase/CheckboxRadioBaseProps'

const { color, fontSize, spacing } = selectors

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled, { css } from 'styled-components'
import { selectors } from '@defencedigital/design-tokens'

import { StyledCheckbox } from './StyledCheckbox'
import { CheckmarkProps } from '../../CheckboxRadioBase'
import { CheckmarkProps } from '../../CheckboxRadioBase/CheckboxRadioBaseProps'

const { color } = selectors

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import styled from 'styled-components'

import { CheckmarkWrapperProps } from '../../CheckboxRadioBase'
import { CheckmarkWrapperProps } from '../../CheckboxRadioBase/CheckboxRadioBaseProps'

export const StyledCheckmarkWrapper = styled.span<CheckmarkWrapperProps>`
display: block;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export * from './CheckboxRadioBase'
export * from './CheckboxRadioBaseProps'
export * from './types'
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react'

import { CheckboxRadioBase, CheckboxRadioBaseProps } from '../CheckboxRadioBase'
import { CheckboxRadioBase } from '../CheckboxRadioBase/CheckboxRadioBase'
import { CheckboxRadioBaseProps } from '../CheckboxRadioBase/CheckboxRadioBaseProps'
import { StyledRadio } from './partials/StyledRadio'
import { StyledCheckmark } from './partials/StyledCheckmark'
import { StyledCheckmarkWrapper } from './partials/StyledCheckmarkWrapper'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from 'styled-components'
import { selectors } from '@defencedigital/design-tokens'

import { CheckmarkProps } from '../../CheckboxRadioBase'
import { CheckmarkProps } from '../../CheckboxRadioBase/CheckboxRadioBaseProps'

const { color } = selectors

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import styled from 'styled-components'

import { CheckmarkWrapperProps } from '../../CheckboxRadioBase'
import { CheckmarkWrapperProps } from '../../CheckboxRadioBase/CheckboxRadioBaseProps'

export const StyledCheckmarkWrapper = styled.span<CheckmarkWrapperProps>`
display: block;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled, { css } from 'styled-components'
import { selectors } from '@defencedigital/design-tokens'

import { CheckboxRootProps } from '../../CheckboxRadioBase'
import { CheckboxRootProps } from '../../CheckboxRadioBase/CheckboxRadioBaseProps'
import { StyledCheckmark } from './StyledCheckmark'
import { StyledInput } from '../../CheckboxRadioBase/partials/StyledInput'

Expand Down
1 change: 1 addition & 0 deletions packages/react-component-library/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export * from './components/Button'
export * from './components/ButtonGroup'
export * from './components/CardFrame'
export * from './components/Checkbox'
export * from './components/CheckboxRadioBase'
export * from './components/ContextMenu'
export * from './components/DatePicker'
export * from './components/DescriptionList'
Expand Down

0 comments on commit c9d9b34

Please sign in to comment.