@live-change/wysiwyg-frontend 0.9.32 → 0.9.33

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.
@@ -59,7 +59,7 @@
59
59
  "attrs": {
60
60
  "is": "card",
61
61
  "attrs": {
62
- "class": "surface-card px-3 shadow-2 w-full f p-2"
62
+ "class": "bg-surface-0 dark:bg-surface-900 px-4 shadow w-full f p-2"
63
63
  }
64
64
  },
65
65
  "content": [
@@ -97,7 +97,7 @@
97
97
  "attrs": {
98
98
  "is": "card",
99
99
  "attrs": {
100
- "class": "surface-card py-1 px-3 shadow-2 w-full"
100
+ "class": "bg-surface-0 dark:bg-surface-900 py-1 px-4 shadow w-full"
101
101
  }
102
102
  },
103
103
  "content": [
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div>
3
- <div class="grid w-full">
3
+ <div class="grid grid-cols-12 gap-4 w-full">
4
4
  <div class="col relative">
5
5
  <Editor v-model="content" :config="contentConfig" />
6
6
  </div>
@@ -2,49 +2,49 @@
2
2
  <div class="surface-overlay py-3 px-6 shadow-2 flex align-items-center justify-content-between
3
3
  relative md:sticky top-0"
4
4
  style="min-height: 80px; z-index: 10" key="navbar">
5
- <img src="/images/logo.svg" alt="Image" height="40" class="mr-0 lg:mr-6">
6
- <a v-ripple class="cursor-pointer block lg:hidden text-700 p-ripple"
7
- v-styleclass="{ selector: '@next', enterClass: 'hidden', leaveToClass: 'hidden', hideOnOutsideClick: true }">
5
+ <img src="/images/logo.svg" alt="Image" height="40" class="mr-0 lg:mr-12">
6
+ <a v-ripple class="cursor-pointer block lg:hidden text-surface-700 dark:text-surface-100 p-ripple"
7
+ v-styleclass="{ selector: '@next', enterFromClass: 'hidden', leaveToClass: 'hidden', hideOnOutsideClick: true }">
8
8
  <i class="pi pi-bars text-4xl"></i>
9
9
  </a>
10
- <div class="align-items-center flex-grow-1 justify-content-between hidden lg:flex absolute lg:static w-full surface-overlay left-0 top-100 z-1 shadow-2 lg:shadow-none">
11
- <ul class="list-none p-0 m-0 flex lg:align-items-center select-none flex-column lg:flex-row">
10
+ <div class="items-center grow justify-between hidden lg:flex absolute lg:static w-full bg-surface-0 dark:bg-surface-900 left-0 top-full z-10 shadow lg:shadow-none">
11
+ <ul class="list-none p-0 m-0 flex lg:items-center select-none flex-col lg:flex-row">
12
12
  <li>
13
- <a v-ripple class="flex px-6 p-3 lg:px-3 lg:py-2 align-items-center text-600 hover:text-900 hover:surface-100 font-medium border-round cursor-pointer transition-colors transition-duration-150 p-ripple">
13
+ <a v-ripple class="flex px-12 p-4 lg:px-4 lg:py-2 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 font-medium rounded-border cursor-pointer transition-colors duration-150 p-ripple">
14
14
  <i class="pi pi-home mr-2"></i>
15
15
  <span>Home</span>
16
16
  </a>
17
17
  </li>
18
18
  <li class="lg:relative">
19
- <a v-ripple class="flex px-6 p-3 lg:px-3 lg:py-2 align-items-center text-600 hover:text-900 hover:surface-100 font-medium border-round cursor-pointer transition-colors transition-duration-150 p-ripple"
20
- v-styleclass="{ selector: '@next', enterClass: 'hidden', enterActiveClass: 'scalein', leaveToClass: 'hidden', leaveActiveClass: 'fadeout', hideOnOutsideClick: true }">
19
+ <a v-ripple class="flex px-12 p-4 lg:px-4 lg:py-2 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 font-medium rounded-border cursor-pointer transition-colors duration-150 p-ripple"
20
+ v-styleclass="{ selector: '@next', enterFromClass: 'hidden', enterActiveClass: 'scalein', leaveToClass: 'hidden', leaveActiveClass: 'fadeout', hideOnOutsideClick: true }">
21
21
  <i class="pi pi-users mr-2"></i>
22
22
  <span>Customers</span>
23
- <i class="pi pi-angle-down ml-auto lg:ml-3"></i>
23
+ <i class="pi pi-angle-down ml-auto lg:ml-4"></i>
24
24
  </a>
25
- <ul class="list-none py-3 px-6 m-0 lg:px-0 lg:py-0 border-round shadow-0 lg:shadow-2 lg:border-1 border-50 lg:absolute surface-overlay hidden origin-top w-full lg:w-15rem cursor-pointer">
25
+ <ul class="list-none py-4 px-12 m-0 lg:px-0 lg:py-0 rounded-border shadow-0 lg:shadow lg:border border-surface-50 dark:border-surface-800 lg:absolute bg-surface-0 dark:bg-surface-900 hidden origin-top w-full lg:w-60 cursor-pointer">
26
26
  <li>
27
- <a v-ripple class="flex p-3 align-items-center text-600 hover:text-900 hover:surface-100 transition-colors transition-duration-150 p-ripple">
27
+ <a v-ripple class="flex p-4 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 transition-colors duration-150 p-ripple">
28
28
  <i class="pi pi-user-plus mr-2"></i>
29
29
  <span class="font-medium">Add New</span>
30
30
  </a>
31
31
  </li>
32
32
  <li class="relative">
33
- <a v-ripple class="flex p-3 align-items-center text-600 hover:text-900 hover:surface-100 transition-colors transition-duration-150 p-ripple"
34
- v-styleclass="{ selector: '@next', enterClass: 'hidden', enterActiveClass: 'scalein', leaveToClass: 'hidden', leaveActiveClass: 'fadeout', hideOnOutsideClick: true }">
33
+ <a v-ripple class="flex p-4 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 transition-colors duration-150 p-ripple"
34
+ v-styleclass="{ selector: '@next', enterFromClass: 'hidden', enterActiveClass: 'scalein', leaveToClass: 'hidden', leaveActiveClass: 'fadeout', hideOnOutsideClick: true }">
35
35
  <i class="pi pi-search mr-2"></i>
36
36
  <span class="font-medium">Search</span>
37
37
  <i class="pi pi-angle-down ml-auto lg:-rotate-90"></i>
38
38
  </a>
39
- <ul class="list-none py-3 pl-3 m-0 lg:px-0 lg:py-0 border-round shadow-0 lg:shadow-2 lg:border-1 border-50 lg:absolute surface-overlay hidden origin-top w-full lg:w-15rem cursor-pointer left-100 top-0">
39
+ <ul class="list-none py-4 pl-4 m-0 lg:px-0 lg:py-0 rounded-border shadow-0 lg:shadow lg:border border-surface-50 dark:border-surface-800 lg:absolute bg-surface-0 dark:bg-surface-900 hidden origin-top w-full lg:w-60 cursor-pointer left-full top-0">
40
40
  <li>
41
- <a v-ripple class="flex p-3 align-items-center text-600 hover:text-900 hover:surface-100 transition-colors transition-duration-150 p-ripple">
41
+ <a v-ripple class="flex p-4 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 transition-colors duration-150 p-ripple">
42
42
  <i class="pi pi-shopping-cart mr-2"></i>
43
43
  <span class="font-medium">Purchases</span>
44
44
  </a>
45
45
  </li>
46
46
  <li class="relative">
47
- <a v-ripple class="flex p-3 align-items-center text-600 hover:text-900 hover:surface-100 transition-colors transition-duration-150 p-ripple">
47
+ <a v-ripple class="flex p-4 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 transition-colors duration-150 p-ripple">
48
48
  <i class="pi pi-comments mr-2"></i>
49
49
  <span class="font-medium">Messages</span>
50
50
  </a>
@@ -54,21 +54,21 @@
54
54
  </ul>
55
55
  </li>
56
56
  <li>
57
- <a v-ripple class="flex px-6 p-3 lg:px-3 lg:py-2 align-items-center text-600 hover:text-900 hover:surface-100 font-medium border-round cursor-pointer transition-colors transition-duration-150 p-ripple">
57
+ <a v-ripple class="flex px-12 p-4 lg:px-4 lg:py-2 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 font-medium rounded-border cursor-pointer transition-colors duration-150 p-ripple">
58
58
  <i class="pi pi-calendar mr-2"></i>
59
59
  <span>Calendar</span>
60
60
  </a>
61
61
  </li>
62
62
  <li>
63
- <a v-ripple class="flex px-6 p-3 lg:px-3 lg:py-2 align-items-center text-600 hover:text-900 hover:surface-100 font-medium border-round cursor-pointer transition-colors transition-duration-150 p-ripple">
63
+ <a v-ripple class="flex px-12 p-4 lg:px-4 lg:py-2 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 font-medium rounded-border cursor-pointer transition-colors duration-150 p-ripple">
64
64
  <i class="pi pi-chart-line mr-2"></i>
65
65
  <span>Stats</span>
66
66
  </a>
67
67
  </li>
68
68
  </ul>
69
- <ul class="list-none p-0 m-0 flex lg:align-items-center select-none flex-column lg:flex-row border-top-1 surface-border lg:border-top-none">
69
+ <ul class="list-none p-0 m-0 flex lg:items-center select-none flex-col lg:flex-row border-t border-surface lg:border-t-0">
70
70
  <li>
71
- <a v-ripple class="flex px-6 p-3 lg:px-3 lg:py-2 align-items-center text-600 hover:text-900 hover:surface-100 font-medium border-round cursor-pointer transition-colors transition-duration-150 p-ripple">
71
+ <a v-ripple class="flex px-12 p-4 lg:px-4 lg:py-2 items-center text-surface-600 dark:text-surface-200 hover:text-surface-900 dark:hover:text-surface-0 hover:bg-surface-100 dark:hover:bg-surface-700 font-medium rounded-border cursor-pointer transition-colors duration-150 p-ripple">
72
72
  <i class="pi pi-inbox text-base lg:text-2xl mr-2 lg:mr-0"></i>
73
73
  <span class="block lg:hidden font-medium">Inbox</span>
74
74
  </a>
@@ -82,12 +82,12 @@
82
82
  <span class="block lg:hidden font-medium">Notifications</span>
83
83
  </a>
84
84
  </li>
85
- <li class="border-top-1 surface-border lg:border-top-none">
86
- <a v-ripple class="flex px-6 p-3 lg:px-3 lg:py-2 align-items-center hover:surface-100 font-medium border-round cursor-pointer transition-colors transition-duration-150 p-ripple">
87
- <img src="/images/empty-user-photo.svg" class="mr-3 lg:mr-0 border-circle" style="width: 28px; height: 28px"/>
85
+ <li class="border-t border-surface lg:border-t-0">
86
+ <a v-ripple class="flex px-12 p-4 lg:px-4 lg:py-2 items-center hover:bg-surface-100 dark:hover:bg-surface-700 font-medium rounded-border cursor-pointer transition-colors duration-150 p-ripple">
87
+ <img src="/images/empty-user-photo.svg" class="mr-4 lg:mr-0 rounded-full" style="width: 28px; height: 28px"/>
88
88
  <div class="block lg:hidden">
89
- <div class="text-900 font-medium">Josephine Lillard</div>
90
- <span class="text-600 font-medium text-sm">Marketing Specialist</span>
89
+ <div class="text-surface-900 dark:text-surface-0 font-medium">Josephine Lillard</div>
90
+ <span class="text-surface-600 dark:text-surface-200 font-medium text-sm">Marketing Specialist</span>
91
91
  </div>
92
92
  </a>
93
93
  </li>
@@ -14,7 +14,7 @@
14
14
  </template>
15
15
  <template #after="scope">
16
16
  <div v-if="componentControl"
17
- class="surface-card p-1 shadow-2 border-round">
17
+ class="bg-surface-0 dark:bg-surface-900 p-1 shadow rounded-border">
18
18
  <StyleEditor v-if="componentControl.type == 'style'" :nodeControl="componentControl.nodeControl"
19
19
  :key="componentControl.uid" />
20
20
  <SettingsEditor v-if="componentControl.type == 'settings'" :nodeControl="componentControl.nodeControl"
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="sticky" style="top: 90px; z-index: 10">
3
3
  <slot name="before" />
4
- <div class="surface-card p-1 shadow-2 border-round flex flex-row flex-wrap">
4
+ <div class="bg-surface-0 dark:bg-surface-900 p-1 shadow rounded-border flex flex-row flex-wrap">
5
5
 
6
6
  <slot name="begin" />
7
7
 
@@ -9,7 +9,7 @@
9
9
  <Button v-if="config.marks.bold" label="B" class="p-button-sm font-bold"
10
10
  :class="{ 'p-button-outlined': !editor.isActive('bold') }"
11
11
  @click="editor.chain().focus().toggleBold().run()" />
12
- <Button v-if="config.marks.italic" label="I" class="p-button-sm font-italic"
12
+ <Button v-if="config.marks.italic" label="I" class="p-button-sm italic"
13
13
  :class="{ 'p-button-outlined': !editor.isActive('italic') }"
14
14
  @click="editor.chain().focus().toggleItalic().run()" />
15
15
  <Button v-if="config.marks.underline" label="U" class="p-button-sm underline"
@@ -116,7 +116,7 @@
116
116
  <LinkEditor :config="config" :editor="editor" />
117
117
  </OverlayPanel>
118
118
 
119
- <!-- <div class="surface-card p-1 shadow-2" style="width: 450px">
119
+ <!-- <div class="bg-surface-0 dark:bg-surface-900 p-1 shadow" style="width: 450px">
120
120
  <h3>components:</h3>
121
121
  <TemplatesMenu :config="config" />
122
122
  </div>-->
@@ -1,14 +1,14 @@
1
1
  <template>
2
- <div class="flex flex-column w-14rem">
2
+ <div class="flex flex-col w-56">
3
3
  <div class="mb-2">
4
4
  <InputText type="text" v-model="linkData.href" placeholder="Href" class="w-full" />
5
5
  </div>
6
- <div class="flex flex-row flex-grow-1">
7
- <InputText type="text" v-model="linkData.target" placeholder="target" class="w-full flex-grow-1" />
6
+ <div class="flex flex-row grow">
7
+ <InputText type="text" v-model="linkData.target" placeholder="target" class="w-full grow" />
8
8
  <Button v-if="!editor.isActive('link')" @click="addLink"
9
- icon="pi pi-plus" class="ml-1 flex-shrink-0" label="Add" />
9
+ icon="pi pi-plus" class="ml-1 shrink-0" label="Add" />
10
10
  <Button v-else @click="removeLink"
11
- icon="pi pi-trash" class="ml-1 flex-shrink-0 p-button-danger" label="Remove" />
11
+ icon="pi pi-trash" class="ml-1 shrink-0 p-button-danger" label="Remove" />
12
12
  </div>
13
13
  </div>
14
14
  </template>
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="flex flex-row flex-wrap ">
3
3
  <div v-for="type in paddingTypes"
4
- class="flex flex-row align-items-center justify-content-start my-1"
4
+ class="flex flex-row items-center justify-start my-1"
5
5
  style="width: 5.6em">
6
6
  <label :for="'padding-'+type" class="mb-0 mr-1">{{ type }}</label>
7
7
  <InputNumber v-if="props.modelValue[type] !== undefined"
@@ -1,23 +1,23 @@
1
1
  <template>
2
2
  <!-- <pre>{{ JSON.stringify(classInfo, null, " ") }}</pre>-->
3
- <div class="flex flex-column flex-wrap w-full">
3
+ <div class="flex flex-col flex-wrap w-full">
4
4
  <div v-if="editingPadding">
5
- <div class="flex flex-row align-items-center mb-2">
6
- <label class="mr-3" style="width: 4em">Padding:</label>
5
+ <div class="flex flex-row items-center mb-2">
6
+ <label class="mr-4" style="width: 4em">Padding:</label>
7
7
  <PaddingEditor :modelValue="classInfo.padding"
8
8
  @update:modelValue="p => handleClassInfoUpdate({ padding: p })" />
9
9
  </div>
10
- <div class="flex flex-row align-items-center">
11
- <label class="mr-3" style="width: 4em">Margin:</label>
10
+ <div class="flex flex-row items-center">
11
+ <label class="mr-4" style="width: 4em">Margin:</label>
12
12
  <PaddingEditor :modelValue="classInfo.margin"
13
13
  @update:modelValue="p => handleClassInfoUpdate({ margin: p })" />
14
14
  </div>
15
15
  </div>
16
- <div class="flex flex-column md:flex-row">
17
- <div class="flex-1 mr-2 flex flex-column">
18
- <div class="flex flex-row align-items-center flex-shrink-0">
19
- <label class="my-2 flex-grow-1">Classes:</label>
20
- <div class="flex flex-row align-items-center mr-4">
16
+ <div class="flex flex-col md:flex-row">
17
+ <div class="flex-1 mr-2 flex flex-col">
18
+ <div class="flex flex-row items-center shrink-0">
19
+ <label class="my-2 grow">Classes:</label>
20
+ <div class="flex flex-row items-center mr-6">
21
21
  <i class="pi pi-arrows-alt" style="font-size: 1.2rem"></i>
22
22
  <InputSwitch v-model="editingPadding" class="ml-2" />
23
23
  </div>
@@ -26,15 +26,15 @@
26
26
  @update:modelValue="l => handleClassInfoUpdate({ list: l })"
27
27
  :separator="/ /" :multiple="true" :suggestions="classSuggestions"
28
28
  @complete="ev => searchClasses(ev)"
29
- class="autocomplete-w-full flex-grow-1" />
29
+ class="autocomplete-w-full grow" />
30
30
  </div>
31
- <div class="flex-1 flex flex-column">
32
- <div class="flex flex-row flex-shrink-0">
33
- <label class="my-2 flex-grow-1">Style:</label>
31
+ <div class="flex-1 flex flex-col">
32
+ <div class="flex flex-row shrink-0">
33
+ <label class="my-2 grow">Style:</label>
34
34
  </div>
35
- <div class="style-editor p-inputtext flex-grow-1" ref="codeMirrorWrapper"></div>
35
+ <div class="style-editor p-inputtext grow" ref="codeMirrorWrapper"></div>
36
36
  <!-- <prism-editor v-if="isMounted"
37
- class="style-editor p-inputtext flex-grow-1" :highlight="highlightCss"
37
+ class="style-editor p-inputtext grow" :highlight="highlightCss"
38
38
  :style="{ height: (nodeStyleLines * 1.35 + 1.1) + 'em' }"
39
39
  :modelValue="nodeStyle" @update:modelValue="handleStyleUpdate"
40
40
  :readonly="false" :line-numbers="nodeStyleLines > 1" />-->
@@ -115,7 +115,7 @@
115
115
  }
116
116
  }
117
117
 
118
- const insertableClasses = ['flex', 'flex-grow-1']
118
+ const insertableClasses = ['flex', 'grow']
119
119
  const nodeClass = computed(() => {
120
120
  console.log("nodeControl", nodeControl.value)
121
121
  return nodeControl.value.attrs.class
@@ -2,17 +2,17 @@
2
2
  <div>
3
3
  <div class="px-2 pb-2">
4
4
  <span class="p-input-icon-left w-full flex">
5
- <i class="pi pi-search flex-shrink-0" />
6
- <InputText type="text" v-model="searchQuery" placeholder="Search" class="flex-grow-1" v-focus />
5
+ <i class="pi pi-search shrink-0" />
6
+ <InputText type="text" v-model="searchQuery" placeholder="Search" class="grow" v-focus />
7
7
  </span>
8
8
  </div>
9
9
  <div class="overflow-auto" style="max-height: 75vh">
10
10
  <!-- <div v-for="i in [1,2,3,4,5,6,7,8,9,10]">-->
11
11
  <div v-for="(template, index) in searchResults" :key="template.name"
12
- class="flex flex-wrap relative cursor-pointer hover:surface-100"
12
+ class="flex flex-wrap relative cursor-pointer hover:bg-surface-100 dark:hover:bg-surface-700"
13
13
  @click="() => emit('selected', template)" >
14
- <div class="w-3 ml-2 mr-2 my-1" style="aspect-ratio: 1/1">
15
- <div class="pointer-events-none w-6 absolute p-1"
14
+ <div class="w-3/12 ml-2 mr-2 my-1" style="aspect-ratio: 1/1">
15
+ <div class="pointer-events-none w-6/12 absolute p-1"
16
16
  style="aspect-ratio: 1/1; transform: scale(0.5); transform-origin: 0 0;">
17
17
  <ContentView :config="config"
18
18
  :content="{ type: 'doc', content: template.content({ preview: true }) }"
@@ -4,7 +4,7 @@
4
4
  ...attrs, class: ['relative', editorClass]
5
5
  }">
6
6
  <node-view-content :class="[editorContentClass]" />
7
- <div class="absolute top-0 right-0 pr-4 max-h-0 align-items-center z-5 edit-buttons ">
7
+ <div class="absolute top-0 right-0 pr-6 max-h-0 items-center z-50 edit-buttons ">
8
8
  <Button icon="pi pi-eye"
9
9
  :class="[
10
10
  'p-button p-button-icon-only p-button-rounded mr-0',
@@ -20,7 +20,7 @@ const templates = [
20
20
  attrs: {
21
21
  is: 'div',
22
22
  attrs: {
23
- class: 'surface-card py-1 px-3 shadow-2'
23
+ class: 'bg-surface-0 dark:bg-surface-900 py-1 px-4 shadow'
24
24
  }
25
25
  },
26
26
  content: preview ? previewContent(this) : initialContent(this)
@@ -45,7 +45,7 @@ const templates = [
45
45
  attrs: {
46
46
  name: 'left',
47
47
  attrs: {
48
- class: preview ? 'w-6' : 'w-12 md:w-6'
48
+ class: preview ? 'w-6/12' : 'w-full md:w-6/12'
49
49
  }
50
50
  },
51
51
  content: preview ? previewContent(this, 'Left') : initialContent(this, 'left')
@@ -55,7 +55,7 @@ const templates = [
55
55
  attrs: {
56
56
  name: 'right',
57
57
  attrs: {
58
- class: preview ? 'w-6' : 'w-12 md:w-6'
58
+ class: preview ? 'w-6/12' : 'w-full md:w-6/12'
59
59
  }
60
60
  },
61
61
  content: preview ? previewContent(this, 'Right') : initialContent(this, 'right')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/wysiwyg-frontend",
3
- "version": "0.9.32",
3
+ "version": "0.9.33",
4
4
  "scripts": {
5
5
  "memDev": "node server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
6
6
  "localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
@@ -27,18 +27,18 @@
27
27
  "@codemirror/language": "6.10.1",
28
28
  "@codemirror/view": "^6.24.1",
29
29
  "@fortawesome/fontawesome-free": "^6.7.2",
30
- "@live-change/cli": "^0.9.32",
31
- "@live-change/dao": "^0.9.32",
32
- "@live-change/dao-vue3": "^0.9.32",
33
- "@live-change/dao-websocket": "^0.9.32",
34
- "@live-change/framework": "^0.9.32",
35
- "@live-change/password-authentication-service": "^0.9.32",
36
- "@live-change/prosemirror-service": "^0.9.32",
37
- "@live-change/secret-code-service": "^0.9.32",
38
- "@live-change/secret-link-service": "^0.9.32",
39
- "@live-change/session-service": "^0.9.32",
40
- "@live-change/vue3-components": "^0.9.32",
41
- "@live-change/vue3-ssr": "^0.9.32",
30
+ "@live-change/cli": "^0.9.33",
31
+ "@live-change/dao": "^0.9.33",
32
+ "@live-change/dao-vue3": "^0.9.33",
33
+ "@live-change/dao-websocket": "^0.9.33",
34
+ "@live-change/framework": "^0.9.33",
35
+ "@live-change/password-authentication-service": "^0.9.33",
36
+ "@live-change/prosemirror-service": "^0.9.33",
37
+ "@live-change/secret-code-service": "^0.9.33",
38
+ "@live-change/secret-link-service": "^0.9.33",
39
+ "@live-change/session-service": "^0.9.33",
40
+ "@live-change/vue3-components": "^0.9.33",
41
+ "@live-change/vue3-ssr": "^0.9.33",
42
42
  "@tiptap/core": "^2.2.4",
43
43
  "@tiptap/extension-blockquote": "^2.2.4",
44
44
  "@tiptap/extension-bold": "^2.2.4",
@@ -81,7 +81,7 @@
81
81
  "vue3-scroll-border": "0.1.6"
82
82
  },
83
83
  "devDependencies": {
84
- "@live-change/codeceptjs-helper": "^0.9.32",
84
+ "@live-change/codeceptjs-helper": "^0.9.33",
85
85
  "codeceptjs": "^3.6.10",
86
86
  "generate-password": "1.7.1",
87
87
  "playwright": "1.49.1",
@@ -92,5 +92,5 @@
92
92
  "author": "Michał Łaszczewski <michal@laszczewski.pl>",
93
93
  "license": "ISC",
94
94
  "description": "",
95
- "gitHead": "41022fc283020e2da3e82aa27274401052d2379a"
95
+ "gitHead": "c6eaa7764dc12b9489b74386b1227b71d0640e09"
96
96
  }