@milaboratories/milaboratories.ui-examples.model 1.0.36 → 1.0.37

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/milaboratories.ui-examples.model",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "Block model",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
package/src/index.ts CHANGED
@@ -92,19 +92,20 @@ export const platforma = BlockModel.create('Heavy')
92
92
  .sections((ctx) => {
93
93
  return [
94
94
  { type: 'link', href: '/', label: 'Icons/Masks' },
95
+ { type: 'link', href: '/form-components', label: 'Form Components' },
95
96
  { type: 'link', href: '/log-view', label: 'PlLogView' },
96
97
  { type: 'link', href: '/modals', label: 'Modals' },
97
98
  { type: 'link', href: '/select-files', label: 'Select Files' },
98
99
  { type: 'link', href: '/inject-env', label: 'Inject env' },
99
100
  { type: 'link', href: '/dropdowns', label: 'Dropdowns' },
100
101
  { type: 'link', href: '/use-watch-fetch', label: 'useWatchFetch' },
101
- { type: 'link', href: '/form-components', label: 'Form Components' },
102
102
  { type: 'link', href: '/typography', label: 'Typography' },
103
103
  { type: 'link', href: '/ag-grid-vue', label: 'AgGridVue' },
104
104
  { type: 'link', href: '/pl-ag-data-table', label: 'PlAgDataTable' },
105
105
  { type: 'link', href: '/errors', label: 'Errors' },
106
106
  { type: 'link', href: '/text-fields', label: 'PlTextField' },
107
- { type: 'link', href: '/tabs', label: 'PlTabs' }
107
+ { type: 'link', href: '/tabs', label: 'PlTabs' },
108
+ { type: 'link', href: '/drafts', label: 'Drafts' },
108
109
  ];
109
110
  })
110
111