@lavalogic/scoria 0.0.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.
Files changed (581) hide show
  1. package/README.md +58 -0
  2. package/dist/Components/Action.svelte +258 -0
  3. package/dist/Components/Action.svelte.d.ts +30 -0
  4. package/dist/Components/AlertModal.svelte +373 -0
  5. package/dist/Components/AlertModal.svelte.d.ts +3 -0
  6. package/dist/Components/BigRadioSet.svelte +88 -0
  7. package/dist/Components/BigRadioSet.svelte.d.ts +30 -0
  8. package/dist/Components/Bubble.svelte +115 -0
  9. package/dist/Components/Bubble.svelte.d.ts +21 -0
  10. package/dist/Components/Button.svelte +540 -0
  11. package/dist/Components/Button.svelte.d.ts +32 -0
  12. package/dist/Components/Checkbox.svelte +168 -0
  13. package/dist/Components/Checkbox.svelte.d.ts +15 -0
  14. package/dist/Components/CollapsibleCard.svelte +136 -0
  15. package/dist/Components/CollapsibleCard.svelte.d.ts +11 -0
  16. package/dist/Components/Contexts/ContextMenu.svelte +73 -0
  17. package/dist/Components/Contexts/ContextMenu.svelte.d.ts +3 -0
  18. package/dist/Components/Contexts/ContextMenuDivider.svelte +11 -0
  19. package/dist/Components/Contexts/ContextMenuDivider.svelte.d.ts +6 -0
  20. package/dist/Components/Contexts/ContextMenuOption.svelte +65 -0
  21. package/dist/Components/Contexts/ContextMenuOption.svelte.d.ts +10 -0
  22. package/dist/Components/Contexts/Toast.svelte +89 -0
  23. package/dist/Components/Contexts/Toast.svelte.d.ts +8 -0
  24. package/dist/Components/Contexts/ToastContainer.svelte +54 -0
  25. package/dist/Components/Contexts/ToastContainer.svelte.d.ts +3 -0
  26. package/dist/Components/Contexts/Tooltip.svelte +116 -0
  27. package/dist/Components/Contexts/Tooltip.svelte.d.ts +3 -0
  28. package/dist/Components/DataMatrixIcon.svelte +58 -0
  29. package/dist/Components/DataMatrixIcon.svelte.d.ts +9 -0
  30. package/dist/Components/DateInput.svelte +356 -0
  31. package/dist/Components/DateInput.svelte.d.ts +24 -0
  32. package/dist/Components/DatePicker.svelte +346 -0
  33. package/dist/Components/DatePicker.svelte.d.ts +11 -0
  34. package/dist/Components/DesktopModal.svelte +235 -0
  35. package/dist/Components/DesktopModal.svelte.d.ts +23 -0
  36. package/dist/Components/Dial.svelte +219 -0
  37. package/dist/Components/Dial.svelte.d.ts +37 -0
  38. package/dist/Components/DimensionInput.svelte +486 -0
  39. package/dist/Components/DimensionInput.svelte.d.ts +32 -0
  40. package/dist/Components/FileCard.svelte +32 -0
  41. package/dist/Components/FileCard.svelte.d.ts +7 -0
  42. package/dist/Components/FileUpload.svelte +413 -0
  43. package/dist/Components/FileUpload.svelte.d.ts +27 -0
  44. package/dist/Components/GridInput.svelte +187 -0
  45. package/dist/Components/GridInput.svelte.d.ts +30 -0
  46. package/dist/Components/GridInputSet.svelte +37 -0
  47. package/dist/Components/GridInputSet.svelte.d.ts +30 -0
  48. package/dist/Components/HorizontalTabGroup.svelte +81 -0
  49. package/dist/Components/HorizontalTabGroup.svelte.d.ts +34 -0
  50. package/dist/Components/HorizontalTabGroupButton.svelte +85 -0
  51. package/dist/Components/HorizontalTabGroupButton.svelte.d.ts +29 -0
  52. package/dist/Components/Icon.svelte +1412 -0
  53. package/dist/Components/Icon.svelte.d.ts +887 -0
  54. package/dist/Components/LoadingAnimation.svelte +129 -0
  55. package/dist/Components/LoadingAnimation.svelte.d.ts +6 -0
  56. package/dist/Components/LoadingModal.svelte +316 -0
  57. package/dist/Components/LoadingModal.svelte.d.ts +7 -0
  58. package/dist/Components/LoadingOverlay.svelte +58 -0
  59. package/dist/Components/LoadingOverlay.svelte.d.ts +8 -0
  60. package/dist/Components/Modal.svelte +577 -0
  61. package/dist/Components/Modal.svelte.d.ts +31 -0
  62. package/dist/Components/MultiSelect.svelte +412 -0
  63. package/dist/Components/MultiSelect.svelte.d.ts +49 -0
  64. package/dist/Components/NumberInput.svelte +407 -0
  65. package/dist/Components/NumberInput.svelte.d.ts +32 -0
  66. package/dist/Components/PasswordInput.svelte +324 -0
  67. package/dist/Components/PasswordInput.svelte.d.ts +18 -0
  68. package/dist/Components/Portal.svelte +31 -0
  69. package/dist/Components/Portal.svelte.d.ts +8 -0
  70. package/dist/Components/ProgressBubble.svelte +134 -0
  71. package/dist/Components/ProgressBubble.svelte.d.ts +8 -0
  72. package/dist/Components/QuerySelect.svelte +556 -0
  73. package/dist/Components/QuerySelect.svelte.d.ts +52 -0
  74. package/dist/Components/SingleSelect.svelte +480 -0
  75. package/dist/Components/SingleSelect.svelte.d.ts +61 -0
  76. package/dist/Components/Switch.svelte +151 -0
  77. package/dist/Components/Switch.svelte.d.ts +12 -0
  78. package/dist/Components/Table/Body/QuickSearchCell.svelte +527 -0
  79. package/dist/Components/Table/Body/QuickSearchCell.svelte.d.ts +30 -0
  80. package/dist/Components/Table/Body/Rows/ColumnHighlight.svelte +67 -0
  81. package/dist/Components/Table/Body/Rows/ColumnHighlight.svelte.d.ts +8 -0
  82. package/dist/Components/Table/Body/Rows/ColumnList.svelte +67 -0
  83. package/dist/Components/Table/Body/Rows/ColumnList.svelte.d.ts +27 -0
  84. package/dist/Components/Table/Body/Rows/ColumnListRow.svelte +187 -0
  85. package/dist/Components/Table/Body/Rows/ColumnListRow.svelte.d.ts +28 -0
  86. package/dist/Components/Table/Body/Rows/Columns/ActionsCell.svelte +305 -0
  87. package/dist/Components/Table/Body/Rows/Columns/ActionsCell.svelte.d.ts +29 -0
  88. package/dist/Components/Table/Body/Rows/Columns/BubbleCell.svelte +171 -0
  89. package/dist/Components/Table/Body/Rows/Columns/BubbleCell.svelte.d.ts +28 -0
  90. package/dist/Components/Table/Body/Rows/Columns/ExpandCell.svelte +149 -0
  91. package/dist/Components/Table/Body/Rows/Columns/ExpandCell.svelte.d.ts +31 -0
  92. package/dist/Components/Table/Body/Rows/Columns/FocusableImmutableCell.svelte +156 -0
  93. package/dist/Components/Table/Body/Rows/Columns/FocusableImmutableCell.svelte.d.ts +31 -0
  94. package/dist/Components/Table/Body/Rows/Columns/ProgressCell.svelte +161 -0
  95. package/dist/Components/Table/Body/Rows/Columns/ProgressCell.svelte.d.ts +28 -0
  96. package/dist/Components/Table/Body/Rows/Columns/TableAction.svelte +62 -0
  97. package/dist/Components/Table/Body/Rows/Columns/TableAction.svelte.d.ts +30 -0
  98. package/dist/Components/Table/Body/Rows/Columns/TableCheckbox.svelte +155 -0
  99. package/dist/Components/Table/Body/Rows/Columns/TableCheckbox.svelte.d.ts +30 -0
  100. package/dist/Components/Table/Body/Rows/Columns/TableColumn.svelte +140 -0
  101. package/dist/Components/Table/Body/Rows/Columns/TableColumn.svelte.d.ts +31 -0
  102. package/dist/Components/Table/Body/Rows/Columns/TableDatePicker.svelte +290 -0
  103. package/dist/Components/Table/Body/Rows/Columns/TableDatePicker.svelte.d.ts +28 -0
  104. package/dist/Components/Table/Body/Rows/Columns/TableNumberInput.svelte +359 -0
  105. package/dist/Components/Table/Body/Rows/Columns/TableNumberInput.svelte.d.ts +28 -0
  106. package/dist/Components/Table/Body/Rows/Columns/TableQuerySelect.svelte +331 -0
  107. package/dist/Components/Table/Body/Rows/Columns/TableQuerySelect.svelte.d.ts +28 -0
  108. package/dist/Components/Table/Body/Rows/Columns/TableRowSelectionCheckbox.svelte +157 -0
  109. package/dist/Components/Table/Body/Rows/Columns/TableRowSelectionCheckbox.svelte.d.ts +30 -0
  110. package/dist/Components/Table/Body/Rows/Columns/TableSelect.svelte +354 -0
  111. package/dist/Components/Table/Body/Rows/Columns/TableSelect.svelte.d.ts +28 -0
  112. package/dist/Components/Table/Body/Rows/Columns/TableTextInput.svelte +375 -0
  113. package/dist/Components/Table/Body/Rows/Columns/TableTextInput.svelte.d.ts +28 -0
  114. package/dist/Components/Table/Body/Rows/Columns/ValidityCell.svelte +227 -0
  115. package/dist/Components/Table/Body/Rows/Columns/ValidityCell.svelte.d.ts +33 -0
  116. package/dist/Components/Table/Body/Rows/TableRow.svelte +201 -0
  117. package/dist/Components/Table/Body/Rows/TableRow.svelte.d.ts +30 -0
  118. package/dist/Components/Table/Body/TableBody.svelte +74 -0
  119. package/dist/Components/Table/Body/TableBody.svelte.d.ts +27 -0
  120. package/dist/Components/Table/ColumnDefinitions/ExampleItemColumnDef.svelte.d.ts +7 -0
  121. package/dist/Components/Table/ColumnDefinitions/ExampleItemColumnDef.svelte.js +139 -0
  122. package/dist/Components/Table/Headers/HighlightAllHeader.svelte +52 -0
  123. package/dist/Components/Table/Headers/HighlightAllHeader.svelte.d.ts +24 -0
  124. package/dist/Components/Table/Headers/SelectAllHeader.svelte +62 -0
  125. package/dist/Components/Table/Headers/SelectAllHeader.svelte.d.ts +24 -0
  126. package/dist/Components/Table/Headers/TableHead.svelte +366 -0
  127. package/dist/Components/Table/Headers/TableHead.svelte.d.ts +29 -0
  128. package/dist/Components/Table/Misc/ColumnPanel.svelte +96 -0
  129. package/dist/Components/Table/Misc/ColumnPanel.svelte.d.ts +24 -0
  130. package/dist/Components/Table/Misc/ColumnPanelModal.svelte +137 -0
  131. package/dist/Components/Table/Misc/ColumnPanelModal.svelte.d.ts +27 -0
  132. package/dist/Components/Table/Misc/FilterInput.svelte +635 -0
  133. package/dist/Components/Table/Misc/FilterInput.svelte.d.ts +45 -0
  134. package/dist/Components/Table/Misc/FilterPanel.svelte +49 -0
  135. package/dist/Components/Table/Misc/FilterPanel.svelte.d.ts +24 -0
  136. package/dist/Components/Table/Misc/FilterPanelModal.svelte +74 -0
  137. package/dist/Components/Table/Misc/FilterPanelModal.svelte.d.ts +27 -0
  138. package/dist/Components/Table/Misc/SidePanel.svelte +51 -0
  139. package/dist/Components/Table/Misc/SidePanel.svelte.d.ts +10 -0
  140. package/dist/Components/Table/Misc/TableFooter.svelte +364 -0
  141. package/dist/Components/Table/Misc/TableFooter.svelte.d.ts +27 -0
  142. package/dist/Components/Table/Misc/TableHorizontalBar.svelte +171 -0
  143. package/dist/Components/Table/Misc/TableHorizontalBar.svelte.d.ts +24 -0
  144. package/dist/Components/Table/Misc/TableSidebar.svelte +186 -0
  145. package/dist/Components/Table/Misc/TableSidebar.svelte.d.ts +24 -0
  146. package/dist/Components/Table/Misc/ToolboxPanel.svelte +84 -0
  147. package/dist/Components/Table/Misc/ToolboxPanel.svelte.d.ts +24 -0
  148. package/dist/Components/Table/Misc/ToolboxPanelModal.svelte +108 -0
  149. package/dist/Components/Table/Misc/ToolboxPanelModal.svelte.d.ts +27 -0
  150. package/dist/Components/Table/NestedTable.svelte +86 -0
  151. package/dist/Components/Table/NestedTable.svelte.d.ts +34 -0
  152. package/dist/Components/Table/Table.svelte +555 -0
  153. package/dist/Components/Table/Table.svelte.d.ts +37 -0
  154. package/dist/Components/Table/Types/Columns/AbstractDisplayDef.svelte.d.ts +19 -0
  155. package/dist/Components/Table/Types/Columns/AbstractDisplayDef.svelte.js +10 -0
  156. package/dist/Components/Table/Types/Columns/Column.d.ts +10 -0
  157. package/dist/Components/Table/Types/Columns/Column.js +1 -0
  158. package/dist/Components/Table/Types/Columns/ColumnDefPreset.d.ts +11 -0
  159. package/dist/Components/Table/Types/Columns/ColumnDefPreset.js +1 -0
  160. package/dist/Components/Table/Types/Columns/ColumnPinningState.d.ts +4 -0
  161. package/dist/Components/Table/Types/Columns/ColumnPinningState.js +1 -0
  162. package/dist/Components/Table/Types/Columns/ColumnSizingState.d.ts +1 -0
  163. package/dist/Components/Table/Types/Columns/ColumnSizingState.js +1 -0
  164. package/dist/Components/Table/Types/Columns/ColumnType.d.ts +9 -0
  165. package/dist/Components/Table/Types/Columns/ColumnType.js +10 -0
  166. package/dist/Components/Table/Types/Columns/DateColumn.d.ts +10 -0
  167. package/dist/Components/Table/Types/Columns/DateColumn.js +1 -0
  168. package/dist/Components/Table/Types/Columns/DateTableCell.d.ts +8 -0
  169. package/dist/Components/Table/Types/Columns/DateTableCell.js +1 -0
  170. package/dist/Components/Table/Types/Columns/Definitions/AccessorFn.d.ts +1 -0
  171. package/dist/Components/Table/Types/Columns/Definitions/AccessorFn.js +1 -0
  172. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorDef.svelte.d.ts +10 -0
  173. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorDef.svelte.js +5 -0
  174. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorType.d.ts +8 -0
  175. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorType.js +9 -0
  176. package/dist/Components/Table/Types/Columns/Definitions/Accessors/CheckboxDef.d.ts +9 -0
  177. package/dist/Components/Table/Types/Columns/Definitions/Accessors/CheckboxDef.js +8 -0
  178. package/dist/Components/Table/Types/Columns/Definitions/Accessors/DateInputDef.svelte.d.ts +11 -0
  179. package/dist/Components/Table/Types/Columns/Definitions/Accessors/DateInputDef.svelte.js +10 -0
  180. package/dist/Components/Table/Types/Columns/Definitions/Accessors/NumberInputDef.svelte.d.ts +14 -0
  181. package/dist/Components/Table/Types/Columns/Definitions/Accessors/NumberInputDef.svelte.js +13 -0
  182. package/dist/Components/Table/Types/Columns/Definitions/Accessors/QueryDef.d.ts +15 -0
  183. package/dist/Components/Table/Types/Columns/Definitions/Accessors/QueryDef.js +12 -0
  184. package/dist/Components/Table/Types/Columns/Definitions/Accessors/SelectDef.svelte.d.ts +18 -0
  185. package/dist/Components/Table/Types/Columns/Definitions/Accessors/SelectDef.svelte.js +16 -0
  186. package/dist/Components/Table/Types/Columns/Definitions/Accessors/TextInputDef.d.ts +9 -0
  187. package/dist/Components/Table/Types/Columns/Definitions/Accessors/TextInputDef.js +8 -0
  188. package/dist/Components/Table/Types/Columns/Definitions/Actions/ActionsDef.svelte.d.ts +16 -0
  189. package/dist/Components/Table/Types/Columns/Definitions/Actions/ActionsDef.svelte.js +19 -0
  190. package/dist/Components/Table/Types/Columns/Definitions/ColumnDef.svelte.d.ts +52 -0
  191. package/dist/Components/Table/Types/Columns/Definitions/ColumnDef.svelte.js +77 -0
  192. package/dist/Components/Table/Types/Columns/Definitions/ColumnDefSet.d.ts +11 -0
  193. package/dist/Components/Table/Types/Columns/Definitions/ColumnDefSet.js +1 -0
  194. package/dist/Components/Table/Types/Columns/Definitions/Display/BubbleDef.svelte.d.ts +11 -0
  195. package/dist/Components/Table/Types/Columns/Definitions/Display/BubbleDef.svelte.js +10 -0
  196. package/dist/Components/Table/Types/Columns/Definitions/Display/DisplayDef.d.ts +8 -0
  197. package/dist/Components/Table/Types/Columns/Definitions/Display/DisplayDef.js +8 -0
  198. package/dist/Components/Table/Types/Columns/Definitions/Display/ProgressBarDef.svelte.d.ts +11 -0
  199. package/dist/Components/Table/Types/Columns/Definitions/Display/ProgressBarDef.svelte.js +10 -0
  200. package/dist/Components/Table/Types/Columns/Definitions/Display/ValidityDef.svelte.d.ts +11 -0
  201. package/dist/Components/Table/Types/Columns/Definitions/Display/ValidityDef.svelte.js +11 -0
  202. package/dist/Components/Table/Types/Columns/Definitions/Expand/ExpandDef.svelte.d.ts +21 -0
  203. package/dist/Components/Table/Types/Columns/Definitions/Expand/ExpandDef.svelte.js +18 -0
  204. package/dist/Components/Table/Types/Columns/Definitions/FilterOnly/FilterOnlyDef.d.ts +6 -0
  205. package/dist/Components/Table/Types/Columns/Definitions/FilterOnly/FilterOnlyDef.js +5 -0
  206. package/dist/Components/Table/Types/Columns/Definitions/RowSelection/RowSelectionDef.svelte.d.ts +7 -0
  207. package/dist/Components/Table/Types/Columns/Definitions/RowSelection/RowSelectionDef.svelte.js +15 -0
  208. package/dist/Components/Table/Types/Columns/Definitions/ValidationFn.d.ts +3 -0
  209. package/dist/Components/Table/Types/Columns/Definitions/ValidationFn.js +1 -0
  210. package/dist/Components/Table/Types/Columns/DefsWrapper.d.ts +6 -0
  211. package/dist/Components/Table/Types/Columns/DefsWrapper.js +1 -0
  212. package/dist/Components/Table/Types/Columns/DisplayType.d.ts +7 -0
  213. package/dist/Components/Table/Types/Columns/DisplayType.js +8 -0
  214. package/dist/Components/Table/Types/Columns/ExpandColumn.d.ts +10 -0
  215. package/dist/Components/Table/Types/Columns/ExpandColumn.js +1 -0
  216. package/dist/Components/Table/Types/Columns/ExpandTableCell.d.ts +8 -0
  217. package/dist/Components/Table/Types/Columns/ExpandTableCell.js +1 -0
  218. package/dist/Components/Table/Types/Columns/ProgressBarColumn.d.ts +10 -0
  219. package/dist/Components/Table/Types/Columns/ProgressBarColumn.js +1 -0
  220. package/dist/Components/Table/Types/Columns/ProgressBarTableCell.d.ts +8 -0
  221. package/dist/Components/Table/Types/Columns/ProgressBarTableCell.js +1 -0
  222. package/dist/Components/Table/Types/Columns/TableActionButton.d.ts +8 -0
  223. package/dist/Components/Table/Types/Columns/TableActionButton.js +1 -0
  224. package/dist/Components/Table/Types/Columns/TableCell.d.ts +8 -0
  225. package/dist/Components/Table/Types/Columns/TableCell.js +1 -0
  226. package/dist/Components/Table/Types/Columns/VisibilityState.d.ts +1 -0
  227. package/dist/Components/Table/Types/Columns/VisibilityState.js +1 -0
  228. package/dist/Components/Table/Types/Context/ReadonlyRowModel.d.ts +6 -0
  229. package/dist/Components/Table/Types/Context/ReadonlyRowModel.js +1 -0
  230. package/dist/Components/Table/Types/Context/Row.d.ts +10 -0
  231. package/dist/Components/Table/Types/Context/Row.js +1 -0
  232. package/dist/Components/Table/Types/Context/RowModel.d.ts +5 -0
  233. package/dist/Components/Table/Types/Context/RowModel.js +1 -0
  234. package/dist/Components/Table/Types/Context/Table.d.ts +33 -0
  235. package/dist/Components/Table/Types/Context/Table.js +1 -0
  236. package/dist/Components/Table/Types/Context/TableContext.svelte.d.ts +232 -0
  237. package/dist/Components/Table/Types/Context/TableContext.svelte.js +2317 -0
  238. package/dist/Components/Table/Types/Context/TableInitOptions.d.ts +14 -0
  239. package/dist/Components/Table/Types/Context/TableInitOptions.js +1 -0
  240. package/dist/Components/Table/Types/Context/TableSettings.d.ts +8 -0
  241. package/dist/Components/Table/Types/Context/TableSettings.js +1 -0
  242. package/dist/Components/Table/Types/Coordinates/CellCoordinates.d.ts +5 -0
  243. package/dist/Components/Table/Types/Coordinates/CellCoordinates.js +1 -0
  244. package/dist/Components/Table/Types/Coordinates/CellCoordinatesWithoutColumn.d.ts +2 -0
  245. package/dist/Components/Table/Types/Coordinates/CellCoordinatesWithoutColumn.js +1 -0
  246. package/dist/Components/Table/Types/DataRepository/DataRepository.d.ts +40 -0
  247. package/dist/Components/Table/Types/DataRepository/DataRepository.js +1 -0
  248. package/dist/Components/Table/Types/DataRepository/LocalDataRepository.d.ts +24 -0
  249. package/dist/Components/Table/Types/DataRepository/LocalDataRepository.js +1 -0
  250. package/dist/Components/Table/Types/DataRepository/LocalTableDataRepository.svelte.d.ts +55 -0
  251. package/dist/Components/Table/Types/DataRepository/LocalTableDataRepository.svelte.js +311 -0
  252. package/dist/Components/Table/Types/DataRepository/RemoteDataRepository.d.ts +19 -0
  253. package/dist/Components/Table/Types/DataRepository/RemoteDataRepository.js +1 -0
  254. package/dist/Components/Table/Types/DataRepository/RemoteTableDataRepository.svelte.d.ts +92 -0
  255. package/dist/Components/Table/Types/DataRepository/RemoteTableDataRepository.svelte.js +521 -0
  256. package/dist/Components/Table/Types/DataRepository/SortingState.d.ts +5 -0
  257. package/dist/Components/Table/Types/DataRepository/SortingState.js +1 -0
  258. package/dist/Components/Table/Types/DataRepository/TableDataRepository.svelte.d.ts +47 -0
  259. package/dist/Components/Table/Types/DataRepository/TableDataRepository.svelte.js +75 -0
  260. package/dist/Components/Table/Types/ExpandedPanel.d.ts +6 -0
  261. package/dist/Components/Table/Types/ExpandedPanel.js +7 -0
  262. package/dist/Components/Table/Types/Filtering/ColumnFiltersState.d.ts +5 -0
  263. package/dist/Components/Table/Types/Filtering/ColumnFiltersState.js +1 -0
  264. package/dist/Components/Table/Types/Filtering/CustomFilter.d.ts +12 -0
  265. package/dist/Components/Table/Types/Filtering/CustomFilter.js +1 -0
  266. package/dist/Components/Table/Types/Filtering/CustomFilterType.d.ts +6 -0
  267. package/dist/Components/Table/Types/Filtering/CustomFilterType.js +7 -0
  268. package/dist/Components/Table/Types/Filtering/CustomFlterFn.d.ts +2 -0
  269. package/dist/Components/Table/Types/Filtering/CustomFlterFn.js +1 -0
  270. package/dist/Components/Table/Types/Filtering/CustomProxyFIlter.d.ts +10 -0
  271. package/dist/Components/Table/Types/Filtering/CustomProxyFIlter.js +1 -0
  272. package/dist/Components/Table/Types/Filtering/CustomRemoteFilters.d.ts +3 -0
  273. package/dist/Components/Table/Types/Filtering/CustomRemoteFilters.js +1 -0
  274. package/dist/Components/Table/Types/Filtering/FilterFn.d.ts +9 -0
  275. package/dist/Components/Table/Types/Filtering/FilterFn.js +1 -0
  276. package/dist/Components/Table/Types/Filtering/FilterMode.d.ts +3 -0
  277. package/dist/Components/Table/Types/Filtering/FilterMode.js +1 -0
  278. package/dist/Components/Table/Types/Filtering/FilterType.d.ts +4 -0
  279. package/dist/Components/Table/Types/Filtering/FilterType.js +5 -0
  280. package/dist/Components/Table/Types/Filtering/HasCustomFilterFunction.d.ts +3 -0
  281. package/dist/Components/Table/Types/Filtering/HasCustomFilterFunction.js +1 -0
  282. package/dist/Components/Table/Types/Filtering/NumberDateFilterMode.d.ts +13 -0
  283. package/dist/Components/Table/Types/Filtering/NumberDateFilterMode.js +14 -0
  284. package/dist/Components/Table/Types/Filtering/StringFilterMode.d.ts +15 -0
  285. package/dist/Components/Table/Types/Filtering/StringFilterMode.js +16 -0
  286. package/dist/Components/Table/Types/Focus/MultiFocusEdge.d.ts +10 -0
  287. package/dist/Components/Table/Types/Focus/MultiFocusEdge.js +11 -0
  288. package/dist/Components/Table/Types/Focus/TableFocusDetails.svelte.d.ts +40 -0
  289. package/dist/Components/Table/Types/Focus/TableFocusDetails.svelte.js +174 -0
  290. package/dist/Components/Table/Types/Header.d.ts +9 -0
  291. package/dist/Components/Table/Types/Header.js +1 -0
  292. package/dist/Components/Table/Types/HeaderGroup.d.ts +5 -0
  293. package/dist/Components/Table/Types/HeaderGroup.js +1 -0
  294. package/dist/Components/Table/Types/OnChangeFn.d.ts +3 -0
  295. package/dist/Components/Table/Types/OnChangeFn.js +1 -0
  296. package/dist/Components/Table/Types/Pagination/PaginationState.d.ts +4 -0
  297. package/dist/Components/Table/Types/Pagination/PaginationState.js +1 -0
  298. package/dist/Components/Table/Types/Pagination/PaginationType.d.ts +5 -0
  299. package/dist/Components/Table/Types/Pagination/PaginationType.js +6 -0
  300. package/dist/Components/Table/Types/Toolbar/ToolbarPosition.d.ts +6 -0
  301. package/dist/Components/Table/Types/Toolbar/ToolbarPosition.js +7 -0
  302. package/dist/Components/TextArea.svelte +349 -0
  303. package/dist/Components/TextArea.svelte.d.ts +29 -0
  304. package/dist/Components/TextInput.svelte +407 -0
  305. package/dist/Components/TextInput.svelte.d.ts +34 -0
  306. package/dist/Components/ThreeStateRadio.svelte +202 -0
  307. package/dist/Components/ThreeStateRadio.svelte.d.ts +16 -0
  308. package/dist/Components/Touch/BoolCard.svelte +180 -0
  309. package/dist/Components/Touch/BoolCard.svelte.d.ts +13 -0
  310. package/dist/Components/Touch/DateModal.svelte +256 -0
  311. package/dist/Components/Touch/DateModal.svelte.d.ts +22 -0
  312. package/dist/Components/Touch/EditCard.svelte +223 -0
  313. package/dist/Components/Touch/EditCard.svelte.d.ts +15 -0
  314. package/dist/Components/Touch/InfoCard.svelte +82 -0
  315. package/dist/Components/Touch/InfoCard.svelte.d.ts +11 -0
  316. package/dist/Components/Touch/InfoTextCard.svelte +55 -0
  317. package/dist/Components/Touch/InfoTextCard.svelte.d.ts +10 -0
  318. package/dist/Components/Touch/ModalExplanation.svelte +27 -0
  319. package/dist/Components/Touch/ModalExplanation.svelte.d.ts +9 -0
  320. package/dist/Components/Touch/NumberKeyboard.svelte +299 -0
  321. package/dist/Components/Touch/NumberKeyboard.svelte.d.ts +14 -0
  322. package/dist/Components/Touch/NumberModal.svelte +336 -0
  323. package/dist/Components/Touch/NumberModal.svelte.d.ts +18 -0
  324. package/dist/Components/Touch/PlusMinusCard.svelte +94 -0
  325. package/dist/Components/Touch/PlusMinusCard.svelte.d.ts +9 -0
  326. package/dist/Components/Touch/SelectModal.svelte +351 -0
  327. package/dist/Components/Touch/SelectModal.svelte.d.ts +11 -0
  328. package/dist/Components/Touch/SummaryCard.svelte +348 -0
  329. package/dist/Components/Touch/SummaryCard.svelte.d.ts +18 -0
  330. package/dist/Components/Touch/TextAreaModal.svelte +330 -0
  331. package/dist/Components/Touch/TextAreaModal.svelte.d.ts +15 -0
  332. package/dist/Components/Touch/TextModal.svelte +377 -0
  333. package/dist/Components/Touch/TextModal.svelte.d.ts +22 -0
  334. package/dist/Components/Touch/TouchCard.svelte +169 -0
  335. package/dist/Components/Touch/TouchCard.svelte.d.ts +9 -0
  336. package/dist/Components/Touch/TouchModal.svelte +516 -0
  337. package/dist/Components/Touch/TouchModal.svelte.d.ts +34 -0
  338. package/dist/Components/Touch/UtilityButton.svelte +192 -0
  339. package/dist/Components/Touch/UtilityButton.svelte.d.ts +23 -0
  340. package/dist/Components/VerticalTabGroup.svelte +129 -0
  341. package/dist/Components/VerticalTabGroup.svelte.d.ts +12 -0
  342. package/dist/Components/VerticalTabGroupButton.svelte +108 -0
  343. package/dist/Components/VerticalTabGroupButton.svelte.d.ts +8 -0
  344. package/dist/Contexts/AlertContext.svelte.d.ts +46 -0
  345. package/dist/Contexts/AlertContext.svelte.js +118 -0
  346. package/dist/Contexts/ContextMenuContext.svelte.d.ts +22 -0
  347. package/dist/Contexts/ContextMenuContext.svelte.js +45 -0
  348. package/dist/Contexts/ToastContext.svelte.d.ts +9 -0
  349. package/dist/Contexts/ToastContext.svelte.js +82 -0
  350. package/dist/Contexts/TooltipContext.svelte.d.ts +31 -0
  351. package/dist/Contexts/TooltipContext.svelte.js +78 -0
  352. package/dist/Contexts/UntypedInputContext.svelte.d.ts +13 -0
  353. package/dist/Contexts/UntypedInputContext.svelte.js +78 -0
  354. package/dist/Delay/Delay.d.ts +3 -0
  355. package/dist/Delay/Delay.js +4 -0
  356. package/dist/Helpers/Datamatrix.d.ts +11 -0
  357. package/dist/Helpers/Datamatrix.js +2 -0
  358. package/dist/Helpers/Helpers.svelte.d.ts +102 -0
  359. package/dist/Helpers/Helpers.svelte.js +490 -0
  360. package/dist/Helpers/INamed.d.ts +3 -0
  361. package/dist/Helpers/INamed.js +1 -0
  362. package/dist/Helpers/skata.d.ts +1 -0
  363. package/dist/Helpers/skata.js +1 -0
  364. package/dist/Types/Examples/ExampleItem.d.ts +15 -0
  365. package/dist/Types/Examples/ExampleItem.js +1 -0
  366. package/dist/Types/Examples/ExampleModal.svelte +38 -0
  367. package/dist/Types/Examples/ExampleModal.svelte.d.ts +5 -0
  368. package/dist/Types/Examples/ExampleSelectEnum.d.ts +6 -0
  369. package/dist/Types/Examples/ExampleSelectEnum.js +7 -0
  370. package/dist/Types/Internal/ApplicationIdentifier.d.ts +37 -0
  371. package/dist/Types/Internal/ApplicationIdentifier.js +2080 -0
  372. package/dist/Types/Internal/AttributeOperation.d.ts +30 -0
  373. package/dist/Types/Internal/AttributeOperation.js +33 -0
  374. package/dist/Types/Internal/BigRadioOption.d.ts +5 -0
  375. package/dist/Types/Internal/BigRadioOption.js +1 -0
  376. package/dist/Types/Internal/ButtonProp.d.ts +11 -0
  377. package/dist/Types/Internal/ButtonProp.js +1 -0
  378. package/dist/Types/Internal/CallbackButton.d.ts +10 -0
  379. package/dist/Types/Internal/CallbackButton.js +1 -0
  380. package/dist/Types/Internal/DateChange.d.ts +5 -0
  381. package/dist/Types/Internal/DateChange.js +1 -0
  382. package/dist/Types/Internal/DatePickerType.d.ts +8 -0
  383. package/dist/Types/Internal/DatePickerType.js +9 -0
  384. package/dist/Types/Internal/FloService.d.ts +7 -0
  385. package/dist/Types/Internal/FloService.js +30 -0
  386. package/dist/Types/Internal/GridItem.d.ts +4 -0
  387. package/dist/Types/Internal/GridItem.js +1 -0
  388. package/dist/Types/Internal/GridMultiSelectItem.d.ts +4 -0
  389. package/dist/Types/Internal/GridMultiSelectItem.js +1 -0
  390. package/dist/Types/Internal/GridMultiSelectItemAsObject.d.ts +5 -0
  391. package/dist/Types/Internal/GridMultiSelectItemAsObject.js +1 -0
  392. package/dist/Types/Internal/GridMultiSelectItemAsPrimitive.d.ts +5 -0
  393. package/dist/Types/Internal/GridMultiSelectItemAsPrimitive.js +1 -0
  394. package/dist/Types/Internal/GridNumberItem.d.ts +4 -0
  395. package/dist/Types/Internal/GridNumberItem.js +1 -0
  396. package/dist/Types/Internal/GridSelectItem.d.ts +12 -0
  397. package/dist/Types/Internal/GridSelectItem.js +1 -0
  398. package/dist/Types/Internal/GridSingleSelectItem.d.ts +5 -0
  399. package/dist/Types/Internal/GridSingleSelectItem.js +1 -0
  400. package/dist/Types/Internal/GridSingleSelectItemAsObject.d.ts +5 -0
  401. package/dist/Types/Internal/GridSingleSelectItemAsObject.js +1 -0
  402. package/dist/Types/Internal/GridSingleSelectItemAsPrimitive.d.ts +5 -0
  403. package/dist/Types/Internal/GridSingleSelectItemAsPrimitive.js +1 -0
  404. package/dist/Types/Internal/GridStringItem.d.ts +9 -0
  405. package/dist/Types/Internal/GridStringItem.js +1 -0
  406. package/dist/Types/Internal/GridTextItem.d.ts +4 -0
  407. package/dist/Types/Internal/GridTextItem.js +1 -0
  408. package/dist/Types/Internal/IdentifiableToastMessage.d.ts +5 -0
  409. package/dist/Types/Internal/IdentifiableToastMessage.js +1 -0
  410. package/dist/Types/Internal/InputVariant.d.ts +6 -0
  411. package/dist/Types/Internal/InputVariant.js +7 -0
  412. package/dist/Types/Internal/Misc.d.ts +271 -0
  413. package/dist/Types/Internal/Misc.js +129 -0
  414. package/dist/Types/Internal/RefWrapper.d.ts +3 -0
  415. package/dist/Types/Internal/RefWrapper.js +1 -0
  416. package/dist/Types/Internal/SelectOption.d.ts +4 -0
  417. package/dist/Types/Internal/SelectOption.js +1 -0
  418. package/dist/Types/Internal/Shape.d.ts +4 -0
  419. package/dist/Types/Internal/Shape.js +5 -0
  420. package/dist/Types/Internal/Side.d.ts +6 -0
  421. package/dist/Types/Internal/Side.js +7 -0
  422. package/dist/Types/Internal/Size.d.ts +13 -0
  423. package/dist/Types/Internal/Size.js +14 -0
  424. package/dist/Types/Internal/TabOption.d.ts +12 -0
  425. package/dist/Types/Internal/TabOption.js +1 -0
  426. package/dist/Types/Internal/Ternary.d.ts +5 -0
  427. package/dist/Types/Internal/Ternary.js +6 -0
  428. package/dist/Types/Internal/ToastMessage.d.ts +10 -0
  429. package/dist/Types/Internal/ToastMessage.js +1 -0
  430. package/dist/Types/Internal/Validity.d.ts +7 -0
  431. package/dist/Types/Internal/Validity.js +8 -0
  432. package/dist/Types/Internal/ValidityWrapper.d.ts +5 -0
  433. package/dist/Types/Internal/ValidityWrapper.js +1 -0
  434. package/dist/Types/Internal/Variant.d.ts +10 -0
  435. package/dist/Types/Internal/Variant.js +11 -0
  436. package/dist/Types/Requests/IFillablePodLineDateRequestBody.d.ts +11 -0
  437. package/dist/Types/Requests/IFillablePodLineDateRequestBody.js +10 -0
  438. package/dist/Types/Requests/IRequiredPodLineDateRequestBody.d.ts +12 -0
  439. package/dist/Types/Requests/IRequiredPodLineDateRequestBody.js +8 -0
  440. package/dist/Types/Requests/IValidatedPodLineDateRequestBody.d.ts +14 -0
  441. package/dist/Types/Requests/IValidatedPodLineDateRequestBody.js +10 -0
  442. package/dist/Types/Responses/AddressType.d.ts +3 -0
  443. package/dist/Types/Responses/AddressType.js +2 -0
  444. package/dist/Types/Responses/IAddress.d.ts +39 -0
  445. package/dist/Types/Responses/IAddress.js +30 -0
  446. package/dist/Types/Responses/IBaseAddress.d.ts +17 -0
  447. package/dist/Types/Responses/IBaseAddress.js +15 -0
  448. package/dist/Types/Responses/ICountry.d.ts +16 -0
  449. package/dist/Types/Responses/ICountry.js +1 -0
  450. package/dist/Types/Responses/IDBEntry.d.ts +13 -0
  451. package/dist/Types/Responses/IDBEntry.js +12 -0
  452. package/dist/Types/Responses/IErrorResponse.d.ts +10 -0
  453. package/dist/Types/Responses/IErrorResponse.js +1 -0
  454. package/dist/Types/Responses/ILabelPrinter.d.ts +4 -0
  455. package/dist/Types/Responses/ILabelPrinter.js +1 -0
  456. package/dist/Types/Responses/ILaserPrinter.d.ts +4 -0
  457. package/dist/Types/Responses/ILaserPrinter.js +1 -0
  458. package/dist/Types/Responses/ILoginResponse.d.ts +8 -0
  459. package/dist/Types/Responses/ILoginResponse.js +1 -0
  460. package/dist/Types/Responses/IPaginatedPayload.d.ts +5 -0
  461. package/dist/Types/Responses/IPaginatedPayload.js +1 -0
  462. package/dist/Types/Responses/IPaginatedResponse.d.ts +5 -0
  463. package/dist/Types/Responses/IPaginatedResponse.js +1 -0
  464. package/dist/Types/Responses/IPagination.d.ts +9 -0
  465. package/dist/Types/Responses/IPagination.js +1 -0
  466. package/dist/Types/Responses/IPayload.d.ts +3 -0
  467. package/dist/Types/Responses/IPayload.js +1 -0
  468. package/dist/Types/Responses/IPrinter.d.ts +11 -0
  469. package/dist/Types/Responses/IPrinter.js +1 -0
  470. package/dist/Types/Responses/IProcessTypeSelectionMethodOutboundType.d.ts +18 -0
  471. package/dist/Types/Responses/IProcessTypeSelectionMethodOutboundType.js +12 -0
  472. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomer.d.ts +20 -0
  473. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomer.js +14 -0
  474. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomerType.d.ts +20 -0
  475. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomerType.js +14 -0
  476. package/dist/Types/Responses/IProductCategory.d.ts +19 -0
  477. package/dist/Types/Responses/IProductCategory.js +13 -0
  478. package/dist/Types/Responses/IProductCategoryDetails.d.ts +33 -0
  479. package/dist/Types/Responses/IProductCategoryDetails.js +13 -0
  480. package/dist/Types/Responses/IProductIgnoreOnAllocationOutboundType.d.ts +17 -0
  481. package/dist/Types/Responses/IProductIgnoreOnAllocationOutboundType.js +11 -0
  482. package/dist/Types/Responses/IProductLocation.d.ts +23 -0
  483. package/dist/Types/Responses/IProductLocation.js +17 -0
  484. package/dist/Types/Responses/IResponse.d.ts +8 -0
  485. package/dist/Types/Responses/IResponse.js +1 -0
  486. package/dist/Types/Responses/IStockSortationMethodCustomer.d.ts +18 -0
  487. package/dist/Types/Responses/IStockSortationMethodCustomer.js +12 -0
  488. package/dist/Types/Responses/Pods/IAttributeTypeWithAI.d.ts +8 -0
  489. package/dist/Types/Responses/Pods/IAttributeTypeWithAI.js +1 -0
  490. package/dist/Types/Responses/Pods/IBatchType.d.ts +5 -0
  491. package/dist/Types/Responses/Pods/IBatchType.js +1 -0
  492. package/dist/Types/Responses/Pods/IDateType.d.ts +6 -0
  493. package/dist/Types/Responses/Pods/IDateType.js +1 -0
  494. package/dist/Types/Responses/Pods/IFillablePodLineAttribute.d.ts +10 -0
  495. package/dist/Types/Responses/Pods/IFillablePodLineAttribute.js +9 -0
  496. package/dist/Types/Responses/Pods/IFillablePodLineBatch.d.ts +18 -0
  497. package/dist/Types/Responses/Pods/IFillablePodLineBatch.js +12 -0
  498. package/dist/Types/Responses/Pods/IFillablePodLineDate.d.ts +19 -0
  499. package/dist/Types/Responses/Pods/IFillablePodLineDate.js +13 -0
  500. package/dist/Types/Responses/Pods/IFillablePodLinePurchaseOrder.d.ts +18 -0
  501. package/dist/Types/Responses/Pods/IFillablePodLinePurchaseOrder.js +12 -0
  502. package/dist/Types/Responses/Pods/IFillablePodLineSerial.d.ts +18 -0
  503. package/dist/Types/Responses/Pods/IFillablePodLineSerial.js +12 -0
  504. package/dist/Types/Responses/Pods/IFillablePodLineTag.d.ts +18 -0
  505. package/dist/Types/Responses/Pods/IFillablePodLineTag.js +12 -0
  506. package/dist/Types/Responses/Pods/IPurchaseOrderType.d.ts +5 -0
  507. package/dist/Types/Responses/Pods/IPurchaseOrderType.js +1 -0
  508. package/dist/Types/Responses/Pods/IRequiredOrValidatedAttribute.d.ts +5 -0
  509. package/dist/Types/Responses/Pods/IRequiredOrValidatedAttribute.js +7 -0
  510. package/dist/Types/Responses/Pods/IRequiredPodLineBatch.d.ts +16 -0
  511. package/dist/Types/Responses/Pods/IRequiredPodLineBatch.js +8 -0
  512. package/dist/Types/Responses/Pods/IRequiredPodLineDate.d.ts +17 -0
  513. package/dist/Types/Responses/Pods/IRequiredPodLineDate.js +8 -0
  514. package/dist/Types/Responses/Pods/IRequiredPodLinePurchaseOrder.d.ts +19 -0
  515. package/dist/Types/Responses/Pods/IRequiredPodLinePurchaseOrder.js +8 -0
  516. package/dist/Types/Responses/Pods/IRequiredPodLineSerial.d.ts +19 -0
  517. package/dist/Types/Responses/Pods/IRequiredPodLineSerial.js +8 -0
  518. package/dist/Types/Responses/Pods/IRequiredPodLineTag.d.ts +19 -0
  519. package/dist/Types/Responses/Pods/IRequiredPodLineTag.js +8 -0
  520. package/dist/Types/Responses/Pods/ISerialType.d.ts +6 -0
  521. package/dist/Types/Responses/Pods/ISerialType.js +1 -0
  522. package/dist/Types/Responses/Pods/ITagType.d.ts +6 -0
  523. package/dist/Types/Responses/Pods/ITagType.js +1 -0
  524. package/dist/Types/Responses/Pods/IValidatedPodLineAttribute.d.ts +13 -0
  525. package/dist/Types/Responses/Pods/IValidatedPodLineAttribute.js +10 -0
  526. package/dist/Types/Responses/Pods/IValidatedPodLineBatch.d.ts +17 -0
  527. package/dist/Types/Responses/Pods/IValidatedPodLineBatch.js +10 -0
  528. package/dist/Types/Responses/Pods/IValidatedPodLineDate.d.ts +19 -0
  529. package/dist/Types/Responses/Pods/IValidatedPodLineDate.js +10 -0
  530. package/dist/Types/Responses/Pods/IValidatedPodLinePurchaseOrder.d.ts +20 -0
  531. package/dist/Types/Responses/Pods/IValidatedPodLinePurchaseOrder.js +10 -0
  532. package/dist/Types/Responses/Pods/IValidatedPodLineSerial.d.ts +20 -0
  533. package/dist/Types/Responses/Pods/IValidatedPodLineSerial.js +10 -0
  534. package/dist/Types/Responses/Pods/IValidatedPodLineTag.d.ts +20 -0
  535. package/dist/Types/Responses/Pods/IValidatedPodLineTag.js +10 -0
  536. package/dist/Types/Responses/Products/IAttributeRule.d.ts +34 -0
  537. package/dist/Types/Responses/Products/IAttributeRule.js +28 -0
  538. package/dist/Types/Responses/Products/IBarcode.d.ts +18 -0
  539. package/dist/Types/Responses/Products/IBarcode.js +12 -0
  540. package/dist/Types/Responses/Products/IBatchRule.d.ts +36 -0
  541. package/dist/Types/Responses/Products/IBatchRule.js +9 -0
  542. package/dist/Types/Responses/Products/ICustomerRule.d.ts +23 -0
  543. package/dist/Types/Responses/Products/ICustomerRule.js +17 -0
  544. package/dist/Types/Responses/Products/IDateRule.d.ts +36 -0
  545. package/dist/Types/Responses/Products/IDateRule.js +9 -0
  546. package/dist/Types/Responses/Products/IPrice.d.ts +19 -0
  547. package/dist/Types/Responses/Products/IPrice.js +12 -0
  548. package/dist/Types/Responses/Products/IProduct.d.ts +436 -0
  549. package/dist/Types/Responses/Products/IProduct.js +77 -0
  550. package/dist/Types/Responses/Products/IProductKit.d.ts +24 -0
  551. package/dist/Types/Responses/Products/IProductKit.js +18 -0
  552. package/dist/Types/Responses/Products/IProductKitMatrix.d.ts +13 -0
  553. package/dist/Types/Responses/Products/IProductKitMatrix.js +1 -0
  554. package/dist/Types/Responses/Products/IProductSupplier.d.ts +18 -0
  555. package/dist/Types/Responses/Products/IProductSupplier.js +12 -0
  556. package/dist/Types/Responses/Products/IProductTag.d.ts +33 -0
  557. package/dist/Types/Responses/Products/IProductTag.js +14 -0
  558. package/dist/Types/Responses/Products/IProductTagType.d.ts +18 -0
  559. package/dist/Types/Responses/Products/IProductTagType.js +12 -0
  560. package/dist/Types/Responses/Products/IProductUnitOfMeasure.d.ts +97 -0
  561. package/dist/Types/Responses/Products/IProductUnitOfMeasure.js +35 -0
  562. package/dist/Types/Responses/Products/IProductUnitOfMeasurePrice.d.ts +36 -0
  563. package/dist/Types/Responses/Products/IProductUnitOfMeasurePrice.js +17 -0
  564. package/dist/Types/Responses/Products/IPurchaseOrderRule.d.ts +36 -0
  565. package/dist/Types/Responses/Products/IPurchaseOrderRule.js +9 -0
  566. package/dist/Types/Responses/Products/ISerialRule.d.ts +36 -0
  567. package/dist/Types/Responses/Products/ISerialRule.js +9 -0
  568. package/dist/Types/Responses/Products/ITagRule.d.ts +36 -0
  569. package/dist/Types/Responses/Products/ITagRule.js +9 -0
  570. package/dist/Types/Responses/Products/IUnitOfMeasure.d.ts +18 -0
  571. package/dist/Types/Responses/Products/IUnitOfMeasure.js +12 -0
  572. package/dist/index.d.ts +1 -0
  573. package/dist/index.js +2 -0
  574. package/dist/scss/basics.scss +12 -0
  575. package/dist/scss/colours.d.ts +94 -0
  576. package/dist/scss/colours.js +138 -0
  577. package/dist/scss/colours.scss +134 -0
  578. package/dist/scss/mixins.scss +2778 -0
  579. package/dist/scss/sizing.scss +72 -0
  580. package/dist/scss/transitions.scss +8 -0
  581. package/package.json +92 -0
@@ -0,0 +1,2080 @@
1
+ import { floFriendly } from '../../Helpers/Helpers.svelte.js';
2
+ export var GS1LengthType;
3
+ (function (GS1LengthType) {
4
+ GS1LengthType[GS1LengthType["Fixed"] = 1] = "Fixed";
5
+ GS1LengthType[GS1LengthType["Variable"] = 2] = "Variable";
6
+ })(GS1LengthType || (GS1LengthType = {}));
7
+ export var GS1Encoding;
8
+ (function (GS1Encoding) {
9
+ GS1Encoding[GS1Encoding["Numeric"] = 1] = "Numeric";
10
+ GS1Encoding[GS1Encoding["Set82"] = 2] = "Set82";
11
+ GS1Encoding[GS1Encoding["Set39"] = 3] = "Set39";
12
+ })(GS1Encoding || (GS1Encoding = {}));
13
+ class ApplicationIdentifier {
14
+ name;
15
+ GS1Code;
16
+ AILength;
17
+ valueLengths;
18
+ constructor(name, GS1Code, AILength, valueLengths) {
19
+ this.name = name;
20
+ this.GS1Code = GS1Code;
21
+ this.AILength = AILength;
22
+ this.valueLengths = valueLengths;
23
+ }
24
+ // no validation needed to my knowledge at the moment
25
+ parseFromParentheses = (value) => value;
26
+ _defaultParseFromFNC1 = (buffer, currentFnc1Substitute) => {
27
+ let value = '';
28
+ this.valueLengths.forEach((lengthSpec) => {
29
+ if (lengthSpec.type == GS1LengthType.Fixed) {
30
+ for (let i = lengthSpec.length; i > 0; i--) {
31
+ const newChar = buffer.pop();
32
+ if (newChar == undefined) {
33
+ throw new Error('Unexpected end of barcode.');
34
+ }
35
+ value += newChar;
36
+ if (newChar === ']' && value.endsWith(currentFnc1Substitute)) {
37
+ value = value.replace(currentFnc1Substitute, '');
38
+ }
39
+ }
40
+ }
41
+ else {
42
+ for (let i = lengthSpec.length; i > 0; i--) {
43
+ const newChar = buffer.pop();
44
+ if (newChar == undefined) {
45
+ break;
46
+ }
47
+ value += newChar;
48
+ if (newChar === ']' && value.endsWith(currentFnc1Substitute)) {
49
+ value = value.replace(currentFnc1Substitute, '');
50
+ break;
51
+ }
52
+ }
53
+ }
54
+ });
55
+ return value;
56
+ };
57
+ parseFromFNC1 = this._defaultParseFromFNC1;
58
+ }
59
+ class DateApplicationIdentifier extends ApplicationIdentifier {
60
+ constructor(name, GS1Code, AILength, valueLengths) {
61
+ super(name, GS1Code, AILength, valueLengths);
62
+ }
63
+ parseDate = (value) => {
64
+ const currentYear = new Date().getFullYear() - 2000;
65
+ const [yearStr, monthStr, dayStr] = [
66
+ value.substring(0, 2),
67
+ value.substring(2, 4),
68
+ value.substring(4, 6)
69
+ ];
70
+ const year = parseInt(yearStr);
71
+ const month = parseInt(monthStr);
72
+ const day = parseInt(dayStr);
73
+ const yearDiff = year - currentYear;
74
+ const convertedYear = year + (yearDiff <= -51 ? 2100 : yearDiff >= 51 ? 1900 : 2000);
75
+ if (yearStr.length != 2 ||
76
+ monthStr.length != 2 ||
77
+ dayStr.length != 2 ||
78
+ isNaN(year) ||
79
+ isNaN(month) ||
80
+ isNaN(day) ||
81
+ month < 0 ||
82
+ month > 12 ||
83
+ day < 0 ||
84
+ day > new Date(year, month, 0).getDate()) {
85
+ throw new Error(`Barcode Date Parsing Error.\n${value} is not a valid GS1 Date Value.`);
86
+ }
87
+ // HACK in JS, 0th day of month X gives you last day of month X-1.
88
+ // the GS1 standard claims 0 to be the last day of the STATED month (unlike JS's last day of the PREVIOUS month)
89
+ const convertedMonth = day == 0 ? month : month - 1;
90
+ const convertedDay = day;
91
+ return floFriendly(new Date(convertedYear, convertedMonth, convertedDay));
92
+ };
93
+ // TODO parse date properly
94
+ parseFromParentheses = (value) => this.parseDate(value);
95
+ parseFromFNC1 = (buffer, currentFnc1Substitute) => this.parseDate(this._defaultParseFromFNC1(buffer, currentFnc1Substitute));
96
+ }
97
+ export const ApplicationIdentifiers = {
98
+ SSCC: new ApplicationIdentifier('SSCC', '00',
99
+ /* AILength:*/ 2,
100
+ /* valueLengths: */ [
101
+ {
102
+ type: GS1LengthType.Fixed,
103
+ length: 18,
104
+ encoding: GS1Encoding.Numeric,
105
+ mandatory: true
106
+ }
107
+ ]),
108
+ GTIN: new ApplicationIdentifier('GTIN', '01',
109
+ /* AILength:*/ 2,
110
+ /* valueLengths: */ [
111
+ {
112
+ type: GS1LengthType.Fixed,
113
+ length: 14,
114
+ encoding: GS1Encoding.Numeric,
115
+ mandatory: true
116
+ }
117
+ ]),
118
+ CONTENT: new ApplicationIdentifier('CONTENT', '02',
119
+ /* AILength:*/ 2,
120
+ /* valueLengths: */ [
121
+ {
122
+ type: GS1LengthType.Fixed,
123
+ length: 14,
124
+ encoding: GS1Encoding.Numeric,
125
+ mandatory: true
126
+ }
127
+ ]),
128
+ BATCH: new ApplicationIdentifier('BATCH', '10',
129
+ /* AILength:*/ 2,
130
+ /* valueLengths: */ [
131
+ {
132
+ type: GS1LengthType.Variable,
133
+ length: 20,
134
+ encoding: GS1Encoding.Set82,
135
+ mandatory: true
136
+ }
137
+ ]),
138
+ PROD_DATE: new DateApplicationIdentifier('PROD_DATE', '11',
139
+ /* AILength:*/ 2,
140
+ /* valueLengths: */ [
141
+ {
142
+ type: GS1LengthType.Fixed,
143
+ length: 6,
144
+ encoding: GS1Encoding.Numeric,
145
+ mandatory: true
146
+ }
147
+ ]),
148
+ PAYMENT_DUE_DATE: new DateApplicationIdentifier('PAYMENT_DUE_DATE', '12',
149
+ /* AILength:*/ 2,
150
+ /* valueLengths: */ [
151
+ {
152
+ type: GS1LengthType.Fixed,
153
+ length: 6,
154
+ encoding: GS1Encoding.Numeric,
155
+ mandatory: true
156
+ }
157
+ ]),
158
+ PACK_DATE: new DateApplicationIdentifier('PACK_DATE', '13',
159
+ /* AILength:*/ 2,
160
+ /* valueLengths: */ [
161
+ {
162
+ type: GS1LengthType.Fixed,
163
+ length: 6,
164
+ encoding: GS1Encoding.Numeric,
165
+ mandatory: true
166
+ }
167
+ ]),
168
+ BEST_BEFORE: new DateApplicationIdentifier('BEST_BEFORE', '15',
169
+ /* AILength:*/ 2,
170
+ /* valueLengths: */ [
171
+ {
172
+ type: GS1LengthType.Fixed,
173
+ length: 6,
174
+ encoding: GS1Encoding.Numeric,
175
+ mandatory: true
176
+ }
177
+ ]),
178
+ SELL_BY: new DateApplicationIdentifier('SELL_BY', '16',
179
+ /* AILength:*/ 2,
180
+ /* valueLengths: */ [
181
+ {
182
+ type: GS1LengthType.Fixed,
183
+ length: 6,
184
+ encoding: GS1Encoding.Numeric,
185
+ mandatory: true
186
+ }
187
+ ]),
188
+ USE_BY: new DateApplicationIdentifier('USE_BY', '17',
189
+ /* AILength:*/ 2,
190
+ /* valueLengths: */ [
191
+ {
192
+ type: GS1LengthType.Fixed,
193
+ length: 6,
194
+ encoding: GS1Encoding.Numeric,
195
+ mandatory: true
196
+ }
197
+ ]),
198
+ VARIANT: new ApplicationIdentifier('VARIANT', '20',
199
+ /* AILength:*/ 2,
200
+ /* valueLengths: */ [
201
+ {
202
+ type: GS1LengthType.Fixed,
203
+ length: 20,
204
+ encoding: GS1Encoding.Set82,
205
+ mandatory: true
206
+ }
207
+ ]),
208
+ SERIAL: new ApplicationIdentifier('SERIAL', '21',
209
+ /* AILength:*/ 2,
210
+ /* valueLengths: */ [
211
+ {
212
+ type: GS1LengthType.Variable,
213
+ length: 20,
214
+ encoding: GS1Encoding.Set82,
215
+ mandatory: true
216
+ }
217
+ ]),
218
+ CPV: new ApplicationIdentifier('CPV', '22',
219
+ /* AILength:*/ 2,
220
+ /* valueLengths: */ [
221
+ {
222
+ type: GS1LengthType.Variable,
223
+ length: 20,
224
+ encoding: GS1Encoding.Set82,
225
+ mandatory: true
226
+ }
227
+ ]),
228
+ TPX: new ApplicationIdentifier('TPX', '235',
229
+ /* AILength:*/ 3,
230
+ /* valueLengths: */ [
231
+ {
232
+ type: GS1LengthType.Variable,
233
+ length: 28,
234
+ encoding: GS1Encoding.Set82,
235
+ mandatory: true
236
+ }
237
+ ]),
238
+ ADDITIONAL_ID: new ApplicationIdentifier('ADDITIONAL_ID', '240',
239
+ /* AILength:*/ 3,
240
+ /* valueLengths: */ [
241
+ {
242
+ type: GS1LengthType.Variable,
243
+ length: 3,
244
+ encoding: GS1Encoding.Set82,
245
+ mandatory: true
246
+ }
247
+ ]),
248
+ CUSTOMER_PART_NUMBER: new ApplicationIdentifier('CUSTOMER_PART_NUMBER', '241',
249
+ /* AILength:*/ 3,
250
+ /* valueLengths: */ [
251
+ {
252
+ type: GS1LengthType.Variable,
253
+ length: 30,
254
+ encoding: GS1Encoding.Set82,
255
+ mandatory: true
256
+ }
257
+ ]),
258
+ MTO_VARIANT: new ApplicationIdentifier('MTO_VARIANT', '242',
259
+ /* AILength:*/ 3,
260
+ /* valueLengths: */ [
261
+ {
262
+ type: GS1LengthType.Variable,
263
+ length: 6,
264
+ encoding: GS1Encoding.Numeric,
265
+ mandatory: true
266
+ }
267
+ ]),
268
+ PCN: new ApplicationIdentifier('PCN', '243',
269
+ /* AILength:*/ 3,
270
+ /* valueLengths: */ [
271
+ {
272
+ type: GS1LengthType.Variable,
273
+ length: 20,
274
+ encoding: GS1Encoding.Set82,
275
+ mandatory: true
276
+ }
277
+ ]),
278
+ SECONDARY_SERIAL: new ApplicationIdentifier('SECONDARY_SERIAL', '250',
279
+ /* AILength:*/ 3,
280
+ /* valueLengths: */ [
281
+ {
282
+ type: GS1LengthType.Variable,
283
+ length: 30,
284
+ encoding: GS1Encoding.Set82,
285
+ mandatory: true
286
+ }
287
+ ]),
288
+ REF_TO_SOURCE: new ApplicationIdentifier('REF_TO_SOURCE', '251',
289
+ /* AILength:*/ 3,
290
+ /* valueLengths: */ [
291
+ {
292
+ type: GS1LengthType.Variable,
293
+ length: 30,
294
+ encoding: GS1Encoding.Set82,
295
+ mandatory: true
296
+ }
297
+ ]),
298
+ GDTI: new ApplicationIdentifier('GDTI', '253',
299
+ /* AILength:*/ 3,
300
+ /* valueLengths: */ [
301
+ {
302
+ type: GS1LengthType.Fixed,
303
+ length: 13,
304
+ encoding: GS1Encoding.Numeric,
305
+ mandatory: true
306
+ },
307
+ {
308
+ type: GS1LengthType.Variable,
309
+ length: 17,
310
+ encoding: GS1Encoding.Set82,
311
+ mandatory: false
312
+ }
313
+ ]),
314
+ GLN_EXTENSION_COMPONENT: new ApplicationIdentifier('GLN_EXTENSION_COMPONENT', '253',
315
+ /* AILength:*/ 3,
316
+ /* valueLengths: */ [
317
+ {
318
+ type: GS1LengthType.Variable,
319
+ length: 20,
320
+ encoding: GS1Encoding.Set82,
321
+ mandatory: true
322
+ }
323
+ ]),
324
+ GCN: new ApplicationIdentifier('GCN', '255',
325
+ /* AILength:*/ 3,
326
+ /* valueLengths: */ [
327
+ {
328
+ type: GS1LengthType.Fixed,
329
+ length: 13,
330
+ encoding: GS1Encoding.Numeric,
331
+ mandatory: true
332
+ },
333
+ {
334
+ type: GS1LengthType.Variable,
335
+ length: 12,
336
+ encoding: GS1Encoding.Numeric,
337
+ mandatory: false
338
+ }
339
+ ]),
340
+ VAR_COUNT: new ApplicationIdentifier('VAR_COUNT', '30',
341
+ /* AILength:*/ 2,
342
+ /* valueLengths: */ [
343
+ {
344
+ type: GS1LengthType.Variable,
345
+ length: 8,
346
+ encoding: GS1Encoding.Numeric,
347
+ mandatory: true
348
+ }
349
+ ]),
350
+ NET_WEIGHT_KG: new ApplicationIdentifier('NET_WEIGHT_KG', '310',
351
+ /* AILength:*/ 4,
352
+ /* valueLengths: */ [
353
+ {
354
+ type: GS1LengthType.Fixed,
355
+ length: 6,
356
+ encoding: GS1Encoding.Numeric,
357
+ mandatory: true
358
+ }
359
+ ]),
360
+ LENGTH_METRES: new ApplicationIdentifier('LENGTH_METRES', '311',
361
+ /* AILength:*/ 4,
362
+ /* valueLengths: */ [
363
+ {
364
+ type: GS1LengthType.Fixed,
365
+ length: 6,
366
+ encoding: GS1Encoding.Numeric,
367
+ mandatory: true
368
+ }
369
+ ]),
370
+ WIDTH_METRES: new ApplicationIdentifier('WIDTH_METRES', '312',
371
+ /* AILength:*/ 4,
372
+ /* valueLengths: */ [
373
+ {
374
+ type: GS1LengthType.Fixed,
375
+ length: 6,
376
+ encoding: GS1Encoding.Numeric,
377
+ mandatory: true
378
+ }
379
+ ]),
380
+ HEIGHT_METRES: new ApplicationIdentifier('HEIGHT_METRES', '313',
381
+ /* AILength:*/ 4,
382
+ /* valueLengths: */ [
383
+ {
384
+ type: GS1LengthType.Fixed,
385
+ length: 6,
386
+ encoding: GS1Encoding.Numeric,
387
+ mandatory: true
388
+ }
389
+ ]),
390
+ AREA: new ApplicationIdentifier('AREA', '314',
391
+ /* AILength:*/ 4,
392
+ /* valueLengths: */ [
393
+ {
394
+ type: GS1LengthType.Fixed,
395
+ length: 6,
396
+ encoding: GS1Encoding.Numeric,
397
+ mandatory: true
398
+ }
399
+ ]),
400
+ NET_VOLUME_LITRES: new ApplicationIdentifier('NET_VOLUME_LITRES', '315',
401
+ /* AILength:*/ 4,
402
+ /* valueLengths: */ [
403
+ {
404
+ type: GS1LengthType.Fixed,
405
+ length: 6,
406
+ encoding: GS1Encoding.Numeric,
407
+ mandatory: true
408
+ }
409
+ ]),
410
+ NET_VOLUME_CUBIC_METRES: new ApplicationIdentifier('NET_VOLUME_CUBIC_METRES', '316',
411
+ /* AILength:*/ 4,
412
+ /* valueLengths: */ [
413
+ {
414
+ type: GS1LengthType.Fixed,
415
+ length: 6,
416
+ encoding: GS1Encoding.Numeric,
417
+ mandatory: true
418
+ }
419
+ ]),
420
+ NET_WEIGHT_LB: new ApplicationIdentifier('NET_WEIGHT_LB', '320',
421
+ /* AILength:*/ 4,
422
+ /* valueLengths: */ [
423
+ {
424
+ type: GS1LengthType.Fixed,
425
+ length: 6,
426
+ encoding: GS1Encoding.Numeric,
427
+ mandatory: true
428
+ }
429
+ ]),
430
+ LENGTH_INCHES: new ApplicationIdentifier('LENGTH_INCHES', '321',
431
+ /* AILength:*/ 4,
432
+ /* valueLengths: */ [
433
+ {
434
+ type: GS1LengthType.Fixed,
435
+ length: 6,
436
+ encoding: GS1Encoding.Numeric,
437
+ mandatory: true
438
+ }
439
+ ]),
440
+ LENGTH_FEET: new ApplicationIdentifier('LENGTH_FEET', '322',
441
+ /* AILength:*/ 4,
442
+ /* valueLengths: */ [
443
+ {
444
+ type: GS1LengthType.Fixed,
445
+ length: 6,
446
+ encoding: GS1Encoding.Numeric,
447
+ mandatory: true
448
+ }
449
+ ]),
450
+ LENGTH_YARDS: new ApplicationIdentifier('LENGTH_YARDS', '323',
451
+ /* AILength:*/ 4,
452
+ /* valueLengths: */ [
453
+ {
454
+ type: GS1LengthType.Fixed,
455
+ length: 6,
456
+ encoding: GS1Encoding.Numeric,
457
+ mandatory: true
458
+ }
459
+ ]),
460
+ WIDTH_INCHES: new ApplicationIdentifier('WIDTH_INCHES', '324',
461
+ /* AILength:*/ 4,
462
+ /* valueLengths: */ [
463
+ {
464
+ type: GS1LengthType.Fixed,
465
+ length: 6,
466
+ encoding: GS1Encoding.Numeric,
467
+ mandatory: true
468
+ }
469
+ ]),
470
+ WIDTH_FEET: new ApplicationIdentifier('WIDTH_FEET', '325',
471
+ /* AILength:*/ 4,
472
+ /* valueLengths: */ [
473
+ {
474
+ type: GS1LengthType.Fixed,
475
+ length: 6,
476
+ encoding: GS1Encoding.Numeric,
477
+ mandatory: true
478
+ }
479
+ ]),
480
+ WIDTH_YARDS: new ApplicationIdentifier('WIDTH_YARDS', '326',
481
+ /* AILength:*/ 4,
482
+ /* valueLengths: */ [
483
+ {
484
+ type: GS1LengthType.Fixed,
485
+ length: 6,
486
+ encoding: GS1Encoding.Numeric,
487
+ mandatory: true
488
+ }
489
+ ]),
490
+ HEIGHT_INCHES: new ApplicationIdentifier('HEIGHT_INCHES', '327',
491
+ /* AILength:*/ 4,
492
+ /* valueLengths: */ [
493
+ {
494
+ type: GS1LengthType.Fixed,
495
+ length: 6,
496
+ encoding: GS1Encoding.Numeric,
497
+ mandatory: true
498
+ }
499
+ ]),
500
+ HEIGHT_FEET: new ApplicationIdentifier('HEIGHT_FEET', '328',
501
+ /* AILength:*/ 4,
502
+ /* valueLengths: */ [
503
+ {
504
+ type: GS1LengthType.Fixed,
505
+ length: 6,
506
+ encoding: GS1Encoding.Numeric,
507
+ mandatory: true
508
+ }
509
+ ]),
510
+ HEIGHT_YARDS: new ApplicationIdentifier('HEIGHT_YARDS', '329',
511
+ /* AILength:*/ 4,
512
+ /* valueLengths: */ [
513
+ {
514
+ type: GS1LengthType.Fixed,
515
+ length: 6,
516
+ encoding: GS1Encoding.Numeric,
517
+ mandatory: true
518
+ }
519
+ ]),
520
+ GROSS_WEIGHT_KG: new ApplicationIdentifier('GROSS_WEIGHT_KG', '330',
521
+ /* AILength:*/ 4,
522
+ /* valueLengths: */ [
523
+ {
524
+ type: GS1LengthType.Fixed,
525
+ length: 6,
526
+ encoding: GS1Encoding.Numeric,
527
+ mandatory: true
528
+ }
529
+ ]),
530
+ LENGTH_METRES_LOG: new ApplicationIdentifier('LENGTH_METRES_LOG', '331',
531
+ /* AILength:*/ 4,
532
+ /* valueLengths: */ [
533
+ {
534
+ type: GS1LengthType.Fixed,
535
+ length: 6,
536
+ encoding: GS1Encoding.Numeric,
537
+ mandatory: true
538
+ }
539
+ ]),
540
+ WIDTH_METRES_LOG: new ApplicationIdentifier('WIDTH_METRES_LOG', '332',
541
+ /* AILength:*/ 4,
542
+ /* valueLengths: */ [
543
+ {
544
+ type: GS1LengthType.Fixed,
545
+ length: 6,
546
+ encoding: GS1Encoding.Numeric,
547
+ mandatory: true
548
+ }
549
+ ]),
550
+ HEIGHT_METRES_LOG: new ApplicationIdentifier('HEIGHT_METRES_LOG', '333',
551
+ /* AILength:*/ 4,
552
+ /* valueLengths: */ [
553
+ {
554
+ type: GS1LengthType.Fixed,
555
+ length: 6,
556
+ encoding: GS1Encoding.Numeric,
557
+ mandatory: true
558
+ }
559
+ ]),
560
+ AREA_SQUARE_METRES_LOG: new ApplicationIdentifier('AREA_SQUARE_METRES_LOG', '334',
561
+ /* AILength:*/ 4,
562
+ /* valueLengths: */ [
563
+ {
564
+ type: GS1LengthType.Fixed,
565
+ length: 6,
566
+ encoding: GS1Encoding.Numeric,
567
+ mandatory: true
568
+ }
569
+ ]),
570
+ VOLUME_LITRES_LOG: new ApplicationIdentifier('VOLUME_LITRES_LOG', '335',
571
+ /* AILength:*/ 4,
572
+ /* valueLengths: */ [
573
+ {
574
+ type: GS1LengthType.Fixed,
575
+ length: 6,
576
+ encoding: GS1Encoding.Numeric,
577
+ mandatory: true
578
+ }
579
+ ]),
580
+ VOLUME_CUBIC_METRES_LOG: new ApplicationIdentifier('VOLUME_CUBIC_METRES_LOG', '336',
581
+ /* AILength:*/ 4,
582
+ /* valueLengths: */ [
583
+ {
584
+ type: GS1LengthType.Fixed,
585
+ length: 6,
586
+ encoding: GS1Encoding.Numeric,
587
+ mandatory: true
588
+ }
589
+ ]),
590
+ KG_PER_SQUARE_METRE: new ApplicationIdentifier('KG_PER_SQUARE_METRE', '337',
591
+ /* AILength:*/ 4,
592
+ /* valueLengths: */ [
593
+ {
594
+ type: GS1LengthType.Fixed,
595
+ length: 6,
596
+ encoding: GS1Encoding.Numeric,
597
+ mandatory: true
598
+ }
599
+ ]),
600
+ GROSS_WEIGHT_LB: new ApplicationIdentifier('GROSS_WEIGHT_LB', '340',
601
+ /* AILength:*/ 4,
602
+ /* valueLengths: */ [
603
+ {
604
+ type: GS1LengthType.Fixed,
605
+ length: 6,
606
+ encoding: GS1Encoding.Numeric,
607
+ mandatory: true
608
+ }
609
+ ]),
610
+ LENGTH_INCHES_LOG: new ApplicationIdentifier('LENGTH_INCHES_LOG', '341',
611
+ /* AILength:*/ 4,
612
+ /* valueLengths: */ [
613
+ {
614
+ type: GS1LengthType.Fixed,
615
+ length: 6,
616
+ encoding: GS1Encoding.Numeric,
617
+ mandatory: true
618
+ }
619
+ ]),
620
+ LENGTH_FEET_LOG: new ApplicationIdentifier('LENGTH_FEET_LOG', '342',
621
+ /* AILength:*/ 4,
622
+ /* valueLengths: */ [
623
+ {
624
+ type: GS1LengthType.Fixed,
625
+ length: 6,
626
+ encoding: GS1Encoding.Numeric,
627
+ mandatory: true
628
+ }
629
+ ]),
630
+ LENGTH_YARDS_LOG: new ApplicationIdentifier('LENGTH_YARDS_LOG', '343',
631
+ /* AILength:*/ 4,
632
+ /* valueLengths: */ [
633
+ {
634
+ type: GS1LengthType.Fixed,
635
+ length: 6,
636
+ encoding: GS1Encoding.Numeric,
637
+ mandatory: true
638
+ }
639
+ ]),
640
+ WIDTH_INCHES_LOG: new ApplicationIdentifier('WIDTH_INCHES_LOG', '344',
641
+ /* AILength:*/ 4,
642
+ /* valueLengths: */ [
643
+ {
644
+ type: GS1LengthType.Fixed,
645
+ length: 6,
646
+ encoding: GS1Encoding.Numeric,
647
+ mandatory: true
648
+ }
649
+ ]),
650
+ WIDTH_FEET_LOG: new ApplicationIdentifier('WIDTH_FEET_LOG', '345',
651
+ /* AILength:*/ 4,
652
+ /* valueLengths: */ [
653
+ {
654
+ type: GS1LengthType.Fixed,
655
+ length: 6,
656
+ encoding: GS1Encoding.Numeric,
657
+ mandatory: true
658
+ }
659
+ ]),
660
+ WIDTH_YARDS_LOG: new ApplicationIdentifier('WIDTH_YARDS_LOG', '346',
661
+ /* AILength:*/ 4,
662
+ /* valueLengths: */ [
663
+ {
664
+ type: GS1LengthType.Fixed,
665
+ length: 6,
666
+ encoding: GS1Encoding.Numeric,
667
+ mandatory: true
668
+ }
669
+ ]),
670
+ HEIGHT_INCHES_LOG: new ApplicationIdentifier('HEIGHT_INCHES_LOG', '347',
671
+ /* AILength:*/ 4,
672
+ /* valueLengths: */ [
673
+ {
674
+ type: GS1LengthType.Fixed,
675
+ length: 6,
676
+ encoding: GS1Encoding.Numeric,
677
+ mandatory: true
678
+ }
679
+ ]),
680
+ HEIGHT_FEET_LOG: new ApplicationIdentifier('HEIGHT_FEET_LOG', '348',
681
+ /* AILength:*/ 4,
682
+ /* valueLengths: */ [
683
+ {
684
+ type: GS1LengthType.Fixed,
685
+ length: 6,
686
+ encoding: GS1Encoding.Numeric,
687
+ mandatory: true
688
+ }
689
+ ]),
690
+ HEIGHT_YARDS_LOG: new ApplicationIdentifier('HEIGHT_YARDS_LOG', '349',
691
+ /* AILength:*/ 4,
692
+ /* valueLengths: */ [
693
+ {
694
+ type: GS1LengthType.Fixed,
695
+ length: 6,
696
+ encoding: GS1Encoding.Numeric,
697
+ mandatory: true
698
+ }
699
+ ]),
700
+ AREA_SQUARE_INCHES: new ApplicationIdentifier('AREA_SQUARE_INCHES', '350',
701
+ /* AILength:*/ 4,
702
+ /* valueLengths: */ [
703
+ {
704
+ type: GS1LengthType.Fixed,
705
+ length: 6,
706
+ encoding: GS1Encoding.Numeric,
707
+ mandatory: true
708
+ }
709
+ ]),
710
+ AREA_SQUARE_FEET: new ApplicationIdentifier('AREA_SQUARE_FEET', '351',
711
+ /* AILength:*/ 4,
712
+ /* valueLengths: */ [
713
+ {
714
+ type: GS1LengthType.Fixed,
715
+ length: 6,
716
+ encoding: GS1Encoding.Numeric,
717
+ mandatory: true
718
+ }
719
+ ]),
720
+ AREA_SQUARE_YARDS: new ApplicationIdentifier('AREA_SQUARE_YARDS', '352',
721
+ /* AILength:*/ 4,
722
+ /* valueLengths: */ [
723
+ {
724
+ type: GS1LengthType.Fixed,
725
+ length: 6,
726
+ encoding: GS1Encoding.Numeric,
727
+ mandatory: true
728
+ }
729
+ ]),
730
+ AREA_SQUARE_INCHES_LOG: new ApplicationIdentifier('AREA_SQUARE_INCHES_LOG', '353',
731
+ /* AILength:*/ 4,
732
+ /* valueLengths: */ [
733
+ {
734
+ type: GS1LengthType.Fixed,
735
+ length: 6,
736
+ encoding: GS1Encoding.Numeric,
737
+ mandatory: true
738
+ }
739
+ ]),
740
+ AREA_SQUARE_FEET_LOG: new ApplicationIdentifier('AREA_SQUARE_FEET_LOG', '354',
741
+ /* AILength:*/ 4,
742
+ /* valueLengths: */ [
743
+ {
744
+ type: GS1LengthType.Fixed,
745
+ length: 6,
746
+ encoding: GS1Encoding.Numeric,
747
+ mandatory: true
748
+ }
749
+ ]),
750
+ AREA_SQUARE_YARDS_LOG: new ApplicationIdentifier('AREA_SQUARE_YARDS_LOG', '355',
751
+ /* AILength:*/ 4,
752
+ /* valueLengths: */ [
753
+ {
754
+ type: GS1LengthType.Fixed,
755
+ length: 6,
756
+ encoding: GS1Encoding.Numeric,
757
+ mandatory: true
758
+ }
759
+ ]),
760
+ NET_WEIGHT_TROY_OUNCES: new ApplicationIdentifier('NET_WEIGHT_TROY_OUNCES', '356',
761
+ /* AILength:*/ 4,
762
+ /* valueLengths: */ [
763
+ {
764
+ type: GS1LengthType.Fixed,
765
+ length: 6,
766
+ encoding: GS1Encoding.Numeric,
767
+ mandatory: true
768
+ }
769
+ ]),
770
+ NET_VOLUME_OUNCES: new ApplicationIdentifier('NET_VOLUME_OUNCES', '357',
771
+ /* AILength:*/ 4,
772
+ /* valueLengths: */ [
773
+ {
774
+ type: GS1LengthType.Fixed,
775
+ length: 6,
776
+ encoding: GS1Encoding.Numeric,
777
+ mandatory: true
778
+ }
779
+ ]),
780
+ NET_VOLUME_QUARTS: new ApplicationIdentifier('NET_VOLUME_QUARTS', '360',
781
+ /* AILength:*/ 4,
782
+ /* valueLengths: */ [
783
+ {
784
+ type: GS1LengthType.Fixed,
785
+ length: 6,
786
+ encoding: GS1Encoding.Numeric,
787
+ mandatory: true
788
+ }
789
+ ]),
790
+ NET_VOLUME_GALLONS: new ApplicationIdentifier('NET_VOLUME_GALLONS', '361',
791
+ /* AILength:*/ 4,
792
+ /* valueLengths: */ [
793
+ {
794
+ type: GS1LengthType.Fixed,
795
+ length: 6,
796
+ encoding: GS1Encoding.Numeric,
797
+ mandatory: true
798
+ }
799
+ ]),
800
+ LOGISTIC_VOLUME_QUARTS: new ApplicationIdentifier('LOGISTIC_VOLUME_QUARTS', '363',
801
+ /* AILength:*/ 4,
802
+ /* valueLengths: */ [
803
+ {
804
+ type: GS1LengthType.Fixed,
805
+ length: 6,
806
+ encoding: GS1Encoding.Numeric,
807
+ mandatory: true
808
+ }
809
+ ]),
810
+ LOGISTIC_VOLUME_GALLONS_US: new ApplicationIdentifier('LOGISTIC_VOLUME_GALLONS_US', '363',
811
+ /* AILength:*/ 4,
812
+ /* valueLengths: */ [
813
+ {
814
+ type: GS1LengthType.Fixed,
815
+ length: 6,
816
+ encoding: GS1Encoding.Numeric,
817
+ mandatory: true
818
+ }
819
+ ]),
820
+ VOLUME_CUBIC_INCHES: new ApplicationIdentifier('VOLUME_CUBIC_INCHES', '364',
821
+ /* AILength:*/ 4,
822
+ /* valueLengths: */ [
823
+ {
824
+ type: GS1LengthType.Fixed,
825
+ length: 6,
826
+ encoding: GS1Encoding.Numeric,
827
+ mandatory: true
828
+ }
829
+ ]),
830
+ VOLUME_CUBIC_FEET: new ApplicationIdentifier('VOLUME_CUBIC_FEET', '365',
831
+ /* AILength:*/ 4,
832
+ /* valueLengths: */ [
833
+ {
834
+ type: GS1LengthType.Fixed,
835
+ length: 6,
836
+ encoding: GS1Encoding.Numeric,
837
+ mandatory: true
838
+ }
839
+ ]),
840
+ VOLUME_CUBIC_YARDS: new ApplicationIdentifier('VOLUME_CUBIC_YARDS', '366',
841
+ /* AILength:*/ 4,
842
+ /* valueLengths: */ [
843
+ {
844
+ type: GS1LengthType.Fixed,
845
+ length: 6,
846
+ encoding: GS1Encoding.Numeric,
847
+ mandatory: true
848
+ }
849
+ ]),
850
+ LOGISTIC_VOLUME_CUBIC_INCHES: new ApplicationIdentifier('LOGISTIC_VOLUME_CUBIC_INCHES', '367',
851
+ /* AILength:*/ 4,
852
+ /* valueLengths: */ [
853
+ {
854
+ type: GS1LengthType.Fixed,
855
+ length: 6,
856
+ encoding: GS1Encoding.Numeric,
857
+ mandatory: true
858
+ }
859
+ ]),
860
+ LOGISTIC_VOLUME_CUBIC_FEET: new ApplicationIdentifier('LOGISTIC_VOLUME_CUBIC_FEET', '368',
861
+ /* AILength:*/ 4,
862
+ /* valueLengths: */ [
863
+ {
864
+ type: GS1LengthType.Fixed,
865
+ length: 6,
866
+ encoding: GS1Encoding.Numeric,
867
+ mandatory: true
868
+ }
869
+ ]),
870
+ LOGISTIC_VOLUME_CUBIC_YARDS: new ApplicationIdentifier('LOGISTIC_VOLUME_CUBIC_YARDS', '369',
871
+ /* AILength:*/ 4,
872
+ /* valueLengths: */ [
873
+ {
874
+ type: GS1LengthType.Fixed,
875
+ length: 6,
876
+ encoding: GS1Encoding.Numeric,
877
+ mandatory: true
878
+ }
879
+ ]),
880
+ COUNT: new ApplicationIdentifier('COUNT', '37',
881
+ /* AILength:*/ 2,
882
+ /* valueLengths: */ [
883
+ {
884
+ type: GS1LengthType.Variable,
885
+ length: 8,
886
+ encoding: GS1Encoding.Numeric,
887
+ mandatory: true
888
+ }
889
+ ]),
890
+ AMOUNT: new ApplicationIdentifier('AMOUNT', '390',
891
+ /* AILength:*/ 4,
892
+ /* valueLengths: */ [
893
+ {
894
+ type: GS1LengthType.Variable,
895
+ length: 15,
896
+ encoding: GS1Encoding.Numeric,
897
+ mandatory: true
898
+ }
899
+ ]),
900
+ AMOUNT_ISO: new ApplicationIdentifier('AMOUNT_ISO', '391',
901
+ /* AILength:*/ 4,
902
+ /* valueLengths: */ [
903
+ {
904
+ type: GS1LengthType.Fixed,
905
+ length: 3,
906
+ encoding: GS1Encoding.Numeric,
907
+ mandatory: true
908
+ },
909
+ {
910
+ type: GS1LengthType.Variable,
911
+ length: 15,
912
+ encoding: GS1Encoding.Numeric,
913
+ mandatory: true
914
+ }
915
+ ]),
916
+ PRICE: new ApplicationIdentifier('PRICE', '392',
917
+ /* AILength:*/ 4,
918
+ /* valueLengths: */ [
919
+ {
920
+ type: GS1LengthType.Variable,
921
+ length: 15,
922
+ encoding: GS1Encoding.Numeric,
923
+ mandatory: true
924
+ }
925
+ ]),
926
+ PRICE_ISO: new ApplicationIdentifier('PRICE_ISO', '393',
927
+ /* AILength:*/ 4,
928
+ /* valueLengths: */ [
929
+ {
930
+ type: GS1LengthType.Fixed,
931
+ length: 3,
932
+ encoding: GS1Encoding.Numeric,
933
+ mandatory: true
934
+ },
935
+ {
936
+ type: GS1LengthType.Variable,
937
+ length: 15,
938
+ encoding: GS1Encoding.Numeric,
939
+ mandatory: true
940
+ }
941
+ ]),
942
+ PERCENT_OFF: new ApplicationIdentifier('PERCENT_OFF', '394',
943
+ /* AILength:*/ 4,
944
+ /* valueLengths: */ [
945
+ {
946
+ type: GS1LengthType.Fixed,
947
+ length: 4,
948
+ encoding: GS1Encoding.Numeric,
949
+ mandatory: true
950
+ }
951
+ ]),
952
+ PRICE_PER_UOM: new ApplicationIdentifier('PRICE_PER_UOM', '395',
953
+ /* AILength:*/ 4,
954
+ /* valueLengths: */ [
955
+ {
956
+ type: GS1LengthType.Fixed,
957
+ length: 6,
958
+ encoding: GS1Encoding.Numeric,
959
+ mandatory: true
960
+ }
961
+ ]),
962
+ ORDER_NUMBER: new ApplicationIdentifier('ORDER_NUMBER', '400',
963
+ /* AILength:*/ 3,
964
+ /* valueLengths: */ [
965
+ {
966
+ type: GS1LengthType.Variable,
967
+ length: 30,
968
+ encoding: GS1Encoding.Set82,
969
+ mandatory: true
970
+ }
971
+ ]),
972
+ GINC: new ApplicationIdentifier('GINC', '401',
973
+ /* AILength:*/ 3,
974
+ /* valueLengths: */ [
975
+ {
976
+ type: GS1LengthType.Variable,
977
+ length: 30,
978
+ encoding: GS1Encoding.Set82,
979
+ mandatory: true
980
+ }
981
+ ]),
982
+ GSIN: new ApplicationIdentifier('GSIN', '402',
983
+ /* AILength:*/ 3,
984
+ /* valueLengths: */ [
985
+ {
986
+ type: GS1LengthType.Fixed,
987
+ length: 17,
988
+ encoding: GS1Encoding.Numeric,
989
+ mandatory: true
990
+ }
991
+ ]),
992
+ ROUTE: new ApplicationIdentifier('ROUTE', '403',
993
+ /* AILength:*/ 3,
994
+ /* valueLengths: */ [
995
+ {
996
+ type: GS1LengthType.Variable,
997
+ length: 30,
998
+ encoding: GS1Encoding.Set82,
999
+ mandatory: true
1000
+ }
1001
+ ]),
1002
+ SHIP_TO_GLOBAL: new ApplicationIdentifier('SHIP_TO_GLOBAL', '410',
1003
+ /* AILength:*/ 3,
1004
+ /* valueLengths: */ [
1005
+ {
1006
+ type: GS1LengthType.Fixed,
1007
+ length: 13,
1008
+ encoding: GS1Encoding.Numeric,
1009
+ mandatory: true
1010
+ }
1011
+ ]),
1012
+ BILL_TO: new ApplicationIdentifier('BILL_TO', '411',
1013
+ /* AILength:*/ 3,
1014
+ /* valueLengths: */ [
1015
+ {
1016
+ type: GS1LengthType.Fixed,
1017
+ length: 13,
1018
+ encoding: GS1Encoding.Numeric,
1019
+ mandatory: true
1020
+ }
1021
+ ]),
1022
+ PURCHASE_FROM: new ApplicationIdentifier('PURCHASE_FROM', '412',
1023
+ /* AILength:*/ 3,
1024
+ /* valueLengths: */ [
1025
+ {
1026
+ type: GS1LengthType.Fixed,
1027
+ length: 13,
1028
+ encoding: GS1Encoding.Numeric,
1029
+ mandatory: true
1030
+ }
1031
+ ]),
1032
+ SHIP_FOR_LOC: new ApplicationIdentifier('SHIP_FOR_LOC', '413',
1033
+ /* AILength:*/ 3,
1034
+ /* valueLengths: */ [
1035
+ {
1036
+ type: GS1LengthType.Fixed,
1037
+ length: 13,
1038
+ encoding: GS1Encoding.Numeric,
1039
+ mandatory: true
1040
+ }
1041
+ ]),
1042
+ LOC_NUMBER: new ApplicationIdentifier('LOC_NUMBER', '414',
1043
+ /* AILength:*/ 3,
1044
+ /* valueLengths: */ [
1045
+ {
1046
+ type: GS1LengthType.Fixed,
1047
+ length: 13,
1048
+ encoding: GS1Encoding.Numeric,
1049
+ mandatory: true
1050
+ }
1051
+ ]),
1052
+ PAY_TO: new ApplicationIdentifier('PAY_TO', '415',
1053
+ /* AILength:*/ 3,
1054
+ /* valueLengths: */ [
1055
+ {
1056
+ type: GS1LengthType.Fixed,
1057
+ length: 13,
1058
+ encoding: GS1Encoding.Numeric,
1059
+ mandatory: true
1060
+ }
1061
+ ]),
1062
+ PROD_LOC: new ApplicationIdentifier('PROD_LOC', '416',
1063
+ /* AILength:*/ 3,
1064
+ /* valueLengths: */ [
1065
+ {
1066
+ type: GS1LengthType.Fixed,
1067
+ length: 13,
1068
+ encoding: GS1Encoding.Numeric,
1069
+ mandatory: true
1070
+ }
1071
+ ]),
1072
+ PARTY: new ApplicationIdentifier('PARTY', '417',
1073
+ /* AILength:*/ 3,
1074
+ /* valueLengths: */ [
1075
+ {
1076
+ type: GS1LengthType.Fixed,
1077
+ length: 13,
1078
+ encoding: GS1Encoding.Numeric,
1079
+ mandatory: true
1080
+ }
1081
+ ]),
1082
+ SHIP_TO_POST: new ApplicationIdentifier('SHIP_TO_POST', '420',
1083
+ /* AILength:*/ 3,
1084
+ /* valueLengths: */ [
1085
+ {
1086
+ type: GS1LengthType.Variable,
1087
+ length: 20,
1088
+ encoding: GS1Encoding.Set82,
1089
+ mandatory: true
1090
+ }
1091
+ ]),
1092
+ SHIP_TO_POST_ISO: new ApplicationIdentifier('SHIP_TO_POST_ISO', '421',
1093
+ /* AILength:*/ 3,
1094
+ /* valueLengths: */ [
1095
+ {
1096
+ type: GS1LengthType.Fixed,
1097
+ length: 3,
1098
+ encoding: GS1Encoding.Numeric,
1099
+ mandatory: true
1100
+ },
1101
+ {
1102
+ type: GS1LengthType.Variable,
1103
+ length: 9,
1104
+ encoding: GS1Encoding.Set82,
1105
+ mandatory: true
1106
+ }
1107
+ ]),
1108
+ ORIGIN: new ApplicationIdentifier('ORIGIN', '422',
1109
+ /* AILength:*/ 3,
1110
+ /* valueLengths: */ [
1111
+ {
1112
+ type: GS1LengthType.Fixed,
1113
+ length: 3,
1114
+ encoding: GS1Encoding.Numeric,
1115
+ mandatory: true
1116
+ }
1117
+ ]),
1118
+ COUNTRY_INITIAL_PROCESS: new ApplicationIdentifier('COUNTRY_INITIAL_PROCESS', '423',
1119
+ /* AILength:*/ 3,
1120
+ /* valueLengths: */ [
1121
+ {
1122
+ type: GS1LengthType.Fixed,
1123
+ length: 3,
1124
+ encoding: GS1Encoding.Numeric,
1125
+ mandatory: true
1126
+ },
1127
+ {
1128
+ type: GS1LengthType.Variable,
1129
+ length: 12,
1130
+ encoding: GS1Encoding.Numeric,
1131
+ mandatory: true
1132
+ }
1133
+ ]),
1134
+ COUNTRY_PROCESS: new ApplicationIdentifier('COUNTRY_PROCESS', '424',
1135
+ /* AILength:*/ 3,
1136
+ /* valueLengths: */ [
1137
+ {
1138
+ type: GS1LengthType.Fixed,
1139
+ length: 3,
1140
+ encoding: GS1Encoding.Numeric,
1141
+ mandatory: true
1142
+ }
1143
+ ]),
1144
+ COUNTRY_DISASSEMBLY: new ApplicationIdentifier('COUNTRY_DISASSEMBLY', '425',
1145
+ /* AILength:*/ 3,
1146
+ /* valueLengths: */ [
1147
+ {
1148
+ type: GS1LengthType.Fixed,
1149
+ length: 3,
1150
+ encoding: GS1Encoding.Numeric,
1151
+ mandatory: true
1152
+ },
1153
+ {
1154
+ type: GS1LengthType.Variable,
1155
+ length: 12,
1156
+ encoding: GS1Encoding.Numeric,
1157
+ mandatory: true
1158
+ }
1159
+ ]),
1160
+ COUNTRY_FULL_PROCESS: new ApplicationIdentifier('COUNTRY_FULL_PROCESS', '426',
1161
+ /* AILength:*/ 3,
1162
+ /* valueLengths: */ [
1163
+ {
1164
+ type: GS1LengthType.Fixed,
1165
+ length: 3,
1166
+ encoding: GS1Encoding.Numeric,
1167
+ mandatory: true
1168
+ }
1169
+ ]),
1170
+ ORIGIN_SUBDIVISION: new ApplicationIdentifier('ORIGIN_SUBDIVISION', '427',
1171
+ /* AILength:*/ 3,
1172
+ /* valueLengths: */ [
1173
+ {
1174
+ type: GS1LengthType.Variable,
1175
+ length: 3,
1176
+ encoding: GS1Encoding.Set82,
1177
+ mandatory: true
1178
+ }
1179
+ ]),
1180
+ SHIP_TO_COMP: new ApplicationIdentifier('SHIP_TO_COMP', '4300',
1181
+ /* AILength:*/ 4,
1182
+ /* valueLengths: */ [
1183
+ {
1184
+ type: GS1LengthType.Variable,
1185
+ length: 35,
1186
+ encoding: GS1Encoding.Set82,
1187
+ mandatory: true
1188
+ }
1189
+ ]),
1190
+ SHIP_TO_NAME: new ApplicationIdentifier('SHIP_TO_NAME', '4301',
1191
+ /* AILength:*/ 4,
1192
+ /* valueLengths: */ [
1193
+ {
1194
+ type: GS1LengthType.Variable,
1195
+ length: 35,
1196
+ encoding: GS1Encoding.Set82,
1197
+ mandatory: true
1198
+ }
1199
+ ]),
1200
+ SHIP_TO_ADD1: new ApplicationIdentifier('SHIP_TO_ADD1', '4302',
1201
+ /* AILength:*/ 4,
1202
+ /* valueLengths: */ [
1203
+ {
1204
+ type: GS1LengthType.Variable,
1205
+ length: 70,
1206
+ encoding: GS1Encoding.Set82,
1207
+ mandatory: true
1208
+ }
1209
+ ]),
1210
+ SHIP_TO_ADD2: new ApplicationIdentifier('SHIP_TO_ADD2', '4303',
1211
+ /* AILength:*/ 4,
1212
+ /* valueLengths: */ [
1213
+ {
1214
+ type: GS1LengthType.Variable,
1215
+ length: 70,
1216
+ encoding: GS1Encoding.Set82,
1217
+ mandatory: true
1218
+ }
1219
+ ]),
1220
+ SHIP_TO_SUB: new ApplicationIdentifier('SHIP_TO_SUB', '4304',
1221
+ /* AILength:*/ 4,
1222
+ /* valueLengths: */ [
1223
+ {
1224
+ type: GS1LengthType.Variable,
1225
+ length: 70,
1226
+ encoding: GS1Encoding.Set82,
1227
+ mandatory: true
1228
+ }
1229
+ ]),
1230
+ SHIP_TO_LOCAL: new ApplicationIdentifier('SHIP_TO_LOCAL', '4305',
1231
+ /* AILength:*/ 4,
1232
+ /* valueLengths: */ [
1233
+ {
1234
+ type: GS1LengthType.Variable,
1235
+ length: 70,
1236
+ encoding: GS1Encoding.Set82,
1237
+ mandatory: true
1238
+ }
1239
+ ]),
1240
+ SHIP_TO_REG: new ApplicationIdentifier('SHIP_TO_REG', '4306',
1241
+ /* AILength:*/ 4,
1242
+ /* valueLengths: */ [
1243
+ {
1244
+ type: GS1LengthType.Variable,
1245
+ length: 70,
1246
+ encoding: GS1Encoding.Set82,
1247
+ mandatory: true
1248
+ }
1249
+ ]),
1250
+ SHIP_TO_COUNTRY: new ApplicationIdentifier('SHIP_TO_COUNTRY', '4307',
1251
+ /* AILength:*/ 4,
1252
+ /* valueLengths: */ [
1253
+ {
1254
+ type: GS1LengthType.Fixed,
1255
+ length: 2,
1256
+ encoding: GS1Encoding.Set82,
1257
+ mandatory: true
1258
+ }
1259
+ ]),
1260
+ SHIP_TO_PHONE: new ApplicationIdentifier('SHIP_TO_PHONE', '4308',
1261
+ /* AILength:*/ 4,
1262
+ /* valueLengths: */ [
1263
+ {
1264
+ type: GS1LengthType.Fixed,
1265
+ length: 30,
1266
+ encoding: GS1Encoding.Set82,
1267
+ mandatory: true
1268
+ }
1269
+ ]),
1270
+ SHIP_TO_GEO: new ApplicationIdentifier('SHIP_TO_GEO', '4309',
1271
+ /* AILength:*/ 4,
1272
+ /* valueLengths: */ [
1273
+ {
1274
+ type: GS1LengthType.Fixed,
1275
+ length: 20,
1276
+ encoding: GS1Encoding.Numeric,
1277
+ mandatory: true
1278
+ }
1279
+ ]),
1280
+ RTN_TO_COMP: new ApplicationIdentifier('RTN_TO_COMP', '4310',
1281
+ /* AILength:*/ 4,
1282
+ /* valueLengths: */ [
1283
+ {
1284
+ type: GS1LengthType.Variable,
1285
+ length: 35,
1286
+ encoding: GS1Encoding.Set82,
1287
+ mandatory: true
1288
+ }
1289
+ ]),
1290
+ RTN_TO_NAME: new ApplicationIdentifier('RTN_TO_NAME', '4311',
1291
+ /* AILength:*/ 4,
1292
+ /* valueLengths: */ [
1293
+ {
1294
+ type: GS1LengthType.Variable,
1295
+ length: 35,
1296
+ encoding: GS1Encoding.Set82,
1297
+ mandatory: true
1298
+ }
1299
+ ]),
1300
+ RTN_TO_ADD1: new ApplicationIdentifier('RTN_TO_ADD1', '4312',
1301
+ /* AILength:*/ 4,
1302
+ /* valueLengths: */ [
1303
+ {
1304
+ type: GS1LengthType.Variable,
1305
+ length: 70,
1306
+ encoding: GS1Encoding.Set82,
1307
+ mandatory: true
1308
+ }
1309
+ ]),
1310
+ RTN_TO_ADD2: new ApplicationIdentifier('RTN_TO_ADD2', '4313',
1311
+ /* AILength:*/ 4,
1312
+ /* valueLengths: */ [
1313
+ {
1314
+ type: GS1LengthType.Variable,
1315
+ length: 70,
1316
+ encoding: GS1Encoding.Set82,
1317
+ mandatory: true
1318
+ }
1319
+ ]),
1320
+ RTN_TO_SUB: new ApplicationIdentifier('RTN_TO_SUB', '4314',
1321
+ /* AILength:*/ 4,
1322
+ /* valueLengths: */ [
1323
+ {
1324
+ type: GS1LengthType.Variable,
1325
+ length: 70,
1326
+ encoding: GS1Encoding.Set82,
1327
+ mandatory: true
1328
+ }
1329
+ ]),
1330
+ RTN_TO_LOC: new ApplicationIdentifier('RTN_TO_LOC', '4315',
1331
+ /* AILength:*/ 4,
1332
+ /* valueLengths: */ [
1333
+ {
1334
+ type: GS1LengthType.Variable,
1335
+ length: 70,
1336
+ encoding: GS1Encoding.Set82,
1337
+ mandatory: true
1338
+ }
1339
+ ]),
1340
+ RTN_TO_REG: new ApplicationIdentifier('RTN_TO_REG', '4316',
1341
+ /* AILength:*/ 4,
1342
+ /* valueLengths: */ [
1343
+ {
1344
+ type: GS1LengthType.Variable,
1345
+ length: 70,
1346
+ encoding: GS1Encoding.Set82,
1347
+ mandatory: true
1348
+ }
1349
+ ]),
1350
+ RTN_TO_COUNTRY: new ApplicationIdentifier('RTN_TO_COUNTRY', '4317',
1351
+ /* AILength:*/ 4,
1352
+ /* valueLengths: */ [
1353
+ {
1354
+ type: GS1LengthType.Fixed,
1355
+ length: 2,
1356
+ encoding: GS1Encoding.Set82,
1357
+ mandatory: true
1358
+ }
1359
+ ]),
1360
+ RTN_TO_POST: new ApplicationIdentifier('RTN_TO_POST', '4318',
1361
+ /* AILength:*/ 4,
1362
+ /* valueLengths: */ [
1363
+ {
1364
+ type: GS1LengthType.Variable,
1365
+ length: 20,
1366
+ encoding: GS1Encoding.Set82,
1367
+ mandatory: true
1368
+ }
1369
+ ]),
1370
+ RTN_TO_PHONE: new ApplicationIdentifier('RTN_TO_PHONE', '4320',
1371
+ /* AILength:*/ 4,
1372
+ /* valueLengths: */ [
1373
+ {
1374
+ type: GS1LengthType.Variable,
1375
+ length: 35,
1376
+ encoding: GS1Encoding.Set82,
1377
+ mandatory: true
1378
+ }
1379
+ ]),
1380
+ SRV_DESCRIPTION: new ApplicationIdentifier('SRV_DESCRIPTION', '4320',
1381
+ /* AILength:*/ 4,
1382
+ /* valueLengths: */ [
1383
+ {
1384
+ type: GS1LengthType.Variable,
1385
+ length: 35,
1386
+ encoding: GS1Encoding.Set82,
1387
+ mandatory: true
1388
+ }
1389
+ ]),
1390
+ DANGEROUS_GOODS: new ApplicationIdentifier('DANGEROUS_GOODS', '4321',
1391
+ /* AILength:*/ 4,
1392
+ /* valueLengths: */ [
1393
+ {
1394
+ type: GS1LengthType.Fixed,
1395
+ length: 1,
1396
+ encoding: GS1Encoding.Numeric,
1397
+ mandatory: true
1398
+ }
1399
+ ]),
1400
+ AUTH_LEAVE: new ApplicationIdentifier('AUTH_LEAVE', '4322',
1401
+ /* AILength:*/ 4,
1402
+ /* valueLengths: */ [
1403
+ {
1404
+ type: GS1LengthType.Fixed,
1405
+ length: 1,
1406
+ encoding: GS1Encoding.Numeric,
1407
+ mandatory: true
1408
+ }
1409
+ ]),
1410
+ SIG_REQUIRED: new ApplicationIdentifier('SIG_REQUIRED', '4323',
1411
+ /* AILength:*/ 4,
1412
+ /* valueLengths: */ [
1413
+ {
1414
+ type: GS1LengthType.Fixed,
1415
+ length: 1,
1416
+ encoding: GS1Encoding.Numeric,
1417
+ mandatory: true
1418
+ }
1419
+ ]),
1420
+ NOT_BEFORE_DELIVERY_DATE_TIME: new ApplicationIdentifier('NOT_BEFORE_DELIVERY_DATE_TIME', '4324',
1421
+ /* AILength:*/ 4,
1422
+ /* valueLengths: */ [
1423
+ {
1424
+ type: GS1LengthType.Fixed,
1425
+ length: 10,
1426
+ encoding: GS1Encoding.Numeric,
1427
+ mandatory: true
1428
+ }
1429
+ ]),
1430
+ NOT_AFTER_DELIVERY_DATE_TIME: new ApplicationIdentifier('NOT_AFTER_DELIVERY_DATE_TIME', '4325',
1431
+ /* AILength:*/ 4,
1432
+ /* valueLengths: */ [
1433
+ {
1434
+ type: GS1LengthType.Fixed,
1435
+ length: 10,
1436
+ encoding: GS1Encoding.Numeric,
1437
+ mandatory: true
1438
+ }
1439
+ ]),
1440
+ RELEASE_DATE: new ApplicationIdentifier('RELEASE_DATE', '4326',
1441
+ /* AILength:*/ 4,
1442
+ /* valueLengths: */ [
1443
+ {
1444
+ type: GS1LengthType.Fixed,
1445
+ length: 6,
1446
+ encoding: GS1Encoding.Numeric,
1447
+ mandatory: true
1448
+ }
1449
+ ]),
1450
+ NSN: new ApplicationIdentifier('NSN', '7001',
1451
+ /* AILength:*/ 4,
1452
+ /* valueLengths: */ [
1453
+ {
1454
+ type: GS1LengthType.Fixed,
1455
+ length: 13,
1456
+ encoding: GS1Encoding.Numeric,
1457
+ mandatory: true
1458
+ }
1459
+ ]),
1460
+ MEAT_CUT: new ApplicationIdentifier('MEAT_CUT', '7002',
1461
+ /* AILength:*/ 4,
1462
+ /* valueLengths: */ [
1463
+ {
1464
+ type: GS1LengthType.Variable,
1465
+ length: 13,
1466
+ encoding: GS1Encoding.Set82,
1467
+ mandatory: true
1468
+ }
1469
+ ]),
1470
+ EXPIRY_TIME: new ApplicationIdentifier('EXPIRY_TIME', '7003',
1471
+ /* AILength:*/ 4,
1472
+ /* valueLengths: */ [
1473
+ {
1474
+ type: GS1LengthType.Fixed,
1475
+ length: 10,
1476
+ encoding: GS1Encoding.Numeric,
1477
+ mandatory: true
1478
+ }
1479
+ ]),
1480
+ ACTIVE_POTENCY: new ApplicationIdentifier('ACTIVE_POTENCY', '7004',
1481
+ /* AILength:*/ 4,
1482
+ /* valueLengths: */ [
1483
+ {
1484
+ type: GS1LengthType.Variable,
1485
+ length: 4,
1486
+ encoding: GS1Encoding.Numeric,
1487
+ mandatory: true
1488
+ }
1489
+ ]),
1490
+ CATCH_AREA: new ApplicationIdentifier('CATCH_AREA', '7005',
1491
+ /* AILength:*/ 4,
1492
+ /* valueLengths: */ [
1493
+ {
1494
+ type: GS1LengthType.Variable,
1495
+ length: 12,
1496
+ encoding: GS1Encoding.Set82,
1497
+ mandatory: true
1498
+ }
1499
+ ]),
1500
+ FIRST_FREEZE_DATE: new ApplicationIdentifier('FIRST_FREEZE_DATE', '7006',
1501
+ /* AILength:*/ 4,
1502
+ /* valueLengths: */ [
1503
+ {
1504
+ type: GS1LengthType.Fixed,
1505
+ length: 6,
1506
+ encoding: GS1Encoding.Numeric,
1507
+ mandatory: true
1508
+ }
1509
+ ]),
1510
+ HARVEST_DATE: new ApplicationIdentifier('HARVEST_DATE', '7007',
1511
+ /* AILength:*/ 4,
1512
+ /* valueLengths: */ [
1513
+ {
1514
+ type: GS1LengthType.Fixed,
1515
+ length: 6,
1516
+ encoding: GS1Encoding.Numeric,
1517
+ mandatory: true
1518
+ },
1519
+ {
1520
+ type: GS1LengthType.Fixed,
1521
+ length: 6,
1522
+ encoding: GS1Encoding.Numeric,
1523
+ mandatory: false
1524
+ }
1525
+ ]),
1526
+ AQUATIC_SPECIES: new ApplicationIdentifier('AQUATIC_SPECIES', '7008',
1527
+ /* AILength:*/ 4,
1528
+ /* valueLengths: */ [
1529
+ {
1530
+ type: GS1LengthType.Variable,
1531
+ length: 3,
1532
+ encoding: GS1Encoding.Set82,
1533
+ mandatory: true
1534
+ }
1535
+ ]),
1536
+ FISHING_GEAR_TYPE: new ApplicationIdentifier('FISHING_GEAR_TYPE', '7009',
1537
+ /* AILength:*/ 4,
1538
+ /* valueLengths: */ [
1539
+ {
1540
+ type: GS1LengthType.Variable,
1541
+ length: 10,
1542
+ encoding: GS1Encoding.Set82,
1543
+ mandatory: true
1544
+ }
1545
+ ]),
1546
+ PROD_METHOD: new ApplicationIdentifier('PROD_METHOD', '7010',
1547
+ /* AILength:*/ 4,
1548
+ /* valueLengths: */ [
1549
+ {
1550
+ type: GS1LengthType.Variable,
1551
+ length: 2,
1552
+ encoding: GS1Encoding.Set82,
1553
+ mandatory: true
1554
+ }
1555
+ ]),
1556
+ TEST_BY_DATE: new ApplicationIdentifier('TEST_BY_DATE', '7011',
1557
+ /* AILength:*/ 4,
1558
+ /* valueLengths: */ [
1559
+ {
1560
+ type: GS1LengthType.Fixed,
1561
+ length: 6,
1562
+ encoding: GS1Encoding.Numeric,
1563
+ mandatory: true
1564
+ },
1565
+ {
1566
+ type: GS1LengthType.Fixed,
1567
+ length: 6,
1568
+ encoding: GS1Encoding.Numeric,
1569
+ mandatory: false
1570
+ }
1571
+ ]),
1572
+ REFURB_LOT: new ApplicationIdentifier('REFURB_LOT', '7020',
1573
+ /* AILength:*/ 4,
1574
+ /* valueLengths: */ [
1575
+ {
1576
+ type: GS1LengthType.Variable,
1577
+ length: 20,
1578
+ encoding: GS1Encoding.Set82,
1579
+ mandatory: true
1580
+ }
1581
+ ]),
1582
+ FUNC_STAT: new ApplicationIdentifier('FUNC_STAT', '7021',
1583
+ /* AILength:*/ 4,
1584
+ /* valueLengths: */ [
1585
+ {
1586
+ type: GS1LengthType.Variable,
1587
+ length: 20,
1588
+ encoding: GS1Encoding.Set82,
1589
+ mandatory: true
1590
+ }
1591
+ ]),
1592
+ REV_STAT: new ApplicationIdentifier('REV_STAT', '7022',
1593
+ /* AILength:*/ 4,
1594
+ /* valueLengths: */ [
1595
+ {
1596
+ type: GS1LengthType.Variable,
1597
+ length: 20,
1598
+ encoding: GS1Encoding.Set82,
1599
+ mandatory: true
1600
+ }
1601
+ ]),
1602
+ GIAI_ASSEMBLY: new ApplicationIdentifier('GIAI_ASSEMBLY', '7023',
1603
+ /* AILength:*/ 4,
1604
+ /* valueLengths: */ [
1605
+ {
1606
+ type: GS1LengthType.Variable,
1607
+ length: 20,
1608
+ encoding: GS1Encoding.Set82,
1609
+ mandatory: true
1610
+ }
1611
+ ]),
1612
+ PROCESSOR: new ApplicationIdentifier('PROCESSOR', '703',
1613
+ /* AILength:*/ 4,
1614
+ /* valueLengths: */ [
1615
+ {
1616
+ type: GS1LengthType.Fixed,
1617
+ length: 3,
1618
+ encoding: GS1Encoding.Numeric,
1619
+ mandatory: true
1620
+ },
1621
+ {
1622
+ type: GS1LengthType.Variable,
1623
+ length: 27,
1624
+ encoding: GS1Encoding.Set82,
1625
+ mandatory: true
1626
+ }
1627
+ ]),
1628
+ UIC_EXT: new ApplicationIdentifier('UIC_EXT', '7040',
1629
+ /* AILength:*/ 3,
1630
+ /* valueLengths: */ [
1631
+ {
1632
+ type: GS1LengthType.Variable,
1633
+ length: 20,
1634
+ encoding: GS1Encoding.Set82,
1635
+ mandatory: true
1636
+ }
1637
+ ]),
1638
+ NHRN_PZN: new ApplicationIdentifier('NHRN_PZN', '710',
1639
+ /* AILength:*/ 3,
1640
+ /* valueLengths: */ [
1641
+ {
1642
+ type: GS1LengthType.Variable,
1643
+ length: 20,
1644
+ encoding: GS1Encoding.Set82,
1645
+ mandatory: true
1646
+ }
1647
+ ]),
1648
+ NHRN_CIP: new ApplicationIdentifier('NHRN_CIP', '711',
1649
+ /* AILength:*/ 3,
1650
+ /* valueLengths: */ [
1651
+ {
1652
+ type: GS1LengthType.Variable,
1653
+ length: 20,
1654
+ encoding: GS1Encoding.Set82,
1655
+ mandatory: true
1656
+ }
1657
+ ]),
1658
+ NHRN_CN: new ApplicationIdentifier('NHRN_CN', '713',
1659
+ /* AILength:*/ 3,
1660
+ /* valueLengths: */ [
1661
+ {
1662
+ type: GS1LengthType.Variable,
1663
+ length: 20,
1664
+ encoding: GS1Encoding.Set82,
1665
+ mandatory: true
1666
+ }
1667
+ ]),
1668
+ NHRN_DRN: new ApplicationIdentifier('NHRN_DRN', '713',
1669
+ /* AILength:*/ 3,
1670
+ /* valueLengths: */ [
1671
+ {
1672
+ type: GS1LengthType.Variable,
1673
+ length: 20,
1674
+ encoding: GS1Encoding.Set82,
1675
+ mandatory: true
1676
+ }
1677
+ ]),
1678
+ NHRN_AIM: new ApplicationIdentifier('NHRN_AIM', '714',
1679
+ /* AILength:*/ 3,
1680
+ /* valueLengths: */ [
1681
+ {
1682
+ type: GS1LengthType.Variable,
1683
+ length: 20,
1684
+ encoding: GS1Encoding.Set82,
1685
+ mandatory: true
1686
+ }
1687
+ ]),
1688
+ NHRN_NDC: new ApplicationIdentifier('NHRN_NDC', '715',
1689
+ /* AILength:*/ 4,
1690
+ /* valueLengths: */ [
1691
+ {
1692
+ type: GS1LengthType.Fixed,
1693
+ length: 2,
1694
+ encoding: GS1Encoding.Set82,
1695
+ mandatory: true
1696
+ }
1697
+ ]),
1698
+ CERT_REF: new ApplicationIdentifier('CERT_REF', '723',
1699
+ /* AILength:*/ 4,
1700
+ /* valueLengths: */ [
1701
+ {
1702
+ type: GS1LengthType.Fixed,
1703
+ length: 2,
1704
+ encoding: GS1Encoding.Set82,
1705
+ mandatory: true
1706
+ },
1707
+ {
1708
+ type: GS1LengthType.Variable,
1709
+ length: 28,
1710
+ encoding: GS1Encoding.Set82,
1711
+ mandatory: true
1712
+ }
1713
+ ]),
1714
+ PROTOCOL: new ApplicationIdentifier('PROTOCOL', '7240',
1715
+ /* AILength:*/ 4,
1716
+ /* valueLengths: */ [
1717
+ {
1718
+ type: GS1LengthType.Variable,
1719
+ length: 20,
1720
+ encoding: GS1Encoding.Set82,
1721
+ mandatory: true
1722
+ }
1723
+ ]),
1724
+ DIMENSIONS: new ApplicationIdentifier('DIMENSIONS', '8001',
1725
+ /* AILength:*/ 4,
1726
+ /* valueLengths: */ [
1727
+ {
1728
+ type: GS1LengthType.Variable,
1729
+ length: 20,
1730
+ encoding: GS1Encoding.Numeric,
1731
+ mandatory: true
1732
+ }
1733
+ ]),
1734
+ CMT_NUMBER: new ApplicationIdentifier('CMT_NUMBER', '8002',
1735
+ /* AILength:*/ 4,
1736
+ /* valueLengths: */ [
1737
+ {
1738
+ type: GS1LengthType.Variable,
1739
+ length: 20,
1740
+ encoding: GS1Encoding.Set82,
1741
+ mandatory: true
1742
+ }
1743
+ ]),
1744
+ GRAI: new ApplicationIdentifier('GRAI', '8003',
1745
+ /* AILength:*/ 4,
1746
+ /* valueLengths: */ [
1747
+ {
1748
+ type: GS1LengthType.Fixed,
1749
+ length: 14,
1750
+ encoding: GS1Encoding.Numeric,
1751
+ mandatory: true
1752
+ },
1753
+ {
1754
+ type: GS1LengthType.Variable,
1755
+ length: 16,
1756
+ encoding: GS1Encoding.Set82,
1757
+ mandatory: false
1758
+ }
1759
+ ]),
1760
+ GIAI: new ApplicationIdentifier('GIAI', '8004',
1761
+ /* AILength:*/ 4,
1762
+ /* valueLengths: */ [
1763
+ {
1764
+ type: GS1LengthType.Variable,
1765
+ length: 30,
1766
+ encoding: GS1Encoding.Set82,
1767
+ mandatory: true
1768
+ }
1769
+ ]),
1770
+ PRICE_PER_UNIT: new ApplicationIdentifier('PRICE_PER_UNIT', '8005',
1771
+ /* AILength:*/ 4,
1772
+ /* valueLengths: */ [
1773
+ {
1774
+ type: GS1LengthType.Fixed,
1775
+ length: 6,
1776
+ encoding: GS1Encoding.Numeric,
1777
+ mandatory: true
1778
+ }
1779
+ ]),
1780
+ ITIP: new ApplicationIdentifier('ITIP', '8006',
1781
+ /* AILength:*/ 4,
1782
+ /* valueLengths: */ [
1783
+ {
1784
+ type: GS1LengthType.Fixed,
1785
+ length: 14,
1786
+ encoding: GS1Encoding.Numeric,
1787
+ mandatory: true
1788
+ },
1789
+ {
1790
+ type: GS1LengthType.Fixed,
1791
+ length: 2,
1792
+ encoding: GS1Encoding.Numeric,
1793
+ mandatory: true
1794
+ },
1795
+ {
1796
+ type: GS1LengthType.Fixed,
1797
+ length: 2,
1798
+ encoding: GS1Encoding.Numeric,
1799
+ mandatory: true
1800
+ }
1801
+ ]),
1802
+ IBAN: new ApplicationIdentifier('IBAN', '8007',
1803
+ /* AILength:*/ 4,
1804
+ /* valueLengths: */ [
1805
+ {
1806
+ type: GS1LengthType.Variable,
1807
+ length: 34,
1808
+ encoding: GS1Encoding.Set82,
1809
+ mandatory: true
1810
+ }
1811
+ ]),
1812
+ PROD_TIME: new ApplicationIdentifier('PROD_TIME', '8008',
1813
+ /* AILength:*/ 4,
1814
+ /* valueLengths: */ [
1815
+ {
1816
+ type: GS1LengthType.Fixed,
1817
+ length: 8,
1818
+ encoding: GS1Encoding.Numeric,
1819
+ mandatory: true
1820
+ },
1821
+ {
1822
+ type: GS1LengthType.Variable,
1823
+ length: 4,
1824
+ encoding: GS1Encoding.Numeric,
1825
+ mandatory: false
1826
+ }
1827
+ ]),
1828
+ OPTSEN: new ApplicationIdentifier('OPTSEN', '8009',
1829
+ /* AILength:*/ 4,
1830
+ /* valueLengths: */ [
1831
+ {
1832
+ type: GS1LengthType.Variable,
1833
+ length: 50,
1834
+ encoding: GS1Encoding.Set82,
1835
+ mandatory: true
1836
+ }
1837
+ ]),
1838
+ CPID: new ApplicationIdentifier('CPID', '8010',
1839
+ /* AILength:*/ 4,
1840
+ /* valueLengths: */ [
1841
+ {
1842
+ type: GS1LengthType.Variable,
1843
+ length: 30,
1844
+ encoding: GS1Encoding.Set39,
1845
+ mandatory: true
1846
+ }
1847
+ ]),
1848
+ CPID_SERIAL: new ApplicationIdentifier('CPID_SERIAL', '8011',
1849
+ /* AILength:*/ 4,
1850
+ /* valueLengths: */ [
1851
+ {
1852
+ type: GS1LengthType.Variable,
1853
+ length: 12,
1854
+ encoding: GS1Encoding.Numeric,
1855
+ mandatory: true
1856
+ }
1857
+ ]),
1858
+ VERSION: new ApplicationIdentifier('VERSION', '8012',
1859
+ /* AILength:*/ 4,
1860
+ /* valueLengths: */ [
1861
+ {
1862
+ type: GS1LengthType.Variable,
1863
+ length: 20,
1864
+ encoding: GS1Encoding.Set82,
1865
+ mandatory: true
1866
+ }
1867
+ ]),
1868
+ GMN: new ApplicationIdentifier('GMN', '8013',
1869
+ /* AILength:*/ 4,
1870
+ /* valueLengths: */ [
1871
+ {
1872
+ type: GS1LengthType.Variable,
1873
+ length: 25,
1874
+ encoding: GS1Encoding.Set82,
1875
+ mandatory: true
1876
+ }
1877
+ ]),
1878
+ GSRN_PROVIDER: new ApplicationIdentifier('GSRN_PROVIDER', '8017',
1879
+ /* AILength:*/ 4,
1880
+ /* valueLengths: */ [
1881
+ {
1882
+ type: GS1LengthType.Fixed,
1883
+ length: 18,
1884
+ encoding: GS1Encoding.Numeric,
1885
+ mandatory: true
1886
+ }
1887
+ ]),
1888
+ GSRN_RECIPIENT: new ApplicationIdentifier('GSRN_RECIPIENT', '8018',
1889
+ /* AILength:*/ 4,
1890
+ /* valueLengths: */ [
1891
+ {
1892
+ type: GS1LengthType.Fixed,
1893
+ length: 18,
1894
+ encoding: GS1Encoding.Numeric,
1895
+ mandatory: true
1896
+ }
1897
+ ]),
1898
+ SRIN: new ApplicationIdentifier('SRIN', '8019',
1899
+ /* AILength:*/ 4,
1900
+ /* valueLengths: */ [
1901
+ {
1902
+ type: GS1LengthType.Variable,
1903
+ length: 10,
1904
+ encoding: GS1Encoding.Numeric,
1905
+ mandatory: true
1906
+ }
1907
+ ]),
1908
+ REF_NUMBER: new ApplicationIdentifier('REF_NUMBER', '8020',
1909
+ /* AILength:*/ 4,
1910
+ /* valueLengths: */ [
1911
+ {
1912
+ type: GS1LengthType.Variable,
1913
+ length: 25,
1914
+ encoding: GS1Encoding.Set82,
1915
+ mandatory: true
1916
+ }
1917
+ ]),
1918
+ ITIP_CONTENT: new ApplicationIdentifier('ITIP_CONTENT', '8026',
1919
+ /* AILength:*/ 4,
1920
+ /* valueLengths: */ [
1921
+ {
1922
+ type: GS1LengthType.Fixed,
1923
+ length: 14,
1924
+ encoding: GS1Encoding.Numeric,
1925
+ mandatory: true
1926
+ },
1927
+ {
1928
+ type: GS1LengthType.Fixed,
1929
+ length: 2,
1930
+ encoding: GS1Encoding.Numeric,
1931
+ mandatory: true
1932
+ },
1933
+ {
1934
+ type: GS1LengthType.Fixed,
1935
+ length: 2,
1936
+ encoding: GS1Encoding.Numeric,
1937
+ mandatory: true
1938
+ }
1939
+ ]),
1940
+ COUPON_NA: new ApplicationIdentifier('COUPON_NA', '8110',
1941
+ /* AILength:*/ 4,
1942
+ /* valueLengths: */ [
1943
+ {
1944
+ type: GS1LengthType.Variable,
1945
+ length: 70,
1946
+ encoding: GS1Encoding.Set82,
1947
+ mandatory: true
1948
+ }
1949
+ ]),
1950
+ POINTS: new ApplicationIdentifier('POINTS', '8111',
1951
+ /* AILength:*/ 4,
1952
+ /* valueLengths: */ [
1953
+ {
1954
+ type: GS1LengthType.Fixed,
1955
+ length: 4,
1956
+ encoding: GS1Encoding.Numeric,
1957
+ mandatory: true
1958
+ }
1959
+ ]),
1960
+ POSITIVE_OFFER_NA: new ApplicationIdentifier('POSITIVE_OFFER_NA', '8112',
1961
+ /* AILength:*/ 4,
1962
+ /* valueLengths: */ [
1963
+ {
1964
+ type: GS1LengthType.Variable,
1965
+ length: 70,
1966
+ encoding: GS1Encoding.Set82,
1967
+ mandatory: true
1968
+ }
1969
+ ]),
1970
+ PRODUCT_URL: new ApplicationIdentifier('PRODUCT_URL', '8200',
1971
+ /* AILength:*/ 4,
1972
+ /* valueLengths: */ [
1973
+ {
1974
+ type: GS1LengthType.Variable,
1975
+ length: 70,
1976
+ encoding: GS1Encoding.Set82,
1977
+ mandatory: true
1978
+ }
1979
+ ]),
1980
+ INTERNAL: new ApplicationIdentifier('INTERNAL', '90',
1981
+ /* AILength:*/ 2,
1982
+ /* valueLengths: */ [
1983
+ {
1984
+ type: GS1LengthType.Variable,
1985
+ length: 90,
1986
+ encoding: GS1Encoding.Set82,
1987
+ mandatory: true
1988
+ }
1989
+ ]),
1990
+ INTERNAL_1: new ApplicationIdentifier('INTERNAL_1', '91',
1991
+ /* AILength:*/ 2,
1992
+ /* valueLengths: */ [
1993
+ {
1994
+ type: GS1LengthType.Variable,
1995
+ length: 90,
1996
+ encoding: GS1Encoding.Set82,
1997
+ mandatory: true
1998
+ }
1999
+ ]),
2000
+ INTERNAL_2: new ApplicationIdentifier('INTERNAL_2', '92',
2001
+ /* AILength:*/ 2,
2002
+ /* valueLengths: */ [
2003
+ {
2004
+ type: GS1LengthType.Variable,
2005
+ length: 90,
2006
+ encoding: GS1Encoding.Set82,
2007
+ mandatory: true
2008
+ }
2009
+ ]),
2010
+ INTERNAL_3: new ApplicationIdentifier('INTERNAL_3', '93',
2011
+ /* AILength:*/ 2,
2012
+ /* valueLengths: */ [
2013
+ {
2014
+ type: GS1LengthType.Variable,
2015
+ length: 90,
2016
+ encoding: GS1Encoding.Set82,
2017
+ mandatory: true
2018
+ }
2019
+ ]),
2020
+ INTERNAL_4: new ApplicationIdentifier('INTERNAL_4', '94',
2021
+ /* AILength:*/ 2,
2022
+ /* valueLengths: */ [
2023
+ {
2024
+ type: GS1LengthType.Variable,
2025
+ length: 90,
2026
+ encoding: GS1Encoding.Set82,
2027
+ mandatory: true
2028
+ }
2029
+ ]),
2030
+ INTERNAL_5: new ApplicationIdentifier('INTERNAL_5', '95',
2031
+ /* AILength:*/ 2,
2032
+ /* valueLengths: */ [
2033
+ {
2034
+ type: GS1LengthType.Variable,
2035
+ length: 90,
2036
+ encoding: GS1Encoding.Set82,
2037
+ mandatory: true
2038
+ }
2039
+ ]),
2040
+ INTERNAL_6: new ApplicationIdentifier('INTERNAL_6', '96',
2041
+ /* AILength:*/ 2,
2042
+ /* valueLengths: */ [
2043
+ {
2044
+ type: GS1LengthType.Variable,
2045
+ length: 90,
2046
+ encoding: GS1Encoding.Set82,
2047
+ mandatory: true
2048
+ }
2049
+ ]),
2050
+ INTERNAL_7: new ApplicationIdentifier('INTERNAL_7', '97',
2051
+ /* AILength:*/ 2,
2052
+ /* valueLengths: */ [
2053
+ {
2054
+ type: GS1LengthType.Variable,
2055
+ length: 90,
2056
+ encoding: GS1Encoding.Set82,
2057
+ mandatory: true
2058
+ }
2059
+ ]),
2060
+ INTERNAL_8: new ApplicationIdentifier('INTERNAL_8', '98',
2061
+ /* AILength:*/ 2,
2062
+ /* valueLengths: */ [
2063
+ {
2064
+ type: GS1LengthType.Variable,
2065
+ length: 90,
2066
+ encoding: GS1Encoding.Set82,
2067
+ mandatory: true
2068
+ }
2069
+ ]),
2070
+ INTERNAL_9: new ApplicationIdentifier('INTERNAL_9', '99',
2071
+ /* AILength:*/ 2,
2072
+ /* valueLengths: */ [
2073
+ {
2074
+ type: GS1LengthType.Variable,
2075
+ length: 90,
2076
+ encoding: GS1Encoding.Set82,
2077
+ mandatory: true
2078
+ }
2079
+ ])
2080
+ };