@ctlyst.id/internal-ui 2.0.6 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/button/__stories__/button.stories.d.ts +1 -1
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/image/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/layouting/index.d.ts +1 -12
- package/dist/components/list/index.d.ts +1 -0
- package/dist/components/popover/index.d.ts +1 -0
- package/dist/components/text/index.d.ts +1 -2
- package/dist/components/tooltip/__stories__/tooltip.stories.d.ts +10 -0
- package/dist/components/tooltip/index.d.ts +1 -0
- package/dist/config/theme/components/checkbox.d.ts +15 -1
- package/dist/config/theme/components/chips.d.ts +3 -0
- package/dist/config/theme/components/radio.d.ts +3 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/internal-ui.cjs.development.js +224 -40
- package/dist/internal-ui.cjs.development.js.map +1 -1
- package/dist/internal-ui.cjs.production.min.js +5 -5
- package/dist/internal-ui.cjs.production.min.js.map +1 -1
- package/dist/internal-ui.esm.js +106 -36
- package/dist/internal-ui.esm.js.map +1 -1
- package/dist/provider/index.d.ts +1 -0
- package/package.json +3 -3
- package/dist/components/layouting/components/box.d.ts +0 -4
- package/dist/components/layouting/components/container.d.ts +0 -4
- package/dist/components/layouting/components/flex.d.ts +0 -4
- package/dist/components/layouting/components/grid.d.ts +0 -4
- package/dist/components/layouting/components/stack.d.ts +0 -4
- package/dist/components/layouting/components/wrap.d.ts +0 -4
- package/dist/components/text/components/text.d.ts +0 -4
@@ -0,0 +1 @@
|
|
1
|
+
export { Icon, IconProps, Image, ImageProps } from '@chakra-ui/react';
|
@@ -1,12 +1 @@
|
|
1
|
-
export {
|
2
|
-
export * from './components/box';
|
3
|
-
export { default as Container } from './components/container';
|
4
|
-
export * from './components/container';
|
5
|
-
export { default as Flex } from './components/flex';
|
6
|
-
export * from './components/flex';
|
7
|
-
export { default as Grid } from './components/grid';
|
8
|
-
export * from './components/grid';
|
9
|
-
export { default as Stack } from './components/stack';
|
10
|
-
export * from './components/stack';
|
11
|
-
export { default as Wrap } from './components/wrap';
|
12
|
-
export * from './components/wrap';
|
1
|
+
export { Box, BoxProps, Container, ContainerProps, Divider, DividerProps, Flex, FlexProps, Grid, GridItem, GridItemProps, GridProps, HStack, Stack, StackProps, VStack, Wrap, WrapItem, WrapItemProps, WrapProps, } from '@chakra-ui/react';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { List, ListIcon, ListItem, ListItemProps, ListProps, OrderedList, UnorderedList } from '@chakra-ui/react';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Popover, PopoverAnchor, PopoverArrow, PopoverArrowProps, PopoverBody, PopoverBodyProps, PopoverCloseButton, PopoverContent, PopoverContentProps, PopoverFooter, PopoverFooterProps, PopoverHeader, PopoverHeaderProps, PopoverProps, PopoverTrigger, Portal, PortalProps, } from '@chakra-ui/react';
|
@@ -1,2 +1 @@
|
|
1
|
-
export {
|
2
|
-
export * from './components/text';
|
1
|
+
export { Heading, HeadingProps, Text, TextProps } from '@chakra-ui/react';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
declare const _default: {
|
3
|
+
chakra: {
|
4
|
+
theme: Record<string, any>;
|
5
|
+
};
|
6
|
+
title: string;
|
7
|
+
decorators: ((Story: React.ElementType) => JSX.Element)[];
|
8
|
+
};
|
9
|
+
export default _default;
|
10
|
+
export declare const Default: () => JSX.Element;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Tooltip, TooltipProps } from '@chakra-ui/react';
|
@@ -8,7 +8,6 @@ declare const Checkbox: {
|
|
8
8
|
};
|
9
9
|
icon: {
|
10
10
|
color: string;
|
11
|
-
width: string;
|
12
11
|
};
|
13
12
|
label: {
|
14
13
|
fontWeight: string;
|
@@ -48,6 +47,9 @@ declare const Checkbox: {
|
|
48
47
|
label: {
|
49
48
|
fontSize: string;
|
50
49
|
};
|
50
|
+
icon: {
|
51
|
+
fontSize: string;
|
52
|
+
};
|
51
53
|
};
|
52
54
|
unstyled: {
|
53
55
|
control: {
|
@@ -62,6 +64,7 @@ declare const Checkbox: {
|
|
62
64
|
_disabled: {
|
63
65
|
backgroundColor: string;
|
64
66
|
borderColor: string;
|
67
|
+
opacity: number;
|
65
68
|
};
|
66
69
|
};
|
67
70
|
_disabled: {
|
@@ -71,10 +74,21 @@ declare const Checkbox: {
|
|
71
74
|
_indeterminate: {
|
72
75
|
borderColor: string;
|
73
76
|
backgroundColor: string;
|
77
|
+
_disabled: {
|
78
|
+
backgroundColor: string;
|
79
|
+
borderColor: string;
|
80
|
+
opacity: number;
|
81
|
+
};
|
74
82
|
};
|
75
83
|
};
|
76
84
|
label: {
|
77
85
|
fontSize: string;
|
86
|
+
_disabled: {
|
87
|
+
opacity: number;
|
88
|
+
};
|
89
|
+
};
|
90
|
+
icon: {
|
91
|
+
fontSize: string;
|
78
92
|
};
|
79
93
|
};
|
80
94
|
} | undefined;
|
@@ -10,6 +10,7 @@ declare const Radio: {
|
|
10
10
|
textStyle: string;
|
11
11
|
color: string;
|
12
12
|
_disabled: {
|
13
|
+
opacity: number;
|
13
14
|
color: string;
|
14
15
|
};
|
15
16
|
};
|
@@ -42,6 +43,7 @@ declare const Radio: {
|
|
42
43
|
h: string;
|
43
44
|
w: string;
|
44
45
|
bg: string;
|
46
|
+
opacity: number;
|
45
47
|
};
|
46
48
|
};
|
47
49
|
};
|
@@ -72,6 +74,7 @@ declare const Radio: {
|
|
72
74
|
_disabled: {
|
73
75
|
borderColor: string;
|
74
76
|
bg: string;
|
77
|
+
opacity: number;
|
75
78
|
_before: {
|
76
79
|
h: string;
|
77
80
|
w: string;
|
package/dist/hooks/index.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
@@ -405,15 +405,21 @@ function CheckboxComponent({
|
|
405
405
|
}, rest, {
|
406
406
|
isDisabled: isDisabled
|
407
407
|
}), children && /*#__PURE__*/React__default.createElement(react.Text, {
|
408
|
+
as: "span",
|
409
|
+
display: "block",
|
408
410
|
textStyle: "text.sm",
|
409
|
-
color: isDisabled ? 'black.
|
411
|
+
color: isDisabled ? 'black.medium' : 'black.high'
|
410
412
|
}, children))), /*#__PURE__*/React__default.createElement(react.Box, {
|
411
413
|
mt: "5px",
|
412
414
|
ml: "24px"
|
413
415
|
}, isError ? /*#__PURE__*/React__default.createElement(react.Text, {
|
416
|
+
as: "span",
|
417
|
+
display: "block",
|
414
418
|
textStyle: "text.xs",
|
415
419
|
color: "danger.500"
|
416
420
|
}, errorText) : /*#__PURE__*/React__default.createElement(react.Text, {
|
421
|
+
as: "span",
|
422
|
+
display: "block",
|
417
423
|
textStyle: "text.xs",
|
418
424
|
color: "black.medium"
|
419
425
|
}, helpText)));
|
@@ -2355,7 +2361,8 @@ const Profile = ({
|
|
2355
2361
|
}, (data === null || data === void 0 ? void 0 : data.office) && /*#__PURE__*/React.createElement(react.Text, {
|
2356
2362
|
color: "neutral.700",
|
2357
2363
|
display: "inline-block",
|
2358
|
-
mr: 0.5
|
2364
|
+
mr: 0.5,
|
2365
|
+
as: "span"
|
2359
2366
|
}, data.office, " |", ' '), data === null || data === void 0 ? void 0 : data.userRole)), /*#__PURE__*/React.createElement(react.PopoverTrigger, null, /*#__PURE__*/React.createElement(react.Avatar, {
|
2360
2367
|
size: 'sm',
|
2361
2368
|
bg: "primary.500",
|
@@ -2905,15 +2912,21 @@ function RadioComponent({
|
|
2905
2912
|
}, rest, {
|
2906
2913
|
isDisabled: isDisabled
|
2907
2914
|
}), children && /*#__PURE__*/React__default.createElement(react.Text, {
|
2915
|
+
as: "span",
|
2916
|
+
display: "block",
|
2908
2917
|
textStyle: "text.sm",
|
2909
|
-
color: isDisabled ? 'black.
|
2918
|
+
color: isDisabled ? 'black.medium' : 'black.high'
|
2910
2919
|
}, children))), /*#__PURE__*/React__default.createElement(react.Box, {
|
2911
2920
|
mt: "5px",
|
2912
2921
|
ml: "24px"
|
2913
2922
|
}, isError ? /*#__PURE__*/React__default.createElement(react.Text, {
|
2923
|
+
as: "span",
|
2924
|
+
display: "block",
|
2914
2925
|
textStyle: "text.xs",
|
2915
2926
|
color: "danger.500"
|
2916
2927
|
}, errorText) : /*#__PURE__*/React__default.createElement(react.Text, {
|
2928
|
+
as: "span",
|
2929
|
+
display: "block",
|
2917
2930
|
textStyle: "text.xs",
|
2918
2931
|
color: "black.medium"
|
2919
2932
|
}, helpText)));
|
@@ -3163,9 +3176,6 @@ function SelectCreatable({
|
|
3163
3176
|
*/
|
3164
3177
|
const Switch = /*#__PURE__*/react.forwardRef(function Switch(props, ref) {
|
3165
3178
|
const styles = react.useMultiStyleConfig('Switch', props);
|
3166
|
-
const {
|
3167
|
-
size = 'md'
|
3168
|
-
} = props;
|
3169
3179
|
const {
|
3170
3180
|
spacing = '0.5rem',
|
3171
3181
|
children,
|
@@ -3227,10 +3237,10 @@ const Switch = /*#__PURE__*/react.forwardRef(function Switch(props, ref) {
|
|
3227
3237
|
transform: "translate(-50%, -50%)"
|
3228
3238
|
}, /*#__PURE__*/React__default.createElement(internalIcon.Check, {
|
3229
3239
|
color: "white",
|
3230
|
-
size: getIconSize(size)
|
3240
|
+
size: getIconSize(props.size)
|
3231
3241
|
}), /*#__PURE__*/React__default.createElement(internalIcon.Close, {
|
3232
3242
|
color: state.isDisabled ? 'neutral.600' : 'neutral.900',
|
3233
|
-
size: getIconSize(size)
|
3243
|
+
size: getIconSize(props.size)
|
3234
3244
|
})), /*#__PURE__*/React__default.createElement(react.chakra.span, {
|
3235
3245
|
__css: styles.thumb,
|
3236
3246
|
className: "chakra-switch__thumb",
|
@@ -3243,6 +3253,9 @@ const Switch = /*#__PURE__*/react.forwardRef(function Switch(props, ref) {
|
|
3243
3253
|
__css: labelStyles
|
3244
3254
|
}), children));
|
3245
3255
|
});
|
3256
|
+
Switch.defaultProps = {
|
3257
|
+
size: 'sm'
|
3258
|
+
};
|
3246
3259
|
|
3247
3260
|
const Tab = /*#__PURE__*/react.forwardRef((props, ref) => {
|
3248
3261
|
var _props$leftAddon, _props$rightAddon;
|
@@ -3508,6 +3521,10 @@ const Badge$1 = {
|
|
3508
3521
|
color: 'white'
|
3509
3522
|
},
|
3510
3523
|
'neutral-solid': {
|
3524
|
+
bg: 'neutral.900',
|
3525
|
+
color: 'white'
|
3526
|
+
},
|
3527
|
+
'disabled-solid': {
|
3511
3528
|
bg: 'neutral.600',
|
3512
3529
|
color: 'white'
|
3513
3530
|
},
|
@@ -3532,7 +3549,11 @@ const Badge$1 = {
|
|
3532
3549
|
color: 'danger.500'
|
3533
3550
|
},
|
3534
3551
|
'neutral-light': {
|
3535
|
-
bg: 'neutral.
|
3552
|
+
bg: 'neutral.200',
|
3553
|
+
color: 'neutral.900'
|
3554
|
+
},
|
3555
|
+
'disabled-light': {
|
3556
|
+
bg: 'neutral.200',
|
3536
3557
|
color: 'neutral.600'
|
3537
3558
|
}
|
3538
3559
|
},
|
@@ -3831,8 +3852,7 @@ const baseStyle$1 = /*#__PURE__*/definePartsStyle$1({
|
|
3831
3852
|
border: '1px solid'
|
3832
3853
|
},
|
3833
3854
|
icon: {
|
3834
|
-
color: 'neutral.50'
|
3835
|
-
width: '9px'
|
3855
|
+
color: 'neutral.50'
|
3836
3856
|
},
|
3837
3857
|
label: {
|
3838
3858
|
fontWeight: '400',
|
@@ -3841,8 +3861,8 @@ const baseStyle$1 = /*#__PURE__*/definePartsStyle$1({
|
|
3841
3861
|
ml: '8px'
|
3842
3862
|
},
|
3843
3863
|
_disabled: {
|
3844
|
-
background: 'neutral.
|
3845
|
-
border: '
|
3864
|
+
background: 'neutral.200',
|
3865
|
+
border: '0',
|
3846
3866
|
borderColor: 'neutral.500',
|
3847
3867
|
cursor: 'not-allowed'
|
3848
3868
|
}
|
@@ -3865,11 +3885,14 @@ const errors = /*#__PURE__*/definePartsStyle$1({
|
|
3865
3885
|
},
|
3866
3886
|
label: {
|
3867
3887
|
fontSize: '12px'
|
3888
|
+
},
|
3889
|
+
icon: {
|
3890
|
+
fontSize: '7px'
|
3868
3891
|
}
|
3869
3892
|
});
|
3870
3893
|
const unstyled = /*#__PURE__*/definePartsStyle$1({
|
3871
3894
|
control: {
|
3872
|
-
borderColor: 'neutral.
|
3895
|
+
borderColor: 'neutral.600',
|
3873
3896
|
_checked: {
|
3874
3897
|
borderColor: 'primary.500',
|
3875
3898
|
backgroundColor: 'primary.500',
|
@@ -3878,21 +3901,33 @@ const unstyled = /*#__PURE__*/definePartsStyle$1({
|
|
3878
3901
|
backgroundColor: 'primary.600'
|
3879
3902
|
},
|
3880
3903
|
_disabled: {
|
3881
|
-
backgroundColor: '
|
3882
|
-
borderColor: '
|
3904
|
+
backgroundColor: 'primary.500',
|
3905
|
+
borderColor: 'primary.500',
|
3906
|
+
opacity: 0.3
|
3883
3907
|
}
|
3884
3908
|
},
|
3885
3909
|
_disabled: {
|
3886
|
-
backgroundColor: 'neutral.
|
3887
|
-
borderColor: 'neutral.
|
3910
|
+
backgroundColor: 'neutral.200',
|
3911
|
+
borderColor: 'neutral.200'
|
3888
3912
|
},
|
3889
3913
|
_indeterminate: {
|
3890
3914
|
borderColor: 'primary.500',
|
3891
|
-
backgroundColor: 'primary.500'
|
3915
|
+
backgroundColor: 'primary.500',
|
3916
|
+
_disabled: {
|
3917
|
+
backgroundColor: 'primary.500',
|
3918
|
+
borderColor: 'primary.500',
|
3919
|
+
opacity: 0.3
|
3920
|
+
}
|
3892
3921
|
}
|
3893
3922
|
},
|
3894
3923
|
label: {
|
3895
|
-
fontSize: '12px'
|
3924
|
+
fontSize: '12px',
|
3925
|
+
_disabled: {
|
3926
|
+
opacity: 1
|
3927
|
+
}
|
3928
|
+
},
|
3929
|
+
icon: {
|
3930
|
+
fontSize: '7px'
|
3896
3931
|
}
|
3897
3932
|
});
|
3898
3933
|
const variants$1 = {
|
@@ -3955,10 +3990,13 @@ const Chips = /*#__PURE__*/styledSystem.defineStyleConfig({
|
|
3955
3990
|
},
|
3956
3991
|
sizes: {
|
3957
3992
|
sm: {
|
3958
|
-
fontSize: '12px'
|
3993
|
+
fontSize: '12px',
|
3994
|
+
lineHeight: 4
|
3959
3995
|
},
|
3960
3996
|
md: {
|
3961
|
-
fontSize: '14px'
|
3997
|
+
fontSize: '14px',
|
3998
|
+
paddingY: 2,
|
3999
|
+
lineHeight: 5
|
3962
4000
|
}
|
3963
4001
|
},
|
3964
4002
|
defaultProps: {
|
@@ -4018,7 +4056,7 @@ const size = {
|
|
4018
4056
|
}),
|
4019
4057
|
sm: /*#__PURE__*/styledSystem.defineStyle({
|
4020
4058
|
fontSize: 'text.sm',
|
4021
|
-
h: 9
|
4059
|
+
h: 9,
|
4022
4060
|
borderRadius: 'md'
|
4023
4061
|
})
|
4024
4062
|
};
|
@@ -4202,7 +4240,8 @@ const baseStyle$4 = /*#__PURE__*/definePartsStyle$4({
|
|
4202
4240
|
textStyle: 'text.sm',
|
4203
4241
|
color: 'black.high',
|
4204
4242
|
_disabled: {
|
4205
|
-
|
4243
|
+
opacity: 1,
|
4244
|
+
color: 'black.medium'
|
4206
4245
|
}
|
4207
4246
|
}
|
4208
4247
|
});
|
@@ -4219,21 +4258,22 @@ const errors$1 = /*#__PURE__*/definePartsStyle$4({
|
|
4219
4258
|
},
|
4220
4259
|
_hover: {
|
4221
4260
|
borderColor: 'danger.500',
|
4222
|
-
bg: '
|
4261
|
+
bg: 'neutral.200'
|
4223
4262
|
},
|
4224
4263
|
_disabled: {
|
4225
4264
|
borderColor: 'danger.500',
|
4226
|
-
bg: 'white',
|
4265
|
+
bg: 'white.high',
|
4227
4266
|
_before: {
|
4228
4267
|
h: '10px',
|
4229
4268
|
w: '10px',
|
4230
|
-
bg: '
|
4269
|
+
bg: 'primary.500',
|
4270
|
+
opacity: 0.3
|
4231
4271
|
}
|
4232
4272
|
}
|
4233
4273
|
},
|
4234
4274
|
_disabled: {
|
4235
4275
|
borderColor: 'danger.500',
|
4236
|
-
bg: 'neutral.
|
4276
|
+
bg: 'neutral.200'
|
4237
4277
|
}
|
4238
4278
|
},
|
4239
4279
|
label: {
|
@@ -4256,18 +4296,19 @@ const unstyled$2 = /*#__PURE__*/definePartsStyle$4({
|
|
4256
4296
|
bg: 'gray.200'
|
4257
4297
|
},
|
4258
4298
|
_disabled: {
|
4259
|
-
borderColor: '
|
4260
|
-
bg: 'white',
|
4299
|
+
borderColor: 'primary.500',
|
4300
|
+
bg: 'white.high',
|
4301
|
+
opacity: 0.3,
|
4261
4302
|
_before: {
|
4262
4303
|
h: '10px',
|
4263
4304
|
w: '10px',
|
4264
|
-
bg: '
|
4305
|
+
bg: 'primary.500'
|
4265
4306
|
}
|
4266
4307
|
}
|
4267
4308
|
},
|
4268
4309
|
_disabled: {
|
4269
|
-
borderColor: 'neutral.
|
4270
|
-
bg: 'neutral.
|
4310
|
+
borderColor: 'neutral.200',
|
4311
|
+
bg: 'neutral.200'
|
4271
4312
|
}
|
4272
4313
|
},
|
4273
4314
|
label: {
|
@@ -4514,6 +4555,35 @@ const Provider = ({
|
|
4514
4555
|
};
|
4515
4556
|
Provider.displayName = 'Provider';
|
4516
4557
|
|
4558
|
+
function useFetcher() {
|
4559
|
+
const {
|
4560
|
+
instance
|
4561
|
+
} = useInternalUI();
|
4562
|
+
const axiosInstance = React.useMemo(() => instance || axios, [instance]);
|
4563
|
+
const fetcher = async ({
|
4564
|
+
url,
|
4565
|
+
data,
|
4566
|
+
method,
|
4567
|
+
headers,
|
4568
|
+
...config
|
4569
|
+
}) => {
|
4570
|
+
const response = await axiosInstance.request({
|
4571
|
+
data,
|
4572
|
+
url,
|
4573
|
+
method,
|
4574
|
+
headers: {
|
4575
|
+
'Content-Type': 'application/json; charset=utf-8',
|
4576
|
+
...headers
|
4577
|
+
},
|
4578
|
+
...config
|
4579
|
+
});
|
4580
|
+
return response;
|
4581
|
+
};
|
4582
|
+
return {
|
4583
|
+
fetcher
|
4584
|
+
};
|
4585
|
+
}
|
4586
|
+
|
4517
4587
|
Object.defineProperty(exports, 'AlertDialog', {
|
4518
4588
|
enumerable: true,
|
4519
4589
|
get: function () {
|
@@ -4556,6 +4626,42 @@ Object.defineProperty(exports, 'AlertDialogOverlay', {
|
|
4556
4626
|
return react.ModalOverlay;
|
4557
4627
|
}
|
4558
4628
|
});
|
4629
|
+
Object.defineProperty(exports, 'Box', {
|
4630
|
+
enumerable: true,
|
4631
|
+
get: function () {
|
4632
|
+
return react.Box;
|
4633
|
+
}
|
4634
|
+
});
|
4635
|
+
Object.defineProperty(exports, 'ButtonGroup', {
|
4636
|
+
enumerable: true,
|
4637
|
+
get: function () {
|
4638
|
+
return react.ButtonGroup;
|
4639
|
+
}
|
4640
|
+
});
|
4641
|
+
Object.defineProperty(exports, 'ChakraProvider', {
|
4642
|
+
enumerable: true,
|
4643
|
+
get: function () {
|
4644
|
+
return react.ChakraProvider;
|
4645
|
+
}
|
4646
|
+
});
|
4647
|
+
Object.defineProperty(exports, 'CloseButton', {
|
4648
|
+
enumerable: true,
|
4649
|
+
get: function () {
|
4650
|
+
return react.CloseButton;
|
4651
|
+
}
|
4652
|
+
});
|
4653
|
+
Object.defineProperty(exports, 'Container', {
|
4654
|
+
enumerable: true,
|
4655
|
+
get: function () {
|
4656
|
+
return react.Container;
|
4657
|
+
}
|
4658
|
+
});
|
4659
|
+
Object.defineProperty(exports, 'Divider', {
|
4660
|
+
enumerable: true,
|
4661
|
+
get: function () {
|
4662
|
+
return react.Divider;
|
4663
|
+
}
|
4664
|
+
});
|
4559
4665
|
Object.defineProperty(exports, 'Drawer', {
|
4560
4666
|
enumerable: true,
|
4561
4667
|
get: function () {
|
@@ -4598,6 +4704,36 @@ Object.defineProperty(exports, 'DrawerOverlay', {
|
|
4598
4704
|
return react.ModalOverlay;
|
4599
4705
|
}
|
4600
4706
|
});
|
4707
|
+
Object.defineProperty(exports, 'Flex', {
|
4708
|
+
enumerable: true,
|
4709
|
+
get: function () {
|
4710
|
+
return react.Flex;
|
4711
|
+
}
|
4712
|
+
});
|
4713
|
+
Object.defineProperty(exports, 'Grid', {
|
4714
|
+
enumerable: true,
|
4715
|
+
get: function () {
|
4716
|
+
return react.Grid;
|
4717
|
+
}
|
4718
|
+
});
|
4719
|
+
Object.defineProperty(exports, 'GridItem', {
|
4720
|
+
enumerable: true,
|
4721
|
+
get: function () {
|
4722
|
+
return react.GridItem;
|
4723
|
+
}
|
4724
|
+
});
|
4725
|
+
Object.defineProperty(exports, 'HStack', {
|
4726
|
+
enumerable: true,
|
4727
|
+
get: function () {
|
4728
|
+
return react.HStack;
|
4729
|
+
}
|
4730
|
+
});
|
4731
|
+
Object.defineProperty(exports, 'Heading', {
|
4732
|
+
enumerable: true,
|
4733
|
+
get: function () {
|
4734
|
+
return react.Heading;
|
4735
|
+
}
|
4736
|
+
});
|
4601
4737
|
Object.defineProperty(exports, 'InputElementLeft', {
|
4602
4738
|
enumerable: true,
|
4603
4739
|
get: function () {
|
@@ -4640,6 +4776,12 @@ Object.defineProperty(exports, 'ModalOverlay', {
|
|
4640
4776
|
return react.ModalOverlay;
|
4641
4777
|
}
|
4642
4778
|
});
|
4779
|
+
Object.defineProperty(exports, 'Stack', {
|
4780
|
+
enumerable: true,
|
4781
|
+
get: function () {
|
4782
|
+
return react.Stack;
|
4783
|
+
}
|
4784
|
+
});
|
4643
4785
|
Object.defineProperty(exports, 'TabIndicator', {
|
4644
4786
|
enumerable: true,
|
4645
4787
|
get: function () {
|
@@ -4670,6 +4812,54 @@ Object.defineProperty(exports, 'TabsProvider', {
|
|
4670
4812
|
return react.TabsProvider;
|
4671
4813
|
}
|
4672
4814
|
});
|
4815
|
+
Object.defineProperty(exports, 'Text', {
|
4816
|
+
enumerable: true,
|
4817
|
+
get: function () {
|
4818
|
+
return react.Text;
|
4819
|
+
}
|
4820
|
+
});
|
4821
|
+
Object.defineProperty(exports, 'Tooltip', {
|
4822
|
+
enumerable: true,
|
4823
|
+
get: function () {
|
4824
|
+
return react.Tooltip;
|
4825
|
+
}
|
4826
|
+
});
|
4827
|
+
Object.defineProperty(exports, 'VStack', {
|
4828
|
+
enumerable: true,
|
4829
|
+
get: function () {
|
4830
|
+
return react.VStack;
|
4831
|
+
}
|
4832
|
+
});
|
4833
|
+
Object.defineProperty(exports, 'Wrap', {
|
4834
|
+
enumerable: true,
|
4835
|
+
get: function () {
|
4836
|
+
return react.Wrap;
|
4837
|
+
}
|
4838
|
+
});
|
4839
|
+
Object.defineProperty(exports, 'WrapItem', {
|
4840
|
+
enumerable: true,
|
4841
|
+
get: function () {
|
4842
|
+
return react.WrapItem;
|
4843
|
+
}
|
4844
|
+
});
|
4845
|
+
Object.defineProperty(exports, 'extendTheme', {
|
4846
|
+
enumerable: true,
|
4847
|
+
get: function () {
|
4848
|
+
return react.extendTheme;
|
4849
|
+
}
|
4850
|
+
});
|
4851
|
+
Object.defineProperty(exports, 'useColorModeValue', {
|
4852
|
+
enumerable: true,
|
4853
|
+
get: function () {
|
4854
|
+
return react.useColorModeValue;
|
4855
|
+
}
|
4856
|
+
});
|
4857
|
+
Object.defineProperty(exports, 'useDisclosure', {
|
4858
|
+
enumerable: true,
|
4859
|
+
get: function () {
|
4860
|
+
return react.useDisclosure;
|
4861
|
+
}
|
4862
|
+
});
|
4673
4863
|
Object.defineProperty(exports, 'useDrawerContext', {
|
4674
4864
|
enumerable: true,
|
4675
4865
|
get: function () {
|
@@ -4767,19 +4957,15 @@ exports.AlertDescription = AlertDescription;
|
|
4767
4957
|
exports.AlertIcon = AlertIcon;
|
4768
4958
|
exports.AlertTitle = AlertTitle;
|
4769
4959
|
exports.Badge = Badge;
|
4770
|
-
exports.Box = react.Box;
|
4771
4960
|
exports.BreadCrumb = BreadCrumb;
|
4772
4961
|
exports.Button = Button;
|
4773
4962
|
exports.Card = CardCustom;
|
4774
4963
|
exports.Checkbox = CheckboxComponent;
|
4775
4964
|
exports.CheckboxGroup = CheckboxGroupComponent;
|
4776
|
-
exports.Container = react.Container;
|
4777
4965
|
exports.DataTable = DataTable;
|
4778
4966
|
exports.DatePickerMonth = DatePickerMonth;
|
4779
4967
|
exports.Datepicker = Datepicker;
|
4780
4968
|
exports.Field = Field;
|
4781
|
-
exports.Flex = react.Flex;
|
4782
|
-
exports.Grid = react.Grid;
|
4783
4969
|
exports.Header = Header;
|
4784
4970
|
exports.InputAddonLeft = InputAddonLeft;
|
4785
4971
|
exports.InputAddonRight = InputAddonRight;
|
@@ -4803,17 +4989,15 @@ exports.Select = Select;
|
|
4803
4989
|
exports.SelectAsync = SelectAsync;
|
4804
4990
|
exports.SelectAsyncCreatable = SelectAsyncCreatable;
|
4805
4991
|
exports.SelectCreatable = SelectCreatable;
|
4806
|
-
exports.Stack = react.Stack;
|
4807
4992
|
exports.Switch = Switch;
|
4808
4993
|
exports.Tab = Tab;
|
4809
4994
|
exports.TabList = TabList;
|
4810
4995
|
exports.TabPanel = TabPanel;
|
4811
|
-
exports.Text = react.Text;
|
4812
4996
|
exports.TextareaField = TextareaField;
|
4813
4997
|
exports.Uploader = Uploader;
|
4814
|
-
exports.Wrap = react.Wrap;
|
4815
4998
|
exports.foundations = foundations;
|
4816
4999
|
exports.theme = theme;
|
4817
5000
|
exports.useAlertStyles = useAlertStyles;
|
5001
|
+
exports.useFetcher = useFetcher;
|
4818
5002
|
exports.useInternalUI = useInternalUI;
|
4819
5003
|
//# sourceMappingURL=internal-ui.cjs.development.js.map
|