@cadriciel/ui 0.4.1 → 0.5.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/fesm2022/cadriciel-ui.mjs +144 -11
- package/fesm2022/cadriciel-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cadriciel-ui.d.ts +86 -2
package/package.json
CHANGED
package/types/cadriciel-ui.d.ts
CHANGED
|
@@ -2342,6 +2342,16 @@ interface CadNavDrawerItem {
|
|
|
2342
2342
|
disabled?: boolean;
|
|
2343
2343
|
/** Intertitre de regroupement : rendu comme un libellé, non cliquable. */
|
|
2344
2344
|
section?: boolean;
|
|
2345
|
+
/**
|
|
2346
|
+
* Intertitre REPLIABLE : il devient un bouton qui masque les entrées qui le suivent,
|
|
2347
|
+
* jusqu'au prochain intertitre. Sans effet hors `section: true`, et sans effet en `rail`
|
|
2348
|
+
* où un intertitre n'est déjà plus qu'un filet.
|
|
2349
|
+
*
|
|
2350
|
+
* DONNEZ-LUI UN `value`. C'est lui qui sert de clé dans `collapsed` ; à défaut on retombe
|
|
2351
|
+
* sur le libellé, et renommer le libellé perd alors l'état replié sans rien dire. Une clé
|
|
2352
|
+
* se choisit immuable, jamais renommable.
|
|
2353
|
+
*/
|
|
2354
|
+
collapsible?: boolean;
|
|
2345
2355
|
command?: (ev: {
|
|
2346
2356
|
item: CadNavDrawerItem;
|
|
2347
2357
|
originalEvent: Event;
|
|
@@ -2349,6 +2359,23 @@ interface CadNavDrawerItem {
|
|
|
2349
2359
|
ariaLabel?: string;
|
|
2350
2360
|
}
|
|
2351
2361
|
type CadNavDrawerMode = 'auto' | 'permanent' | 'temporary' | 'rail';
|
|
2362
|
+
/**
|
|
2363
|
+
* Une ligne prête à rendre : l'entrée d'origine plus ce que seul le composant peut savoir —
|
|
2364
|
+
* la clé de son intertitre, s'il est replié, et combien d'entrées il porte.
|
|
2365
|
+
*
|
|
2366
|
+
* Le calcul vit ici et pas dans l'hôte parce qu'il dépend du mode : en `rail` un intertitre
|
|
2367
|
+
* n'est plus qu'un filet, donc rien ne doit y être masqué — sinon des entrées disparaîtraient
|
|
2368
|
+
* sans qu'aucun bouton ne permette de les rouvrir.
|
|
2369
|
+
*/
|
|
2370
|
+
interface CadNavDrawerRow {
|
|
2371
|
+
item: CadNavDrawerItem;
|
|
2372
|
+
/** Intertitres uniquement : la clé utilisée dans `collapsed`. */
|
|
2373
|
+
key: string;
|
|
2374
|
+
collapsible: boolean;
|
|
2375
|
+
collapsed: boolean;
|
|
2376
|
+
/** Intertitres uniquement : nombre d'entrées portées, tous états confondus. */
|
|
2377
|
+
count: number;
|
|
2378
|
+
}
|
|
2352
2379
|
/**
|
|
2353
2380
|
* <cad-nav-drawer [items]="items" [(open)]="open" [(value)]="page" mode="auto" (itemClick)/>
|
|
2354
2381
|
*
|
|
@@ -2372,6 +2399,15 @@ declare class CadNavDrawerComponent {
|
|
|
2372
2399
|
readonly open: _angular_core.ModelSignal<boolean>;
|
|
2373
2400
|
/** Entrée courante, comparée à `item.value`. */
|
|
2374
2401
|
readonly value: _angular_core.ModelSignal<string | null>;
|
|
2402
|
+
/**
|
|
2403
|
+
* Clés des intertitres repliés (`item.value`, à défaut `item.label`).
|
|
2404
|
+
*
|
|
2405
|
+
* Un TABLEAU et non un `Set` : c'est ce qui se lie en deux sens, se compare, et surtout se
|
|
2406
|
+
* sérialise tel quel — l'hôte qui veut persister l'état le pose dans `localStorage` sans
|
|
2407
|
+
* conversion. Le composant ne persiste rien lui-même : il ne saurait pas sous quelle clé,
|
|
2408
|
+
* ni s'il a le droit.
|
|
2409
|
+
*/
|
|
2410
|
+
readonly collapsed: _angular_core.ModelSignal<string[]>;
|
|
2375
2411
|
readonly mode: _angular_core.InputSignal<CadNavDrawerMode>;
|
|
2376
2412
|
/** Seuil de bascule permanent → tiroir, en mode `auto`. */
|
|
2377
2413
|
readonly breakpoint: _angular_core.InputSignal<CadBreakpoint>;
|
|
@@ -2398,6 +2434,15 @@ declare class CadNavDrawerComponent {
|
|
|
2398
2434
|
readonly effective: _angular_core.Signal<"permanent" | "temporary" | "rail">;
|
|
2399
2435
|
readonly temporary: _angular_core.Signal<boolean>;
|
|
2400
2436
|
readonly rail: _angular_core.Signal<boolean>;
|
|
2437
|
+
/** Clé d'un intertitre. `value` d'abord : un libellé se renomme, une clé non. */
|
|
2438
|
+
private cle;
|
|
2439
|
+
/**
|
|
2440
|
+
* Les lignes à rendre : les intertitres toujours, les entrées seulement si leur intertitre
|
|
2441
|
+
* n'est pas replié. Une entrée qui précède tout intertitre n'appartient à aucun groupe et
|
|
2442
|
+
* ne se replie donc jamais — sans quoi elle serait masquée sans bouton pour la rouvrir.
|
|
2443
|
+
*/
|
|
2444
|
+
readonly rows: _angular_core.Signal<CadNavDrawerRow[]>;
|
|
2445
|
+
toggleSection(r: CadNavDrawerRow): void;
|
|
2401
2446
|
private readonly wasOpen;
|
|
2402
2447
|
constructor();
|
|
2403
2448
|
isActive(it: CadNavDrawerItem): boolean;
|
|
@@ -2408,7 +2453,7 @@ declare class CadNavDrawerComponent {
|
|
|
2408
2453
|
onEscape(): void;
|
|
2409
2454
|
pick(it: CadNavDrawerItem, ev: Event): void;
|
|
2410
2455
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CadNavDrawerComponent, never>;
|
|
2411
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CadNavDrawerComponent, "cad-nav-drawer", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "breakpoint": { "alias": "breakpoint"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "closeOnNavigate": { "alias": "closeOnNavigate"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "dismissableScrim": { "alias": "dismissableScrim"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "value": "valueChange"; "opened": "opened"; "closed": "closed"; "itemClick": "itemClick"; "changed": "changed"; }, ["headerSlot", "footerSlot"], ["[cadNavDrawerHeader]", "[cadNavDrawerFooter]"], true, never>;
|
|
2456
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CadNavDrawerComponent, "cad-nav-drawer", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "breakpoint": { "alias": "breakpoint"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "closeOnNavigate": { "alias": "closeOnNavigate"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "dismissableScrim": { "alias": "dismissableScrim"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "value": "valueChange"; "collapsed": "collapsedChange"; "opened": "opened"; "closed": "closed"; "itemClick": "itemClick"; "changed": "changed"; }, ["headerSlot", "footerSlot"], ["[cadNavDrawerHeader]", "[cadNavDrawerFooter]"], true, never>;
|
|
2412
2457
|
}
|
|
2413
2458
|
|
|
2414
2459
|
type CadSelectionMode = 'single' | 'multiple' | null;
|
|
@@ -3730,6 +3775,7 @@ declare class CadDialogContainerComponent {
|
|
|
3730
3775
|
private static readonly DRAWER_SIZES;
|
|
3731
3776
|
protected readonly width: _angular_core.Signal<string>;
|
|
3732
3777
|
protected readonly height: _angular_core.Signal<string | null>;
|
|
3778
|
+
/** Le plafond à 92% laisse respirer un dialogue centré ; en plein écran mobile il n'a plus lieu d'être. */
|
|
3733
3779
|
protected readonly maxWidth: _angular_core.Signal<string>;
|
|
3734
3780
|
private readonly drag;
|
|
3735
3781
|
protected readonly dragTransform: _angular_core.Signal<string | null>;
|
|
@@ -4858,6 +4904,44 @@ declare const CAD_SHELL: InjectionToken<CadShellApi>;
|
|
|
4858
4904
|
* <cad-bottom-nav cadShellBottom [items]="dest" [(value)]="page"/>
|
|
4859
4905
|
* </cad-app-shell>
|
|
4860
4906
|
* ```
|
|
4907
|
+
*
|
|
4908
|
+
* ⚠️ N'ENVELOPPEZ JAMAIS UN EMPLACEMENT DANS UN `@if` (ni `@for`, ni `<ng-template>`).
|
|
4909
|
+
*
|
|
4910
|
+
* La projection de contenu est STATIQUE : Angular apparie les nœuds aux sélecteurs de
|
|
4911
|
+
* `ng-content` sur la structure déclarée. Un `<header cadShellBar>` placé dans un bloc de
|
|
4912
|
+
* flux de contrôle n'est jamais apparié — il tombe dans l'emplacement PAR DÉFAUT, donc dans
|
|
4913
|
+
* la zone de CONTENU. Rien ne le signale : ça compile, ça s'affiche, et la barre se met à
|
|
4914
|
+
* défiler avec le contenu — exactement le défaut que cette coquille existe pour empêcher.
|
|
4915
|
+
* Constaté au navigateur le 22/08/2026 sur le showcase (`.cad-shell__bar` mesurait 0×0).
|
|
4916
|
+
*
|
|
4917
|
+
* ```html
|
|
4918
|
+
* <!-- FAUX : la barre atterrit dans le contenu -->
|
|
4919
|
+
* @if (connecte()) { <header cadShellBar>…</header> }
|
|
4920
|
+
*
|
|
4921
|
+
* <!-- JUSTE : l'emplacement est toujours rendu, c'est son CONTENU qui varie -->
|
|
4922
|
+
* <header cadShellBar [class.est-masque]="!connecte()">…</header>
|
|
4923
|
+
* ```
|
|
4924
|
+
*
|
|
4925
|
+
* Une rangée ou une colonne `auto` dont l'unique enfant est en `display: none` se replie à
|
|
4926
|
+
* zéro : masquer ainsi ne laisse aucune trace dans la mise en page.
|
|
4927
|
+
*
|
|
4928
|
+
* ⚠️ ZONES SÛRES — DEUX CONDITIONS, ET LA PREMIÈRE EST DANS `index.html`.
|
|
4929
|
+
*
|
|
4930
|
+
* 1. **`<meta name="viewport" content="…, viewport-fit=cover">`**. Sans lui, iOS encadre la
|
|
4931
|
+
* page : elle ne s'étend jamais sous l'encoche, la bande du haut est peinte par le SYSTÈME,
|
|
4932
|
+
* et **tous les `env(safe-area-inset-*)` valent 0**. Toute la mécanique de zone sûre de la
|
|
4933
|
+
* bibliothèque — celle de `cad-bottom-nav`, celle du tiroir en mode temporaire — est alors
|
|
4934
|
+
* inerte sans que rien ne le signale.
|
|
4935
|
+
* 2. **La barre peint sa propre zone sûre haute** : `padding-top: env(safe-area-inset-top)`
|
|
4936
|
+
* sur l'élément projeté, PAS sur la coquille. Le rembourrage est intérieur au fond, donc la
|
|
4937
|
+
* couleur de la barre monte jusqu'au bord de l'écran. Le poser côté coquille laisserait la
|
|
4938
|
+
* bande sous l'encoche au fond de la COQUILLE : la cassure resterait, d'une autre couleur.
|
|
4939
|
+
* Avec `box-sizing: border-box`, penser au `min-height: calc(52px + env(safe-area-inset-top))`
|
|
4940
|
+
* — sinon l'encoche mange la hauteur du contenu.
|
|
4941
|
+
*
|
|
4942
|
+
* En application autonome (ajoutée à l'écran d'accueil), la page ne passe pas sous la bande
|
|
4943
|
+
* d'état : `viewport-fit=cover` n'y suffit pas et c'est `<meta name="theme-color">`, tenu à
|
|
4944
|
+
* jour avec le thème, qui donne la continuité.
|
|
4861
4945
|
*/
|
|
4862
4946
|
declare class CadAppShellComponent implements CadShellApi {
|
|
4863
4947
|
private readonly bp;
|
|
@@ -7175,4 +7259,4 @@ declare class CadTaskboardComponent {
|
|
|
7175
7259
|
}
|
|
7176
7260
|
|
|
7177
7261
|
export { BanGeocoder, CAD_BREAKPOINTS, CAD_CHART_PALETTE, CAD_COLOR_PRESETS, CAD_DEFAULT_BASEMAPS, CAD_DEFAULT_PRIORITY_BREAKPOINTS, CAD_DIALOG_DATA, CAD_FILTER_OPERATORS, CAD_GEOCODER, CAD_ICONS, CAD_ICONS_CEREMA, CAD_ICONS_CORE, CAD_ICONS_DATA, CAD_ICONS_FILES, CAD_ICONS_GEO, CAD_ICONS_SUBSET, CAD_ICONS_TOKEN, CAD_ICONS_UI, CAD_ICON_ALIASES, CAD_ICON_CATEGORIES, CAD_MAPLIBRE_CSS_URL, CAD_MAP_CHILD, CAD_MAP_DEFAULTS, CAD_MAP_GLOBAL_STYLES, CAD_MAP_GLYPHS, CAD_MAP_PALETTE, CAD_MASK_PRESETS, CAD_MOBILE_BREAKPOINT, CAD_SELECT_POSITIONS, CAD_SELECT_TRIGGER_STYLES, CAD_SHEET_DATA, CAD_SHELL, CAD_TOUCH_DENSITY, CadAccordionComponent, CadAccordionPanelComponent, CadAppShellComponent, CadAvatarComponent, CadAvatarGroupComponent, CadBadgeComponent, CadBadgeDirective, CadBlockDirective, CadBlockOverlayComponent, CadBlockUiComponent, CadBottomNavComponent, CadBreadcrumbComponent, CadBreadcrumbItemDirective, CadBreakpointService, CadButtonComponent, CadButtonGroupComponent, CadCaptionDirective, CadCardComponent, CadCardDirective, CadCardHeaderDirective, CadCarouselComponent, CadCarouselItemDirective, CadCascadeSelectComponent, CadCellTemplateDirective, CadCenterComponent, CadChartComponent, CadCheckboxComponent, CadChipComponent, CadClusterComponent, CadColDirective, CadColorpickerComponent, CadColumnComponent, CadComboComponent, CadConfirmContentComponent, CadConfirmDialogComponent, CadConfirmService, CadContainerComponent, CadDataviewComponent, CadDataviewGridDirective, CadDataviewListDirective, CadDatepickerComponent, CadDialogComponent, CadDialogContainerComponent, CadDialogFooterDirective, CadDialogHeaderDirective, CadDialogRef, CadDialogService, CadDividerComponent, CadDrawerComponent, CadEditFocusDirective, CadEditorTemplateDirective, CadEmptyDirective, CadFieldComponent, CadFieldsetComponent, CadFieldsetLegendDirective, CadFilterChipComponent, CadFilterTemplateDirective, CadGeocodingService, CadGridComponent, CadGroupFooterDirective, CadGroupHeaderDirective, CadHeaderTemplateDirective, CadIconComponent, CadIconRegistry, CadIfDirective, CadImageComponent, CadInplaceComponent, CadInplaceContentDirective, CadInplaceDisplayDirective, CadInputDirective, CadJsonEditorComponent, CadKeyFilterDirective, CadListEmptyDirective, CadListFooterDirective, CadListHeaderDirective, CadListItemDirective, CadListboxComponent, CadMapBasemapRegistry, CadMapBasemapsComponent, CadMapCardComponent, CadMapChromeComponent, CadMapComponent, CadMapDrawEngine, CadMapLayerComponent, CadMapLayerGroupComponent, CadMapLayerToggleComponent, CadMapLegendComponent, CadMapMenuComponent, CadMapPanelComponent, CadMapPanels, CadMapRailComponent, CadMapRailItemComponent, CadMapSearchComponent, CadMapSectionComponent, CadMaskDirective, CadMenuComponent, CadMenubarComponent, CadMessageComponent, CadMeterComponent, CadMeterLabelDirective, CadMultiselectComponent, CadNavDrawerComponent, CadNavDrawerFooterDirective, CadNavDrawerHeaderDirective, CadNumberComponent, CadOptionListComponent, CadOrderlistComponent, CadOrgNodeDirective, CadOrgchartComponent, CadOverlayBase, CadPaginatorComponent, CadPanelComponent, CadPanelContentDirective, CadPanelHeaderDirective, CadPanelHeadingDirective, CadPasswordComponent, CadPicklistComponent, CadPopoverComponent, CadProgressComponent, CadRadioComponent, CadRadioGroupComponent, CadRatingComponent, CadRowActionsDirective, CadRowCountDirective, CadRowExpansionDirective, CadScrollTopComponent, CadSegmentedComponent, CadSelectBase, CadSelectComponent, CadSelectEmptyDirective, CadSelectFooterDirective, CadSelectHeaderDirective, CadSelectItemDirective, CadSelectSelectedDirective, CadSheetContainerComponent, CadSheetRef, CadSheetService, CadSidebarComponent, CadSidebarPanelDirective, CadSkeletonComponent, CadSliderComponent, CadSpacerComponent, CadSpeedDialComponent, CadSpinnerComponent, CadSplitButtonComponent, CadSplitComponent, CadSplitterComponent, CadSplitterPanelComponent, CadStackComponent, CadStepComponent, CadStepperComponent, CadSwitchComponent, CadTabComponent, CadTabContentDirective, CadTabLabelDirective, CadTableBase, CadTableComponent, CadTableEdit, CadTableEditUi, CadTableFooterDirective, CadTablePanelComponent, CadTableResponsive, CadTableSelection, CadTableSticky, CadTableVirtual, CadTabsComponent, CadTagComponent, CadTaskCardDirective, CadTaskRowDirective, CadTaskboardComponent, CadTimeAxis, CadTimelineComponent, CadTimelineContentDirective, CadTimelineMarkerDirective, CadTimelineOppositeDirective, CadToastComponent, CadToastItemDirective, CadToastService, CadToggleButtonComponent, CadTooltipComponent, CadTooltipDirective, CadTreeAdapter, CadTreeComponent, CadTreeNodeDirective, CadTreeselectComponent, CadUploadComponent, CadUploadContentDirective, CadUploadEmptyDirective, CadUploadItemDirective, CadValueAccessor, CadWorkCalendar, MAPLIBRE_MIN_CSS, addDays, addMonths, addYears, cadAggregate, cadApplyColumnOrder, cadApplyMask, cadArea, cadAutosizeWidth, cadBasemapThumbnail, cadBoundsOf, cadCategories, cadCentroid, cadColorExpr, cadCompare, cadCompareRank, cadCurrentOperator, cadDefaultMatchMode, cadDistance, cadDownloadCsv, cadDurationToMinutes, cadFilterData, cadFilterKindOf, cadFilterOperators, cadFilterRows, cadFindLinkCycle, cadFmtArea, cadFmtLength, cadFormatCell, cadFormatColor, cadFormatDuration, cadFormatSize, cadFrenchHolidays, cadGap, cadGeoJSONStats, cadGeometryKinds, cadHeaderMenuItems, cadHighlightJson, cadHslToRgb, cadHsvToRgb, cadId, cadIsGroupKey, cadIsRank, cadJsonErrorPos, cadLegendFromStyle, cadLength, cadMapEstVivante, cadMapLayerOf, cadMapLayersOf, cadMatch, cadMoveColumn, cadMoveItems, cadNormalize, cadNormalizeOptions, cadNormalizePlan, cadNumberExpr, cadPadBounds, cadParseColor, cadParseDuration, cadParseResponsive, cadPlanHeader, cadPlanTicks, cadPropsTable, cadRankBetween, cadRankFirst, cadRankLast, cadRankSequence, cadResolve, cadResolveResponsive, cadResponsive, cadRgbToHsl, cadRgbToHsv, cadRingArea, cadRowKey, cadRowPredicate, cadSameValue, cadScaleNext, cadScaleStart, cadSortData, cadStartResize, cadStyleToExpressions, cadUnmask, cadUnscheduled, cadValidateGeoJSON, cadValueForOperator, cadWriteField, compareDay, daysInMonth, endOfMonth, ensureMaplibreCss, formatDate, isBetweenDay, isSameDay, isSameMonth, isValidDate, isoOf, isoWeek, loadChartJs, loadMaplibre, monthNames, pad2, parseIso, parseWithFormat, provideCadIcons, startOfDay, startOfMonth, toDate, weekdayNames };
|
|
7178
|
-
export type { CadAggregate, CadAggregateFn, CadAggregates, CadBadgeSeverity, CadBasemap, CadBasemapKind, CadBottomNavItem, CadBounds, CadBreadcrumbItem, CadBreakpoint, CadCarouselResponsive, CadCellContext, CadCellEditState, CadChartClickEvent, CadChartType, CadColorFormat, CadColorSpec, CadColumnAlign, CadColumnDataType, CadColumnEditor, CadColumnFilterOption, CadColumnFilterType, CadColumnMenuActionEvent, CadColumnPinEvent, CadColumnReorderEvent, CadColumnResizeEvent, CadColumnToggleEvent, CadComboSource, CadConfirmOptions, CadDataviewLayout, CadDateMode, CadDateSelection, CadDateValue, CadDialogConfig, CadDialogPosition, CadDialogSize, CadDisplayRow, CadDrawMode, CadDrawOptions, CadDrawerPosition, CadDuration, CadDurationUnit, CadEditCompleteEvent, CadEditEvent, CadEditMode, CadEditorContext, CadFeatureEvent, CadFilterChangeEvent, CadFilterKind, CadFilterMatchMode, CadFilterMeta, CadFilterOperator, CadFilters, CadGap, CadGeoJSON, CadGeocodeOptions, CadGeocodeResult, CadGeocoder, CadGeometryKind, CadGroupBy, CadGroupContext, CadGroupInfo, CadGroupItem, CadHeaderMenuHost, CadHsva, CadLayerStyle, CadLazyLoadEvent, CadLegendItem, CadListGroup, CadListItem, CadListNormalizeOpts, CadListOption, CadListRow, CadLngLat, CadMapChild, CadMapChrome, CadMapClick, CadMapControl, CadMapLayerType, CadMapMenuConfig, CadMapMenuItem, CadMapMenuPanel, CadMapMenuRailItem, CadMapMenuSection, CadMapPosition, CadMapSide, CadMapView, CadMeasure, CadMenuItem, CadMenubarItem, CadMeterValue, CadNavDrawerItem, CadNavDrawerMode, CadNodeEvent, CadNormalizePlanOptions, CadNormalizedPlan, CadNumberSpec, CadOptionItem, CadOrgNode, CadOverlayHandle, CadPageEvent, CadPaintSet, CadPinnedColumns, CadPlacement, CadPlan, CadPlanAssignment, CadPlanBucket, CadPlanCalendar, CadPlanCalendarException, CadPlanDateInput, CadPlanHeader, CadPlanHours, CadPlanIssue, CadPlanLink, CadPlanLinkType, CadPlanMarker, CadPlanResource, CadPlanScale, CadPlanTask, CadPlanTick, CadPlanTicksOptions, CadPlannedLink, CadPlannedTask, CadPriorityBreakpoints, CadProgressSeverity, CadRgba, CadRowEditEvent, CadRowEditState, CadRowEvent, CadRowReorderEvent, CadSegmentOption, CadSelectItemContext, CadSelectionMode, CadSelectionPropagation, CadSeverity, CadSheetConfig, CadSheetHeight, CadShellApi, CadSize, CadSliderMark, CadSliderSeverity, CadSliderValue, CadSortEvent, CadSortMeta, CadSortOrder, CadStepState, CadTableEditContext, CadTableEditUiContext, CadTablePanelTab, CadTableResponsiveMode, CadTableSelectionContext, CadTagSeverity, CadTaskAssignEvent, CadTaskMoveEvent, CadTaskOpenEvent, CadTaskboardGroupBy, CadTaskboardMode, CadTimelineAlign, CadToastAction, CadToastMessage, CadToastPosition, CadToastSeverity, CadTreeAdapterOptions, CadTreeNode, CadTreeNodeEvent, CadUploadFile, CadUploadHandlerEvent, CadUploadStatus, CadVariant, CadVirtualRange, CadWipEvent, MLExpression, MaplibreModule };
|
|
7262
|
+
export type { CadAggregate, CadAggregateFn, CadAggregates, CadBadgeSeverity, CadBasemap, CadBasemapKind, CadBottomNavItem, CadBounds, CadBreadcrumbItem, CadBreakpoint, CadCarouselResponsive, CadCellContext, CadCellEditState, CadChartClickEvent, CadChartType, CadColorFormat, CadColorSpec, CadColumnAlign, CadColumnDataType, CadColumnEditor, CadColumnFilterOption, CadColumnFilterType, CadColumnMenuActionEvent, CadColumnPinEvent, CadColumnReorderEvent, CadColumnResizeEvent, CadColumnToggleEvent, CadComboSource, CadConfirmOptions, CadDataviewLayout, CadDateMode, CadDateSelection, CadDateValue, CadDialogConfig, CadDialogPosition, CadDialogSize, CadDisplayRow, CadDrawMode, CadDrawOptions, CadDrawerPosition, CadDuration, CadDurationUnit, CadEditCompleteEvent, CadEditEvent, CadEditMode, CadEditorContext, CadFeatureEvent, CadFilterChangeEvent, CadFilterKind, CadFilterMatchMode, CadFilterMeta, CadFilterOperator, CadFilters, CadGap, CadGeoJSON, CadGeocodeOptions, CadGeocodeResult, CadGeocoder, CadGeometryKind, CadGroupBy, CadGroupContext, CadGroupInfo, CadGroupItem, CadHeaderMenuHost, CadHsva, CadLayerStyle, CadLazyLoadEvent, CadLegendItem, CadListGroup, CadListItem, CadListNormalizeOpts, CadListOption, CadListRow, CadLngLat, CadMapChild, CadMapChrome, CadMapClick, CadMapControl, CadMapLayerType, CadMapMenuConfig, CadMapMenuItem, CadMapMenuPanel, CadMapMenuRailItem, CadMapMenuSection, CadMapPosition, CadMapSide, CadMapView, CadMeasure, CadMenuItem, CadMenubarItem, CadMeterValue, CadNavDrawerItem, CadNavDrawerMode, CadNavDrawerRow, CadNodeEvent, CadNormalizePlanOptions, CadNormalizedPlan, CadNumberSpec, CadOptionItem, CadOrgNode, CadOverlayHandle, CadPageEvent, CadPaintSet, CadPinnedColumns, CadPlacement, CadPlan, CadPlanAssignment, CadPlanBucket, CadPlanCalendar, CadPlanCalendarException, CadPlanDateInput, CadPlanHeader, CadPlanHours, CadPlanIssue, CadPlanLink, CadPlanLinkType, CadPlanMarker, CadPlanResource, CadPlanScale, CadPlanTask, CadPlanTick, CadPlanTicksOptions, CadPlannedLink, CadPlannedTask, CadPriorityBreakpoints, CadProgressSeverity, CadRgba, CadRowEditEvent, CadRowEditState, CadRowEvent, CadRowReorderEvent, CadSegmentOption, CadSelectItemContext, CadSelectionMode, CadSelectionPropagation, CadSeverity, CadSheetConfig, CadSheetHeight, CadShellApi, CadSize, CadSliderMark, CadSliderSeverity, CadSliderValue, CadSortEvent, CadSortMeta, CadSortOrder, CadStepState, CadTableEditContext, CadTableEditUiContext, CadTablePanelTab, CadTableResponsiveMode, CadTableSelectionContext, CadTagSeverity, CadTaskAssignEvent, CadTaskMoveEvent, CadTaskOpenEvent, CadTaskboardGroupBy, CadTaskboardMode, CadTimelineAlign, CadToastAction, CadToastMessage, CadToastPosition, CadToastSeverity, CadTreeAdapterOptions, CadTreeNode, CadTreeNodeEvent, CadUploadFile, CadUploadHandlerEvent, CadUploadStatus, CadVariant, CadVirtualRange, CadWipEvent, MLExpression, MaplibreModule };
|