flameresttable 1.0.107 → 1.0.108
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flameresttable",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.108",
|
|
4
4
|
"main": "./src/plugin.ts",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,38 +12,38 @@
|
|
|
12
12
|
"dev": "vite"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@vuepic/vue-datepicker": "^
|
|
15
|
+
"@vuepic/vue-datepicker": "^11.0.1",
|
|
16
16
|
"flamerest": "^1.0.109",
|
|
17
17
|
"lodash-es": "^4.17.21",
|
|
18
18
|
"pinia": "^2.3.0",
|
|
19
19
|
"pug": "github:FlameArt/pug-tailwind-only",
|
|
20
20
|
"pug-lexer": "github:FlameArt/pug-lexer-only",
|
|
21
|
-
"sass": "^1.83.
|
|
21
|
+
"sass": "^1.83.1",
|
|
22
22
|
"vue": "^3.5.13",
|
|
23
23
|
"vue-router": "^4.5.0",
|
|
24
24
|
"vue-select": "^4.0.0-beta.6",
|
|
25
25
|
"vuetify": "^3.7.6",
|
|
26
|
-
"vuetify-pro-tiptap": "^2.5.
|
|
26
|
+
"vuetify-pro-tiptap": "^2.5.7"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@heroicons/vue": "^2.2.0",
|
|
30
30
|
"@types/lodash-es": "^4.17.12",
|
|
31
31
|
"@types/lodash.merge": "^4.6.9",
|
|
32
|
-
"@types/node": "22.10.
|
|
32
|
+
"@types/node": "22.10.5",
|
|
33
33
|
"@types/vue-select": "^3.16.8",
|
|
34
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
35
|
-
"@typescript-eslint/parser": "^8.
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^8.19.1",
|
|
35
|
+
"@typescript-eslint/parser": "^8.19.1",
|
|
36
36
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
37
37
|
"@volar/vue-language-plugin-pug": "^1.6.5",
|
|
38
38
|
"@vue/compiler-sfc": "^3.5.13",
|
|
39
39
|
"autoprefixer": "^10.4.20",
|
|
40
|
-
"eslint": "^9.
|
|
40
|
+
"eslint": "^9.18.0",
|
|
41
41
|
"eslint-plugin-vue": "^9.32.0",
|
|
42
42
|
"postcss": "^8.4.49",
|
|
43
43
|
"postcss-import": "^16.1.0",
|
|
44
44
|
"tailwindcss": "^3.4.17",
|
|
45
|
-
"typescript": "^5.7.
|
|
46
|
-
"vite": "^6.0.
|
|
45
|
+
"typescript": "^5.7.3",
|
|
46
|
+
"vite": "^6.0.7",
|
|
47
47
|
"vue-tsc": "^2.2.0",
|
|
48
48
|
"vue-universal-modal": "^1.1.4"
|
|
49
49
|
},
|
package/src/Table/Table.vue
CHANGED
|
@@ -199,7 +199,6 @@
|
|
|
199
199
|
|
|
200
200
|
<div class="flex-1 mr-5 w-full flex flex-col self-stretch"
|
|
201
201
|
v-if="Table.columns[column].Popup.popupType === 'text'">
|
|
202
|
-
{{ Table.columns[column].Popup.model }}
|
|
203
202
|
<EditorPopup :value="Table.columns[column].Popup.model" @save="PopupTextSaved" :column="column" :title="Table.columns[column].Popup.title ?? column">
|
|
204
203
|
|
|
205
204
|
</EditorPopup>
|
|
@@ -253,7 +252,7 @@ import '@vuepic/vue-datepicker/dist/main.css';
|
|
|
253
252
|
import { isNumber } from 'lodash';
|
|
254
253
|
import 'vue-select/dist/vue-select.css';
|
|
255
254
|
import TableTasksPanel from './TableTasksPanel.vue';
|
|
256
|
-
import EditorPopup from '
|
|
255
|
+
import EditorPopup from '../components/editor/EditorPopup.vue';
|
|
257
256
|
import { title } from 'process';
|
|
258
257
|
|
|
259
258
|
export default defineComponent({
|