@plaidev/karte-action-sdk 1.1.233 → 1.1.234

Sign up to get free protection for your applications and to get access to all the features.
@@ -2601,7 +2601,9 @@ type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorP
2601
2601
  variant?: string;
2602
2602
  size?: keyof typeof LAYER_TEXT_SIZE;
2603
2603
  align?: Properties["textAlign"];
2604
+ fontSize?: Properties["fontSize"];
2604
2605
  fontWeight?: Properties["fontWeight"];
2606
+ lineHeight?: Properties["lineHeight"];
2605
2607
  color?: Properties["color"];
2606
2608
  width?: Properties["width"];
2607
2609
  };
@@ -14814,6 +14814,17 @@ function instance$2($$self, $$props, $$invalidate) {
14814
14814
  }
14815
14815
  };
14816
14816
 
14817
+ const getCssSize = () => {
14818
+ return {
14819
+ fontSize: props.fontSize
14820
+ ? props.fontSize
14821
+ : VARIANTS.size[props.size ?? 'medium'].fontSize,
14822
+ lineHeight: props.lineHeight
14823
+ ? props.lineHeight
14824
+ : VARIANTS.size[props.size ?? 'medium'].lineHeight
14825
+ };
14826
+ };
14827
+
14817
14828
  $$self.$$set = $$props => {
14818
14829
  if ('props' in $$props) $$invalidate(3, props = $$props.props);
14819
14830
  if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
@@ -14828,10 +14839,11 @@ function instance$2($$self, $$props, $$invalidate) {
14828
14839
  $$invalidate(1, style = objToStyle({
14829
14840
  position: props?.position ?? 'static',
14830
14841
  fontWeight: props.fontWeight,
14842
+ fontSize: props.fontSize,
14831
14843
  color: props.color,
14832
14844
  textAlign: props.align,
14833
14845
  width: props.width,
14834
- ...VARIANTS.size[props.size ?? 'medium'],
14846
+ ...getCssSize(),
14835
14847
  ...toCssRadius(props),
14836
14848
  ...toCssBackgroundColor(props),
14837
14849
  ...toCssCommon(props),
@@ -2601,7 +2601,9 @@ type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorP
2601
2601
  variant?: string;
2602
2602
  size?: keyof typeof LAYER_TEXT_SIZE;
2603
2603
  align?: Properties["textAlign"];
2604
+ fontSize?: Properties["fontSize"];
2604
2605
  fontWeight?: Properties["fontWeight"];
2606
+ lineHeight?: Properties["lineHeight"];
2605
2607
  color?: Properties["color"];
2606
2608
  width?: Properties["width"];
2607
2609
  };
package/dist/index.es.js CHANGED
@@ -13719,6 +13719,17 @@ function instance$2($$self, $$props, $$invalidate) {
13719
13719
  }
13720
13720
  };
13721
13721
 
13722
+ const getCssSize = () => {
13723
+ return {
13724
+ fontSize: props.fontSize
13725
+ ? props.fontSize
13726
+ : VARIANTS.size[props.size ?? 'medium'].fontSize,
13727
+ lineHeight: props.lineHeight
13728
+ ? props.lineHeight
13729
+ : VARIANTS.size[props.size ?? 'medium'].lineHeight
13730
+ };
13731
+ };
13732
+
13722
13733
  $$self.$$set = $$props => {
13723
13734
  if ('props' in $$props) $$invalidate(3, props = $$props.props);
13724
13735
  if ('layerId' in $$props) $$invalidate(0, layerId = $$props.layerId);
@@ -13733,10 +13744,11 @@ function instance$2($$self, $$props, $$invalidate) {
13733
13744
  $$invalidate(1, style = objToStyle({
13734
13745
  position: props?.position ?? 'static',
13735
13746
  fontWeight: props.fontWeight,
13747
+ fontSize: props.fontSize,
13736
13748
  color: props.color,
13737
13749
  textAlign: props.align,
13738
13750
  width: props.width,
13739
- ...VARIANTS.size[props.size ?? 'medium'],
13751
+ ...getCssSize(),
13740
13752
  ...toCssRadius(props),
13741
13753
  ...toCssBackgroundColor(props),
13742
13754
  ...toCssCommon(props),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.233",
3
+ "version": "1.1.234",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "module": "./dist/index.es.js",
@@ -130,6 +130,9 @@
130
130
  "test:e2e": "vitest run spec",
131
131
  "test:update": "vitest -u",
132
132
  "coverage": "vitest run test --coverage",
133
- "icons:update": "tsx ./scripts/update-icons.ts && prettier -w ./src/icons.ts"
133
+ "icons:update": "tsx ./scripts/update-icons.ts && prettier -w ./src/icons.ts",
134
+ "update:version": "COREPACK_ENABLE_STRICT=0 npm version patch",
135
+ "publish:beta": "pnpm publish --tag=beta --access=public --no-git-checks",
136
+ "publish:latest": "COREPACK_ENABLE_STRICT=0 npm dist-tag add @plaidev/karte-action-sdk@$(node -e \"console.log(require('./package.json').version)\") latest"
134
137
  }
135
138
  }