@team_yumi/ramen 0.4.0-next.20231124-d88d645-3ad6a26ff91e0246421b442565a18a54 → 0.4.0-next.20231124-6a01ee9-56428f393d415f317b0ef9a378f93e4a

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.
@@ -3,6 +3,7 @@ import { Collections } from './../../../models';
3
3
  export interface IProps {
4
4
  orientation?: (typeof Collections.IOrientation)[number];
5
5
  size?: (typeof Collections.ISize)[number];
6
+ backgroundThone?: (typeof Collections.IBackgroundThone)[number];
6
7
  }
7
8
  declare const XDivider: React.FC<IProps>;
8
9
  export default XDivider;
@@ -9,6 +9,10 @@ export interface IProps {
9
9
  lineClamp?: (typeof Collections.ILineClamp)[number];
10
10
  textAlign?: (typeof Collections.ITextAlign)[number];
11
11
  colorThone?: (typeof Collections.ITextColorThone)[number];
12
+ /**
13
+ * Text color can be any color from the palette fundamentals
14
+ */
15
+ color?: (typeof Collections.IColor)[number];
12
16
  }
13
17
  declare const XText: React.FC<IProps>;
14
18
  export default XText;
package/index.css CHANGED
@@ -396,7 +396,6 @@
396
396
  }
397
397
 
398
398
 
399
-
400
399
  .root-module_background_thone-darkest__i0opu {
401
400
  background-color: var(--color-neutral-dark);
402
401
  }
@@ -421,6 +420,10 @@
421
420
  background-color: var(--color-neutral-dark);
422
421
  }
423
422
 
423
+ .root-module_background_thone-dark-30__e-30s {
424
+ background-color: var(--neutral-dark-30);
425
+ }
426
+
424
427
  .root-module_border_radius-xxs__fG-b3{
425
428
  border-radius: var(--xbox-border-small);
426
429
  }
@@ -571,6 +574,62 @@
571
574
  color: var(--color-neutral-light);
572
575
  }
573
576
 
577
+
578
+ /**
579
+ * Colors
580
+ */
581
+ .root-module_color-gray__lVpfL {
582
+ color: var(--color-neutral-light);
583
+ }
584
+
585
+ .root-module_color-disabled__-h7GE {
586
+ color: var(--neutral-dark-50);
587
+ }
588
+
589
+ .root-module_color-black__28xe- {
590
+ color: var(--color-neutral-darkest);
591
+ }
592
+
593
+ .root-module_color-green__LxsRV {
594
+ color: var(--xicon-color-green);
595
+ }
596
+
597
+ .root-module_color-sky-blue__aFXgz {
598
+ color: var(--xicon-color-sky-blue);
599
+ }
600
+
601
+ .root-module_color-orange__PR323 {
602
+ color: var(--xicon-color-orange);
603
+ }
604
+
605
+ .root-module_color-red__niURw {
606
+ color: var(--xicon-color-red);
607
+ }
608
+
609
+ .root-module_color-purple__E1Qm1 {
610
+ color: var(--xicon-color-purple);
611
+ }
612
+
613
+ .root-module_color-pink__2YXPc {
614
+ color: var(--xicon-color-pink);
615
+ }
616
+
617
+ .root-module_color-green-check__AEEdP {
618
+ color: var(--xicon-color-green-check);
619
+ }
620
+
621
+ .root-module_color-red-refuse__LMJyr {
622
+ color: var(--xicon-color-red-refuse);
623
+ }
624
+
625
+ .root-module_color-yellow__MqYDk {
626
+ color: var(--xicon-color-yellow);
627
+ }
628
+
629
+ .root-module_color-turquoise__M7-LO {
630
+ color: var(--xicon-color-turquoise);
631
+ }
632
+
574
633
  .root-module_x-icon__YwX20 {
575
634
  display: inline-block;
576
635
  box-sizing: content-box;
@@ -3048,6 +3107,35 @@
3048
3107
  height: 32px;
3049
3108
  }
3050
3109
 
3110
+
3111
+ .root-module_background_thone-darkest__E96Mt {
3112
+ background-color: var(--color-neutral-dark);
3113
+ }
3114
+
3115
+ .root-module_background_thone-medium__aBAtb {
3116
+ background-color: var(--color-neutral-medium);
3117
+ }
3118
+
3119
+ .root-module_background_thone-dim__DDlW7 {
3120
+ background-color: var(--color-neutral-dim);
3121
+ }
3122
+
3123
+ .root-module_background_thone-lightest__Am7km {
3124
+ background-color: var(--color-neutral-lightest);
3125
+ }
3126
+
3127
+ .root-module_background_thone-light__UjktA {
3128
+ background-color: var(--color-neutral-light);
3129
+ }
3130
+
3131
+ .root-module_background_thone-dark__xTW5z {
3132
+ background-color: var(--color-neutral-dark);
3133
+ }
3134
+
3135
+ .root-module_background_thone-dark-30__9uO6O {
3136
+ background-color: var(--neutral-dark-30);
3137
+ }
3138
+
3051
3139
  .root-module_xexpansion-panel__5nGjX {
3052
3140
  display: flex;
3053
3141
  flex-direction: column;