@smuikit/angular 0.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/.turbo/turbo-build.log +29 -0
- package/.turbo/turbo-test.log +13 -0
- package/dist/fesm2022/smui-angular.mjs +1054 -0
- package/dist/fesm2022/smui-angular.mjs.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/lib/components/button/button.component.d.ts +26 -0
- package/dist/lib/components/card/card.component.d.ts +30 -0
- package/dist/lib/components/input/input.component.d.ts +30 -0
- package/dist/lib/components/modal/modal.component.d.ts +30 -0
- package/dist/lib/components/typography/typography.component.d.ts +20 -0
- package/dist/lib/normalize-props.d.ts +24 -0
- package/dist/lib/smui.module.d.ts +18 -0
- package/dist/lib/theme.service.d.ts +45 -0
- package/dist/lib/use-machine.service.d.ts +21 -0
- package/dist/public-api.d.ts +9 -0
- package/jest.config.ts +24 -0
- package/ng-package.json +9 -0
- package/package.json +40 -0
- package/src/lib/components/button/button.component.ts +161 -0
- package/src/lib/components/card/card.component.ts +197 -0
- package/src/lib/components/input/input.component.ts +197 -0
- package/src/lib/components/modal/modal.component.ts +216 -0
- package/src/lib/components/typography/typography.component.ts +120 -0
- package/src/lib/normalize-props.ts +112 -0
- package/src/lib/smui.module.ts +43 -0
- package/src/lib/theme.service.ts +87 -0
- package/src/lib/use-machine.service.ts +51 -0
- package/src/public-api.ts +21 -0
- package/src/setup-jest.ts +1 -0
- package/tsconfig.json +21 -0
- package/tsconfig.lib.json +13 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
|
|
2
|
+
> @smui/angular@0.1.0 build /Users/sunnymishra/Documents/custom-ui-kit/packages/angular
|
|
3
|
+
> ng-packagr -p ng-package.json
|
|
4
|
+
|
|
5
|
+
Building Angular Package
|
|
6
|
+
|
|
7
|
+
------------------------------------------------------------------------------
|
|
8
|
+
Building entry point '@smui/angular'
|
|
9
|
+
------------------------------------------------------------------------------
|
|
10
|
+
- Compiling with Angular sources in Ivy partial compilation mode.
|
|
11
|
+
✔ Compiling with Angular sources in Ivy partial compilation mode.
|
|
12
|
+
- Writing FESM bundles
|
|
13
|
+
✔ Writing FESM bundles
|
|
14
|
+
- Copying assets
|
|
15
|
+
✔ Copying assets
|
|
16
|
+
- Writing package manifest
|
|
17
|
+
ℹ Removing scripts section in package.json as it's considered a potential security vulnerability.
|
|
18
|
+
ℹ Removing devDependencies section in package.json.
|
|
19
|
+
✔ Writing package manifest
|
|
20
|
+
✔ Built @smui/angular
|
|
21
|
+
|
|
22
|
+
------------------------------------------------------------------------------
|
|
23
|
+
Built Angular Package
|
|
24
|
+
- from: /Users/sunnymishra/Documents/custom-ui-kit/packages/angular
|
|
25
|
+
- to: /Users/sunnymishra/Documents/custom-ui-kit/packages/angular/dist
|
|
26
|
+
------------------------------------------------------------------------------
|
|
27
|
+
|
|
28
|
+
Build at: 2026-03-14T14:53:36.239Z - Time: 2299ms
|
|
29
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
> @smui/angular@0.1.0 test /Users/sunnymishra/Documents/custom-ui-kit/packages/angular
|
|
3
|
+
> jest --config jest.config.ts --passWithNoTests
|
|
4
|
+
|
|
5
|
+
jest-haste-map: Watchman crawl failed. Retrying once with node crawler.
|
|
6
|
+
Usually this happens when watchman isn't running. Create an empty `.watchmanconfig` file in your project's root folder or initialize a git or hg repository in your project.
|
|
7
|
+
Error: Watchman error: The watchman connection was closed. Make sure watchman is running for this project. See https://facebook.github.io/watchman/docs/troubleshooting.
|
|
8
|
+
jest-haste-map: Haste module naming collision: @smui/angular
|
|
9
|
+
The following files share their name; please adjust your hasteImpl:
|
|
10
|
+
* <rootDir>/package.json
|
|
11
|
+
* <rootDir>/dist/package.json
|
|
12
|
+
|
|
13
|
+
No tests found, exiting with code 0
|