@milaboratories/milaboratories.ui-examples.ui 1.3.26 → 1.3.27

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/dist/index.html CHANGED
@@ -4,8 +4,8 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta http-equiv="Content-Security-Policy" content="script-src 'self' blob:">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <script type="module" crossorigin src="./assets/index-DSAiB3j7.js"></script>
8
- <link rel="stylesheet" crossorigin href="./assets/index-CSH2gGW0.css">
7
+ <script type="module" crossorigin src="./assets/index-Dkhq9G66.js"></script>
8
+ <link rel="stylesheet" crossorigin href="./assets/index-t4yyIvTm.css">
9
9
  </head>
10
10
  <body>
11
11
  <div id="app"></div>
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@milaboratories/milaboratories.ui-examples.ui",
3
- "version": "1.3.26",
3
+ "version": "1.3.27",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "vue": "^3.5.13",
7
- "@platforma-sdk/model": "^1.22.2",
8
- "@milaboratories/milaboratories.ui-examples.model": "1.1.15"
7
+ "@milaboratories/milaboratories.ui-examples.model": "1.1.15",
8
+ "@platforma-sdk/model": "^1.22.2"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@vitejs/plugin-vue": "^5.2.1",
@@ -17,8 +17,8 @@
17
17
  "ag-grid-enterprise": "^33.0.4",
18
18
  "ag-grid-vue3": "^33.0.4",
19
19
  "rollup-plugin-sourcemaps2": "^0.4.3",
20
- "@milaboratories/helpers": "^1.6.11",
21
- "@platforma-sdk/ui-vue": "^1.22.2"
20
+ "@platforma-sdk/ui-vue": "^1.22.16",
21
+ "@milaboratories/helpers": "^1.6.11"
22
22
  },
23
23
  "scripts": {
24
24
  "dev": "vite",
package/src/app.ts CHANGED
@@ -10,6 +10,7 @@ import AgGridVuePage from './pages/AgGridVuePage.vue';
10
10
  import SelectFilesPage from './pages/SelectFilesPage.vue';
11
11
  import ErrorsPage from './pages/ErrorsPage.vue';
12
12
  import PlAgDataTablePage from './pages/PlAgDataTablePage.vue';
13
+ import PlAgOverlayLoadingPage from './pages/PlAgOverlayLoadingPage.vue';
13
14
  import IconsPage from './pages/IconsPage.vue';
14
15
  import PlTextFieldPage from './pages/PlTextFieldPage.vue';
15
16
  import PlTabsPage from './pages/PlTabsPage.vue';
@@ -85,6 +86,7 @@ export const sdkPlugin = defineApp(platforma, (app) => {
85
86
  '/typography': () => TypographyPage,
86
87
  '/ag-grid-vue': () => AgGridVuePage,
87
88
  '/pl-ag-data-table': () => PlAgDataTablePage,
89
+ '/pl-ag-overlay-loading': () => PlAgOverlayLoadingPage,
88
90
  '/select-files': () => SelectFilesPage,
89
91
  '/errors': () => ErrorsPage,
90
92
  '/text-fields': () => PlTextFieldPage,
@@ -230,6 +230,11 @@ const onGridReady = (e: GridReadyEvent) => {
230
230
  </template>
231
231
 
232
232
  <AgGridVue
233
+ :rowSelection="{
234
+ mode: 'multiRow',
235
+ checkboxes: false,
236
+ headerCheckbox: false,
237
+ }"
233
238
  :theme="AgGridTheme"
234
239
  :style="{ height: '100%' }"
235
240
  :row-data="result"
@@ -0,0 +1,12 @@
1
+ <script setup lang="ts">
2
+ import {
3
+ PlBlockPage,
4
+ PlAgOverlayLoading,
5
+ } from '@platforma-sdk/ui-vue';
6
+ </script>
7
+
8
+ <template>
9
+ <PlBlockPage style="max-width: 100%">
10
+ <PlAgOverlayLoading :params="{ notReady: false, message: 'Test' }" />
11
+ </PlBlockPage>
12
+ </template>