xt-plugin-intl 0.6.0 → 0.6.2
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/fesm2022/xt-plugin-intl.mjs +126 -0
- package/fesm2022/xt-plugin-intl.mjs.map +1 -0
- package/index.d.ts +34 -0
- package/package.json +29 -55
- package/.editorconfig +0 -16
- package/.postcssrc.json +0 -1
- package/.rush/temp/chunked-rush-logs/xt-plugin-i11l.build.chunks.jsonl +0 -23
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build-deploy-latest.chunks.jsonl +0 -80
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build-deploy-next.chunks.jsonl +0 -29
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.build.chunks.jsonl +0 -24
- package/.rush/temp/chunked-rush-logs/xt-plugin-intl.test.chunks.jsonl +0 -50
- package/.rush/temp/package-deps_test.json +0 -53
- package/.rush/temp/shrinkwrap-deps.json +0 -1083
- package/CHANGELOG.md +0 -13
- package/angular.json +0 -163
- package/projects/intl/README.md +0 -8
- package/projects/intl/ng-package.json +0 -7
- package/projects/intl/node_modules/.vite/results.json +0 -1
- package/projects/intl/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +0 -1
- package/projects/intl/package.json +0 -22
- package/projects/intl/src/lib/country/intl-country.component.css +0 -0
- package/projects/intl/src/lib/country/intl-country.component.html +0 -24
- package/projects/intl/src/lib/country/intl-country.component.spec.ts +0 -33
- package/projects/intl/src/lib/country/intl-country.component.ts +0 -66
- package/projects/intl/src/lib/currency/intl-currency.component.css +0 -0
- package/projects/intl/src/lib/currency/intl-currency.component.html +0 -7
- package/projects/intl/src/lib/currency/intl-currency.component.spec.ts +0 -74
- package/projects/intl/src/lib/currency/intl-currency.component.ts +0 -46
- package/projects/intl/src/lib/register.ts +0 -36
- package/projects/intl/src/public-api.ts +0 -8
- package/projects/intl/src/test-setup.ts +0 -18
- package/projects/intl/tsconfig.lib.json +0 -14
- package/projects/intl/tsconfig.lib.prod.json +0 -11
- package/projects/intl/tsconfig.spec.json +0 -18
- package/projects/intl/vitest.config.ts +0 -19
- package/projects/intl-plugin/federation.config.js +0 -44
- package/projects/intl-plugin/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +0 -1
- package/projects/intl-plugin/public/favicon.ico +0 -0
- package/projects/intl-plugin/public/pluginicon.png +0 -0
- package/projects/intl-plugin/src/app/app.component.css +0 -0
- package/projects/intl-plugin/src/app/app.component.html +0 -3
- package/projects/intl-plugin/src/app/app.component.spec.ts +0 -33
- package/projects/intl-plugin/src/app/app.component.ts +0 -23
- package/projects/intl-plugin/src/app/app.config.ts +0 -19
- package/projects/intl-plugin/src/app/app.routes.ts +0 -7
- package/projects/intl-plugin/src/app/test-component/test.component.css +0 -0
- package/projects/intl-plugin/src/app/test-component/test.component.html +0 -28
- package/projects/intl-plugin/src/app/test-component/test.component.spec.ts +0 -30
- package/projects/intl-plugin/src/app/test-component/test.component.ts +0 -53
- package/projects/intl-plugin/src/bootstrap.ts +0 -6
- package/projects/intl-plugin/src/index.html +0 -13
- package/projects/intl-plugin/src/main.ts +0 -6
- package/projects/intl-plugin/src/styles.css +0 -4
- package/projects/intl-plugin/src/test-setup.ts +0 -18
- package/projects/intl-plugin/tsconfig.app.json +0 -15
- package/projects/intl-plugin/tsconfig.federation.json +0 -13
- package/projects/intl-plugin/tsconfig.spec.json +0 -18
- package/projects/intl-plugin/vitest.config.ts +0 -19
- package/rush-logs/xt-plugin-i11l.build.error.log +0 -8
- package/rush-logs/xt-plugin-i11l.build.log +0 -23
- package/rush-logs/xt-plugin-intl.build-deploy-latest.error.log +0 -43
- package/rush-logs/xt-plugin-intl.build-deploy-latest.log +0 -80
- package/rush-logs/xt-plugin-intl.build-deploy-next.error.log +0 -10
- package/rush-logs/xt-plugin-intl.build-deploy-next.log +0 -29
- package/rush-logs/xt-plugin-intl.build.error.log +0 -9
- package/rush-logs/xt-plugin-intl.build.log +0 -24
- package/rush-logs/xt-plugin-intl.test.log +0 -50
- package/tsconfig.json +0 -36
|
Binary file
|
|
File without changes
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { TestBed } from '@angular/core/testing';
|
|
2
|
-
import { AppComponent } from './app.component';
|
|
3
|
-
import { provideZonelessChangeDetection } from '@angular/core';
|
|
4
|
-
import { beforeEach, describe, expect, it } from 'vitest';
|
|
5
|
-
|
|
6
|
-
describe('AppComponent', () => {
|
|
7
|
-
|
|
8
|
-
beforeEach(async () => {
|
|
9
|
-
await TestBed.configureTestingModule({
|
|
10
|
-
imports: [AppComponent],
|
|
11
|
-
providers: [provideZonelessChangeDetection()]
|
|
12
|
-
}).compileComponents();
|
|
13
|
-
});
|
|
14
|
-
|
|
15
|
-
it('should create the app', () => {
|
|
16
|
-
const fixture = TestBed.createComponent(AppComponent);
|
|
17
|
-
const app = fixture.componentInstance;
|
|
18
|
-
expect(app).toBeTruthy();
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
it(`should have the 'test' title`, () => {
|
|
22
|
-
const fixture = TestBed.createComponent(AppComponent);
|
|
23
|
-
const app = fixture.componentInstance;
|
|
24
|
-
expect(app.title).toEqual('SampleTester');
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
it('should render title', () => {
|
|
28
|
-
const fixture = TestBed.createComponent(AppComponent);
|
|
29
|
-
fixture.detectChanges();
|
|
30
|
-
const compiled = fixture.nativeElement as HTMLElement;
|
|
31
|
-
expect(compiled.querySelector('h1')?.textContent).toContain('Testing app');
|
|
32
|
-
});
|
|
33
|
-
});
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { Component, inject } from '@angular/core';
|
|
2
|
-
import { RouterOutlet } from '@angular/router';
|
|
3
|
-
import { ButtonModule } from 'primeng/button';
|
|
4
|
-
import { ToolbarModule } from 'primeng/toolbar';
|
|
5
|
-
import { XtResolverService } from 'xt-components';
|
|
6
|
-
import { registerInternationalPlugin } from '../../../intl/src/lib/register';
|
|
7
|
-
|
|
8
|
-
@Component({
|
|
9
|
-
selector: 'app-root',
|
|
10
|
-
standalone: true,
|
|
11
|
-
imports: [RouterOutlet, ToolbarModule, ButtonModule],
|
|
12
|
-
templateUrl: './app.component.html',
|
|
13
|
-
styleUrl: './app.component.css'
|
|
14
|
-
})
|
|
15
|
-
export class AppComponent {
|
|
16
|
-
title = 'SampleTester';
|
|
17
|
-
|
|
18
|
-
protected resolverService = inject (XtResolverService);
|
|
19
|
-
|
|
20
|
-
constructor () {
|
|
21
|
-
registerInternationalPlugin(this.resolverService);
|
|
22
|
-
}
|
|
23
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ApplicationConfig, provideZonelessChangeDetection} from '@angular/core';
|
|
2
|
-
import { provideRouter } from '@angular/router';
|
|
3
|
-
|
|
4
|
-
import { routes } from './app.routes';
|
|
5
|
-
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
|
6
|
-
import { providePrimeNG } from 'primeng/config';
|
|
7
|
-
import Aura from '@primeuix/themes/aura';
|
|
8
|
-
|
|
9
|
-
export const appConfig: ApplicationConfig = {
|
|
10
|
-
providers: [
|
|
11
|
-
provideZonelessChangeDetection(),
|
|
12
|
-
provideAnimationsAsync(),
|
|
13
|
-
providePrimeNG({
|
|
14
|
-
theme: {
|
|
15
|
-
preset: Aura
|
|
16
|
-
}
|
|
17
|
-
}),
|
|
18
|
-
provideRouter(routes)]
|
|
19
|
-
};
|
|
File without changes
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<h2>Testing International components</h2>
|
|
2
|
-
|
|
3
|
-
<div class="grid grid-cols-2 gap-4">
|
|
4
|
-
<div>
|
|
5
|
-
<form [formGroup]="currencyForm">
|
|
6
|
-
<label for="currency">Please select a currency</label>
|
|
7
|
-
<xt-render id="currency" displayMode="FULL_EDITABLE" [formGroup]="currencyForm" subName="currency" [componentType]="IntlCurrencyComponent" (outputs)="outputChanged($event)" ></xt-render>
|
|
8
|
-
</form>
|
|
9
|
-
<br/>
|
|
10
|
-
Form Value is {{currencyForm.value | json}}, Form is {{currencyForm.pristine?"pristine":"Dirty"}}
|
|
11
|
-
<br/>
|
|
12
|
-
Last currency selected : {{lastCurrencySelected()}}
|
|
13
|
-
</div>
|
|
14
|
-
<div>
|
|
15
|
-
<form [formGroup]="countryForm">
|
|
16
|
-
<label for="currency">Please select a country</label>
|
|
17
|
-
<xt-render id="country" displayMode="FULL_EDITABLE" [formGroup]="countryForm" subName="country" [componentType]="IntlCountryComponent" (outputs)="countryChanged($event)" ></xt-render>
|
|
18
|
-
</form>
|
|
19
|
-
<br/>
|
|
20
|
-
Form Value is {{countryForm.value | json}}, Form is {{countryForm.pristine?"pristine":"Dirty"}}
|
|
21
|
-
<br/>
|
|
22
|
-
@let lastCountry = lastCountrySelected();
|
|
23
|
-
Last currency selected :
|
|
24
|
-
@if (lastCountry!=null) {
|
|
25
|
-
<br /><xt-render id="countryview" displayMode="FULL_VIEW" [componentType]="IntlCountryComponent" [value]="lastCountry" ></xt-render>
|
|
26
|
-
}
|
|
27
|
-
</div>
|
|
28
|
-
</div>
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { TestComponent } from './test.component';
|
|
4
|
-
import { provideZonelessChangeDetection } from '@angular/core';
|
|
5
|
-
import { beforeEach, describe, expect, it } from 'vitest';
|
|
6
|
-
import { XtResolverService } from 'xt-components';
|
|
7
|
-
import { registerInternationalPlugin } from '../../../../intl/src/lib/register';
|
|
8
|
-
|
|
9
|
-
describe('TestComponent', () => {
|
|
10
|
-
let component: TestComponent;
|
|
11
|
-
let fixture: ComponentFixture<TestComponent>;
|
|
12
|
-
|
|
13
|
-
beforeEach(async () => {
|
|
14
|
-
await TestBed.configureTestingModule({
|
|
15
|
-
imports: [TestComponent],
|
|
16
|
-
providers: [provideZonelessChangeDetection()]
|
|
17
|
-
})
|
|
18
|
-
.compileComponents();
|
|
19
|
-
|
|
20
|
-
registerInternationalPlugin(TestBed.inject(XtResolverService));
|
|
21
|
-
|
|
22
|
-
fixture = TestBed.createComponent(TestComponent);
|
|
23
|
-
component = fixture.componentInstance;
|
|
24
|
-
fixture.detectChanges();
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
it('should create', () => {
|
|
28
|
-
expect(component).toBeTruthy();
|
|
29
|
-
});
|
|
30
|
-
});
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, inject, signal } from '@angular/core';
|
|
2
|
-
import { XtComponentOutput, XtRenderComponent } from 'xt-components';
|
|
3
|
-
import { FormBuilder, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
import { JsonPipe } from '@angular/common';
|
|
5
|
-
import { IntlCurrencyComponent } from '../../../../intl/src/lib/currency/intl-currency.component';
|
|
6
|
-
import { IntlCountryComponent } from '../../../../intl/src/lib/country/intl-country.component';
|
|
7
|
-
|
|
8
|
-
@Component({
|
|
9
|
-
selector: 'app-plugin-tester-component',
|
|
10
|
-
standalone: true,
|
|
11
|
-
imports: [ReactiveFormsModule, XtRenderComponent, FormsModule, JsonPipe],
|
|
12
|
-
templateUrl: './test.component.html',
|
|
13
|
-
styleUrl: './test.component.css',
|
|
14
|
-
changeDetection: ChangeDetectionStrategy.OnPush
|
|
15
|
-
})
|
|
16
|
-
export class TestComponent {
|
|
17
|
-
|
|
18
|
-
builder = inject(FormBuilder);
|
|
19
|
-
|
|
20
|
-
currencyForm = this.builder.group ({
|
|
21
|
-
currency: ['EUR']
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
countryForm = this.builder.group ({
|
|
25
|
-
country: ['FRA']
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
lastCurrencySelected=signal<string|undefined>(undefined)
|
|
29
|
-
lastCountrySelected=signal<string|undefined>(undefined)
|
|
30
|
-
|
|
31
|
-
constructor () {
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
protected readonly IntlCurrencyComponent = IntlCurrencyComponent;
|
|
35
|
-
|
|
36
|
-
outputChanged(newValue: XtComponentOutput | null) {
|
|
37
|
-
if( newValue?.valueSelected!=null) {
|
|
38
|
-
newValue?.valueSelected.subscribe (selected => {
|
|
39
|
-
this.lastCurrencySelected.set(selected);
|
|
40
|
-
})
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
countryChanged(newValue: XtComponentOutput | null) {
|
|
45
|
-
if( newValue?.valueSelected!=null) {
|
|
46
|
-
newValue?.valueSelected.subscribe (selected => {
|
|
47
|
-
this.lastCountrySelected.set(selected);
|
|
48
|
-
})
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
protected readonly IntlCountryComponent = IntlCountryComponent;
|
|
53
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<title>Test</title>
|
|
6
|
-
<base href="/">
|
|
7
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
|
-
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<app-root></app-root>
|
|
12
|
-
</body>
|
|
13
|
-
</html>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import "@angular/compiler";
|
|
2
|
-
|
|
3
|
-
import { BrowserTestingModule, platformBrowserTesting } from '@angular/platform-browser/testing';
|
|
4
|
-
|
|
5
|
-
import { getTestBed } from '@angular/core/testing';
|
|
6
|
-
import { NgModule, provideZonelessChangeDetection } from '@angular/core';
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
@NgModule({
|
|
10
|
-
imports: [BrowserTestingModule],
|
|
11
|
-
providers: [provideZonelessChangeDetection()],
|
|
12
|
-
})
|
|
13
|
-
export class TestingModule {}
|
|
14
|
-
|
|
15
|
-
getTestBed().initTestEnvironment(
|
|
16
|
-
[TestingModule],
|
|
17
|
-
platformBrowserTesting()
|
|
18
|
-
);
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
-
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
-
{
|
|
4
|
-
"extends": "../../tsconfig.json",
|
|
5
|
-
"compilerOptions": {
|
|
6
|
-
"outDir": "../../out-tsc/app",
|
|
7
|
-
"types": []
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"src/main.ts"
|
|
11
|
-
],
|
|
12
|
-
"include": [
|
|
13
|
-
"src/**/*.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
-
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
-
{
|
|
4
|
-
"extends": "../../tsconfig.json",
|
|
5
|
-
"compilerOptions": {
|
|
6
|
-
"outDir": "../../out-tsc/spec",
|
|
7
|
-
"target": "es2016",
|
|
8
|
-
"types": [
|
|
9
|
-
"vitest/globals","node"
|
|
10
|
-
],
|
|
11
|
-
"emitDecoratorMetadata": true
|
|
12
|
-
},
|
|
13
|
-
"files": ["src/test-setup.ts"],
|
|
14
|
-
"include": [
|
|
15
|
-
"src/**/*.spec.ts",
|
|
16
|
-
"src/**/*.d.ts"
|
|
17
|
-
]
|
|
18
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/// <reference types="vitest" />
|
|
2
|
-
import { defineConfig } from 'vite';
|
|
3
|
-
|
|
4
|
-
import angular from '@analogjs/vite-plugin-angular';
|
|
5
|
-
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
6
|
-
|
|
7
|
-
export default defineConfig(({ mode }) => ({
|
|
8
|
-
plugins: [angular(), tsconfigPaths()],
|
|
9
|
-
test: {
|
|
10
|
-
globals: true,
|
|
11
|
-
setupFiles: ['src/test-setup.ts'],
|
|
12
|
-
environment: 'jsdom',
|
|
13
|
-
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
14
|
-
reporters: ['default']
|
|
15
|
-
},
|
|
16
|
-
define: {
|
|
17
|
-
'import.meta.vitest': mode !== 'production',
|
|
18
|
-
},
|
|
19
|
-
}));
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
- Compiling with Angular sources in Ivy full compilation mode.
|
|
2
|
-
✔ Compiling with Angular sources in Ivy full compilation mode.
|
|
3
|
-
✔ Generating FESM bundles
|
|
4
|
-
- Copying assets
|
|
5
|
-
✔ Copying assets
|
|
6
|
-
- Writing package manifest
|
|
7
|
-
✔ Writing package manifest
|
|
8
|
-
✔ Built xt-plugin-i11l
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
Invoking: ng build i11l --configuration=development
|
|
2
|
-
Building Angular Package
|
|
3
|
-
|
|
4
|
-
------------------------------------------------------------------------------
|
|
5
|
-
Building entry point 'xt-plugin-i11l'
|
|
6
|
-
------------------------------------------------------------------------------
|
|
7
|
-
- Compiling with Angular sources in Ivy full compilation mode.
|
|
8
|
-
✔ Compiling with Angular sources in Ivy full compilation mode.
|
|
9
|
-
✔ Generating FESM bundles
|
|
10
|
-
- Copying assets
|
|
11
|
-
✔ Copying assets
|
|
12
|
-
- Writing package manifest
|
|
13
|
-
✔ Writing package manifest
|
|
14
|
-
✔ Built xt-plugin-i11l
|
|
15
|
-
|
|
16
|
-
------------------------------------------------------------------------------
|
|
17
|
-
Built Angular Package
|
|
18
|
-
- from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-i11l/projects/i11l
|
|
19
|
-
- to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-i11l/dist/xt-plugin-i11l
|
|
20
|
-
------------------------------------------------------------------------------
|
|
21
|
-
|
|
22
|
-
Build at: 2025-07-14T12:59:15.159Z - Time: 6131ms
|
|
23
|
-
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
- Compiling with Angular sources in partial compilation mode.
|
|
2
|
-
✔ Compiling with Angular sources in partial compilation mode.
|
|
3
|
-
- Writing FESM and DTS bundles
|
|
4
|
-
✔ Writing FESM and DTS bundles
|
|
5
|
-
- Copying assets
|
|
6
|
-
✔ Copying assets
|
|
7
|
-
- Writing package manifest
|
|
8
|
-
✔ Writing package manifest
|
|
9
|
-
✔ Built xt-plugin-intl
|
|
10
|
-
WARN No entry point found for @primeuix/utils/zindex
|
|
11
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
12
|
-
WARN No meta data found for shared lib @primeuix/utils/zindex
|
|
13
|
-
WARN No entry point found for @primeuix/utils/uuid
|
|
14
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
15
|
-
WARN No meta data found for shared lib @primeuix/utils/uuid
|
|
16
|
-
WARN No entry point found for @primeuix/utils/object
|
|
17
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
18
|
-
WARN No meta data found for shared lib @primeuix/utils/object
|
|
19
|
-
WARN No entry point found for @primeuix/utils/mergeprops
|
|
20
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
21
|
-
WARN No meta data found for shared lib @primeuix/utils/mergeprops
|
|
22
|
-
WARN No entry point found for @primeuix/utils/eventbus
|
|
23
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
24
|
-
WARN No meta data found for shared lib @primeuix/utils/eventbus
|
|
25
|
-
WARN No entry point found for @primeuix/utils/dom
|
|
26
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
27
|
-
WARN No meta data found for shared lib @primeuix/utils/dom
|
|
28
|
-
WARN No entry point found for @primeuix/utils/classnames
|
|
29
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
30
|
-
WARN No meta data found for shared lib @primeuix/utils/classnames
|
|
31
|
-
WARN No meta data found for shared lib @primeuix/styles/base
|
|
32
|
-
WARN No meta data found for shared lib @primeuix/styles/toolbar
|
|
33
|
-
WARN No meta data found for shared lib @primeuix/styles/button
|
|
34
|
-
WARN No meta data found for shared lib @primeuix/styles/ripple
|
|
35
|
-
WARN No meta data found for shared lib @primeuix/styles/badge
|
|
36
|
-
WARN No meta data found for shared lib @primeuix/styles/inputtext
|
|
37
|
-
WARN No meta data found for shared lib @primeuix/styles/inputnumber
|
|
38
|
-
WARN No meta data found for shared lib @primeuix/styles/autocomplete
|
|
39
|
-
WARN No meta data found for shared lib @primeuix/styles/chip
|
|
40
|
-
WARN No meta data found for shared lib eta/core
|
|
41
|
-
WARN No entry point found for @primeuix/themes/aura
|
|
42
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
43
|
-
WARN No meta data found for shared lib @primeuix/themes/aura
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
Invoking: BUILD=production STAGE=latest npm run build-deploy
|
|
2
|
-
|
|
3
|
-
> xt-plugin-intl@0.5.5 build-deploy
|
|
4
|
-
> APP=intl-plugin && MAIN_LIB=intl && ng build $MAIN_LIB --configuration=$BUILD && ng build $APP --configuration=$BUILD --output-path="../../dist/$STAGE/$APP" --base-href="https://test.dont-code.net/apps/$STAGE/$APP/"
|
|
5
|
-
|
|
6
|
-
Building Angular Package
|
|
7
|
-
|
|
8
|
-
------------------------------------------------------------------------------
|
|
9
|
-
Building entry point 'xt-plugin-intl'
|
|
10
|
-
------------------------------------------------------------------------------
|
|
11
|
-
- Compiling with Angular sources in partial compilation mode.
|
|
12
|
-
✔ Compiling with Angular sources in partial compilation mode.
|
|
13
|
-
- Writing FESM and DTS bundles
|
|
14
|
-
✔ Writing FESM and DTS bundles
|
|
15
|
-
- Copying assets
|
|
16
|
-
✔ Copying assets
|
|
17
|
-
- Writing package manifest
|
|
18
|
-
✔ Writing package manifest
|
|
19
|
-
✔ Built xt-plugin-intl
|
|
20
|
-
|
|
21
|
-
------------------------------------------------------------------------------
|
|
22
|
-
Built Angular Package
|
|
23
|
-
- from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl
|
|
24
|
-
- to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl
|
|
25
|
-
------------------------------------------------------------------------------
|
|
26
|
-
|
|
27
|
-
Build at: 2026-01-07T09:09:09.613Z - Time: 5162ms
|
|
28
|
-
|
|
29
|
-
WARN No entry point found for @primeuix/utils/zindex
|
|
30
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
31
|
-
WARN No meta data found for shared lib @primeuix/utils/zindex
|
|
32
|
-
WARN No entry point found for @primeuix/utils/uuid
|
|
33
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
34
|
-
WARN No meta data found for shared lib @primeuix/utils/uuid
|
|
35
|
-
WARN No entry point found for @primeuix/utils/object
|
|
36
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
37
|
-
WARN No meta data found for shared lib @primeuix/utils/object
|
|
38
|
-
WARN No entry point found for @primeuix/utils/mergeprops
|
|
39
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
40
|
-
WARN No meta data found for shared lib @primeuix/utils/mergeprops
|
|
41
|
-
WARN No entry point found for @primeuix/utils/eventbus
|
|
42
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
43
|
-
WARN No meta data found for shared lib @primeuix/utils/eventbus
|
|
44
|
-
WARN No entry point found for @primeuix/utils/dom
|
|
45
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
46
|
-
WARN No meta data found for shared lib @primeuix/utils/dom
|
|
47
|
-
WARN No entry point found for @primeuix/utils/classnames
|
|
48
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
49
|
-
WARN No meta data found for shared lib @primeuix/utils/classnames
|
|
50
|
-
WARN No meta data found for shared lib @primeuix/styles/base
|
|
51
|
-
WARN No meta data found for shared lib @primeuix/styles/toolbar
|
|
52
|
-
WARN No meta data found for shared lib @primeuix/styles/button
|
|
53
|
-
WARN No meta data found for shared lib @primeuix/styles/ripple
|
|
54
|
-
WARN No meta data found for shared lib @primeuix/styles/badge
|
|
55
|
-
WARN No meta data found for shared lib @primeuix/styles/inputtext
|
|
56
|
-
WARN No meta data found for shared lib @primeuix/styles/inputnumber
|
|
57
|
-
WARN No meta data found for shared lib @primeuix/styles/autocomplete
|
|
58
|
-
WARN No meta data found for shared lib @primeuix/styles/chip
|
|
59
|
-
WARN No meta data found for shared lib eta/core
|
|
60
|
-
WARN No entry point found for @primeuix/themes/aura
|
|
61
|
-
WARN If you don't need this package, skip it in your federation.config.js or consider moving it into depDependencies in your package.json
|
|
62
|
-
WARN No meta data found for shared lib @primeuix/themes/aura
|
|
63
|
-
INFO Building federation artefacts
|
|
64
|
-
❯ Building...
|
|
65
|
-
✔ Building...
|
|
66
|
-
Initial chunk files | Names | Raw size | Estimated transfer size
|
|
67
|
-
polyfills-XUYJO5JA.js | polyfills | 39.91 kB | 13.52 kB
|
|
68
|
-
styles-GEVVBWJT.css | styles | 16.92 kB | 3.54 kB
|
|
69
|
-
main-OJ6HHWUE.js | main | 2.74 kB | 1.15 kB
|
|
70
|
-
chunk-2NFLSA4Y.js | - | 449 bytes | 449 bytes
|
|
71
|
-
|
|
72
|
-
| Initial total | 60.03 kB | 18.66 kB
|
|
73
|
-
|
|
74
|
-
Lazy chunk files | Names | Raw size | Estimated transfer size
|
|
75
|
-
chunk-FEQGULQH.js | bootstrap | 12.42 kB | 2.72 kB
|
|
76
|
-
|
|
77
|
-
Application bundle generation complete. [11.934 seconds] - 2026-01-07T09:10:08.612Z
|
|
78
|
-
|
|
79
|
-
Output location: /home/gc-garunda/devs/dont-code/github/ng-xtend/dist/latest/intl-plugin
|
|
80
|
-
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
- Compiling with Angular sources in full compilation mode.
|
|
2
|
-
✔ Compiling with Angular sources in full compilation mode.
|
|
3
|
-
✔ Generating FESM and DTS bundles
|
|
4
|
-
- Copying assets
|
|
5
|
-
✔ Copying assets
|
|
6
|
-
- Writing package manifest
|
|
7
|
-
✔ Writing package manifest
|
|
8
|
-
✔ Built xt-plugin-intl
|
|
9
|
-
An unhandled exception occurred: Cannot read properties of undefined (reading 'split')
|
|
10
|
-
See "/tmp/ng-TH2vAd/angular-errors.log" for further details.
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
Invoking: BUILD=development STAGE=next npm run build-deploy
|
|
2
|
-
|
|
3
|
-
> xt-plugin-intl@0.0.0 build-deploy
|
|
4
|
-
> APP=intl-plugin && MAIN_LIB=intl && ng build $MAIN_LIB --configuration=$BUILD && ng build $APP --configuration=$BUILD --output-path="../../dist/$STAGE/$APP" --base-href="https://test.dont-code.net/apps/$STAGE/$APP/" && rm -f ../../dist/$STAGE/$APP/*.* && mv ../../dist/$STAGE/$APP/browser/* ../../dist/$STAGE/$APP
|
|
5
|
-
|
|
6
|
-
Building Angular Package
|
|
7
|
-
|
|
8
|
-
------------------------------------------------------------------------------
|
|
9
|
-
Building entry point 'xt-plugin-intl'
|
|
10
|
-
------------------------------------------------------------------------------
|
|
11
|
-
- Compiling with Angular sources in full compilation mode.
|
|
12
|
-
✔ Compiling with Angular sources in full compilation mode.
|
|
13
|
-
✔ Generating FESM and DTS bundles
|
|
14
|
-
- Copying assets
|
|
15
|
-
✔ Copying assets
|
|
16
|
-
- Writing package manifest
|
|
17
|
-
✔ Writing package manifest
|
|
18
|
-
✔ Built xt-plugin-intl
|
|
19
|
-
|
|
20
|
-
------------------------------------------------------------------------------
|
|
21
|
-
Built Angular Package
|
|
22
|
-
- from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl
|
|
23
|
-
- to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl
|
|
24
|
-
------------------------------------------------------------------------------
|
|
25
|
-
|
|
26
|
-
Build at: 2025-09-04T10:04:24.206Z - Time: 6201ms
|
|
27
|
-
|
|
28
|
-
An unhandled exception occurred: Cannot read properties of undefined (reading 'split')
|
|
29
|
-
See "/tmp/ng-TH2vAd/angular-errors.log" for further details.
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
- Compiling with Angular sources in full compilation mode.
|
|
2
|
-
✔ Compiling with Angular sources in full compilation mode.
|
|
3
|
-
- Writing FESM and DTS bundles
|
|
4
|
-
✔ Writing FESM and DTS bundles
|
|
5
|
-
- Copying assets
|
|
6
|
-
✔ Copying assets
|
|
7
|
-
- Writing package manifest
|
|
8
|
-
✔ Writing package manifest
|
|
9
|
-
✔ Built xt-plugin-intl
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
Invoking: ng build intl --configuration=development
|
|
2
|
-
Building Angular Package
|
|
3
|
-
|
|
4
|
-
------------------------------------------------------------------------------
|
|
5
|
-
Building entry point 'xt-plugin-intl'
|
|
6
|
-
------------------------------------------------------------------------------
|
|
7
|
-
- Compiling with Angular sources in full compilation mode.
|
|
8
|
-
✔ Compiling with Angular sources in full compilation mode.
|
|
9
|
-
- Writing FESM and DTS bundles
|
|
10
|
-
✔ Writing FESM and DTS bundles
|
|
11
|
-
- Copying assets
|
|
12
|
-
✔ Copying assets
|
|
13
|
-
- Writing package manifest
|
|
14
|
-
✔ Writing package manifest
|
|
15
|
-
✔ Built xt-plugin-intl
|
|
16
|
-
|
|
17
|
-
------------------------------------------------------------------------------
|
|
18
|
-
Built Angular Package
|
|
19
|
-
- from: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl
|
|
20
|
-
- to: /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/dist/xt-plugin-intl
|
|
21
|
-
------------------------------------------------------------------------------
|
|
22
|
-
|
|
23
|
-
Build at: 2025-12-31T08:42:50.339Z - Time: 5200ms
|
|
24
|
-
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
Invoking: cd projects/intl && ../../node_modules/.bin/vitest && cd ../intl-plugin && ../../node_modules/.bin/vitest
|
|
2
|
-
|
|
3
|
-
RUN v3.2.4 /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl
|
|
4
|
-
|
|
5
|
-
stdout | src/lib/country/intl-country.component.spec.ts > IntlCountryComponent > should create
|
|
6
|
-
Registering Plugin International
|
|
7
|
-
|
|
8
|
-
stdout | src/lib/currency/intl-currency.component.spec.ts > XtCurrencyComponent > should create
|
|
9
|
-
Registering Plugin International
|
|
10
|
-
|
|
11
|
-
stdout | src/lib/currency/intl-currency.component.spec.ts > XtCurrencyComponent > should support currency display
|
|
12
|
-
Registering Plugin International
|
|
13
|
-
|
|
14
|
-
✓ src/lib/country/intl-country.component.spec.ts (1 test) 401ms
|
|
15
|
-
✓ IntlCountryComponent > should create 398ms
|
|
16
|
-
stdout | src/lib/currency/intl-currency.component.spec.ts > XtCurrencyComponent > should support currency edit
|
|
17
|
-
Registering Plugin International
|
|
18
|
-
|
|
19
|
-
✓ src/lib/currency/intl-currency.component.spec.ts (3 tests) 623ms
|
|
20
|
-
✓ XtCurrencyComponent > should support currency edit 376ms
|
|
21
|
-
|
|
22
|
-
Test Files 2 passed (2)
|
|
23
|
-
Tests 4 passed (4)
|
|
24
|
-
Start at 09:51:14
|
|
25
|
-
Duration 10.75s (transform 1.82s, setup 4.54s, collect 9.33s, tests 1.02s, environment 2.76s, prepare 3.96s)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
RUN v3.2.4 /home/gc-garunda/devs/dont-code/github/ng-xtend/plugins/xt-intl/projects/intl-plugin
|
|
29
|
-
|
|
30
|
-
stdout | src/app/app.component.spec.ts > AppComponent > should create the app
|
|
31
|
-
Registering Plugin International
|
|
32
|
-
|
|
33
|
-
stdout | src/app/app.component.spec.ts > AppComponent > should have the 'test' title
|
|
34
|
-
Registering Plugin International
|
|
35
|
-
|
|
36
|
-
stdout | src/app/app.component.spec.ts > AppComponent > should render title
|
|
37
|
-
Registering Plugin International
|
|
38
|
-
|
|
39
|
-
✓ src/app/app.component.spec.ts (3 tests) 140ms
|
|
40
|
-
stdout | src/app/test-component/test.component.spec.ts > TestComponent > should create
|
|
41
|
-
Registering Plugin International
|
|
42
|
-
|
|
43
|
-
✓ src/app/test-component/test.component.spec.ts (1 test) 426ms
|
|
44
|
-
✓ TestComponent > should create 424ms
|
|
45
|
-
|
|
46
|
-
Test Files 2 passed (2)
|
|
47
|
-
Tests 4 passed (4)
|
|
48
|
-
Start at 09:51:37
|
|
49
|
-
Duration 7.01s (transform 1.65s, setup 2.77s, collect 5.80s, tests 565ms, environment 2.21s, prepare 2.93s)
|
|
50
|
-
|