@platforma-sdk/ui-vue 1.7.9 → 1.7.13
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/CHANGELOG.md +13 -0
- package/dist/lib.js +7 -4
- package/dist/lib.umd.cjs +2 -2
- package/dist/src/components/PlAgDataTable/PlAgDataTable.vue.d.ts +1 -1
- package/dist/src/components/PlAgDataTable/PlAgDataTable.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +17 -17
- package/src/components/BlockLayout.vue +1 -1
- package/src/components/NotFound.vue +1 -1
- package/src/components/PlAgDataTable/PlAgDataTable.vue +1 -1
- package/src/components/PlAgDataTable/ag-theme.css +2 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platforma-sdk/ui-vue",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/lib.umd.cjs",
|
|
6
6
|
"module": "dist/lib.js",
|
|
@@ -19,21 +19,21 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"lru-cache": "^11.0.1",
|
|
22
|
-
"vue": "^3.5.
|
|
22
|
+
"vue": "^3.5.12",
|
|
23
23
|
"canonicalize": "^2.0.0",
|
|
24
|
-
"@ag-grid-community/core": "^32.
|
|
25
|
-
"@ag-grid-community/client-side-row-model": "^32.
|
|
26
|
-
"@ag-grid-community/infinite-row-model": "^32.
|
|
27
|
-
"@ag-grid-community/styles": "^32.
|
|
28
|
-
"@ag-grid-community/vue3": "^32.
|
|
29
|
-
"@ag-grid-community/csv-export": "^32.
|
|
30
|
-
"@ag-grid-enterprise/core": "^32.
|
|
31
|
-
"@ag-grid-enterprise/clipboard": "^32.
|
|
32
|
-
"@ag-grid-enterprise/range-selection": "^32.
|
|
33
|
-
"@ag-grid-enterprise/rich-select": "^32.
|
|
34
|
-
"@ag-grid-enterprise/menu": "^32.
|
|
35
|
-
"@ag-grid-enterprise/excel-export": "^32.
|
|
36
|
-
"@milaboratories/uikit": "^1.2.
|
|
24
|
+
"@ag-grid-community/core": "^32.3.0",
|
|
25
|
+
"@ag-grid-community/client-side-row-model": "^32.3.0",
|
|
26
|
+
"@ag-grid-community/infinite-row-model": "^32.3.0",
|
|
27
|
+
"@ag-grid-community/styles": "^32.3.0",
|
|
28
|
+
"@ag-grid-community/vue3": "^32.3.0",
|
|
29
|
+
"@ag-grid-community/csv-export": "^32.3.0",
|
|
30
|
+
"@ag-grid-enterprise/core": "^32.3.0",
|
|
31
|
+
"@ag-grid-enterprise/clipboard": "^32.3.0",
|
|
32
|
+
"@ag-grid-enterprise/range-selection": "^32.3.0",
|
|
33
|
+
"@ag-grid-enterprise/rich-select": "^32.3.0",
|
|
34
|
+
"@ag-grid-enterprise/menu": "^32.3.0",
|
|
35
|
+
"@ag-grid-enterprise/excel-export": "^32.3.0",
|
|
36
|
+
"@milaboratories/uikit": "^1.2.26",
|
|
37
37
|
"@platforma-sdk/model": "^1.7.9"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"lodash": "^4.17.21",
|
|
53
53
|
"sass": "~1.77.8",
|
|
54
54
|
"typescript": "~5.5.4",
|
|
55
|
-
"vite": "^5.4.
|
|
56
|
-
"vitest": "^2.1.
|
|
55
|
+
"vite": "^5.4.10",
|
|
56
|
+
"vitest": "^2.1.3",
|
|
57
57
|
"vue-tsc": "^2.1.6",
|
|
58
58
|
"zod": "^3.23.8",
|
|
59
59
|
"yarpm": "^1.2.0",
|
|
@@ -22,7 +22,7 @@ const href = computed(() => (sdk.loaded ? sdk.useApp().href : undefined));
|
|
|
22
22
|
const CurrentView = computed(() => {
|
|
23
23
|
if (sdk.loaded) {
|
|
24
24
|
const app = sdk.useApp();
|
|
25
|
-
const pathname = parsePathname(app.navigationState.href);
|
|
25
|
+
const pathname = parsePathname(app.snapshot.navigationState.href);
|
|
26
26
|
return pathname ? app.routes[pathname] : undefined;
|
|
27
27
|
}
|
|
28
28
|
|
|
@@ -15,7 +15,7 @@ const goToMain = () => {
|
|
|
15
15
|
|
|
16
16
|
<template>
|
|
17
17
|
<div class="block__not-found">
|
|
18
|
-
<h1>Not found route: {{ app.navigationState.href }}</h1>
|
|
18
|
+
<h1>Not found route: {{ app.snapshot.navigationState.href }}</h1>
|
|
19
19
|
<PlBtnSecondary @click.stop="goToMain">Return to main page</PlBtnSecondary>
|
|
20
20
|
</div>
|
|
21
21
|
</template>
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<script lang="ts" setup>
|
|
2
|
+
import './ag-theme.css';
|
|
2
3
|
import { ClientSideRowModelModule } from '@ag-grid-community/client-side-row-model';
|
|
3
4
|
import type { GridApi, GridOptions, SortState } from '@ag-grid-community/core';
|
|
4
5
|
import { ModuleRegistry } from '@ag-grid-community/core';
|
|
@@ -12,7 +13,6 @@ import canonicalize from 'canonicalize';
|
|
|
12
13
|
import * as lodash from 'lodash';
|
|
13
14
|
import { computed, ref, shallowRef, toRefs, watch } from 'vue';
|
|
14
15
|
import { useWatchFetch } from '../../lib';
|
|
15
|
-
import './ag-theme.css';
|
|
16
16
|
import PlOverlayLoading from './PlAgOverlayLoading.vue';
|
|
17
17
|
import PlOverlayNoRows from './PlAgOverlayNoRows.vue';
|
|
18
18
|
import { updateXsvGridOptions } from './sources/file-source';
|
|
@@ -4,9 +4,6 @@
|
|
|
4
4
|
* See installation docs at https://www.ag-grid.com/javascript-data-grid/applying-theme-builder-styling-grid/
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400&display=swap');
|
|
8
|
-
|
|
9
|
-
|
|
10
7
|
:where(.ag-root-wrapper, .ag-measurement-container, .ag-apply-theme-variables, .ag-popup) {
|
|
11
8
|
--ag-background-color: var(--ag-inherited-background-color, #FFF);
|
|
12
9
|
--ag-foreground-color: var(--ag-inherited-foreground-color, #181d1f);
|
|
@@ -25,10 +22,10 @@
|
|
|
25
22
|
--ag-pinned-column-border: var(--ag-inherited-pinned-column-border, solid 1px var(--ag-border-color));
|
|
26
23
|
--ag-pinned-row-border: var(--ag-inherited-pinned-row-border, solid 1px var(--ag-border-color));
|
|
27
24
|
--ag-side-panel-border: var(--ag-inherited-side-panel-border, solid 1px var(--ag-border-color));
|
|
28
|
-
--ag-font-family: var(--ag-inherited-font-family, Manrope);
|
|
25
|
+
--ag-font-family: var(--ag-inherited-font-family, var(--font-family-base, Manrope));
|
|
29
26
|
--ag-chrome-background-color: var(--ag-inherited-chrome-background-color, color-mix(in srgb, transparent, var(--ag-foreground-color) 2%));
|
|
30
27
|
--ag-header-background-color: var(--ag-inherited-header-background-color, #F7F8FA);
|
|
31
|
-
--ag-header-font-family:
|
|
28
|
+
--ag-header-font-family: var(--ag-inherited-header-font-family, var(--ag-font-family));
|
|
32
29
|
--ag-header-font-weight: var(--ag-inherited-header-font-weight, 600);
|
|
33
30
|
--ag-header-font-size: var(--ag-inherited-header-font-size, 14px);
|
|
34
31
|
--ag-header-text-color: var(--ag-inherited-header-text-color, #110529);
|