tyrell-components 1.0.0-TC28 → 1.0.0-TC29
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/css/tyrell.css +0 -7
- package/dist/tyrell.css +0 -7
- package/dist/tyrell.js +1 -1
- package/lib/components/button.d.ts +9 -1
- package/lib/components/button.d.ts.map +1 -1
- package/lib/components/button.js +22 -3
- package/lib/components/button.js.map +1 -1
- package/lib/components/tag.d.ts +9 -1
- package/lib/components/tag.d.ts.map +1 -1
- package/lib/components/tag.js +40 -4
- package/lib/components/tag.js.map +1 -1
- package/lib/styles/button.d.ts +3 -1
- package/lib/styles/button.d.ts.map +1 -1
- package/lib/styles/button.js +58 -185
- package/lib/styles/button.js.map +1 -1
- package/lib/styles/calendar-month.d.ts +1 -1
- package/lib/styles/calendar-month.d.ts.map +1 -1
- package/lib/styles/calendar-month.js +21 -19
- package/lib/styles/calendar-month.js.map +1 -1
- package/lib/styles/calendar-navigation.d.ts +1 -1
- package/lib/styles/calendar-navigation.d.ts.map +1 -1
- package/lib/styles/calendar-navigation.js +8 -0
- package/lib/styles/calendar-navigation.js.map +1 -1
- package/lib/styles/date-picker.d.ts +1 -1
- package/lib/styles/date-picker.d.ts.map +1 -1
- package/lib/styles/date-picker.js +12 -4
- package/lib/styles/date-picker.js.map +1 -1
- package/lib/styles/tag.d.ts +1 -1
- package/lib/styles/tag.d.ts.map +1 -1
- package/lib/styles/tag.js +36 -140
- package/lib/styles/tag.js.map +1 -1
- package/lib/types/common.d.ts +2 -1
- package/lib/types/common.d.ts.map +1 -1
- package/lib/types/common.js +13 -1
- package/lib/types/common.js.map +1 -1
- package/lib/utils/flavor-sheet.d.ts +32 -0
- package/lib/utils/flavor-sheet.d.ts.map +1 -0
- package/lib/utils/flavor-sheet.js +40 -0
- package/lib/utils/flavor-sheet.js.map +1 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
package/css/tyrell.css
CHANGED
|
@@ -176,7 +176,6 @@ Simplified from 7 variants to 5 practical variants:
|
|
|
176
176
|
--ty-color-neutral-soft: #374151;
|
|
177
177
|
--ty-color-neutral-faint: #9ca3af;
|
|
178
178
|
|
|
179
|
-
/* Accent - brand highlights, focus rings, selection states */
|
|
180
179
|
|
|
181
180
|
/* =================================================================
|
|
182
181
|
BACKGROUND COLORS
|
|
@@ -226,7 +225,6 @@ BACKGROUND COLORS
|
|
|
226
225
|
--ty-bg-neutral-bold: #cecece;
|
|
227
226
|
--ty-bg-neutral-soft: #ededed;
|
|
228
227
|
|
|
229
|
-
/* Accent backgrounds */
|
|
230
228
|
|
|
231
229
|
/* =================================================================
|
|
232
230
|
BORDER COLORS
|
|
@@ -621,7 +619,6 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
621
619
|
--ty-color-neutral-soft: #696969;
|
|
622
620
|
--ty-color-neutral-faint: #474747;
|
|
623
621
|
|
|
624
|
-
/* Accent - dark mode (emphasis inverted) */
|
|
625
622
|
|
|
626
623
|
/* Backgrounds for dark mode */
|
|
627
624
|
--ty-bg-faint: #0f1419;
|
|
@@ -658,7 +655,6 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
658
655
|
--ty-bg-neutral: #323232;
|
|
659
656
|
--ty-bg-neutral-soft: #242424;
|
|
660
657
|
|
|
661
|
-
/* Accent backgrounds - dark mode */
|
|
662
658
|
|
|
663
659
|
/* Borders for dark mode */
|
|
664
660
|
--ty-border-strong: #8c8c8c;
|
|
@@ -1098,7 +1094,6 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1098
1094
|
background-color: var(--ty-bg-neutral-soft);
|
|
1099
1095
|
}
|
|
1100
1096
|
|
|
1101
|
-
/* Accent backgrounds */
|
|
1102
1097
|
/* =================================================================
|
|
1103
1098
|
TEXT HIERARCHY UTILITIES
|
|
1104
1099
|
================================================================= */
|
|
@@ -1254,7 +1249,6 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1254
1249
|
color: var(--ty-color-neutral-faint) !important;
|
|
1255
1250
|
}
|
|
1256
1251
|
|
|
1257
|
-
/* Accent text colors */
|
|
1258
1252
|
/* =================================================================
|
|
1259
1253
|
BORDER UTILITIES
|
|
1260
1254
|
================================================================= */
|
|
@@ -1550,7 +1544,6 @@ INTERACTIVE STATES
|
|
|
1550
1544
|
color: var(--ty-color-neutral-faint) !important;
|
|
1551
1545
|
}
|
|
1552
1546
|
|
|
1553
|
-
/* Accent text hover states */
|
|
1554
1547
|
/* Hover states for borders */
|
|
1555
1548
|
/* Base border hover states */
|
|
1556
1549
|
.hover\:ty-border\+\+:hover {
|
package/dist/tyrell.css
CHANGED
|
@@ -176,7 +176,6 @@ Simplified from 7 variants to 5 practical variants:
|
|
|
176
176
|
--ty-color-neutral-soft: #374151;
|
|
177
177
|
--ty-color-neutral-faint: #9ca3af;
|
|
178
178
|
|
|
179
|
-
/* Accent - brand highlights, focus rings, selection states */
|
|
180
179
|
|
|
181
180
|
/* =================================================================
|
|
182
181
|
BACKGROUND COLORS
|
|
@@ -226,7 +225,6 @@ BACKGROUND COLORS
|
|
|
226
225
|
--ty-bg-neutral-bold: #cecece;
|
|
227
226
|
--ty-bg-neutral-soft: #ededed;
|
|
228
227
|
|
|
229
|
-
/* Accent backgrounds */
|
|
230
228
|
|
|
231
229
|
/* =================================================================
|
|
232
230
|
BORDER COLORS
|
|
@@ -621,7 +619,6 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
621
619
|
--ty-color-neutral-soft: #696969;
|
|
622
620
|
--ty-color-neutral-faint: #474747;
|
|
623
621
|
|
|
624
|
-
/* Accent - dark mode (emphasis inverted) */
|
|
625
622
|
|
|
626
623
|
/* Backgrounds for dark mode */
|
|
627
624
|
--ty-bg-faint: #0f1419;
|
|
@@ -658,7 +655,6 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
658
655
|
--ty-bg-neutral: #323232;
|
|
659
656
|
--ty-bg-neutral-soft: #242424;
|
|
660
657
|
|
|
661
|
-
/* Accent backgrounds - dark mode */
|
|
662
658
|
|
|
663
659
|
/* Borders for dark mode */
|
|
664
660
|
--ty-border-strong: #8c8c8c;
|
|
@@ -1098,7 +1094,6 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1098
1094
|
background-color: var(--ty-bg-neutral-soft);
|
|
1099
1095
|
}
|
|
1100
1096
|
|
|
1101
|
-
/* Accent backgrounds */
|
|
1102
1097
|
/* =================================================================
|
|
1103
1098
|
TEXT HIERARCHY UTILITIES
|
|
1104
1099
|
================================================================= */
|
|
@@ -1254,7 +1249,6 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1254
1249
|
color: var(--ty-color-neutral-faint) !important;
|
|
1255
1250
|
}
|
|
1256
1251
|
|
|
1257
|
-
/* Accent text colors */
|
|
1258
1252
|
/* =================================================================
|
|
1259
1253
|
BORDER UTILITIES
|
|
1260
1254
|
================================================================= */
|
|
@@ -1550,7 +1544,6 @@ INTERACTIVE STATES
|
|
|
1550
1544
|
color: var(--ty-color-neutral-faint) !important;
|
|
1551
1545
|
}
|
|
1552
1546
|
|
|
1553
|
-
/* Accent text hover states */
|
|
1554
1547
|
/* Hover states for borders */
|
|
1555
1548
|
/* Base border hover states */
|
|
1556
1549
|
.hover\:ty-border\+\+:hover {
|