@roomle/embedding-lib 5.16.0-alpha.2 → 5.16.0-alpha.4

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,19 +1,6 @@
1
- ## [5.16.0-alpha.2](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.16.0-alpha.1...embedding-lib-v5.16.0-alpha.2) (2025-04-16)
2
-
3
-
4
- ### Features
5
-
6
- * add possibility to use ui-labels to have more control over labels ([b10b7de](https://github.com/roomle-dev/roomle-ui/commit/b10b7de3b649773341874a0bf688a605bd11e6c7))
7
- * initial implementation ([34fa2ac](https://github.com/roomle-dev/roomle-ui/commit/34fa2ace053c222ba354b1dbe8256228546587a0))
8
- * **SDK:** upgrade to version 2.98.0-alpha.6 ([#1621](https://github.com/roomle-dev/roomle-ui/issues/1621)) ([2c8962e](https://github.com/roomle-dev/roomle-ui/commit/2c8962e51b94970e771ba4e700a94345878f788a))
9
- * **SDK:** upgrade to version 2.98.0-alpha.7 ([#1623](https://github.com/roomle-dev/roomle-ui/issues/1623)) ([a0b409f](https://github.com/roomle-dev/roomle-ui/commit/a0b409f62777296bbeed4c6a26f1c07ecc955999))
10
- * working display of disabled params ([a6088cc](https://github.com/roomle-dev/roomle-ui/commit/a6088cc5f57f45b3a11cff0afaecf5701112c4a7))
1
+ ## [5.16.0-alpha.4](https://github.com/roomle-dev/roomle-ui/compare/embedding-lib-v5.16.0-alpha.3...embedding-lib-v5.16.0-alpha.4) (2025-04-17)
11
2
 
12
3
 
13
4
  ### Bug Fixes
14
5
 
15
- * also do a deep copy ([919b808](https://github.com/roomle-dev/roomle-ui/commit/919b808f4b22246b17a7356af2e2824c4307ab71))
16
- * handle CollectionViewElements that do not have enabled properties ([e67dafd](https://github.com/roomle-dev/roomle-ui/commit/e67dafd492a4a2e658aab1baf0281ead9e2ca7c4))
17
- * handle onUpdatePlanObjectPositions breaking change ([371b03d](https://github.com/roomle-dev/roomle-ui/commit/371b03d3dbececd1653927b13c2602817a092ef7))
18
- * move param export to params helper ([8d27702](https://github.com/roomle-dev/roomle-ui/commit/8d27702b59bf239b09e8e75c7b603a99e63c9d31))
19
- * provide planner sidebar state to collectionView ([0e833fc](https://github.com/roomle-dev/roomle-ui/commit/0e833fcc4b117e6121e8204b3a0e7ad40e271320))
6
+ * lint ([6063e80](https://github.com/roomle-dev/roomle-ui/commit/6063e8075299d8e683683f27afb1c969e609d142))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomle/embedding-lib",
3
- "version": "5.16.0-alpha.2",
3
+ "version": "5.16.0-alpha.4",
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.98.0-alpha.8"
32
+ "@roomle/web-sdk": "2.98.0-alpha.9"
33
33
  },
34
34
  "repository": {
35
35
  "type": "git",
@@ -1,88 +1,18 @@
1
- import { PropType } from 'vue';
2
- import { GridViewUiState, ViewTypeState } from '../../../../common/store/collection-view-state';
1
+ import { GridViewUiState } from '../../../../common/store/collection-view-state';
3
2
 
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
- state: {
6
- type: PropType<GridViewUiState>;
7
- required: true;
8
- };
9
- isDesktop: BooleanConstructor;
10
- onChange: {
11
- type: FunctionConstructor;
12
- default: () => any;
13
- };
14
- showListOption: {
15
- type: BooleanConstructor;
16
- default: boolean;
17
- };
18
- }>, {}, {}, {
19
- listViewActive(): boolean;
20
- gridViewSmallActive(): boolean;
21
- gridViewBigActive(): boolean;
22
- }, {
23
- setViewType(viewType: ViewTypeState): void;
24
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
25
- state: {
26
- type: PropType<GridViewUiState>;
27
- required: true;
28
- };
29
- isDesktop: BooleanConstructor;
30
- onChange: {
31
- type: FunctionConstructor;
32
- default: () => any;
33
- };
34
- showListOption: {
35
- type: BooleanConstructor;
36
- default: boolean;
37
- };
38
- }>> & Readonly<{}>, {
3
+ declare const _default: import('vue').DefineComponent<{
4
+ state: GridViewUiState;
5
+ isDesktop?: boolean;
6
+ onChange?: (event: Event) => void;
7
+ showListOption?: boolean;
8
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
9
+ state: GridViewUiState;
10
+ isDesktop?: boolean;
11
+ onChange?: (event: Event) => void;
12
+ showListOption?: boolean;
13
+ }> & Readonly<{}>, {
39
14
  isDesktop: boolean;
40
- onChange: Function;
15
+ onChange: (event: Event) => void;
41
16
  showListOption: boolean;
42
- }, {}, {
43
- SvgIcon: import('vue').DefineComponent<{
44
- icon: string;
45
- }, {
46
- svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
47
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
48
- icon: string;
49
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
50
- SearchInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
51
- state: {
52
- type: PropType<GridViewUiState>;
53
- required: true;
54
- };
55
- isDesktop: BooleanConstructor;
56
- onChange: {
57
- type: FunctionConstructor;
58
- default: () => any;
59
- };
60
- }>, {}, {}, {}, {
61
- onInput(event: Event): void;
62
- onFocus(event: Event): void;
63
- onCursorInInput(): void;
64
- onCursorLeavesInput(): void;
65
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
66
- state: {
67
- type: PropType<GridViewUiState>;
68
- required: true;
69
- };
70
- isDesktop: BooleanConstructor;
71
- onChange: {
72
- type: FunctionConstructor;
73
- default: () => any;
74
- };
75
- }>> & Readonly<{}>, {
76
- isDesktop: boolean;
77
- onChange: Function;
78
- }, {}, {
79
- SvgIcon: import('vue').DefineComponent<{
80
- icon: string;
81
- }, {
82
- svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
83
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
84
- icon: string;
85
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
86
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
87
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
88
18
  export default _default;
@@ -1,41 +1,15 @@
1
- import { PropType } from 'vue';
2
1
  import { GridViewUiState } from '../../../common/store/collection-view-state';
3
2
 
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
- state: {
6
- type: PropType<GridViewUiState>;
7
- required: true;
8
- };
9
- isDesktop: BooleanConstructor;
10
- onChange: {
11
- type: FunctionConstructor;
12
- default: () => any;
13
- };
14
- }>, {}, {}, {}, {
15
- onInput(event: Event): void;
16
- onFocus(event: Event): void;
17
- onCursorInInput(): void;
18
- onCursorLeavesInput(): void;
19
- }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
20
- state: {
21
- type: PropType<GridViewUiState>;
22
- required: true;
23
- };
24
- isDesktop: BooleanConstructor;
25
- onChange: {
26
- type: FunctionConstructor;
27
- default: () => any;
28
- };
29
- }>> & Readonly<{}>, {
3
+ declare const _default: import('vue').DefineComponent<{
4
+ state: GridViewUiState;
5
+ isDesktop?: boolean;
6
+ onChange?: (event: Event) => void;
7
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
8
+ state: GridViewUiState;
9
+ isDesktop?: boolean;
10
+ onChange?: (event: Event) => void;
11
+ }> & Readonly<{}>, {
30
12
  isDesktop: boolean;
31
- onChange: Function;
32
- }, {}, {
33
- SvgIcon: import('vue').DefineComponent<{
34
- icon: string;
35
- }, {
36
- svgIcon: import('vue').Ref<HTMLOrSVGElement, HTMLOrSVGElement>;
37
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
38
- icon: string;
39
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
40
- }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
13
+ onChange: (event: Event) => void;
14
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
41
15
  export default _default;