@epam/ai-dial-scheduled-tasks 1.1.0-dev.135 → 1.1.0-dev.138
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/components/ScheduledTaskCard/ScheduledTaskCard.d.ts +3 -4
- package/components/ScheduledTaskCard/ScheduledTaskCard.d.ts.map +1 -1
- package/components/ScheduledTaskCardGrid/ScheduledTaskCardGrid.d.ts.map +1 -1
- package/components/ScheduledTaskDetailView/ScheduledTaskDetailView.d.ts +4 -4
- package/components/ScheduledTaskDetailView/ScheduledTaskDetailView.d.ts.map +1 -1
- package/components/ScheduledTaskDetailsSummary/ScheduledTaskDetailsSummary.d.ts +9 -0
- package/components/ScheduledTaskDetailsSummary/ScheduledTaskDetailsSummary.d.ts.map +1 -0
- package/components/ScheduledTaskRunHistoryList/ScheduledTaskRunHistoryList.d.ts +10 -0
- package/components/ScheduledTaskRunHistoryList/ScheduledTaskRunHistoryList.d.ts.map +1 -0
- package/components/ScheduledTasks/ScheduledTasks.d.ts.map +1 -1
- package/index.css +1 -1
- package/index.d.ts +4 -0
- package/index.d.ts.map +1 -1
- package/index.js +428 -420
- package/models/scheduled-task-card-grid-props.d.ts +0 -14
- package/models/scheduled-task-card-grid-props.d.ts.map +1 -1
- package/models/scheduled-task-card-props.d.ts +0 -14
- package/models/scheduled-task-card-props.d.ts.map +1 -1
- package/models/scheduled-task-detail-view-props.d.ts +3 -1
- package/models/scheduled-task-detail-view-props.d.ts.map +1 -1
- package/models/scheduled-task-details-summary-props.d.ts +29 -0
- package/models/scheduled-task-details-summary-props.d.ts.map +1 -0
- package/models/scheduled-task-run-history-list-props.d.ts +78 -0
- package/models/scheduled-task-run-history-list-props.d.ts.map +1 -0
- package/models/scheduled-tasks-props.d.ts +0 -6
- package/models/scheduled-tasks-props.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -2,10 +2,9 @@ import { FC } from 'react';
|
|
|
2
2
|
import { ScheduledTaskCardProps } from '../../models/scheduled-task-card-props';
|
|
3
3
|
/**
|
|
4
4
|
* Single scheduled-task card: title, optional "new" badge and description,
|
|
5
|
-
* schedule pill, location breadcrumb
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* the Catalog browse card uses. The card has a fixed height; a long
|
|
5
|
+
* schedule pill, and location breadcrumb. Renders on the shared `CardShell`
|
|
6
|
+
* from `@epam/ai-dial-ui-kit` (radius, padding, shadow, hover lift), the same
|
|
7
|
+
* shell the Catalog browse card uses. The card has a fixed height; a long
|
|
9
8
|
* description is clamped with an ellipsis, and the schedule pill (plus the
|
|
10
9
|
* location breadcrumb, when present) is pinned to the bottom regardless of
|
|
11
10
|
* description length.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScheduledTaskCard.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskCard/ScheduledTaskCard.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ScheduledTaskCard.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskCard/ScheduledTaskCard.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,EAAE,EAAiB,MAAM,OAAO,CAAC;AAC/C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAGrF;;;;;;;;GAQG;AACH,eAAO,MAAM,iBAAiB,EAAE,EAAE,CAAC,sBAAsB,CA2HxD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScheduledTaskCardGrid.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskCardGrid/ScheduledTaskCardGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AAI9F,kHAAkH;AAClH,eAAO,MAAM,qBAAqB,EAAE,EAAE,CAAC,0BAA0B,
|
|
1
|
+
{"version":3,"file":"ScheduledTaskCardGrid.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskCardGrid/ScheduledTaskCardGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,6CAA6C,CAAC;AAI9F,kHAAkH;AAClH,eAAO,MAAM,qBAAqB,EAAE,EAAE,CAAC,0BAA0B,CA2BhE,CAAC"}
|
|
@@ -2,10 +2,10 @@ import { FC } from 'react';
|
|
|
2
2
|
import { ScheduledTaskDetailViewProps } from '../../models/scheduled-task-detail-view-props';
|
|
3
3
|
/**
|
|
4
4
|
* Presentational Scheduled Task detail page: a back-navigable header, a
|
|
5
|
-
* Details/Configuration body, and a paginated
|
|
6
|
-
*
|
|
7
|
-
* host app; this component holds no state of its own
|
|
8
|
-
* routing, i18n, or network calls.
|
|
5
|
+
* Details/Configuration body, and a paginated History panel ("Show more"
|
|
6
|
+
* button, not scroll-triggered). Field values, runs, and markdown rendering
|
|
7
|
+
* are all supplied by the host app; this component holds no state of its own
|
|
8
|
+
* and performs no routing, i18n, or network calls.
|
|
9
9
|
*/
|
|
10
10
|
export declare const ScheduledTaskDetailView: FC<ScheduledTaskDetailViewProps>;
|
|
11
11
|
//# sourceMappingURL=ScheduledTaskDetailView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScheduledTaskDetailView.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskDetailView/ScheduledTaskDetailView.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ScheduledTaskDetailView.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskDetailView/ScheduledTaskDetailView.tsx"],"names":[],"mappings":"AAaA,OAAO,EAAE,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,+CAA+C,CAAC;AAIlG;;;;;;GAMG;AACH,eAAO,MAAM,uBAAuB,EAAE,EAAE,CAAC,4BAA4B,CAiQpE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { ScheduledTaskDetailsSummaryProps } from '../../models/scheduled-task-details-summary-props';
|
|
3
|
+
/**
|
|
4
|
+
* Concise Model + Instructions summary for a scheduled task, shared between
|
|
5
|
+
* the full detail page and the conversation sources panel. Holds no state,
|
|
6
|
+
* fetching, or routing — all values and rendering are supplied by the host.
|
|
7
|
+
*/
|
|
8
|
+
export declare const ScheduledTaskDetailsSummary: FC<ScheduledTaskDetailsSummaryProps>;
|
|
9
|
+
//# sourceMappingURL=ScheduledTaskDetailsSummary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScheduledTaskDetailsSummary.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskDetailsSummary/ScheduledTaskDetailsSummary.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,mDAAmD,CAAC;AAE1G;;;;GAIG;AACH,eAAO,MAAM,2BAA2B,EAAE,EAAE,CAC1C,gCAAgC,CAsCjC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { ScheduledTaskRunHistoryListProps } from '../../models/scheduled-task-run-history-list-props';
|
|
3
|
+
/**
|
|
4
|
+
* Presentational, paginated-agnostic list of scheduled-task run rows: status
|
|
5
|
+
* icon, timestamp, optional current-run highlight, skeleton/empty/error
|
|
6
|
+
* states. Holds no fetching or pagination-trigger logic — callers supply a
|
|
7
|
+
* `footer` slot for whichever "load more" affordance they need.
|
|
8
|
+
*/
|
|
9
|
+
export declare const ScheduledTaskRunHistoryList: FC<ScheduledTaskRunHistoryListProps>;
|
|
10
|
+
//# sourceMappingURL=ScheduledTaskRunHistoryList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScheduledTaskRunHistoryList.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTaskRunHistoryList/ScheduledTaskRunHistoryList.tsx"],"names":[],"mappings":"AAaA,OAAO,EAAE,KAAK,EAAE,EAAsB,MAAM,OAAO,CAAC;AACpD,OAAO,KAAK,EAAE,gCAAgC,EAAE,MAAM,oDAAoD,CAAC;AA0C3G;;;;;GAKG;AACH,eAAO,MAAM,2BAA2B,EAAE,EAAE,CAC1C,gCAAgC,CAgJjC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScheduledTasks.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTasks/ScheduledTasks.tsx"],"names":[],"mappings":"AAgBA,OAAO,EAAE,EAAE,EAA8B,MAAM,OAAO,CAAC;AAEvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AA8CzE;;;;;GAKG;AACH,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"ScheduledTasks.d.ts","sourceRoot":"","sources":["../../../src/components/ScheduledTasks/ScheduledTasks.tsx"],"names":[],"mappings":"AAgBA,OAAO,EAAE,EAAE,EAA8B,MAAM,OAAO,CAAC;AAEvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AA8CzE;;;;;GAKG;AACH,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAuOlD,CAAC"}
|
package/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
._title_1xv9i_1{color:var(--stc-title-text,var(--text-primary,#161b2d))}._description_1xv9i_5{color:var(--stc-desc-text,var(--text-control-disable-beta,#848e9c))}._schedulePill_1xv9i_9{background:var(--stc-pill-bg,var(--bg-layer-sunken,#eef1f7));border-color:var(--stc-pill-border,var(--stroke-tertiary,#e0e6f0))}._scheduleLabel_1xv9i_14{color:var(--stc-schedule-label-text,var(--text-control-disable-beta,#848e9c))}._locationLabel_1xv9i_18{color:var(--stc-location-label-text,var(--text-secondary,#57647a))}._locationLeaf_1xv9i_22{color:var(--stc-location-leaf-text,var(--text-secondary,#57647a))}._newBadge_1xv9i_26{background:var(--stc-new-badge-bg,var(--bg-control-accent,#124ace));color:var(--stc-new-badge-text,var(--text-control-permanent,#fcfcfc))}._locationDivider_1xv9i_31{border-top:1px solid var(--stc-location-divider-border,var(--stroke-tertiary,#e0e6f0))}._card_1a43j_1{--stcs-skeleton-bg:var(--bg-layer-4,#d1dbea)}._countBadge_4bnxj_1{background:var(--sts-badge-bg,var(--bg-layer-raised,#fcfcfc));color:var(--sts-badge-text,var(--text-secondary,#57647a))}._container_r5sk9_1{background:var(--st-bg,var(--bg-layer-base,#f5f7fa))}._subtitle_r5sk9_5{color:var(--st-subtitle-text,var(--text-secondary,#57647a))}._sortButton_r5sk9_9{color:var(--st-sort-text,var(--text-accent,#1d4ed8))}._detailsColumn_1mg3v_1{border-inline-end-color:var(--stcf-details-border,var(--stroke-tertiary,#e0e6f0))}._sectionSubtitle_1mg3v_5{color:var(--stcf-subtitle-text,var(--text-secondary,#57647a))}._instructionsError_1mg3v_9{color:var(--stcf-error-text,var(--text-error,#ae2f2f))}._container_1ci42_1{background:var(--stdv-bg,var(--bg-layer-base,#f5f7fa))}._header_1ci42_5{border-bottom-color:var(--stdv-header-border,var(--stroke-tertiary,#e0e6f0))}._detailsColumn_1ci42_9{border-inline-end-color:var(--stdv-details-border,var(--stroke-tertiary,#e0e6f0))}._subtitleText_1ci42_13{color:var(--stdv-subtitle-text,var(--text-secondary,#57647a))}._successIcon_1ci42_17{color:var(--stdv-success-icon,var(--text-success,#007274))}._errorIcon_1ci42_21{color:var(--stdv-error-icon,var(--text-error,#ae2f2f))}._missedIcon_1ci42_25{color:var(--stdv-missed-icon,var(--text-secondary,#57647a))}._historyCard_1ci42_29{background:var(--stdv-history-bg,var(--bg-layer-raised,#fcfcfc))}
|
|
1
|
+
._title_1xv9i_1{color:var(--stc-title-text,var(--text-primary,#161b2d))}._description_1xv9i_5{color:var(--stc-desc-text,var(--text-control-disable-beta,#848e9c))}._schedulePill_1xv9i_9{background:var(--stc-pill-bg,var(--bg-layer-sunken,#eef1f7));border-color:var(--stc-pill-border,var(--stroke-tertiary,#e0e6f0))}._scheduleLabel_1xv9i_14{color:var(--stc-schedule-label-text,var(--text-control-disable-beta,#848e9c))}._locationLabel_1xv9i_18{color:var(--stc-location-label-text,var(--text-secondary,#57647a))}._locationLeaf_1xv9i_22{color:var(--stc-location-leaf-text,var(--text-secondary,#57647a))}._newBadge_1xv9i_26{background:var(--stc-new-badge-bg,var(--bg-control-accent,#124ace));color:var(--stc-new-badge-text,var(--text-control-permanent,#fcfcfc))}._locationDivider_1xv9i_31{border-top:1px solid var(--stc-location-divider-border,var(--stroke-tertiary,#e0e6f0))}._card_1a43j_1{--stcs-skeleton-bg:var(--bg-layer-4,#d1dbea)}._countBadge_4bnxj_1{background:var(--sts-badge-bg,var(--bg-layer-raised,#fcfcfc));color:var(--sts-badge-text,var(--text-secondary,#57647a))}._container_r5sk9_1{background:var(--st-bg,var(--bg-layer-base,#f5f7fa))}._subtitle_r5sk9_5{color:var(--st-subtitle-text,var(--text-secondary,#57647a))}._sortButton_r5sk9_9{color:var(--st-sort-text,var(--text-accent,#1d4ed8))}._detailsColumn_1mg3v_1{border-inline-end-color:var(--stcf-details-border,var(--stroke-tertiary,#e0e6f0))}._sectionSubtitle_1mg3v_5{color:var(--stcf-subtitle-text,var(--text-secondary,#57647a))}._instructionsError_1mg3v_9{color:var(--stcf-error-text,var(--text-error,#ae2f2f))}._subtitleText_8bk8k_1{color:var(--strhl-subtitle-text,var(--text-secondary,#57647a))}._successIcon_8bk8k_5{color:var(--strhl-success-icon,var(--text-success,#007274))}._errorIcon_8bk8k_9{color:var(--strhl-error-icon,var(--text-error,#ae2f2f))}._missedIcon_8bk8k_13{color:var(--strhl-missed-icon,var(--text-secondary,#57647a))}._currentRun_8bk8k_17{background:var(--strhl-current-run-bg,var(--bg-accent-primary-alpha,#7da4ff2e))}._container_1ci42_1{background:var(--stdv-bg,var(--bg-layer-base,#f5f7fa))}._header_1ci42_5{border-bottom-color:var(--stdv-header-border,var(--stroke-tertiary,#e0e6f0))}._detailsColumn_1ci42_9{border-inline-end-color:var(--stdv-details-border,var(--stroke-tertiary,#e0e6f0))}._subtitleText_1ci42_13{color:var(--stdv-subtitle-text,var(--text-secondary,#57647a))}._successIcon_1ci42_17{color:var(--stdv-success-icon,var(--text-success,#007274))}._errorIcon_1ci42_21{color:var(--stdv-error-icon,var(--text-error,#ae2f2f))}._missedIcon_1ci42_25{color:var(--stdv-missed-icon,var(--text-secondary,#57647a))}._historyCard_1ci42_29{background:var(--stdv-history-bg,var(--bg-layer-raised,#fcfcfc))}
|
|
2
2
|
/*$vite$:1*/
|
package/index.d.ts
CHANGED
|
@@ -19,4 +19,8 @@ export { ScheduledTaskDetailView } from './components/ScheduledTaskDetailView/Sc
|
|
|
19
19
|
export type { ScheduledTaskDetailViewProps, ScheduledTaskDetailViewLabels, ScheduledTaskDetailViewStyles, ScheduledTaskDetailViewColors, ScheduledTaskDetailViewTypography, } from './models/scheduled-task-detail-view-props';
|
|
20
20
|
export type { ScheduledTaskRunItem } from './models/scheduled-task-run-item';
|
|
21
21
|
export { ScheduledTaskRunStatus } from './types/scheduled-task-run-status';
|
|
22
|
+
export { ScheduledTaskRunHistoryList } from './components/ScheduledTaskRunHistoryList/ScheduledTaskRunHistoryList';
|
|
23
|
+
export type { ScheduledTaskRunHistoryListProps, ScheduledTaskRunHistoryListLabels, ScheduledTaskRunHistoryListStyles, ScheduledTaskRunHistoryListColors, ScheduledTaskRunHistoryListTypography, } from './models/scheduled-task-run-history-list-props';
|
|
24
|
+
export { ScheduledTaskDetailsSummary } from './components/ScheduledTaskDetailsSummary/ScheduledTaskDetailsSummary';
|
|
25
|
+
export type { ScheduledTaskDetailsSummaryProps, ScheduledTaskDetailsSummaryStyles, ScheduledTaskDetailsSummaryTypography, } from './models/scheduled-task-details-summary-props';
|
|
22
26
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,YAAY,EACV,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,GACzB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,kDAAkD,CAAC;AACrF,YAAY,EACV,sBAAsB,EACtB,uBAAuB,EACvB,uBAAuB,EACvB,uBAAuB,EACvB,2BAA2B,GAC5B,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,wDAAwD,CAAC;AAC9F,YAAY,EACV,yBAAyB,EACzB,0BAA0B,EAC1B,0BAA0B,EAC1B,8BAA8B,GAC/B,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,qBAAqB,EAAE,MAAM,0DAA0D,CAAC;AACjG,YAAY,EACV,0BAA0B,EAC1B,2BAA2B,GAC5B,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAAE,yBAAyB,EAAE,MAAM,kEAAkE,CAAC;AAC7G,YAAY,EACV,8BAA8B,EAC9B,+BAA+B,EAC/B,+BAA+B,GAChC,MAAM,6CAA6C,CAAC;AACrD,YAAY,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8DAA8D,CAAC;AACvG,YAAY,EACV,4BAA4B,EAC5B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,iCAAiC,EACjC,kCAAkC,EAClC,yBAAyB,GAC1B,MAAM,2CAA2C,CAAC;AACnD,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8DAA8D,CAAC;AACvG,YAAY,EACV,4BAA4B,EAC5B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,iCAAiC,GAClC,MAAM,2CAA2C,CAAC;AACnD,YAAY,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAC7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,YAAY,EACV,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,oBAAoB,EACpB,wBAAwB,GACzB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,iBAAiB,EAAE,MAAM,kDAAkD,CAAC;AACrF,YAAY,EACV,sBAAsB,EACtB,uBAAuB,EACvB,uBAAuB,EACvB,uBAAuB,EACvB,2BAA2B,GAC5B,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,wDAAwD,CAAC;AAC9F,YAAY,EACV,yBAAyB,EACzB,0BAA0B,EAC1B,0BAA0B,EAC1B,8BAA8B,GAC/B,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAAE,qBAAqB,EAAE,MAAM,0DAA0D,CAAC;AACjG,YAAY,EACV,0BAA0B,EAC1B,2BAA2B,GAC5B,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAAE,yBAAyB,EAAE,MAAM,kEAAkE,CAAC;AAC7G,YAAY,EACV,8BAA8B,EAC9B,+BAA+B,EAC/B,+BAA+B,GAChC,MAAM,6CAA6C,CAAC;AACrD,YAAY,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8DAA8D,CAAC;AACvG,YAAY,EACV,4BAA4B,EAC5B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,iCAAiC,EACjC,kCAAkC,EAClC,yBAAyB,GAC1B,MAAM,2CAA2C,CAAC;AACnD,OAAO,EAAE,sBAAsB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,EAAE,uBAAuB,EAAE,MAAM,8DAA8D,CAAC;AACvG,YAAY,EACV,4BAA4B,EAC5B,6BAA6B,EAC7B,6BAA6B,EAC7B,6BAA6B,EAC7B,iCAAiC,GAClC,MAAM,2CAA2C,CAAC;AACnD,YAAY,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAC7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAC3E,OAAO,EAAE,2BAA2B,EAAE,MAAM,sEAAsE,CAAC;AACnH,YAAY,EACV,gCAAgC,EAChC,iCAAiC,EACjC,iCAAiC,EACjC,iCAAiC,EACjC,qCAAqC,GACtC,MAAM,gDAAgD,CAAC;AACxD,OAAO,EAAE,2BAA2B,EAAE,MAAM,sEAAsE,CAAC;AACnH,YAAY,EACV,gCAAgC,EAChC,iCAAiC,EACjC,qCAAqC,GACtC,MAAM,+CAA+C,CAAC"}
|