stentor-models 1.69.14 → 1.72.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/lib/Form/FormField.d.ts +8 -0
- package/package.json +4 -4
package/lib/Form/FormField.d.ts
CHANGED
|
@@ -409,4 +409,12 @@ export interface SelectableItem {
|
|
|
409
409
|
* When true, the item will be shown as selected by default
|
|
410
410
|
*/
|
|
411
411
|
selected?: boolean;
|
|
412
|
+
/**
|
|
413
|
+
* Optional start time for time window chips (e.g., "10:00" in 24-hour format or ISO time)
|
|
414
|
+
*/
|
|
415
|
+
startTime?: string;
|
|
416
|
+
/**
|
|
417
|
+
* Optional end time for time window chips (e.g., "18:00" in 24-hour format or ISO time)
|
|
418
|
+
*/
|
|
419
|
+
endTime?: string;
|
|
412
420
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.72.0",
|
|
8
8
|
"description": "Models for 📣 stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"typings": "lib/index",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"node": "^12 || ^14 || ^16 || ^18 || ^20 || ^22 || ^24.0.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@microsoft/api-extractor": "7.
|
|
20
|
+
"@microsoft/api-extractor": "7.58.5",
|
|
21
21
|
"@rollup/plugin-typescript": "12.3.0",
|
|
22
22
|
"@xapp/config": "0.2.3",
|
|
23
23
|
"rollup": "3.30.0",
|
|
24
24
|
"tslib": "2.8.1",
|
|
25
|
-
"typescript": "
|
|
25
|
+
"typescript": "6.0.3"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"api": "api-extractor run --local",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@xapp/patterns": "2.0.3"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "3e12df42cbc8e15e4a6de3ebec10f96f09563a16"
|
|
37
37
|
}
|