@progress/kendo-react-barcodes 4.14.0-dev.202112141254

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 (103) hide show
  1. package/LICENSE.md +11 -0
  2. package/NOTICE.txt +78 -0
  3. package/README.md +59 -0
  4. package/about.md +3 -0
  5. package/dist/cdn/js/kendo-react-barcodes.js +1 -0
  6. package/dist/es/Barcode.d.ts +49 -0
  7. package/dist/es/Barcode.js +146 -0
  8. package/dist/es/BarcodeContext.d.ts +12 -0
  9. package/dist/es/BarcodeContext.js +6 -0
  10. package/dist/es/BarcodeProps.d.ts +61 -0
  11. package/dist/es/BarcodeProps.js +0 -0
  12. package/dist/es/BaseBarcode.d.ts +75 -0
  13. package/dist/es/BaseBarcode.js +179 -0
  14. package/dist/es/BaseBarcodeProps.d.ts +41 -0
  15. package/dist/es/BaseBarcodeProps.js +0 -0
  16. package/dist/es/QRCode.d.ts +49 -0
  17. package/dist/es/QRCode.js +149 -0
  18. package/dist/es/QRCodeProps.d.ts +73 -0
  19. package/dist/es/QRCodeProps.js +0 -0
  20. package/dist/es/common/barcodes.d.ts +4 -0
  21. package/dist/es/common/barcodes.js +0 -0
  22. package/dist/es/main.d.ts +6 -0
  23. package/dist/es/main.js +3 -0
  24. package/dist/es/package-metadata.d.ts +5 -0
  25. package/dist/es/package-metadata.js +11 -0
  26. package/dist/es/store/reducer.d.ts +10 -0
  27. package/dist/es/store/reducer.js +41 -0
  28. package/dist/es/store/store.d.ts +25 -0
  29. package/dist/es/store/store.js +28 -0
  30. package/dist/es/types/barcode-text.d.ts +32 -0
  31. package/dist/es/types/barcode-text.js +0 -0
  32. package/dist/es/types/barcode-type.d.ts +4 -0
  33. package/dist/es/types/barcode-type.js +0 -0
  34. package/dist/es/types/border.interface.d.ts +18 -0
  35. package/dist/es/types/border.interface.js +0 -0
  36. package/dist/es/types/dash-type.interface.d.ts +4 -0
  37. package/dist/es/types/dash-type.interface.js +0 -0
  38. package/dist/es/types/margin.interface.d.ts +21 -0
  39. package/dist/es/types/margin.interface.js +0 -0
  40. package/dist/es/types/padding.interface.d.ts +21 -0
  41. package/dist/es/types/padding.interface.js +0 -0
  42. package/dist/es/types/qrcode-encoding.d.ts +4 -0
  43. package/dist/es/types/qrcode-encoding.js +0 -0
  44. package/dist/es/types/qrcode-error-correction.d.ts +9 -0
  45. package/dist/es/types/qrcode-error-correction.js +0 -0
  46. package/dist/es/types/qrcode-overlay.d.ts +25 -0
  47. package/dist/es/types/qrcode-overlay.js +0 -0
  48. package/dist/es/types/render-mode.d.ts +8 -0
  49. package/dist/es/types/render-mode.js +0 -0
  50. package/dist/es/types.d.ts +10 -0
  51. package/dist/es/types.js +0 -0
  52. package/dist/es/utils/common.d.ts +4 -0
  53. package/dist/es/utils/common.js +39 -0
  54. package/dist/npm/Barcode.d.ts +49 -0
  55. package/dist/npm/Barcode.js +148 -0
  56. package/dist/npm/BarcodeContext.d.ts +12 -0
  57. package/dist/npm/BarcodeContext.js +8 -0
  58. package/dist/npm/BarcodeProps.d.ts +61 -0
  59. package/dist/npm/BarcodeProps.js +2 -0
  60. package/dist/npm/BaseBarcode.d.ts +75 -0
  61. package/dist/npm/BaseBarcode.js +181 -0
  62. package/dist/npm/BaseBarcodeProps.d.ts +41 -0
  63. package/dist/npm/BaseBarcodeProps.js +2 -0
  64. package/dist/npm/QRCode.d.ts +49 -0
  65. package/dist/npm/QRCode.js +151 -0
  66. package/dist/npm/QRCodeProps.d.ts +73 -0
  67. package/dist/npm/QRCodeProps.js +2 -0
  68. package/dist/npm/common/barcodes.d.ts +4 -0
  69. package/dist/npm/common/barcodes.js +2 -0
  70. package/dist/npm/main.d.ts +6 -0
  71. package/dist/npm/main.js +6 -0
  72. package/dist/npm/package-metadata.d.ts +5 -0
  73. package/dist/npm/package-metadata.js +13 -0
  74. package/dist/npm/store/reducer.d.ts +10 -0
  75. package/dist/npm/store/reducer.js +44 -0
  76. package/dist/npm/store/store.d.ts +25 -0
  77. package/dist/npm/store/store.js +30 -0
  78. package/dist/npm/types/barcode-text.d.ts +32 -0
  79. package/dist/npm/types/barcode-text.js +2 -0
  80. package/dist/npm/types/barcode-type.d.ts +4 -0
  81. package/dist/npm/types/barcode-type.js +2 -0
  82. package/dist/npm/types/border.interface.d.ts +18 -0
  83. package/dist/npm/types/border.interface.js +2 -0
  84. package/dist/npm/types/dash-type.interface.d.ts +4 -0
  85. package/dist/npm/types/dash-type.interface.js +2 -0
  86. package/dist/npm/types/margin.interface.d.ts +21 -0
  87. package/dist/npm/types/margin.interface.js +2 -0
  88. package/dist/npm/types/padding.interface.d.ts +21 -0
  89. package/dist/npm/types/padding.interface.js +2 -0
  90. package/dist/npm/types/qrcode-encoding.d.ts +4 -0
  91. package/dist/npm/types/qrcode-encoding.js +2 -0
  92. package/dist/npm/types/qrcode-error-correction.d.ts +9 -0
  93. package/dist/npm/types/qrcode-error-correction.js +2 -0
  94. package/dist/npm/types/qrcode-overlay.d.ts +25 -0
  95. package/dist/npm/types/qrcode-overlay.js +2 -0
  96. package/dist/npm/types/render-mode.d.ts +8 -0
  97. package/dist/npm/types/render-mode.js +2 -0
  98. package/dist/npm/types.d.ts +10 -0
  99. package/dist/npm/types.js +2 -0
  100. package/dist/npm/utils/common.d.ts +4 -0
  101. package/dist/npm/utils/common.js +41 -0
  102. package/dist/systemjs/kendo-react-barcodes.js +1 -0
  103. package/package.json +71 -0
package/LICENSE.md ADDED
@@ -0,0 +1,11 @@
1
+ # KendoReact
2
+
3
+ This package is part of the [KendoReact](http://www.telerik.com/kendo-react-ui/) suite.
4
+
5
+ ## License
6
+
7
+ This is commercial software. To use it, you need to agree to the [**End User License Agreement for Progress KendoReact**](https://www.telerik.com/purchase/license-agreement/progress-kendoreact). If you do not own a commercial license, this file shall be governed by the trial license terms.
8
+
9
+ All available KendoReact commercial licenses may be obtained at the [KendoReact website](https://www.telerik.com/kendo-react-ui/pricing/).
10
+
11
+ *Copyright © 2021 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
package/NOTICE.txt ADDED
@@ -0,0 +1,78 @@
1
+ Progress KendoReact 2021
2
+
3
+ Copyright © 2018-2021 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
4
+
5
+ Portions of the Product include certain open source and commercial third-party components listed below (ìThird-Party Componentsî). The authors of the Third-Party Components require Progress Software Corporation (ìPSCî) to include the following notices and additional licensing terms as a condition of PSCís use of such Third-Party Components. You acknowledge that the authors of the Third-Party Components have no obligation to provide support to you for the Third-Party Components or the Product. You hereby undertake to comply with all licenses related to the applicable Third-Party Components. Notwithstanding anything to the contrary, to the extent that any of the terms and conditions of the Product Agreement conflict, vary, or are in addition to the terms and conditions of the aforementioned third-party licenses for these technologies, such terms and conditions are offered by Progress alone and not by any other party.
6
+
7
+
8
+ 1. Special Notices Regarding Open Source Third-Party Components incorporated in the Product:
9
+
10
+ (1) BSD-Style Licenses:
11
+
12
+ (a) Progress KendoReact 2021 incorporates React-Transition-Group v2.2.0. Such technology is subject to the following terms and conditions:
13
+ BSD 3-Clause License
14
+ Copyright (c) 2018, React Community
15
+ Forked from React (https://github.com/facebook/react) Copyright 2013-present, Facebook, Inc.
16
+ All rights reserved.
17
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
18
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
19
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
20
+ * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
21
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
+
23
+ (2) MIT-Style Licenses:
24
+
25
+ (a) Progress KendoReact 2021 incorporates @types/prosemirror-commands v1*, @types/prosemirror-dropcursor v1*, @types/prosemirror-gapcursor v1*, @types/prosemirror-history v1*, @types/prosemirror-inputrules v1*, @types/prosemirror-keymap v1*, @types/prosemirror-model v1*, @types/prosemirror-schema-list v1*, @types/prosemirror-state v1*, @types/prosemirror-tables v0.9*, @types/prosemirror-transform v1*, and @types/prosemirror-view v1*. Such technologies are subject to the following terms and conditions:
26
+ This project is licensed under the MIT license.
27
+ Copyrights are respective of each contributor listed at the beginning of each definition file.
28
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
29
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
30
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31
+
32
+ (b) Progress KendoReact 2021 incorporates prop-types v15*. Such technology is subject to the following terms and conditions:
33
+ MIT License
34
+ Copyright (c) 2013-present, Facebook, Inc.
35
+ Permission is hereby granted, free of charge, to any person obtaining a copy
36
+ of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
37
+ furnished to do so, subject to the following conditions:
38
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
39
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
41
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
42
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
43
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
44
+
45
+ (c) Progress KendoReact 2021 incorporates Axios v0.18.1. Such technology is subject to the following terms and conditions:
46
+ Copyright (c) 2014-present Matt Zabriskie
47
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
48
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
49
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
50
+
51
+ (d) Progress KendoReact 2021 incorporates pako-esm v1.0.0. Such technology is subject to the following terms and conditions:
52
+ Copyright © 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. (as modified)
53
+ Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn
54
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
56
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
57
+
58
+ (e) Progress KendoReact 2021 incorporates jszip-esm v1.0.0. Such technology is subject to the following terms and conditions:
59
+ The MIT License
60
+ Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, AntÛnio Afonso
61
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
62
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
63
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
64
+
65
+ (f) Progress KendoReact 2021 incorporates prosemirror-commands v1*, prosemirror-gapcursor v1*, prosemirror-history v1*, prosemirror-inputrules v1*, prosemirror-keymap v1*, prosemirror-model v1*, prosemirror-schema-list v1*, prosemirror-state v1*, prosemirror-tables v0.9*, prosemirror-transform v1*, and prosemirror-view v1*. Such technologies are subject to the following terms and conditions:
66
+ Copyright (C) 2015-2017 by Marijn Haverbeke <marijnh@gmail.com> and others
67
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
68
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
69
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
70
+
71
+ 2. Special Notices Regarding Commercially Licensed Third-Party Components incorporated in the Product:
72
+
73
+ (a) Progress KendoReact 2021 incorporates Kendo UI Licensing CLI v1.1 from Progress Software Corporation. For third-party component information, see the productís NOTICE.txt file.
74
+
75
+ NOTICE FROM PROGRESS SOFTWARE CORPORATION: Additional notices may be included in the release notes or other documentation that accompanies updates received in connection with support of the Product.
76
+
77
+
78
+ Updated 3/2/2021
package/README.md ADDED
@@ -0,0 +1,59 @@
1
+ <a href="https://www.telerik.com/kendo-react-ui/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes&utm_content=banner" target="_blank">
2
+ <img src="https://www.telerik.com/kendo-react-ui/npm-banner.svg">
3
+ </a>
4
+
5
+ # KendoReact Barcodes Library for React
6
+
7
+ > **Important**
8
+ > * This package is а part of [KendoReact](https://www.telerik.com/kendo-react-ui/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)&mdash;a commercial UI library.
9
+ > * You will need to install a license key when adding the package to your project. For more information, please refer to the [KendoReact My License page](https://www.telerik.com/kendo-react-ui/my-license/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes).
10
+ > * To receive a license key, you need to either [purchase a license](https://www.telerik.com/kendo-react-ui/pricing/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes) or register for a [free trial](https://www.telerik.com/download-login-v2-kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes). Doing so indicates that you [accept the KendoReact License Agreement](https://www.telerik.com/purchase/license-agreement/progress-kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes).
11
+ > * The 30-day free trial gives you access to all the KendoReact components and their full functionality. Additionally, for the period of your license, you get access to our legendary technical support provided directly by the KendoReact dev team!
12
+ >
13
+ > [Start using KendoReact](https://www.telerik.com/download-login-v2-kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes) and speed up your development process!
14
+
15
+ The KendoReact Barcodes provide a set of React components for building beautiful and customizable barcodes.
16
+
17
+ What's in this package (ToC):
18
+
19
+ * [React Barcode component](#react-barcode-component)
20
+ * [React QR Code component](#react-qrcode-component)
21
+ * [React Barcodes Library Shared Features](#react-barcodes-library-shared-features)
22
+ * [Support Options](#support-options)
23
+ * [Resources](#resources)
24
+
25
+ ## React Barcode Component
26
+
27
+ [The KendoReact Barcode component](https://www.telerik.com/kendo-react-ui/components/barcodes/barcode/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes) renders a variety of one-dimensional (1D) industry barcodes.
28
+
29
+ ## React QR Code Component
30
+
31
+ [The KendoReact QR Code component](https://www.telerik.com/kendo-react-ui/components/barcodes/qrcode/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes) is supports the popular Quick Response codes with a variety of settings.
32
+
33
+ ## React Barcodes Library Shared Features
34
+
35
+ Among the many features which the KendoReact Barcodes deliver are:
36
+
37
+ * **Export**&mdash;The barcodes can be exported to an image, a PDF or a SVG allowing to easily save them locally or on the server.
38
+
39
+ ## Support Options
40
+
41
+ For any issues you might encounter while working with the KendoReact Barcodes, use any of the available support channels:
42
+
43
+ * Industry-leading technical support&mdash;KendoReact paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use [the dedicated KendoReact support system](https://www.telerik.com/account/support-tickets?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes).
44
+ * Product forums&mdash;The [KendoReact forums](https://www.telerik.com/forums/kendo-ui-react?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes) are part of the free support you can get from the community and from the KendoReact team.
45
+ * Feedback portal&mdash;The [KendoReact feedback portal](https://feedback.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes) is where you can request and vote for new features to be added.
46
+
47
+ ## Resources
48
+
49
+ * [Getting Started with KendoReact](https://www.telerik.com/kendo-react-ui/getting-started/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)
50
+ * [Getting Started with the KendoReact Barcodes](https://www.telerik.com/kendo-react-ui/components/barcodes/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)
51
+ * [API Reference of the KendoReact barcodes](https://www.telerik.com/kendo-react-ui/components/barcodes/api/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)
52
+ * [KendoReact Roadmap](https://www.telerik.com/support/whats-new/kendo-react-ui/roadmap/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)
53
+ * [Blogs](https://www.telerik.com/blogs/tag/kendoreact?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)
54
+ * [Demos, documentation, and component reference](https://www.telerik.com/kendo-react-ui/components/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)
55
+ * [KendoReact pricing and licensing](https://www.telerik.com/kendo-react-ui/pricing/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes)
56
+
57
+ *Copyright © 2021 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.*
58
+
59
+ *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
package/about.md ADDED
@@ -0,0 +1,3 @@
1
+ <a href="https://www.telerik.com/kendo-react-ui/?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-barcodes&utm_content=banner" target="_blank">
2
+ <img src="https://www.telerik.com/kendo-react-ui/npm-banner.svg">
3
+ </a>