@fmsim/board 0.0.77 → 0.0.79

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.
Files changed (26) hide show
  1. package/custom-elements.json +290 -282
  2. package/dist/src/modeller/property-sidebar/data-binding/data-binding-value-map.js +2 -1
  3. package/dist/src/modeller/property-sidebar/data-binding/data-binding-value-map.js.map +1 -1
  4. package/dist/src/modeller/property-sidebar/data-binding/data-binding-value-range.js +2 -1
  5. package/dist/src/modeller/property-sidebar/data-binding/data-binding-value-range.js.map +1 -1
  6. package/dist/src/modeller/property-sidebar/styles/styles.d.ts +1 -0
  7. package/dist/src/modeller/property-sidebar/styles/styles.js +19 -10
  8. package/dist/src/modeller/property-sidebar/styles/styles.js.map +1 -1
  9. package/dist/src/ox-board-component-info.js +2 -1
  10. package/dist/src/ox-board-component-info.js.map +1 -1
  11. package/dist/src/ox-board-modeller.js +3 -1
  12. package/dist/src/ox-board-modeller.js.map +1 -1
  13. package/dist/src/ox-board-viewer.js +3 -1
  14. package/dist/src/ox-board-viewer.js.map +1 -1
  15. package/dist/src/ox-editor-board-selector.js +2 -1
  16. package/dist/src/ox-editor-board-selector.js.map +1 -1
  17. package/dist/src/selector/board-creation-popup.js +2 -1
  18. package/dist/src/selector/board-creation-popup.js.map +1 -1
  19. package/dist/src/selector/board-thumbnail-card.js +2 -1
  20. package/dist/src/selector/board-thumbnail-card.js.map +1 -1
  21. package/dist/src/selector/ox-board-creation-card.js +2 -1
  22. package/dist/src/selector/ox-board-creation-card.js.map +1 -1
  23. package/dist/src/selector/ox-board-selector.js +2 -1
  24. package/dist/src/selector/ox-board-selector.js.map +1 -1
  25. package/dist/tsconfig.tsbuildinfo +1 -1
  26. package/package.json +3 -3
@@ -2,69 +2,6 @@
2
2
  "schemaVersion": "1.0.0",
3
3
  "readme": "",
4
4
  "modules": [
5
- {
6
- "kind": "javascript-module",
7
- "path": "stories/index.stories.ts",
8
- "declarations": [
9
- {
10
- "kind": "variable",
11
- "name": "Regular"
12
- },
13
- {
14
- "kind": "variable",
15
- "name": "CustomTitle"
16
- },
17
- {
18
- "kind": "variable",
19
- "name": "CustomCounter"
20
- },
21
- {
22
- "kind": "variable",
23
- "name": "SlottedContent"
24
- }
25
- ],
26
- "exports": [
27
- {
28
- "kind": "js",
29
- "name": "default",
30
- "declaration": {
31
- "module": "stories/index.stories.ts"
32
- }
33
- },
34
- {
35
- "kind": "js",
36
- "name": "Regular",
37
- "declaration": {
38
- "name": "Regular",
39
- "module": "stories/index.stories.ts"
40
- }
41
- },
42
- {
43
- "kind": "js",
44
- "name": "CustomTitle",
45
- "declaration": {
46
- "name": "CustomTitle",
47
- "module": "stories/index.stories.ts"
48
- }
49
- },
50
- {
51
- "kind": "js",
52
- "name": "CustomCounter",
53
- "declaration": {
54
- "name": "CustomCounter",
55
- "module": "stories/index.stories.ts"
56
- }
57
- },
58
- {
59
- "kind": "js",
60
- "name": "SlottedContent",
61
- "declaration": {
62
- "name": "SlottedContent",
63
- "module": "stories/index.stories.ts"
64
- }
65
- }
66
- ]
67
- },
68
5
  {
69
6
  "kind": "javascript-module",
70
7
  "path": "src/index.ts",
@@ -1672,59 +1609,63 @@
1672
1609
  },
1673
1610
  {
1674
1611
  "kind": "javascript-module",
1675
- "path": "src/component/etc.ts",
1612
+ "path": "stories/index.stories.ts",
1676
1613
  "declarations": [
1677
1614
  {
1678
1615
  "kind": "variable",
1679
- "name": "etc",
1680
- "type": {
1681
- "text": "ComponentGroup"
1682
- },
1683
- "default": "{\n name: 'etc',\n description: 'a group of components that have not yet been defined.',\n icon,\n templates: [\n {\n type: 'rect',\n description: 'rectangle shape',\n icon: rect,\n group: 'shape',\n model: {\n type: 'rect',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'ellipse',\n description: 'ellipse shape',\n icon: ellipse,\n group: 'shape',\n model: {\n type: 'ellipse',\n rx: 50,\n ry: 50,\n cx: 150,\n cy: 150,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'line',\n description: 'simple line',\n icon: lineIcon,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 3,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'dash',\n description: 'dash line',\n icon: dash,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 3,\n lineDash: 'round-dot',\n lineCap: 'butt'\n }\n }\n ]\n}"
1616
+ "name": "Regular"
1617
+ },
1618
+ {
1619
+ "kind": "variable",
1620
+ "name": "CustomTitle"
1621
+ },
1622
+ {
1623
+ "kind": "variable",
1624
+ "name": "CustomCounter"
1625
+ },
1626
+ {
1627
+ "kind": "variable",
1628
+ "name": "SlottedContent"
1684
1629
  }
1685
1630
  ],
1686
1631
  "exports": [
1687
1632
  {
1688
1633
  "kind": "js",
1689
- "name": "etc",
1634
+ "name": "default",
1690
1635
  "declaration": {
1691
- "name": "etc",
1692
- "module": "src/component/etc.ts"
1636
+ "module": "stories/index.stories.ts"
1693
1637
  }
1694
- }
1695
- ]
1696
- },
1697
- {
1698
- "kind": "javascript-module",
1699
- "path": "src/component/index.ts",
1700
- "declarations": [],
1701
- "exports": [
1638
+ },
1702
1639
  {
1703
1640
  "kind": "js",
1704
- "name": "*",
1641
+ "name": "Regular",
1705
1642
  "declaration": {
1706
- "name": "*",
1707
- "package": "./etc"
1643
+ "name": "Regular",
1644
+ "module": "stories/index.stories.ts"
1708
1645
  }
1709
- }
1710
- ]
1711
- },
1712
- {
1713
- "kind": "javascript-module",
1714
- "path": "src/component/register-default-groups.ts",
1715
- "declarations": [
1646
+ },
1716
1647
  {
1717
- "kind": "function",
1718
- "name": "registerDefaultGroups"
1719
- }
1720
- ],
1721
- "exports": [
1648
+ "kind": "js",
1649
+ "name": "CustomTitle",
1650
+ "declaration": {
1651
+ "name": "CustomTitle",
1652
+ "module": "stories/index.stories.ts"
1653
+ }
1654
+ },
1722
1655
  {
1723
1656
  "kind": "js",
1724
- "name": "registerDefaultGroups",
1657
+ "name": "CustomCounter",
1725
1658
  "declaration": {
1726
- "name": "registerDefaultGroups",
1727
- "module": "src/component/register-default-groups.ts"
1659
+ "name": "CustomCounter",
1660
+ "module": "stories/index.stories.ts"
1661
+ }
1662
+ },
1663
+ {
1664
+ "kind": "js",
1665
+ "name": "SlottedContent",
1666
+ "declaration": {
1667
+ "name": "SlottedContent",
1668
+ "module": "stories/index.stories.ts"
1728
1669
  }
1729
1670
  }
1730
1671
  ]
@@ -1821,6 +1762,65 @@
1821
1762
  }
1822
1763
  ]
1823
1764
  },
1765
+ {
1766
+ "kind": "javascript-module",
1767
+ "path": "src/component/etc.ts",
1768
+ "declarations": [
1769
+ {
1770
+ "kind": "variable",
1771
+ "name": "etc",
1772
+ "type": {
1773
+ "text": "ComponentGroup"
1774
+ },
1775
+ "default": "{\n name: 'etc',\n description: 'a group of components that have not yet been defined.',\n icon,\n templates: [\n {\n type: 'rect',\n description: 'rectangle shape',\n icon: rect,\n group: 'shape',\n model: {\n type: 'rect',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'ellipse',\n description: 'ellipse shape',\n icon: ellipse,\n group: 'shape',\n model: {\n type: 'ellipse',\n rx: 50,\n ry: 50,\n cx: 150,\n cy: 150,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'line',\n description: 'simple line',\n icon: lineIcon,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 3,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n },\n {\n type: 'dash',\n description: 'dash line',\n icon: dash,\n group: 'line',\n model: {\n type: 'line',\n x1: 100,\n y1: 100,\n x2: 200,\n y2: 200,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 3,\n lineDash: 'round-dot',\n lineCap: 'butt'\n }\n }\n ]\n}"
1776
+ }
1777
+ ],
1778
+ "exports": [
1779
+ {
1780
+ "kind": "js",
1781
+ "name": "etc",
1782
+ "declaration": {
1783
+ "name": "etc",
1784
+ "module": "src/component/etc.ts"
1785
+ }
1786
+ }
1787
+ ]
1788
+ },
1789
+ {
1790
+ "kind": "javascript-module",
1791
+ "path": "src/component/index.ts",
1792
+ "declarations": [],
1793
+ "exports": [
1794
+ {
1795
+ "kind": "js",
1796
+ "name": "*",
1797
+ "declaration": {
1798
+ "name": "*",
1799
+ "package": "./etc"
1800
+ }
1801
+ }
1802
+ ]
1803
+ },
1804
+ {
1805
+ "kind": "javascript-module",
1806
+ "path": "src/component/register-default-groups.ts",
1807
+ "declarations": [
1808
+ {
1809
+ "kind": "function",
1810
+ "name": "registerDefaultGroups"
1811
+ }
1812
+ ],
1813
+ "exports": [
1814
+ {
1815
+ "kind": "js",
1816
+ "name": "registerDefaultGroups",
1817
+ "declaration": {
1818
+ "name": "registerDefaultGroups",
1819
+ "module": "src/component/register-default-groups.ts"
1820
+ }
1821
+ }
1822
+ ]
1823
+ },
1824
1824
  {
1825
1825
  "kind": "javascript-module",
1826
1826
  "path": "src/layers/mcs-mouse-event-handler.ts",
@@ -6238,12 +6238,12 @@
6238
6238
  },
6239
6239
  {
6240
6240
  "kind": "javascript-module",
6241
- "path": "src/modeller/property-sidebar/styles/styles.ts",
6241
+ "path": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts",
6242
6242
  "declarations": [
6243
6243
  {
6244
6244
  "kind": "class",
6245
6245
  "description": "",
6246
- "name": "PropertyStyles",
6246
+ "name": "SpecificPropertiesBuilder",
6247
6247
  "members": [
6248
6248
  {
6249
6249
  "kind": "field",
@@ -6251,221 +6251,63 @@
6251
6251
  "type": {
6252
6252
  "text": "any"
6253
6253
  },
6254
- "default": "{}",
6255
6254
  "attribute": "value"
6256
6255
  },
6257
6256
  {
6258
6257
  "kind": "field",
6259
- "name": "selected",
6258
+ "name": "props",
6260
6259
  "type": {
6261
- "text": "Component[]"
6260
+ "text": "any[]"
6262
6261
  },
6263
6262
  "default": "[]",
6264
- "attribute": "selected"
6263
+ "attribute": "props"
6265
6264
  },
6266
6265
  {
6267
6266
  "kind": "field",
6268
- "name": "fonts",
6267
+ "name": "propertyEditor",
6269
6268
  "type": {
6270
- "text": "any[]"
6269
+ "text": "any"
6271
6270
  },
6272
- "default": "[]",
6273
- "attribute": "fonts"
6271
+ "attribute": "propertyEditor"
6274
6272
  },
6275
6273
  {
6276
6274
  "kind": "method",
6277
- "name": "_isLine",
6275
+ "name": "_onPropsChanged",
6278
6276
  "parameters": [
6279
6277
  {
6280
- "name": "selected",
6278
+ "name": "props",
6281
6279
  "type": {
6282
- "text": "Component[]"
6280
+ "text": "any[]"
6283
6281
  }
6284
6282
  }
6285
6283
  ]
6286
6284
  },
6287
6285
  {
6288
6286
  "kind": "method",
6289
- "name": "_onValueChange",
6290
- "parameters": [
6291
- {
6292
- "name": "e",
6293
- "type": {
6294
- "text": "Event"
6295
- }
6296
- }
6297
- ],
6298
- "inheritedFrom": {
6299
- "name": "AbstractProperty",
6300
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6301
- }
6287
+ "name": "_setValues"
6302
6288
  },
6303
6289
  {
6304
6290
  "kind": "method",
6305
- "name": "_getValueFromEventTarget",
6291
+ "name": "_onValueChanged",
6306
6292
  "parameters": [
6307
6293
  {
6308
- "name": "element",
6294
+ "name": "e",
6309
6295
  "type": {
6310
- "text": "HTMLElement"
6296
+ "text": "Event"
6311
6297
  }
6312
6298
  }
6313
- ],
6314
- "inheritedFrom": {
6315
- "name": "AbstractProperty",
6316
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6299
+ ]
6300
+ }
6301
+ ],
6302
+ "events": [
6303
+ {
6304
+ "name": "property-change",
6305
+ "type": {
6306
+ "text": "CustomEvent"
6317
6307
  }
6318
- },
6319
- {
6320
- "kind": "method",
6321
- "name": "_onAfterValueChange",
6322
- "parameters": [
6323
- {
6324
- "name": "key",
6325
- "type": {
6326
- "text": "string"
6327
- }
6328
- },
6329
- {
6330
- "name": "value",
6331
- "type": {
6332
- "text": "any"
6333
- }
6334
- }
6335
- ],
6336
- "inheritedFrom": {
6337
- "name": "AbstractProperty",
6338
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6339
- }
6340
- }
6341
- ],
6342
- "attributes": [
6343
- {
6344
- "name": "value",
6345
- "type": {
6346
- "text": "any"
6347
- },
6348
- "default": "{}",
6349
- "fieldName": "value"
6350
- },
6351
- {
6352
- "name": "selected",
6353
- "type": {
6354
- "text": "Component[]"
6355
- },
6356
- "default": "[]",
6357
- "fieldName": "selected"
6358
- },
6359
- {
6360
- "name": "fonts",
6361
- "type": {
6362
- "text": "any[]"
6363
- },
6364
- "default": "[]",
6365
- "fieldName": "fonts"
6366
- }
6367
- ],
6368
- "superclass": {
6369
- "name": "AbstractProperty",
6370
- "module": "/src/modeller/property-sidebar/abstract-property.js"
6371
- },
6372
- "events": [
6373
- {
6374
- "name": "property-change",
6375
- "type": {
6376
- "text": "CustomEvent"
6377
- },
6378
- "inheritedFrom": {
6379
- "name": "AbstractProperty",
6380
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6381
- }
6382
- }
6383
- ]
6384
- }
6385
- ],
6386
- "exports": [
6387
- {
6388
- "kind": "js",
6389
- "name": "PropertyStyles",
6390
- "declaration": {
6391
- "name": "PropertyStyles",
6392
- "module": "src/modeller/property-sidebar/styles/styles.ts"
6393
- }
6394
- }
6395
- ]
6396
- },
6397
- {
6398
- "kind": "javascript-module",
6399
- "path": "src/modeller/property-sidebar/specifics/specific-properties-builder.ts",
6400
- "declarations": [
6401
- {
6402
- "kind": "class",
6403
- "description": "",
6404
- "name": "SpecificPropertiesBuilder",
6405
- "members": [
6406
- {
6407
- "kind": "field",
6408
- "name": "value",
6409
- "type": {
6410
- "text": "any"
6411
- },
6412
- "attribute": "value"
6413
- },
6414
- {
6415
- "kind": "field",
6416
- "name": "props",
6417
- "type": {
6418
- "text": "any[]"
6419
- },
6420
- "default": "[]",
6421
- "attribute": "props"
6422
- },
6423
- {
6424
- "kind": "field",
6425
- "name": "propertyEditor",
6426
- "type": {
6427
- "text": "any"
6428
- },
6429
- "attribute": "propertyEditor"
6430
- },
6431
- {
6432
- "kind": "method",
6433
- "name": "_onPropsChanged",
6434
- "parameters": [
6435
- {
6436
- "name": "props",
6437
- "type": {
6438
- "text": "any[]"
6439
- }
6440
- }
6441
- ]
6442
- },
6443
- {
6444
- "kind": "method",
6445
- "name": "_setValues"
6446
- },
6447
- {
6448
- "kind": "method",
6449
- "name": "_onValueChanged",
6450
- "parameters": [
6451
- {
6452
- "name": "e",
6453
- "type": {
6454
- "text": "Event"
6455
- }
6456
- }
6457
- ]
6458
- }
6459
- ],
6460
- "events": [
6461
- {
6462
- "name": "property-change",
6463
- "type": {
6464
- "text": "CustomEvent"
6465
- }
6466
- }
6467
- ],
6468
- "attributes": [
6308
+ }
6309
+ ],
6310
+ "attributes": [
6469
6311
  {
6470
6312
  "name": "value",
6471
6313
  "type": {
@@ -6740,6 +6582,172 @@
6740
6582
  }
6741
6583
  }
6742
6584
  ]
6585
+ },
6586
+ {
6587
+ "kind": "javascript-module",
6588
+ "path": "src/modeller/property-sidebar/styles/styles.ts",
6589
+ "declarations": [
6590
+ {
6591
+ "kind": "class",
6592
+ "description": "",
6593
+ "name": "PropertyStyles",
6594
+ "members": [
6595
+ {
6596
+ "kind": "field",
6597
+ "name": "value",
6598
+ "type": {
6599
+ "text": "any"
6600
+ },
6601
+ "default": "{}",
6602
+ "attribute": "value"
6603
+ },
6604
+ {
6605
+ "kind": "field",
6606
+ "name": "selected",
6607
+ "type": {
6608
+ "text": "Component[]"
6609
+ },
6610
+ "default": "[]",
6611
+ "attribute": "selected"
6612
+ },
6613
+ {
6614
+ "kind": "field",
6615
+ "name": "fonts",
6616
+ "type": {
6617
+ "text": "any[]"
6618
+ },
6619
+ "default": "[]",
6620
+ "attribute": "fonts"
6621
+ },
6622
+ {
6623
+ "kind": "field",
6624
+ "name": "fontAvailable",
6625
+ "type": {
6626
+ "text": "boolean"
6627
+ },
6628
+ "default": "false"
6629
+ },
6630
+ {
6631
+ "kind": "method",
6632
+ "name": "_isLine",
6633
+ "parameters": [
6634
+ {
6635
+ "name": "selected",
6636
+ "type": {
6637
+ "text": "Component[]"
6638
+ }
6639
+ }
6640
+ ]
6641
+ },
6642
+ {
6643
+ "kind": "method",
6644
+ "name": "_onValueChange",
6645
+ "parameters": [
6646
+ {
6647
+ "name": "e",
6648
+ "type": {
6649
+ "text": "Event"
6650
+ }
6651
+ }
6652
+ ],
6653
+ "inheritedFrom": {
6654
+ "name": "AbstractProperty",
6655
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6656
+ }
6657
+ },
6658
+ {
6659
+ "kind": "method",
6660
+ "name": "_getValueFromEventTarget",
6661
+ "parameters": [
6662
+ {
6663
+ "name": "element",
6664
+ "type": {
6665
+ "text": "HTMLElement"
6666
+ }
6667
+ }
6668
+ ],
6669
+ "inheritedFrom": {
6670
+ "name": "AbstractProperty",
6671
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6672
+ }
6673
+ },
6674
+ {
6675
+ "kind": "method",
6676
+ "name": "_onAfterValueChange",
6677
+ "parameters": [
6678
+ {
6679
+ "name": "key",
6680
+ "type": {
6681
+ "text": "string"
6682
+ }
6683
+ },
6684
+ {
6685
+ "name": "value",
6686
+ "type": {
6687
+ "text": "any"
6688
+ }
6689
+ }
6690
+ ],
6691
+ "inheritedFrom": {
6692
+ "name": "AbstractProperty",
6693
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6694
+ }
6695
+ }
6696
+ ],
6697
+ "attributes": [
6698
+ {
6699
+ "name": "value",
6700
+ "type": {
6701
+ "text": "any"
6702
+ },
6703
+ "default": "{}",
6704
+ "fieldName": "value"
6705
+ },
6706
+ {
6707
+ "name": "selected",
6708
+ "type": {
6709
+ "text": "Component[]"
6710
+ },
6711
+ "default": "[]",
6712
+ "fieldName": "selected"
6713
+ },
6714
+ {
6715
+ "name": "fonts",
6716
+ "type": {
6717
+ "text": "any[]"
6718
+ },
6719
+ "default": "[]",
6720
+ "fieldName": "fonts"
6721
+ }
6722
+ ],
6723
+ "superclass": {
6724
+ "name": "AbstractProperty",
6725
+ "module": "/src/modeller/property-sidebar/abstract-property.js"
6726
+ },
6727
+ "events": [
6728
+ {
6729
+ "name": "property-change",
6730
+ "type": {
6731
+ "text": "CustomEvent"
6732
+ },
6733
+ "inheritedFrom": {
6734
+ "name": "AbstractProperty",
6735
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6736
+ }
6737
+ }
6738
+ ]
6739
+ }
6740
+ ],
6741
+ "exports": [
6742
+ {
6743
+ "kind": "js",
6744
+ "name": "PropertyStyles",
6745
+ "declaration": {
6746
+ "name": "PropertyStyles",
6747
+ "module": "src/modeller/property-sidebar/styles/styles.ts"
6748
+ }
6749
+ }
6750
+ ]
6743
6751
  }
6744
6752
  ]
6745
6753
  }
@@ -4,7 +4,7 @@ import { customElement } from 'lit/decorators.js';
4
4
  import { ifDefined } from 'lit/directives/if-defined.js';
5
5
  import { OxInputValueMap } from '@operato/input';
6
6
  import '@operato/attachment/ox-attachment-selector.js';
7
- export let DataBindingValueMap = class DataBindingValueMap extends OxInputValueMap {
7
+ let DataBindingValueMap = class DataBindingValueMap extends OxInputValueMap {
8
8
  valueInputTemplate(value) {
9
9
  if (this.valuetype == 'attachment') {
10
10
  return html `<ox-attachment-selector data-value value=${ifDefined(value)}></ox-attachment-selector>`;
@@ -16,4 +16,5 @@ DataBindingValueMap.styles = OxInputValueMap.styles;
16
16
  DataBindingValueMap = __decorate([
17
17
  customElement('data-binding-value-map')
18
18
  ], DataBindingValueMap);
19
+ export { DataBindingValueMap };
19
20
  //# sourceMappingURL=data-binding-value-map.js.map