@intellihr/blueberry 1.0.0-beta.113 → 1.0.0-beta.114
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/.claude-dist/skills/bb-mango-app-shell/SKILL.md +15 -2
- package/.claude-dist/skills/bb-mango-date-field/SKILL.md +5 -0
- package/.claude-dist/skills/bb-mango-icon-button/SKILL.md +3 -3
- package/.claude-dist/skills/bb-mango-navigation/SKILL.md +5 -5
- package/.claude-dist/skills/bb-mango-table/SKILL.md +4 -4
- package/.claude-dist/skills/bb-mango-utility-classes/SKILL.md +18 -0
- package/dist/MangoAppShell/MangoAppShell.d.ts +3 -1
- package/dist/MangoAppShell/MangoAppShell.d.ts.map +1 -1
- package/dist/MangoNavigation/MangoNavigation.d.ts +1 -1
- package/dist/MangoNavigation/MangoNavigation.d.ts.map +1 -1
- package/dist/index.cjs.js +69 -34
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +947 -883
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
|
@@ -15,13 +15,14 @@ Source: `src/MangoAppShell/MangoAppShell.tsx`
|
|
|
15
15
|
|
|
16
16
|
| Prop | Type | Default | Description |
|
|
17
17
|
|---|---|---|---|
|
|
18
|
+
| `fillViewport` | `boolean` | `false` | Makes the shell fill `100dvh`. Without it, height inherits from the parent |
|
|
18
19
|
| `logo` | `string` | — | Path to full logo image |
|
|
19
20
|
| `logoShort` | `string` | — | Path to collapsed/short logo image |
|
|
20
21
|
| `logoAlt` | `string` | — | Alt text for logo |
|
|
21
22
|
| `logoHref` | `string` | — | URL to navigate when logo is clicked |
|
|
22
23
|
| `sidebarOpen` | `boolean` | `true` | Whether sidebar is visible |
|
|
23
24
|
| `sidebarPinned` | `boolean` | `true` | Whether sidebar is pinned (part of page flow vs overlay) |
|
|
24
|
-
| `hoverDelay` | `number` | `
|
|
25
|
+
| `hoverDelay` | `number` | `400` | ms before hover opens unpinned sidebar |
|
|
25
26
|
| `closeDelay` | `number` | `500` | ms after mouse leaves before closing unpinned sidebar |
|
|
26
27
|
| `sidebar` | `ReactNode` | — | Navigation sidebar content (typically `MangoNavigation`) |
|
|
27
28
|
| `logoSlot` | `ReactNode` | — | Custom logo content (overrides `logo` prop) |
|
|
@@ -61,8 +62,9 @@ import type { TMangoAppShell, TMangoAppShellRef } from '@intellihr/blueberry'
|
|
|
61
62
|
import { MangoAppShell, MangoNavigation, MangoWorkspaceBadge } from '@intellihr/blueberry'
|
|
62
63
|
import type { TMangoAppShellRef } from '@intellihr/blueberry'
|
|
63
64
|
|
|
64
|
-
// Basic usage
|
|
65
|
+
// Basic usage — fills the viewport, content scrolls inside
|
|
65
66
|
<MangoAppShell
|
|
67
|
+
fillViewport
|
|
66
68
|
logo="/logo.svg"
|
|
67
69
|
logoShort="/logo-short.svg"
|
|
68
70
|
logoAlt="My App"
|
|
@@ -74,6 +76,14 @@ import type { TMangoAppShellRef } from '@intellihr/blueberry'
|
|
|
74
76
|
<MainContent />
|
|
75
77
|
</MangoAppShell>
|
|
76
78
|
|
|
79
|
+
// Filling a table to the bottom of the page — use mgo-fill-page on the leaf element
|
|
80
|
+
<MangoAppShell fillViewport sidebar={<MangoNavigation items={navItems} />}>
|
|
81
|
+
<div className="mgo-stack">
|
|
82
|
+
<MangoHeading level={1}>Employees</MangoHeading>
|
|
83
|
+
<MangoTable className="mgo-fill-page" data={data} columns={columns} />
|
|
84
|
+
</div>
|
|
85
|
+
</MangoAppShell>
|
|
86
|
+
|
|
77
87
|
// With workspace badge image and imperative ref control
|
|
78
88
|
const appShellRef = React.useRef<TMangoAppShellRef>(null)
|
|
79
89
|
|
|
@@ -97,3 +107,6 @@ const appShellRef = React.useRef<TMangoAppShellRef>(null)
|
|
|
97
107
|
- `sidebar`, `topLeft`, `topCenter`, `topRight`, `logoSlot` are React nodes cloned with their slot attribute internally — do not add `slot` manually
|
|
98
108
|
- `sidebarOpen=true` and `sidebarPinned=true` are defaults — sidebar starts open and pinned
|
|
99
109
|
- Use `MangoNavigation` as the `sidebar` value for the standard navigation pattern
|
|
110
|
+
- Use `fillViewport` to make the shell fill `100dvh` — the typical setup for a full-page app
|
|
111
|
+
- To fill a table or other leaf element to the bottom of the content area, add `className="mgo-fill-page"` to that element (see `/bb-mango-utility-classes`)
|
|
112
|
+
- **Mobile (below 768px)**: the shell automatically switches to overlay mode — sidebar starts closed, the menu button toggles open/close instead of pin/unpin, hover-to-peek is disabled, and a backdrop appears when the sidebar is open. The pinned state is saved and restored when returning to desktop.
|
|
@@ -28,6 +28,10 @@ Source: `src/MangoDateField/MangoDateField.tsx`
|
|
|
28
28
|
| `dateFormat` | `'ymd' \| 'dmy' \| 'mdy' \| 'verbose'` | `'dmy'` | Display format |
|
|
29
29
|
| `min` | `string` | — | Minimum date (ISO string) |
|
|
30
30
|
| `max` | `string` | — | Maximum date (ISO string) |
|
|
31
|
+
| `copyable` | `boolean` | — | Show a copy button |
|
|
32
|
+
| `onCopy` | `(event: MgoCopyEvent) => void` | — | Fired when the copy button is clicked |
|
|
33
|
+
| `leadingIcon` | `string` | — | Icon name shown at the start of the input |
|
|
34
|
+
| `trailingIcon` | `string` | — | Icon name shown at the end of the input (before clear/copy) |
|
|
31
35
|
| `clearable` | `boolean` | `true` | Show clear button |
|
|
32
36
|
| `disabled` | `boolean` | — | Disabled state |
|
|
33
37
|
| `placeholder` | `string` | — | Input placeholder |
|
|
@@ -108,5 +112,6 @@ const [date, setDate] = React.useState('')
|
|
|
108
112
|
- `value` is always an ISO 8601 date string — the component handles display formatting internally
|
|
109
113
|
- `onChange` fires `MgoInputEvent` — use `event.detail.isoValue` for the ISO value, not `event.detail.value`
|
|
110
114
|
- `userTimezone` is automatically injected from `BlueberryContext` — do not pass it manually
|
|
115
|
+
- `hoist` is automatically enabled on all date fields to escape overflow containers — this is not a prop and cannot be overridden
|
|
111
116
|
- Default `clearable=true` — set `clearable={false}` to hide the clear button
|
|
112
117
|
- Default `dateFormat='dmy'` — Australian/UK format (day/month/year)
|
|
@@ -35,14 +35,14 @@ import { MangoIconButton, MangoBadge } from '@intellihr/blueberry'
|
|
|
35
35
|
|
|
36
36
|
// Basic icon button
|
|
37
37
|
<MangoIconButton
|
|
38
|
-
icon="
|
|
38
|
+
icon="edit"
|
|
39
39
|
label="Edit"
|
|
40
40
|
onClick={handleEdit}
|
|
41
41
|
/>
|
|
42
42
|
|
|
43
43
|
// Destructive action
|
|
44
44
|
<MangoIconButton
|
|
45
|
-
icon="
|
|
45
|
+
icon="delete"
|
|
46
46
|
label="Delete"
|
|
47
47
|
variant="destructive"
|
|
48
48
|
onClick={handleDelete}
|
|
@@ -64,7 +64,7 @@ import { MangoIconButton, MangoBadge } from '@intellihr/blueberry'
|
|
|
64
64
|
|
|
65
65
|
// Small size
|
|
66
66
|
<MangoIconButton
|
|
67
|
-
icon="
|
|
67
|
+
icon="close"
|
|
68
68
|
label="Close"
|
|
69
69
|
size="small"
|
|
70
70
|
variant="tertiary"
|
|
@@ -14,7 +14,7 @@ Source: `src/MangoNavigation/MangoNavigation.tsx`
|
|
|
14
14
|
| Prop | Type | Default | Description |
|
|
15
15
|
|---|---|---|---|
|
|
16
16
|
| `items` | `INavigationItem[]` | **required** | Navigation items array |
|
|
17
|
-
| `tone` | `'blue' \| 'green' \| 'red' \| 'yellow' \| 'purple' \| 'grey'` | `'grey'` | Colour tone for nav items |
|
|
17
|
+
| `tone` | `'blue' \| 'green' \| 'red' \| 'yellow' \| 'purple' \| 'grey' \| 'teal' \| 'pink'` | `'grey'` | Colour tone for nav items |
|
|
18
18
|
| `productSwitcher` | `IProductSwitcherConfig` | — | App/product switcher in the nav header |
|
|
19
19
|
| `footer` | `IFooterConfig` | — | Footer links at the bottom of the nav |
|
|
20
20
|
| `ariaLabel` | `string` | — | Accessible label for the nav region |
|
|
@@ -98,7 +98,7 @@ productSwitcher={{
|
|
|
98
98
|
```typescript
|
|
99
99
|
footer={{
|
|
100
100
|
items: [
|
|
101
|
-
{ type: 'link', label: 'Help', href: '/help' },
|
|
101
|
+
{ type: 'link', label: 'Help', href: '/help', openNewTab: true },
|
|
102
102
|
{ type: 'button', label: 'Sign out', onClick: handleSignOut },
|
|
103
103
|
{ type: 'label', label: 'v1.0.0' },
|
|
104
104
|
]
|
|
@@ -112,8 +112,8 @@ import { MangoNavigation, MangoBadge } from '@intellihr/blueberry'
|
|
|
112
112
|
|
|
113
113
|
<MangoNavigation
|
|
114
114
|
items={[
|
|
115
|
-
{ type: 'link', label: 'Dashboard', href: '/dashboard', icon: '
|
|
116
|
-
{ type: 'link', label: 'Employees', href: '/employees', icon: '
|
|
115
|
+
{ type: 'link', label: 'Dashboard', href: '/dashboard', icon: 'home', active: currentPath === '/dashboard' },
|
|
116
|
+
{ type: 'link', label: 'Employees', href: '/employees', icon: 'person' },
|
|
117
117
|
{
|
|
118
118
|
type: 'group',
|
|
119
119
|
label: 'Reports',
|
|
@@ -123,7 +123,7 @@ import { MangoNavigation, MangoBadge } from '@intellihr/blueberry'
|
|
|
123
123
|
]
|
|
124
124
|
},
|
|
125
125
|
{ type: 'label', label: 'Admin' },
|
|
126
|
-
{ type: 'link', label: 'Settings', href: '/settings', icon: '
|
|
126
|
+
{ type: 'link', label: 'Settings', href: '/settings', icon: 'settings' },
|
|
127
127
|
]}
|
|
128
128
|
footer={{
|
|
129
129
|
items: [
|
|
@@ -17,8 +17,8 @@ Source: `src/MangoTable/MangoTable.tsx`
|
|
|
17
17
|
|---|---|---|---|
|
|
18
18
|
| `data` | `TData[]` | **required** | Table data — **must be memoized with `useMemo`** |
|
|
19
19
|
| `columns` | `ColumnDef<TData>[]` | **required** | TanStack Table column definitions — **must be memoized** |
|
|
20
|
-
| `sorting` | `'off' \| '
|
|
21
|
-
| `pagination` | `'off' \| '
|
|
20
|
+
| `sorting` | `'off' \| 'auto' \| 'manual'` | `'off'` | Sorting mode |
|
|
21
|
+
| `pagination` | `'off' \| 'auto' \| 'manual'` | `'off'` | Pagination mode |
|
|
22
22
|
| `onSortChange` | `(event: MgoTableSortEvent) => void` | — | Fired when sort changes (manual mode) |
|
|
23
23
|
| `onPaginationChange` | `(event: MgoTablePaginationEvent) => void` | — | Fired when page changes (manual mode) |
|
|
24
24
|
| `onRowClick` | `(event: MgoTableRowClickEvent) => void` | — | Row click handler |
|
|
@@ -71,8 +71,8 @@ const data = React.useMemo(() => employees, [employees])
|
|
|
71
71
|
<MangoTable
|
|
72
72
|
data={data}
|
|
73
73
|
columns={columns}
|
|
74
|
-
sorting="
|
|
75
|
-
pagination="
|
|
74
|
+
sorting="auto"
|
|
75
|
+
pagination="auto"
|
|
76
76
|
/>
|
|
77
77
|
|
|
78
78
|
// With empty state
|
|
@@ -92,6 +92,9 @@ Each colour class also sets the correct icon colour on nested `<MangoIcon>` elem
|
|
|
92
92
|
<a href="/somewhere" className="mgo-interactive mgo-background-brand mgo-padding-s">
|
|
93
93
|
Go somewhere
|
|
94
94
|
</a>
|
|
95
|
+
|
|
96
|
+
{/* ❌ Wrong — div is not interactive, not accessible */}
|
|
97
|
+
<div className="mgo-interactive">Not accessible</div>
|
|
95
98
|
```
|
|
96
99
|
|
|
97
100
|
| Class | Effect |
|
|
@@ -110,6 +113,21 @@ Each colour class also sets the correct icon colour on nested `<MangoIcon>` elem
|
|
|
110
113
|
|
|
111
114
|
### Layout
|
|
112
115
|
|
|
116
|
+
#### `mgo-fill-page`
|
|
117
|
+
|
|
118
|
+
Makes an element fill the remaining height of its flex-column parent. Use inside `MangoAppShell`'s children — the direct child fills automatically, so only apply this to the target leaf element (e.g. a table).
|
|
119
|
+
|
|
120
|
+
```tsx
|
|
121
|
+
<MangoAppShell fillViewport sidebar={<MangoNavigation items={navItems} />}>
|
|
122
|
+
<div className="mgo-stack">
|
|
123
|
+
<MangoHeading level={1}>Employees</MangoHeading>
|
|
124
|
+
<MangoTable className="mgo-fill-page" data={data} columns={columns} />
|
|
125
|
+
</div>
|
|
126
|
+
</MangoAppShell>
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
113
131
|
#### `mgo-stack`
|
|
114
132
|
|
|
115
133
|
Column flex with `gap: var(--mgo-space-30)`.
|
|
@@ -12,7 +12,7 @@ interface IMangoAppShell {
|
|
|
12
12
|
sidebarOpen?: boolean;
|
|
13
13
|
/** Whether the sidebar is pinned (part of page flow vs overlay). Default: true */
|
|
14
14
|
sidebarPinned?: boolean;
|
|
15
|
-
/** Milliseconds before hover opens sidebar (default:
|
|
15
|
+
/** Milliseconds before hover opens sidebar (default: 400) */
|
|
16
16
|
hoverDelay?: number;
|
|
17
17
|
/** Milliseconds after mouse leaves to close unpinned sidebar (default: 500) */
|
|
18
18
|
closeDelay?: number;
|
|
@@ -36,6 +36,8 @@ interface IMangoAppShell {
|
|
|
36
36
|
onSidebarPin?: () => void;
|
|
37
37
|
/** Called when sidebar is unpinned */
|
|
38
38
|
onSidebarUnpin?: () => void;
|
|
39
|
+
/** Makes the shell fill 100dvh. Without it, height inherits from the parent */
|
|
40
|
+
fillViewport?: boolean;
|
|
39
41
|
/** Test identifier */
|
|
40
42
|
testId?: string;
|
|
41
43
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MangoAppShell.d.ts","sourceRoot":"","sources":["../../src/MangoAppShell/MangoAppShell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+C,MAAM,OAAO,CAAA;AAInE,UAAU,cAAc;IAEtB,8BAA8B;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,yCAAyC;IACzC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,wCAAwC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAA;IAGjB,oDAAoD;IACpD,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,kFAAkF;IAClF,aAAa,CAAC,EAAE,OAAO,CAAA;IAGvB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,+EAA+E;IAC/E,UAAU,CAAC,EAAE,MAAM,CAAA;IAGnB,6DAA6D;IAC7D,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,oDAAoD;IACpD,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,2EAA2E;IAC3E,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,kCAAkC;IAClC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC3B,2EAA2E;IAC3E,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,wBAAwB;IACxB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAG1B,gCAAgC;IAChC,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;IAC1B,iCAAiC;IACjC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAA;IAC3B,oCAAoC;IACpC,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IACzB,sCAAsC;IACtC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAA;IAG3B,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,iBAAiB;IAChC,WAAW,EAAE,MAAM,IAAI,CAAA;IACvB,YAAY,EAAE,MAAM,IAAI,CAAA;IACxB,aAAa,EAAE,MAAM,IAAI,CAAA;IACzB,UAAU,EAAE,MAAM,IAAI,CAAA;IACtB,YAAY,EAAE,MAAM,IAAI,CAAA;CACzB;AAED,QAAA,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"MangoAppShell.d.ts","sourceRoot":"","sources":["../../src/MangoAppShell/MangoAppShell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA+C,MAAM,OAAO,CAAA;AAInE,UAAU,cAAc;IAEtB,8BAA8B;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,yCAAyC;IACzC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,wCAAwC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAA;IAGjB,oDAAoD;IACpD,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,kFAAkF;IAClF,aAAa,CAAC,EAAE,OAAO,CAAA;IAGvB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,+EAA+E;IAC/E,UAAU,CAAC,EAAE,MAAM,CAAA;IAGnB,6DAA6D;IAC7D,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,oDAAoD;IACpD,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,2EAA2E;IAC3E,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB,kCAAkC;IAClC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC3B,2EAA2E;IAC3E,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,wBAAwB;IACxB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAG1B,gCAAgC;IAChC,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;IAC1B,iCAAiC;IACjC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAA;IAC3B,oCAAoC;IACpC,YAAY,CAAC,EAAE,MAAM,IAAI,CAAA;IACzB,sCAAsC;IACtC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAA;IAG3B,+EAA+E;IAC/E,YAAY,CAAC,EAAE,OAAO,CAAA;IAGtB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,iBAAiB;IAChC,WAAW,EAAE,MAAM,IAAI,CAAA;IACvB,YAAY,EAAE,MAAM,IAAI,CAAA;IACxB,aAAa,EAAE,MAAM,IAAI,CAAA;IACzB,UAAU,EAAE,MAAM,IAAI,CAAA;IACtB,YAAY,EAAE,MAAM,IAAI,CAAA;CACzB;AAED,QAAA,MAAM,aAAa,0FAuFlB,CAAA;AAID,eAAe,aAAa,CAAA;AAC5B,YAAY,EAAE,cAAc,IAAI,cAAc,EAAE,iBAAiB,IAAI,iBAAiB,EAAE,CAAA"}
|
|
@@ -91,7 +91,7 @@ interface IMangoNavigation {
|
|
|
91
91
|
/** Array of navigation items */
|
|
92
92
|
items: INavigationItem[];
|
|
93
93
|
/** Color tone for navigation items. Default: 'grey' */
|
|
94
|
-
tone?: 'blue' | 'green' | 'red' | 'yellow' | 'purple' | 'grey';
|
|
94
|
+
tone?: 'blue' | 'green' | 'red' | 'yellow' | 'purple' | 'grey' | 'teal' | 'pink';
|
|
95
95
|
/** Optional product switcher configuration */
|
|
96
96
|
productSwitcher?: IProductSwitcherConfig;
|
|
97
97
|
/** Optional footer configuration */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MangoNavigation.d.ts","sourceRoot":"","sources":["../../src/MangoNavigation/MangoNavigation.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"MangoNavigation.d.ts","sourceRoot":"","sources":["../../src/MangoNavigation/MangoNavigation.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAczB,QAAA,MAAM,OAAO;;;;;;;;;;CAUZ,CAAA;AAED,KAAK,QAAQ,GAAG,MAAM,OAAO,OAAO,CAAA;AAGpC,UAAU,IAAI;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,QAAQ,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,UAAU,sBAAsB;IAC9B,cAAc,EAAE;QACd,KAAK,EAAE,MAAM,CAAA;QACb,IAAI,EAAE,QAAQ,CAAA;KACf,CAAA;IACD,IAAI,CAAC,EAAE,IAAI,EAAE,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,UAAU,eAAe;IACvB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,UAAU,eAAgB,SAAQ,eAAe;IAC/C,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB;AAGD,UAAU,iBAAkB,SAAQ,eAAe;IACjD,IAAI,EAAE,QAAQ,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,IAAI,CAAA;CACpB;AAGD,UAAU,gBAAiB,SAAQ,eAAe;IAChD,IAAI,EAAE,OAAO,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd;AAGD,KAAK,WAAW,GAAG,eAAe,GAAG,iBAAiB,GAAG,gBAAgB,CAAA;AAGzE,UAAU,aAAa;IACrB,KAAK,CAAC,EAAE,WAAW,EAAE,CAAA;IACrB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,UAAU,mBAAmB;IAC3B,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAGD,UAAU,mBAAoB,SAAQ,mBAAmB;IACvD,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,CAAC,EAAE,QAAQ,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAA;IAChD,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,GAAG,CAAC,OAAO,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB;AAGD,UAAU,qBAAsB,SAAQ,mBAAmB;IACzD,IAAI,EAAE,QAAQ,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,GAAG,CAAC,OAAO,CAAA;IACnB,OAAO,EAAE,MAAM,IAAI,CAAA;CACpB;AAGD,UAAU,oBAAqB,SAAQ,mBAAmB;IACxD,IAAI,EAAE,OAAO,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd;AAGD,UAAU,oBAAqB,SAAQ,mBAAmB;IACxD,IAAI,EAAE,OAAO,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,KAAK,EAAE,CAAC,mBAAmB,GAAG,qBAAqB,GAAG,oBAAoB,CAAC,EAAE,CAAA;CAC9E;AAGD,KAAK,eAAe,GAAG,mBAAmB,GAAG,qBAAqB,GAAG,oBAAoB,GAAG,oBAAoB,CAAA;AAGhH,UAAU,gBAAgB;IACxB,gCAAgC;IAChC,KAAK,EAAE,eAAe,EAAE,CAAA;IACxB,uDAAuD;IACvD,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,MAAM,GAAG,MAAM,CAAA;IAChF,8CAA8C;IAC9C,eAAe,CAAC,EAAE,sBAAsB,CAAA;IACxC,oCAAoC;IACpC,MAAM,CAAC,EAAE,aAAa,CAAA;IACtB,oDAAoD;IACpD,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,sBAAsB;IACtB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,+BAA+B;IAC/B,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAA;IACxE,0EAA0E;IAC1E,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CA4K/C,CAAA;AAED,eAAe,eAAe,CAAA;AAC9B,YAAY,EAAE,gBAAgB,IAAI,gBAAgB,EAAE,CAAA"}
|