@noya-app/noya-designsystem 0.1.20 → 0.1.21
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/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +7 -0
- package/dist/index.js +13 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/Chip.tsx +2 -2
- package/src/components/InputField.tsx +8 -2
- package/src/theme/light.ts +2 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
[34mCLI[39m Target: esnext
|
|
6
6
|
[34mCJS[39m Build start
|
|
7
7
|
[34mESM[39m Build start
|
|
8
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m209.89 KB[39m
|
|
9
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m459.25 KB[39m
|
|
10
|
+
[32mESM[39m ⚡️ Build success in 295ms
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m227.68 KB[39m
|
|
12
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m459.13 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 296ms
|
|
8
14
|
[34mDTS[39m Build start
|
|
9
|
-
[
|
|
10
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m458.94 KB[39m
|
|
11
|
-
[32mCJS[39m ⚡️ Build success in 249ms
|
|
12
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m209.78 KB[39m
|
|
13
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m459.06 KB[39m
|
|
14
|
-
[32mESM[39m ⚡️ Build success in 252ms
|
|
15
|
-
[32mDTS[39m ⚡️ Build success in 9569ms
|
|
15
|
+
[32mDTS[39m ⚡️ Build success in 12004ms
|
|
16
16
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m60.59 KB[39m
|
|
17
17
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m60.59 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -788,7 +788,8 @@ var textStyles = {
|
|
|
788
788
|
fontFamily: fonts.normal,
|
|
789
789
|
fontSize: `${typeScale[6]}rem`,
|
|
790
790
|
fontWeight: 400,
|
|
791
|
-
lineHeight: "
|
|
791
|
+
lineHeight: "19px"
|
|
792
|
+
// lineHeight: "1.4",
|
|
792
793
|
},
|
|
793
794
|
button: {
|
|
794
795
|
fontFamily: fonts.normal,
|
|
@@ -2043,7 +2044,11 @@ var InputElement = (0, import_styled_components13.default)(TextInput_default)(({
|
|
|
2043
2044
|
// },
|
|
2044
2045
|
};
|
|
2045
2046
|
});
|
|
2046
|
-
var InputFieldInput = (0, import_react32.forwardRef)(function InputFieldInput2(
|
|
2047
|
+
var InputFieldInput = (0, import_react32.forwardRef)(function InputFieldInput2({
|
|
2048
|
+
textAlign,
|
|
2049
|
+
variant,
|
|
2050
|
+
...rest
|
|
2051
|
+
}, forwardedRef) {
|
|
2047
2052
|
const {
|
|
2048
2053
|
labelPosition,
|
|
2049
2054
|
labelSize,
|
|
@@ -2071,8 +2076,10 @@ var InputFieldInput = (0, import_react32.forwardRef)(function InputFieldInput2(p
|
|
|
2071
2076
|
$hasLabel: hasLabel,
|
|
2072
2077
|
$hasDropdown: hasDropdown,
|
|
2073
2078
|
$size: size2,
|
|
2079
|
+
$variant: variant,
|
|
2080
|
+
$textAlign: textAlign,
|
|
2074
2081
|
onFocusChange: handleFocusChange,
|
|
2075
|
-
...
|
|
2082
|
+
...rest
|
|
2076
2083
|
}
|
|
2077
2084
|
);
|
|
2078
2085
|
});
|
|
@@ -2597,15 +2604,15 @@ var ChipElement = import_styled_components16.default.span(({ theme, $colorScheme
|
|
|
2597
2604
|
userSelect: "none",
|
|
2598
2605
|
display: "inline-flex",
|
|
2599
2606
|
alignItems: "center",
|
|
2600
|
-
lineHeight: "1.4",
|
|
2607
|
+
// lineHeight: "1.4",
|
|
2608
|
+
lineHeight: "15px",
|
|
2601
2609
|
whiteSpace: "pre",
|
|
2602
2610
|
...$size === "medium" ? {
|
|
2603
2611
|
fontSize: "11px",
|
|
2604
2612
|
padding: "4px 8px"
|
|
2605
2613
|
} : {
|
|
2606
2614
|
fontSize: "9px",
|
|
2607
|
-
padding: "0px 4px"
|
|
2608
|
-
lineHeight: "15px"
|
|
2615
|
+
padding: "0px 4px"
|
|
2609
2616
|
},
|
|
2610
2617
|
...$monospace && {
|
|
2611
2618
|
fontFamily: theme.fonts.monospace
|