duck-dev-lib 0.0.45 → 0.0.47

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.
@@ -13,6 +13,7 @@ var tabs = {
13
13
  modal: "Modal",
14
14
  slider: "Slider",
15
15
  segment: "Segment",
16
+ speakerBubble: "Speaker bubble",
16
17
  tooltip: "Tooltip",
17
18
  directives: "Directives"
18
19
  };
@@ -21,46 +22,66 @@ var documentationStyleTabs = {
21
22
  neobrutalism: "Neobrutalism"
22
23
  };
23
24
  var quickStart = {
24
- title: "Duck Dev UI Library — Colors & Themes",
25
- intro: "This guide explains how to install the library styles and work with colors and themes. Duck Dev provides a small set of CSS variables (the dd-base palette) and theme switching via an attribute.",
26
- principles: "Important: always use dd-base variables (var(--dd-base-...)) inside your styles. Raw color values are allowed only in rare edge cases.",
27
- sections: {
28
- install: "Install & connect styles",
29
- palette: "Palette overview",
30
- themeSwitch: "Theme switching (light/dark)",
31
- custom: "Override or create a custom theme",
32
- use: "Use colors in components"
25
+ hero: {
26
+ title: "Duck Dev UI Library",
27
+ subtitle: "A component library for Angular 21 with two visual styles clean Classic and bold Neobrutalism. Built on Signals, CSS variables, and standalone components."
33
28
  },
34
29
  install: {
35
- text: "Add the variables stylesheet to your global styles so components pick up the palette.",
36
- snippet: "/* angular.json */\n\"styles\": [\n \"projects/duck-dev-lib/src/styles/variables.scss\",\n \"src/styles.scss\"\n]"
30
+ title: "Install & connect styles",
31
+ eyebrow: "Setup",
32
+ cardTitle: "Two steps to get started",
33
+ cardText: "Add the variables stylesheet to your global styles and configure Transloco for i18n support. Components will automatically pick up the palette."
37
34
  },
38
35
  palette: {
39
- text: "The base palette is exposed as CSS variables. Use --dd-base-* in your custom CSS. Examples: --dd-base-0/100/200/300/400/500/600 and accents like --dd-base-secondary, --dd-base-accent-orange, --dd-base-accent-blue.",
40
- list: [
41
- "--dd-base-0..600 — neutrals (background/text/border)",
42
- "--dd-base-secondary — violet accent",
43
- "--dd-base-accent-orange — orange accent",
44
- "--dd-base-accent-blue blue accent"
45
- ]
46
- },
47
- themeSwitch: {
48
- text: "Theme is controlled by the ddTheme attribute on any wrapper (commonly on html or body). Supported built-in: light (default) and dark.",
49
- snippet: "<!-- index.html -->\n<html ddTheme=\"dark\">\n <body>\n <app-root></app-root>\n </body>\n</html>",
50
- indexLabel: "index.html",
51
- indexHtmlTitle: "Add ddTheme on the html tag",
52
- toggleLabel: "Component toggle",
53
- toggleTitle: "Toggle theme via component code",
54
- toggleSnippet: "// In a component\nsetTheme(theme: 'dark' | 'light') {\n document.documentElement.setAttribute('ddTheme', theme);\n}"
36
+ title: "Color palette",
37
+ description: "The entire library uses CSS variables from the dd-base palette. Use --dd-base-* in your custom styles — never hardcode color values.",
38
+ neutralsTitle: "Neutrals",
39
+ accentsTitle: "Accents",
40
+ tipTitle: "Tip:",
41
+ tipText: "Always use var(--dd-base-...) in your styles. Components reference these variables, so your custom theme will propagate everywhere automatically."
42
+ },
43
+ themes: {
44
+ title: "Theme switching",
45
+ lightEyebrow: "Default",
46
+ lightTitle: "Light theme",
47
+ lightText: "Clean backgrounds and dark text. Active by default — no extra setup needed.",
48
+ darkEyebrow: "Alternate",
49
+ darkTitle: "Dark theme",
50
+ darkText: "Inverted contrast for low-light environments. Set ddTheme=\"dark\" on the root element.",
51
+ htmlAccordionTitle: "Set theme via HTML attribute",
52
+ toggleAccordionTitle: "Toggle theme from component code"
55
53
  },
56
54
  custom: {
57
- text: "You can override any dd-base variable under a custom theme. Components will automatically use your values.",
58
- snippet: "/* styles.scss */\n[ddTheme='brand'] {\n --dd-base-0: #ffffff;\n --dd-base-100: #f4f6ff;\n --dd-base-300: #dbe0ff;\n --dd-base-600: #0e1028;\n --dd-base-secondary: #6829ff;\n --dd-base-accent-orange: #fe7b20;\n --dd-base-accent-blue: #3254f3;\n}"
59
- },
60
- use: {
61
- text: "Library components accept AccentEnumColor to pick semantic colors from the palette. Below are examples with buttons and info cards.",
62
- buttonsTitle: "Accent buttons",
63
- cardsTitle: "Info cards"
55
+ title: "Custom themes",
56
+ eyebrow: "Branding",
57
+ cardTitle: "Create your own theme",
58
+ cardText: "Override any dd-base variable under a custom ddTheme attribute. All components will automatically pick up your values."
59
+ },
60
+ colors: {
61
+ title: "Colors in components",
62
+ description: "Library components accept AccentEnumColor to pick semantic colors from the palette. Here are live examples of how the same color system works across different component types.",
63
+ progressTitle: "Progress bars",
64
+ buttonsTitle: "Buttons",
65
+ badgesTitle: "Badges",
66
+ cardsTitle: "Accent cards",
67
+ cardViolet: "Violet accent card — perfect for highlights",
68
+ cardOrange: "Orange accent card — great for warnings",
69
+ cardDark: "Dark accent card — strong contrast"
70
+ },
71
+ styles: {
72
+ title: "Two visual styles",
73
+ description: "Every component family offers Classic and Neobrutalism variants. Switch between tabs to preview the difference.",
74
+ classicCardTitle: "Clean & modern",
75
+ classicCardText: "Subtle gradients, soft shadows, and restrained spacing for polished product interfaces.",
76
+ signalCardTitle: "Data-driven",
77
+ signalCardText: "Grid texture and precise accents for metrics, dashboards, and system communication.",
78
+ neobrutalBubbleText: "thick borders, hard shadows, and intentionally rough geometry for interfaces that need to feel loud and expressive."
79
+ },
80
+ usage: {
81
+ title: "Usage example",
82
+ templateTitle: "Template (HTML)",
83
+ componentTitle: "Component (TypeScript)",
84
+ tip: "All components are standalone — import them directly, no NgModule required. Use AccentEnumColor for consistent colors across the entire interface."
64
85
  }
65
86
  };
66
87
  var tooltipDoc = {
@@ -716,6 +737,46 @@ var cardDoc = {
716
737
  }
717
738
  }
718
739
  };
740
+ var speakerBubbleDoc = {
741
+ title: "Duck Dev UI Library - Speaker Bubble",
742
+ intro: "Speech bubbles for chat threads, inline dialogue and editorial callouts. Every variant projects arbitrary markup through <b>ng-content</b>, so you can place headings, meta labels and rich text instead of a plain string input.",
743
+ common: {
744
+ usage: "Usage:",
745
+ inputs: "Inputs:",
746
+ examples: "Examples:"
747
+ },
748
+ inputsDesc: {
749
+ content: "<b>ng-content</b> — arbitrary projected markup: headings, text, labels, buttons or other inline elements inside the bubble body.",
750
+ color: "<b>color</b>: AccentEnumColor — palette surface and accent colors for the bubble shell.",
751
+ tail: "<b>tail</b>: 'left' | 'right' — moves the bubble tail to the active speaker side."
752
+ },
753
+ classic: {
754
+ bubbleTitle: "Classic Bubble",
755
+ bubbleDescription: "A clean rounded chat bubble with light volume and a restrained tail. Suitable for messaging layouts, comments and calm product guidance.",
756
+ softTitle: "Soft Bubble",
757
+ softDescription: "A softer glass-like bubble with more atmosphere and gentle highlights. Works well for assistant messages, onboarding hints and editorial overlays.",
758
+ outlineTitle: "Outline Bubble",
759
+ outlineDescription: "A framed bubble for neutral notes and quieter UI dialogue. Useful when the content should stay visible without becoming the loudest element on screen."
760
+ },
761
+ neobrutal: {
762
+ slabTitle: "Neobrutal Slab Bubble",
763
+ slabDescription: "Heavy borders, rigid geometry and a loud tail make this variant useful for aggressive UI narration, hero chat blocks and attention-grabbing status updates.",
764
+ ticketTitle: "Neobrutal Ticket Bubble",
765
+ ticketDescription: "A ticket-like shell with a perforated side rail. Good for alerts, operations timelines and interfaces where the bubble should feel collectible and mechanical."
766
+ },
767
+ labels: {
768
+ leftTail: "Left tail",
769
+ rightTail: "Right tail",
770
+ richContent: "Rich content",
771
+ darkMode: "Dark mode",
772
+ note: "Neutral note",
773
+ replyRight: "Right reply",
774
+ livePanel: "Live panel",
775
+ hotReply: "Hot reply",
776
+ alertTicket: "Alert ticket",
777
+ ticketReply: "Ticket reply"
778
+ }
779
+ };
719
780
  var modalDoc = {
720
781
  title: "Duck Dev UI Library - Modal",
721
782
  quickDemo: "Open modal",
@@ -762,8 +823,9 @@ var en = {
762
823
  directivesDoc: directivesDoc,
763
824
  accordionDoc: accordionDoc,
764
825
  cardDoc: cardDoc,
826
+ speakerBubbleDoc: speakerBubbleDoc,
765
827
  modalDoc: modalDoc
766
828
  };
767
829
 
768
- export { accordionDoc, badgeDoc, buttons, cardDoc, en as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, progressDoc, quickStart, segmentDoc, slider, svgComponent, tabs, tabsComponent, tooltipDoc };
769
- //# sourceMappingURL=duck-dev-lib-en-CDxyWfrd.mjs.map
830
+ export { accordionDoc, badgeDoc, buttons, cardDoc, en as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, progressDoc, quickStart, segmentDoc, slider, speakerBubbleDoc, svgComponent, tabs, tabsComponent, tooltipDoc };
831
+ //# sourceMappingURL=duck-dev-lib-en-BXgJr6gM.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"duck-dev-lib-ru-1jQ8uE1i.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"duck-dev-lib-en-BXgJr6gM.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -13,6 +13,7 @@ var tabs = {
13
13
  modal: "Модальное окно",
14
14
  slider: "Слайдер",
15
15
  segment: "Сегмент",
16
+ speakerBubble: "Речевые облака",
16
17
  tooltip: "Подсказка",
17
18
  directives: "Директивы"
18
19
  };
@@ -21,46 +22,66 @@ var documentationStyleTabs = {
21
22
  neobrutalism: "Neobrutalism"
22
23
  };
23
24
  var quickStart = {
24
- title: "Duck Dev UI Library — Цвета и темы",
25
- intro: "Это руководство объясняет, как подключить стили библиотеки и работать с цветами и темами. Duck Dev предоставляет набор CSS‑переменных (палитра dd-base) и переключение тем через атрибут.",
26
- principles: "Важно: внутри своих стилей используйте только переменные dd-base (var(--dd-base-...)). Жёсткие цвета используйте лишь в редких случаях.",
27
- sections: {
28
- install: "Установка и подключение стилей",
29
- palette: "Обзор палитры",
30
- themeSwitch: "Переключение темы (светлая/тёмная)",
31
- custom: "Переопределение или создание своей темы",
32
- use: "Использование цветов в компонентах"
25
+ hero: {
26
+ title: "Duck Dev UI Library",
27
+ subtitle: "Библиотека компонентов для Angular 21 с двумя визуальными стилями — лаконичная Классика и дерзкий Neobrutalism. Построена на Signals, CSS-переменных и standalone-компонентах."
33
28
  },
34
29
  install: {
35
- text: "Добавьте файл с переменными в глобальные стили, чтобы компоненты получили палитру.",
36
- snippet: "/* angular.json */\n\"styles\": [\n \"projects/duck-dev-lib/src/styles/variables.scss\",\n \"src/styles.scss\"\n]"
30
+ title: "Установка и подключение",
31
+ eyebrow: "Настройка",
32
+ cardTitle: "Два шага для старта",
33
+ cardText: "Добавьте файл переменных в глобальные стили и настройте Transloco для поддержки i18n. Компоненты автоматически подхватят палитру."
37
34
  },
38
35
  palette: {
39
- text: "Базовая палитра доступна как CSS‑переменные. В своих стилях используйте --dd-base-*. Примеры: --dd-base-0/100/200/300/400/500/600 и акценты: --dd-base-secondary, --dd-base-accent-orange, --dd-base-accent-blue.",
40
- list: [
41
- "--dd-base-0..600 — нейтральные (фон/текст/границы)",
42
- "--dd-base-secondary — фиолетовый акцент",
43
- "--dd-base-accent-orange — оранжевый акцент",
44
- "--dd-base-accent-blue синий акцент"
45
- ]
46
- },
47
- themeSwitch: {
48
- text: "Тема управляется атрибутом ddTheme на любом контейнере (обычно html или body). Встроенные темы: светлая (по умолчанию) и тёмная.",
49
- snippet: "<!-- index.html -->\n<html ddTheme=\"dark\">\n <body>\n <app-root></app-root>\n </body>\n</html>",
50
- indexLabel: "index.html",
51
- indexHtmlTitle: "Добавьте ddTheme на тег html",
52
- toggleLabel: "Переключение в компоненте",
53
- toggleTitle: "Переключение темы из кода компонента",
54
- toggleSnippet: "// В компоненте\nsetTheme(theme: 'dark' | 'light') {\n document.documentElement.setAttribute('ddTheme', theme);\n}"
36
+ title: "Цветовая палитра",
37
+ description: "Вся библиотека использует CSS-переменные из палитры dd-base. Используйте --dd-base-* в своих стилях — никогда не хардкодьте цвета.",
38
+ neutralsTitle: "Нейтральные",
39
+ accentsTitle: "Акценты",
40
+ tipTitle: "Совет:",
41
+ tipText: "Всегда используйте var(--dd-base-...) в своих стилях. Компоненты ссылаются на эти переменные, поэтому ваша кастомная тема автоматически распространится везде."
42
+ },
43
+ themes: {
44
+ title: "Переключение тем",
45
+ lightEyebrow: "По умолчанию",
46
+ lightTitle: "Светлая тема",
47
+ lightText: "Чистые фоны и тёмный текст. Активна по умолчанию — дополнительная настройка не нужна.",
48
+ darkEyebrow: "Альтернативная",
49
+ darkTitle: "Тёмная тема",
50
+ darkText: "Инвертированный контраст для работы при слабом освещении. Установите ddTheme=\"dark\" на корневой элемент.",
51
+ htmlAccordionTitle: "Установка темы через HTML-атрибут",
52
+ toggleAccordionTitle: "Переключение темы из кода компонента"
55
53
  },
56
54
  custom: {
57
- text: "Вы можете переопределить любые переменные dd-base внутри своей темы. Компоненты автоматически начнут использовать ваши значения.",
58
- snippet: "/* styles.scss */\n[ddTheme='brand'] {\n --dd-base-0: #ffffff;\n --dd-base-100: #f4f6ff;\n --dd-base-300: #dbe0ff;\n --dd-base-600: #0e1028;\n --dd-base-secondary: #6829ff;\n --dd-base-accent-orange: #fe7b20;\n --dd-base-accent-blue: #3254f3;\n}"
59
- },
60
- use: {
61
- text: "Компоненты библиотеки принимают AccentEnumColor для выбора семантических цветов из палитры. Ниже примеры с кнопками и информационными карточками.",
62
- buttonsTitle: "Акцентные кнопки",
63
- cardsTitle: "Информационные карточки"
55
+ title: "Кастомные темы",
56
+ eyebrow: "Брендинг",
57
+ cardTitle: "Создайте свою тему",
58
+ cardText: "Переопределите любые переменные dd-base под собственным атрибутом ddTheme. Все компоненты автоматически подхватят ваши значения."
59
+ },
60
+ colors: {
61
+ title: "Цвета в компонентах",
62
+ description: "Компоненты библиотеки принимают AccentEnumColor для выбора семантических цветов из палитры. Вот живые примеры того, как единая цветовая система работает в разных типах компонентов.",
63
+ progressTitle: "Прогресс-бары",
64
+ buttonsTitle: "Кнопки",
65
+ badgesTitle: "Бейджи",
66
+ cardsTitle: "Акцентные карточки",
67
+ cardViolet: "Фиолетовая акцентная карточка — для выделения",
68
+ cardOrange: "Оранжевая акцентная карточка — для предупреждений",
69
+ cardDark: "Тёмная акцентная карточка — сильный контраст"
70
+ },
71
+ styles: {
72
+ title: "Два визуальных стиля",
73
+ description: "Каждое семейство компонентов имеет варианты Classic и Neobrutalism. Переключайтесь между вкладками, чтобы увидеть разницу.",
74
+ classicCardTitle: "Чистый и современный",
75
+ classicCardText: "Мягкие градиенты, деликатные тени и сдержанные отступы для аккуратных продуктовых интерфейсов.",
76
+ signalCardTitle: "Data-driven",
77
+ signalCardText: "Текстура сетки и точные акценты для метрик, дашбордов и системной коммуникации.",
78
+ neobrutalBubbleText: "толстые границы, жёсткие тени и нарочито грубая геометрия для интерфейсов, которым нужно звучать громко и выразительно."
79
+ },
80
+ usage: {
81
+ title: "Пример использования",
82
+ templateTitle: "Шаблон (HTML)",
83
+ componentTitle: "Компонент (TypeScript)",
84
+ tip: "Все компоненты standalone — импортируйте их напрямую, NgModule не нужен. Используйте AccentEnumColor для единообразных цветов по всему интерфейсу."
64
85
  }
65
86
  };
66
87
  var notifications = {
@@ -682,6 +703,46 @@ var cardDoc = {
682
703
  }
683
704
  }
684
705
  };
706
+ var speakerBubbleDoc = {
707
+ title: "Duck Dev UI Library - Speaker Bubble",
708
+ intro: "Речевые облака для чат-ленты, inline-диалогов и редакторских callout-блоков. Все варианты принимают произвольную разметку через <b>ng-content</b>, поэтому внутрь можно передавать заголовки, метки, абзацы и любой rich content вместо простого текстового input.",
709
+ common: {
710
+ usage: "Использование:",
711
+ inputs: "Входные параметры:",
712
+ examples: "Примеры:"
713
+ },
714
+ inputsDesc: {
715
+ content: "<b>ng-content</b> — произвольная проецируемая разметка: заголовки, текст, метки, кнопки и другие inline-элементы внутри облака.",
716
+ color: "<b>color</b>: AccentEnumColor — палитра поверхности и акцентных цветов оболочки облака.",
717
+ tail: "<b>tail</b>: 'left' | 'right' — переносит хвост облака к активной стороне спикера."
718
+ },
719
+ classic: {
720
+ bubbleTitle: "Классическое облако",
721
+ bubbleDescription: "Чистое округлое облако с лёгким объёмом и сдержанным хвостом. Подходит для сообщений, комментариев и спокойных продуктовых подсказок.",
722
+ softTitle: "Мягкое облако",
723
+ softDescription: "Более мягкий стеклянный вариант с атмосферной подсветкой. Хорошо работает для сообщений ассистента, onboarding-подсказок и редакторских слоёв.",
724
+ outlineTitle: "Контурное облако",
725
+ outlineDescription: "Рамочный вариант для нейтральных заметок и более тихого UI-диалога. Подходит там, где контент должен быть заметен, но не быть самым громким элементом экрана."
726
+ },
727
+ neobrutal: {
728
+ slabTitle: "Neobrutal Slab Bubble",
729
+ slabDescription: "Толстые границы, жёсткая геометрия и громкий хвост делают этот вариант уместным для агрессивной UI-наррации, hero-чатов и акцентных статусных обновлений.",
730
+ ticketTitle: "Neobrutal Ticket Bubble",
731
+ ticketDescription: "Оболочка в духе билета с перфорированной боковой рейкой. Хорошо подходит для алертов, операционных таймлайнов и интерфейсов, где облако должно ощущаться как физический артефакт."
732
+ },
733
+ labels: {
734
+ leftTail: "Хвост слева",
735
+ rightTail: "Хвост справа",
736
+ richContent: "Насыщенный контент",
737
+ darkMode: "Тёмная тема",
738
+ note: "Нейтральная заметка",
739
+ replyRight: "Ответ справа",
740
+ livePanel: "Живая панель",
741
+ hotReply: "Горячий ответ",
742
+ alertTicket: "Алерт-билет",
743
+ ticketReply: "Ответ-билет"
744
+ }
745
+ };
685
746
  var modalDoc = {
686
747
  title: "Duck Dev UI Library - Модальное окно",
687
748
  quickDemo: "Открыть модальное окно",
@@ -727,8 +788,9 @@ var ru = {
727
788
  directivesDoc: directivesDoc,
728
789
  accordionDoc: accordionDoc,
729
790
  cardDoc: cardDoc,
791
+ speakerBubbleDoc: speakerBubbleDoc,
730
792
  modalDoc: modalDoc
731
793
  };
732
794
 
733
- export { accordionDoc, badgeDoc, buttons, cardDoc, ru as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, progressDoc, quickStart, segmentDoc, slider, svgComponent, tabs, tabsComponent };
734
- //# sourceMappingURL=duck-dev-lib-ru-1jQ8uE1i.mjs.map
795
+ export { accordionDoc, badgeDoc, buttons, cardDoc, ru as default, directivesDoc, documentationStyleTabs, inputComponent, loaders, modalDoc, notifications, progressDoc, quickStart, segmentDoc, slider, speakerBubbleDoc, svgComponent, tabs, tabsComponent };
796
+ //# sourceMappingURL=duck-dev-lib-ru-BezMvMFU.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"duck-dev-lib-en-CDxyWfrd.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"duck-dev-lib-ru-BezMvMFU.mjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}