@shelf/global-renderer 1.9.12 → 2.0.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/README.md +20 -0
- package/lib/DecisionTreeContent/DecisionTreeContent.d.ts +4 -0
- package/lib/DecisionTreeContent/DecisionTreeContent.styled.d.ts +49 -0
- package/lib/DecisionTreeContent/components/Condition.d.ts +8 -0
- package/lib/DecisionTreeContent/components/ContentTable.d.ts +6 -0
- package/lib/DecisionTreeContent/components/ExportedMeta.d.ts +7 -0
- package/lib/DecisionTreeContent/components/Link.d.ts +6 -0
- package/lib/DecisionTreeContent/components/Question.d.ts +8 -0
- package/lib/DecisionTreeContent/components/Solution.d.ts +6 -0
- package/lib/DecisionTreeContent/components/StepHeader.d.ts +6 -0
- package/lib/DecisionTreeContent/components/StepTypeIcon.d.ts +7 -0
- package/lib/DecisionTreeContent/helpers.d.ts +44 -0
- package/lib/DecisionTreeContent/mocks.d.ts +314 -0
- package/lib/DecisionTreeContent/renderDTContent.d.ts +2 -0
- package/lib/DecisionTreeContent/types.d.ts +61 -0
- package/lib/DecisionTreeDiagram/StaticTreeContainer.d.ts +7 -0
- package/lib/DecisionTreeDiagram/renderStaticDTDiagram.d.ts +8 -0
- package/lib/i18next/index.d.ts +3 -0
- package/lib/index.d.ts +1 -0
- package/lib/renderDTContent.js +5 -5
- package/lib/renderStaticDTDiagram.js +269 -269
- package/license +9 -0
- package/package.json +33 -19
- package/CHANGELOG.md +0 -402
package/license
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Gemshelf Inc. (shelf.io)
|
|
4
|
+
|
|
5
|
+
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:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shelf/global-renderer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "The package exposes entrypoints with window's function(-s) to render React component",
|
|
5
5
|
"main": "lib",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -20,38 +20,52 @@
|
|
|
20
20
|
"CHANGELOG.md"
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build": "rm -rf lib/ && NODE_ENV=production webpack ",
|
|
23
|
+
"build": "rm -rf lib/ && NODE_ENV=production webpack && yarn build:types",
|
|
24
24
|
"build:types": "tsc --emitDeclarationOnly --noEmit false",
|
|
25
25
|
"coverage": "yarn test --coverage",
|
|
26
|
-
"start": "storybook dev -p 3001",
|
|
27
26
|
"test": "jest",
|
|
28
27
|
"type-check": "tsc --noEmit"
|
|
29
28
|
},
|
|
30
29
|
"dependencies": {
|
|
30
|
+
"@shelf/basic-components": "^21.22.0",
|
|
31
|
+
"@shelf/bem": "^5.0.0",
|
|
32
|
+
"@shelf/color-picker": "^7.0.163",
|
|
33
|
+
"@shelf/content-view": "^0.9.5",
|
|
31
34
|
"@shelf/datetime": "^2.0.0",
|
|
35
|
+
"@shelf/decision-tree-editor-components": "^4.0.5",
|
|
36
|
+
"@shelf/gem-components": "^17.0.5",
|
|
32
37
|
"@shelf/i18n": "13.7.3",
|
|
33
|
-
"@shelf/icons": "^11.6.
|
|
38
|
+
"@shelf/icons": "^11.6.53",
|
|
39
|
+
"@shelf/location-selector": "^10.1.109",
|
|
40
|
+
"@shelf/ratings-components": "^11.0.163",
|
|
41
|
+
"@shelf/rich-text-editor": "^7.0.63",
|
|
42
|
+
"@shelf/search-components": "^16.0.157",
|
|
43
|
+
"@shelf/sweet-alert": "^1.3.180",
|
|
44
|
+
"@shelf/toc": "^1.0.19",
|
|
45
|
+
"@shelf/tooltip": "^6.0.5",
|
|
46
|
+
"@shelf/wiki-text-sanitize": "^0.18.24",
|
|
47
|
+
"react": "^18.3.1",
|
|
48
|
+
"react-color": "^2.19.3",
|
|
49
|
+
"react-dom": "^18.3.1",
|
|
34
50
|
"react-i18next": "11.8.15"
|
|
35
51
|
},
|
|
36
52
|
"devDependencies": {
|
|
53
|
+
"@babel/core": "^7.24.6",
|
|
37
54
|
"@shelf/babel-config": "^3.0.0",
|
|
38
|
-
"@shelf/
|
|
39
|
-
"@shelf/types": "^
|
|
55
|
+
"@shelf/tsconfig": "^0.1.0",
|
|
56
|
+
"@shelf/types": "^58.79.0",
|
|
57
|
+
"@shelf/types-ddb": "^29.15.1",
|
|
58
|
+
"@testing-library/jest-dom": "^6.4.5",
|
|
59
|
+
"@testing-library/react": "^15.0.7",
|
|
60
|
+
"@types/jest": "^29.5.12",
|
|
61
|
+
"@types/lodash": "^4.17.4",
|
|
40
62
|
"@types/react-dom": "18.0.6",
|
|
41
63
|
"babel-loader": "8.2.3",
|
|
42
|
-
"i18next": "
|
|
64
|
+
"i18next": "23.11.5",
|
|
65
|
+
"lodash": "^4.17.21",
|
|
43
66
|
"path-browserify": "^1.0.1",
|
|
67
|
+
"styled-components": "^6.1.11",
|
|
44
68
|
"webpack": "^5.40.0",
|
|
45
|
-
"webpack-cli": "
|
|
46
|
-
}
|
|
47
|
-
"peerDependencies": {
|
|
48
|
-
"@shelf/client-helpers": "^5.0.18",
|
|
49
|
-
"@shelf/decision-tree-editor-components": "^1.2.14",
|
|
50
|
-
"@shelf/rich-text-editor": "^5.2.14",
|
|
51
|
-
"@shelf/types": "^50.0.6",
|
|
52
|
-
"lodash": "4.17.x",
|
|
53
|
-
"react": "18.x.x",
|
|
54
|
-
"styled-components": "^5 || ^6"
|
|
55
|
-
},
|
|
56
|
-
"gitHead": "d6354e69aad8249738d6e09b1d8203588098393d"
|
|
69
|
+
"webpack-cli": "5.1.4"
|
|
70
|
+
}
|
|
57
71
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,402 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.9.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.7.6...@shelf/global-renderer@1.9.0) (2024-05-24)
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
- build everything in to single file ([5a47f66](https://github.com/shelfio/libs-frontend/commit/5a47f66b2bb84f90bd6d42d8f6b8bc3725ad6cd2))
|
|
11
|
-
- jest config ([af77cef](https://github.com/shelfio/libs-frontend/commit/af77cef96645af14ef9a88eb935127cf7c136b8f))
|
|
12
|
-
- remove anused loaders ([e828ddc](https://github.com/shelfio/libs-frontend/commit/e828ddcb4f58c914b476ca99e2bdb4cb781a3284))
|
|
13
|
-
- revert global renderer to cmj ([6e08929](https://github.com/shelfio/libs-frontend/commit/6e089298260f11fc7228b706f2b83003d252cb42))
|
|
14
|
-
- try to cache ([618913a](https://github.com/shelfio/libs-frontend/commit/618913add0cd9022e2b59496a8b292af6e018caa))
|
|
15
|
-
- updated deps ([f414571](https://github.com/shelfio/libs-frontend/commit/f4145711fc533caad3f93bef5878d2abba0585be))
|
|
16
|
-
|
|
17
|
-
### Bug Fixes
|
|
18
|
-
|
|
19
|
-
- version ([44bdf24](https://github.com/shelfio/libs-frontend/commit/44bdf244a0e3336016af6574bdce1f5f8feb1251))
|
|
20
|
-
|
|
21
|
-
## [1.8.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.7.6...@shelf/global-renderer@1.8.0) (2024-05-24)
|
|
22
|
-
|
|
23
|
-
### Features
|
|
24
|
-
|
|
25
|
-
- build everything in to single file ([5a47f66](https://github.com/shelfio/libs-frontend/commit/5a47f66b2bb84f90bd6d42d8f6b8bc3725ad6cd2))
|
|
26
|
-
- jest config ([af77cef](https://github.com/shelfio/libs-frontend/commit/af77cef96645af14ef9a88eb935127cf7c136b8f))
|
|
27
|
-
- remove anused loaders ([e828ddc](https://github.com/shelfio/libs-frontend/commit/e828ddcb4f58c914b476ca99e2bdb4cb781a3284))
|
|
28
|
-
- revert global renderer to cmj ([6e08929](https://github.com/shelfio/libs-frontend/commit/6e089298260f11fc7228b706f2b83003d252cb42))
|
|
29
|
-
- try to cache ([618913a](https://github.com/shelfio/libs-frontend/commit/618913add0cd9022e2b59496a8b292af6e018caa))
|
|
30
|
-
- updated deps ([f414571](https://github.com/shelfio/libs-frontend/commit/f4145711fc533caad3f93bef5878d2abba0585be))
|
|
31
|
-
|
|
32
|
-
### Bug Fixes
|
|
33
|
-
|
|
34
|
-
- version ([44bdf24](https://github.com/shelfio/libs-frontend/commit/44bdf244a0e3336016af6574bdce1f5f8feb1251))
|
|
35
|
-
|
|
36
|
-
## [1.7.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.6.0...@shelf/global-renderer@1.7.0) (2024-05-21)
|
|
37
|
-
|
|
38
|
-
### Features
|
|
39
|
-
|
|
40
|
-
- export types from separate file ([eb6f225](https://github.com/shelfio/libs-frontend/commit/eb6f225902ca9b1ac4c8bb2697b9487ebced1f18))
|
|
41
|
-
|
|
42
|
-
## [1.6.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.5.1...@shelf/global-renderer@1.6.0) (2024-05-21)
|
|
43
|
-
|
|
44
|
-
### Features
|
|
45
|
-
|
|
46
|
-
- extended config ([062f00c](https://github.com/shelfio/libs-frontend/commit/062f00ced7bbb584d7a930ee6af042c776d7495b))
|
|
47
|
-
|
|
48
|
-
### Bug Fixes
|
|
49
|
-
|
|
50
|
-
- export types explicitly ([a6a04c3](https://github.com/shelfio/libs-frontend/commit/a6a04c3873a7a938ec4a37a5476badb745229b4b))
|
|
51
|
-
|
|
52
|
-
## [1.5.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.4.3...@shelf/global-renderer@1.5.0) (2024-05-21)
|
|
53
|
-
|
|
54
|
-
### Features
|
|
55
|
-
|
|
56
|
-
- clean packages ([1ac9616](https://github.com/shelfio/libs-frontend/commit/1ac9616d0c685c7c92bf7a977d8e0593df56e83d))
|
|
57
|
-
- reverted to esm and added separated builds ([aaeb401](https://github.com/shelfio/libs-frontend/commit/aaeb40108755b2fae37c49405b152098cd09c254))
|
|
58
|
-
- simplified build ([3e96e47](https://github.com/shelfio/libs-frontend/commit/3e96e477784a468c6c1bc6ca275d67fd33c303a3))
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
- renamed package ([1a11a2b](https://github.com/shelfio/libs-frontend/commit/1a11a2bb2afbd631fb3c95dc2694243a4fca56f7))
|
|
63
|
-
|
|
64
|
-
### [1.4.2](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.4.1...@shelf/global-renderer@1.4.2) (2024-05-20)
|
|
65
|
-
|
|
66
|
-
### Bug Fixes
|
|
67
|
-
|
|
68
|
-
- revert externals ([ecff7f3](https://github.com/shelfio/libs-frontend/commit/ecff7f3eef094b8ae2820479ce41e8ab63328e70))
|
|
69
|
-
- updated config ([cd78262](https://github.com/shelfio/libs-frontend/commit/cd782628ad1244e402821aeeea957f016208def6))
|
|
70
|
-
|
|
71
|
-
### [1.4.1](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.4.0...@shelf/global-renderer@1.4.1) (2024-05-20)
|
|
72
|
-
|
|
73
|
-
### Bug Fixes
|
|
74
|
-
|
|
75
|
-
- remove externals ([9c2976d](https://github.com/shelfio/libs-frontend/commit/9c2976d8e2ddb128823d576cfbe3bfe575c1e01c))
|
|
76
|
-
- removed exports ([98a2cff](https://github.com/shelfio/libs-frontend/commit/98a2cff3010bc9302d1c63d0bc23706882f0e652))
|
|
77
|
-
|
|
78
|
-
## [1.4.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.3.0...@shelf/global-renderer@1.4.0) (2024-05-20)
|
|
79
|
-
|
|
80
|
-
### Features
|
|
81
|
-
|
|
82
|
-
- reverted global renderer ([eb8fb3c](https://github.com/shelfio/libs-frontend/commit/eb8fb3c4b0d79d4860797d6518c1936a790745f9))
|
|
83
|
-
- test config ([3639dad](https://github.com/shelfio/libs-frontend/commit/3639dad4f1e895b6f502072a08af3c199fd2acac))
|
|
84
|
-
- tests ([9a0dfff](https://github.com/shelfio/libs-frontend/commit/9a0dfff998a844e5bc226e327c10ec1144f706e8))
|
|
85
|
-
|
|
86
|
-
## [1.3.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.2.170...@shelf/global-renderer@1.3.0) (2024-05-20)
|
|
87
|
-
|
|
88
|
-
### Features
|
|
89
|
-
|
|
90
|
-
- PREVIEWAPI-387 remove redundant CSS floats ([1b260fd](https://github.com/shelfio/libs-frontend/commit/1b260fdeaaf8b64a8e387131bc99a33cd195fdf9))
|
|
91
|
-
|
|
92
|
-
## [1.2.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.0.4-beta.43...@shelf/global-renderer@1.2.0) (2024-01-17)
|
|
93
|
-
|
|
94
|
-
### Features
|
|
95
|
-
|
|
96
|
-
- GEMVIEWAPP-117 Remove font-family from packages ([fc91569](https://github.com/shelfio/libs-frontend/commit/fc91569177ec4e45acf9e4302983e96b75334556))
|
|
97
|
-
|
|
98
|
-
## [1.1.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@1.0.4-beta.43...@shelf/global-renderer@1.1.0) (2024-01-17)
|
|
99
|
-
|
|
100
|
-
### Features
|
|
101
|
-
|
|
102
|
-
- GEMVIEWAPP-117 Remove font-family from packages ([fc91569](https://github.com/shelfio/libs-frontend/commit/fc91569177ec4e45acf9e4302983e96b75334556))
|
|
103
|
-
|
|
104
|
-
## [0.32.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.31.18...@shelf/global-renderer@0.32.0) (2023-12-06)
|
|
105
|
-
|
|
106
|
-
### Features
|
|
107
|
-
|
|
108
|
-
- add competency frontend tag to opslevels ([3767dc5](https://github.com/shelfio/libs-frontend/commit/3767dc566193cfc6e15d3183e541335a6658ae53))
|
|
109
|
-
- update competency opslevel tags ([1d0328b](https://github.com/shelfio/libs-frontend/commit/1d0328b3d5bac224facb89954754fea8fc580e48))
|
|
110
|
-
|
|
111
|
-
## [0.31.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.30.53...@shelf/global-renderer@0.31.0) (2023-11-01)
|
|
112
|
-
|
|
113
|
-
### Features
|
|
114
|
-
|
|
115
|
-
- REACT-547 run codemod + manual fixes ([99837b2](https://github.com/shelfio/libs-frontend/commit/99837b2c178ad694f1c7da48b5fb8555be05a5d2))
|
|
116
|
-
|
|
117
|
-
### Bug Fixes
|
|
118
|
-
|
|
119
|
-
- REACT-547 add colors to deps ([e92c132](https://github.com/shelfio/libs-frontend/commit/e92c132aa4bf97867be4f866a8b8cf38c76a04db))
|
|
120
|
-
- REACT-547 remove client-helpers from deps if not used ([ca73471](https://github.com/shelfio/libs-frontend/commit/ca734719ec5c1b739ba8db5c651dbc2a038d9617))
|
|
121
|
-
|
|
122
|
-
## [0.30.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.29.34...@shelf/global-renderer@0.30.0) (2023-09-08)
|
|
123
|
-
|
|
124
|
-
### ⚠ BREAKING CHANGES
|
|
125
|
-
|
|
126
|
-
- REACT-523 switch global-renderer and decisiontree components to use isFirstStep prop of step
|
|
127
|
-
|
|
128
|
-
### Features
|
|
129
|
-
|
|
130
|
-
- REACT-523 switch global-renderer and decisiontree components to use isFirstStep prop of step ([ffca310](https://github.com/shelfio/libs-frontend/commit/ffca310bafdacd21b645c0d0a102c3f56448a6fb))
|
|
131
|
-
|
|
132
|
-
## [0.29.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.28.37...@shelf/global-renderer@0.29.0) (2023-08-15)
|
|
133
|
-
|
|
134
|
-
### Features
|
|
135
|
-
|
|
136
|
-
- GEMVIEWAPP-16 Upgrade datetime dependency ([a2d401b](https://github.com/shelfio/libs-frontend/commit/a2d401be08d28cba41e4e84ec2bf1f3b77e811b1))
|
|
137
|
-
|
|
138
|
-
### Bug Fixes
|
|
139
|
-
|
|
140
|
-
- import datetime package ([ca258d7](https://github.com/shelfio/libs-frontend/commit/ca258d7af957c9a96f92baa739ae9a38fbbf5616))
|
|
141
|
-
|
|
142
|
-
## [0.28.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.27.179...@shelf/global-renderer@0.28.0) (2023-07-21)
|
|
143
|
-
|
|
144
|
-
### Features
|
|
145
|
-
|
|
146
|
-
- add opslevel tags ([44e078f](https://github.com/shelfio/libs-frontend/commit/44e078fccac7835129488399e3f832f7697ec82f))
|
|
147
|
-
|
|
148
|
-
## [0.27.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.26.34...@shelf/global-renderer@0.27.0) (2023-05-05)
|
|
149
|
-
|
|
150
|
-
### Features
|
|
151
|
-
|
|
152
|
-
- REACT-410 added StepTypeIcon component ([e169ed7](https://github.com/shelfio/libs-frontend/commit/e169ed71ccebf85b354d2f085cdcb31d82d23eda))
|
|
153
|
-
- REACT-410 migrate DT Content icon ([87cd235](https://github.com/shelfio/libs-frontend/commit/87cd235ee2dc3c780a241e3c4b59a81df88de168))
|
|
154
|
-
|
|
155
|
-
### [0.26.7](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.26.6...@shelf/global-renderer@0.26.7) (2023-04-25)
|
|
156
|
-
|
|
157
|
-
### Bug Fixes
|
|
158
|
-
|
|
159
|
-
- REACT-377 min width ([9017d68](https://github.com/shelfio/libs-frontend/commit/9017d686ed433510d8064f7e579da434f21b4cc4))
|
|
160
|
-
|
|
161
|
-
## [0.26.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.25.24...@shelf/global-renderer@0.26.0) (2023-04-24)
|
|
162
|
-
|
|
163
|
-
### Features
|
|
164
|
-
|
|
165
|
-
- REACT-377 Add default condition ([484b5cf](https://github.com/shelfio/libs-frontend/commit/484b5cfa536901cab0667e0b77bd0a076db59a96))
|
|
166
|
-
- REACT-377 Add deleted label ([841f271](https://github.com/shelfio/libs-frontend/commit/841f2710d286022efa8033d8fe580782dc592e06))
|
|
167
|
-
|
|
168
|
-
## [0.25.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.24.69...@shelf/global-renderer@0.25.0) (2023-04-10)
|
|
169
|
-
|
|
170
|
-
### Features
|
|
171
|
-
|
|
172
|
-
- PREVIEWAPI-341 Add assignment ([5b719f9](https://github.com/shelfio/libs-frontend/commit/5b719f9415cc587b1cdc787ba6e87a2edf4640e7))
|
|
173
|
-
- PREVIEWAPI-341 Add CL ([7d9786a](https://github.com/shelfio/libs-frontend/commit/7d9786ad899ce242a18531c2c668d0371e7469d2))
|
|
174
|
-
- PREVIEWAPI-341 Add conditions ([9bc070e](https://github.com/shelfio/libs-frontend/commit/9bc070e9cba6fc46a29716a33ded41482d03640d))
|
|
175
|
-
- PREVIEWAPI-341 Fix tests ([bbf5591](https://github.com/shelfio/libs-frontend/commit/bbf5591611d39526a17ae656aac25bc5a95682fa))
|
|
176
|
-
|
|
177
|
-
### Bug Fixes
|
|
178
|
-
|
|
179
|
-
- PREVIEWAPI-341 tests ([195ea16](https://github.com/shelfio/libs-frontend/commit/195ea160bc8e5de9bf29b89ef8551f882a85703d))
|
|
180
|
-
|
|
181
|
-
## [0.24.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.23.72...@shelf/global-renderer@0.24.0) (2023-02-24)
|
|
182
|
-
|
|
183
|
-
### Features
|
|
184
|
-
|
|
185
|
-
- PREVIEWAPI-338 Update global renderer to render static tree with conditional logic ([158ab00](https://github.com/shelfio/libs-frontend/commit/158ab0030c69e6ee517e554f311cd232d85442e8))
|
|
186
|
-
|
|
187
|
-
### [0.23.5](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.23.4...@shelf/global-renderer@0.23.5) (2022-11-14)
|
|
188
|
-
|
|
189
|
-
### Bug Fixes
|
|
190
|
-
|
|
191
|
-
- GEMPAGEAPP-800 fix marging in content table ([636e46d](https://github.com/shelfio/libs-frontend/commit/636e46d13110d461ce4e4d8f3f8b871a0e624a61))
|
|
192
|
-
|
|
193
|
-
## [0.23.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.22.3...@shelf/global-renderer@0.23.0) (2022-11-10)
|
|
194
|
-
|
|
195
|
-
### Features
|
|
196
|
-
|
|
197
|
-
- GEMPAGEAPP-799 fix width of content, break link ([5d48ad4](https://github.com/shelfio/libs-frontend/commit/5d48ad4293b3440ef6367ec249f9058c9a172ef1))
|
|
198
|
-
|
|
199
|
-
## [0.22.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.21.0...@shelf/global-renderer@0.22.0) (2022-11-10)
|
|
200
|
-
|
|
201
|
-
### Features
|
|
202
|
-
|
|
203
|
-
- GEMPAGEAPP-799 fix max width of content ([0fe3c83](https://github.com/shelfio/libs-frontend/commit/0fe3c8327cb9b10cf7d7507c242889a4340251ba))
|
|
204
|
-
|
|
205
|
-
## [0.21.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.20.1...@shelf/global-renderer@0.21.0) (2022-11-09)
|
|
206
|
-
|
|
207
|
-
### Features
|
|
208
|
-
|
|
209
|
-
- GEMPAGEAPP-800 remove float ([5f8caac](https://github.com/shelfio/libs-frontend/commit/5f8caaced355c6337a74f9ab907616b4851e3514))
|
|
210
|
-
|
|
211
|
-
## [0.20.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.19.2...@shelf/global-renderer@0.20.0) (2022-11-09)
|
|
212
|
-
|
|
213
|
-
### Features
|
|
214
|
-
|
|
215
|
-
- GEMPAGEAPP-800 page breach inside content list ([8193759](https://github.com/shelfio/libs-frontend/commit/81937596bceca87509759015a7208db2a1fcfc32))
|
|
216
|
-
|
|
217
|
-
## [0.19.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.18.0...@shelf/global-renderer@0.19.0) (2022-11-08)
|
|
218
|
-
|
|
219
|
-
### Features
|
|
220
|
-
|
|
221
|
-
- GEMPAGEAPP-800 Fix lines in the answer boxes ([dd2f872](https://github.com/shelfio/libs-frontend/commit/dd2f87283cf57d827425be2a0ffcbbf51666d664))
|
|
222
|
-
- GEMPAGEAPP-800 Fix parent links ([9b22014](https://github.com/shelfio/libs-frontend/commit/9b22014abe733d1531eda8977db8be31d0b9a8b3))
|
|
223
|
-
- GEMPAGEAPP-800 little branch decrease ([51cc142](https://github.com/shelfio/libs-frontend/commit/51cc142c35900c7a38a407c22418df800e05c49f))
|
|
224
|
-
- GEMPAGEAPP-800 Use paddings, no colors ([66b6d20](https://github.com/shelfio/libs-frontend/commit/66b6d20c8fa03f53748bb3b2cdec43969bfbb6dc))
|
|
225
|
-
|
|
226
|
-
## [0.18.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.16.9...@shelf/global-renderer@0.18.0) (2022-11-03)
|
|
227
|
-
|
|
228
|
-
### Features
|
|
229
|
-
|
|
230
|
-
- [REACT-344] remove dates and datetime packages ([12ddb22](https://github.com/shelfio/libs-frontend/commit/12ddb22fc37f39028dff46584b0f6566f7ad936c))
|
|
231
|
-
- [REACT-344] replace dates with datetime in global renderer ([0a242f7](https://github.com/shelfio/libs-frontend/commit/0a242f7ab19510b0fdfedee0dc0faa1828ed3b23))
|
|
232
|
-
|
|
233
|
-
### Bug Fixes
|
|
234
|
-
|
|
235
|
-
- [REACT-344] addjust typings ([13b883f](https://github.com/shelfio/libs-frontend/commit/13b883fee74ec6762866451d18cf649237cc7a7c))
|
|
236
|
-
- [REACT-344] remove unnecessary language prop ([6d0bbfe](https://github.com/shelfio/libs-frontend/commit/6d0bbfe6328955e6c10457304662b25890e652b8))
|
|
237
|
-
|
|
238
|
-
## [0.17.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.16.9...@shelf/global-renderer@0.17.0) (2022-11-03)
|
|
239
|
-
|
|
240
|
-
### Features
|
|
241
|
-
|
|
242
|
-
- [REACT-344] remove dates and datetime packages ([12ddb22](https://github.com/shelfio/libs-frontend/commit/12ddb22fc37f39028dff46584b0f6566f7ad936c))
|
|
243
|
-
- [REACT-344] replace dates with datetime in global renderer ([0a242f7](https://github.com/shelfio/libs-frontend/commit/0a242f7ab19510b0fdfedee0dc0faa1828ed3b23))
|
|
244
|
-
|
|
245
|
-
### Bug Fixes
|
|
246
|
-
|
|
247
|
-
- [REACT-344] addjust typings ([13b883f](https://github.com/shelfio/libs-frontend/commit/13b883fee74ec6762866451d18cf649237cc7a7c))
|
|
248
|
-
- [REACT-344] remove unnecessary language prop ([6d0bbfe](https://github.com/shelfio/libs-frontend/commit/6d0bbfe6328955e6c10457304662b25890e652b8))
|
|
249
|
-
|
|
250
|
-
## [0.16.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.15.5...@shelf/global-renderer@0.16.0) (2022-10-31)
|
|
251
|
-
|
|
252
|
-
### Features
|
|
253
|
-
|
|
254
|
-
- PREVIEWAPI-295 add id attr to root to wait in puppeteer ([c4f72a8](https://github.com/shelfio/libs-frontend/commit/c4f72a822fb0659eb27d2e748756063509398441))
|
|
255
|
-
|
|
256
|
-
## [0.15.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.14.21...@shelf/global-renderer@0.15.0) (2022-10-27)
|
|
257
|
-
|
|
258
|
-
### Features
|
|
259
|
-
|
|
260
|
-
- PREVIEWAPI-295 adjust types ([1b89fe9](https://github.com/shelfio/libs-frontend/commit/1b89fe98c4c4fda111a0fc18e132ba5cf0dba106))
|
|
261
|
-
|
|
262
|
-
### [0.14.21](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.14.20...@shelf/global-renderer@0.14.21) (2022-10-27)
|
|
263
|
-
|
|
264
|
-
### Bug Fixes
|
|
265
|
-
|
|
266
|
-
- PREVIEWAPI-295 fix DTStepFromApi type ([82baaa3](https://github.com/shelfio/libs-frontend/commit/82baaa351dff5477095b6f2d3dcd948807a89456))
|
|
267
|
-
|
|
268
|
-
## [0.14.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.13.0...@shelf/global-renderer@0.14.0) (2022-10-13)
|
|
269
|
-
|
|
270
|
-
### Features
|
|
271
|
-
|
|
272
|
-
- REACT-333 move decision-tree-editor package to peerDependencies ([80cba52](https://github.com/shelfio/libs-frontend/commit/80cba52b76866c294d547267ed4224b1cc70424b))
|
|
273
|
-
- REACT-333 upgrade yarn.lock for strict decision-tree-editor ([121e4b9](https://github.com/shelfio/libs-frontend/commit/121e4b9014ca6216ada33a4d49b5458a27eb15b9))
|
|
274
|
-
|
|
275
|
-
## [0.13.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.12.0...@shelf/global-renderer@0.13.0) (2022-10-13)
|
|
276
|
-
|
|
277
|
-
### Features
|
|
278
|
-
|
|
279
|
-
- REACT-333 strict version of StaticTree package for global renderer ([898d6cd](https://github.com/shelfio/libs-frontend/commit/898d6cd9cf7bfb1fb4d8d61d372ee0c029e4344f))
|
|
280
|
-
|
|
281
|
-
### Bug Fixes
|
|
282
|
-
|
|
283
|
-
- REACT-333 resolved conflicts ([08e629d](https://github.com/shelfio/libs-frontend/commit/08e629d9cfc6d1a8f96a78d77a0a3bbd8477807f))
|
|
284
|
-
|
|
285
|
-
## [0.12.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.11.4...@shelf/global-renderer@0.12.0) (2022-10-13)
|
|
286
|
-
|
|
287
|
-
### Features
|
|
288
|
-
|
|
289
|
-
- REACT-339 Update download pdf wording ([8be03a2](https://github.com/shelfio/libs-frontend/commit/8be03a2c373774675c6386022378137eb2fbe398))
|
|
290
|
-
|
|
291
|
-
## [0.11.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.10.6...@shelf/global-renderer@0.11.0) (2022-10-13)
|
|
292
|
-
|
|
293
|
-
### Features
|
|
294
|
-
|
|
295
|
-
- REACT-333 set strict version for decision tree ([26f7a25](https://github.com/shelfio/libs-frontend/commit/26f7a25a3d0d426c5f69ec17d4457e17dda3f639))
|
|
296
|
-
|
|
297
|
-
### [0.10.6](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.10.5...@shelf/global-renderer@0.10.6) (2022-10-13)
|
|
298
|
-
|
|
299
|
-
### Bug Fixes
|
|
300
|
-
|
|
301
|
-
- REACT-333 fix mock path in test ([e1ebe79](https://github.com/shelfio/libs-frontend/commit/e1ebe7922ca761885fb0e04940b1060e3307c1c6))
|
|
302
|
-
|
|
303
|
-
### Performance Improvements
|
|
304
|
-
|
|
305
|
-
- REACT-333 remove index entry point, import StatiTree directly ([c9b1e20](https://github.com/shelfio/libs-frontend/commit/c9b1e20406b1b6802165c0f21747a7ca3ca9636f))
|
|
306
|
-
|
|
307
|
-
## [0.10.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.9.2...@shelf/global-renderer@0.10.0) (2022-10-12)
|
|
308
|
-
|
|
309
|
-
### Features
|
|
310
|
-
|
|
311
|
-
- REACT-339 update i18n ([a93f70a](https://github.com/shelfio/libs-frontend/commit/a93f70ab42e2718c598d1ce6603fa0bed5ff22c7))
|
|
312
|
-
|
|
313
|
-
## [0.9.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.7.9...@shelf/global-renderer@0.9.0) (2022-10-11)
|
|
314
|
-
|
|
315
|
-
### Features
|
|
316
|
-
|
|
317
|
-
- REACT-334 adjust Decision tree types ([51c96a7](https://github.com/shelfio/libs-frontend/commit/51c96a71b64f31ffa3f80ba43f805b0d0f82b520))
|
|
318
|
-
|
|
319
|
-
## [0.8.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.7.9...@shelf/global-renderer@0.8.0) (2022-10-11)
|
|
320
|
-
|
|
321
|
-
### Features
|
|
322
|
-
|
|
323
|
-
- REACT-334 adjust Decision tree types ([51c96a7](https://github.com/shelfio/libs-frontend/commit/51c96a71b64f31ffa3f80ba43f805b0d0f82b520))
|
|
324
|
-
|
|
325
|
-
### [0.7.2](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.7.1...@shelf/global-renderer@0.7.2) (2022-10-05)
|
|
326
|
-
|
|
327
|
-
### Bug Fixes
|
|
328
|
-
|
|
329
|
-
- REACT-335 add types to export ([74b0e26](https://github.com/shelfio/libs-frontend/commit/74b0e26c76497b5eba123502e7a671fd4e98d2e5))
|
|
330
|
-
|
|
331
|
-
## [0.7.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.6.4...@shelf/global-renderer@0.7.0) (2022-10-05)
|
|
332
|
-
|
|
333
|
-
### Features
|
|
334
|
-
|
|
335
|
-
- REACT-338 localize date ([c61ae8e](https://github.com/shelfio/libs-frontend/commit/c61ae8e8ff879d5fb109fa8becf7e52946c23e44))
|
|
336
|
-
- REACT-338 localize strings ([3d666d3](https://github.com/shelfio/libs-frontend/commit/3d666d3c16ea94f61da07bc74ce2aa88761b3454))
|
|
337
|
-
- REACT-338 render fields ([7f8f9c5](https://github.com/shelfio/libs-frontend/commit/7f8f9c5db577751c7755a7391427305b73ab1af0))
|
|
338
|
-
|
|
339
|
-
### Bug Fixes
|
|
340
|
-
|
|
341
|
-
- REACT-338 fix tests ([36cef9e](https://github.com/shelfio/libs-frontend/commit/36cef9ee69abf2bf4e952502885a157ee410a2c2))
|
|
342
|
-
- REACT-338 fix types ([f999910](https://github.com/shelfio/libs-frontend/commit/f999910346bda8e4c4a2d5628cc23cfcfedf9a50))
|
|
343
|
-
- REACT-338 wording ([f4caece](https://github.com/shelfio/libs-frontend/commit/f4caece671699daaafeff8c53f417e739c44b4fc))
|
|
344
|
-
|
|
345
|
-
## [0.6.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.5.3...@shelf/global-renderer@0.6.0) (2022-10-03)
|
|
346
|
-
|
|
347
|
-
### Features
|
|
348
|
-
|
|
349
|
-
- REACT-338 define types ([67d58a8](https://github.com/shelfio/libs-frontend/commit/67d58a89393e58c6b23a722935ee8b42b3a5568f))
|
|
350
|
-
- REACT-338 Render custom fields with exported meta data ([b43774e](https://github.com/shelfio/libs-frontend/commit/b43774e7827626aae3ebb8be108463147a98d5e2))
|
|
351
|
-
|
|
352
|
-
### Bug Fixes
|
|
353
|
-
|
|
354
|
-
- REACT-337 tests ([503c2a1](https://github.com/shelfio/libs-frontend/commit/503c2a18580c6c46ee661eb32f8d93fb719683a1))
|
|
355
|
-
- REACT-337 tests ([dea18f6](https://github.com/shelfio/libs-frontend/commit/dea18f64b9441aa77431408b4e9fc6c5ff704784))
|
|
356
|
-
|
|
357
|
-
## [0.5.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.4.1...@shelf/global-renderer@0.5.0) (2022-09-30)
|
|
358
|
-
|
|
359
|
-
### Features
|
|
360
|
-
|
|
361
|
-
- REACT-338 Add table of content ([867e1ff](https://github.com/shelfio/libs-frontend/commit/867e1ff0d8d3fb106460c4886f927cc318dee505))
|
|
362
|
-
|
|
363
|
-
## [0.4.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.3.2...@shelf/global-renderer@0.4.0) (2022-09-30)
|
|
364
|
-
|
|
365
|
-
### Features
|
|
366
|
-
|
|
367
|
-
- REACT-335 add stories ([09514b6](https://github.com/shelfio/libs-frontend/commit/09514b6a96a85e7f07eeac3c3e668a0f8dda8ad4))
|
|
368
|
-
- REACT-335 remove dublicated ([fa209a8](https://github.com/shelfio/libs-frontend/commit/fa209a8702a05d1b5336beb316982b95ac0cf713))
|
|
369
|
-
|
|
370
|
-
## [0.3.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.2.24...@shelf/global-renderer@0.3.0) (2022-09-29)
|
|
371
|
-
|
|
372
|
-
### Features
|
|
373
|
-
|
|
374
|
-
- REACT-335 Add answers links ([5b47b41](https://github.com/shelfio/libs-frontend/commit/5b47b41c30460cea10f41ad5a29705df8acf5b3f))
|
|
375
|
-
- REACT-335 add DT render tests ([d69a196](https://github.com/shelfio/libs-frontend/commit/d69a196354d038028d693063890e4d012d0ed887))
|
|
376
|
-
- REACT-335 Add Link step ([3c2b3c7](https://github.com/shelfio/libs-frontend/commit/3c2b3c70bf7ec9bc9cc9696357d795e5c5e2609b))
|
|
377
|
-
- REACT-335 Add solution ([d9af4ff](https://github.com/shelfio/libs-frontend/commit/d9af4ffb1a44450f70da927f497d057eebc9fe5d))
|
|
378
|
-
- REACT-335 add stories ([4f9d9ea](https://github.com/shelfio/libs-frontend/commit/4f9d9ea906e45f9e3288fb6d116285c79f8e8bb0))
|
|
379
|
-
- REACT-335 Add tests ([8f8dbf6](https://github.com/shelfio/libs-frontend/commit/8f8dbf6b21bc90b62de2e4321529de5efb143773))
|
|
380
|
-
|
|
381
|
-
### Bug Fixes
|
|
382
|
-
|
|
383
|
-
- REACT-335 Add new color that will be reused on gem page ([ffdeaf3](https://github.com/shelfio/libs-frontend/commit/ffdeaf37b03e9aa31cef5a1780c0d6621587d3dc))
|
|
384
|
-
- REACT-335 Add parent steps ([f454111](https://github.com/shelfio/libs-frontend/commit/f454111622ce7e626c269869b356d09011cd6c5d))
|
|
385
|
-
- REACT-335 Add pdf content to global renderer ([f54ddc5](https://github.com/shelfio/libs-frontend/commit/f54ddc56ab3a10d6d112a06f97952aff1496c9d4))
|
|
386
|
-
- REACT-335 changed to querySelector ([1d080c0](https://github.com/shelfio/libs-frontend/commit/1d080c0e7351c0a0750567c7d23ecbc181370389))
|
|
387
|
-
- REACT-335 fix colors ([abdfd20](https://github.com/shelfio/libs-frontend/commit/abdfd20a9f88acb0a6abf5de876cce4a9f89ed2c))
|
|
388
|
-
- REACT-335 real coverage ([2ffaa5c](https://github.com/shelfio/libs-frontend/commit/2ffaa5cd2fc24ef8e742f88fe002015d44336678))
|
|
389
|
-
- REACT-335 real coverage ([c0bad55](https://github.com/shelfio/libs-frontend/commit/c0bad55e0698f68968e2800dc30a104287940e87))
|
|
390
|
-
- REACT-335 remove querySelector, move tests mocks, add stories ([a7b5101](https://github.com/shelfio/libs-frontend/commit/a7b51018110b585dfe7cb548e3c3141cf1a5a58d))
|
|
391
|
-
|
|
392
|
-
## [0.2.0](https://github.com/shelfio/libs-frontend/compare/@shelf/global-renderer@0.1.0...@shelf/global-renderer@0.2.0) (2022-09-21)
|
|
393
|
-
|
|
394
|
-
### Features
|
|
395
|
-
|
|
396
|
-
- REACT-334 move @shelf/decision-tree-editor package to devDeps ([87a704c](https://github.com/shelfio/libs-frontend/commit/87a704c1304c536a4aff6d0cae18558e2cab8b14))
|
|
397
|
-
|
|
398
|
-
## 0.1.0 (2022-09-21)
|
|
399
|
-
|
|
400
|
-
### Features
|
|
401
|
-
|
|
402
|
-
- REACT-334 create global renderer package with renderStaticDTDiagram entry point ([54115b2](https://github.com/shelfio/libs-frontend/commit/54115b2af100ff0c2b42a04bc897591c23c1f935))
|