@nova-design-system/nova-angular 3.0.0-beta.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.
@@ -0,0 +1,18 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ValueAccessor implements ControlValueAccessor {
5
+ protected el: ElementRef;
6
+ private onChange;
7
+ private onTouched;
8
+ protected lastValue: unknown;
9
+ constructor(el: ElementRef);
10
+ writeValue(value: unknown): void;
11
+ handleChangeEvent(value: unknown): void;
12
+ _handleBlurEvent(): void;
13
+ registerOnChange(fn: (value: unknown) => void): void;
14
+ registerOnTouched(fn: () => void): void;
15
+ setDisabledState(isDisabled: boolean): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValueAccessor, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessor, never, never, {}, {}, never, never, false, never>;
18
+ }
@@ -0,0 +1,4 @@
1
+ export * from './lib/nova-components.module';
2
+ export { DIRECTIVES } from './lib/stencil-generated';
3
+ export * from './lib/stencil-generated/components';
4
+ export * from './lib/stencil-generated/component-value-accessors';
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@nova-design-system/nova-angular",
3
+ "version": "3.0.0-beta.16",
4
+ "description": "Nova is a design system created by Elia Group to empower creators to efficiently build solutions that people love to use.",
5
+ "author": "Elia Group",
6
+ "homepage": "https://nova.eliagroup.io",
7
+ "license": "SEE LICENSE IN LICENSE.MD",
8
+ "publishConfig": {
9
+ "registry": "http://registry.npmjs.org/",
10
+ "access": "public"
11
+ },
12
+ "scripts": {
13
+ "ng": "ng",
14
+ "start": "ng serve",
15
+ "build": "ng build",
16
+ "watch": "ng build --watch --configuration development",
17
+ "test": "ng test",
18
+ "clean": "rimraf dist .angular projects/nova-components/src/lib/stencil-generated projects/nova-components/src/stories",
19
+ "storybook": "ng run nova-components:storybook",
20
+ "storybook.build": "ng run nova-components:storybook.build",
21
+ "typecheck": "tsc --emitDeclarationOnly false --noEmit"
22
+ },
23
+ "types": "dist/nova-components/index.d.ts",
24
+ "main": "dist/nova-components/fesm2022/nova-components.mjs",
25
+ "module": "dist/nova-components/esm2022/nova-components.mjs",
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "exports": {
30
+ ".": {
31
+ "import": "./dist/nova-components/fesm2022/nova-components.mjs",
32
+ "require": "./dist/nova-components/esm2022/nova-components.mjs"
33
+ },
34
+ "./public-api": {
35
+ "import": "./dist/nova-components/esm2022/public-api.mjs",
36
+ "require": "./dist/nova-components/esm2022/public-api.mjs"
37
+ }
38
+ },
39
+ "dependencies": {
40
+ "@angular/animations": "^17.3.0",
41
+ "@angular/common": "^17.3.0",
42
+ "@angular/compiler": "^17.3.0",
43
+ "@angular/core": "^17.3.0",
44
+ "@angular/forms": "^17.3.0",
45
+ "@angular/platform-browser": "^17.3.0",
46
+ "@angular/platform-browser-dynamic": "^17.3.0",
47
+ "@angular/router": "^17.3.0",
48
+ "rxjs": "~7.8.0",
49
+ "tslib": "^2.3.0",
50
+ "zone.js": "~0.14.3",
51
+ "nova-storybook-utils": "*",
52
+ "@nova-design-system/nova-base": "*",
53
+ "@nova-design-system/nova-webcomponents": "*"
54
+ },
55
+ "devDependencies": {
56
+ "@angular-devkit/build-angular": "^17.3.7",
57
+ "@angular/cli": "^17.3.7",
58
+ "@angular/compiler-cli": "^17.3.0",
59
+ "karma": "~6.4.0",
60
+ "karma-chrome-launcher": "~3.2.0",
61
+ "karma-coverage": "~2.2.0",
62
+ "karma-jasmine": "~5.1.0",
63
+ "karma-jasmine-html-reporter": "~2.1.0",
64
+ "ng-packagr": "^17.3.0",
65
+ "typescript": "~5.4.2"
66
+ },
67
+ "peerDependencies": {
68
+ "@nova-design-system/nova-webcomponents": ">=3.0.0"
69
+ }
70
+ }