@nxtedition/types 23.0.58 → 23.0.59
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/dist/common/settings.d.ts +15 -1
- package/dist/nxtpression.d.ts +20 -1
- package/dist/records/domains/script.d.ts +4 -0
- package/dist/records/domains/search.d.ts +1 -0
- package/dist/records/validate/assert-guard.js +464 -344
- package/dist/records/validate/assert.js +464 -344
- package/dist/records/validate/is.js +26 -26
- package/dist/records/validate/schemas.js +84 -2
- package/dist/records/validate/stringify.js +45 -45
- package/dist/records/validate/validate-equals.js +599 -411
- package/dist/records/validate/validate.js +436 -340
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ export interface Settings {
|
|
|
10
10
|
overrideUserLogin?: boolean;
|
|
11
11
|
};
|
|
12
12
|
module?: {
|
|
13
|
+
editor?: string;
|
|
13
14
|
tabs?: ModuleTabs;
|
|
14
15
|
};
|
|
15
16
|
upload?: {
|
|
@@ -39,6 +40,7 @@ export interface Settings {
|
|
|
39
40
|
};
|
|
40
41
|
};
|
|
41
42
|
toolbarTags?: {
|
|
43
|
+
include?: string[];
|
|
42
44
|
exclude?: string[];
|
|
43
45
|
};
|
|
44
46
|
/**
|
|
@@ -74,6 +76,10 @@ export interface Settings {
|
|
|
74
76
|
dashboard?: {
|
|
75
77
|
maxMru?: number;
|
|
76
78
|
maxTabs?: number;
|
|
79
|
+
layout?: {
|
|
80
|
+
bookmarks?: number;
|
|
81
|
+
browser?: number;
|
|
82
|
+
};
|
|
77
83
|
};
|
|
78
84
|
script?: {
|
|
79
85
|
createMenu?: {
|
|
@@ -104,6 +110,7 @@ export interface Settings {
|
|
|
104
110
|
gallery?: {
|
|
105
111
|
dimOnBlur?: boolean;
|
|
106
112
|
float?: "rundown" | "gallery" | "disabled";
|
|
113
|
+
countFloatedDuration?: boolean;
|
|
107
114
|
};
|
|
108
115
|
history?: boolean;
|
|
109
116
|
keymap?: {
|
|
@@ -308,6 +315,12 @@ export interface Settings {
|
|
|
308
315
|
};
|
|
309
316
|
};
|
|
310
317
|
suppressDeleteAlert?: boolean;
|
|
318
|
+
clone?: {
|
|
319
|
+
duplicate?: {
|
|
320
|
+
titlePrefix?: string;
|
|
321
|
+
titleSuffix?: string;
|
|
322
|
+
};
|
|
323
|
+
};
|
|
311
324
|
utilsAssetEditorPanel?: {
|
|
312
325
|
stateFilter?: number[];
|
|
313
326
|
textFilter?: string;
|
|
@@ -323,7 +336,8 @@ interface ModuleTabs {
|
|
|
323
336
|
settingsPanelStore?: SettingsPanelStoreTab;
|
|
324
337
|
}
|
|
325
338
|
interface ModuleTabsSettingsValue {
|
|
326
|
-
activeTab?: string;
|
|
339
|
+
activeTab?: string | null;
|
|
340
|
+
priority?: number;
|
|
327
341
|
}
|
|
328
342
|
interface SettingsPanelStoreTab extends ModuleTabsSettingsValue {
|
|
329
343
|
activeSectionIndex?: number;
|
package/dist/nxtpression.d.ts
CHANGED
|
@@ -1536,7 +1536,8 @@ declare interface ModuleTabs {
|
|
|
1536
1536
|
}
|
|
1537
1537
|
|
|
1538
1538
|
declare interface ModuleTabsSettingsValue {
|
|
1539
|
-
activeTab?: string;
|
|
1539
|
+
activeTab?: string | null;
|
|
1540
|
+
priority?: number;
|
|
1540
1541
|
}
|
|
1541
1542
|
|
|
1542
1543
|
declare interface MonitorDomainRecords {
|
|
@@ -2546,6 +2547,10 @@ declare interface ScriptEditorStateRevisionRecord {
|
|
|
2546
2547
|
|
|
2547
2548
|
declare interface ScriptRecord {
|
|
2548
2549
|
value: YjsSnapshot;
|
|
2550
|
+
refs?: {
|
|
2551
|
+
mixin: string;
|
|
2552
|
+
asset?: string;
|
|
2553
|
+
}[];
|
|
2549
2554
|
}
|
|
2550
2555
|
|
|
2551
2556
|
declare interface ScriptRevision {
|
|
@@ -2616,6 +2621,7 @@ declare interface SearchRecord {
|
|
|
2616
2621
|
};
|
|
2617
2622
|
refreshInterval?: number;
|
|
2618
2623
|
color?: string;
|
|
2624
|
+
icon?: string;
|
|
2619
2625
|
}
|
|
2620
2626
|
|
|
2621
2627
|
declare interface SearchRecordProvided {
|
|
@@ -2724,6 +2730,7 @@ declare interface Settings {
|
|
|
2724
2730
|
overrideUserLogin?: boolean;
|
|
2725
2731
|
};
|
|
2726
2732
|
module?: {
|
|
2733
|
+
editor?: string;
|
|
2727
2734
|
tabs?: ModuleTabs;
|
|
2728
2735
|
};
|
|
2729
2736
|
upload?: {
|
|
@@ -2753,6 +2760,7 @@ declare interface Settings {
|
|
|
2753
2760
|
};
|
|
2754
2761
|
};
|
|
2755
2762
|
toolbarTags?: {
|
|
2763
|
+
include?: string[];
|
|
2756
2764
|
exclude?: string[];
|
|
2757
2765
|
};
|
|
2758
2766
|
/**
|
|
@@ -2788,6 +2796,10 @@ declare interface Settings {
|
|
|
2788
2796
|
dashboard?: {
|
|
2789
2797
|
maxMru?: number;
|
|
2790
2798
|
maxTabs?: number;
|
|
2799
|
+
layout?: {
|
|
2800
|
+
bookmarks?: number;
|
|
2801
|
+
browser?: number;
|
|
2802
|
+
};
|
|
2791
2803
|
};
|
|
2792
2804
|
script?: {
|
|
2793
2805
|
createMenu?: {
|
|
@@ -2818,6 +2830,7 @@ declare interface Settings {
|
|
|
2818
2830
|
gallery?: {
|
|
2819
2831
|
dimOnBlur?: boolean;
|
|
2820
2832
|
float?: "rundown" | "gallery" | "disabled";
|
|
2833
|
+
countFloatedDuration?: boolean;
|
|
2821
2834
|
};
|
|
2822
2835
|
history?: boolean;
|
|
2823
2836
|
keymap?: {
|
|
@@ -3022,6 +3035,12 @@ declare interface Settings {
|
|
|
3022
3035
|
};
|
|
3023
3036
|
};
|
|
3024
3037
|
suppressDeleteAlert?: boolean;
|
|
3038
|
+
clone?: {
|
|
3039
|
+
duplicate?: {
|
|
3040
|
+
titlePrefix?: string;
|
|
3041
|
+
titleSuffix?: string;
|
|
3042
|
+
};
|
|
3043
|
+
};
|
|
3025
3044
|
utilsAssetEditorPanel?: {
|
|
3026
3045
|
stateFilter?: number[];
|
|
3027
3046
|
textFilter?: string;
|