@ornikar/kitt-universal 35.3.0 → 35.5.0

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.
@@ -4838,6 +4838,17 @@ function getBorderColor$2({
4838
4838
  return 'transparent';
4839
4839
  }
4840
4840
 
4841
+ const getSize = size => {
4842
+ switch (size) {
4843
+ case 'small':
4844
+ return 'kitt.2';
4845
+ case 'xsmall':
4846
+ return 2;
4847
+ default:
4848
+ return 'kitt.4';
4849
+ }
4850
+ };
4851
+
4841
4852
  function AnimatedChoiceItemView({
4842
4853
  children,
4843
4854
  size,
@@ -4865,7 +4876,7 @@ function AnimatedChoiceItemView({
4865
4876
  isHovered,
4866
4877
  isPressed
4867
4878
  }),
4868
- padding: size === 'small' ? 'kitt.2' : 'kitt.4',
4879
+ padding: getSize(size),
4869
4880
  flexGrow: shouldExpand ? 1 : undefined,
4870
4881
  flexShrink: shouldExpand ? 1 : undefined
4871
4882
  });
@@ -13662,6 +13673,10 @@ function Tag({
13662
13673
  deepPurple: {
13663
13674
  background: kittTheme.kitt.palettes.deepPurple['deepPurple.8'],
13664
13675
  font: kittTheme.kitt.palettes.deepPurple['beige.1']
13676
+ },
13677
+ mauve: {
13678
+ background: kittTheme.kitt.palettes.deepPurple['mauve.3'],
13679
+ font: kittTheme.kitt.palettes.deepPurple['grey.9']
13665
13680
  }
13666
13681
  };
13667
13682
  return /*#__PURE__*/jsxs(HStack, {