@ngutil/layout 0.0.3-dev.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/.eslintrc.json +25 -0
- package/.storybook/main.ts +16 -0
- package/.storybook/preview.ts +0 -0
- package/.storybook/tsconfig.json +16 -0
- package/README.md +7 -0
- package/jest.config.ts +22 -0
- package/ng-package.json +7 -0
- package/package.json +16 -0
- package/project.json +73 -0
- package/src/index.ts +1 -0
- package/src/lib/layout/layout.component.scss +0 -0
- package/src/lib/layout/layout.component.spec.ts +22 -0
- package/src/lib/layout/layout.component.stories.ts +24 -0
- package/src/lib/layout/layout.component.ts +11 -0
- package/src/test-setup.ts +9 -0
- package/tsconfig.json +32 -0
- package/tsconfig.lib.json +19 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +11 -0
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": ["../../.eslintrc.yml"],
|
|
3
|
+
"ignorePatterns": ["!**/*", "storybook-static"],
|
|
4
|
+
"overrides": [
|
|
5
|
+
{
|
|
6
|
+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
7
|
+
"rules": {}
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"files": ["*.ts", "*.tsx"],
|
|
11
|
+
"rules": {}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"files": ["*.js", "*.jsx"],
|
|
15
|
+
"rules": {}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"files": ["*.json"],
|
|
19
|
+
"parser": "jsonc-eslint-parser",
|
|
20
|
+
"rules": {
|
|
21
|
+
"@nx/dependency-checks": "error"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { StorybookConfig } from "@storybook/angular"
|
|
2
|
+
|
|
3
|
+
const config: StorybookConfig = {
|
|
4
|
+
stories: ["../**/*.stories.@(js|jsx|ts|tsx|mdx)"],
|
|
5
|
+
addons: ["@storybook/addon-essentials", "@storybook/addon-interactions"],
|
|
6
|
+
framework: {
|
|
7
|
+
name: "@storybook/angular",
|
|
8
|
+
options: {}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export default config
|
|
13
|
+
|
|
14
|
+
// To customize your webpack configuration you can use the webpackFinal field.
|
|
15
|
+
// Check https://storybook.js.org/docs/react/builders/webpack#extending-storybooks-webpack-config
|
|
16
|
+
// and https://nx.dev/recipes/storybook/custom-builder-configs
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"emitDecoratorMetadata": true
|
|
5
|
+
},
|
|
6
|
+
"exclude": ["../**/*.spec.ts"],
|
|
7
|
+
"include": [
|
|
8
|
+
"../src/**/*.stories.ts",
|
|
9
|
+
"../src/**/*.stories.js",
|
|
10
|
+
"../src/**/*.stories.jsx",
|
|
11
|
+
"../src/**/*.stories.tsx",
|
|
12
|
+
"../src/**/*.stories.mdx",
|
|
13
|
+
"*.js",
|
|
14
|
+
"*.ts"
|
|
15
|
+
]
|
|
16
|
+
}
|
package/README.md
ADDED
package/jest.config.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
export default {
|
|
3
|
+
displayName: "layout",
|
|
4
|
+
preset: "../../jest.preset.js",
|
|
5
|
+
setupFilesAfterEnv: ["<rootDir>/src/test-setup.ts"],
|
|
6
|
+
coverageDirectory: "../../coverage/packages/layout",
|
|
7
|
+
transform: {
|
|
8
|
+
"^.+\\.(ts|mjs|js|html)$": [
|
|
9
|
+
"jest-preset-angular",
|
|
10
|
+
{
|
|
11
|
+
tsconfig: "<rootDir>/tsconfig.spec.json",
|
|
12
|
+
stringifyContentPathRegex: "\\.(html|svg)$"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
transformIgnorePatterns: ["node_modules/(?!.*\\.mjs$)"],
|
|
17
|
+
snapshotSerializers: [
|
|
18
|
+
"jest-preset-angular/build/serializers/no-ng-attributes",
|
|
19
|
+
"jest-preset-angular/build/serializers/ng-snapshot",
|
|
20
|
+
"jest-preset-angular/build/serializers/html-comment"
|
|
21
|
+
]
|
|
22
|
+
}
|
package/ng-package.json
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ngutil/layout",
|
|
3
|
+
"version": "0.0.3-dev.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"peerDependencies": {
|
|
8
|
+
"@angular/common": "^17.1.0",
|
|
9
|
+
"@angular/core": "^17.1.0",
|
|
10
|
+
"@ngutil/aria": "^0.0.3-dev.0"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"tslib": "^2.3.0"
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": false
|
|
16
|
+
}
|
package/project.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "layout",
|
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
+
"sourceRoot": "packages/layout/src",
|
|
5
|
+
"prefix": "nu",
|
|
6
|
+
"tags": [],
|
|
7
|
+
"projectType": "library",
|
|
8
|
+
"targets": {
|
|
9
|
+
"build": {
|
|
10
|
+
"executor": "@nx/angular:package",
|
|
11
|
+
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
|
|
12
|
+
"options": {
|
|
13
|
+
"project": "packages/layout/ng-package.json"
|
|
14
|
+
},
|
|
15
|
+
"configurations": {
|
|
16
|
+
"production": {
|
|
17
|
+
"tsConfig": "packages/layout/tsconfig.lib.prod.json"
|
|
18
|
+
},
|
|
19
|
+
"development": {
|
|
20
|
+
"tsConfig": "packages/layout/tsconfig.lib.json"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"defaultConfiguration": "production"
|
|
24
|
+
},
|
|
25
|
+
"storybook": {
|
|
26
|
+
"executor": "@storybook/angular:start-storybook",
|
|
27
|
+
"options": {
|
|
28
|
+
"port": 4400,
|
|
29
|
+
"configDir": "packages/layout/.storybook",
|
|
30
|
+
"browserTarget": "layout:build-storybook",
|
|
31
|
+
"compodoc": false
|
|
32
|
+
},
|
|
33
|
+
"configurations": {
|
|
34
|
+
"ci": {
|
|
35
|
+
"quiet": true
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"build-storybook": {
|
|
40
|
+
"executor": "@storybook/angular:build-storybook",
|
|
41
|
+
"outputs": ["{options.outputDir}"],
|
|
42
|
+
"options": {
|
|
43
|
+
"outputDir": "dist/storybook/layout",
|
|
44
|
+
"configDir": "packages/layout/.storybook",
|
|
45
|
+
"browserTarget": "layout:build-storybook",
|
|
46
|
+
"compodoc": false
|
|
47
|
+
},
|
|
48
|
+
"configurations": {
|
|
49
|
+
"ci": {
|
|
50
|
+
"quiet": true
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"test-storybook": {
|
|
55
|
+
"executor": "nx:run-commands",
|
|
56
|
+
"options": {
|
|
57
|
+
"command": "test-storybook -c packages/layout/.storybook --url=http://localhost:4400"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"static-storybook": {
|
|
61
|
+
"executor": "@nx/web:file-server",
|
|
62
|
+
"options": {
|
|
63
|
+
"buildTarget": "layout:build-storybook",
|
|
64
|
+
"staticFilePath": "dist/storybook/layout"
|
|
65
|
+
},
|
|
66
|
+
"configurations": {
|
|
67
|
+
"ci": {
|
|
68
|
+
"buildTarget": "layout:build-storybook:ci"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./lib/layout/layout.component"
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from "@angular/core/testing"
|
|
2
|
+
|
|
3
|
+
import { LayoutComponent } from "./layout.component"
|
|
4
|
+
|
|
5
|
+
describe("LayoutComponent", () => {
|
|
6
|
+
let component: LayoutComponent
|
|
7
|
+
let fixture: ComponentFixture<LayoutComponent>
|
|
8
|
+
|
|
9
|
+
beforeEach(async () => {
|
|
10
|
+
await TestBed.configureTestingModule({
|
|
11
|
+
imports: [LayoutComponent]
|
|
12
|
+
}).compileComponents()
|
|
13
|
+
|
|
14
|
+
fixture = TestBed.createComponent(LayoutComponent)
|
|
15
|
+
component = fixture.componentInstance
|
|
16
|
+
fixture.detectChanges()
|
|
17
|
+
})
|
|
18
|
+
|
|
19
|
+
it("should create", () => {
|
|
20
|
+
expect(component).toBeTruthy()
|
|
21
|
+
})
|
|
22
|
+
})
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from "@storybook/angular"
|
|
2
|
+
import { expect } from "@storybook/jest"
|
|
3
|
+
import { within } from "@storybook/testing-library"
|
|
4
|
+
|
|
5
|
+
import { LayoutComponent } from "./layout.component"
|
|
6
|
+
|
|
7
|
+
const meta: Meta<LayoutComponent> = {
|
|
8
|
+
component: LayoutComponent,
|
|
9
|
+
title: "LayoutComponent"
|
|
10
|
+
}
|
|
11
|
+
export default meta
|
|
12
|
+
type Story = StoryObj<LayoutComponent>
|
|
13
|
+
|
|
14
|
+
export const Primary: Story = {
|
|
15
|
+
args: {}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export const Heading: Story = {
|
|
19
|
+
args: {},
|
|
20
|
+
play: async ({ canvasElement }) => {
|
|
21
|
+
const canvas = within(canvasElement)
|
|
22
|
+
expect(canvas.getByText(/layout works!/gi)).toBeTruthy()
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CommonModule } from "@angular/common"
|
|
2
|
+
import { Component } from "@angular/core"
|
|
3
|
+
|
|
4
|
+
@Component({
|
|
5
|
+
selector: "nu-layout",
|
|
6
|
+
standalone: true,
|
|
7
|
+
imports: [CommonModule],
|
|
8
|
+
template: `<p>layout works!</p>`,
|
|
9
|
+
styleUrl: "./layout.component.scss"
|
|
10
|
+
})
|
|
11
|
+
export class LayoutComponent {}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import "jest-preset-angular/setup-jest"
|
|
2
|
+
|
|
3
|
+
// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
|
|
4
|
+
globalThis.ngJest = {
|
|
5
|
+
testEnvironmentOptions: {
|
|
6
|
+
errorOnUnknownElements: true,
|
|
7
|
+
errorOnUnknownProperties: true
|
|
8
|
+
}
|
|
9
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es2022",
|
|
4
|
+
"useDefineForClassFields": false,
|
|
5
|
+
"forceConsistentCasingInFileNames": true,
|
|
6
|
+
"strict": true,
|
|
7
|
+
"noImplicitOverride": true,
|
|
8
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
9
|
+
"noImplicitReturns": true,
|
|
10
|
+
"noFallthroughCasesInSwitch": true
|
|
11
|
+
},
|
|
12
|
+
"files": [],
|
|
13
|
+
"include": [],
|
|
14
|
+
"references": [
|
|
15
|
+
{
|
|
16
|
+
"path": "./tsconfig.lib.json"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"path": "./tsconfig.spec.json"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"path": "./.storybook/tsconfig.json"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"extends": "../../tsconfig.base.json",
|
|
26
|
+
"angularCompilerOptions": {
|
|
27
|
+
"enableI18nLegacyMessageIdFormat": false,
|
|
28
|
+
"strictInjectionParameters": true,
|
|
29
|
+
"strictInputAccessModifiers": true,
|
|
30
|
+
"strictTemplates": true
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../dist/out-tsc",
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"declarationMap": true,
|
|
7
|
+
"inlineSources": true,
|
|
8
|
+
"types": []
|
|
9
|
+
},
|
|
10
|
+
"exclude": [
|
|
11
|
+
"src/**/*.spec.ts",
|
|
12
|
+
"src/test-setup.ts",
|
|
13
|
+
"jest.config.ts",
|
|
14
|
+
"src/**/*.test.ts",
|
|
15
|
+
"**/*.stories.ts",
|
|
16
|
+
"**/*.stories.js"
|
|
17
|
+
],
|
|
18
|
+
"include": ["src/**/*.ts"]
|
|
19
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "../../dist/out-tsc",
|
|
5
|
+
"module": "commonjs",
|
|
6
|
+
"target": "es2016",
|
|
7
|
+
"types": ["jest", "node"]
|
|
8
|
+
},
|
|
9
|
+
"files": ["src/test-setup.ts"],
|
|
10
|
+
"include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts"]
|
|
11
|
+
}
|