@stokelp/ui 2.97.0 → 2.99.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 +1 -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/components/chat/ChatDocumentMessage.js +1 -1
- package/dist/components/checkbox/Checkbox.js +3 -3
- package/dist/components/checkbox-card/CheckboxCard.js +2 -2
- package/dist/components/drawer/Drawer.js +1 -1
- package/dist/components/pagination/use-pagination.cjs.map +1 -1
- package/dist/components/pagination/use-pagination.js +1 -1
- package/dist/components/pagination/use-pagination.js.map +1 -1
- package/dist/components/radio-card-group/RadioCardGroup.js +1 -1
- package/dist/components/switch-card/SwitchCard.js +2 -2
- package/dist/components/table/Table.js +3 -3
- package/dist/components/table/TableProvider.js +3 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +169 -167
- package/dist/index.js.map +1 -1
- package/dist/node_modules/@pandacss/shared/dist/index.cjs.map +1 -1
- package/dist/node_modules/@pandacss/shared/dist/index.js.map +1 -1
- package/dist/node_modules/@zag-js/utils/dist/index.cjs.map +1 -1
- package/dist/node_modules/@zag-js/utils/dist/index.js.map +1 -1
- package/dist/node_modules/deepmerge/dist/cjs.js +1 -1
- package/dist/node_modules/deepmerge/dist/cjs.js.map +1 -1
- package/dist/node_modules/lodash/lodash.cjs +7 -14
- package/dist/node_modules/lodash/lodash.cjs.map +1 -1
- package/dist/node_modules/lodash/lodash.js +1282 -1273
- package/dist/node_modules/lodash/lodash.js.map +1 -1
- 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 +15 -21
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@pandacss/dev"),o=e.defineSlotRecipe({base:{root:{display:"flex",position:"fixed",bottom:0,left:0,right:0,zIndex:"sticky",height:"56px",alignItems:"stretch",overflow:"hidden"},item:{display:"flex",flex:1,flexDirection:"column",alignItems:"center",justifyContent:"center",gap:"space-2",py:"space-4",cursor:"pointer",color:"white",textDecoration:"none"},itemIcon:{color:"inherit"},itemLabel:{fontFamily:"satoshi",fontSize:"10px",lineHeight:"1.2",color:"inherit",whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis",maxWidth:"64px",textAlign:"center"}},variants:{variant:{prod:{root:{bg:"primary.900",borderTop:"1px solid {colors.primary.800}"},item:{_currentPage:{color:"secondary.500"}}},staging:{root:{bg:"warning.500",borderTop:"1px solid {colors.warning.300}"},item:{_currentPage:{color:"secondary.500"}}},dev:{root:{bg:"error.900",borderTop:"1px solid {colors.error.700}"},item:{_currentPage:{color:"secondary.500"}}},neutral:{root:{bg:"white",borderTop:"1px solid {colors.primary.100}",color:"primary.900"},item:{color:"grey.400",_currentPage:{color:"secondary.500"}}}}},defaultVariants:{variant:"prod"},slots:["root","item","itemIcon","itemLabel"],className:"mobile-navigation",description:"The styles for the MobileNavigation component",jsx:["MobileNavigation","MobileNavigation.Root","MobileNavigation.Item","MobileNavigation.ItemIcon","MobileNavigation.ItemLabel"]});exports.mobileNavigationRecipe=o;
|
|
2
|
+
//# sourceMappingURL=mobile-navigation.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mobile-navigation.cjs","sources":["../../../../src/theme/recipes/app/mobile-navigation.ts"],"sourcesContent":["import { defineSlotRecipe } from '@pandacss/dev'\n\nexport const mobileNavigationRecipe = defineSlotRecipe({\n base: {\n root: {\n display: 'flex',\n position: 'fixed',\n bottom: 0,\n left: 0,\n right: 0,\n zIndex: 'sticky',\n height: '56px',\n alignItems: 'stretch',\n overflow: 'hidden',\n },\n item: {\n display: 'flex',\n flex: 1,\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 'space-2',\n py: 'space-4',\n cursor: 'pointer',\n color: 'white',\n textDecoration: 'none',\n },\n itemIcon: {\n color: 'inherit',\n },\n itemLabel: {\n fontFamily: 'satoshi',\n fontSize: '10px',\n lineHeight: '1.2',\n color: 'inherit',\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n maxWidth: '64px',\n textAlign: 'center',\n },\n },\n variants: {\n variant: {\n prod: {\n root: {\n bg: 'primary.900',\n borderTop: '1px solid {colors.primary.800}',\n },\n item: {\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n staging: {\n root: {\n bg: 'warning.500',\n borderTop: '1px solid {colors.warning.300}',\n },\n item: {\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n dev: {\n root: {\n bg: 'error.900',\n borderTop: '1px solid {colors.error.700}',\n },\n item: {\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n neutral: {\n root: {\n bg: 'white',\n borderTop: '1px solid {colors.primary.100}',\n color: 'primary.900',\n },\n item: {\n color: 'grey.400',\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n },\n },\n defaultVariants: {\n variant: 'prod',\n },\n slots: ['root', 'item', 'itemIcon', 'itemLabel'],\n className: 'mobile-navigation',\n description: 'The styles for the MobileNavigation component',\n jsx: [\n 'MobileNavigation',\n 'MobileNavigation.Root',\n 'MobileNavigation.Item',\n 'MobileNavigation.ItemIcon',\n 'MobileNavigation.ItemLabel',\n ],\n})\n"],"names":["mobileNavigationRecipe","defineSlotRecipe"],"mappings":"8HAEaA,EAAyBC,EAAAA,iBAAiB,CACrD,KAAM,CACJ,KAAM,CACJ,QAAS,OACT,SAAU,QACV,OAAQ,EACR,KAAM,EACN,MAAO,EACP,OAAQ,SACR,OAAQ,OACR,WAAY,UACZ,SAAU,QAAA,EAEZ,KAAM,CACJ,QAAS,OACT,KAAM,EACN,cAAe,SACf,WAAY,SACZ,eAAgB,SAChB,IAAK,UACL,GAAI,UACJ,OAAQ,UACR,MAAO,QACP,eAAgB,MAAA,EAElB,SAAU,CACR,MAAO,SAAA,EAET,UAAW,CACT,WAAY,UACZ,SAAU,OACV,WAAY,MACZ,MAAO,UACP,WAAY,SACZ,SAAU,SACV,aAAc,WACd,SAAU,OACV,UAAW,QAAA,CACb,EAEF,SAAU,CACR,QAAS,CACP,KAAM,CACJ,KAAM,CACJ,GAAI,cACJ,UAAW,gCAAA,EAEb,KAAM,CACJ,aAAc,CACZ,MAAO,eAAA,CACT,CACF,EAEF,QAAS,CACP,KAAM,CACJ,GAAI,cACJ,UAAW,gCAAA,EAEb,KAAM,CACJ,aAAc,CACZ,MAAO,eAAA,CACT,CACF,EAEF,IAAK,CACH,KAAM,CACJ,GAAI,YACJ,UAAW,8BAAA,EAEb,KAAM,CACJ,aAAc,CACZ,MAAO,eAAA,CACT,CACF,EAEF,QAAS,CACP,KAAM,CACJ,GAAI,QACJ,UAAW,iCACX,MAAO,aAAA,EAET,KAAM,CACJ,MAAO,WACP,aAAc,CACZ,MAAO,eAAA,CACT,CACF,CACF,CACF,EAEF,gBAAiB,CACf,QAAS,MAAA,EAEX,MAAO,CAAC,OAAQ,OAAQ,WAAY,WAAW,EAC/C,UAAW,oBACX,YAAa,gDACb,IAAK,CACH,mBACA,wBACA,wBACA,4BACA,4BAAA,CAEJ,CAAC"}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { defineSlotRecipe as o } from "@pandacss/dev";
|
|
3
|
+
const i = o({
|
|
4
|
+
base: {
|
|
5
|
+
root: {
|
|
6
|
+
display: "flex",
|
|
7
|
+
position: "fixed",
|
|
8
|
+
bottom: 0,
|
|
9
|
+
left: 0,
|
|
10
|
+
right: 0,
|
|
11
|
+
zIndex: "sticky",
|
|
12
|
+
height: "56px",
|
|
13
|
+
alignItems: "stretch",
|
|
14
|
+
overflow: "hidden"
|
|
15
|
+
},
|
|
16
|
+
item: {
|
|
17
|
+
display: "flex",
|
|
18
|
+
flex: 1,
|
|
19
|
+
flexDirection: "column",
|
|
20
|
+
alignItems: "center",
|
|
21
|
+
justifyContent: "center",
|
|
22
|
+
gap: "space-2",
|
|
23
|
+
py: "space-4",
|
|
24
|
+
cursor: "pointer",
|
|
25
|
+
color: "white",
|
|
26
|
+
textDecoration: "none"
|
|
27
|
+
},
|
|
28
|
+
itemIcon: {
|
|
29
|
+
color: "inherit"
|
|
30
|
+
},
|
|
31
|
+
itemLabel: {
|
|
32
|
+
fontFamily: "satoshi",
|
|
33
|
+
fontSize: "10px",
|
|
34
|
+
lineHeight: "1.2",
|
|
35
|
+
color: "inherit",
|
|
36
|
+
whiteSpace: "nowrap",
|
|
37
|
+
overflow: "hidden",
|
|
38
|
+
textOverflow: "ellipsis",
|
|
39
|
+
maxWidth: "64px",
|
|
40
|
+
textAlign: "center"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
variants: {
|
|
44
|
+
variant: {
|
|
45
|
+
prod: {
|
|
46
|
+
root: {
|
|
47
|
+
bg: "primary.900",
|
|
48
|
+
borderTop: "1px solid {colors.primary.800}"
|
|
49
|
+
},
|
|
50
|
+
item: {
|
|
51
|
+
_currentPage: {
|
|
52
|
+
color: "secondary.500"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
staging: {
|
|
57
|
+
root: {
|
|
58
|
+
bg: "warning.500",
|
|
59
|
+
borderTop: "1px solid {colors.warning.300}"
|
|
60
|
+
},
|
|
61
|
+
item: {
|
|
62
|
+
_currentPage: {
|
|
63
|
+
color: "secondary.500"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
dev: {
|
|
68
|
+
root: {
|
|
69
|
+
bg: "error.900",
|
|
70
|
+
borderTop: "1px solid {colors.error.700}"
|
|
71
|
+
},
|
|
72
|
+
item: {
|
|
73
|
+
_currentPage: {
|
|
74
|
+
color: "secondary.500"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
neutral: {
|
|
79
|
+
root: {
|
|
80
|
+
bg: "white",
|
|
81
|
+
borderTop: "1px solid {colors.primary.100}",
|
|
82
|
+
color: "primary.900"
|
|
83
|
+
},
|
|
84
|
+
item: {
|
|
85
|
+
color: "grey.400",
|
|
86
|
+
_currentPage: {
|
|
87
|
+
color: "secondary.500"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
defaultVariants: {
|
|
94
|
+
variant: "prod"
|
|
95
|
+
},
|
|
96
|
+
slots: ["root", "item", "itemIcon", "itemLabel"],
|
|
97
|
+
className: "mobile-navigation",
|
|
98
|
+
description: "The styles for the MobileNavigation component",
|
|
99
|
+
jsx: [
|
|
100
|
+
"MobileNavigation",
|
|
101
|
+
"MobileNavigation.Root",
|
|
102
|
+
"MobileNavigation.Item",
|
|
103
|
+
"MobileNavigation.ItemIcon",
|
|
104
|
+
"MobileNavigation.ItemLabel"
|
|
105
|
+
]
|
|
106
|
+
});
|
|
107
|
+
export {
|
|
108
|
+
i as mobileNavigationRecipe
|
|
109
|
+
};
|
|
110
|
+
//# sourceMappingURL=mobile-navigation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mobile-navigation.js","sources":["../../../../src/theme/recipes/app/mobile-navigation.ts"],"sourcesContent":["import { defineSlotRecipe } from '@pandacss/dev'\n\nexport const mobileNavigationRecipe = defineSlotRecipe({\n base: {\n root: {\n display: 'flex',\n position: 'fixed',\n bottom: 0,\n left: 0,\n right: 0,\n zIndex: 'sticky',\n height: '56px',\n alignItems: 'stretch',\n overflow: 'hidden',\n },\n item: {\n display: 'flex',\n flex: 1,\n flexDirection: 'column',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 'space-2',\n py: 'space-4',\n cursor: 'pointer',\n color: 'white',\n textDecoration: 'none',\n },\n itemIcon: {\n color: 'inherit',\n },\n itemLabel: {\n fontFamily: 'satoshi',\n fontSize: '10px',\n lineHeight: '1.2',\n color: 'inherit',\n whiteSpace: 'nowrap',\n overflow: 'hidden',\n textOverflow: 'ellipsis',\n maxWidth: '64px',\n textAlign: 'center',\n },\n },\n variants: {\n variant: {\n prod: {\n root: {\n bg: 'primary.900',\n borderTop: '1px solid {colors.primary.800}',\n },\n item: {\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n staging: {\n root: {\n bg: 'warning.500',\n borderTop: '1px solid {colors.warning.300}',\n },\n item: {\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n dev: {\n root: {\n bg: 'error.900',\n borderTop: '1px solid {colors.error.700}',\n },\n item: {\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n neutral: {\n root: {\n bg: 'white',\n borderTop: '1px solid {colors.primary.100}',\n color: 'primary.900',\n },\n item: {\n color: 'grey.400',\n _currentPage: {\n color: 'secondary.500',\n },\n },\n },\n },\n },\n defaultVariants: {\n variant: 'prod',\n },\n slots: ['root', 'item', 'itemIcon', 'itemLabel'],\n className: 'mobile-navigation',\n description: 'The styles for the MobileNavigation component',\n jsx: [\n 'MobileNavigation',\n 'MobileNavigation.Root',\n 'MobileNavigation.Item',\n 'MobileNavigation.ItemIcon',\n 'MobileNavigation.ItemLabel',\n ],\n})\n"],"names":["mobileNavigationRecipe","defineSlotRecipe"],"mappings":";;AAEO,MAAMA,IAAyBC,EAAiB;AAAA,EACrD,MAAM;AAAA,IACJ,MAAM;AAAA,MACJ,SAAS;AAAA,MACT,UAAU;AAAA,MACV,QAAQ;AAAA,MACR,MAAM;AAAA,MACN,OAAO;AAAA,MACP,QAAQ;AAAA,MACR,QAAQ;AAAA,MACR,YAAY;AAAA,MACZ,UAAU;AAAA,IAAA;AAAA,IAEZ,MAAM;AAAA,MACJ,SAAS;AAAA,MACT,MAAM;AAAA,MACN,eAAe;AAAA,MACf,YAAY;AAAA,MACZ,gBAAgB;AAAA,MAChB,KAAK;AAAA,MACL,IAAI;AAAA,MACJ,QAAQ;AAAA,MACR,OAAO;AAAA,MACP,gBAAgB;AAAA,IAAA;AAAA,IAElB,UAAU;AAAA,MACR,OAAO;AAAA,IAAA;AAAA,IAET,WAAW;AAAA,MACT,YAAY;AAAA,MACZ,UAAU;AAAA,MACV,YAAY;AAAA,MACZ,OAAO;AAAA,MACP,YAAY;AAAA,MACZ,UAAU;AAAA,MACV,cAAc;AAAA,MACd,UAAU;AAAA,MACV,WAAW;AAAA,IAAA;AAAA,EACb;AAAA,EAEF,UAAU;AAAA,IACR,SAAS;AAAA,MACP,MAAM;AAAA,QACJ,MAAM;AAAA,UACJ,IAAI;AAAA,UACJ,WAAW;AAAA,QAAA;AAAA,QAEb,MAAM;AAAA,UACJ,cAAc;AAAA,YACZ,OAAO;AAAA,UAAA;AAAA,QACT;AAAA,MACF;AAAA,MAEF,SAAS;AAAA,QACP,MAAM;AAAA,UACJ,IAAI;AAAA,UACJ,WAAW;AAAA,QAAA;AAAA,QAEb,MAAM;AAAA,UACJ,cAAc;AAAA,YACZ,OAAO;AAAA,UAAA;AAAA,QACT;AAAA,MACF;AAAA,MAEF,KAAK;AAAA,QACH,MAAM;AAAA,UACJ,IAAI;AAAA,UACJ,WAAW;AAAA,QAAA;AAAA,QAEb,MAAM;AAAA,UACJ,cAAc;AAAA,YACZ,OAAO;AAAA,UAAA;AAAA,QACT;AAAA,MACF;AAAA,MAEF,SAAS;AAAA,QACP,MAAM;AAAA,UACJ,IAAI;AAAA,UACJ,WAAW;AAAA,UACX,OAAO;AAAA,QAAA;AAAA,QAET,MAAM;AAAA,UACJ,OAAO;AAAA,UACP,cAAc;AAAA,YACZ,OAAO;AAAA,UAAA;AAAA,QACT;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEF,iBAAiB;AAAA,IACf,SAAS;AAAA,EAAA;AAAA,EAEX,OAAO,CAAC,QAAQ,QAAQ,YAAY,WAAW;AAAA,EAC/C,WAAW;AAAA,EACX,aAAa;AAAA,EACb,KAAK;AAAA,IACH;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EAAA;AAEJ,CAAC;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./button.cjs"),t=require("./heading.cjs"),
|
|
1
|
+
"use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./button.cjs"),t=require("./heading.cjs"),i=require("./switch.cjs"),r=require("./text.cjs"),c=require("./textarea.cjs"),o=require("./form/control.cjs"),a=require("./form/helper-text.cjs"),n=require("./drawer.cjs"),p=require("./accordion.cjs"),u=require("./form/label.cjs"),s=require("./checkbox.cjs"),l=require("./tabs.cjs"),R=require("./select.cjs"),q=require("./input.cjs"),b=require("./highlightedInput.cjs"),g=require("./input-addon.cjs"),d=require("./input-group.cjs"),h=require("./datepicker.cjs"),m=require("./tag.cjs"),C=require("./radio-button-group.cjs"),x=require("./radio-group.cjs"),v=require("./chip.cjs"),G=require("./action-card.cjs"),T=require("./icon-button.cjs"),f=require("./tooltip.cjs"),k=require("./alert.cjs"),w=require("./table.cjs"),N=require("./table-group-title.cjs"),I=require("./table-empty-row.cjs"),L=require("./table-container.cjs"),S=require("./breadcrumb.cjs"),M=require("./popover.cjs"),A=require("./pagination.cjs"),B=require("./status-tag-select.cjs"),y=require("./app/product-card-catalog.cjs"),P=require("./illustration.cjs"),D=require("./button-filter.cjs"),E=require("./switch-card.cjs"),F=require("./radio-card-group.cjs"),H=require("./checkbox-card.cjs"),j=require("./combobox.cjs"),O=require("./phone-number-input.cjs"),_=require("./icon.cjs"),z=require("./collapsible.cjs"),J=require("./app/navigation.cjs"),K=require("./app/mobile-navigation.cjs"),Q=require("./app/navigation-language-select.cjs"),U=require("./dialog.cjs"),V=require("./select-language.cjs"),W=require("./avatar.cjs"),X=require("./menu.cjs"),Y=require("./avatar-group.cjs"),Z=require("./flag.cjs"),$=require("./app/price-tag.cjs"),ee=require("./tabs-chip.cjs"),te=require("./checkbox-group.cjs"),ie=require("./chat/chat-message.cjs"),re=require("./chat/chat-document-message.cjs"),ce=require("./chat/chat.cjs"),oe=require("./chat/chat-profile-avatar.cjs"),ae=require("./chat/chat-input-text.cjs"),ne={button:e.buttonRecipe,iconButton:T.iconButtonRecipe,heading:t.headingRecipe,switchRecipe:i.switchRecipe,text:r.textRecipe,textarea:c.textareaRecipe,formControl:o.formControlRecipe,formHelperText:a.formHelperTextRecipe,input:q.inputRecipe,inputAddon:g.inputAddonRecipe,inputGroup:d.inputGroupRecipe,tableGroupTitle:N.tableGroupTitleRecipe,tableEmptyRow:I.tableEmptyRowRecipe,tableContainer:L.tableContainerRecipe,illustration:P.illustrationRecipe,buttonFilter:D.buttonFilterRecipe,phoneNumberInput:O.phoneNumberInputRecipe,icon:_.iconRecipe,flag:Z.flagRecipe,avatarGroup:Y.avatarGroupRecipe,tabsChip:ee.tabsChipRecipe,checkboxGroup:te.checkboxGroupRecipe,chatMessage:ie.chatMessageRecipe,chatTextInput:ae.chatTextInputRecipe,chatDocumentMessage:re.chatDocumentMessageRecipe,chatProfileAvatar:oe.chatProfileAvatarRecipe},pe={drawer:n.drawerRecipe,radioButtonGroup:C.radioButtonGroupRecipe,radioGroup:x.radioGroupRecipe,accordion:p.accordionRecipe,formLabel:u.formLabelRecipe,checkbox:s.checkboxRecipe,datepicker:h.datepickerRecipe,tabs:l.tabsRecipe,tag:m.tagRecipe,statusTagSelect:B.statusTagSelectRecipe,select:R.selectRecipe,selectLanguage:V.selectLanguageRecipe,chip:v.chipRecipe,actionCard:G.actionCardRecipe,tooltip:f.tooltipRecipe,alert:k.alertRecipe,table:w.tableRecipe,breadcrumb:S.breadcrumbRecipe,popover:M.popoverRecipe,pagination:A.paginationRecipe,productCardCatalog:y.productCardCatalogRecipe,switchCard:E.switchCardRecipe,radioCardGroup:F.radioCardGroupRecipe,checkboxCard:H.checkboxCardRecipe,combobox:j.comboboxRecipe,collapsible:z.collapsibleRecipe,appNavigation:J.appNavigationRecipe,mobileNavigation:K.mobileNavigationRecipe,dialog:U.dialogRecipe,appNavigationLanguageSelect:Q.appNavigationLanguageSelectRecipe,avatar:W.avatarRecipe,menu:X.menuRecipe,priceTag:$.priceTagRecipe,chat:ce.chatRecipe,highlightedInput:b.highlightedInputRecipe};exports.recipes=ne;exports.slotRecipes=pe;
|
|
2
2
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","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.cjs","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":"q+DA8DaA,GAAU,CACrB,OAAQC,EAAAA,aACR,WAAYC,EAAAA,iBACZ,QAASC,EAAAA,cAAA,aACTC,EAAAA,aACA,KAAMC,EAAAA,WACN,SAAUC,EAAAA,eACV,YAAaC,EAAAA,kBACb,eAAgBC,EAAAA,qBAChB,MAAOC,EAAAA,YACP,WAAYC,EAAAA,iBACZ,WAAYC,EAAAA,iBACZ,gBAAiBC,EAAAA,sBACjB,cAAeC,EAAAA,oBACf,eAAgBC,EAAAA,qBAChB,aAAcC,EAAAA,mBACd,aAAcC,EAAAA,mBACd,iBAAkBC,EAAAA,uBAClB,KAAMC,EAAAA,WACN,KAAMC,EAAAA,WACN,YAAaC,EAAAA,kBACb,SAAUC,GAAAA,eACV,cAAeC,GAAAA,oBACf,YAAaC,GAAAA,kBACb,cAAeC,GAAAA,oBACf,oBAAqBC,GAAAA,0BACrB,kBAAmBC,GAAAA,uBACrB,EAEaC,GAAc,CACzB,OAAQC,EAAAA,aACR,iBAAkBC,EAAAA,uBAClB,WAAYC,EAAAA,iBACZ,UAAWC,EAAAA,gBACX,UAAWC,EAAAA,gBACX,SAAUC,EAAAA,eACV,WAAYC,EAAAA,iBACZ,KAAMC,EAAAA,WACN,IAAKC,EAAAA,UACL,gBAAiBC,EAAAA,sBACjB,OAAQC,EAAAA,aACR,eAAgBC,EAAAA,qBAChB,KAAMC,EAAAA,WACN,WAAYC,EAAAA,iBACZ,QAASC,EAAAA,cACT,MAAOC,EAAAA,YACP,MAAOC,EAAAA,YACP,WAAYC,EAAAA,iBACZ,QAASC,EAAAA,cACT,WAAYC,EAAAA,iBACZ,mBAAoBC,EAAAA,yBACpB,WAAYC,EAAAA,iBACZ,eAAgBC,EAAAA,qBAChB,aAAcC,EAAAA,mBACd,SAAUC,EAAAA,eACV,YAAaC,EAAAA,kBACb,cAAeC,EAAAA,oBACf,iBAAkBC,EAAAA,uBAClB,OAAQC,EAAAA,aACR,4BAA6BC,EAAAA,kCAC7B,OAAQC,EAAAA,aACR,KAAMC,EAAAA,WACN,SAAUC,EAAAA,eACV,KAAMC,GAAAA,WACN,iBAAkBC,EAAAA,sBACpB"}
|
|
@@ -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;"}
|