@lotte-innovate/ui-component-test 0.1.69-beta.0 → 0.1.69-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lib/components/SegmentedControl/SegmentedControlRoot.d.ts +1 -1
- package/dist/lib/components/SegmentedControl/SegmentedControlRoot.js +1 -1
- package/dist/lib/components/Toggle/index.d.ts +1 -1
- package/dist/lib/components/Toggle/index.js +1 -1
- package/dist/lib/tsconfig.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { VariantProps } from 'class-variance-authority';
|
3
3
|
import { SegmentedControl as SegmentedControlTheme } from '@radix-ui/themes';
|
4
|
-
export
|
4
|
+
export { SegmentedControlItem } from './SegmentedControlItem';
|
5
5
|
import { ISize } from '../../../lib/types';
|
6
6
|
export interface SegmentedControlProps extends VariantProps<typeof segmentedControlVariants> {
|
7
7
|
appearance?: 'surface' | 'classic';
|
@@ -26,7 +26,7 @@ import React, { Children, forwardRef } from 'react';
|
|
26
26
|
import { cva } from 'class-variance-authority';
|
27
27
|
import { SegmentedControl as SegmentedControlTheme, Theme } from '@radix-ui/themes';
|
28
28
|
import { scalingVariants } from '../../../lib/constants';
|
29
|
-
export
|
29
|
+
export { SegmentedControlItem } from './SegmentedControlItem';
|
30
30
|
import { cn } from '../../../lib/utils/utils';
|
31
31
|
import { useTheme } from '../../../lib/theme';
|
32
32
|
var segmentedControlVariants = cva('text-slateA-12 dark:text-slateDarkA-12', {
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
2
2
|
import { VariantProps } from 'class-variance-authority';
|
3
3
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
4
4
|
import { IAppearance } from '../../../lib/types';
|
5
|
-
export
|
5
|
+
export { ToggleWithText } from './ToggleWithText';
|
6
6
|
export interface ToggleProps extends VariantProps<typeof toggleVariants> {
|
7
7
|
size?: 'small' | 'medium' | 'large';
|
8
8
|
appearance?: IAppearance;
|
@@ -29,7 +29,7 @@ import { radiusVariants, scalingVariants, toggleAppearanceStyle } from '../../..
|
|
29
29
|
import { cn } from '../../../lib/utils/utils';
|
30
30
|
import { useTheme } from '../../../lib/theme';
|
31
31
|
import { MAIN_COLOR } from '../../../lib/color/constants';
|
32
|
-
export
|
32
|
+
export { ToggleWithText } from './ToggleWithText';
|
33
33
|
var toggleVariants = cva('grid place-content-center items-center justify-center box-border"', {
|
34
34
|
variants: {
|
35
35
|
radius: __assign({}, radiusVariants['base']),
|