@progressive-development/pd-calendar 1.0.2 → 1.0.3
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/package.json +2 -2
- package/dist/pd-calendar/pd-calendar.stories.d.ts +0 -83
- package/dist/pd-calendar/pd-calendar.stories.d.ts.map +0 -1
- package/dist/pd-datepicker/pd-date-picker.stories.d.ts +0 -81
- package/dist/pd-datepicker/pd-date-picker.stories.d.ts.map +0 -1
- package/dist/pd-slot-picker/pd-slot-picker.stories.d.ts +0 -67
- package/dist/pd-slot-picker/pd-slot-picker.stories.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progressive-development/pd-calendar",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Webcomponent for calendar",
|
|
5
5
|
"author": "PD Progressive Development",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"tslib": "^2.8.1",
|
|
35
35
|
"@progressive-development/pd-shared-styles": "0.3.2",
|
|
36
36
|
"@progressive-development/pd-icon": "1.0.2",
|
|
37
|
-
"@progressive-development/pd-forms": "1.0.
|
|
37
|
+
"@progressive-development/pd-forms": "1.0.3",
|
|
38
38
|
"@progressive-development/pd-utils": "1.0.0"
|
|
39
39
|
},
|
|
40
40
|
"customElements": "custom-elements.json",
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/web-components-vite';
|
|
2
|
-
import { CalendarData, AvailableCalendarViewTypes } from '../types.js';
|
|
3
|
-
/**
|
|
4
|
-
* Story arguments interface for pd-calendar component.
|
|
5
|
-
* Maps to the component's public API.
|
|
6
|
-
*/
|
|
7
|
-
interface PdCalendarArgs {
|
|
8
|
-
/** Reference date for initial calendar view */
|
|
9
|
-
refDate?: Date;
|
|
10
|
-
/** Whether weekends should be hidden */
|
|
11
|
-
hideWeekend: boolean;
|
|
12
|
-
/** Calendar data with info per date */
|
|
13
|
-
data: CalendarData;
|
|
14
|
-
/** Number of months allowed to navigate backwards (-1 = unlimited) */
|
|
15
|
-
prevMonthConstraint: number;
|
|
16
|
-
/** Number of months allowed to navigate forwards (-1 = unlimited) */
|
|
17
|
-
nextMonthConstraint: number;
|
|
18
|
-
/** Whether dates are selectable */
|
|
19
|
-
selectableDates: boolean;
|
|
20
|
-
/** Whether to show selection highlight */
|
|
21
|
-
showSelection: boolean;
|
|
22
|
-
/** Year selection popup values */
|
|
23
|
-
withYearPopup: string[];
|
|
24
|
-
/** CSS class for number positioning */
|
|
25
|
-
numberClass: string;
|
|
26
|
-
/** Enable mouse wheel navigation between months */
|
|
27
|
-
withWheelNavigation: boolean;
|
|
28
|
-
/** Enable touch swipe navigation between months */
|
|
29
|
-
withTouchNavigation: boolean;
|
|
30
|
-
/** Available view types for view toggle */
|
|
31
|
-
availableViewTypes?: AvailableCalendarViewTypes;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* ## pd-calendar
|
|
35
|
-
*
|
|
36
|
-
* A full-featured calendar component supporting month, list, and week views with
|
|
37
|
-
* date info, selection, navigation, and event management.
|
|
38
|
-
*
|
|
39
|
-
* ### Features
|
|
40
|
-
* - **Month View**: Displays a full month with navigation controls and date info
|
|
41
|
-
* - **List View**: Shows only dates with data in a compact list format
|
|
42
|
-
* - **Week View (timeGrid)**: Displays a weekly time grid with overlapping events
|
|
43
|
-
* - **Event Calendar**: Month view with event bars and info panel (`cellType="events"`)
|
|
44
|
-
* - **Special Days**: Highlight specific dates with category-based styling
|
|
45
|
-
* - **Navigation**: Arrow buttons, keyboard, mouse wheel, touch swipe, year popup
|
|
46
|
-
* - **Navigation Constraints**: Limit forward/backward month navigation
|
|
47
|
-
* - **Weekend Hiding**: Option to hide Saturday and Sunday
|
|
48
|
-
* - **Custom Date Range**: List view can display a specific date range
|
|
49
|
-
*
|
|
50
|
-
* ### Accessibility
|
|
51
|
-
* - `role="grid"` on the calendar grid with `aria-label` for current month/year
|
|
52
|
-
* - Arrow keys navigate between dates, Enter/Space selects
|
|
53
|
-
* - Home/End for first/last day of month
|
|
54
|
-
* - `aria-selected` on selected dates
|
|
55
|
-
* - `tabindex` management for keyboard focus (0 when selectable, -1 when read-only)
|
|
56
|
-
* - Focus-visible styling for keyboard users
|
|
57
|
-
*/
|
|
58
|
-
declare const meta: Meta<PdCalendarArgs>;
|
|
59
|
-
export default meta;
|
|
60
|
-
type Story = StoryObj<PdCalendarArgs>;
|
|
61
|
-
/** Default calendar without data or constraints. Interactive via Controls panel. */
|
|
62
|
-
export declare const Default: Story;
|
|
63
|
-
/** Calendar with price info per date and forward/backward navigation constraints. */
|
|
64
|
-
export declare const WithInfoAndConstraints: Story;
|
|
65
|
-
/** Calendar with category-highlighted special days (green background). */
|
|
66
|
-
export declare const WithSpecialDays: Story;
|
|
67
|
-
/** Compact selectable calendar with year popup, centered numbers, and reduced width. */
|
|
68
|
-
export declare const Selectable: Story;
|
|
69
|
-
/** List view with title, description, time, and category colors. Toggle between month and list view. */
|
|
70
|
-
export declare const ListView: Story;
|
|
71
|
-
/** All time display variants in list view: no time, start only, start+end, and full day. */
|
|
72
|
-
export declare const ListViewTimeVariants: Story;
|
|
73
|
-
/** List view with a custom date range spanning multiple months. Navigation is disabled in range mode. */
|
|
74
|
-
export declare const ListViewCustomRange: Story;
|
|
75
|
-
/** Week view (timeGrid) with timed events, full-day events, and overlapping events. */
|
|
76
|
-
export declare const WeekView: Story;
|
|
77
|
-
/** Week view with custom time window (8:00-18:00) and visible days configuration. */
|
|
78
|
-
export declare const WeekViewBusinessHours: Story;
|
|
79
|
-
/** Month view with event bars per day using `cellType="events"`. Click an event bar to open the info panel. */
|
|
80
|
-
export declare const EventCalendar: Story;
|
|
81
|
-
/** CSS Custom Properties -- Branded and Redesigned calendar variants. */
|
|
82
|
-
export declare const CustomStyling: Story;
|
|
83
|
-
//# sourceMappingURL=pd-calendar.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pd-calendar.stories.d.ts","sourceRoot":"","sources":["../../src/pd-calendar/pd-calendar.stories.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAKrE,OAAO,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EACV,YAAY,EACZ,0BAA0B,EAI3B,MAAM,aAAa,CAAC;AAMrB;;;GAGG;AACH,UAAU,cAAc;IACtB,+CAA+C;IAC/C,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,wCAAwC;IACxC,WAAW,EAAE,OAAO,CAAC;IACrB,uCAAuC;IACvC,IAAI,EAAE,YAAY,CAAC;IACnB,sEAAsE;IACtE,mBAAmB,EAAE,MAAM,CAAC;IAC5B,qEAAqE;IACrE,mBAAmB,EAAE,MAAM,CAAC;IAC5B,mCAAmC;IACnC,eAAe,EAAE,OAAO,CAAC;IACzB,0CAA0C;IAC1C,aAAa,EAAE,OAAO,CAAC;IACvB,kCAAkC;IAClC,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,uCAAuC;IACvC,WAAW,EAAE,MAAM,CAAC;IACpB,mDAAmD;IACnD,mBAAmB,EAAE,OAAO,CAAC;IAC7B,mDAAmD;IACnD,mBAAmB,EAAE,OAAO,CAAC;IAC7B,2CAA2C;IAC3C,kBAAkB,CAAC,EAAE,0BAA0B,CAAC;CACjD;AA+ED;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,cAAc,CAoG9B,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,cAAc,CAAC,CAAC;AAMtC,oFAAoF;AACpF,eAAO,MAAM,OAAO,EAAE,KAgBrB,CAAC;AAMF,qFAAqF;AACrF,eAAO,MAAM,sBAAsB,EAAE,KAiBpC,CAAC;AAMF,0EAA0E;AAC1E,eAAO,MAAM,eAAe,EAAE,KAgB7B,CAAC;AAMF,wFAAwF;AACxF,eAAO,MAAM,UAAU,EAAE,KAwCxB,CAAC;AAMF,wGAAwG;AACxG,eAAO,MAAM,QAAQ,EAAE,KA4FtB,CAAC;AAMF,4FAA4F;AAC5F,eAAO,MAAM,oBAAoB,EAAE,KAiElC,CAAC;AAMF,yGAAyG;AACzG,eAAO,MAAM,mBAAmB,EAAE,KAkEjC,CAAC;AAMF,uFAAuF;AACvF,eAAO,MAAM,QAAQ,EAAE,KAuHtB,CAAC;AAMF,qFAAqF;AACrF,eAAO,MAAM,qBAAqB,EAAE,KA2EnC,CAAC;AAMF,+GAA+G;AAC/G,eAAO,MAAM,aAAa,EAAE,KAmI3B,CAAC;AAMF,yEAAyE;AACzE,eAAO,MAAM,aAAa,EAAE,KAyF3B,CAAC"}
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/web-components-vite';
|
|
2
|
-
/**
|
|
3
|
-
* Story arguments interface for pd-datepicker component.
|
|
4
|
-
* Maps to the component's public API.
|
|
5
|
-
*/
|
|
6
|
-
interface PdDatepickerArgs {
|
|
7
|
-
/** Field label */
|
|
8
|
-
label: string;
|
|
9
|
-
/** Placeholder text */
|
|
10
|
-
placeholder: string;
|
|
11
|
-
/** Whether the field is required */
|
|
12
|
-
required: boolean;
|
|
13
|
-
/** Whether the field is disabled */
|
|
14
|
-
disabled: boolean;
|
|
15
|
-
/** Whether to show time selection */
|
|
16
|
-
withTime: boolean;
|
|
17
|
-
/** Whether to enable date range selection */
|
|
18
|
-
dateRange: boolean;
|
|
19
|
-
/** Initial date value */
|
|
20
|
-
initialDate?: Date;
|
|
21
|
-
/** Date format string */
|
|
22
|
-
dateFormat: string;
|
|
23
|
-
/** Minimum allowed date (YYYY-MM-DD) */
|
|
24
|
-
min?: string;
|
|
25
|
-
/** Maximum allowed date (YYYY-MM-DD) */
|
|
26
|
-
max?: string;
|
|
27
|
-
/** Year selection popup values */
|
|
28
|
-
withYearPopup: string[];
|
|
29
|
-
/** Whether to hide today button */
|
|
30
|
-
hideToday: boolean;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* ## pd-datepicker
|
|
34
|
-
*
|
|
35
|
-
* A datepicker component for selecting dates with optional time and range support.
|
|
36
|
-
* Opens a calendar popup on click and integrates seamlessly with pd-form-container
|
|
37
|
-
* for validation.
|
|
38
|
-
*
|
|
39
|
-
* ### Features
|
|
40
|
-
* - **Date Selection**: Click to open calendar popup for date selection
|
|
41
|
-
* - **Time Selection**: Optional time picker with predefined time slots
|
|
42
|
-
* - **Date Range**: Optional range selection for start and end dates
|
|
43
|
-
* - **Year Popup**: Quick year navigation via dropdown
|
|
44
|
-
* - **Min/Max Constraints**: Limit selectable date range with `min` and `max` properties
|
|
45
|
-
* - **Disabled Days**: Disable specific dates via `disabledDays` array
|
|
46
|
-
* - **Modal Mode**: Centered modal display for mobile devices (auto or forced)
|
|
47
|
-
* - **Form Integration**: Works with pd-form-container for validation
|
|
48
|
-
* - **Popup Positioning**: Automatically opens above or below based on viewport space
|
|
49
|
-
*
|
|
50
|
-
* ### Accessibility
|
|
51
|
-
* - `aria-haspopup="dialog"` on the input field
|
|
52
|
-
* - `aria-expanded` reflects popup open/close state
|
|
53
|
-
* - `aria-controls` links input to popup
|
|
54
|
-
* - `aria-modal="true"` on the calendar popup
|
|
55
|
-
* - Keyboard: Enter/Space toggles popup, ArrowDown opens, Escape closes
|
|
56
|
-
* - Focus returns to input when popup closes
|
|
57
|
-
*/
|
|
58
|
-
declare const meta: Meta<PdDatepickerArgs>;
|
|
59
|
-
export default meta;
|
|
60
|
-
type Story = StoryObj<PdDatepickerArgs>;
|
|
61
|
-
/** Default datepicker. Interactive via Controls panel. */
|
|
62
|
-
export declare const Default: Story;
|
|
63
|
-
/** All datepicker configurations at a glance. */
|
|
64
|
-
export declare const AllVariants: Story;
|
|
65
|
-
/** Datepicker with time selection -- date + time picker combination. */
|
|
66
|
-
export declare const WithTime: Story;
|
|
67
|
-
/** Datepicker for selecting a start and end date. */
|
|
68
|
-
export declare const DateRange: Story;
|
|
69
|
-
/** Different date format locales side by side. */
|
|
70
|
-
export declare const Locales: Story;
|
|
71
|
-
/** Date constraints with min/max properties, disabled days, and linked datepickers. */
|
|
72
|
-
export declare const MinMaxDate: Story;
|
|
73
|
-
/** Modal mode displays the calendar centered on screen with a backdrop overlay. */
|
|
74
|
-
export declare const ModalMode: Story;
|
|
75
|
-
/** Datepicker within a pd-form-container with validation. */
|
|
76
|
-
export declare const InForm: Story;
|
|
77
|
-
/** Tests automatic popup positioning based on available viewport space. */
|
|
78
|
-
export declare const PopupPosition: Story;
|
|
79
|
-
/** CSS Custom Properties -- Branded and Redesigned datepicker variants. */
|
|
80
|
-
export declare const CustomStyling: Story;
|
|
81
|
-
//# sourceMappingURL=pd-date-picker.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pd-date-picker.stories.d.ts","sourceRoot":"","sources":["../../src/pd-datepicker/pd-date-picker.stories.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAKrE,OAAO,qDAAqD,CAAC;AAC7D,OAAO,+CAA+C,CAAC;AACvD,OAAO,6CAA6C,CAAC;AAErD,OAAO,oBAAoB,CAAC;AAM5B;;;GAGG;AACH,UAAU,gBAAgB;IACxB,kBAAkB;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,uBAAuB;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,oCAAoC;IACpC,QAAQ,EAAE,OAAO,CAAC;IAClB,oCAAoC;IACpC,QAAQ,EAAE,OAAO,CAAC;IAClB,qCAAqC;IACrC,QAAQ,EAAE,OAAO,CAAC;IAClB,6CAA6C;IAC7C,SAAS,EAAE,OAAO,CAAC;IACnB,yBAAyB;IACzB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,yBAAyB;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,wCAAwC;IACxC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,wCAAwC;IACxC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,kCAAkC;IAClC,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,mCAAmC;IACnC,SAAS,EAAE,OAAO,CAAC;CACpB;AAYD;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAoFhC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,gBAAgB,CAAC,CAAC;AAMxC,0DAA0D;AAC1D,eAAO,MAAM,OAAO,EAAE,KAcrB,CAAC;AAMF,iDAAiD;AACjD,eAAO,MAAM,WAAW,EAAE,KAuEzB,CAAC;AAMF,wEAAwE;AACxE,eAAO,MAAM,QAAQ,EAAE,KA+BtB,CAAC;AAMF,qDAAqD;AACrD,eAAO,MAAM,SAAS,EAAE,KA4BvB,CAAC;AAMF,kDAAkD;AAClD,eAAO,MAAM,OAAO,EAAE,KA4CrB,CAAC;AAMF,uFAAuF;AACvF,eAAO,MAAM,UAAU,EAAE,KAqGxB,CAAC;AAMF,mFAAmF;AACnF,eAAO,MAAM,SAAS,EAAE,KA8DvB,CAAC;AAMF,6DAA6D;AAC7D,eAAO,MAAM,MAAM,EAAE,KA0EpB,CAAC;AAMF,2EAA2E;AAC3E,eAAO,MAAM,aAAa,EAAE,KAoC3B,CAAC;AAMF,2EAA2E;AAC3E,eAAO,MAAM,aAAa,EAAE,KA4G3B,CAAC"}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/web-components-vite';
|
|
2
|
-
import { CalendarData, CalendarConfig } from '../types.js';
|
|
3
|
-
/**
|
|
4
|
-
* Story arguments interface for pd-slot-picker component.
|
|
5
|
-
* Maps to the component's public API.
|
|
6
|
-
*/
|
|
7
|
-
interface PdSlotPickerArgs {
|
|
8
|
-
/** Calendar data with slots per date */
|
|
9
|
-
data: CalendarData;
|
|
10
|
-
/** Calendar configuration including category definitions */
|
|
11
|
-
config?: CalendarConfig;
|
|
12
|
-
/** Whether weekends should be hidden */
|
|
13
|
-
hideWeekend: boolean;
|
|
14
|
-
/** Number of months allowed to navigate backwards (-1 = unlimited) */
|
|
15
|
-
prevMonthConstraint: number;
|
|
16
|
-
/** Number of months allowed to navigate forwards (-1 = unlimited) */
|
|
17
|
-
nextMonthConstraint: number;
|
|
18
|
-
/** Year selection popup values */
|
|
19
|
-
withYearPopup: string[];
|
|
20
|
-
/** Enable mouse wheel navigation between months */
|
|
21
|
-
withWheelNavigation: boolean;
|
|
22
|
-
/** Enable touch swipe navigation between months */
|
|
23
|
-
withTouchNavigation: boolean;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* ## pd-slot-picker
|
|
27
|
-
*
|
|
28
|
-
* Appointment slot picker component (Calendly-style) that combines a monthly
|
|
29
|
-
* calendar view with a time slot list for booking appointments.
|
|
30
|
-
*
|
|
31
|
-
* ### Features
|
|
32
|
-
* - **Calendar + Slots**: Side-by-side layout (responsive flex-wrap)
|
|
33
|
-
* - **Day Selection**: Click a highlighted day to see its available time slots
|
|
34
|
-
* - **Slot Selection**: Click a time slot to select it (fires `select-slot` event)
|
|
35
|
-
* - **Categories**: Color-coded slot types via CalendarConfig
|
|
36
|
-
* - **Disabled Slots**: Mark already-booked slots as disabled
|
|
37
|
-
* - **Capacity Tracking**: Show remaining spots per slot, auto-disable when full
|
|
38
|
-
* - **Responsive**: Wraps to vertical layout on smaller screens
|
|
39
|
-
* - **Navigation Constraints**: Limit forward/backward month navigation
|
|
40
|
-
* - **Weekend Hiding**: Option to hide Saturday and Sunday
|
|
41
|
-
*
|
|
42
|
-
* ### Accessibility
|
|
43
|
-
* - Slot list uses `role="list"` with `role="listitem"` on each slot cell
|
|
44
|
-
* - Slot cells are focusable via `tabindex="0"`
|
|
45
|
-
* - Calendar keyboard navigation inherited from pd-calendar
|
|
46
|
-
* - Disabled slots are visually distinct and non-interactive
|
|
47
|
-
*/
|
|
48
|
-
declare const meta: Meta<PdSlotPickerArgs>;
|
|
49
|
-
export default meta;
|
|
50
|
-
type Story = StoryObj<PdSlotPickerArgs>;
|
|
51
|
-
/** Default slot picker with appointment data. Click a highlighted day to see available time slots. */
|
|
52
|
-
export declare const Default: Story;
|
|
53
|
-
/** Slot picker without category colors -- simple uniform slot styling. */
|
|
54
|
-
export declare const WithoutCategories: Story;
|
|
55
|
-
/** Responsive layout behavior: side-by-side on wide screens, stacked on narrow screens. */
|
|
56
|
-
export declare const ResponsiveLayout: Story;
|
|
57
|
-
/** Mix of available and disabled (already booked) slots. */
|
|
58
|
-
export declare const WithDisabledSlots: Story;
|
|
59
|
-
/** Slots with capacity tracking -- shows remaining spots and auto-disables when full. */
|
|
60
|
-
export declare const WithCapacity: Story;
|
|
61
|
-
/** Many 15-minute slots to demonstrate the scrollable slot list behavior. */
|
|
62
|
-
export declare const ManySlots: Story;
|
|
63
|
-
/** Slot picker with hidden weekends and year popup. */
|
|
64
|
-
export declare const HiddenWeekends: Story;
|
|
65
|
-
/** CSS Custom Properties -- Branded and Redesigned slot picker variants. */
|
|
66
|
-
export declare const CustomStyling: Story;
|
|
67
|
-
//# sourceMappingURL=pd-slot-picker.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pd-slot-picker.stories.d.ts","sourceRoot":"","sources":["../../src/pd-slot-picker/pd-slot-picker.stories.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAKrE,OAAO,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAMhE;;;GAGG;AACH,UAAU,gBAAgB;IACxB,wCAAwC;IACxC,IAAI,EAAE,YAAY,CAAC;IACnB,4DAA4D;IAC5D,MAAM,CAAC,EAAE,cAAc,CAAC;IACxB,wCAAwC;IACxC,WAAW,EAAE,OAAO,CAAC;IACrB,sEAAsE;IACtE,mBAAmB,EAAE,MAAM,CAAC;IAC5B,qEAAqE;IACrE,mBAAmB,EAAE,MAAM,CAAC;IAC5B,kCAAkC;IAClC,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,mDAAmD;IACnD,mBAAmB,EAAE,OAAO,CAAC;IAC7B,mDAAmD;IACnD,mBAAmB,EAAE,OAAO,CAAC;CAC9B;AA4LD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,QAAA,MAAM,IAAI,EAAE,IAAI,CAAC,gBAAgB,CA+EhC,CAAC;AAEF,eAAe,IAAI,CAAC;AACpB,KAAK,KAAK,GAAG,QAAQ,CAAC,gBAAgB,CAAC,CAAC;AAMxC,sGAAsG;AACtG,eAAO,MAAM,OAAO,EAAE,KAmBrB,CAAC;AAMF,0EAA0E;AAC1E,eAAO,MAAM,iBAAiB,EAAE,KAc/B,CAAC;AAMF,2FAA2F;AAC3F,eAAO,MAAM,gBAAgB,EAAE,KA+D9B,CAAC;AAMF,4DAA4D;AAC5D,eAAO,MAAM,iBAAiB,EAAE,KAuE/B,CAAC;AAMF,yFAAyF;AACzF,eAAO,MAAM,YAAY,EAAE,KAoJ1B,CAAC;AAMF,6EAA6E;AAC7E,eAAO,MAAM,SAAS,EAAE,KA8CvB,CAAC;AAMF,uDAAuD;AACvD,eAAO,MAAM,cAAc,EAAE,KAmB5B,CAAC;AAMF,4EAA4E;AAC5E,eAAO,MAAM,aAAa,EAAE,KAyG3B,CAAC"}
|