@flytedan/flytebot-design-system 0.5.0 → 0.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flytedan/flytebot-design-system",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "flytedesk Design System — shared component library, tokens, and business-logic kits for flytedesk apps.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",
@@ -852,6 +852,26 @@
852
852
  border-color: var(--border-brand);
853
853
  color: var(--text-on-surface-brand);
854
854
  }
855
+ .fd-tag[aria-pressed="true"].fd-tag-info {
856
+ background: var(--info-fill);
857
+ border-color: var(--info-border);
858
+ color: var(--info-text);
859
+ }
860
+ .fd-tag[aria-pressed="true"].fd-tag-success {
861
+ background: var(--ok-fill);
862
+ border-color: var(--ok-border);
863
+ color: var(--ok-text);
864
+ }
865
+ .fd-tag[aria-pressed="true"].fd-tag-warning {
866
+ background: var(--warn-fill);
867
+ border-color: var(--warn-border);
868
+ color: var(--warn-text);
869
+ }
870
+ .fd-tag[aria-pressed="true"].fd-tag-danger {
871
+ background: var(--danger-fill);
872
+ border-color: var(--danger-border);
873
+ color: var(--danger-text);
874
+ }
855
875
  .fd-tag-remove {
856
876
  display: grid;
857
877
  place-items: center;