@milaboratories/milaboratories.ui-examples.model 1.1.31 → 1.1.32

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.
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/opt/actions-runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @milaboratories/milaboratories.ui-examples.model@1.1.31 build /opt/actions-runner/_work/platforma/platforma/etc/blocks/ui-examples/model
3
+ > @milaboratories/milaboratories.ui-examples.model@1.1.32 build /opt/actions-runner/_work/platforma/platforma/etc/blocks/ui-examples/model
4
4
  > tsup && vite build && block-tools build-model
5
5
 
6
6
  CLI Building entry: src/index.ts
@@ -11,21 +11,21 @@
11
11
  CLI Cleaning output folder
12
12
  CJS Build start
13
13
  ESM Build start
14
- ESM dist/index.js 4.29 KB
15
- ESM dist/index.js.map 10.11 KB
16
- ESM ⚡️ Build success in 155ms
17
- CJS dist/index.cjs 4.39 KB
18
- CJS dist/index.cjs.map 10.15 KB
19
- CJS ⚡️ Build success in 155ms
14
+ ESM dist/index.js 4.74 KB
15
+ ESM dist/index.js.map 11.23 KB
16
+ ESM ⚡️ Build success in 76ms
17
+ CJS dist/index.cjs 4.88 KB
18
+ CJS dist/index.cjs.map 11.28 KB
19
+ CJS ⚡️ Build success in 76ms
20
20
  DTS Build start
21
- DTS ⚡️ Build success in 1695ms
22
- DTS dist/index.d.cts 1.82 KB
23
- DTS dist/index.d.ts 1.82 KB
21
+ DTS ⚡️ Build success in 748ms
22
+ DTS dist/index.d.cts 2.40 KB
23
+ DTS dist/index.d.ts 2.40 KB
24
24
  vite v5.4.11 building for production...
25
25
  transforming...
26
26
  ✓ 6 modules transformed.
27
27
  rendering chunks...
28
28
  computing gzip size...
29
- dist/bundle.js 172.32 kB │ gzip: 32.94 kB │ map: 369.32 kB
30
- dist/bundle.js 184.29 kB │ gzip: 33.55 kB │ map: 370.69 kB
31
- ✓ built in 768ms
29
+ dist/bundle.js 172.88 kB │ gzip: 33.08 kB │ map: 370.29 kB
30
+ dist/bundle.js 184.89 kB │ gzip: 33.69 kB │ map: 371.68 kB
31
+ ✓ built in 395ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @milaboratories/milaboratories.ui-examples.model
2
2
 
3
+ ## 1.1.32
4
+
5
+ ### Patch Changes
6
+
7
+ - da875e0: [sdl/ui-vue] AgGridVue Builder
8
+
3
9
  ## 1.1.31
4
10
 
5
11
  ### Patch Changes
package/dist/bundle.js CHANGED
@@ -5603,6 +5603,9 @@
5603
5603
  sorting: ((m$1 = n == null ? void 0 : n.pTableParams) == null ? void 0 : m$1.sorting) ?? []
5604
5604
  });
5605
5605
  }
5606
+ const ImportFileHandleSchema = z$2.string().optional().refine(
5607
+ (_a) => true
5608
+ );
5606
5609
  function* range(from, to, step = 1) {
5607
5610
  for (let i = from; i < to; i += step) {
5608
5611
  yield i;
@@ -5620,9 +5623,10 @@
5620
5623
  }
5621
5624
  const $BlockArgs = z$2.object({
5622
5625
  tableNumRows: z$2.number().default(100),
5623
- numbers: z$2.array(z$2.coerce.number())
5626
+ numbers: z$2.array(z$2.coerce.number()),
5627
+ handles: z$2.array(ImportFileHandleSchema)
5624
5628
  });
5625
- const platforma = _.create("Heavy").withArgs({ numbers: [1, 2, 3, 4], tableNumRows: 100 }).withUiState({ dataTableState: void 0, dynamicSections: [] }).argsValid((ctx) => {
5629
+ const platforma = _.create("Heavy").withArgs({ numbers: [1, 2, 3, 4], tableNumRows: 100, handles: [] }).withUiState({ dataTableState: void 0, dynamicSections: [] }).argsValid((ctx) => {
5626
5630
  if (ctx.args.numbers.length === 5) {
5627
5631
  throw new Error("argsValid: test error");
5628
5632
  }
@@ -5630,6 +5634,11 @@
5630
5634
  }).output("numbers", (ctx) => {
5631
5635
  var _a, _b;
5632
5636
  return (_b = (_a = ctx.outputs) == null ? void 0 : _a.resolve("numbers")) == null ? void 0 : _b.getDataAsJson();
5637
+ }).output("progresses", (ctx) => {
5638
+ var _a;
5639
+ const m2 = (_a = ctx.outputs) == null ? void 0 : _a.resolve("progresses");
5640
+ const progresses = m2 == null ? void 0 : m2.mapFields((name, val) => [name, val == null ? void 0 : val.getImportProgress()]);
5641
+ return Object.fromEntries(progresses ?? []);
5633
5642
  }).output("pt", (ctx) => {
5634
5643
  var _a, _b, _c, _d, _e2;
5635
5644
  if (!((_c = (_b = (_a = ctx.uiState) == null ? void 0 : _a.dataTableState) == null ? void 0 : _b.tableState.pTableParams) == null ? void 0 : _c.filters)) return void 0;
@@ -5709,6 +5718,7 @@
5709
5718
  { type: "link", href: "/use-watch-fetch", label: "useWatchFetch" },
5710
5719
  { type: "link", href: "/typography", label: "Typography" },
5711
5720
  { type: "link", href: "/ag-grid-vue", label: "AgGridVue" },
5721
+ { type: "link", href: "/ag-grid-vue-with-builder", label: "AgGridVue with builder" },
5712
5722
  { type: "link", href: "/pl-ag-data-table", label: "PlAgDataTable" },
5713
5723
  { type: "link", href: "/pl-splash-page", label: "PlSplashPage" },
5714
5724
  { type: "link", href: "/errors", label: "Errors" },
@@ -5733,6 +5743,7 @@
5733
5743
  ];
5734
5744
  }).done();
5735
5745
  exports2.$BlockArgs = $BlockArgs;
5746
+ exports2.ImportFileHandleSchema = ImportFileHandleSchema;
5736
5747
  exports2.platforma = platforma;
5737
5748
  exports2.range = range;
5738
5749
  exports2.times = times;