@pdfme/ui 1.1.10 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +10 -1
- package/dist/index.js.map +1 -1
- package/dist/types/class.d.ts +4 -0
- package/dist/types/components/Designer/Sidebar/index.d.ts +4 -1
- package/dist/types/components/Designer/index.d.ts +9 -1
- package/dist/types/components/Schemas/SchemaUI.d.ts +1 -1
- package/dist/types/components/Schemas/TextSchema.d.ts +4 -0
- package/dist/types/helper.d.ts +4 -0
- package/dist/types/index.d.ts +2 -2
- package/package.json +5 -2
- package/src/components/Designer/Main/Guides.tsx +1 -0
- package/src/components/Designer/Main/index.tsx +17 -3
- package/src/components/Designer/Sidebar/DetailView/ExampleInputEditor.tsx +5 -4
- package/src/components/Designer/Sidebar/DetailView/PositionAndSizeEditor.tsx +15 -5
- package/src/components/Designer/Sidebar/DetailView/TextPropEditor.tsx +123 -18
- package/src/components/Designer/Sidebar/ListView/index.tsx +1 -0
- package/src/components/Designer/Sidebar/index.tsx +20 -2
- package/src/components/Designer/index.tsx +1 -1
- package/src/components/Preview.tsx +1 -1
- package/src/components/Schemas/SchemaUI.tsx +3 -3
- package/src/components/Schemas/TextSchema.tsx +18 -5
- package/src/helper.ts +17 -19
- package/src/hooks.ts +5 -6
- package/src/i18n.ts +34 -2
- package/src/index.ts +2 -2
- package/tsconfig.json +1 -1
@@ -6,7 +6,7 @@ object-assign
|
|
6
6
|
|
7
7
|
/*!
|
8
8
|
* @name @pdfme/ui
|
9
|
-
* @version 1.
|
9
|
+
* @version 1.2.0 | Sun Jun 04 2023
|
10
10
|
* @author hand-dot
|
11
11
|
* @license MIT
|
12
12
|
*/
|
@@ -15,6 +15,13 @@ object-assign
|
|
15
15
|
* Programatically add the following
|
16
16
|
*/
|
17
17
|
|
18
|
+
/*!
|
19
|
+
* The buffer module from node.js, for the browser.
|
20
|
+
*
|
21
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
22
|
+
* @license MIT
|
23
|
+
*/
|
24
|
+
|
18
25
|
/*! *****************************************************************************
|
19
26
|
Copyright (c) Microsoft Corporation.
|
20
27
|
|
@@ -45,6 +52,8 @@ See the Apache Version 2.0 License for specific language governing permissions
|
|
45
52
|
and limitations under the License.
|
46
53
|
***************************************************************************** */
|
47
54
|
|
55
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
56
|
+
|
48
57
|
/**
|
49
58
|
* @licstart The following is the entire license notice for the
|
50
59
|
* Javascript code in this page
|