@omnia/tooling-vue 8.0.24-vnext → 8.0.25-vnext

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.
@@ -98,6 +98,9 @@ import wcbeb97ee8f2a94d1b86980b1736f82e20 from '../../../client/fx/ux/oxide/btnt
98
98
  import wcffc99f8d26ae4caf84ece7c13463b6c5 from '../../../client/fx/ux/oxide/card/Card';
99
99
  import wccd6b8d55c18546d4b1d8c4d9e1d89106 from '../../../client/fx/ux/oxide/checkbox/Checkbox';
100
100
  import wccdd8102dec85424da156ca516659956e from '../../../client/fx/ux/oxide/column/Column';
101
+ import wc86e7df28b98d4594be5ab9a3f64dd0cc from '../../../client/fx/ux/oxide/datatable/DataTable';
102
+ import wc900eaa8c89a9411b93b657be6feaa992 from '../../../client/fx/ux/oxide/datatable/DataTableServer';
103
+ import wc6013b19c722b4bb781b2380b969f3c77 from '../../../client/fx/ux/oxide/datatable/DataTableVirtual';
101
104
  import wc2ae3cf98c95443a199d44705ad87d994 from '../../../client/fx/ux/oxide/dialog/Dialog';
102
105
  import wcd1a4678669114d9293f42409a1080756 from '../../../client/fx/ux/oxide/divider/Divider';
103
106
  import wc1f535ab2cf154914a9bb104aa46d1e2a from '../../../client/fx/ux/oxide/expansionpanel/ExpansionPanels';
@@ -311,6 +314,9 @@ declare global {
311
314
  "o-card": typeof wcffc99f8d26ae4caf84ece7c13463b6c5.propsDefinition & VueComponentBaseProps;
312
315
  "o-checkbox": typeof wccd6b8d55c18546d4b1d8c4d9e1d89106.propsDefinition & VueComponentBaseProps;
313
316
  "o-col": typeof wccdd8102dec85424da156ca516659956e.propsDefinition & VueComponentBaseProps;
317
+ "o-data-table": typeof wc86e7df28b98d4594be5ab9a3f64dd0cc.propsDefinition & VueComponentBaseProps;
318
+ "o-data-table-server": typeof wc900eaa8c89a9411b93b657be6feaa992.propsDefinition & VueComponentBaseProps;
319
+ "o-data-table-virtual": typeof wc6013b19c722b4bb781b2380b969f3c77.propsDefinition & VueComponentBaseProps;
314
320
  "o-dialog": typeof wc2ae3cf98c95443a199d44705ad87d994.propsDefinition & VueComponentBaseProps;
315
321
  "o-divider": typeof wcd1a4678669114d9293f42409a1080756.propsDefinition & VueComponentBaseProps;
316
322
  "o-expansion-panels": typeof wc1f535ab2cf154914a9bb104aa46d1e2a.propsDefinition & VueComponentBaseProps;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const fx_1 = require("@omnia/fx");
4
4
  (0, fx_1.extendApi)(api => api.fx.docs.registrations, api => {
5
- const registrations = { "o-btn": { "emits": {}, "models": {}, "props": { "icon": { "type": "ButtonIconOptions", "description": "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button" }, "text": { "type": "string", "description": "Specifies the text to display on the button" }, "variant": { "type": "ButtonVariant", "description": "Applies a distinct style to the component. Prominent should be used for call to action. Toolbar will create a transparent button to be used in toolbars." }, "overrides": { "type": "object", "description": "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button" }, "preset": { "type": "ButtonPreset", "description": "Sets the default values of the button to the specified preset. Preffered way of using the o-btn" }, "tooltip": { "type": "ButtonTooltipOptions", "description": "Sets tooltip to display when hovering the button" }, "size": { "type": "SizeType", "description": "Sets the size of the button" }, "grouped": { "type": "boolean", "description": "Adds spacing to the left of the button to group it with other buttons. Should be used when more than one button is displayed." }, "toned": { "type": "boolean", "description": "Applies a toned background to the button. Should be used when the button is displayed on a colored background." }, "active": { "type": "boolean", "description": "Controls the active state of the item. This is typically used to highlight the component." }, "disabled": { "type": "boolean", "description": "Removes the ability to click or target the component." } }, "slots": {} }, "o-menu": { "emits": {}, "models": {}, "props": {}, "slots": { "activator": { "type": "() => VNodeChild", "description": "activator" } } }, "o-select": { "emits": { "click:button": { "type": "(value:any) => true", "description": "Emit a click event." } }, "models": {}, "props": {}, "slots": { "item": { "type": "(item:RenderingItem, index:Number) => VNodeChild", "description": "Define a custom item appearance" }, "selection": { "type": "(item:RenderingItem, index:Number) => VNodeChild", "description": "Define a custom selection appearance" } } }, "o-treeview": { "emits": {}, "models": {}, "props": { "items": { "type": "Array", "description": "An array of items to display in the treeview. Is hierarchical and can contain children. Can also control expanded or not." }, "expandOnSelection": { "type": "boolean", "description": "Defines if the treeview should expand when the title row is selected. Default is false and the arrow has to be clicked to expand the children." }, "multiple": { "type": "boolean", "description": "Changes select to multiple. Default is false." } }, "slots": { "itemAction": { "type": "(item:TreeViewItem, index:Number) => VNodeChild", "description": "Define a custom item action appearance" } } } };
5
+ const registrations = { "o-btn": { "emits": {}, "models": {}, "props": { "icon": { "type": "ButtonIconOptions", "description": "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button" }, "text": { "type": "string", "description": "Specifies the text to display on the button" }, "variant": { "type": "ButtonVariant", "description": "Applies a distinct style to the component. Prominent should be used for call to action. Toolbar will create a transparent button to be used in toolbars." }, "overrides": { "type": "object", "description": "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button" }, "preset": { "type": "ButtonPreset", "description": "Sets the default values of the button to the specified preset. Preffered way of using the o-btn" }, "tooltip": { "type": "ButtonTooltipOptions", "description": "Sets tooltip to display when hovering the button" }, "size": { "type": "SizeType", "description": "Sets the size of the button" }, "grouped": { "type": "boolean", "description": "Adds spacing to the left of the button to group it with other buttons. Should be used when more than one button is displayed." }, "toned": { "type": "boolean", "description": "Applies a toned background to the button. Should be used when the button is displayed on a colored background." }, "active": { "type": "boolean", "description": "Controls the active state of the item. This is typically used to highlight the component." }, "loading": { "type": "boolean", "description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar." }, "disabled": { "type": "boolean", "description": "Removes the ability to click or target the component." } }, "slots": {} }, "o-menu": { "emits": {}, "models": {}, "props": {}, "slots": { "activator": { "type": "() => VNodeChild", "description": "activator" } } }, "o-select": { "emits": { "click:button": { "type": "(value:any) => true", "description": "Emit a click event." } }, "models": {}, "props": {}, "slots": { "item": { "type": "(item:RenderingItem, index:Number) => VNodeChild", "description": "Define a custom item appearance" }, "selection": { "type": "(item:RenderingItem, index:Number) => VNodeChild", "description": "Define a custom selection appearance" } } }, "o-treeview": { "emits": {}, "models": {}, "props": { "items": { "type": "Array", "description": "An array of items to display in the treeview. Is hierarchical and can contain children. Can also control expanded or not." }, "expandOnSelection": { "type": "boolean", "description": "Defines if the treeview should expand when the title row is selected. Default is false and the arrow has to be clicked to expand the children." }, "multiple": { "type": "boolean", "description": "Changes select to multiple. Default is false." } }, "slots": { "itemAction": { "type": "(item:TreeViewItem, index:Number) => VNodeChild", "description": "Define a custom item action appearance" } } } };
6
6
  Object.keys(registrations).forEach(elementName => {
7
7
  api.register(elementName, registrations[elementName]);
8
8
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/tooling-vue",
3
3
  "license": "MIT",
4
- "version": "8.0.24-vnext",
4
+ "version": "8.0.25-vnext",
5
5
  "description": "Used to bundle and serve manifests web component that build on Vue framework.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -19,8 +19,8 @@
19
19
  ],
20
20
  "author": "Precio Fishbone",
21
21
  "dependencies": {
22
- "@omnia/fx-models": "8.0.24-vnext",
23
- "@omnia/tooling-composers": "8.0.24-vnext",
22
+ "@omnia/fx-models": "8.0.25-vnext",
23
+ "@omnia/tooling-composers": "8.0.25-vnext",
24
24
  "@types/mousetrap": "1.5.34",
25
25
  "@types/quill": "1.3.6",
26
26
  "@types/zepto": "1.0.29",