@milaboratories/milaboratories.ui-examples.ui 1.5.30 → 1.5.31
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/.turbo/turbo-build.log +5 -5
- package/.turbo/turbo-type-check.log +2 -2
- package/CHANGELOG.md +8 -0
- package/dist/assets/index-CiEHz9Ae.css +1 -0
- package/dist/assets/{index-Bh4UiDlE.js → index-bWlU807N.js} +107 -107
- package/dist/assets/{index-Bh4UiDlE.js.map → index-bWlU807N.js.map} +1 -1
- package/dist/index.html +2 -2
- package/package.json +8 -8
- package/src/app.ts +25 -25
- package/dist/assets/index-CToU-2p9.css +0 -1
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: data: 'unsafe-eval';">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<script type="module" crossorigin src="./assets/index-
|
|
8
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-bWlU807N.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="./assets/index-CiEHz9Ae.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.5.
|
|
3
|
+
"version": "1.5.31",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"vue": "^3.5.13",
|
|
7
|
-
"@
|
|
8
|
-
"@
|
|
7
|
+
"@platforma-sdk/model": "^1.42.20",
|
|
8
|
+
"@milaboratories/milaboratories.ui-examples.model": "1.2.26"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"typescript": "~5.6.3",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"zod": "~3.23.8",
|
|
14
14
|
"ag-grid-enterprise": "^34.0.2",
|
|
15
15
|
"ag-grid-vue3": "^34.0.2",
|
|
16
|
-
"@milaboratories/build-configs": "1.0.6",
|
|
17
|
-
"@platforma-sdk/ui-vue": "^1.42.20",
|
|
18
16
|
"@milaboratories/ts-configs": "1.0.6",
|
|
19
|
-
"@
|
|
20
|
-
"@milaboratories/ts-builder": "1.0.
|
|
21
|
-
"@milaboratories/
|
|
17
|
+
"@platforma-sdk/ui-vue": "^1.42.21",
|
|
18
|
+
"@milaboratories/ts-builder": "1.0.3",
|
|
19
|
+
"@milaboratories/uikit": "^2.4.4",
|
|
20
|
+
"@milaboratories/helpers": "^1.6.20",
|
|
21
|
+
"@milaboratories/build-configs": "1.0.7"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"dev": "ts-builder serve --target browser",
|
package/src/app.ts
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
+
import { uniqueId } from '@milaboratories/helpers';
|
|
1
2
|
import { platforma } from '@milaboratories/milaboratories.ui-examples.model';
|
|
2
3
|
import { animate, defineApp, makeEaseOut } from '@platforma-sdk/ui-vue';
|
|
3
4
|
import { computed, reactive, ref } from 'vue';
|
|
4
|
-
import
|
|
5
|
-
import ModalsPage from './pages/ModalsPage.vue';
|
|
6
|
-
import InjectEnvPage from './pages/InjectEnvPage.vue';
|
|
7
|
-
import UseWatchFetchPage from './pages/UseWatchFetchPage.vue';
|
|
8
|
-
import TypographyPage from './pages/TypographyPage.vue';
|
|
5
|
+
import AddSectionPage from './pages/AddSectionPage.vue';
|
|
9
6
|
import { AgGridVuePage, AgGridVuePageWithBuilder } from './pages/AgGridVuePage';
|
|
10
|
-
import
|
|
7
|
+
import ButtonsPage from './pages/ButtonsPage.vue';
|
|
8
|
+
import DownloadsPage from './pages/DownloadsPage.vue';
|
|
9
|
+
import DraftsPage from './pages/DraftsPage.vue';
|
|
11
10
|
import ErrorsPage from './pages/ErrorsPage.vue';
|
|
12
|
-
import
|
|
11
|
+
import { FormComponentsPage } from './pages/FormComponentsPage';
|
|
12
|
+
import { HistogramPage } from './pages/HistogramPage';
|
|
13
13
|
import IconsPage from './pages/IconsPage.vue';
|
|
14
|
-
import
|
|
15
|
-
import PlTabsPage from './pages/PlTabsPage.vue';
|
|
16
|
-
import DraftsPage from './pages/DraftsPage.vue';
|
|
14
|
+
import InjectEnvPage from './pages/InjectEnvPage.vue';
|
|
17
15
|
import LayoutPage from './pages/LayoutPage.vue';
|
|
18
|
-
import ButtonsPage from './pages/ButtonsPage.vue';
|
|
19
|
-
import NotificationsPage from './pages/NotificationsPage.vue';
|
|
20
16
|
import LoadersPage from './pages/LoadersPage.vue';
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import { HistogramPage } from './pages/HistogramPage';
|
|
26
|
-
import { StackedBarPage } from './pages/StackedBarPage';
|
|
27
|
-
import PlSplashPage from './pages/PlSplashPage.vue';
|
|
28
|
-
import PlAutocompletePage from './pages/PlAutocompletePage.vue';
|
|
17
|
+
import LogViewPage from './pages/LogViewPage.vue';
|
|
18
|
+
import ModalsPage from './pages/ModalsPage.vue';
|
|
19
|
+
import NotificationsPage from './pages/NotificationsPage.vue';
|
|
20
|
+
import PlAgDataTableV2Page from './pages/PlAgDataTableV2Page.vue';
|
|
29
21
|
import PlAutocompleteMultiPage from './pages/PlAutocompleteMultiPage/index.vue';
|
|
30
|
-
import
|
|
31
|
-
import PlFileInputPage from './pages/PlFileInputPage.vue';
|
|
32
|
-
import PlErrorBoundaryPage from './pages/PlErrorBoundaryPage.vue';
|
|
22
|
+
import PlAutocompletePage from './pages/PlAutocompletePage.vue';
|
|
33
23
|
import PlElementListPage from './pages/PlElementListPage.vue';
|
|
34
|
-
import
|
|
24
|
+
import PlErrorBoundaryPage from './pages/PlErrorBoundaryPage.vue';
|
|
25
|
+
import PlFileInputPage from './pages/PlFileInputPage.vue';
|
|
35
26
|
import PlNumberFieldPage from './pages/PlNumberFieldPage.vue';
|
|
36
|
-
import
|
|
27
|
+
import PlSplashPage from './pages/PlSplashPage.vue';
|
|
28
|
+
import PlTabsPage from './pages/PlTabsPage.vue';
|
|
29
|
+
import PlTextFieldPage from './pages/PlTextFieldPage.vue';
|
|
30
|
+
import RadioPage from './pages/RadioPage.vue';
|
|
31
|
+
import SectionPage from './pages/SectionPage.vue';
|
|
32
|
+
import SelectFilesPage from './pages/SelectFilesPage.vue';
|
|
33
|
+
import { StackedBarPage } from './pages/StackedBarPage';
|
|
34
|
+
import StatePage from './pages/StatePage.vue';
|
|
35
|
+
import TypographyPage from './pages/TypographyPage.vue';
|
|
36
|
+
import UseWatchFetchPage from './pages/UseWatchFetchPage.vue';
|
|
37
37
|
|
|
38
38
|
export const sdkPlugin = defineApp(platforma, (app) => {
|
|
39
39
|
// Additional data
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.content-box[data-v-83f44a06]{background-color:#f7f8fa;display:flex;flex-direction:column;align-items:center;justify-content:center;color:var(--ic-02);border-radius:6px}._inputs_lvlt7_2{display:flex;flex-direction:row;gap:10px}._input_lvlt7_2{flex-grow:1;min-width:100px}._drag-and-drop_lj9h6_2{border:1px solid var(--txt-01);padding:24px;width:600px}._components_lj9h6_8 pre{border:1px solid var(--txt-01);padding:12px;font-weight:bolder;overflow:auto;max-width:50vw;background-color:#eee5}._content_2bvi2_10{display:flex;place-items:center;place-content:center;height:100%;background-color:#eee;color:#fff;font-size:34px;font-weight:700}.test-cell-container{width:300px;height:50px;border:1px solid gray;padding:0;border-radius:1px}._components_14cn3_10 pre,._components_obl5m_2 pre{border:1px solid var(--txt-01);padding:12px;font-weight:bolder;overflow:auto;max-width:50vw;background-color:#eee5}._chip_u5b92_2{width:120px;height:120px;color:#fff}._components_obl5m_2 pre{border:1px solid var(--txt-01);padding:12px;font-weight:bolder;overflow:auto;max-width:50vw;background-color:#eee5}._container_1oob8_2{display:flex;flex-direction:column;gap:8px}._container_1oob8_2 h1{font-size:2rem;line-height:1.5;margin-block-end:16px}._container_1oob8_2 output{margin-block-start:12px}._buttons_1bxae_2{position:sticky;display:flex;flex-direction:row;gap:10px}._button_1bxae_2{display:flex}._dataset_ed5qj_2{display:flex;align-items:center;gap:10px}._components_14cn3_10 pre{border:1px solid var(--txt-01);padding:12px;font-weight:bolder;overflow:auto;max-width:50vw;background-color:#eee5}
|