duck-dev-lib 0.0.43 → 0.0.44
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/fesm2022/{duck-dev-lib-en-Co6vywqB.mjs → duck-dev-lib-en-Ax8ROq2-.mjs} +54 -2
- package/fesm2022/{duck-dev-lib-ru-39r_p4Cd.mjs.map → duck-dev-lib-en-Ax8ROq2-.mjs.map} +1 -1
- package/fesm2022/{duck-dev-lib-ru-39r_p4Cd.mjs → duck-dev-lib-ru-yHcUp82C.mjs} +54 -2
- package/fesm2022/{duck-dev-lib-en-Co6vywqB.mjs.map → duck-dev-lib-ru-yHcUp82C.mjs.map} +1 -1
- package/fesm2022/duck-dev-lib.mjs +155 -11
- package/fesm2022/duck-dev-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/duck-dev-lib.d.ts +66 -2
|
@@ -3,6 +3,7 @@ var tabs = {
|
|
|
3
3
|
accordion: "Accordion",
|
|
4
4
|
buttons: "Buttons",
|
|
5
5
|
loaders: "Loaders",
|
|
6
|
+
progress: "Progress",
|
|
6
7
|
tabs: "Tabs",
|
|
7
8
|
svg: "SVG icon",
|
|
8
9
|
card: "Card",
|
|
@@ -535,6 +536,56 @@ var badgeDoc = {
|
|
|
535
536
|
outlineOrange: "Outline / Orange",
|
|
536
537
|
outlineGraySm: "Outline / Gray (sm)"
|
|
537
538
|
};
|
|
539
|
+
var progressDoc = {
|
|
540
|
+
title: "Duck Dev UI Library - Progress Bars",
|
|
541
|
+
usage: "Usage",
|
|
542
|
+
inputs: "Inputs",
|
|
543
|
+
examples: "Examples",
|
|
544
|
+
inputsDesc: {
|
|
545
|
+
label: "<strong>label</strong> — required main label for the progress bar",
|
|
546
|
+
value: "<strong>value</strong> — required progress value from 0 to 100",
|
|
547
|
+
subtext: "<strong>subtext</strong> — optional helper text below the title",
|
|
548
|
+
color: "<strong>color</strong> — palette color: Violet | Orange | White | Gray | Dark",
|
|
549
|
+
segmentCount: "<strong>segmentCount</strong> — optional number of segments for the segmented bar, default is 10",
|
|
550
|
+
kicker: "<strong>kicker</strong> — required short top stamp text",
|
|
551
|
+
leftTag: "<strong>leftTag</strong> — required left ticket marker",
|
|
552
|
+
rightTag: "<strong>rightTag</strong> — required right ticket marker"
|
|
553
|
+
},
|
|
554
|
+
classic: {
|
|
555
|
+
line: {
|
|
556
|
+
title: "Progress Line",
|
|
557
|
+
description: "A clean horizontal progress bar for regular product states, upload tasks and form completion indicators.",
|
|
558
|
+
example: "Standard line"
|
|
559
|
+
},
|
|
560
|
+
stack: {
|
|
561
|
+
title: "Progress Stack",
|
|
562
|
+
description: "A segmented progress bar for flows split into visible steps or checkpoints.",
|
|
563
|
+
example: "Segmented progress"
|
|
564
|
+
},
|
|
565
|
+
meter: {
|
|
566
|
+
title: "Progress Meter",
|
|
567
|
+
description: "A denser card-like progress bar with a percentage badge and position marker.",
|
|
568
|
+
example: "Meter with marker"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
neobrutal: {
|
|
572
|
+
slab: {
|
|
573
|
+
title: "Neobrutal Slab Progress",
|
|
574
|
+
description: "A heavy slab progress bar with chunky borders, step-like fill and loud contrast.",
|
|
575
|
+
example: "Slab progress"
|
|
576
|
+
},
|
|
577
|
+
stamp: {
|
|
578
|
+
title: "Neobrutal Stamp Progress",
|
|
579
|
+
description: "A printed-stamp style progress bar with required kicker text and a bold industrial grid.",
|
|
580
|
+
example: "Stamp progress"
|
|
581
|
+
},
|
|
582
|
+
ticket: {
|
|
583
|
+
title: "Neobrutal Ticket Progress",
|
|
584
|
+
description: "A ticket-inspired progress bar for launch phases, queues and checkpoint-based flows.",
|
|
585
|
+
example: "Ticket progress"
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
};
|
|
538
589
|
var directivesDoc = {
|
|
539
590
|
title: "Directives",
|
|
540
591
|
ddFlexTitle: "ddFlex",
|
|
@@ -698,11 +749,12 @@ var en = {
|
|
|
698
749
|
svgComponent: svgComponent,
|
|
699
750
|
inputComponent: inputComponent,
|
|
700
751
|
badgeDoc: badgeDoc,
|
|
752
|
+
progressDoc: progressDoc,
|
|
701
753
|
directivesDoc: directivesDoc,
|
|
702
754
|
accordionDoc: accordionDoc,
|
|
703
755
|
cardDoc: cardDoc,
|
|
704
756
|
modalDoc: modalDoc
|
|
705
757
|
};
|
|
706
758
|
|
|
707
|
-
export { accordionDoc, badgeDoc, buttons, cardDoc, en as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, quickStart, segmentDoc, slider, svgComponent, tabs, tabsComponent, tooltipDoc };
|
|
708
|
-
//# sourceMappingURL=duck-dev-lib-en-
|
|
759
|
+
export { accordionDoc, badgeDoc, buttons, cardDoc, en as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, progressDoc, quickStart, segmentDoc, slider, svgComponent, tabs, tabsComponent, tooltipDoc };
|
|
760
|
+
//# sourceMappingURL=duck-dev-lib-en-Ax8ROq2-.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"duck-dev-lib-
|
|
1
|
+
{"version":3,"file":"duck-dev-lib-en-Ax8ROq2-.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -3,6 +3,7 @@ var tabs = {
|
|
|
3
3
|
accordion: "Аккордеон",
|
|
4
4
|
buttons: "Кнопки",
|
|
5
5
|
loaders: "Загрузчики",
|
|
6
|
+
progress: "Прогресс",
|
|
6
7
|
tabs: "Вкладки",
|
|
7
8
|
svg: "SVG icon",
|
|
8
9
|
card: "Карточки",
|
|
@@ -501,6 +502,56 @@ var badgeDoc = {
|
|
|
501
502
|
outlineOrange: "Outline / Orange",
|
|
502
503
|
outlineGraySm: "Outline / Gray (sm)"
|
|
503
504
|
};
|
|
505
|
+
var progressDoc = {
|
|
506
|
+
title: "Duck Dev UI Library - Progress Bar",
|
|
507
|
+
usage: "Использование",
|
|
508
|
+
inputs: "Входные параметры",
|
|
509
|
+
examples: "Примеры",
|
|
510
|
+
inputsDesc: {
|
|
511
|
+
label: "<strong>label</strong> — обязательный основной заголовок progress bar",
|
|
512
|
+
value: "<strong>value</strong> — обязательное значение прогресса от 0 до 100",
|
|
513
|
+
subtext: "<strong>subtext</strong> — необязательный вспомогательный текст под заголовком",
|
|
514
|
+
color: "<strong>color</strong> — цвет из палитры: Violet | Orange | White | Gray | Dark",
|
|
515
|
+
segmentCount: "<strong>segmentCount</strong> — необязательное количество сегментов, по умолчанию 10",
|
|
516
|
+
kicker: "<strong>kicker</strong> — обязательный верхний stamp-текст",
|
|
517
|
+
leftTag: "<strong>leftTag</strong> — обязательная левая метка ticket-варианта",
|
|
518
|
+
rightTag: "<strong>rightTag</strong> — обязательная правая метка ticket-варианта"
|
|
519
|
+
},
|
|
520
|
+
classic: {
|
|
521
|
+
line: {
|
|
522
|
+
title: "Progress Line",
|
|
523
|
+
description: "Чистый горизонтальный progress bar для стандартных продуктовых состояний, загрузки и сценариев completion.",
|
|
524
|
+
example: "Стандартная линия"
|
|
525
|
+
},
|
|
526
|
+
stack: {
|
|
527
|
+
title: "Progress Stack",
|
|
528
|
+
description: "Сегментированный progress bar для сценариев, разбитых на видимые шаги или checkpoints.",
|
|
529
|
+
example: "Сегментированный прогресс"
|
|
530
|
+
},
|
|
531
|
+
meter: {
|
|
532
|
+
title: "Progress Meter",
|
|
533
|
+
description: "Более плотный progress bar в виде карточки с percentage badge и маркером позиции.",
|
|
534
|
+
example: "Meter с маркером"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
neobrutal: {
|
|
538
|
+
slab: {
|
|
539
|
+
title: "Neobrutal Slab Progress",
|
|
540
|
+
description: "Тяжёлый slab progress bar с жирной рамкой, ступенчатой заливкой и высоким контрастом.",
|
|
541
|
+
example: "Slab progress"
|
|
542
|
+
},
|
|
543
|
+
stamp: {
|
|
544
|
+
title: "Neobrutal Stamp Progress",
|
|
545
|
+
description: "Progress bar в стиле stamp с обязательным kicker и грубой индустриальной сеткой.",
|
|
546
|
+
example: "Stamp progress"
|
|
547
|
+
},
|
|
548
|
+
ticket: {
|
|
549
|
+
title: "Neobrutal Ticket Progress",
|
|
550
|
+
description: "Ticket-вариант progress bar для фаз запуска, очередей и сценариев с checkpoint-логикой.",
|
|
551
|
+
example: "Ticket progress"
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
};
|
|
504
555
|
var directivesDoc = {
|
|
505
556
|
title: "Директивы",
|
|
506
557
|
ddFlexTitle: "ddFlex",
|
|
@@ -663,11 +714,12 @@ var ru = {
|
|
|
663
714
|
svgComponent: svgComponent,
|
|
664
715
|
inputComponent: inputComponent,
|
|
665
716
|
badgeDoc: badgeDoc,
|
|
717
|
+
progressDoc: progressDoc,
|
|
666
718
|
directivesDoc: directivesDoc,
|
|
667
719
|
accordionDoc: accordionDoc,
|
|
668
720
|
cardDoc: cardDoc,
|
|
669
721
|
modalDoc: modalDoc
|
|
670
722
|
};
|
|
671
723
|
|
|
672
|
-
export { accordionDoc, badgeDoc, buttons, cardDoc, ru as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, quickStart, segmentDoc, slider, svgComponent, tabs, tabsComponent };
|
|
673
|
-
//# sourceMappingURL=duck-dev-lib-ru-
|
|
724
|
+
export { accordionDoc, badgeDoc, buttons, cardDoc, ru as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, progressDoc, quickStart, segmentDoc, slider, svgComponent, tabs, tabsComponent };
|
|
725
|
+
//# sourceMappingURL=duck-dev-lib-ru-yHcUp82C.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"duck-dev-lib-
|
|
1
|
+
{"version":3,"file":"duck-dev-lib-ru-yHcUp82C.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|