@aquera/nile-elements 1.7.0 → 1.7.1
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/README.md +3 -0
- package/demo/index.js +1 -1
- package/dist/index.js +267 -273
- package/dist/nile-nav-tab/nile-nav-tab.cjs.js +1 -1
- package/dist/nile-nav-tab/nile-nav-tab.cjs.js.map +1 -1
- package/dist/nile-nav-tab/nile-nav-tab.esm.js +1 -1
- package/dist/nile-popover/nile-popover.cjs.js.map +1 -1
- package/dist/src/nile-nav-tab/nile-nav-tab.js +1 -1
- package/dist/src/nile-nav-tab/nile-nav-tab.js.map +1 -1
- package/dist/src/version.js +1 -1
- package/dist/src/version.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -2
- package/rollup.config.js +4 -1
- package/src/nile-nav-tab/nile-nav-tab.ts +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent nile-elements following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "nile-elements",
|
|
6
|
-
"version": "1.7.
|
|
6
|
+
"version": "1.7.1",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"module": "dist/src/index.js",
|
|
@@ -126,7 +126,9 @@
|
|
|
126
126
|
"./nile-nav-tab": "./dist/src/nile-nav-tab/index.js",
|
|
127
127
|
"./nile-nav-tab-panel": "./dist/src/nile-nav-tab-panel/index.js",
|
|
128
128
|
"./nile-color-picker": "./dist/src/nile-color-picker/index.js",
|
|
129
|
-
"./nile-color-swatch": "./dist/src/nile-color-swatch/index.js"
|
|
129
|
+
"./nile-color-swatch": "./dist/src/nile-color-swatch/index.js",
|
|
130
|
+
"./nile-tree": "./dist/src/nile-tree/index.js",
|
|
131
|
+
"./nile-tree-item": "./dist/src/nile-tree-item/index.js"
|
|
130
132
|
},
|
|
131
133
|
"scripts": {
|
|
132
134
|
"analyze": "cem analyze --litelement",
|
package/rollup.config.js
CHANGED
|
@@ -8,9 +8,12 @@ import { getBabelOutputPlugin } from '@rollup/plugin-babel';
|
|
|
8
8
|
import glob from 'glob';
|
|
9
9
|
import path from 'node:path';
|
|
10
10
|
import { fileURLToPath } from 'node:url';
|
|
11
|
+
import { createRequire } from 'node:module';
|
|
11
12
|
import commonjs from '@rollup/plugin-commonjs';
|
|
12
13
|
import styles from 'rollup-plugin-styles';
|
|
13
|
-
|
|
14
|
+
|
|
15
|
+
const require = createRequire(import.meta.url);
|
|
16
|
+
const pkg = require('./package.json');
|
|
14
17
|
|
|
15
18
|
const { LERNA_PACKAGE_NAME } = process.env;
|
|
16
19
|
const PACKAGE_ROOT_PATH = process.cwd();
|
|
@@ -165,7 +165,7 @@ export class NileNavTab extends NileElement {
|
|
|
165
165
|
@click=${this.handleTabClick}
|
|
166
166
|
>
|
|
167
167
|
<slot name="prefix" @slotchange=${this.updateAccessibleName}></slot>
|
|
168
|
-
<slot @slotchange=${this.updateAccessibleName}></slot>
|
|
168
|
+
<span part="name"><slot @slotchange=${this.updateAccessibleName}></slot></span>
|
|
169
169
|
<slot name="suffix" @slotchange=${this.updateAccessibleName}></slot>
|
|
170
170
|
|
|
171
171
|
${this.closable
|