@zipify/wysiwyg 3.5.0-9 → 3.5.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/cli.js +1 -1
- package/dist/wysiwyg.css +9 -14
- package/dist/wysiwyg.mjs +534 -662
- package/example/ExampleApp.vue +1 -1
- package/example/{aiComponent → ai-component}/AiComponent.vue +0 -15
- package/lib/components/base/Modal.vue +1 -7
- package/lib/components/base/composables/useModalToggler.js +4 -8
- package/lib/components/toolbar/controls/index.js +0 -1
- package/lib/components/toolbar/layouts/ToolbarDesktop.vue +2 -4
- package/lib/components/toolbar/layouts/ToolbarMobile.vue +0 -12
- package/package.json +1 -1
- package/lib/assets/icons/sparkles.svg +0 -3
- package/lib/components/toolbar/controls/AiControl.vue +0 -80
package/dist/wysiwyg.css
CHANGED
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
display: none;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
|
-
.zw-modal[data-v-
|
|
339
|
+
.zw-modal[data-v-4818ede9] {
|
|
340
340
|
border-radius: 2px;
|
|
341
341
|
box-shadow: 0 0 4px rgba(var(--zw-color-black), 0.3);
|
|
342
342
|
background-color: rgb(var(--zw-color-n15));
|
|
@@ -346,27 +346,27 @@
|
|
|
346
346
|
position: fixed;
|
|
347
347
|
will-change: transform;
|
|
348
348
|
}
|
|
349
|
-
.zw-modal--enter-active[data-v-
|
|
349
|
+
.zw-modal--enter-active[data-v-4818ede9] {
|
|
350
350
|
transition: opacity 0.15s ease-out;
|
|
351
351
|
}
|
|
352
|
-
.zw-modal--enter[data-v-
|
|
353
|
-
.zw-modal--leave-to[data-v-
|
|
352
|
+
.zw-modal--enter[data-v-4818ede9],
|
|
353
|
+
.zw-modal--leave-to[data-v-4818ede9] {
|
|
354
354
|
opacity: 0;
|
|
355
355
|
}
|
|
356
|
-
.zw-modal--leave-active[data-v-
|
|
356
|
+
.zw-modal--leave-active[data-v-4818ede9] {
|
|
357
357
|
transition: opacity 0.1s ease-in;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
/* Scrollbar overrides in modal */
|
|
361
|
-
.zw-modal[data-v-
|
|
362
|
-
.zw-modal[data-v-
|
|
361
|
+
.zw-modal[data-v-4818ede9] .simplebar-offset,
|
|
362
|
+
.zw-modal[data-v-4818ede9] .simplebar-mask {
|
|
363
363
|
position: initial;
|
|
364
364
|
}
|
|
365
|
-
.zw-modal[data-v-
|
|
365
|
+
.zw-modal[data-v-4818ede9] .simplebar-content {
|
|
366
366
|
max-height: var(--zw-modal-max-height);
|
|
367
367
|
padding: 0 !important;
|
|
368
368
|
}
|
|
369
|
-
.zw-modal[data-v-
|
|
369
|
+
.zw-modal[data-v-4818ede9] .simplebar-content-wrapper {
|
|
370
370
|
overscroll-behavior: contain;
|
|
371
371
|
}
|
|
372
372
|
|
|
@@ -639,11 +639,6 @@
|
|
|
639
639
|
width: 234px;
|
|
640
640
|
}
|
|
641
641
|
|
|
642
|
-
.zw-ai-control__caption[data-v-37f3718a] {
|
|
643
|
-
padding-left: var(--zw-offset-xxs);
|
|
644
|
-
padding-right: var(--zw-offset-xs);
|
|
645
|
-
}
|
|
646
|
-
|
|
647
642
|
.zw-toolbar[data-v-09336b0a] {
|
|
648
643
|
border: 1px solid rgba(var(--zw-color-white), 0.2);
|
|
649
644
|
border-radius: 2px;
|