@stokelp/ui 2.98.0 → 2.100.0
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/components/app/index.d.ts +2 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.d.ts +6 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.js +27 -0
- package/dist/components/app/mobile-card/MobileCardEntityRow.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardHeader.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardHeader.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardHeader.d.ts +6 -0
- package/dist/components/app/mobile-card/MobileCardHeader.js +22 -0
- package/dist/components/app/mobile-card/MobileCardHeader.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.d.ts +4 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.js +16 -0
- package/dist/components/app/mobile-card/MobileCardNotificationBadge.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardShell.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardShell.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardShell.d.ts +6 -0
- package/dist/components/app/mobile-card/MobileCardShell.js +21 -0
- package/dist/components/app/mobile-card/MobileCardShell.js.map +1 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.cjs +2 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.cjs.map +1 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.d.ts +17 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.js +27 -0
- package/dist/components/app/mobile-card/MobileCardSkeleton.js.map +1 -0
- package/dist/components/app/mobile-card/index.d.ts +10 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.cjs +2 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.cjs.map +1 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.d.ts +17 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.js +19 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.js.map +1 -0
- package/dist/components/app/mobile-navigation/index.d.ts +2 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +160 -146
- package/dist/index.js.map +1 -1
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.cjs +2 -0
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.cjs.map +1 -0
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.js +30 -0
- package/dist/node_modules/@heroicons/react/24/outline/esm/ChatBubbleLeftRightIcon.js.map +1 -0
- package/dist/theme/recipes/app/mobile-navigation.cjs +2 -0
- package/dist/theme/recipes/app/mobile-navigation.cjs.map +1 -0
- package/dist/theme/recipes/app/mobile-navigation.d.ts +2 -0
- package/dist/theme/recipes/app/mobile-navigation.js +110 -0
- package/dist/theme/recipes/app/mobile-navigation.js.map +1 -0
- package/dist/theme/recipes/index.cjs +1 -1
- package/dist/theme/recipes/index.cjs.map +1 -1
- package/dist/theme/recipes/index.d.ts +1 -0
- package/dist/theme/recipes/index.js +60 -58
- package/dist/theme/recipes/index.js.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -55,6 +55,7 @@ export declare const slotRecipes: {
|
|
|
55
55
|
combobox: SlotRecipeConfig;
|
|
56
56
|
collapsible: SlotRecipeConfig;
|
|
57
57
|
appNavigation: SlotRecipeConfig;
|
|
58
|
+
mobileNavigation: SlotRecipeConfig;
|
|
58
59
|
dialog: SlotRecipeConfig;
|
|
59
60
|
appNavigationLanguageSelect: SlotRecipeConfig;
|
|
60
61
|
avatar: SlotRecipeConfig;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { buttonRecipe as
|
|
3
|
-
import { headingRecipe as
|
|
2
|
+
import { buttonRecipe as o } from "./button.js";
|
|
3
|
+
import { headingRecipe as e } from "./heading.js";
|
|
4
4
|
import { switchRecipe as r } from "./switch.js";
|
|
5
5
|
import { textRecipe as i } from "./text.js";
|
|
6
6
|
import { textareaRecipe as t } from "./textarea.js";
|
|
@@ -11,23 +11,23 @@ import { accordionRecipe as c } from "./accordion.js";
|
|
|
11
11
|
import { formLabelRecipe as f } from "./form/label.js";
|
|
12
12
|
import { checkboxRecipe as R } from "./checkbox.js";
|
|
13
13
|
import { tabsRecipe as n } from "./tabs.js";
|
|
14
|
-
import { selectRecipe as
|
|
15
|
-
import { inputRecipe as
|
|
14
|
+
import { selectRecipe as l } from "./select.js";
|
|
15
|
+
import { inputRecipe as u } from "./input.js";
|
|
16
16
|
import { highlightedInputRecipe as b } from "./highlightedInput.js";
|
|
17
|
-
import { inputAddonRecipe as
|
|
18
|
-
import { inputGroupRecipe as
|
|
17
|
+
import { inputAddonRecipe as g } from "./input-addon.js";
|
|
18
|
+
import { inputGroupRecipe as d } from "./input-group.js";
|
|
19
19
|
import { datepickerRecipe as h } from "./datepicker.js";
|
|
20
20
|
import { tagRecipe as s } from "./tag.js";
|
|
21
21
|
import { radioButtonGroupRecipe as C } from "./radio-button-group.js";
|
|
22
22
|
import { radioGroupRecipe as x } from "./radio-group.js";
|
|
23
|
-
import { chipRecipe as
|
|
24
|
-
import { actionCardRecipe as
|
|
23
|
+
import { chipRecipe as v } from "./chip.js";
|
|
24
|
+
import { actionCardRecipe as G } from "./action-card.js";
|
|
25
25
|
import { iconButtonRecipe as T } from "./icon-button.js";
|
|
26
26
|
import { tooltipRecipe as k } from "./tooltip.js";
|
|
27
|
-
import { alertRecipe as
|
|
28
|
-
import { tableRecipe as
|
|
29
|
-
import { tableGroupTitleRecipe as
|
|
30
|
-
import { tableEmptyRowRecipe as
|
|
27
|
+
import { alertRecipe as N } from "./alert.js";
|
|
28
|
+
import { tableRecipe as w } from "./table.js";
|
|
29
|
+
import { tableGroupTitleRecipe as I } from "./table-group-title.js";
|
|
30
|
+
import { tableEmptyRowRecipe as L } from "./table-empty-row.js";
|
|
31
31
|
import { tableContainerRecipe as A } from "./table-container.js";
|
|
32
32
|
import { breadcrumbRecipe as B } from "./breadcrumb.js";
|
|
33
33
|
import { popoverRecipe as M } from "./popover.js";
|
|
@@ -44,49 +44,50 @@ import { phoneNumberInputRecipe as z } from "./phone-number-input.js";
|
|
|
44
44
|
import { iconRecipe as J } from "./icon.js";
|
|
45
45
|
import { collapsibleRecipe as K } from "./collapsible.js";
|
|
46
46
|
import { appNavigationRecipe as O } from "./app/navigation.js";
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
|
|
63
|
-
|
|
47
|
+
import { mobileNavigationRecipe as Q } from "./app/mobile-navigation.js";
|
|
48
|
+
import { appNavigationLanguageSelectRecipe as U } from "./app/navigation-language-select.js";
|
|
49
|
+
import { dialogRecipe as V } from "./dialog.js";
|
|
50
|
+
import { selectLanguageRecipe as W } from "./select-language.js";
|
|
51
|
+
import { avatarRecipe as X } from "./avatar.js";
|
|
52
|
+
import { menuRecipe as Y } from "./menu.js";
|
|
53
|
+
import { avatarGroupRecipe as Z } from "./avatar-group.js";
|
|
54
|
+
import { flagRecipe as _ } from "./flag.js";
|
|
55
|
+
import { priceTagRecipe as $ } from "./app/price-tag.js";
|
|
56
|
+
import { tabsChipRecipe as oo } from "./tabs-chip.js";
|
|
57
|
+
import { checkboxGroupRecipe as eo } from "./checkbox-group.js";
|
|
58
|
+
import { chatMessageRecipe as ro } from "./chat/chat-message.js";
|
|
59
|
+
import { chatDocumentMessageRecipe as io } from "./chat/chat-document-message.js";
|
|
60
|
+
import { chatRecipe as to } from "./chat/chat.js";
|
|
61
|
+
import { chatProfileAvatarRecipe as po } from "./chat/chat-profile-avatar.js";
|
|
62
|
+
import { chatTextInputRecipe as mo } from "./chat/chat-input-text.js";
|
|
63
|
+
const ge = {
|
|
64
|
+
button: o,
|
|
64
65
|
iconButton: T,
|
|
65
|
-
heading:
|
|
66
|
+
heading: e,
|
|
66
67
|
switchRecipe: r,
|
|
67
68
|
text: i,
|
|
68
69
|
textarea: t,
|
|
69
70
|
formControl: p,
|
|
70
71
|
formHelperText: m,
|
|
71
|
-
input:
|
|
72
|
-
inputAddon:
|
|
73
|
-
inputGroup:
|
|
74
|
-
tableGroupTitle:
|
|
75
|
-
tableEmptyRow:
|
|
72
|
+
input: u,
|
|
73
|
+
inputAddon: g,
|
|
74
|
+
inputGroup: d,
|
|
75
|
+
tableGroupTitle: I,
|
|
76
|
+
tableEmptyRow: L,
|
|
76
77
|
tableContainer: A,
|
|
77
78
|
illustration: E,
|
|
78
79
|
buttonFilter: F,
|
|
79
80
|
phoneNumberInput: z,
|
|
80
81
|
icon: J,
|
|
81
|
-
flag:
|
|
82
|
-
avatarGroup:
|
|
83
|
-
tabsChip:
|
|
84
|
-
checkboxGroup:
|
|
85
|
-
chatMessage:
|
|
86
|
-
chatTextInput:
|
|
87
|
-
chatDocumentMessage:
|
|
88
|
-
chatProfileAvatar:
|
|
89
|
-
},
|
|
82
|
+
flag: _,
|
|
83
|
+
avatarGroup: Z,
|
|
84
|
+
tabsChip: oo,
|
|
85
|
+
checkboxGroup: eo,
|
|
86
|
+
chatMessage: ro,
|
|
87
|
+
chatTextInput: mo,
|
|
88
|
+
chatDocumentMessage: io,
|
|
89
|
+
chatProfileAvatar: po
|
|
90
|
+
}, de = {
|
|
90
91
|
drawer: a,
|
|
91
92
|
radioButtonGroup: C,
|
|
92
93
|
radioGroup: x,
|
|
@@ -97,13 +98,13 @@ const uo = {
|
|
|
97
98
|
tabs: n,
|
|
98
99
|
tag: s,
|
|
99
100
|
statusTagSelect: y,
|
|
100
|
-
select:
|
|
101
|
-
selectLanguage:
|
|
102
|
-
chip:
|
|
103
|
-
actionCard:
|
|
101
|
+
select: l,
|
|
102
|
+
selectLanguage: W,
|
|
103
|
+
chip: v,
|
|
104
|
+
actionCard: G,
|
|
104
105
|
tooltip: k,
|
|
105
|
-
alert:
|
|
106
|
-
table:
|
|
106
|
+
alert: N,
|
|
107
|
+
table: w,
|
|
107
108
|
breadcrumb: B,
|
|
108
109
|
popover: M,
|
|
109
110
|
pagination: S,
|
|
@@ -114,16 +115,17 @@ const uo = {
|
|
|
114
115
|
combobox: q,
|
|
115
116
|
collapsible: K,
|
|
116
117
|
appNavigation: O,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
118
|
+
mobileNavigation: Q,
|
|
119
|
+
dialog: V,
|
|
120
|
+
appNavigationLanguageSelect: U,
|
|
121
|
+
avatar: X,
|
|
122
|
+
menu: Y,
|
|
123
|
+
priceTag: $,
|
|
124
|
+
chat: to,
|
|
123
125
|
highlightedInput: b
|
|
124
126
|
};
|
|
125
127
|
export {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
+
ge as recipes,
|
|
129
|
+
de as slotRecipes
|
|
128
130
|
};
|
|
129
131
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/theme/recipes/index.ts"],"sourcesContent":["import { buttonRecipe } from './button'\nimport { headingRecipe } from './heading'\nimport { switchRecipe } from './switch'\nimport { textRecipe } from './text'\nimport { textareaRecipe } from './textarea'\nimport { formControlRecipe } from './form/control'\nimport { formHelperTextRecipe } from './form/helper-text'\nimport { drawerRecipe } from './drawer'\nimport { accordionRecipe } from './accordion'\nimport { formLabelRecipe } from './form/label'\nimport { checkboxRecipe } from './checkbox'\nimport { tabsRecipe } from './tabs'\nimport { selectRecipe } from './select'\nimport { inputRecipe } from './input'\nimport { highlightedInputRecipe } from './highlightedInput'\nimport { inputAddonRecipe } from './input-addon'\nimport { inputGroupRecipe } from './input-group'\nimport { datepickerRecipe } from './datepicker'\nimport { tagRecipe } from './tag'\nimport { radioButtonGroupRecipe } from './radio-button-group'\nimport { radioGroupRecipe } from './radio-group'\nimport { chipRecipe } from './chip'\nimport { actionCardRecipe } from './action-card'\nimport { iconButtonRecipe } from './icon-button'\nimport { tooltipRecipe } from './tooltip'\nimport { alertRecipe } from './alert'\nimport { tableRecipe } from './table'\nimport { tableGroupTitleRecipe } from './table-group-title'\nimport { tableEmptyRowRecipe } from './table-empty-row'\nimport { tableContainerRecipe } from './table-container'\nimport { breadcrumbRecipe } from './breadcrumb'\nimport { popoverRecipe } from './popover'\nimport { paginationRecipe } from './pagination'\nimport { statusTagSelectRecipe } from './status-tag-select'\nimport { productCardCatalogRecipe } from './app/product-card-catalog'\nimport { illustrationRecipe } from './illustration'\nimport { buttonFilterRecipe } from './button-filter'\nimport { switchCardRecipe } from './switch-card'\nimport { radioCardGroupRecipe } from './radio-card-group'\nimport { checkboxCardRecipe } from './checkbox-card'\nimport { comboboxRecipe } from './combobox'\nimport { phoneNumberInputRecipe } from './phone-number-input'\nimport { iconRecipe } from './icon'\nimport { collapsibleRecipe } from './collapsible'\nimport { appNavigationRecipe } from './app/navigation'\nimport { appNavigationLanguageSelectRecipe } from './app/navigation-language-select'\nimport { dialogRecipe } from './dialog'\nimport { selectLanguageRecipe } from './select-language'\nimport { avatarRecipe } from './avatar'\nimport { menuRecipe } from './menu'\nimport { avatarGroupRecipe } from './avatar-group'\nimport { flagRecipe } from './flag'\nimport { priceTagRecipe } from './app/price-tag'\nimport { tabsChipRecipe } from './tabs-chip'\nimport { checkboxGroupRecipe } from '~/theme/recipes/checkbox-group'\nimport { chatMessageRecipe } from '~/theme/recipes/chat/chat-message.ts'\nimport { chatDocumentMessageRecipe } from '~/theme/recipes/chat/chat-document-message.ts'\nimport { chatRecipe } from '~/theme/recipes/chat/chat.ts'\nimport { chatProfileAvatarRecipe } from '~/theme/recipes/chat/chat-profile-avatar.ts'\nimport { chatTextInputRecipe } from '~/theme/recipes/chat/chat-input-text.ts'\n\nexport const recipes = {\n button: buttonRecipe,\n iconButton: iconButtonRecipe,\n heading: headingRecipe,\n switchRecipe,\n text: textRecipe,\n textarea: textareaRecipe,\n formControl: formControlRecipe,\n formHelperText: formHelperTextRecipe,\n input: inputRecipe,\n inputAddon: inputAddonRecipe,\n inputGroup: inputGroupRecipe,\n tableGroupTitle: tableGroupTitleRecipe,\n tableEmptyRow: tableEmptyRowRecipe,\n tableContainer: tableContainerRecipe,\n illustration: illustrationRecipe,\n buttonFilter: buttonFilterRecipe,\n phoneNumberInput: phoneNumberInputRecipe,\n icon: iconRecipe,\n flag: flagRecipe,\n avatarGroup: avatarGroupRecipe,\n tabsChip: tabsChipRecipe,\n checkboxGroup: checkboxGroupRecipe,\n chatMessage: chatMessageRecipe,\n chatTextInput: chatTextInputRecipe,\n chatDocumentMessage: chatDocumentMessageRecipe,\n chatProfileAvatar: chatProfileAvatarRecipe,\n}\n\nexport const slotRecipes = {\n drawer: drawerRecipe,\n radioButtonGroup: radioButtonGroupRecipe,\n radioGroup: radioGroupRecipe,\n accordion: accordionRecipe,\n formLabel: formLabelRecipe,\n checkbox: checkboxRecipe,\n datepicker: datepickerRecipe,\n tabs: tabsRecipe,\n tag: tagRecipe,\n statusTagSelect: statusTagSelectRecipe,\n select: selectRecipe,\n selectLanguage: selectLanguageRecipe,\n chip: chipRecipe,\n actionCard: actionCardRecipe,\n tooltip: tooltipRecipe,\n alert: alertRecipe,\n table: tableRecipe,\n breadcrumb: breadcrumbRecipe,\n popover: popoverRecipe,\n pagination: paginationRecipe,\n productCardCatalog: productCardCatalogRecipe,\n switchCard: switchCardRecipe,\n radioCardGroup: radioCardGroupRecipe,\n checkboxCard: checkboxCardRecipe,\n combobox: comboboxRecipe,\n collapsible: collapsibleRecipe,\n appNavigation: appNavigationRecipe,\n dialog: dialogRecipe,\n appNavigationLanguageSelect: appNavigationLanguageSelectRecipe,\n avatar: avatarRecipe,\n menu: menuRecipe,\n priceTag: priceTagRecipe,\n chat: chatRecipe,\n highlightedInput: highlightedInputRecipe,\n}\n"],"names":["recipes","buttonRecipe","iconButtonRecipe","headingRecipe","switchRecipe","textRecipe","textareaRecipe","formControlRecipe","formHelperTextRecipe","inputRecipe","inputAddonRecipe","inputGroupRecipe","tableGroupTitleRecipe","tableEmptyRowRecipe","tableContainerRecipe","illustrationRecipe","buttonFilterRecipe","phoneNumberInputRecipe","iconRecipe","flagRecipe","avatarGroupRecipe","tabsChipRecipe","checkboxGroupRecipe","chatMessageRecipe","chatTextInputRecipe","chatDocumentMessageRecipe","chatProfileAvatarRecipe","slotRecipes","drawerRecipe","radioButtonGroupRecipe","radioGroupRecipe","accordionRecipe","formLabelRecipe","checkboxRecipe","datepickerRecipe","tabsRecipe","tagRecipe","statusTagSelectRecipe","selectRecipe","selectLanguageRecipe","chipRecipe","actionCardRecipe","tooltipRecipe","alertRecipe","tableRecipe","breadcrumbRecipe","popoverRecipe","paginationRecipe","productCardCatalogRecipe","switchCardRecipe","radioCardGroupRecipe","checkboxCardRecipe","comboboxRecipe","collapsibleRecipe","appNavigationRecipe","dialogRecipe","appNavigationLanguageSelectRecipe","avatarRecipe","menuRecipe","priceTagRecipe","chatRecipe","highlightedInputRecipe"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/theme/recipes/index.ts"],"sourcesContent":["import { buttonRecipe } from './button'\nimport { headingRecipe } from './heading'\nimport { switchRecipe } from './switch'\nimport { textRecipe } from './text'\nimport { textareaRecipe } from './textarea'\nimport { formControlRecipe } from './form/control'\nimport { formHelperTextRecipe } from './form/helper-text'\nimport { drawerRecipe } from './drawer'\nimport { accordionRecipe } from './accordion'\nimport { formLabelRecipe } from './form/label'\nimport { checkboxRecipe } from './checkbox'\nimport { tabsRecipe } from './tabs'\nimport { selectRecipe } from './select'\nimport { inputRecipe } from './input'\nimport { highlightedInputRecipe } from './highlightedInput'\nimport { inputAddonRecipe } from './input-addon'\nimport { inputGroupRecipe } from './input-group'\nimport { datepickerRecipe } from './datepicker'\nimport { tagRecipe } from './tag'\nimport { radioButtonGroupRecipe } from './radio-button-group'\nimport { radioGroupRecipe } from './radio-group'\nimport { chipRecipe } from './chip'\nimport { actionCardRecipe } from './action-card'\nimport { iconButtonRecipe } from './icon-button'\nimport { tooltipRecipe } from './tooltip'\nimport { alertRecipe } from './alert'\nimport { tableRecipe } from './table'\nimport { tableGroupTitleRecipe } from './table-group-title'\nimport { tableEmptyRowRecipe } from './table-empty-row'\nimport { tableContainerRecipe } from './table-container'\nimport { breadcrumbRecipe } from './breadcrumb'\nimport { popoverRecipe } from './popover'\nimport { paginationRecipe } from './pagination'\nimport { statusTagSelectRecipe } from './status-tag-select'\nimport { productCardCatalogRecipe } from './app/product-card-catalog'\nimport { illustrationRecipe } from './illustration'\nimport { buttonFilterRecipe } from './button-filter'\nimport { switchCardRecipe } from './switch-card'\nimport { radioCardGroupRecipe } from './radio-card-group'\nimport { checkboxCardRecipe } from './checkbox-card'\nimport { comboboxRecipe } from './combobox'\nimport { phoneNumberInputRecipe } from './phone-number-input'\nimport { iconRecipe } from './icon'\nimport { collapsibleRecipe } from './collapsible'\nimport { appNavigationRecipe } from './app/navigation'\nimport { mobileNavigationRecipe } from './app/mobile-navigation'\nimport { appNavigationLanguageSelectRecipe } from './app/navigation-language-select'\nimport { dialogRecipe } from './dialog'\nimport { selectLanguageRecipe } from './select-language'\nimport { avatarRecipe } from './avatar'\nimport { menuRecipe } from './menu'\nimport { avatarGroupRecipe } from './avatar-group'\nimport { flagRecipe } from './flag'\nimport { priceTagRecipe } from './app/price-tag'\nimport { tabsChipRecipe } from './tabs-chip'\nimport { checkboxGroupRecipe } from '~/theme/recipes/checkbox-group'\nimport { chatMessageRecipe } from '~/theme/recipes/chat/chat-message.ts'\nimport { chatDocumentMessageRecipe } from '~/theme/recipes/chat/chat-document-message.ts'\nimport { chatRecipe } from '~/theme/recipes/chat/chat.ts'\nimport { chatProfileAvatarRecipe } from '~/theme/recipes/chat/chat-profile-avatar.ts'\nimport { chatTextInputRecipe } from '~/theme/recipes/chat/chat-input-text.ts'\n\nexport const recipes = {\n button: buttonRecipe,\n iconButton: iconButtonRecipe,\n heading: headingRecipe,\n switchRecipe,\n text: textRecipe,\n textarea: textareaRecipe,\n formControl: formControlRecipe,\n formHelperText: formHelperTextRecipe,\n input: inputRecipe,\n inputAddon: inputAddonRecipe,\n inputGroup: inputGroupRecipe,\n tableGroupTitle: tableGroupTitleRecipe,\n tableEmptyRow: tableEmptyRowRecipe,\n tableContainer: tableContainerRecipe,\n illustration: illustrationRecipe,\n buttonFilter: buttonFilterRecipe,\n phoneNumberInput: phoneNumberInputRecipe,\n icon: iconRecipe,\n flag: flagRecipe,\n avatarGroup: avatarGroupRecipe,\n tabsChip: tabsChipRecipe,\n checkboxGroup: checkboxGroupRecipe,\n chatMessage: chatMessageRecipe,\n chatTextInput: chatTextInputRecipe,\n chatDocumentMessage: chatDocumentMessageRecipe,\n chatProfileAvatar: chatProfileAvatarRecipe,\n}\n\nexport const slotRecipes = {\n drawer: drawerRecipe,\n radioButtonGroup: radioButtonGroupRecipe,\n radioGroup: radioGroupRecipe,\n accordion: accordionRecipe,\n formLabel: formLabelRecipe,\n checkbox: checkboxRecipe,\n datepicker: datepickerRecipe,\n tabs: tabsRecipe,\n tag: tagRecipe,\n statusTagSelect: statusTagSelectRecipe,\n select: selectRecipe,\n selectLanguage: selectLanguageRecipe,\n chip: chipRecipe,\n actionCard: actionCardRecipe,\n tooltip: tooltipRecipe,\n alert: alertRecipe,\n table: tableRecipe,\n breadcrumb: breadcrumbRecipe,\n popover: popoverRecipe,\n pagination: paginationRecipe,\n productCardCatalog: productCardCatalogRecipe,\n switchCard: switchCardRecipe,\n radioCardGroup: radioCardGroupRecipe,\n checkboxCard: checkboxCardRecipe,\n combobox: comboboxRecipe,\n collapsible: collapsibleRecipe,\n appNavigation: appNavigationRecipe,\n mobileNavigation: mobileNavigationRecipe,\n dialog: dialogRecipe,\n appNavigationLanguageSelect: appNavigationLanguageSelectRecipe,\n avatar: avatarRecipe,\n menu: menuRecipe,\n priceTag: priceTagRecipe,\n chat: chatRecipe,\n highlightedInput: highlightedInputRecipe,\n}\n"],"names":["recipes","buttonRecipe","iconButtonRecipe","headingRecipe","switchRecipe","textRecipe","textareaRecipe","formControlRecipe","formHelperTextRecipe","inputRecipe","inputAddonRecipe","inputGroupRecipe","tableGroupTitleRecipe","tableEmptyRowRecipe","tableContainerRecipe","illustrationRecipe","buttonFilterRecipe","phoneNumberInputRecipe","iconRecipe","flagRecipe","avatarGroupRecipe","tabsChipRecipe","checkboxGroupRecipe","chatMessageRecipe","chatTextInputRecipe","chatDocumentMessageRecipe","chatProfileAvatarRecipe","slotRecipes","drawerRecipe","radioButtonGroupRecipe","radioGroupRecipe","accordionRecipe","formLabelRecipe","checkboxRecipe","datepickerRecipe","tabsRecipe","tagRecipe","statusTagSelectRecipe","selectRecipe","selectLanguageRecipe","chipRecipe","actionCardRecipe","tooltipRecipe","alertRecipe","tableRecipe","breadcrumbRecipe","popoverRecipe","paginationRecipe","productCardCatalogRecipe","switchCardRecipe","radioCardGroupRecipe","checkboxCardRecipe","comboboxRecipe","collapsibleRecipe","appNavigationRecipe","mobileNavigationRecipe","dialogRecipe","appNavigationLanguageSelectRecipe","avatarRecipe","menuRecipe","priceTagRecipe","chatRecipe","highlightedInputRecipe"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8DO,MAAMA,KAAU;AAAA,EACrB,QAAQC;AAAA,EACR,YAAYC;AAAA,EACZ,SAASC;AAAA,EACT,cAAAC;AAAA,EACA,MAAMC;AAAA,EACN,UAAUC;AAAA,EACV,aAAaC;AAAA,EACb,gBAAgBC;AAAA,EAChB,OAAOC;AAAA,EACP,YAAYC;AAAA,EACZ,YAAYC;AAAA,EACZ,iBAAiBC;AAAA,EACjB,eAAeC;AAAA,EACf,gBAAgBC;AAAA,EAChB,cAAcC;AAAA,EACd,cAAcC;AAAA,EACd,kBAAkBC;AAAA,EAClB,MAAMC;AAAA,EACN,MAAMC;AAAA,EACN,aAAaC;AAAA,EACb,UAAUC;AAAA,EACV,eAAeC;AAAA,EACf,aAAaC;AAAA,EACb,eAAeC;AAAA,EACf,qBAAqBC;AAAA,EACrB,mBAAmBC;AACrB,GAEaC,KAAc;AAAA,EACzB,QAAQC;AAAA,EACR,kBAAkBC;AAAA,EAClB,YAAYC;AAAA,EACZ,WAAWC;AAAA,EACX,WAAWC;AAAA,EACX,UAAUC;AAAA,EACV,YAAYC;AAAA,EACZ,MAAMC;AAAA,EACN,KAAKC;AAAA,EACL,iBAAiBC;AAAA,EACjB,QAAQC;AAAA,EACR,gBAAgBC;AAAA,EAChB,MAAMC;AAAA,EACN,YAAYC;AAAA,EACZ,SAASC;AAAA,EACT,OAAOC;AAAA,EACP,OAAOC;AAAA,EACP,YAAYC;AAAA,EACZ,SAASC;AAAA,EACT,YAAYC;AAAA,EACZ,oBAAoBC;AAAA,EACpB,YAAYC;AAAA,EACZ,gBAAgBC;AAAA,EAChB,cAAcC;AAAA,EACd,UAAUC;AAAA,EACV,aAAaC;AAAA,EACb,eAAeC;AAAA,EACf,kBAAkBC;AAAA,EAClB,QAAQC;AAAA,EACR,6BAA6BC;AAAA,EAC7B,QAAQC;AAAA,EACR,MAAMC;AAAA,EACN,UAAUC;AAAA,EACV,MAAMC;AAAA,EACN,kBAAkBC;AACpB;"}
|