@northlight/ui 2.12.1 → 2.12.2

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.
@@ -1155,7 +1155,7 @@ const MyCarousel = () => {
1155
1155
 
1156
1156
  <VStack
1157
1157
  borderColor="border.default"
1158
- borderWidth="st.border.width.sm" borderStyle="solid" p="2" borderRadius="st.border.radius.lg">
1158
+ borderWidth="sm" borderStyle="solid" p="2" borderRadius="lg">
1159
1159
  <Box w="full" h="sm">
1160
1160
  <Carousel
1161
1161
  showArrows={ false }
@@ -1338,7 +1338,7 @@ interface SortableContainerProps {
1338
1338
  * <Center
1339
1339
  * boxSize="3xs"
1340
1340
  * boxShadow="xl"
1341
- * borderRadius="st.border.radius.lg"
1341
+ * borderRadius="lg"
1342
1342
  * bgColor="bg.overlayer"
1343
1343
  * >I am draggable</Center>
1344
1344
  * </Draggable>
@@ -2152,7 +2152,7 @@ declare const FilePickerField: ({ name, label, direction, isRequired, validate,
2152
2152
  <Box h="sm">
2153
2153
  <Carousel>
2154
2154
  { images.map((imageSrc) => (
2155
- <Image src={imageSrc} borderRadius="st.border.radius.md" />
2155
+ <Image src={imageSrc} borderRadius="md" />
2156
2156
  )) }
2157
2157
  </Carousel>
2158
2158
  </Box>
@@ -2828,7 +2828,7 @@ declare const Tag: (props: TagProps & React__default.RefAttributes<unknown>) =>
2828
2828
  * ##Try resizing the window!
2829
2829
  * (?
2830
2830
  <TagGroup w="full"
2831
- borderWidth="st.border.width.sm"
2831
+ borderWidth="sm"
2832
2832
  borderColor="border.default"
2833
2833
  borderStyle="solid"
2834
2834
  p="2"
@@ -3085,8 +3085,8 @@ interface CollapseProps extends FadeProps, Omit<CollapseProps$1, 'delay'> {
3085
3085
  return (
3086
3086
  <>
3087
3087
  <Button onClick={toggle}>Render random number</Button>
3088
- <Box borderRadius="st.border.radius.sm"
3089
- borderWidth="st.border.width.sm" borderColor="border.default">
3088
+ <Box borderRadius="sm"
3089
+ borderWidth="sm" borderColor="border.default">
3090
3090
  <Fade in={ show} exitDuration={1}>
3091
3091
  <HStack p="10" bg="bg.filled" rounded="md" >
3092
3092
  <H3>
@@ -3125,8 +3125,8 @@ declare const Fade: ({ children, enterDuration, exitDuration, duration, in: show
3125
3125
  return (
3126
3126
  <>
3127
3127
  <Button onClick={toggle}>Render random number</Button>
3128
- <Box borderRadius="st.border.radius.sm"
3129
- borderWidth="st.border.width.sm" borderColor="border.default">
3128
+ <Box borderRadius="sm"
3129
+ borderWidth="sm" borderColor="border.default">
3130
3130
  <SlideFade in={ show} exitDuration={1}>
3131
3131
  <HStack p="10" bg="bg.filled" rounded="md" >
3132
3132
  <H3>
@@ -3167,8 +3167,8 @@ declare const SlideFade: ({ children, enterDuration, exitDuration, duration, in:
3167
3167
  return (
3168
3168
  <>
3169
3169
  <Button onClick={toggle}>Click Me</Button>
3170
- <Box borderRadius="st.border.radius.sm"
3171
- borderWidth="st.border.width.sm" borderColor="border.default">
3170
+ <Box borderRadius="sm"
3171
+ borderWidth="sm" borderColor="border.default">
3172
3172
  <Collapse in={ show}>
3173
3173
  <HStack p="10" bg="bg.filled" rounded="md" >
3174
3174
  <P>
@@ -633,7 +633,7 @@ function TagsInput(_a) {
633
633
  "data-testid",
634
634
  "value"
635
635
  ]);
636
- const [borderColor] = useToken$1("colors.border.select", ["focus"]);
636
+ const [borderColor] = useToken$1("border.select", ["focus"]);
637
637
  const [menuIsOpen, setMenuIsOpen] = useState(false);
638
638
  const [inputValue, setInputValue] = useState("");
639
639
  const [selectedOptions, setSelectedOptions] = useState(value);
@@ -9496,7 +9496,7 @@ const DragAndDrop = {
9496
9496
  parts: ["dropZone"],
9497
9497
  baseStyle: ({ sx }) => ({
9498
9498
  dropZone: merge({
9499
- borderWidth: "st.border.width.sm",
9499
+ borderWidth: "sm",
9500
9500
  borderStyle: "dashed",
9501
9501
  borderColor: "border.default",
9502
9502
  padding: "4",
@@ -10723,9 +10723,9 @@ const Table = {
10723
10723
  table: {
10724
10724
  borderSpacing: "0",
10725
10725
  borderCollapse: "separate",
10726
- borderRadius: "st.border.radius.md",
10726
+ borderRadius: "md",
10727
10727
  borderColor: "border.default",
10728
- borderWidth: "st.border.width.xs",
10728
+ borderWidth: "xs",
10729
10729
  px: "3"
10730
10730
  },
10731
10731
  th: {
@@ -10736,7 +10736,7 @@ const Table = {
10736
10736
  },
10737
10737
  td: {
10738
10738
  borderColor: "border.default",
10739
- borderTopWidth: "st.border.width.xs"
10739
+ borderTopWidth: "xs"
10740
10740
  }
10741
10741
  })
10742
10742
  }