nve-designsystem 0.1.15 → 0.1.16
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/components/nve-dialog/nve-dialog.component.d.ts +1 -1
- package/components/nve-dropdown/nve-dropdown.component.d.ts +1 -1
- package/components/nve-menu/nve-menu.component.d.ts +1 -1
- package/components/nve-menu-item/nve-menu-item.component.d.ts +1 -1
- package/index.d.ts +4 -0
- package/nve-designsystem.js +3501 -3159
- package/nve-designsystem.umd.cjs +373 -207
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ import { SlDialog } from '@shoelace-style/shoelace';
|
|
|
11
11
|
* @slot footer - feltet i bunden hvor knappene er plassert
|
|
12
12
|
*
|
|
13
13
|
*/
|
|
14
|
-
export
|
|
14
|
+
export default class NveDialog extends SlDialog {
|
|
15
15
|
/**
|
|
16
16
|
* Ikonet som skal vises
|
|
17
17
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SlDropdown } from '@shoelace-style/shoelace';
|
|
2
|
-
import
|
|
2
|
+
import NveMenu from '../nve-menu/nve-menu.component';
|
|
3
3
|
/**
|
|
4
4
|
* En Shoelace-dropdown i NVE-forkledning.
|
|
5
5
|
* Se https://shoelace.style/components/dropdown
|
|
@@ -4,7 +4,7 @@ import { SlMenuItem } from '@shoelace-style/shoelace';
|
|
|
4
4
|
* Mer info: https://shoelace.style/components/menu-item
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
|
-
export
|
|
7
|
+
export default class NveMenuItem extends SlMenuItem {
|
|
8
8
|
/**
|
|
9
9
|
* Tekst som vises som subtext(undertekst).
|
|
10
10
|
*/
|
package/index.d.ts
CHANGED
|
@@ -3,9 +3,13 @@ export { default as NveAlert } from './components/nve-alert/nve-alert.component'
|
|
|
3
3
|
export { default as NveButton } from './components/nve-button/nve-button.component';
|
|
4
4
|
export { default as NveCheckbox } from './components/nve-checkbox/nve-checkbox.component';
|
|
5
5
|
export { default as NveCheckboxGroup } from './components/nve-checkbox-group/nve-checkbox-group.component';
|
|
6
|
+
export { default as NveDialog } from './components/nve-dialog/nve-dialog.component';
|
|
7
|
+
export { default as NveDropdown } from './components/nve-dropdown/nve-dropdown.component';
|
|
6
8
|
export { default as NveIcon } from './components/nve-icon/nve-icon.component';
|
|
7
9
|
export { default as NveInput } from './components/nve-input/nve-input.component';
|
|
8
10
|
export { default as NveLabel } from './components/nve-label/nve-label.component';
|
|
11
|
+
export { default as NveMenu } from './components/nve-menu/nve-menu.component';
|
|
12
|
+
export { default as NveMenuItem } from './components/nve-menu-item/nve-menu-item.component';
|
|
9
13
|
export { default as NveRadio } from './components/nve-radio/nve-radio.component';
|
|
10
14
|
export { default as NveRadioButton } from './components/nve-radio-button/nve-radio-button.component';
|
|
11
15
|
export { default as NveRadioGroup } from './components/nve-radio-group/nve-radio-group.component';
|