@cadriciel/ui 0.4.0 → 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 +187 -54
- package/fesm2022/cadriciel-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/tokens.scss +8 -0
- package/types/cadriciel-ui.d.ts +87 -3
package/package.json
CHANGED
package/styles/tokens.scss
CHANGED
|
@@ -29,6 +29,14 @@
|
|
|
29
29
|
--cad-surface: var(--surface-card, #ffffff);
|
|
30
30
|
--cad-overlay: var(--surface-overlay, #ffffff);
|
|
31
31
|
--cad-hover: var(--surface-hover, #f1f5f9);
|
|
32
|
+
/* Survol SUR UNE SURFACE FLOTTANTE (menu, liste d'options, calendrier, feuille…).
|
|
33
|
+
Il ne peut pas être `--cad-hover` : celui-ci est un écart depuis la surface de CARTE, et
|
|
34
|
+
rien n'oblige un thème à le distinguer de la surface d'overlay. Le thème sombre du studio
|
|
35
|
+
donne justement la MÊME couleur aux deux (#21262d) — donc aucun survol n'était visible
|
|
36
|
+
dans le moindre menu ou select, sauf les entrées `danger` qui ont leur propre teinte.
|
|
37
|
+
Signalé par SZU le 21/08/2026 sur cad-menu. On le DÉRIVE de la surface plutôt que de le
|
|
38
|
+
déclarer à côté : deux tokens indépendants peuvent coïncider, un écart calculé, jamais. */
|
|
39
|
+
--cad-overlay-hover: var(--surface-overlay-hover, color-mix(in srgb, var(--cad-fg) 9%, var(--cad-overlay)));
|
|
32
40
|
--cad-elevated: var(--bg-elevated, #e2e8f0);
|
|
33
41
|
--cad-border: var(--surface-border, #e2e8f0);
|
|
34
42
|
--cad-border-strong: var(--border-light, #cbd5e1);
|
package/types/cadriciel-ui.d.ts
CHANGED
|
@@ -1183,7 +1183,7 @@ declare class CadMultiselectComponent<T = unknown, V = unknown> extends CadSelec
|
|
|
1183
1183
|
}
|
|
1184
1184
|
|
|
1185
1185
|
/** CSS du déclencheur/panneau commun aux sélecteurs (treeselect, cascade, combo) — mêmes tokens que cad-select. */
|
|
1186
|
-
declare const CAD_SELECT_TRIGGER_STYLES = "\n :host { display: inline-flex; width: 100%; box-sizing: border-box; font-family: var(--cad-font); font-size: var(--cad-font-size); color: var(--cad-fg); vertical-align: middle; }\n .st { display: flex; align-items: center; gap: 6px; width: 100%; box-sizing: border-box; min-height: var(--cad-control-h); padding: 0 8px 0 var(--cad-control-px); background: var(--cad-input-bg); border: 1px solid var(--cad-input-border); border-radius: var(--cad-radius); cursor: pointer; outline: none; user-select: none; transition: border-color var(--cad-dur) var(--cad-ease), box-shadow var(--cad-dur) var(--cad-ease); }\n :host(.size-sm) .st { min-height: var(--cad-control-h-sm); font-size: var(--cad-font-size-sm); border-radius: var(--cad-radius-sm); }\n :host(.size-lg) .st { min-height: var(--cad-control-h-lg); font-size: var(--cad-font-size-lg); }\n .st:focus-visible, .st:focus-within, :host(.is-open) .st { border-color: var(--cad-accent); box-shadow: 0 0 0 3px var(--cad-ring); }\n :host(.is-invalid) .st { border-color: var(--cad-danger); } :host(.is-invalid.is-open) .st, :host(.is-invalid) .st:focus-within { box-shadow: 0 0 0 3px var(--cad-danger-soft); }\n :host(.is-disabled) .st { opacity: .6; cursor: not-allowed; background: var(--cad-bg-subtle); }\n .st__val { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: flex; align-items: center; gap: 6px; }\n .st__val.is-ph { color: var(--cad-fg-muted); }\n .st__chips { flex: 1; min-width: 0; display: flex; flex-wrap: wrap; gap: 4px; padding: 3px 0; }\n .st__chip { display: inline-flex; align-items: center; gap: 4px; height: 22px; padding: 0 6px 0 8px; border-radius: 999px; background: var(--cad-accent-soft); color: var(--cad-accent); font-size: var(--cad-font-size-sm); font-weight: 500; }\n .st__chip button { all: unset; display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; cursor: pointer; } .st__chip button:hover { background: rgba(0,0,0,.08); }\n .st__input { flex: 1; min-width: 40px; border: 0; outline: 0; background: transparent; color: var(--cad-fg); font: inherit; padding: 0; height: calc(var(--cad-control-h) - 2px); }\n .st__input::placeholder { color: var(--cad-fg-muted); }\n .st__chev { color: var(--cad-fg-muted); flex: none; transition: transform var(--cad-dur) var(--cad-ease); } :host(.is-open) .st__chev { transform: rotate(180deg); }\n .st__clear, .st__dd { all: unset; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 4px; color: var(--cad-fg-muted); cursor: pointer; } .st__clear:hover, .st__dd:hover { color: var(--cad-fg); background: var(--cad-hover); }\n .st__spin { color: var(--cad-fg-muted); }\n .sp { display: flex; flex-direction: column; box-sizing: border-box; background: var(--cad-overlay); border: 1px solid var(--cad-border); border-radius: 9px; box-shadow: var(--cad-shadow-lg); overflow: hidden; font-family: var(--cad-font); font-size: var(--cad-font-size); color: var(--cad-fg); }\n .sp__empty { padding: 12px; text-align: center; color: var(--cad-fg-muted); font-size: var(--cad-font-size-sm); }\n";
|
|
1186
|
+
declare const CAD_SELECT_TRIGGER_STYLES = "\n :host { display: inline-flex; width: 100%; box-sizing: border-box; font-family: var(--cad-font); font-size: var(--cad-font-size); color: var(--cad-fg); vertical-align: middle; }\n .st { display: flex; align-items: center; gap: 6px; width: 100%; box-sizing: border-box; min-height: var(--cad-control-h); padding: 0 8px 0 var(--cad-control-px); background: var(--cad-input-bg); border: 1px solid var(--cad-input-border); border-radius: var(--cad-radius); cursor: pointer; outline: none; user-select: none; transition: border-color var(--cad-dur) var(--cad-ease), box-shadow var(--cad-dur) var(--cad-ease); }\n :host(.size-sm) .st { min-height: var(--cad-control-h-sm); font-size: var(--cad-font-size-sm); border-radius: var(--cad-radius-sm); }\n :host(.size-lg) .st { min-height: var(--cad-control-h-lg); font-size: var(--cad-font-size-lg); }\n .st:focus-visible, .st:focus-within, :host(.is-open) .st { border-color: var(--cad-accent); box-shadow: 0 0 0 3px var(--cad-ring); }\n :host(.is-invalid) .st { border-color: var(--cad-danger); } :host(.is-invalid.is-open) .st, :host(.is-invalid) .st:focus-within { box-shadow: 0 0 0 3px var(--cad-danger-soft); }\n :host(.is-disabled) .st { opacity: .6; cursor: not-allowed; background: var(--cad-bg-subtle); }\n .st__val { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: flex; align-items: center; gap: 6px; }\n .st__val.is-ph { color: var(--cad-fg-muted); }\n .st__chips { flex: 1; min-width: 0; display: flex; flex-wrap: wrap; gap: 4px; padding: 3px 0; }\n .st__chip { display: inline-flex; align-items: center; gap: 4px; height: 22px; padding: 0 6px 0 8px; border-radius: 999px; background: var(--cad-accent-soft); color: var(--cad-accent); font-size: var(--cad-font-size-sm); font-weight: 500; }\n .st__chip button { all: unset; display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; cursor: pointer; } .st__chip button:hover { background: rgba(0,0,0,.08); }\n .st__input { flex: 1; min-width: 40px; border: 0; outline: 0; background: transparent; color: var(--cad-fg); font: inherit; padding: 0; height: calc(var(--cad-control-h) - 2px); }\n .st__input::placeholder { color: var(--cad-fg-muted); }\n .st__chev { color: var(--cad-fg-muted); flex: none; transition: transform var(--cad-dur) var(--cad-ease); } :host(.is-open) .st__chev { transform: rotate(180deg); }\n .st__clear, .st__dd { all: unset; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 4px; color: var(--cad-fg-muted); cursor: pointer; } .st__clear:hover, .st__dd:hover { color: var(--cad-fg); background: var(--cad-hover); }\n .st__spin { color: var(--cad-fg-muted); }\n .sp { display: flex; flex-direction: column; box-sizing: border-box; background: var(--cad-overlay); --cad-hover: var(--cad-overlay-hover); border: 1px solid var(--cad-border); border-radius: 9px; box-shadow: var(--cad-shadow-lg); overflow: hidden; font-family: var(--cad-font); font-size: var(--cad-font-size); color: var(--cad-fg); }\n .sp__empty { padding: 12px; text-align: center; color: var(--cad-fg-muted); font-size: var(--cad-font-size-sm); }\n";
|
|
1187
1187
|
|
|
1188
1188
|
type CadSortOrder = 1 | -1 | 0;
|
|
1189
1189
|
interface CadSortMeta {
|
|
@@ -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 };
|