@myissue/vue-website-page-builder 3.3.60 → 3.3.61
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/package.json
CHANGED
|
@@ -12,7 +12,7 @@ const pageBuilderService = getPageBuilder()
|
|
|
12
12
|
<button
|
|
13
13
|
@click="pageBuilderService.toggleTipTapModal(true)"
|
|
14
14
|
type="button"
|
|
15
|
-
class="pbx-
|
|
15
|
+
class="pbx-myPrimaryButton"
|
|
16
16
|
>
|
|
17
17
|
<span class="material-symbols-outlined"> edit </span>
|
|
18
18
|
<span>Edit text and links</span>
|
|
@@ -4,14 +4,11 @@ const unsplashKey = import.meta.env.VITE_UNSPLASH_KEY
|
|
|
4
4
|
import { usePageBuilderModal } from '../composables/usePageBuilderModal'
|
|
5
5
|
import { delay } from '../composables/delay'
|
|
6
6
|
import { preloadImage } from '../composables/preloadImage'
|
|
7
|
-
import { sharedPageBuilderStore } from '../stores/shared-store'
|
|
8
7
|
import { getPageBuilder } from '../composables/builderInstance'
|
|
9
8
|
const pageBuilderService = getPageBuilder()
|
|
10
9
|
|
|
11
10
|
const { closeMediaLibraryModal } = usePageBuilderModal()
|
|
12
11
|
|
|
13
|
-
const pageBuilderStateStore = sharedPageBuilderStore
|
|
14
|
-
|
|
15
12
|
const getIsLoading = ref(false)
|
|
16
13
|
const getIsLoadingImage = ref(false)
|
|
17
14
|
const getSearchTerm = ref('')
|