@ikatec/nebula-tokens 0.0.1-alpha.24 → 0.0.1-alpha.25
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.d.mts +20 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +21 -1
- package/dist/index.mjs +21 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -356,6 +356,24 @@ interface Tooltip {
|
|
|
356
356
|
background: string;
|
|
357
357
|
text: string;
|
|
358
358
|
}
|
|
359
|
+
interface Accordion {
|
|
360
|
+
background: string;
|
|
361
|
+
icon: string;
|
|
362
|
+
text: {
|
|
363
|
+
title: string;
|
|
364
|
+
description: string;
|
|
365
|
+
};
|
|
366
|
+
}
|
|
367
|
+
interface Tabs {
|
|
368
|
+
border: {
|
|
369
|
+
default: string;
|
|
370
|
+
active: string;
|
|
371
|
+
};
|
|
372
|
+
text: {
|
|
373
|
+
default: string;
|
|
374
|
+
active: string;
|
|
375
|
+
};
|
|
376
|
+
}
|
|
359
377
|
declare const colors: {
|
|
360
378
|
primary: {
|
|
361
379
|
50: string;
|
|
@@ -441,6 +459,8 @@ declare const colors: {
|
|
|
441
459
|
breadcrumb: Breadcrumb;
|
|
442
460
|
switch: Switch;
|
|
443
461
|
tooltip: Tooltip;
|
|
462
|
+
accordion: Accordion;
|
|
463
|
+
tabs: Tabs;
|
|
444
464
|
};
|
|
445
465
|
|
|
446
466
|
declare const space: {
|
package/dist/index.d.ts
CHANGED
|
@@ -356,6 +356,24 @@ interface Tooltip {
|
|
|
356
356
|
background: string;
|
|
357
357
|
text: string;
|
|
358
358
|
}
|
|
359
|
+
interface Accordion {
|
|
360
|
+
background: string;
|
|
361
|
+
icon: string;
|
|
362
|
+
text: {
|
|
363
|
+
title: string;
|
|
364
|
+
description: string;
|
|
365
|
+
};
|
|
366
|
+
}
|
|
367
|
+
interface Tabs {
|
|
368
|
+
border: {
|
|
369
|
+
default: string;
|
|
370
|
+
active: string;
|
|
371
|
+
};
|
|
372
|
+
text: {
|
|
373
|
+
default: string;
|
|
374
|
+
active: string;
|
|
375
|
+
};
|
|
376
|
+
}
|
|
359
377
|
declare const colors: {
|
|
360
378
|
primary: {
|
|
361
379
|
50: string;
|
|
@@ -441,6 +459,8 @@ declare const colors: {
|
|
|
441
459
|
breadcrumb: Breadcrumb;
|
|
442
460
|
switch: Switch;
|
|
443
461
|
tooltip: Tooltip;
|
|
462
|
+
accordion: Accordion;
|
|
463
|
+
tabs: Tabs;
|
|
444
464
|
};
|
|
445
465
|
|
|
446
466
|
declare const space: {
|
package/dist/index.js
CHANGED
|
@@ -394,6 +394,24 @@ var tooltip = {
|
|
|
394
394
|
background: "var(--tooltip-background)",
|
|
395
395
|
text: "var(--tooltip-text)"
|
|
396
396
|
};
|
|
397
|
+
var accordion = {
|
|
398
|
+
background: "var(--accordion-background)",
|
|
399
|
+
icon: "var(--accordion-icon)",
|
|
400
|
+
text: {
|
|
401
|
+
title: "var(--accordion-text-title)",
|
|
402
|
+
description: "var(--accordion-text-description)"
|
|
403
|
+
}
|
|
404
|
+
};
|
|
405
|
+
var tabs = {
|
|
406
|
+
border: {
|
|
407
|
+
default: "var(--tabs-border-default)",
|
|
408
|
+
active: "var(--tabs-border-active)"
|
|
409
|
+
},
|
|
410
|
+
text: {
|
|
411
|
+
default: "var(--tabs-text-default)",
|
|
412
|
+
active: "var(--tabs-text-active)"
|
|
413
|
+
}
|
|
414
|
+
};
|
|
397
415
|
var colors = {
|
|
398
416
|
primary: {
|
|
399
417
|
50: "var(--primary-50)",
|
|
@@ -478,7 +496,9 @@ var colors = {
|
|
|
478
496
|
drawer,
|
|
479
497
|
breadcrumb,
|
|
480
498
|
switch: switchColors,
|
|
481
|
-
tooltip
|
|
499
|
+
tooltip,
|
|
500
|
+
accordion,
|
|
501
|
+
tabs
|
|
482
502
|
};
|
|
483
503
|
|
|
484
504
|
// src/space.ts
|
package/dist/index.mjs
CHANGED
|
@@ -362,6 +362,24 @@ var tooltip = {
|
|
|
362
362
|
background: "var(--tooltip-background)",
|
|
363
363
|
text: "var(--tooltip-text)"
|
|
364
364
|
};
|
|
365
|
+
var accordion = {
|
|
366
|
+
background: "var(--accordion-background)",
|
|
367
|
+
icon: "var(--accordion-icon)",
|
|
368
|
+
text: {
|
|
369
|
+
title: "var(--accordion-text-title)",
|
|
370
|
+
description: "var(--accordion-text-description)"
|
|
371
|
+
}
|
|
372
|
+
};
|
|
373
|
+
var tabs = {
|
|
374
|
+
border: {
|
|
375
|
+
default: "var(--tabs-border-default)",
|
|
376
|
+
active: "var(--tabs-border-active)"
|
|
377
|
+
},
|
|
378
|
+
text: {
|
|
379
|
+
default: "var(--tabs-text-default)",
|
|
380
|
+
active: "var(--tabs-text-active)"
|
|
381
|
+
}
|
|
382
|
+
};
|
|
365
383
|
var colors = {
|
|
366
384
|
primary: {
|
|
367
385
|
50: "var(--primary-50)",
|
|
@@ -446,7 +464,9 @@ var colors = {
|
|
|
446
464
|
drawer,
|
|
447
465
|
breadcrumb,
|
|
448
466
|
switch: switchColors,
|
|
449
|
-
tooltip
|
|
467
|
+
tooltip,
|
|
468
|
+
accordion,
|
|
469
|
+
tabs
|
|
450
470
|
};
|
|
451
471
|
|
|
452
472
|
// src/space.ts
|