@team_yumi/ramen 0.4.0-next.20231123-b5f5bca-2ffdba989b40213ee2c85fa43e56dd4f → 0.4.0-next.20231124-d88d645-3ad6a26ff91e0246421b442565a18a54

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.
@@ -7,6 +7,7 @@ export interface IProps {
7
7
  color?: (typeof Collections.ITagColor)[number];
8
8
  onClose?: MouseEventHandler<HTMLDivElement>;
9
9
  onClick?: MouseEventHandler<HTMLDivElement>;
10
+ disabled?: boolean;
10
11
  }
11
12
  declare const XTag: React.FC<IProps>;
12
13
  export default XTag;
@@ -17,6 +17,7 @@ export interface IProps {
17
17
  searchText: string;
18
18
  data?: IData;
19
19
  setData: (data: IData) => void;
20
+ disabled?: boolean;
20
21
  }
21
22
  declare const XSelectModal: React.FC<IProps>;
22
23
  export default XSelectModal;
package/index.css CHANGED
@@ -1600,6 +1600,10 @@
1600
1600
  transform: scale(0.95);
1601
1601
  }
1602
1602
 
1603
+ .root-module_xtag--disabled__UcRb- {
1604
+ color: var(--neutral-dark-50, #999999);
1605
+ }
1606
+
1603
1607
  .root-module_xtag__text_container__HXCgg {
1604
1608
  display: flex;
1605
1609
  align-items: center;
@@ -1632,7 +1636,6 @@
1632
1636
  text-align: center;
1633
1637
  }
1634
1638
 
1635
-
1636
1639
  /* color green */
1637
1640
  .root-module_xtag--color-green__O-2oh .root-module_xtag__text_container__HXCgg {
1638
1641
  background: var(--xtag-color-green);
@@ -1729,7 +1732,6 @@
1729
1732
  color: var(--color-neutral-lightest);
1730
1733
  }
1731
1734
 
1732
-
1733
1735
  /* color yellow */
1734
1736
  .root-module_xtag--color-yellow__vRla3 .root-module_xtag__text_container__HXCgg {
1735
1737
  background: var(--xtag-color-yellow);
@@ -1741,6 +1743,7 @@
1741
1743
  .root-module_xtag--color-yellow__vRla3 .root-module_xtag__icon__yybge > div {
1742
1744
  color: var(--color-neutral-darkest);
1743
1745
  }
1746
+
1744
1747
  .root-module_xtag_business__pRYgk {
1745
1748
  display: flex;
1746
1749
  height: var(--xbox-size-9);
@@ -1897,7 +1900,7 @@
1897
1900
  }
1898
1901
 
1899
1902
  .root-module_xinput__wKJg8 {
1900
- background-color: var(--color-neutral-lightest, #FFFFFF);
1903
+ background-color: var(--color-neutral-lightest, #ffffff);
1901
1904
  border-radius: 999px;
1902
1905
  display: flex;
1903
1906
  flex-direction: column;