@libxai/board 0.17.2 → 0.17.4
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/index.cjs +13 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/styles.css +4806 -4681
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -254,6 +254,10 @@ interface AICallbacks {
|
|
|
254
254
|
* Configuration options for the Kanban board
|
|
255
255
|
*/
|
|
256
256
|
interface BoardConfig {
|
|
257
|
+
/** Theme: 'dark' | 'light' | 'neutral' */
|
|
258
|
+
theme?: 'dark' | 'light' | 'neutral';
|
|
259
|
+
/** Locale for i18n */
|
|
260
|
+
locale?: 'en' | 'es' | string;
|
|
257
261
|
/** Enable virtualization (auto-enabled if >100 cards) */
|
|
258
262
|
enableVirtualization?: boolean;
|
|
259
263
|
/** Enable AI features */
|
package/dist/index.d.ts
CHANGED
|
@@ -254,6 +254,10 @@ interface AICallbacks {
|
|
|
254
254
|
* Configuration options for the Kanban board
|
|
255
255
|
*/
|
|
256
256
|
interface BoardConfig {
|
|
257
|
+
/** Theme: 'dark' | 'light' | 'neutral' */
|
|
258
|
+
theme?: 'dark' | 'light' | 'neutral';
|
|
259
|
+
/** Locale for i18n */
|
|
260
|
+
locale?: 'en' | 'es' | string;
|
|
257
261
|
/** Enable virtualization (auto-enabled if >100 cards) */
|
|
258
262
|
enableVirtualization?: boolean;
|
|
259
263
|
/** Enable AI features */
|