@roomle/embedding-lib 5.12.0-alpha.5 → 5.12.0-alpha.6

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.
@@ -1,6 +1,21 @@
1
- ## [5.12.0-alpha.5](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.12.0-alpha.4...embedding-lib-v5.12.0-alpha.5) (2025-02-26)
1
+ ## [5.12.0-alpha.6](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.12.0-alpha.5...embedding-lib-v5.12.0-alpha.6) (2025-02-26)
2
+
3
+
4
+ ### Features
5
+
6
+ * add QR code to the saved plan link ([a4d57ab](https://github.com/roomle-dev/roomle-ui/commit/a4d57ab3fd89eb4e7fa1561dbb0b7b39066443c7))
7
+ * core api - createPlanXmlWithObjects ([de8d816](https://github.com/roomle-dev/roomle-ui/commit/de8d816b9c2f44cd0d996a7631617bf53210e430))
8
+ * **SDK:** upgrade to version 2.94.0-alpha.10 ([#1496](https://github.com/roomle-dev/roomle-ui/issues/1496)) ([c55b4ac](https://github.com/roomle-dev/roomle-ui/commit/c55b4ac3ba001ae2ef64e7fe145a041b4b2aee1e))
9
+ * **SDK:** upgrade to version 2.94.0-alpha.18 ([#1500](https://github.com/roomle-dev/roomle-ui/issues/1500)) ([bb5278a](https://github.com/roomle-dev/roomle-ui/commit/bb5278ac974d9506ef782a665e5dbce7b51ae40c))
10
+ * **SDK:** upgrade to version 2.94.0-alpha.8 ([#1491](https://github.com/roomle-dev/roomle-ui/issues/1491)) ([df786c7](https://github.com/roomle-dev/roomle-ui/commit/df786c74474422a79e888fc178bc69b95d1baf15))
11
+ * **SDK:** upgrade to version 2.94.0-alpha.9 ([#1494](https://github.com/roomle-dev/roomle-ui/issues/1494)) ([d3546e3](https://github.com/roomle-dev/roomle-ui/commit/d3546e3f3bd681142140334e9c9757e0506ae6e7))
2
12
 
3
13
 
4
14
  ### Bug Fixes
5
15
 
6
- * add a core version that serializes json correctly also if a string contains JSON ([b05e1eb](https://github.com/roomle-dev/roomle-ui/commit/b05e1ebc6677df064e6ae89d0eb3100381d6baff))
16
+ * copied indicator position ([745e61e](https://github.com/roomle-dev/roomle-ui/commit/745e61e0937d1984c07bdd0e658a358a39b69825))
17
+ * more CSS tweaks ([a87bcbf](https://github.com/roomle-dev/roomle-ui/commit/a87bcbfc75cd0f2d765f9f0b2b2ddd85aaa3e5f4))
18
+ * Reset scroll when selecting an item from product-list ([e2fcb5c](https://github.com/roomle-dev/roomle-ui/commit/e2fcb5c898fb1fc9acd6a123e82efee4c3647835))
19
+ * shared loadProduct CSS ([e59cbae](https://github.com/roomle-dev/roomle-ui/commit/e59cbae7a47f2b4eca4e51367a29b87a978893cd))
20
+ * show preview image on mobile, rearrange link and qr order ([3fb56b0](https://github.com/roomle-dev/roomle-ui/commit/3fb56b0ad2fe6c94a9926342d3e6c1793dcaeda6))
21
+ * use correct web-sdk ([1620beb](https://github.com/roomle-dev/roomle-ui/commit/1620bebd52562fa3b8ad24c20bf42a5496228603))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomle/embedding-lib",
3
- "version": "5.12.0-alpha.5",
3
+ "version": "5.12.0-alpha.6",
4
4
  "description": "This is a small library which can be used to communicate with the Roomle Configurator",
5
5
  "type": "module",
6
6
  "main": "./roomle-embedding-lib.umd.js",
@@ -29,7 +29,7 @@
29
29
  "npm": "8.3.1"
30
30
  },
31
31
  "devDependencies": {
32
- "@roomle/web-sdk": "2.94.0-alpha.13"
32
+ "@roomle/web-sdk": "2.94.0-alpha.18"
33
33
  },
34
34
  "repository": {
35
35
  "type": "git",
@@ -1,139 +1,19 @@
1
- import { PropType } from 'vue';
2
-
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
- text: {
5
- type: StringConstructor;
6
- required: true;
7
- };
8
- size: {
9
- type: NumberConstructor;
10
- required: false;
11
- default: number;
12
- };
13
- color: {
14
- type: StringConstructor;
15
- required: false;
16
- default: string;
17
- };
18
- bgColor: {
19
- type: StringConstructor;
20
- required: false;
21
- default: string;
22
- };
23
- errorLevel: {
24
- type: PropType<"M" | "L" | "Q" | "H">;
25
- validator: (value: string) => boolean;
26
- required: false;
27
- default: string;
28
- };
29
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
30
- text: {
31
- type: StringConstructor;
32
- required: true;
33
- };
34
- size: {
35
- type: NumberConstructor;
36
- required: false;
37
- default: number;
38
- };
39
- color: {
40
- type: StringConstructor;
41
- required: false;
42
- default: string;
43
- };
44
- bgColor: {
45
- type: StringConstructor;
46
- required: false;
47
- default: string;
48
- };
49
- errorLevel: {
50
- type: PropType<"M" | "L" | "Q" | "H">;
51
- validator: (value: string) => boolean;
52
- required: false;
53
- default: string;
54
- };
55
- }>> & Readonly<{}>, {
1
+ declare const _default: import('vue').DefineComponent<{
2
+ text: string;
56
3
  size: number;
57
4
  color: string;
58
5
  bgColor: string;
59
6
  errorLevel: "M" | "L" | "Q" | "H";
60
- }, {}, {
61
- QrcodeVue: import('vue').DefineComponent<{
62
- renderAs: {
63
- type: PropType<import('qrcode.vue').RenderAs>;
64
- required: boolean;
65
- default: string;
66
- validator: (as: any) => boolean;
67
- };
68
- value: {
69
- type: StringConstructor;
70
- required: boolean;
71
- default: string;
72
- };
73
- size: {
74
- type: NumberConstructor;
75
- default: number;
76
- };
77
- level: {
78
- type: PropType<import('qrcode.vue').Level>;
79
- default: string;
80
- validator: (l: any) => boolean;
81
- };
82
- background: {
83
- type: StringConstructor;
84
- default: string;
85
- };
86
- foreground: {
87
- type: StringConstructor;
88
- default: string;
89
- };
90
- margin: {
91
- type: NumberConstructor;
92
- required: boolean;
93
- default: number;
94
- };
95
- }, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
96
- renderAs: {
97
- type: PropType<import('qrcode.vue').RenderAs>;
98
- required: boolean;
99
- default: string;
100
- validator: (as: any) => boolean;
101
- };
102
- value: {
103
- type: StringConstructor;
104
- required: boolean;
105
- default: string;
106
- };
107
- size: {
108
- type: NumberConstructor;
109
- default: number;
110
- };
111
- level: {
112
- type: PropType<import('qrcode.vue').Level>;
113
- default: string;
114
- validator: (l: any) => boolean;
115
- };
116
- background: {
117
- type: StringConstructor;
118
- default: string;
119
- };
120
- foreground: {
121
- type: StringConstructor;
122
- default: string;
123
- };
124
- margin: {
125
- type: NumberConstructor;
126
- required: boolean;
127
- default: number;
128
- };
129
- }>>, {
130
- value: string;
131
- size: number;
132
- level: import('qrcode.vue').Level;
133
- background: string;
134
- foreground: string;
135
- margin: number;
136
- renderAs: import('qrcode.vue').RenderAs;
137
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
138
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
7
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
8
+ text: string;
9
+ size: number;
10
+ color: string;
11
+ bgColor: string;
12
+ errorLevel: "M" | "L" | "Q" | "H";
13
+ }> & Readonly<{}>, {
14
+ size: number;
15
+ color: string;
16
+ bgColor: string;
17
+ errorLevel: "M" | "L" | "Q" | "H";
18
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
139
19
  export default _default;