@nanoporetech-digital/components 8.0.0 → 8.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/dist/cjs/nano-algolia-results.cjs.entry.js +24 -26
- package/dist/cjs/nano-algolia.cjs.entry.js +4 -0
- package/dist/cjs/nano-avatar_5.cjs.entry.js +120 -117
- package/dist/cjs/nano-dropdown_2.cjs.entry.js +10 -6
- package/dist/cjs/nano-icon_3.cjs.entry.js +1 -1
- package/dist/cjs/{popover-D_uJstEp.js → popover-BxNxwqMv.js} +5 -3
- package/dist/collection/components/algolia/algolia-results.js +25 -27
- package/dist/collection/components/algolia/lib/template.js +4 -0
- package/dist/collection/components/breadcrumb/breadcrumb.js +1 -1
- package/dist/collection/components/dropdown/dropdown.js +9 -5
- package/dist/collection/components/global-search-results/global-search-results.css +121 -189
- package/dist/collection/components/global-search-results/global-search-results.js +121 -117
- package/dist/collection/utils/popover.js +5 -3
- package/dist/components/algolia.js +4 -0
- package/dist/components/dropdown.js +9 -5
- package/dist/components/global-search-results.js +122 -118
- package/dist/components/nano-algolia-results.js +25 -27
- package/dist/components/popover.js +5 -3
- package/dist/esm/nano-algolia-results.entry.js +25 -27
- package/dist/esm/nano-algolia.entry.js +4 -0
- package/dist/esm/nano-avatar_5.entry.js +120 -117
- package/dist/esm/nano-dropdown_2.entry.js +10 -6
- package/dist/esm/nano-icon_3.entry.js +1 -1
- package/dist/esm/{popover-BKomgCqQ.js → popover-CWVbjtKn.js} +5 -3
- package/dist/nano-components/nano-algolia-results.entry.js +1 -1
- package/dist/nano-components/nano-algolia.entry.js +1 -1
- package/dist/nano-components/nano-avatar_5.entry.js +1 -1
- package/dist/nano-components/nano-components.css +5 -5
- package/dist/nano-components/nano-dropdown_2.entry.js +1 -1
- package/dist/nano-components/nano-icon_3.entry.js +1 -1
- package/dist/nano-components/{popover-BKomgCqQ.js → popover-CWVbjtKn.js} +1 -1
- package/dist/style/components.css +1 -1
- package/dist/style/components.css.map +1 -1
- package/dist/style/core.css +1 -1
- package/dist/style/core.css.map +1 -1
- package/dist/style/nano.css +1 -1
- package/dist/style/nano.css.map +1 -1
- package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/plugins/stencil/vue-output/generate-vue-component.d.ts +1 -1
- package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/plugins/stencil/vue-output/output-vue.d.ts +1 -1
- package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/plugins/stencil/vue-output/plugin.d.ts +1 -1
- package/dist/types/builds/FKs_t1C_/0/Digital/nano-components/packages/components/.stencil/stencil.config.d.ts +2 -0
- package/dist/types/builds/FKs_t1C_/0/Digital/nano-components/packages/components/.stencil/stencil.config.prod.d.ts +2 -0
- package/dist/types/components/global-search-results/global-search-results.d.ts +2 -0
- package/docs-json.json +2 -2
- package/hydrate/index.js +160 -151
- package/hydrate/index.mjs +160 -151
- package/package.json +2 -2
- package/dist/types/Users/John.Jenkins/projects/nano-components/packages/components/.stencil/stencil.config.d.ts +0 -2
- package/dist/types/Users/John.Jenkins/projects/nano-components/packages/components/.stencil/stencil.config.prod.d.ts +0 -2
- /package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/plugins/stencil/vue-output/index.d.ts +0 -0
- /package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/plugins/stencil/vue-output/types.d.ts +0 -0
- /package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/plugins/stencil/vue-output/utils.d.ts +0 -0
- /package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/testing/mocks/intersection-observer.d.ts +0 -0
- /package/dist/types/{Users/John.Jenkins/projects → builds/FKs_t1C_/0/Digital}/nano-components/packages/components/.stencil/wdio.conf.d.ts +0 -0
@@ -1,3 +1,3 @@
|
|
1
|
-
import { ComponentCompilerMeta } from '
|
1
|
+
import { ComponentCompilerMeta } from '../../../../../../../../../../../stencil-public-runtime';
|
2
2
|
import { ComponentModelConfig } from './types';
|
3
3
|
export declare const createComponentDefinition: (importTypes: string, componentModelConfig: ComponentModelConfig[] | undefined, includeCustomElement?: boolean) => (cmpMeta: Pick<ComponentCompilerMeta, "properties" | "tagName" | "methods" | "events">) => string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { OutputTargetVue, PackageJSON } from './types';
|
2
|
-
import type { CompilerCtx, ComponentCompilerMeta, Config } from '
|
2
|
+
import type { CompilerCtx, ComponentCompilerMeta, Config } from '../../../../../../../../../../../stencil-public-runtime';
|
3
3
|
export declare function vueProxyOutput(config: Config, compilerCtx: CompilerCtx, outputTarget: OutputTargetVue, components: ComponentCompilerMeta[]): Promise<void>;
|
4
4
|
export declare function generateProxies(config: Config, components: ComponentCompilerMeta[], pkgData: PackageJSON, outputTarget: OutputTargetVue, rootDir: string): string;
|
5
5
|
export declare function getPathToCorePackageLoader(config: Config, outputTarget: OutputTargetVue): string;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { Config, OutputTargetCustom } from '
|
1
|
+
import type { Config, OutputTargetCustom } from '../../../../../../../../../../../stencil-public-runtime';
|
2
2
|
import type { OutputTargetVue } from './types';
|
3
3
|
export declare const vueOutputTarget: (outputTarget: OutputTargetVue) => OutputTargetCustom;
|
4
4
|
export declare function normalizeOutputTarget(config: Config, outputTarget: any): OutputTargetVue;
|
@@ -33,6 +33,7 @@ export declare class GlobalSearchResults implements ComponentInterface {
|
|
33
33
|
handleAlgoliaEleChange(): void;
|
34
34
|
private handleGlobalNavReset;
|
35
35
|
private handleGlobalNavSearch;
|
36
|
+
private handleNanoFilterChanged;
|
36
37
|
handleReorder(e: CustomEvent & {
|
37
38
|
target: HTMLNanoSelectElement;
|
38
39
|
}): void;
|
@@ -56,6 +57,7 @@ export declare class GlobalSearchResults implements ComponentInterface {
|
|
56
57
|
private removeAllFilters;
|
57
58
|
private closefilters;
|
58
59
|
private toggleOldResults;
|
60
|
+
componentWillLoad(): void;
|
59
61
|
connectedCallback(): void;
|
60
62
|
disconnectedCallback(): void;
|
61
63
|
componentDidLoad(): void;
|
package/docs-json.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"timestamp": "2025-07-
|
2
|
+
"timestamp": "2025-07-22T22:24:12",
|
3
3
|
"compiler": {
|
4
4
|
"name": "@stencil/core",
|
5
5
|
"version": "4.36.1",
|
@@ -3322,7 +3322,7 @@
|
|
3322
3322
|
"references": {
|
3323
3323
|
"Breadcrumb": {
|
3324
3324
|
"location": "local",
|
3325
|
-
"path": "/
|
3325
|
+
"path": "/builds/FKs_t1C_/0/Digital/nano-components/packages/components/src/components/breadcrumb/breadcrumb.tsx",
|
3326
3326
|
"id": "src/components/breadcrumb/breadcrumb.tsx::Breadcrumb"
|
3327
3327
|
}
|
3328
3328
|
}
|