@brainfish-ai/components 0.23.9 → 0.23.11
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/dist/esm/chunks/{ChatSearch.DVi90w5m.js → ChatSearch.CVOKmj3k.js} +2 -18
- package/dist/esm/chunks/ChatSearch.CVOKmj3k.js.map +1 -0
- package/dist/esm/chunks/feature-flags.C57XMODn.js +22 -0
- package/dist/esm/chunks/feature-flags.C57XMODn.js.map +1 -0
- package/dist/esm/chunks/{header-nav.C824ye-L.js → header-nav.CCJ9OYeY.js} +25 -3
- package/dist/esm/chunks/header-nav.CCJ9OYeY.js.map +1 -0
- package/dist/esm/chunks/{layout.DnKiObhP.js → layout.DQxWg92F.js} +11 -5
- package/dist/esm/chunks/layout.DQxWg92F.js.map +1 -0
- package/dist/esm/chunks/{sidebar.Ck_Z9Zmb.js → sidebar.rkD1Uw3Z.js} +48 -13
- package/dist/esm/chunks/sidebar.rkD1Uw3Z.js.map +1 -0
- package/dist/esm/components/chat-search.js +1 -1
- package/dist/esm/global.css +1 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/layouts/full-layout.js +3 -2
- package/dist/esm/layouts/full-layout.js.map +1 -1
- package/dist/esm/layouts/header-nav.js +1 -1
- package/dist/esm/layouts/sidebar.js +1 -1
- package/dist/esm/tailwind.preset.js +16 -0
- package/dist/esm/tailwind.preset.js.map +1 -1
- package/dist/full-layout.d.ts +17 -5
- package/dist/header-nav.d.ts +1 -0
- package/dist/index.d.ts +13 -5
- package/dist/sidebar.d.ts +2 -0
- package/dist/stats.html +1 -1
- package/package.json +1 -1
- package/tailwind.preset.ts +18 -0
- package/dist/esm/chunks/ChatSearch.DVi90w5m.js.map +0 -1
- package/dist/esm/chunks/header-nav.C824ye-L.js.map +0 -1
- package/dist/esm/chunks/layout.DnKiObhP.js.map +0 -1
- package/dist/esm/chunks/sidebar.Ck_Z9Zmb.js.map +0 -1
package/package.json
CHANGED
package/tailwind.preset.ts
CHANGED
|
@@ -276,6 +276,24 @@ const preset: Partial<Config> = {
|
|
|
276
276
|
'box-shadow': '4px 4px 0 0 var(--bfc-border)',
|
|
277
277
|
},
|
|
278
278
|
});
|
|
279
|
+
|
|
280
|
+
const yellowfinBase = {
|
|
281
|
+
'border': '1.2px solid transparent',
|
|
282
|
+
'background': `linear-gradient(145.85deg, #1868DB 7.35%, #357DE8 23.69%, #7EE2B8 61.42%, #B4EE2B 82.59%),
|
|
283
|
+
linear-gradient(145.85deg, rgba(180, 238, 43, 0.7) 3.02%, rgba(126, 226, 184, 0.7) 24.19%, rgba(53, 125, 232, 0.7) 61.92%, rgba(24, 104, 219, 0.7) 78.26%)`,
|
|
284
|
+
'transition': 'all 0.2s ease-in-out',
|
|
285
|
+
'background-origin': 'border-box',
|
|
286
|
+
'background-clip': 'content-box, border-box',
|
|
287
|
+
} as const;
|
|
288
|
+
|
|
289
|
+
addUtilities({
|
|
290
|
+
'.bg-yellowfin-gradient': { ...yellowfinBase },
|
|
291
|
+
'.bg-yellowfin-gradient-reverse': {
|
|
292
|
+
...yellowfinBase,
|
|
293
|
+
'filter': 'brightness(1.02) saturate(1.5) hue-rotate(5deg)',
|
|
294
|
+
'transform': 'translateY(-1px)',
|
|
295
|
+
},
|
|
296
|
+
});
|
|
279
297
|
}),
|
|
280
298
|
],
|
|
281
299
|
};
|