@northlight/ui 2.12.0 → 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.
- package/dist/es/{northlight.d.mts → northlight.d.ts} +10 -10
- package/dist/es/{northlight.mjs → northlight.js} +6 -6
- package/dist/es/northlight.js.map +1 -0
- package/dist/umd/{northlight.js → northlight.cjs} +6 -6
- package/dist/umd/northlight.cjs.map +1 -0
- package/dist/umd/northlight.min.cjs +28 -0
- package/dist/umd/northlight.min.cjs.map +1 -0
- package/package.json +8 -8
- package/dist/es/northlight.mjs.map +0 -1
- package/dist/ts/types.d.ts +0 -3769
- package/dist/umd/northlight.js.map +0 -1
- package/dist/umd/northlight.min.js +0 -28
- package/dist/umd/northlight.min.js.map +0 -1
|
@@ -1155,7 +1155,7 @@ const MyCarousel = () => {
|
|
|
1155
1155
|
|
|
1156
1156
|
<VStack
|
|
1157
1157
|
borderColor="border.default"
|
|
1158
|
-
borderWidth="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
3089
|
-
borderWidth="
|
|
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="
|
|
3129
|
-
borderWidth="
|
|
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="
|
|
3171
|
-
borderWidth="
|
|
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("
|
|
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: "
|
|
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: "
|
|
10726
|
+
borderRadius: "md",
|
|
10727
10727
|
borderColor: "border.default",
|
|
10728
|
-
borderWidth: "
|
|
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: "
|
|
10739
|
+
borderTopWidth: "xs"
|
|
10740
10740
|
}
|
|
10741
10741
|
})
|
|
10742
10742
|
}
|
|
@@ -12694,4 +12694,4 @@ const StepStack = (_a) => {
|
|
|
12694
12694
|
};
|
|
12695
12695
|
|
|
12696
12696
|
export { Accordion, AccordionButton, AccordionItem, AccordionPanel, Alert$1 as Alert, AspectRatio, AsyncError, Avatar$1 as Avatar, AvatarGroup, Badge, Blinker$1 as Blinker, Blockquote$1 as Blockquote, Button$1 as Button, Capitalized$1 as Capitalized, Carousel$1 as Carousel, Checkbox$1 as Checkbox, CheckboxField, Clickable, ClipboardInput, Collapse, ColorPicker$1 as ColorPicker, ColorPickerField, CustomTheme, DatePicker$1 as DatePicker, DatePickerField, DateRangePicker, DateRangePickerField, DragAndDrop$1 as DragAndDrop, DragHandle, DragItem, Draggable, DropZone, Droppable, EditableText$1 as EditableText, Fade, FastGrid, FastList, Field, FilePicker$1 as FilePicker, FilePickerField, FlipButton$1 as FlipButton, FlipButtonGroup, FlipButtonGroupField, Form, FormLabel, FormattedNumberInput, FormattedNumberInputField, H1$1 as H1, H2$1 as H2, H3$1 as H3, H4$1 as H4, H5$1 as H5, H6$1 as H6, Icon$1 as Icon, IconButton, Label$1 as Label, Lead$1 as Lead, MaskedTextInput, MediatoolThemeProvider, Modal$1 as Modal, ModalBase, MultiFileList, MultiFilePicker, MultiFilePickerField, MultiFileUploader, MultiSort, NotificationIconButton, NumberInput, NumberInputField, OrganizationLogo, OverflowGroup, P$1 as P, PaneDivider, PaneItem, PinInput, ProgressBar, Radio$1 as Radio, RadioGroup, RadioGroupField, ScaleFade, SearchBar, SearchBarField, Select, SelectField, Slide, SlideFade, Small$1 as Small, Sortable, SortableContainer, SortableItem, SortableList, Spinner$1 as Spinner, SplitPane, StatusBlock, StatusPin, Step, StepList, StepPanel, StepStack, Steps, Switch, SwitchField, TabPanel, Table$1 as Table, Tabs, Tag$1 as Tag, TagGroup, TagsInput, TextField, Textarea, TextareaField, Tiny$1 as Tiny, Toast, Toolbox$1 as Toolbox, ToolboxContent, ToolboxFooter, ToolboxHeader, addAlpha, advancedParseFloat, createDebounceFunctionInstance, getChildrenWithProps, getContrastColor, getFieldError, getInitials, getMatchingValue, getShades, highlight, luminosity, ring, statusIconMap, theme, tottTheme, trimFormValues, useArrowFocus, useCurrentTheme, useDebounce, useDidUpdateEffect, useLoadingMessage, useOutsideRectClick, useOverflowGroup, useScreenSize, useScrollToBottom, useSelectCallbacks, useSetValueRefreshed, useToast };
|
|
12697
|
-
//# sourceMappingURL=northlight.
|
|
12697
|
+
//# sourceMappingURL=northlight.js.map
|