@ojiepermana/angular 21.1.17 → 21.1.18

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.
@@ -1,15 +1,7 @@
1
1
  /**
2
- * @ojiepermana/angular/etos complete Etos brand stylesheet.
2
+ * Compatibility entry for consumers that resolve the explicit index file.
3
3
  *
4
- * Import before Tailwind, then import the shared Tailwind token bridge.
4
+ * Keep this publish-safe because ng-packagr copies it verbatim to
5
+ * `@ojiepermana/angular/etos/styles/index.css`.
5
6
  */
6
- @import '../../../theme/src/lib/styles/themes/library/_layers.css';
7
- @import '../../../theme/src/lib/styles/themes/mode/index.css';
8
- @import '../../../theme/src/lib/styles/themes/library/color/index.css';
9
- @import '../../../theme/src/lib/styles/themes/library/style/index.css';
10
- @import './color.css';
11
- @import './style.css';
12
- @import './layout.css';
13
- @import '../../../theme/src/lib/styles/themes/library/_tokens.css';
14
- @import '../../../theme/src/lib/styles/themes/library/_material-overrides.css';
15
- @import '../../../theme/src/lib/styles/themes/library/_components.css';
7
+ @import './package.css';
@@ -303,16 +303,9 @@ function emitPublicApis(ir, target, mapping) {
303
303
  // Per-domain public-api.ts.
304
304
  for (const domain of mapping.domains) {
305
305
  const lines = [target.banner, ''];
306
- // Re-export shared namespace for convenience. `domain` may be nested
307
- // (e.g. `storage/gcs`), so compute the relative path instead of
308
- // hard-coding `../shared/public-api`.
309
- const domainDir = node_path_1.posix.join(VIRTUAL_ROOT, domain);
310
- const sharedTarget = node_path_1.posix.join(VIRTUAL_ROOT, SHARED, 'public-api');
311
- let sharedSpec = node_path_1.posix.relative(domainDir, sharedTarget);
312
- if (!sharedSpec.startsWith('.'))
313
- sharedSpec = `./${sharedSpec}`;
314
- lines.push(`export * from '${sharedSpec}';`);
315
- lines.push('');
306
+ // Keep each domain entrypoint scoped to its own surface. Re-exporting the
307
+ // shared barrel here makes the root barrel publish the same names twice
308
+ // once it also exports `./shared/public-api`.
316
309
  if (target.features.models) {
317
310
  const ownedModels = schemaNames.filter((n) => mapping.modelOwner.get(n) === domain);
318
311
  for (const name of ownedModels) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ojiepermana/angular",
3
- "version": "21.1.17",
3
+ "version": "21.1.18",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/ojiepermana/angular.git"