flameresttable 1.0.113 → 1.0.115
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 +2 -2
- package/src/Table/Table.vue +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flameresttable",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.115",
|
|
4
4
|
"main": "./src/plugin.ts",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,7 +29,7 @@
|
|
|
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.5",
|
|
32
|
+
"@types/node": "^22.10.5",
|
|
33
33
|
"@types/vue-select": "^3.16.8",
|
|
34
34
|
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
|
35
35
|
"@typescript-eslint/parser": "^8.25.0",
|
package/src/Table/Table.vue
CHANGED
|
@@ -235,7 +235,6 @@
|
|
|
235
235
|
import { onMounted, reactive, ref, defineProps } from '@vue/runtime-core'; import type { Ref } from 'vue'; import { storeFile } from "@/store"; import { useRoute, useRouter } from 'vue-router'; import REST, { Rows } from "flamerest"
|
|
236
236
|
|
|
237
237
|
// Иконки
|
|
238
|
-
import { XCircleIcon } from '@icons/24/solid'
|
|
239
238
|
import { computed } from '@vue/reactivity';
|
|
240
239
|
import { Column, IColumn } from './Columns';
|
|
241
240
|
import { defineComponent } from 'vue';
|
|
@@ -253,7 +252,6 @@ import { isNumber } from 'lodash';
|
|
|
253
252
|
import 'vue-select/dist/vue-select.css';
|
|
254
253
|
import TableTasksPanel from './TableTasksPanel.vue';
|
|
255
254
|
import EditorPopup from '../components/editor/EditorPopup.vue';
|
|
256
|
-
import { title } from 'process';
|
|
257
255
|
|
|
258
256
|
export default defineComponent({
|
|
259
257
|
components: { ModalVue, Paginator, Datepicker, TableFilters, TableTasksPanel, EditorPopup },
|