@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.
@@ -5,13 +5,13 @@
5
5
  CLI Target: esnext
6
6
  CJS Build start
7
7
  ESM Build start
8
+ ESM dist/index.mjs 209.89 KB
9
+ ESM dist/index.mjs.map 459.25 KB
10
+ ESM ⚡️ Build success in 295ms
11
+ CJS dist/index.js 227.68 KB
12
+ CJS dist/index.js.map 459.13 KB
13
+ CJS ⚡️ Build success in 296ms
8
14
  DTS Build start
9
- CJS dist/index.js 227.57 KB
10
- CJS dist/index.js.map 458.94 KB
11
- CJS ⚡️ Build success in 249ms
12
- ESM dist/index.mjs 209.78 KB
13
- ESM dist/index.mjs.map 459.06 KB
14
- ESM ⚡️ Build success in 252ms
15
- DTS ⚡️ Build success in 9569ms
15
+ DTS ⚡️ Build success in 12004ms
16
16
  DTS dist/index.d.ts 60.59 KB
17
17
  DTS dist/index.d.mts 60.59 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @noya-app/noya-designsystem
2
2
 
3
+ ## 0.1.21
4
+
5
+ ### Patch Changes
6
+
7
+ - 57bf0c9: Improve pixel ratio, toolbar, details
8
+ - dd8569c: Fix input styling
9
+
3
10
  ## 0.1.20
4
11
 
5
12
  ### Patch Changes
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: "1.4"
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(props, forwardedRef) {
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
- ...props
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