@acorex/components 20.9.3 → 20.10.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/datetime-text-box/README.md +3 -0
- package/datetime-text-box/index.d.ts +142 -0
- package/fesm2022/acorex-components-conversation.mjs +2 -2
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-datetime-text-box.mjs +619 -0
- package/fesm2022/acorex-components-datetime-text-box.mjs.map +1 -0
- package/fesm2022/acorex-components-map.mjs +1163 -13711
- package/fesm2022/acorex-components-map.mjs.map +1 -1
- package/map/index.d.ts +299 -45
- package/package.json +11 -7
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import * as polytype from 'polytype';
|
|
2
|
+
import * as _angular_core from '@angular/core';
|
|
3
|
+
import { MXInputBaseValueComponent, MXLookComponent, AXClickEvent } from '@acorex/cdk/common';
|
|
4
|
+
import { AXDateTimePickerType } from '@acorex/components/calendar';
|
|
5
|
+
|
|
6
|
+
declare const AXDateTimeTextBoxComponent_base: polytype.Polytype.ClusteredConstructor<[{
|
|
7
|
+
new (): MXInputBaseValueComponent<Date>;
|
|
8
|
+
ɵfac: _angular_core.ɵɵFactoryDeclaration<MXInputBaseValueComponent<any>, never>;
|
|
9
|
+
ɵprov: _angular_core.ɵɵInjectableDeclaration<MXInputBaseValueComponent<any>>;
|
|
10
|
+
}, typeof MXLookComponent]>;
|
|
11
|
+
/**
|
|
12
|
+
* A date & time editor that works like a text box: the user types digits directly into a
|
|
13
|
+
* masked value (separators come from the active format), navigates between date/time
|
|
14
|
+
* segments with Left/Right arrows and spins segment values with Up/Down arrows.
|
|
15
|
+
*
|
|
16
|
+
* The committed value is a native `Date` (same contract as `ax-datetime-box`), and both
|
|
17
|
+
* `gregorian` and `solar-hijri` calendar systems are supported.
|
|
18
|
+
*
|
|
19
|
+
* @category Components
|
|
20
|
+
*/
|
|
21
|
+
declare class AXDateTimeTextBoxComponent extends AXDateTimeTextBoxComponent_base {
|
|
22
|
+
#private;
|
|
23
|
+
private platformService;
|
|
24
|
+
private localeService;
|
|
25
|
+
private calendarService;
|
|
26
|
+
/** @ignore */
|
|
27
|
+
private readonly _editingParts;
|
|
28
|
+
/** @ignore */
|
|
29
|
+
protected _editingText: _angular_core.WritableSignal<string>;
|
|
30
|
+
/** @ignore */
|
|
31
|
+
private _inputChars;
|
|
32
|
+
/** @ignore */
|
|
33
|
+
private _activePart;
|
|
34
|
+
/**
|
|
35
|
+
* Determines which parts are editable: `date`, `time` or `datetime`.
|
|
36
|
+
* The mask format is resolved from the active locale profile for this mode.
|
|
37
|
+
* @defaultValue 'datetime'
|
|
38
|
+
*/
|
|
39
|
+
picker: _angular_core.InputSignal<AXDateTimePickerType>;
|
|
40
|
+
/**
|
|
41
|
+
* The calendar system to use (`gregorian` or `solar-hijri`).
|
|
42
|
+
* Falls back to the active locale profile calendar when not provided.
|
|
43
|
+
*/
|
|
44
|
+
calendar: _angular_core.InputSignal<string>;
|
|
45
|
+
/**
|
|
46
|
+
* Optional format override (e.g. `yyyy/MM/dd HH:mm:ss`).
|
|
47
|
+
* When omitted, the short format of the active locale profile is used.
|
|
48
|
+
*/
|
|
49
|
+
format: _angular_core.InputSignal<string>;
|
|
50
|
+
/**
|
|
51
|
+
* The minimum allowed date value. Applied when the editor loses focus.
|
|
52
|
+
*/
|
|
53
|
+
minValue: _angular_core.InputSignal<Date>;
|
|
54
|
+
/**
|
|
55
|
+
* The maximum allowed date value. Applied when the editor loses focus.
|
|
56
|
+
*/
|
|
57
|
+
maxValue: _angular_core.InputSignal<Date>;
|
|
58
|
+
/**
|
|
59
|
+
* Emitted when a click event occurs on the editor input.
|
|
60
|
+
* @event
|
|
61
|
+
*/
|
|
62
|
+
onClick: _angular_core.OutputEmitterRef<AXClickEvent>;
|
|
63
|
+
/** @ignore */
|
|
64
|
+
classNames: _angular_core.InputSignal<string>;
|
|
65
|
+
protected readonly _calendarSystem: _angular_core.Signal<string>;
|
|
66
|
+
protected readonly _resolvedFormat: _angular_core.Signal<string>;
|
|
67
|
+
/** @ignore */
|
|
68
|
+
private _editingDate;
|
|
69
|
+
/** @ignore */
|
|
70
|
+
private inputRef;
|
|
71
|
+
/** @ignore */
|
|
72
|
+
private get inputElement();
|
|
73
|
+
/**
|
|
74
|
+
* @description check if page is in rtl or ltr
|
|
75
|
+
*/
|
|
76
|
+
protected isRtl: _angular_core.WritableSignal<boolean>;
|
|
77
|
+
/** @ignore */
|
|
78
|
+
protected ngOnInit(): void;
|
|
79
|
+
/**
|
|
80
|
+
* Formats a part using the calendar already attached to the AXDateTime.
|
|
81
|
+
* Avoids formatService's string-options path, which always uses the active locale calendar.
|
|
82
|
+
* @ignore
|
|
83
|
+
*/
|
|
84
|
+
private _formatPart;
|
|
85
|
+
/** @ignore */
|
|
86
|
+
private _detectParts;
|
|
87
|
+
/** @ignore */
|
|
88
|
+
private _getOrderedParts;
|
|
89
|
+
/** @ignore */
|
|
90
|
+
private _clearInputBuffer;
|
|
91
|
+
/** @ignore */
|
|
92
|
+
private _updateText;
|
|
93
|
+
/**
|
|
94
|
+
* Handles changes to the internal date value, updating editing parts and text representation.
|
|
95
|
+
* @ignore
|
|
96
|
+
*/
|
|
97
|
+
internalValueChanged(value?: Date): void;
|
|
98
|
+
/**
|
|
99
|
+
* Normalizes Persian (U+06F0-U+06F9) and Arabic-Indic (U+0660-U+0669) digits to ASCII.
|
|
100
|
+
* @ignore
|
|
101
|
+
*/
|
|
102
|
+
private _normalizeDigit;
|
|
103
|
+
/** @ignore */
|
|
104
|
+
protected _handleOnKeydownEvent(e: KeyboardEvent): void;
|
|
105
|
+
/**
|
|
106
|
+
* Applies typed digits to the active part with calendar-aware limits, auto advancing
|
|
107
|
+
* to the next part when the segment is complete or unambiguous.
|
|
108
|
+
* @ignore
|
|
109
|
+
*/
|
|
110
|
+
private _handleDigitInput;
|
|
111
|
+
/** @ignore */
|
|
112
|
+
private _applyEditingDate;
|
|
113
|
+
/** @ignore */
|
|
114
|
+
protected _handleKeyUpEvent(): void;
|
|
115
|
+
/** @ignore */
|
|
116
|
+
protected _handleFocusEvent(e: FocusEvent): void;
|
|
117
|
+
/** @ignore */
|
|
118
|
+
protected _handleBlurEvent(e: FocusEvent): void;
|
|
119
|
+
/**
|
|
120
|
+
* Clamps the committed value into the [minValue, maxValue] range.
|
|
121
|
+
* @ignore
|
|
122
|
+
*/
|
|
123
|
+
private _clampToRange;
|
|
124
|
+
/** @ignore */
|
|
125
|
+
protected _handleOnInputClickEvent(e: MouseEvent): void;
|
|
126
|
+
/** @ignore */
|
|
127
|
+
private _detectPartAtPosition;
|
|
128
|
+
/** @ignore */
|
|
129
|
+
private _highlightActivePart;
|
|
130
|
+
/** @ignore */
|
|
131
|
+
private _detectValueChanges;
|
|
132
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDateTimeTextBoxComponent, never>;
|
|
133
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXDateTimeTextBoxComponent, "ax-datetime-text-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "look": { "alias": "look"; "required": false; }; "picker": { "alias": "picker"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "minValue": { "alias": "minValue"; "required": false; "isSignal": true; }; "maxValue": { "alias": "maxValue"; "required": false; "isSignal": true; }; "classNames": { "alias": "class"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; "onClick": "onClick"; }, never, ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-validation-rule"], true, never>;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
declare class AXDateTimeTextBoxModule {
|
|
137
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXDateTimeTextBoxModule, never>;
|
|
138
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXDateTimeTextBoxModule, never, [typeof AXDateTimeTextBoxComponent], [typeof AXDateTimeTextBoxComponent]>;
|
|
139
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXDateTimeTextBoxModule>;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export { AXDateTimeTextBoxComponent, AXDateTimeTextBoxModule };
|
|
@@ -16290,7 +16290,7 @@ class AXConversationLocationPickerComponent {
|
|
|
16290
16290
|
(onSend)="sendLocation()"
|
|
16291
16291
|
/>
|
|
16292
16292
|
</div>
|
|
16293
|
-
`, isInline: true, styles: [":host{display:block;width:100%;container-type:inline-size;container-name:picker}.ax-conversation-picker--location{max-height:min(70dvh,28rem)}@container picker (max-width: 480px){.ax-conversation-picker--location{max-height:85dvh}}.map-container{height:10rem;overflow:hidden}.location-info{padding:.75rem 1rem;background:rgb(var(--ax-sys-color-surface));border-top:1px solid rgb(var(--ax-sys-color-border))}.info-row{display:flex;align-items:center;gap:.75rem}.info-row i{font-size:1.25rem;color:rgb(var(--ax-sys-color-primary))}.info-text{flex:1}.info-label{font-size:.75rem;color:rgb(var(--ax-sys-color-on-surface-variant));margin-bottom:.25rem}.info-value{font-size:.875rem;font-weight:500;color:rgb(var(--ax-sys-color-on-surface));font-family:monospace}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$5.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "readonly", "disabled", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "component", type: AXConversationPickerHeaderComponent, selector: "ax-conversation-picker-header", inputs: ["title"], outputs: ["onClose"] }, { kind: "component", type: AXConversationPickerFooterComponent, selector: "ax-conversation-picker-footer", inputs: ["sendText", "sendDisabled"], outputs: ["onCancel", "onSend"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.AXTranslatorPipe, name: "translate" }] }); }
|
|
16293
|
+
`, isInline: true, styles: [":host{display:block;width:100%;container-type:inline-size;container-name:picker}.ax-conversation-picker--location{max-height:min(70dvh,28rem)}@container picker (max-width: 480px){.ax-conversation-picker--location{max-height:85dvh}}.map-container{height:10rem;overflow:hidden}.location-info{padding:.75rem 1rem;background:rgb(var(--ax-sys-color-surface));border-top:1px solid rgb(var(--ax-sys-color-border))}.info-row{display:flex;align-items:center;gap:.75rem}.info-row i{font-size:1.25rem;color:rgb(var(--ax-sys-color-primary))}.info-text{flex:1}.info-label{font-size:.75rem;color:rgb(var(--ax-sys-color-on-surface-variant));margin-bottom:.25rem}.info-value{font-size:.875rem;font-weight:500;color:rgb(var(--ax-sys-color-on-surface));font-family:monospace}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$5.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "maxPolyline", "maxRectangle", "maxCircle", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "readonly", "disabled", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "polylines", "rectangles", "circles", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onPolylineAdded", "onPolylineClick", "onPolylineChanged", "onRectangleAdded", "onRectangleClick", "onRectangleChanged", "onCircleAdded", "onCircleClick", "onCircleChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }, { kind: "ngmodule", type: AXTranslationModule }, { kind: "component", type: AXConversationPickerHeaderComponent, selector: "ax-conversation-picker-header", inputs: ["title"], outputs: ["onClose"] }, { kind: "component", type: AXConversationPickerFooterComponent, selector: "ax-conversation-picker-footer", inputs: ["sendText", "sendDisabled"], outputs: ["onCancel", "onSend"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.AXTranslatorPipe, name: "translate" }] }); }
|
|
16294
16294
|
}
|
|
16295
16295
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: AXConversationLocationPickerComponent, decorators: [{
|
|
16296
16296
|
type: Component,
|
|
@@ -20848,7 +20848,7 @@ class AXConversationLocationRendererComponent extends AXConversationMessageRende
|
|
|
20848
20848
|
<i class="fa-light fa-arrow-up-right-from-square" aria-hidden="true"></i>
|
|
20849
20849
|
</a>
|
|
20850
20850
|
</div>
|
|
20851
|
-
`, isInline: true, styles: [":host{display:block}:host{max-width:100%}.ax-conversation-loc{display:flex;flex-direction:column;width:100%;max-width:min(100%,20rem);border-radius:var(--ax-sys-border-radius, .5rem);border:1px solid rgb(var(--ax-sys-color-border-light-surface));overflow:hidden;background:rgb(var(--ax-sys-color-surface));color:rgb(var(--ax-sys-color-on-surface))}.ax-conversation-loc__map{position:relative;height:min(28dvh,10rem);width:100%;overflow:hidden}@container conversation (min-width: 480px){.ax-conversation-loc__map{height:10.5rem}}.ax-conversation-loc__map ::ng-deep ax-map{display:block;height:100%;width:100%}.ax-conversation-loc__body{padding:.625rem .75rem .5rem;display:flex;flex-direction:column;gap:.25rem}.ax-conversation-loc__title{display:flex;align-items:center;font-size:.875rem;font-weight:600;line-height:1.2}.ax-conversation-loc__title-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ax-conversation-loc__addr{font-size:.75rem;opacity:.78;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ax-conversation-loc__meta{display:flex;align-items:center;gap:.5rem}.ax-conversation-loc__coords{font-size:.6875rem;opacity:.62;font-variant-numeric:tabular-nums;font-family:ui-monospace,monospace}.ax-conversation-loc__action{display:flex;align-items:center;justify-content:space-between;gap:.5rem;min-height:2.75rem;padding:.5rem .75rem;border-top:1px solid rgb(var(--ax-sys-color-border-light-surface));background:rgb(var(--ax-sys-color-light-surface));font-size:.8125rem;font-weight:500;color:rgb(var(--ax-sys-color-primary-600));text-decoration:none;touch-action:manipulation;transition:background .15s ease,color .15s ease}@media(hover:hover){.ax-conversation-loc__action:hover{background:rgb(var(--ax-sys-color-primary-lightest-surface));color:rgb(var(--ax-sys-color-primary-700))}}.ax-conversation-loc__action i{font-size:.75rem;opacity:.85}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$5.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "readonly", "disabled", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }, { kind: "component", type: AXConversationMessageRendererStateComponent, selector: "ax-conversation-message-renderer-state", inputs: ["rendererState", "message", "contentErrorLabel", "deliveryFailedLabel", "showContentErrorChrome", "contentErrorStyle", "contentErrorIconClass", "placement", "contentRetryEnabled"], outputs: ["contentRetry"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
20851
|
+
`, isInline: true, styles: [":host{display:block}:host{max-width:100%}.ax-conversation-loc{display:flex;flex-direction:column;width:100%;max-width:min(100%,20rem);border-radius:var(--ax-sys-border-radius, .5rem);border:1px solid rgb(var(--ax-sys-color-border-light-surface));overflow:hidden;background:rgb(var(--ax-sys-color-surface));color:rgb(var(--ax-sys-color-on-surface))}.ax-conversation-loc__map{position:relative;height:min(28dvh,10rem);width:100%;overflow:hidden}@container conversation (min-width: 480px){.ax-conversation-loc__map{height:10.5rem}}.ax-conversation-loc__map ::ng-deep ax-map{display:block;height:100%;width:100%}.ax-conversation-loc__body{padding:.625rem .75rem .5rem;display:flex;flex-direction:column;gap:.25rem}.ax-conversation-loc__title{display:flex;align-items:center;font-size:.875rem;font-weight:600;line-height:1.2}.ax-conversation-loc__title-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ax-conversation-loc__addr{font-size:.75rem;opacity:.78;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ax-conversation-loc__meta{display:flex;align-items:center;gap:.5rem}.ax-conversation-loc__coords{font-size:.6875rem;opacity:.62;font-variant-numeric:tabular-nums;font-family:ui-monospace,monospace}.ax-conversation-loc__action{display:flex;align-items:center;justify-content:space-between;gap:.5rem;min-height:2.75rem;padding:.5rem .75rem;border-top:1px solid rgb(var(--ax-sys-color-border-light-surface));background:rgb(var(--ax-sys-color-light-surface));font-size:.8125rem;font-weight:500;color:rgb(var(--ax-sys-color-primary-600));text-decoration:none;touch-action:manipulation;transition:background .15s ease,color .15s ease}@media(hover:hover){.ax-conversation-loc__action:hover{background:rgb(var(--ax-sys-color-primary-lightest-surface));color:rgb(var(--ax-sys-color-primary-700))}}.ax-conversation-loc__action i{font-size:.75rem;opacity:.85}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXMapModule }, { kind: "component", type: i1$5.AXMapComponent, selector: "ax-map", inputs: ["zoomLevel", "latitude", "longitude", "maxMarker", "maxPolygon", "maxPolyline", "maxRectangle", "maxCircle", "hasDraw", "hasLocator", "fitToDraw", "limitDraw", "addPoiToFitDraw", "addMarkerOnTap", "readonly", "disabled", "markerPlace", "locatePlace", "poiMinZoom", "markers", "polygons", "polylines", "rectangles", "circles", "pois"], outputs: ["zoomLevelChange", "latitudeChange", "longitudeChange", "onMarkerAdded", "onMarkerClick", "onMarkerChanged", "onPolygonAdded", "onPolygonClick", "onPolygonChanged", "onPolylineAdded", "onPolylineClick", "onPolylineChanged", "onRectangleAdded", "onRectangleClick", "onRectangleChanged", "onCircleAdded", "onCircleClick", "onCircleChanged", "onLocationFound", "onPoiChanged", "onPoiAdded", "onMapReady", "onLoadError"] }, { kind: "component", type: AXConversationMessageRendererStateComponent, selector: "ax-conversation-message-renderer-state", inputs: ["rendererState", "message", "contentErrorLabel", "deliveryFailedLabel", "showContentErrorChrome", "contentErrorStyle", "contentErrorIconClass", "placement", "contentRetryEnabled"], outputs: ["contentRetry"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
20852
20852
|
}
|
|
20853
20853
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: AXConversationLocationRendererComponent, decorators: [{
|
|
20854
20854
|
type: Component,
|