@cerberus-design/react 0.16.0-next-1e5283a → 0.16.0-next-004ae01
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/build/legacy/_tsup-dts-rollup.d.cts +298 -0
- package/build/legacy/components/combobox/combobox.cjs +224 -0
- package/build/legacy/components/combobox/combobox.cjs.map +1 -0
- package/build/legacy/components/combobox/index.cjs +326 -0
- package/build/legacy/components/combobox/index.cjs.map +1 -0
- package/build/legacy/components/combobox/item-group.cjs +178 -0
- package/build/legacy/components/combobox/item-group.cjs.map +1 -0
- package/build/legacy/components/combobox/item.cjs +192 -0
- package/build/legacy/components/combobox/item.cjs.map +1 -0
- package/build/legacy/components/combobox/parts.cjs +168 -0
- package/build/legacy/components/combobox/parts.cjs.map +1 -0
- package/build/legacy/components/combobox/primitives.cjs +182 -0
- package/build/legacy/components/combobox/primitives.cjs.map +1 -0
- package/build/legacy/components/combobox/use-stateful-collection.cjs +72 -0
- package/build/legacy/components/combobox/use-stateful-collection.cjs.map +1 -0
- package/build/legacy/components/select/index.cjs.map +1 -1
- package/build/legacy/components/select/select.cjs.map +1 -1
- package/build/legacy/index.cjs +960 -700
- package/build/legacy/index.cjs.map +1 -1
- package/build/modern/_tsup-dts-rollup.d.ts +298 -0
- package/build/modern/{chunk-4WKM2MJC.js → chunk-3B4SFTQB.js} +2 -2
- package/build/modern/chunk-FZ53535Q.js +18 -0
- package/build/modern/chunk-FZ53535Q.js.map +1 -0
- package/build/modern/chunk-HIC7Z23X.js +37 -0
- package/build/modern/chunk-HIC7Z23X.js.map +1 -0
- package/build/modern/chunk-J7SAFAW3.js +44 -0
- package/build/modern/chunk-J7SAFAW3.js.map +1 -0
- package/build/modern/{chunk-C45HS2C4.js → chunk-MH6CIBDU.js} +4 -4
- package/build/modern/chunk-ML2IKLMJ.js +1 -0
- package/build/modern/chunk-ML2IKLMJ.js.map +1 -0
- package/build/modern/chunk-MR4DX76C.js +38 -0
- package/build/modern/chunk-MR4DX76C.js.map +1 -0
- package/build/modern/chunk-NR5XDIJ7.js +148 -0
- package/build/modern/chunk-NR5XDIJ7.js.map +1 -0
- package/build/modern/{chunk-OOUNB643.js → chunk-R7MPDSXX.js} +7 -7
- package/build/modern/{chunk-6DAOKE6Z.js → chunk-RKVY2HJ3.js} +4 -4
- package/build/modern/{chunk-MTZDZXZM.js → chunk-U5XRQ2JZ.js} +2 -2
- package/build/modern/{chunk-CF3EHG42.js → chunk-VTQ6RW3Z.js} +7 -7
- package/build/modern/chunk-XBUXVNTY.js +22 -0
- package/build/modern/chunk-XBUXVNTY.js.map +1 -0
- package/build/modern/{chunk-6ICNCCPD.js → chunk-YLKFZGBY.js} +1 -1
- package/build/modern/chunk-YLKFZGBY.js.map +1 -0
- package/build/modern/components/FileStatus.js +3 -3
- package/build/modern/components/combobox/combobox.js +13 -0
- package/build/modern/components/combobox/combobox.js.map +1 -0
- package/build/modern/components/combobox/index.js +60 -0
- package/build/modern/components/combobox/index.js.map +1 -0
- package/build/modern/components/combobox/item-group.js +9 -0
- package/build/modern/components/combobox/item-group.js.map +1 -0
- package/build/modern/components/combobox/item.js +11 -0
- package/build/modern/components/combobox/item.js.map +1 -0
- package/build/modern/components/combobox/parts.js +8 -0
- package/build/modern/components/combobox/parts.js.map +1 -0
- package/build/modern/components/combobox/primitives.js +35 -0
- package/build/modern/components/combobox/primitives.js.map +1 -0
- package/build/modern/components/combobox/use-stateful-collection.js +9 -0
- package/build/modern/components/combobox/use-stateful-collection.js.map +1 -0
- package/build/modern/components/cta-dialog/index.js +3 -3
- package/build/modern/components/cta-dialog/provider.js +3 -3
- package/build/modern/components/dialog/dialog.js +2 -2
- package/build/modern/components/dialog/index.js +2 -2
- package/build/modern/components/select/index.js +1 -1
- package/build/modern/components/select/select.js +1 -1
- package/build/modern/context/confirm-modal.js +3 -3
- package/build/modern/context/notification-center.js +2 -2
- package/build/modern/context/prompt-modal.js +9 -9
- package/build/modern/index.js +187 -134
- package/build/modern/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/combobox/combobox.tsx +66 -0
- package/src/components/combobox/index.ts +6 -0
- package/src/components/combobox/item-group.tsx +19 -0
- package/src/components/combobox/item.tsx +30 -0
- package/src/components/combobox/parts.ts +101 -0
- package/src/components/combobox/primitives.tsx +209 -0
- package/src/components/combobox/use-stateful-collection.ts +65 -0
- package/src/components/select/select.tsx +1 -0
- package/src/index.ts +1 -0
- package/build/modern/chunk-6ICNCCPD.js.map +0 -1
- /package/build/modern/{chunk-4WKM2MJC.js.map → chunk-3B4SFTQB.js.map} +0 -0
- /package/build/modern/{chunk-C45HS2C4.js.map → chunk-MH6CIBDU.js.map} +0 -0
- /package/build/modern/{chunk-OOUNB643.js.map → chunk-R7MPDSXX.js.map} +0 -0
- /package/build/modern/{chunk-6DAOKE6Z.js.map → chunk-RKVY2HJ3.js.map} +0 -0
- /package/build/modern/{chunk-MTZDZXZM.js.map → chunk-U5XRQ2JZ.js.map} +0 -0
- /package/build/modern/{chunk-CF3EHG42.js.map → chunk-VTQ6RW3Z.js.map} +0 -0
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Combobox,
|
|
3
|
+
type ComboboxClearTriggerProps,
|
|
4
|
+
type ComboboxContentProps,
|
|
5
|
+
type ComboboxControlProps,
|
|
6
|
+
type ComboboxInputProps,
|
|
7
|
+
type ComboboxItemGroupLabelProps,
|
|
8
|
+
type ComboboxItemGroupProps,
|
|
9
|
+
type ComboboxItemIndicatorProps,
|
|
10
|
+
type ComboboxItemProps,
|
|
11
|
+
type ComboboxItemTextProps,
|
|
12
|
+
type ComboboxLabelProps,
|
|
13
|
+
type ComboboxPositionerProps,
|
|
14
|
+
type ComboboxRootProps,
|
|
15
|
+
type ComboboxTriggerProps,
|
|
16
|
+
} from '@ark-ui/react/combobox'
|
|
17
|
+
import { ark } from '@ark-ui/react/factory'
|
|
18
|
+
import type { SelectCollectionItem } from '../select/select'
|
|
19
|
+
import {
|
|
20
|
+
combobox,
|
|
21
|
+
type ComboboxVariantProps,
|
|
22
|
+
} from '@cerberus/styled-system/recipes'
|
|
23
|
+
import { cx } from '@cerberus/styled-system/css'
|
|
24
|
+
import type { PropsWithChildren } from 'react'
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* This module contains the primitives of the Combobox.
|
|
28
|
+
* @module 'combobox/primitives'
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* The ComboboxRoot component is the context provider for the Combobox
|
|
33
|
+
* component.
|
|
34
|
+
*/
|
|
35
|
+
export function ComboboxRoot(
|
|
36
|
+
props: ComboboxRootProps<SelectCollectionItem> & ComboboxVariantProps,
|
|
37
|
+
) {
|
|
38
|
+
const { size, ...rootProps } = props
|
|
39
|
+
const styles = combobox({ size })
|
|
40
|
+
return (
|
|
41
|
+
<Combobox.Root
|
|
42
|
+
{...rootProps}
|
|
43
|
+
className={cx(styles.root, rootProps.className)}
|
|
44
|
+
/>
|
|
45
|
+
)
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* The label that appears above the combobox input.
|
|
50
|
+
*/
|
|
51
|
+
export function ComboboxLabel(props: ComboboxLabelProps) {
|
|
52
|
+
const styles = combobox()
|
|
53
|
+
return (
|
|
54
|
+
<Combobox.Label {...props} className={cx(styles.label, props.className)} />
|
|
55
|
+
)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* The control that wraps the combobox input.
|
|
60
|
+
*/
|
|
61
|
+
export function ComboboxControl(props: ComboboxControlProps) {
|
|
62
|
+
const styles = combobox()
|
|
63
|
+
return (
|
|
64
|
+
<Combobox.Control
|
|
65
|
+
{...props}
|
|
66
|
+
className={cx(styles.control, props.className)}
|
|
67
|
+
/>
|
|
68
|
+
)
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* The input of the combobox.
|
|
73
|
+
*/
|
|
74
|
+
export function ComboboxInput(props: ComboboxInputProps) {
|
|
75
|
+
const styles = combobox()
|
|
76
|
+
return (
|
|
77
|
+
<Combobox.Input {...props} className={cx(styles.input, props.className)} />
|
|
78
|
+
)
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* The trigger that opens the dropdown.
|
|
83
|
+
*/
|
|
84
|
+
export function ComboboxTrigger(props: ComboboxTriggerProps) {
|
|
85
|
+
const styles = combobox()
|
|
86
|
+
return (
|
|
87
|
+
<Combobox.Trigger
|
|
88
|
+
{...props}
|
|
89
|
+
className={cx(styles.trigger, props.className)}
|
|
90
|
+
/>
|
|
91
|
+
)
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* The trigger to clear the combobox input.
|
|
96
|
+
*/
|
|
97
|
+
export function ComboboxClearTrigger(props: ComboboxClearTriggerProps) {
|
|
98
|
+
const styles = combobox()
|
|
99
|
+
return (
|
|
100
|
+
<Combobox.ClearTrigger
|
|
101
|
+
{...props}
|
|
102
|
+
className={cx(styles.clearTrigger, props.className)}
|
|
103
|
+
/>
|
|
104
|
+
)
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* The positioner that wraps the content.
|
|
109
|
+
*/
|
|
110
|
+
export function ComboboxPositioner(props: ComboboxPositionerProps) {
|
|
111
|
+
const styles = combobox()
|
|
112
|
+
return (
|
|
113
|
+
<Combobox.Positioner
|
|
114
|
+
{...props}
|
|
115
|
+
className={cx(styles.positioner, props.className)}
|
|
116
|
+
/>
|
|
117
|
+
)
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* The content of the combobox component.
|
|
122
|
+
*/
|
|
123
|
+
export function ComboboxContent(
|
|
124
|
+
props: ComboboxContentProps & ComboboxVariantProps,
|
|
125
|
+
) {
|
|
126
|
+
const { size, ...contentProps } = props
|
|
127
|
+
const styles = combobox({ size })
|
|
128
|
+
return (
|
|
129
|
+
<Combobox.Content
|
|
130
|
+
{...contentProps}
|
|
131
|
+
className={cx(styles.content, contentProps.className)}
|
|
132
|
+
/>
|
|
133
|
+
)
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* A group of items in the combobox component.
|
|
138
|
+
*/
|
|
139
|
+
export function ComboboxItemGroup(props: ComboboxItemGroupProps) {
|
|
140
|
+
const styles = combobox()
|
|
141
|
+
return (
|
|
142
|
+
<Combobox.ItemGroup
|
|
143
|
+
{...props}
|
|
144
|
+
className={cx(styles.itemGroup, props.className)}
|
|
145
|
+
/>
|
|
146
|
+
)
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* The label for a group of items in the combobox component.
|
|
151
|
+
*/
|
|
152
|
+
export function ComboboxItemGroupLabel(props: ComboboxItemGroupLabelProps) {
|
|
153
|
+
const styles = combobox()
|
|
154
|
+
return (
|
|
155
|
+
<Combobox.ItemGroupLabel
|
|
156
|
+
{...props}
|
|
157
|
+
className={cx(styles.itemGroupLabel, props.className)}
|
|
158
|
+
/>
|
|
159
|
+
)
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* An individual item in the combobox component.
|
|
164
|
+
*/
|
|
165
|
+
export function ComboboxItem(props: ComboboxItemProps) {
|
|
166
|
+
const styles = combobox()
|
|
167
|
+
return (
|
|
168
|
+
<Combobox.Item {...props} className={cx(styles.item, props.className)} />
|
|
169
|
+
)
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* The text that labels a single item of the combobox.
|
|
174
|
+
*/
|
|
175
|
+
export function ComboboxItemText(props: ComboboxItemTextProps) {
|
|
176
|
+
const styles = combobox()
|
|
177
|
+
return (
|
|
178
|
+
<Combobox.ItemText
|
|
179
|
+
{...props}
|
|
180
|
+
className={cx(styles.itemText, props.className)}
|
|
181
|
+
/>
|
|
182
|
+
)
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* The indicator that appears when the item has been selected.
|
|
187
|
+
*/
|
|
188
|
+
export function ComboboxItemIndicator(props: ComboboxItemIndicatorProps) {
|
|
189
|
+
const styles = combobox()
|
|
190
|
+
return (
|
|
191
|
+
<Combobox.ItemIndicator
|
|
192
|
+
{...props}
|
|
193
|
+
className={cx(styles.itemIndicator, props.className)}
|
|
194
|
+
/>
|
|
195
|
+
)
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* The icon that appears at the start of the combobox input.
|
|
200
|
+
*/
|
|
201
|
+
export function ComboboxStartIcon(props: PropsWithChildren) {
|
|
202
|
+
const styles = combobox()
|
|
203
|
+
return <ark.span {...props} className={styles.startIcon} />
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
// We are only doing this to make the API consistent
|
|
207
|
+
export const ComboItemText = ComboboxItemText
|
|
208
|
+
|
|
209
|
+
export type ComboboxInputValueChangeDetails = Combobox.InputValueChangeDetails
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
'use client'
|
|
2
|
+
|
|
3
|
+
import { useCallback, useMemo, useState } from 'react'
|
|
4
|
+
import type { ComboboxInputValueChangeDetails } from '@ark-ui/react/combobox'
|
|
5
|
+
import type { SelectCollectionItem } from '../select/select'
|
|
6
|
+
import { createSelectCollection } from '../select/primitives'
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* This module contains a custom hook that provides a stateful collection for
|
|
10
|
+
* the Combobox component.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
export interface StatefulCollectionReturn {
|
|
14
|
+
/**
|
|
15
|
+
* The collection of items.
|
|
16
|
+
*/
|
|
17
|
+
collection: ReturnType<typeof createSelectCollection>
|
|
18
|
+
/**
|
|
19
|
+
* The filter value split into an array of characters.
|
|
20
|
+
*/
|
|
21
|
+
filterChars: string[]
|
|
22
|
+
/**
|
|
23
|
+
* The function to handle input changes.
|
|
24
|
+
*/
|
|
25
|
+
handleInputChange: (details: ComboboxInputValueChangeDetails) => void
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* This hook provides a stateful collection for the Combobox component.
|
|
30
|
+
* It returns a collection of items and a function to handle input changes.
|
|
31
|
+
* @param initialItems - The initial collection of items.
|
|
32
|
+
* @return An object containing the collection and a function to handle input changes.
|
|
33
|
+
*/
|
|
34
|
+
export function useStatefulCollection(
|
|
35
|
+
initialItems: SelectCollectionItem[] = [],
|
|
36
|
+
): StatefulCollectionReturn {
|
|
37
|
+
const [items, setItems] = useState(initialItems)
|
|
38
|
+
const [filterValue, setFilterValue] = useState<string[]>([])
|
|
39
|
+
|
|
40
|
+
const collection = useMemo(() => createSelectCollection(items), [items])
|
|
41
|
+
|
|
42
|
+
const handleInputChange = useCallback(
|
|
43
|
+
(details: ComboboxInputValueChangeDetails) => {
|
|
44
|
+
if (details.inputValue === '') {
|
|
45
|
+
return setItems(initialItems)
|
|
46
|
+
}
|
|
47
|
+
setItems((prev) =>
|
|
48
|
+
prev.filter((item) =>
|
|
49
|
+
item.value.includes(details.inputValue.toLowerCase()),
|
|
50
|
+
),
|
|
51
|
+
)
|
|
52
|
+
setFilterValue(details.inputValue.split(''))
|
|
53
|
+
},
|
|
54
|
+
[initialItems],
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
return useMemo(
|
|
58
|
+
() => ({
|
|
59
|
+
collection,
|
|
60
|
+
filterChars: filterValue,
|
|
61
|
+
handleInputChange,
|
|
62
|
+
}),
|
|
63
|
+
[collection, filterValue, handleInputChange],
|
|
64
|
+
)
|
|
65
|
+
}
|
|
@@ -79,6 +79,7 @@ export type SelectProps = SelectRootProps<SelectCollectionItem> &
|
|
|
79
79
|
*/
|
|
80
80
|
export function Select(props: SelectProps) {
|
|
81
81
|
const { collection, placeholder, ...rootProps } = props
|
|
82
|
+
|
|
82
83
|
const { icons } = useCerberusContext()
|
|
83
84
|
const { selectArrow: SelectArrow, invalid: InvalidIcon } = icons
|
|
84
85
|
|
package/src/index.ts
CHANGED
|
@@ -29,6 +29,7 @@ export * from './components/Avatar'
|
|
|
29
29
|
export * from './components/button/index'
|
|
30
30
|
export * from './components/checkbox/index'
|
|
31
31
|
export * from './components/CircularProgress'
|
|
32
|
+
export * from './components/combobox/index'
|
|
32
33
|
export * from './components/cta-dialog/index'
|
|
33
34
|
export * from './components/DatePicker.client'
|
|
34
35
|
export * from './components/DatePicker.server'
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/select/select.tsx"],"sourcesContent":["'use client'\n\nimport type { SelectItemProps, SelectRootProps } from '@ark-ui/react/select'\nimport { type SelectVariantProps } from '@cerberus/styled-system/recipes'\nimport { HStack } from '@cerberus/styled-system/jsx'\nimport { useCerberusContext } from '../../context/cerberus'\nimport { Portal } from '../Portal'\nimport { Show } from '../Show'\nimport { SelectParts } from './parts'\n\n/**\n * This module contains the Select components.\n * @module 'react/select'\n */\n\nexport interface SelectCollectionItem {\n /**\n * What is displayed in the dropdown list.\n */\n label: string\n /**\n * The value of the selected item used in the form.\n */\n value: string\n /**\n * If the item is disabled.\n */\n disabled?: boolean\n}\n\nexport interface SelectCollection {\n /**\n * The items to be displayed in the dropdown list.\n */\n items: SelectCollectionItem[]\n}\n\nexport interface BaseSelectProps {\n /**\n * The placeholder text when no option is selected.\n */\n placeholder?: string\n}\n\nexport type SelectProps = SelectRootProps<SelectCollectionItem> &\n BaseSelectProps &\n SelectVariantProps\n\n/**\n * The Select component is a dropdown list that allows users to select an\n * option from a list.\n * @definition [Select docs](https://cerberus.digitalu.design/react/select)\n * @definition [ARK docs](https://ark-ui.com/react/docs/components/select)\n * @example\n * ```tsx\n * import { Select, Option, createListCollection } from '@cerberus-design/react'\n *\n * export function SelectBasicPreview() {\n * const collection = createListCollection({\n * items: [\n * { label: 'Hades', value: 'hades' },\n * { label: 'Persephone', value: 'persephone' },\n * { label: 'Zeus', value: 'zeus', disabled: true },\n * ]\n * })\n *\n * return (\n * <Select\n * collection={collection}\n * label=\"Select Relative\"\n * placeholder=\"Choose option\"\n * >\n * {collection.items.map((item) => (\n * <Option key={item.value} item={item} />\n * ))}\n * </Select>\n * )\n * }\n */\nexport function Select(props: SelectProps) {\n const { collection, placeholder, ...rootProps } = props\n const { icons } = useCerberusContext()\n const { selectArrow: SelectArrow, invalid: InvalidIcon } = icons\n\n return (\n <SelectParts.Root collection={collection} {...rootProps}>\n <SelectParts.Control>\n <SelectParts.Trigger>\n <SelectParts.ValueText placeholder={placeholder} />\n\n <HStack>\n <Show when={props.invalid}>\n <InvalidIcon data-part=\"invalid-icon\" />\n </Show>\n <SelectParts.Indicator>\n <SelectArrow />\n </SelectParts.Indicator>\n </HStack>\n </SelectParts.Trigger>\n </SelectParts.Control>\n\n <Portal>\n <SelectParts.Positioner>\n <SelectParts.Content size={rootProps.size}>\n {props.children}\n </SelectParts.Content>\n </SelectParts.Positioner>\n </Portal>\n\n <SelectParts.HiddenSelect />\n </SelectParts.Root>\n )\n}\n\nexport interface OptionProps extends SelectItemProps {\n /**\n * The CollectionListItem to be displayed in the dropdown list.\n */\n item: SelectCollectionItem\n}\n\nexport function Option(props: OptionProps) {\n const { item, ...itemProps } = props\n const { icons } = useCerberusContext()\n const { selectChecked: CheckedIcon } = icons\n\n return (\n <SelectParts.Item {...itemProps} item={item}>\n <SelectParts.ItemText>{item?.label}</SelectParts.ItemText>\n <SelectParts.ItemIndicator>\n <CheckedIcon />\n </SelectParts.ItemIndicator>\n </SelectParts.Item>\n )\n}\n"],"mappings":";;;;;;;;;;;;;;AAIA,SAAS,cAAc;AAoFb,cAEA,YAFA;AATH,SAAS,OAAO,OAAoB;AACzC,QAAM,EAAE,YAAY,aAAa,GAAG,UAAU,IAAI;AAClD,QAAM,EAAE,MAAM,IAAI,mBAAmB;AACrC,QAAM,EAAE,aAAa,aAAa,SAAS,YAAY,IAAI;AAE3D,SACE,qBAAC,YAAY,MAAZ,EAAiB,YAAyB,GAAG,WAC5C;AAAA,wBAAC,YAAY,SAAZ,EACC,+BAAC,YAAY,SAAZ,EACC;AAAA,0BAAC,YAAY,WAAZ,EAAsB,aAA0B;AAAA,MAEjD,qBAAC,UACC;AAAA,4BAAC,QAAK,MAAM,MAAM,SAChB,8BAAC,eAAY,aAAU,gBAAe,GACxC;AAAA,QACA,oBAAC,YAAY,WAAZ,EACC,8BAAC,eAAY,GACf;AAAA,SACF;AAAA,OACF,GACF;AAAA,IAEA,oBAAC,UACC,8BAAC,YAAY,YAAZ,EACC,8BAAC,YAAY,SAAZ,EAAoB,MAAM,UAAU,MAClC,gBAAM,UACT,GACF,GACF;AAAA,IAEA,oBAAC,YAAY,cAAZ,EAAyB;AAAA,KAC5B;AAEJ;AASO,SAAS,OAAO,OAAoB;AACzC,QAAM,EAAE,MAAM,GAAG,UAAU,IAAI;AAC/B,QAAM,EAAE,MAAM,IAAI,mBAAmB;AACrC,QAAM,EAAE,eAAe,YAAY,IAAI;AAEvC,SACE,qBAAC,YAAY,MAAZ,EAAkB,GAAG,WAAW,MAC/B;AAAA,wBAAC,YAAY,UAAZ,EAAsB,gBAAM,OAAM;AAAA,IACnC,oBAAC,YAAY,eAAZ,EACC,8BAAC,eAAY,GACf;AAAA,KACF;AAEJ;","names":[]}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|