@nanoporetech-digital/components-vue 2.16.1 → 3.1.0
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/CHANGELOG.md +25 -0
- package/dist/proxies.js +36 -0
- package/dist/proxies.js.map +1 -1
- package/dist/types/proxies.d.ts +49 -48
- package/dist/types/vue-component-lib/utils.d.ts +4 -4
- package/dist/vetur/attributes.json +114 -6
- package/dist/vetur/tags.json +37 -1
- package/dist/vue-component-lib/utils.js +3 -5
- package/dist/vue-component-lib/utils.js.map +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.1.0](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v3.0.0...v3.1.0) (2022-11-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @nanoporetech-digital/components-vue
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.0.0](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v2.16.1...v3.0.0) (2022-11-16)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **global-nav:** user profile info ([a628633](https://git.oxfordnanolabs.local/Digital/nano-components/commits/a628633334635411f6fad5573cd77ad8f7b31747))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Performance Improvements
|
|
23
|
+
|
|
24
|
+
* clean up non-required fonts ([38012a4](https://git.oxfordnanolabs.local/Digital/nano-components/commits/38012a48d7474da2a7f69a574689315a506038d3))
|
|
25
|
+
* split utilities to separate files to save some bytes ([e9dca75](https://git.oxfordnanolabs.local/Digital/nano-components/commits/e9dca75f78baef56e4cc993ebee81cf5b1ebcc05))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
6
31
|
## [2.16.1](https://git.oxfordnanolabs.local/Digital/nano-components/compare/v2.16.0...v2.16.1) (2022-10-11)
|
|
7
32
|
|
|
8
33
|
**Note:** Version bump only for package @nanoporetech-digital/components-vue
|
package/dist/proxies.js
CHANGED
|
@@ -219,6 +219,7 @@ export const NanoDropdown = /*@__PURE__*/ defineContainer('nano-dropdown', undef
|
|
|
219
219
|
'skidding',
|
|
220
220
|
'hoist',
|
|
221
221
|
'dialogTitle',
|
|
222
|
+
'eventType',
|
|
222
223
|
'nanoShow',
|
|
223
224
|
'nanoAfterShow',
|
|
224
225
|
'nanoHide',
|
|
@@ -287,6 +288,10 @@ export const NanoGlobalNav = /*@__PURE__*/ defineContainer('nano-global-nav', un
|
|
|
287
288
|
'nanoSearchError',
|
|
288
289
|
'nanoSearchReset'
|
|
289
290
|
]);
|
|
291
|
+
export const NanoGlobalNavUserProfile = /*@__PURE__*/ defineContainer('nano-global-nav-user-profile', undefined, [
|
|
292
|
+
'myAccountUser',
|
|
293
|
+
'userProfileUrl'
|
|
294
|
+
]);
|
|
290
295
|
export const NanoGlobalSearchResults = /*@__PURE__*/ defineContainer('nano-global-search-results', undefined);
|
|
291
296
|
export const NanoGrid = /*@__PURE__*/ defineContainer('nano-grid', undefined, [
|
|
292
297
|
'sSize',
|
|
@@ -430,6 +435,11 @@ export const NanoOption = /*@__PURE__*/ defineContainer('nano-option', undefined
|
|
|
430
435
|
'filterMeta',
|
|
431
436
|
'nanoSelect'
|
|
432
437
|
]);
|
|
438
|
+
export const NanoProgressBar = /*@__PURE__*/ defineContainer('nano-progress-bar', undefined, [
|
|
439
|
+
'value',
|
|
440
|
+
'indeterminate',
|
|
441
|
+
'showPercent'
|
|
442
|
+
]);
|
|
433
443
|
export const NanoRange = /*@__PURE__*/ defineContainer('nano-range', undefined, [
|
|
434
444
|
'color',
|
|
435
445
|
'debounce',
|
|
@@ -584,6 +594,32 @@ export const NanoTabGroup = /*@__PURE__*/ defineContainer('nano-tab-group', unde
|
|
|
584
594
|
'nanoTabWillClose',
|
|
585
595
|
'nanoTabClose'
|
|
586
596
|
]);
|
|
597
|
+
export const NanoTable = /*@__PURE__*/ defineContainer('nano-table', undefined, [
|
|
598
|
+
'type',
|
|
599
|
+
'caption',
|
|
600
|
+
'showCaption',
|
|
601
|
+
'loading',
|
|
602
|
+
'placeholderSize',
|
|
603
|
+
'rows',
|
|
604
|
+
'columns',
|
|
605
|
+
'headRender',
|
|
606
|
+
'rowRender',
|
|
607
|
+
'footRender',
|
|
608
|
+
'showFooter',
|
|
609
|
+
'perBlock',
|
|
610
|
+
'blocksLength',
|
|
611
|
+
'searchTerm',
|
|
612
|
+
'customFilterFn',
|
|
613
|
+
'customSortFn',
|
|
614
|
+
'nanoTblBlockRendered',
|
|
615
|
+
'nanoTblReady',
|
|
616
|
+
'nanoTblBeforeSort',
|
|
617
|
+
'nanoTblAfterSort',
|
|
618
|
+
'nanoTblBeforeFilter',
|
|
619
|
+
'nanoTblAfterFilter',
|
|
620
|
+
'nanoTblBeforeSearch',
|
|
621
|
+
'nanoTblAfterSearch'
|
|
622
|
+
]);
|
|
587
623
|
export const NanoTooltip = /*@__PURE__*/ defineContainer('nano-tooltip', undefined, [
|
|
588
624
|
'content',
|
|
589
625
|
'placement',
|
package/dist/proxies.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxies.js","sourceRoot":"","sources":["../src/proxies.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"proxies.js","sourceRoot":"","sources":["../src/proxies.ts"],"names":[],"mappings":"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"}
|
package/dist/types/proxies.d.ts
CHANGED
|
@@ -1,51 +1,52 @@
|
|
|
1
1
|
import type { JSX } from '@nanoporetech-digital/components';
|
|
2
|
-
export declare const NanoAccordion: import("vue").DefineComponent<JSX.NanoAccordion & import("./vue-component-lib/utils").InputProps
|
|
3
|
-
export declare const NanoAlert: import("vue").DefineComponent<JSX.NanoAlert & import("./vue-component-lib/utils").InputProps
|
|
4
|
-
export declare const NanoAlgolia: import("vue").DefineComponent<JSX.NanoAlgolia & import("./vue-component-lib/utils").InputProps
|
|
5
|
-
export declare const NanoAlgoliaFilter: import("vue").DefineComponent<JSX.NanoAlgoliaFilter & import("./vue-component-lib/utils").InputProps
|
|
6
|
-
export declare const NanoAlgoliaInput: import("vue").DefineComponent<JSX.NanoAlgoliaInput & import("./vue-component-lib/utils").InputProps
|
|
7
|
-
export declare const NanoAlgoliaPagination: import("vue").DefineComponent<JSX.NanoAlgoliaPagination & import("./vue-component-lib/utils").InputProps
|
|
8
|
-
export declare const NanoAlgoliaResults: import("vue").DefineComponent<JSX.NanoAlgoliaResults & import("./vue-component-lib/utils").InputProps
|
|
9
|
-
export declare const NanoAspectRatio: import("vue").DefineComponent<JSX.NanoAspectRatio & import("./vue-component-lib/utils").InputProps
|
|
10
|
-
export declare const NanoCheckbox: import("vue").DefineComponent<JSX.NanoCheckbox & import("./vue-component-lib/utils").InputProps
|
|
11
|
-
export declare const NanoCheckboxGroup: import("vue").DefineComponent<JSX.NanoCheckboxGroup & import("./vue-component-lib/utils").InputProps
|
|
12
|
-
export declare const NanoDatalist: import("vue").DefineComponent<JSX.NanoDatalist & import("./vue-component-lib/utils").InputProps
|
|
13
|
-
export declare const NanoDateInput: import("vue").DefineComponent<JSX.NanoDateInput & import("./vue-component-lib/utils").InputProps
|
|
14
|
-
export declare const NanoDatePicker: import("vue").DefineComponent<JSX.NanoDatePicker & import("./vue-component-lib/utils").InputProps
|
|
15
|
-
export declare const NanoDetails: import("vue").DefineComponent<JSX.NanoDetails & import("./vue-component-lib/utils").InputProps
|
|
16
|
-
export declare const NanoDialog: import("vue").DefineComponent<JSX.NanoDialog & import("./vue-component-lib/utils").InputProps
|
|
17
|
-
export declare const NanoDrawer: import("vue").DefineComponent<JSX.NanoDrawer & import("./vue-component-lib/utils").InputProps
|
|
18
|
-
export declare const NanoDropdown: import("vue").DefineComponent<JSX.NanoDropdown & import("./vue-component-lib/utils").InputProps
|
|
19
|
-
export declare const NanoFieldValidator: import("vue").DefineComponent<JSX.NanoFieldValidator & import("./vue-component-lib/utils").InputProps
|
|
20
|
-
|
|
21
|
-
}>;
|
|
22
|
-
export declare const
|
|
23
|
-
export declare const
|
|
24
|
-
export declare const
|
|
25
|
-
export declare const
|
|
26
|
-
export declare const
|
|
27
|
-
export declare const
|
|
28
|
-
export declare const NanoIcon: import("vue").DefineComponent<JSX.NanoIcon & import("./vue-component-lib/utils").InputProps, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoIcon & import("./vue-component-lib/utils").InputProps>, {
|
|
2
|
+
export declare const NanoAccordion: import("vue").DefineComponent<JSX.NanoAccordion & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAccordion & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
3
|
+
export declare const NanoAlert: import("vue").DefineComponent<JSX.NanoAlert & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAlert & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
4
|
+
export declare const NanoAlgolia: import("vue").DefineComponent<JSX.NanoAlgolia & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAlgolia & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
5
|
+
export declare const NanoAlgoliaFilter: import("vue").DefineComponent<JSX.NanoAlgoliaFilter & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAlgoliaFilter & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
6
|
+
export declare const NanoAlgoliaInput: import("vue").DefineComponent<JSX.NanoAlgoliaInput & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAlgoliaInput & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
7
|
+
export declare const NanoAlgoliaPagination: import("vue").DefineComponent<JSX.NanoAlgoliaPagination & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAlgoliaPagination & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
8
|
+
export declare const NanoAlgoliaResults: import("vue").DefineComponent<JSX.NanoAlgoliaResults & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAlgoliaResults & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
9
|
+
export declare const NanoAspectRatio: import("vue").DefineComponent<JSX.NanoAspectRatio & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoAspectRatio & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
10
|
+
export declare const NanoCheckbox: import("vue").DefineComponent<JSX.NanoCheckbox & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoCheckbox & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
11
|
+
export declare const NanoCheckboxGroup: import("vue").DefineComponent<JSX.NanoCheckboxGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoCheckboxGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
12
|
+
export declare const NanoDatalist: import("vue").DefineComponent<JSX.NanoDatalist & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDatalist & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
13
|
+
export declare const NanoDateInput: import("vue").DefineComponent<JSX.NanoDateInput & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDateInput & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
14
|
+
export declare const NanoDatePicker: import("vue").DefineComponent<JSX.NanoDatePicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDatePicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
15
|
+
export declare const NanoDetails: import("vue").DefineComponent<JSX.NanoDetails & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDetails & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
16
|
+
export declare const NanoDialog: import("vue").DefineComponent<JSX.NanoDialog & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDialog & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
17
|
+
export declare const NanoDrawer: import("vue").DefineComponent<JSX.NanoDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
18
|
+
export declare const NanoDropdown: import("vue").DefineComponent<JSX.NanoDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
19
|
+
export declare const NanoFieldValidator: import("vue").DefineComponent<JSX.NanoFieldValidator & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoFieldValidator & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
20
|
+
export declare const NanoFileUpload: import("vue").DefineComponent<JSX.NanoFileUpload & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoFileUpload & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
21
|
+
export declare const NanoGlobalNav: import("vue").DefineComponent<JSX.NanoGlobalNav & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoGlobalNav & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
22
|
+
export declare const NanoGlobalNavUserProfile: import("vue").DefineComponent<JSX.NanoGlobalNavUserProfile & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoGlobalNavUserProfile & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
23
|
+
export declare const NanoGlobalSearchResults: import("vue").DefineComponent<JSX.NanoGlobalSearchResults & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoGlobalSearchResults & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
24
|
+
export declare const NanoGrid: import("vue").DefineComponent<JSX.NanoGrid & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoGrid & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
25
|
+
export declare const NanoGridItem: import("vue").DefineComponent<JSX.NanoGridItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoGridItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
26
|
+
export declare const NanoHero: import("vue").DefineComponent<JSX.NanoHero & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoHero & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
27
|
+
export declare const NanoIcon: import("vue").DefineComponent<JSX.NanoIcon & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoIcon & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {
|
|
29
28
|
icon: any;
|
|
30
29
|
}>;
|
|
31
|
-
export declare const NanoIconButton: import("vue").DefineComponent<JSX.NanoIconButton & import("./vue-component-lib/utils").InputProps
|
|
32
|
-
export declare const NanoImg: import("vue").DefineComponent<JSX.NanoImg & import("./vue-component-lib/utils").InputProps
|
|
33
|
-
export declare const NanoInput: import("vue").DefineComponent<JSX.NanoInput & import("./vue-component-lib/utils").InputProps
|
|
34
|
-
export declare const NanoMenu: import("vue").DefineComponent<JSX.NanoMenu & import("./vue-component-lib/utils").InputProps
|
|
35
|
-
export declare const NanoMenuDrawer: import("vue").DefineComponent<JSX.NanoMenuDrawer & import("./vue-component-lib/utils").InputProps
|
|
36
|
-
export declare const NanoNavItem: import("vue").DefineComponent<JSX.NanoNavItem & import("./vue-component-lib/utils").InputProps
|
|
37
|
-
export declare const NanoOption: import("vue").DefineComponent<JSX.NanoOption & import("./vue-component-lib/utils").InputProps
|
|
38
|
-
export declare const
|
|
39
|
-
export declare const
|
|
40
|
-
export declare const
|
|
41
|
-
export declare const
|
|
42
|
-
export declare const
|
|
43
|
-
export declare const
|
|
44
|
-
export declare const
|
|
45
|
-
export declare const
|
|
46
|
-
export declare const
|
|
47
|
-
export declare const
|
|
48
|
-
export declare const
|
|
49
|
-
export declare const
|
|
50
|
-
export declare const
|
|
51
|
-
export declare const
|
|
30
|
+
export declare const NanoIconButton: import("vue").DefineComponent<JSX.NanoIconButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoIconButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
31
|
+
export declare const NanoImg: import("vue").DefineComponent<JSX.NanoImg & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoImg & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
32
|
+
export declare const NanoInput: import("vue").DefineComponent<JSX.NanoInput & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoInput & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
33
|
+
export declare const NanoMenu: import("vue").DefineComponent<JSX.NanoMenu & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoMenu & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
34
|
+
export declare const NanoMenuDrawer: import("vue").DefineComponent<JSX.NanoMenuDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoMenuDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
35
|
+
export declare const NanoNavItem: import("vue").DefineComponent<JSX.NanoNavItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoNavItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
36
|
+
export declare const NanoOption: import("vue").DefineComponent<JSX.NanoOption & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoOption & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
37
|
+
export declare const NanoProgressBar: import("vue").DefineComponent<JSX.NanoProgressBar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoProgressBar & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
38
|
+
export declare const NanoRange: import("vue").DefineComponent<JSX.NanoRange & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoRange & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
39
|
+
export declare const NanoRating: import("vue").DefineComponent<JSX.NanoRating & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoRating & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
40
|
+
export declare const NanoResizeObserve: import("vue").DefineComponent<JSX.NanoResizeObserve & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoResizeObserve & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
41
|
+
export declare const NanoSelect: import("vue").DefineComponent<JSX.NanoSelect & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSelect & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
42
|
+
export declare const NanoSkeleton: import("vue").DefineComponent<JSX.NanoSkeleton & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSkeleton & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
43
|
+
export declare const NanoSlide: import("vue").DefineComponent<JSX.NanoSlide & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSlide & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
44
|
+
export declare const NanoSlides: import("vue").DefineComponent<JSX.NanoSlides & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSlides & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
45
|
+
export declare const NanoSpinner: import("vue").DefineComponent<JSX.NanoSpinner & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSpinner & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
46
|
+
export declare const NanoSplitPane: import("vue").DefineComponent<JSX.NanoSplitPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSplitPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
47
|
+
export declare const NanoSticker: import("vue").DefineComponent<JSX.NanoSticker & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoSticker & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
48
|
+
export declare const NanoTab: import("vue").DefineComponent<JSX.NanoTab & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoTab & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
49
|
+
export declare const NanoTabContent: import("vue").DefineComponent<JSX.NanoTabContent & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoTabContent & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
50
|
+
export declare const NanoTabGroup: import("vue").DefineComponent<JSX.NanoTabGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoTabGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
51
|
+
export declare const NanoTable: import("vue").DefineComponent<JSX.NanoTable & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoTable & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
52
|
+
export declare const NanoTooltip: import("vue").DefineComponent<JSX.NanoTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.NanoTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export interface InputProps
|
|
2
|
-
modelValue
|
|
1
|
+
export interface InputProps<T> {
|
|
2
|
+
modelValue?: T;
|
|
3
3
|
}
|
|
4
4
|
/**
|
|
5
5
|
* Create a callback to define a Vue component wrapper around a Web Component.
|
|
@@ -15,8 +15,8 @@ export interface InputProps extends Object {
|
|
|
15
15
|
* @prop externalModelUpdateEvent - The external event to fire from your Vue component when modelUpdateEvent fires. This is used for ensuring that v-model references have been
|
|
16
16
|
* correctly updated when a user's event callback fires.
|
|
17
17
|
*/
|
|
18
|
-
export declare const defineContainer: <Props>(name: string,
|
|
18
|
+
export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string, externalModelUpdateEvent?: string) => import("vue").DefineComponent<Props & InputProps<VModelType>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<Props & InputProps<VModelType> extends import("vue").ComponentPropsOptions<{
|
|
19
19
|
[x: string]: unknown;
|
|
20
20
|
}> ? import("vue").ExtractPropTypes<import("vue").ComponentPropsOptions<{
|
|
21
21
|
[x: string]: unknown;
|
|
22
|
-
}> & Props & InputProps
|
|
22
|
+
}> & Props & InputProps<VModelType>> : Props & InputProps<VModelType>>, import("vue").ExtractDefaultPropTypes<Props & InputProps<VModelType>>>;
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
"options": []
|
|
391
391
|
},
|
|
392
392
|
"nano-datalist/drop-down-config": {
|
|
393
|
-
"type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: PopoverPlacement; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
|
|
393
|
+
"type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: PopoverPlacement; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; eventType?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
|
|
394
394
|
"description": "nano-dropdown config options you can pass to the nested dropdown component",
|
|
395
395
|
"options": []
|
|
396
396
|
},
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
"options": []
|
|
475
475
|
},
|
|
476
476
|
"nano-date-input/drop-down-config": {
|
|
477
|
-
"type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: PopoverPlacement; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
|
|
477
|
+
"type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: PopoverPlacement; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; eventType?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
|
|
478
478
|
"description": "nano-dropdown config options you can pass to the nested dropdown component",
|
|
479
479
|
"options": []
|
|
480
480
|
},
|
|
@@ -895,7 +895,7 @@
|
|
|
895
895
|
]
|
|
896
896
|
},
|
|
897
897
|
"nano-field-validator/validation": {
|
|
898
|
-
"type": "(field: string, value: string, fields: ValidatorValueStore) => { [
|
|
898
|
+
"type": "(field: string, value: string, fields: ValidatorValueStore) => { [errorMsg: string]: { fields?: string[]; valid?: boolean; }; }",
|
|
899
899
|
"description": "A validation callback method.",
|
|
900
900
|
"options": []
|
|
901
901
|
},
|
|
@@ -1041,7 +1041,7 @@
|
|
|
1041
1041
|
},
|
|
1042
1042
|
"nano-global-nav/msg-count": {
|
|
1043
1043
|
"type": "number",
|
|
1044
|
-
"description": "MyAccount
|
|
1044
|
+
"description": "MyAccount un-read message count.",
|
|
1045
1045
|
"options": []
|
|
1046
1046
|
},
|
|
1047
1047
|
"nano-global-nav/msg-url": {
|
|
@@ -1050,7 +1050,7 @@
|
|
|
1050
1050
|
"options": []
|
|
1051
1051
|
},
|
|
1052
1052
|
"nano-global-nav/my-account-user": {
|
|
1053
|
-
"type": "
|
|
1053
|
+
"type": "MyAccountUser",
|
|
1054
1054
|
"description": "Logged in user details automatically populated from MyAccount",
|
|
1055
1055
|
"options": []
|
|
1056
1056
|
},
|
|
@@ -1099,6 +1099,16 @@
|
|
|
1099
1099
|
"description": "Where to take user after SSO login",
|
|
1100
1100
|
"options": []
|
|
1101
1101
|
},
|
|
1102
|
+
"nano-global-nav-user-profile/my-account-user": {
|
|
1103
|
+
"type": "MyAccountUser",
|
|
1104
|
+
"description": "Logged in user details automatically populated from MyAccount",
|
|
1105
|
+
"options": []
|
|
1106
|
+
},
|
|
1107
|
+
"nano-global-nav-user-profile/user-profile-url": {
|
|
1108
|
+
"type": "string",
|
|
1109
|
+
"description": "Link to the user profile",
|
|
1110
|
+
"options": []
|
|
1111
|
+
},
|
|
1102
1112
|
"nano-grid/content-panel": {
|
|
1103
1113
|
"type": "boolean",
|
|
1104
1114
|
"description": "shortcut for a traditional website like grid (requires more than one row). The second row will auto expand to fill the grid height. The first row and > 2nd row will be the size of their content. e.g. header, body and footer.",
|
|
@@ -1677,6 +1687,21 @@
|
|
|
1677
1687
|
"description": "Value of the option",
|
|
1678
1688
|
"options": []
|
|
1679
1689
|
},
|
|
1690
|
+
"nano-progress-bar/indeterminate": {
|
|
1691
|
+
"type": "boolean",
|
|
1692
|
+
"description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
|
|
1693
|
+
"options": []
|
|
1694
|
+
},
|
|
1695
|
+
"nano-progress-bar/show-percent": {
|
|
1696
|
+
"type": "boolean",
|
|
1697
|
+
"description": "Whether to show the progress bar's current percent as text. Will be overwritten if you use the default slot.",
|
|
1698
|
+
"options": []
|
|
1699
|
+
},
|
|
1700
|
+
"nano-progress-bar/value": {
|
|
1701
|
+
"type": "number",
|
|
1702
|
+
"description": "The progress bar's percentage, 0 to 100.",
|
|
1703
|
+
"options": []
|
|
1704
|
+
},
|
|
1680
1705
|
"nano-range/color": {
|
|
1681
1706
|
"type": "\"danger\" | \"dark\" | \"light\" | \"medium\" | \"primary\" | \"secondary\" | \"success\" | \"tertiary\" | \"warning\"",
|
|
1682
1707
|
"description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`",
|
|
@@ -1833,7 +1858,7 @@
|
|
|
1833
1858
|
"options": []
|
|
1834
1859
|
},
|
|
1835
1860
|
"nano-select/drop-down-config": {
|
|
1836
|
-
"type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: PopoverPlacement; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
|
|
1861
|
+
"type": "{ host?: HTMLNanoDropdownElement; autoOpen?: boolean; open?: boolean; handleOpenChange?: () => void; closeOnSelect?: boolean; containingElement?: HTMLElement; tetherTo?: HTMLElement; handleTetherToChange?: () => void; placement?: PopoverPlacement; distance?: number; skidding?: number; hoist?: boolean; handlePopoverOptionsChange?: () => void; dialogTitle?: string; nanoShow?: EventEmitter<any>; nanoAfterShow?: EventEmitter<any>; nanoHide?: EventEmitter<any>; nanoAfterHide?: EventEmitter<any>; eventType?: EventEmitter<any>; secondaryOpen?: (ev: CustomEvent<any>) => void; secondaryClose?: (ev: CustomEvent<any>) => void; handlePanelSelect?: (event: CustomEvent<any>) => void; show?: () => Promise<void>; hide?: () => Promise<void>; connectedCallback?: () => void; componentDidLoad?: () => void; disconnectedCallback?: () => void; render?: () => any; }",
|
|
1837
1862
|
"description": "nano-dropdown config options you can pass to the nested dropdown component",
|
|
1838
1863
|
"options": []
|
|
1839
1864
|
},
|
|
@@ -2182,6 +2207,89 @@
|
|
|
2182
2207
|
"url-query-push"
|
|
2183
2208
|
]
|
|
2184
2209
|
},
|
|
2210
|
+
"nano-table/blocks-length": {
|
|
2211
|
+
"type": "number",
|
|
2212
|
+
"description": "The number of total blocks currently rendered in the table. @readonly",
|
|
2213
|
+
"options": []
|
|
2214
|
+
},
|
|
2215
|
+
"nano-table/caption": {
|
|
2216
|
+
"type": "string",
|
|
2217
|
+
"description": "A descriptive title of the table.\nYou must use this or the `slot=\"caption\"` for accessibility",
|
|
2218
|
+
"options": []
|
|
2219
|
+
},
|
|
2220
|
+
"nano-table/columns": {
|
|
2221
|
+
"type": "ColumnConfig<RowData>[]",
|
|
2222
|
+
"description": "The column config used to generate present the rows of data",
|
|
2223
|
+
"options": []
|
|
2224
|
+
},
|
|
2225
|
+
"nano-table/custom-filter-fn": {
|
|
2226
|
+
"type": "(filters: Filter[]) => Promise<void>",
|
|
2227
|
+
"description": "A custom filtering function. Should return a promise.\nOn successful completion the column UI will be updated.\nA good use-case would be performing the filter on a server / via fetch.\nThen on success, updating the table's data via the `rows` property",
|
|
2228
|
+
"options": []
|
|
2229
|
+
},
|
|
2230
|
+
"nano-table/custom-sort-fn": {
|
|
2231
|
+
"type": "(property: keyof RowData, order: Order) => Promise<void>",
|
|
2232
|
+
"description": "A custom sorting function. Should return a promise.\nOn successful completion the column UI will be updated.\nA good use-case would be performing the sort on a server / via fetch.\nThen on success, updating the table's data via the `rows` property",
|
|
2233
|
+
"options": []
|
|
2234
|
+
},
|
|
2235
|
+
"nano-table/foot-render": {
|
|
2236
|
+
"type": "HeadFootRenderer",
|
|
2237
|
+
"description": "Used for custom tfoot row rendering",
|
|
2238
|
+
"options": []
|
|
2239
|
+
},
|
|
2240
|
+
"nano-table/head-render": {
|
|
2241
|
+
"type": "HeadFootRenderer",
|
|
2242
|
+
"description": "Used for custom thead row rendering",
|
|
2243
|
+
"options": []
|
|
2244
|
+
},
|
|
2245
|
+
"nano-table/loading": {
|
|
2246
|
+
"type": "boolean",
|
|
2247
|
+
"description": "Will show a loading state when true.\nWill be shown automatically if `rows` is a promise waiting to resolve\nor when performing custom filtering or sorting",
|
|
2248
|
+
"options": []
|
|
2249
|
+
},
|
|
2250
|
+
"nano-table/per-block": {
|
|
2251
|
+
"type": "number",
|
|
2252
|
+
"description": "To improve performance, data is split into blocks\nwhich are shown / hidden and rendered as they become visible.\nUse this to control the number of hits within a block -\nA block should fill a scrolling viewport.\nThe less perBlock the better for performance",
|
|
2253
|
+
"options": []
|
|
2254
|
+
},
|
|
2255
|
+
"nano-table/placeholder-size": {
|
|
2256
|
+
"type": "number",
|
|
2257
|
+
"description": "When loading rows asynchronously, this will render this number of placeholder rows",
|
|
2258
|
+
"options": []
|
|
2259
|
+
},
|
|
2260
|
+
"nano-table/row-render": {
|
|
2261
|
+
"type": "RowRenderer",
|
|
2262
|
+
"description": "Used for custom row rendering",
|
|
2263
|
+
"options": []
|
|
2264
|
+
},
|
|
2265
|
+
"nano-table/rows": {
|
|
2266
|
+
"type": "Promise<RowData[]> | RowData[]",
|
|
2267
|
+
"description": "The data to place in the table",
|
|
2268
|
+
"options": []
|
|
2269
|
+
},
|
|
2270
|
+
"nano-table/search-term": {
|
|
2271
|
+
"type": "string",
|
|
2272
|
+
"description": "Term to search for in the data",
|
|
2273
|
+
"options": []
|
|
2274
|
+
},
|
|
2275
|
+
"nano-table/show-caption": {
|
|
2276
|
+
"type": "boolean",
|
|
2277
|
+
"description": "Show the caption on-screen",
|
|
2278
|
+
"options": []
|
|
2279
|
+
},
|
|
2280
|
+
"nano-table/show-footer": {
|
|
2281
|
+
"type": "boolean",
|
|
2282
|
+
"description": "Whether to show a `<tfoot>` component",
|
|
2283
|
+
"options": []
|
|
2284
|
+
},
|
|
2285
|
+
"nano-table/type": {
|
|
2286
|
+
"type": "\"grid\" | \"table\"",
|
|
2287
|
+
"description": "The type of table. Grid type will make cells navigable by keyboard",
|
|
2288
|
+
"options": [
|
|
2289
|
+
"grid",
|
|
2290
|
+
"table"
|
|
2291
|
+
]
|
|
2292
|
+
},
|
|
2185
2293
|
"nano-tooltip/content": {
|
|
2186
2294
|
"type": "string",
|
|
2187
2295
|
"description": "The tooltip's content. Alternatively, you can use the content slot.",
|
package/dist/vetur/tags.json
CHANGED
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
]
|
|
227
227
|
},
|
|
228
228
|
"nano-field-validator": {
|
|
229
|
-
"description": "A toolbox for `nano-...` form fields and form validation.\n- Easy to add validation
|
|
229
|
+
"description": "A toolbox for `nano-...` form fields and form validation.\n- Easy to add validation across field dependencies - e.g. \"When Field1 contains '123' Field2 must contain '456'\"\n- Easy access to whole form and individual field validity states\n- Easy access to form data payload\n= Access to 2-way, data bound reactive store\n- Scroll to invalid field on submit",
|
|
230
230
|
"attributes": [
|
|
231
231
|
"dirty",
|
|
232
232
|
"extra-field-selector",
|
|
@@ -286,6 +286,13 @@
|
|
|
286
286
|
"sso-redirect"
|
|
287
287
|
]
|
|
288
288
|
},
|
|
289
|
+
"nano-global-nav-user-profile": {
|
|
290
|
+
"description": "Nanopore digital global navigation user profile.",
|
|
291
|
+
"attributes": [
|
|
292
|
+
"my-account-user",
|
|
293
|
+
"user-profile-url"
|
|
294
|
+
]
|
|
295
|
+
},
|
|
289
296
|
"nano-global-search-results": {
|
|
290
297
|
"description": "Nanopore Global Search results component\nto be used in conjunction with [Globla-Nav](/story/nano-compounds-global-nav).\nA shortcut / helper which combines algolia components.\nThere should only be one <nano-global-search-results> per page\nand should be a direct child of <nano-global-nav>",
|
|
291
298
|
"attributes": []
|
|
@@ -444,6 +451,14 @@
|
|
|
444
451
|
"value"
|
|
445
452
|
]
|
|
446
453
|
},
|
|
454
|
+
"nano-progress-bar": {
|
|
455
|
+
"description": "Used to show the status of an ongoing operation.",
|
|
456
|
+
"attributes": [
|
|
457
|
+
"indeterminate",
|
|
458
|
+
"show-percent",
|
|
459
|
+
"value"
|
|
460
|
+
]
|
|
461
|
+
},
|
|
447
462
|
"nano-range": {
|
|
448
463
|
"description": "The Range slider lets users select from a range of values by moving\nthe slider knob. It can accept dual knobs, but by default one knob controls the value of the range.\n\nLabels can be placed on either side of the range by adding the\n`slot=\"start\"` or `slot=\"end\"` to the element.",
|
|
449
464
|
"attributes": [
|
|
@@ -598,6 +613,27 @@
|
|
|
598
613
|
"store-method"
|
|
599
614
|
]
|
|
600
615
|
},
|
|
616
|
+
"nano-table": {
|
|
617
|
+
"description": "A performant, accessible and semantic (uses real html `<table />`, `<tr />` etc) table and data-grid solution.\n- Built-in search\n- Built-in column filter\n- Built-in column sort\n- Easily swap in API / async based search / filter & sort\n- Pin headers, footers, rows, columns\n- Add custom rendering at every level\n- Add custom properties at every level",
|
|
618
|
+
"attributes": [
|
|
619
|
+
"blocks-length",
|
|
620
|
+
"caption",
|
|
621
|
+
"columns",
|
|
622
|
+
"custom-filter-fn",
|
|
623
|
+
"custom-sort-fn",
|
|
624
|
+
"foot-render",
|
|
625
|
+
"head-render",
|
|
626
|
+
"loading",
|
|
627
|
+
"per-block",
|
|
628
|
+
"placeholder-size",
|
|
629
|
+
"row-render",
|
|
630
|
+
"rows",
|
|
631
|
+
"search-term",
|
|
632
|
+
"show-caption",
|
|
633
|
+
"show-footer",
|
|
634
|
+
"type"
|
|
635
|
+
]
|
|
636
|
+
},
|
|
601
637
|
"nano-tooltip": {
|
|
602
638
|
"description": "Tooltips display additional information based on a specific action.",
|
|
603
639
|
"attributes": [
|
|
@@ -36,16 +36,14 @@ const getElementClasses = (ref, componentClasses, defaultClasses = []) => {
|
|
|
36
36
|
* @prop externalModelUpdateEvent - The external event to fire from your Vue component when modelUpdateEvent fires. This is used for ensuring that v-model references have been
|
|
37
37
|
* correctly updated when a user's event callback fires.
|
|
38
38
|
*/
|
|
39
|
-
export const defineContainer = (name,
|
|
39
|
+
export const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent, externalModelUpdateEvent) => {
|
|
40
40
|
/**
|
|
41
41
|
* Create a Vue component wrapper around a Web Component.
|
|
42
42
|
* Note: The `props` here are not all properties on a component.
|
|
43
43
|
* They refer to whatever properties are set on an instance of a component.
|
|
44
44
|
*/
|
|
45
|
-
if (
|
|
46
|
-
|
|
47
|
-
!customElements.get(name)) {
|
|
48
|
-
customElements.define(name, customElement);
|
|
45
|
+
if (defineCustomElement !== undefined) {
|
|
46
|
+
defineCustomElement();
|
|
49
47
|
}
|
|
50
48
|
const Container = defineComponent((props, { attrs, slots, emit }) => {
|
|
51
49
|
let modelPropValue = props[modelProp];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/vue-component-lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,eAAe,EAAE,kBAAkB,EAAE,CAAC,EAAE,MAAM,EAAE,GAAG,EAAO,MAAM,KAAK,CAAC;AAMtF,MAAM,kBAAkB,GAAG,mBAAmB,CAAC;AAC/C,MAAM,WAAW,GAAG,YAAY,CAAC;AACjC,MAAM,iBAAiB,GAAG,YAAY,CAAC;AACvC,MAAM,WAAW,GAAG,YAAY,CAAC;AACjC,MAAM,kBAAkB,GAAG,QAAQ,CAAC;AAEpC;;;;;;;;GAQG;AACH,MAAM,UAAU,GAAG,MAAM,EAAE,CAAC;AAC5B,MAAM,kBAAkB,GAAG,EAAE,OAAO,EAAE,UAAU,EAAE,CAAC;AAMnD,MAAM,mBAAmB,GAAG,CAAC,OAAgB,EAAE,EAAE;IAC/C,OAAQ,OAAkB,EAAE,KAAK,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC;AAC/C,CAAC,CAAC;AAEF,MAAM,iBAAiB,GAAG,CAAC,GAAiC,EAAE,gBAA6B,EAAE,iBAA2B,EAAE,EAAE,EAAE;IAC5H,OAAO,CAAE,GAAG,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,SAAS,IAAI,EAAE,CAAC,EAAE,GAAG,cAAc,CAAE;SACpE,MAAM,CAAC,CAAC,CAAS,EAAE,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AACvF,CAAC,CAAC;AAEF;;;;;;;;;;;;;EAaE;AACF,MAAM,CAAC,MAAM,eAAe,GAAG,CAC7B,IAAY,EACZ,
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/vue-component-lib/utils.ts"],"names":[],"mappings":"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"}
|
package/dist/web-types.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nanoporetech-digital/components-vue",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "Vue 3 wrapper for Nano Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"vue-tsc": "^0.0.24"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@nanoporetech-digital/components": "^
|
|
51
|
+
"@nanoporetech-digital/components": "^3.1.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"vue": "3.1.4"
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "f2f93242eaa1959eacfe1575a64023ad73edcd45",
|
|
74
74
|
"vetur": {
|
|
75
75
|
"tags": "dist/vetur/tags.json",
|
|
76
76
|
"attributes": "dist/vetur/attributes.json"
|