@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
|
@@ -597,7 +597,7 @@
|
|
|
597
597
|
"data-testid",
|
|
598
598
|
"value"
|
|
599
599
|
]);
|
|
600
|
-
const [borderColor] = react.useToken("
|
|
600
|
+
const [borderColor] = react.useToken("border.select", ["focus"]);
|
|
601
601
|
const [menuIsOpen, setMenuIsOpen] = React.useState(false);
|
|
602
602
|
const [inputValue, setInputValue] = React.useState("");
|
|
603
603
|
const [selectedOptions, setSelectedOptions] = React.useState(value);
|
|
@@ -9460,7 +9460,7 @@
|
|
|
9460
9460
|
parts: ["dropZone"],
|
|
9461
9461
|
baseStyle: ({ sx }) => ({
|
|
9462
9462
|
dropZone: ramda.merge({
|
|
9463
|
-
borderWidth: "
|
|
9463
|
+
borderWidth: "sm",
|
|
9464
9464
|
borderStyle: "dashed",
|
|
9465
9465
|
borderColor: "border.default",
|
|
9466
9466
|
padding: "4",
|
|
@@ -10687,9 +10687,9 @@
|
|
|
10687
10687
|
table: {
|
|
10688
10688
|
borderSpacing: "0",
|
|
10689
10689
|
borderCollapse: "separate",
|
|
10690
|
-
borderRadius: "
|
|
10690
|
+
borderRadius: "md",
|
|
10691
10691
|
borderColor: "border.default",
|
|
10692
|
-
borderWidth: "
|
|
10692
|
+
borderWidth: "xs",
|
|
10693
10693
|
px: "3"
|
|
10694
10694
|
},
|
|
10695
10695
|
th: {
|
|
@@ -10700,7 +10700,7 @@
|
|
|
10700
10700
|
},
|
|
10701
10701
|
td: {
|
|
10702
10702
|
borderColor: "border.default",
|
|
10703
|
-
borderTopWidth: "
|
|
10703
|
+
borderTopWidth: "xs"
|
|
10704
10704
|
}
|
|
10705
10705
|
})
|
|
10706
10706
|
}
|
|
@@ -13544,4 +13544,4 @@
|
|
|
13544
13544
|
});
|
|
13545
13545
|
|
|
13546
13546
|
}));
|
|
13547
|
-
//# sourceMappingURL=northlight.
|
|
13547
|
+
//# sourceMappingURL=northlight.cjs.map
|