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 CHANGED
@@ -312,6 +312,9 @@ declare const ATTRIBUTE_LABEL: {
312
312
  5: {
313
313
  pets: typeof AttributeLabelCollectionPets;
314
314
  };
315
+ 0: {
316
+ 0: string;
317
+ };
315
318
  };
316
319
 
317
320
  declare enum PageUpdateType {
package/dist/index.d.ts CHANGED
@@ -312,6 +312,9 @@ declare const ATTRIBUTE_LABEL: {
312
312
  5: {
313
313
  pets: typeof AttributeLabelCollectionPets;
314
314
  };
315
+ 0: {
316
+ 0: string;
317
+ };
315
318
  };
316
319
 
317
320
  declare enum PageUpdateType {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.22.0",
3
+ "version": "1.22.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -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
  };