@memori.ai/memori-react 8.16.1 → 8.17.1
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/CHANGELOG.md +9 -0
- package/dist/components/layouts/website-assistant.css +22 -4
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/esm/components/layouts/website-assistant.css +22 -4
- package/esm/version.d.ts +1 -1
- package/esm/version.js +1 -1
- package/package.json +1 -1
- package/src/components/layouts/website-assistant.css +22 -4
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [8.17.1](https://github.com/memori-ai/memori-react/compare/v8.17.0...v8.17.1) (2026-01-31)
|
|
4
|
+
|
|
5
|
+
## [8.17.0](https://github.com/memori-ai/memori-react/compare/v8.16.1...v8.17.0) (2026-01-31)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add Website Assistant overlay on Memori website with improved z-index ([7cfb9e5](https://github.com/memori-ai/memori-react/commit/7cfb9e5071bb0279ceeaa99732eaabf2502215c6))
|
|
11
|
+
|
|
3
12
|
## [8.16.1](https://github.com/memori-ai/memori-react/compare/v8.16.0...v8.16.1) (2026-01-30)
|
|
4
13
|
|
|
5
14
|
## [8.16.0](https://github.com/memori-ai/memori-react/compare/v8.15.1...v8.16.0) (2026-01-30)
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
.memori-website_assistant--trigger {
|
|
11
11
|
position: fixed;
|
|
12
|
-
z-index:
|
|
12
|
+
z-index: 2147483647;
|
|
13
13
|
right: 0px;
|
|
14
14
|
bottom: 0px;
|
|
15
15
|
display: flex;
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
border-radius: 50%;
|
|
57
57
|
-webkit-backdrop-filter: blur(10px);
|
|
58
58
|
backdrop-filter: blur(10px);
|
|
59
|
-
background: transparent !important;
|
|
60
59
|
box-shadow: none !important;
|
|
61
60
|
cursor: pointer;
|
|
62
61
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -145,13 +144,14 @@
|
|
|
145
144
|
|
|
146
145
|
.memori-widget.memori-layout-website_assistant {
|
|
147
146
|
position: relative;
|
|
148
|
-
z-index:
|
|
147
|
+
z-index: 2147483647;
|
|
149
148
|
font-size: 14px;
|
|
150
149
|
}
|
|
151
150
|
|
|
152
151
|
.memori-widget.memori-layout-website_assistant .memori-website_assistant--collapsed,
|
|
153
152
|
.memori-widget.memori-layout-website_assistant .memori-website_assistant--expanded {
|
|
154
153
|
position: fixed;
|
|
154
|
+
z-index: 2147483647;
|
|
155
155
|
right: 0;
|
|
156
156
|
bottom: 0;
|
|
157
157
|
overflow: hidden;
|
|
@@ -445,12 +445,22 @@
|
|
|
445
445
|
margin: 0 auto;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
+
.memori-wesite_assistant-layout--controls .memori--start-panel {
|
|
449
|
+
flex: 1;
|
|
450
|
+
align-self: center;
|
|
451
|
+
align-content: center;
|
|
452
|
+
border: 0px;
|
|
453
|
+
box-shadow: none !important;
|
|
454
|
+
}
|
|
455
|
+
|
|
448
456
|
.memori-website_assistant-layout--controls .memori-chat--wrapper {
|
|
449
457
|
display: flex;
|
|
450
458
|
min-height: 0;
|
|
451
459
|
flex: 1;
|
|
452
460
|
flex-direction: column;
|
|
453
461
|
padding: 0.75rem;
|
|
462
|
+
box-shadow: none !important;
|
|
463
|
+
border: 0px !important;
|
|
454
464
|
}
|
|
455
465
|
|
|
456
466
|
.memori-website_assistant-layout--controls .memori--start-panel {
|
|
@@ -578,6 +588,14 @@
|
|
|
578
588
|
}
|
|
579
589
|
}
|
|
580
590
|
|
|
591
|
+
@media (max-width: 870px) {
|
|
592
|
+
.memori-website_assistant-layout .memori-header {
|
|
593
|
+
max-width: 64px;
|
|
594
|
+
margin-right: 1rem;
|
|
595
|
+
margin-left: auto;
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
581
599
|
/* ============================================
|
|
582
600
|
ACCESSIBILITY & PERFORMANCE
|
|
583
601
|
============================================ */
|
|
@@ -612,4 +630,4 @@
|
|
|
612
630
|
height: 48px;
|
|
613
631
|
padding: 0.875rem;
|
|
614
632
|
}
|
|
615
|
-
}
|
|
633
|
+
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.
|
|
1
|
+
export declare const version = "8.17.1";
|
package/dist/version.js
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
.memori-website_assistant--trigger {
|
|
11
11
|
position: fixed;
|
|
12
|
-
z-index:
|
|
12
|
+
z-index: 2147483647;
|
|
13
13
|
right: 0px;
|
|
14
14
|
bottom: 0px;
|
|
15
15
|
display: flex;
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
border-radius: 50%;
|
|
57
57
|
-webkit-backdrop-filter: blur(10px);
|
|
58
58
|
backdrop-filter: blur(10px);
|
|
59
|
-
background: transparent !important;
|
|
60
59
|
box-shadow: none !important;
|
|
61
60
|
cursor: pointer;
|
|
62
61
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -145,13 +144,14 @@
|
|
|
145
144
|
|
|
146
145
|
.memori-widget.memori-layout-website_assistant {
|
|
147
146
|
position: relative;
|
|
148
|
-
z-index:
|
|
147
|
+
z-index: 2147483647;
|
|
149
148
|
font-size: 14px;
|
|
150
149
|
}
|
|
151
150
|
|
|
152
151
|
.memori-widget.memori-layout-website_assistant .memori-website_assistant--collapsed,
|
|
153
152
|
.memori-widget.memori-layout-website_assistant .memori-website_assistant--expanded {
|
|
154
153
|
position: fixed;
|
|
154
|
+
z-index: 2147483647;
|
|
155
155
|
right: 0;
|
|
156
156
|
bottom: 0;
|
|
157
157
|
overflow: hidden;
|
|
@@ -445,12 +445,22 @@
|
|
|
445
445
|
margin: 0 auto;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
+
.memori-wesite_assistant-layout--controls .memori--start-panel {
|
|
449
|
+
flex: 1;
|
|
450
|
+
align-self: center;
|
|
451
|
+
align-content: center;
|
|
452
|
+
border: 0px;
|
|
453
|
+
box-shadow: none !important;
|
|
454
|
+
}
|
|
455
|
+
|
|
448
456
|
.memori-website_assistant-layout--controls .memori-chat--wrapper {
|
|
449
457
|
display: flex;
|
|
450
458
|
min-height: 0;
|
|
451
459
|
flex: 1;
|
|
452
460
|
flex-direction: column;
|
|
453
461
|
padding: 0.75rem;
|
|
462
|
+
box-shadow: none !important;
|
|
463
|
+
border: 0px !important;
|
|
454
464
|
}
|
|
455
465
|
|
|
456
466
|
.memori-website_assistant-layout--controls .memori--start-panel {
|
|
@@ -578,6 +588,14 @@
|
|
|
578
588
|
}
|
|
579
589
|
}
|
|
580
590
|
|
|
591
|
+
@media (max-width: 870px) {
|
|
592
|
+
.memori-website_assistant-layout .memori-header {
|
|
593
|
+
max-width: 64px;
|
|
594
|
+
margin-right: 1rem;
|
|
595
|
+
margin-left: auto;
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
581
599
|
/* ============================================
|
|
582
600
|
ACCESSIBILITY & PERFORMANCE
|
|
583
601
|
============================================ */
|
|
@@ -612,4 +630,4 @@
|
|
|
612
630
|
height: 48px;
|
|
613
631
|
padding: 0.875rem;
|
|
614
632
|
}
|
|
615
|
-
}
|
|
633
|
+
}
|
package/esm/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.
|
|
1
|
+
export declare const version = "8.17.1";
|
package/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '8.
|
|
1
|
+
export const version = '8.17.1';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
.memori-website_assistant--trigger {
|
|
11
11
|
position: fixed;
|
|
12
|
-
z-index:
|
|
12
|
+
z-index: 2147483647;
|
|
13
13
|
right: 0px;
|
|
14
14
|
bottom: 0px;
|
|
15
15
|
display: flex;
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
border-radius: 50%;
|
|
57
57
|
-webkit-backdrop-filter: blur(10px);
|
|
58
58
|
backdrop-filter: blur(10px);
|
|
59
|
-
background: transparent !important;
|
|
60
59
|
box-shadow: none !important;
|
|
61
60
|
cursor: pointer;
|
|
62
61
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -145,13 +144,14 @@
|
|
|
145
144
|
|
|
146
145
|
.memori-widget.memori-layout-website_assistant {
|
|
147
146
|
position: relative;
|
|
148
|
-
z-index:
|
|
147
|
+
z-index: 2147483647;
|
|
149
148
|
font-size: 14px;
|
|
150
149
|
}
|
|
151
150
|
|
|
152
151
|
.memori-widget.memori-layout-website_assistant .memori-website_assistant--collapsed,
|
|
153
152
|
.memori-widget.memori-layout-website_assistant .memori-website_assistant--expanded {
|
|
154
153
|
position: fixed;
|
|
154
|
+
z-index: 2147483647;
|
|
155
155
|
right: 0;
|
|
156
156
|
bottom: 0;
|
|
157
157
|
overflow: hidden;
|
|
@@ -445,12 +445,22 @@
|
|
|
445
445
|
margin: 0 auto;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
+
.memori-wesite_assistant-layout--controls .memori--start-panel {
|
|
449
|
+
flex: 1;
|
|
450
|
+
align-self: center;
|
|
451
|
+
align-content: center;
|
|
452
|
+
border: 0px;
|
|
453
|
+
box-shadow: none !important;
|
|
454
|
+
}
|
|
455
|
+
|
|
448
456
|
.memori-website_assistant-layout--controls .memori-chat--wrapper {
|
|
449
457
|
display: flex;
|
|
450
458
|
min-height: 0;
|
|
451
459
|
flex: 1;
|
|
452
460
|
flex-direction: column;
|
|
453
461
|
padding: 0.75rem;
|
|
462
|
+
box-shadow: none !important;
|
|
463
|
+
border: 0px !important;
|
|
454
464
|
}
|
|
455
465
|
|
|
456
466
|
.memori-website_assistant-layout--controls .memori--start-panel {
|
|
@@ -578,6 +588,14 @@
|
|
|
578
588
|
}
|
|
579
589
|
}
|
|
580
590
|
|
|
591
|
+
@media (max-width: 870px) {
|
|
592
|
+
.memori-website_assistant-layout .memori-header {
|
|
593
|
+
max-width: 64px;
|
|
594
|
+
margin-right: 1rem;
|
|
595
|
+
margin-left: auto;
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
581
599
|
/* ============================================
|
|
582
600
|
ACCESSIBILITY & PERFORMANCE
|
|
583
601
|
============================================ */
|
|
@@ -612,4 +630,4 @@
|
|
|
612
630
|
height: 48px;
|
|
613
631
|
padding: 0.875rem;
|
|
614
632
|
}
|
|
615
|
-
}
|
|
633
|
+
}
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// This file is auto-generated. Do not edit manually.
|
|
2
|
-
export const version = '8.
|
|
2
|
+
export const version = '8.17.1';
|