wenum 1.22.0 → 1.22.1
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
- package/src/attribute/label.ts +2 -0
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -476,7 +476,8 @@ var ATTRIBUTE_LABEL_COLLECTION = {
|
|
|
476
476
|
// src/attribute/label.ts
|
|
477
477
|
var ATTRIBUTE_LABEL = {
|
|
478
478
|
[2 /* Uoi */]: ATTRIBUTE_LABEL_UOI,
|
|
479
|
-
[5 /* Collection */]: ATTRIBUTE_LABEL_COLLECTION
|
|
479
|
+
[5 /* Collection */]: ATTRIBUTE_LABEL_COLLECTION,
|
|
480
|
+
[0 /* None */]: ATTRIBUTE_LABEL_COMMON
|
|
480
481
|
};
|
|
481
482
|
|
|
482
483
|
// src/pageUpdate.ts
|
package/dist/index.mjs
CHANGED
|
@@ -404,7 +404,8 @@ var ATTRIBUTE_LABEL_COLLECTION = {
|
|
|
404
404
|
// src/attribute/label.ts
|
|
405
405
|
var ATTRIBUTE_LABEL = {
|
|
406
406
|
[2 /* Uoi */]: ATTRIBUTE_LABEL_UOI,
|
|
407
|
-
[5 /* Collection */]: ATTRIBUTE_LABEL_COLLECTION
|
|
407
|
+
[5 /* Collection */]: ATTRIBUTE_LABEL_COLLECTION,
|
|
408
|
+
[0 /* None */]: ATTRIBUTE_LABEL_COMMON
|
|
408
409
|
};
|
|
409
410
|
|
|
410
411
|
// src/pageUpdate.ts
|
package/package.json
CHANGED
package/src/attribute/label.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
import { ProfileType } from '../page';
|
|
3
3
|
import { ATTRIBUTE_LABEL_COLLECTION } from './collection/label';
|
|
4
|
+
import { ATTRIBUTE_LABEL_COMMON } from './common';
|
|
4
5
|
import { ATTRIBUTE_LABEL_UOI } from './uoi';
|
|
5
6
|
|
|
6
7
|
export const ATTRIBUTE_LABEL = {
|
|
7
8
|
[ProfileType.Uoi]: ATTRIBUTE_LABEL_UOI,
|
|
8
9
|
[ProfileType.Collection]: ATTRIBUTE_LABEL_COLLECTION,
|
|
10
|
+
[ProfileType.None]: ATTRIBUTE_LABEL_COMMON,
|
|
9
11
|
};
|