@jigisha_ruparel/taf-client-detail-angular 0.1.0 → 0.1.1
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.
|
@@ -103,7 +103,7 @@ class TafDetailComponent {
|
|
|
103
103
|
</div>
|
|
104
104
|
</ng-container>
|
|
105
105
|
</div>
|
|
106
|
-
`, isInline: true, styles: ["
|
|
106
|
+
`, isInline: true, styles: [":host{display:contents}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
107
107
|
}
|
|
108
108
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.5", ngImport: i0, type: TafDetailComponent, decorators: [{
|
|
109
109
|
type: Component,
|
|
@@ -134,7 +134,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.5", ngImpor
|
|
|
134
134
|
</div>
|
|
135
135
|
</ng-container>
|
|
136
136
|
</div>
|
|
137
|
-
`, styles: ["
|
|
137
|
+
`, styles: [":host{display:contents}\n"] }]
|
|
138
138
|
}], propDecorators: { valueTemplates: [{
|
|
139
139
|
type: ContentChildren,
|
|
140
140
|
args: [TafDetailValueDirective]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jigisha_ruparel-taf-client-detail-angular.mjs","sources":["../../src/taf-detail.component.ts","../../src/jigisha_ruparel-taf-client-detail-angular.ts"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n ContentChildren,\n Directive,\n Input,\n QueryList,\n TemplateRef,\n booleanAttribute,\n} from '@angular/core';\n\n/** One label/value row. `key` is only needed when a template overrides this row's value. */\nexport interface TafDetailField {\n label: string;\n value?: string | number | null;\n key?: string;\n /** A title attribute, where the value is long or abbreviated. */\n hint?: string;\n /** How many columns this row spans in a multi-column layout. */\n span?: number;\n}\n\n/** A titled group of fields. */\nexport interface TafDetailSection {\n title?: string;\n fields: readonly TafDetailField[];\n /** Columns for this section only; the component's own `columns` otherwise. */\n columns?: number | string;\n}\n\n/**\n * Renders a field's value itself, instead of printing the string — for the rows that carry a\n * control (a masked SSN with a reveal toggle, a link, a pill).\n *\n * ```html\n * <ng-template tafDetailValue=\"ssn\" let-field>…</ng-template>\n * ```\n */\n@Directive({ selector: 'ng-template[tafDetailValue]', standalone: true })\nexport class TafDetailValueDirective {\n /** The `key` of the field this template renders. */\n @Input('tafDetailValue') key = '';\n constructor(readonly template: TemplateRef<{ $implicit: TafDetailField }>) {}\n}\n\n/**\n * `<taf-detail>` — the read-only field list a record's detail view is made of: label on one side,\n * value on the other, in one or more columns, optionally grouped under section titles.\n *\n * Every detail screen hand-rolls this, usually as a one-off `field-row` component repeated a few\n * dozen times. Declaring the fields as data instead means a section is a list, not markup — and the\n * rows that genuinely need a control keep one, through a `tafDetailValue` template keyed by field.\n *\n * Empty values print `emptyText` (\"—\") rather than collapsing the row, because in a clinical record\n * \"we don't hold this\" and \"this row doesn't exist\" are different statements. `hideEmpty` opts into\n * dropping them where that distinction doesn't matter.\n *\n * Ships NO theme — `taf-detail__*` class hooks only.\n */\n@Component({\n selector: 'taf-detail',\n standalone: true,\n imports: [CommonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: `\n <div class=\"taf-detail\" [attr.data-dense]=\"dense ? '' : null\">\n <ng-container *ngFor=\"let s of sectionList\">\n <div class=\"taf-detail__section\">\n <p class=\"taf-detail__section-title\" *ngIf=\"s.title\">{{ s.title }}</p>\n <dl class=\"taf-detail__fields\" [style.grid-template-columns]=\"tracks(s.columns ?? columns)\">\n <ng-container *ngFor=\"let f of shown(s.fields)\">\n <div\n class=\"taf-detail__row\"\n [style.grid-column]=\"f.span && f.span > 1 ? 'span ' + f.span : null\"\n [attr.data-key]=\"f.key || null\"\n >\n <dt class=\"taf-detail__label\">{{ f.label }}</dt>\n <dd class=\"taf-detail__value\" [attr.title]=\"f.hint || null\">\n <ng-container\n *ngIf=\"templateFor(f) as tpl; else plain\"\n [ngTemplateOutlet]=\"tpl\"\n [ngTemplateOutletContext]=\"{ $implicit: f }\"\n ></ng-container>\n <ng-template #plain>{{ text(f) }}</ng-template>\n </dd>\n </div>\n </ng-container>\n </dl>\n </div>\n </ng-container>\n </div>\n `,\n styles: [\n `\n taf-detail { display: contents; }\n `,\n ],\n})\nexport class TafDetailComponent {\n @ContentChildren(TafDetailValueDirective) valueTemplates?: QueryList<TafDetailValueDirective>;\n\n /** A flat field list — the common case. Ignored when `sections` is given. */\n @Input() fields: readonly TafDetailField[] = [];\n /** Titled groups, for a panel that shows several. */\n @Input() sections: readonly TafDetailSection[] = [];\n /** A column count, or a CSS track list for uneven columns. */\n @Input() columns: number | string = 1;\n /** What an empty value prints. */\n @Input() emptyText = '—';\n /** Drop rows with no value instead of printing `emptyText`. */\n @Input({ transform: booleanAttribute }) hideEmpty = false;\n /** Tighter rows, for a panel that shows many fields at once. */\n @Input({ transform: booleanAttribute }) dense = false;\n\n get sectionList(): readonly TafDetailSection[] {\n return this.sections.length ? this.sections : [{ fields: this.fields }];\n }\n\n protected shown(fields: readonly TafDetailField[]): readonly TafDetailField[] {\n if (!this.hideEmpty) return fields;\n return fields.filter((f) => f.value !== undefined && f.value !== null && f.value !== '');\n }\n\n protected tracks(columns: number | string): string {\n return typeof columns === 'number' ? `repeat(${columns}, minmax(0, 1fr))` : columns;\n }\n\n protected text(f: TafDetailField): string {\n return f.value === undefined || f.value === null || f.value === '' ? this.emptyText : String(f.value);\n }\n\n protected templateFor(f: TafDetailField): TemplateRef<{ $implicit: TafDetailField }> | null {\n if (!f.key || !this.valueTemplates) return null;\n return this.valueTemplates.find((t) => t.key === f.key)?.template ?? null;\n }\n}\n\n/**\n * Everything `<taf-detail>` needs, in one import: `imports: [...TAF_DETAIL]`.\n * Importing the component alone makes every `tafDetailValue` template inert — the field falls back\n * to printing its string, with no error.\n */\nexport const TAF_DETAIL = [TafDetailComponent, TafDetailValueDirective] as const;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"jigisha_ruparel-taf-client-detail-angular.mjs","sources":["../../src/taf-detail.component.ts","../../src/jigisha_ruparel-taf-client-detail-angular.ts"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n ContentChildren,\n Directive,\n Input,\n QueryList,\n TemplateRef,\n booleanAttribute,\n} from '@angular/core';\n\n/** One label/value row. `key` is only needed when a template overrides this row's value. */\nexport interface TafDetailField {\n label: string;\n value?: string | number | null;\n key?: string;\n /** A title attribute, where the value is long or abbreviated. */\n hint?: string;\n /** How many columns this row spans in a multi-column layout. */\n span?: number;\n}\n\n/** A titled group of fields. */\nexport interface TafDetailSection {\n title?: string;\n fields: readonly TafDetailField[];\n /** Columns for this section only; the component's own `columns` otherwise. */\n columns?: number | string;\n}\n\n/**\n * Renders a field's value itself, instead of printing the string — for the rows that carry a\n * control (a masked SSN with a reveal toggle, a link, a pill).\n *\n * ```html\n * <ng-template tafDetailValue=\"ssn\" let-field>…</ng-template>\n * ```\n */\n@Directive({ selector: 'ng-template[tafDetailValue]', standalone: true })\nexport class TafDetailValueDirective {\n /** The `key` of the field this template renders. */\n @Input('tafDetailValue') key = '';\n constructor(readonly template: TemplateRef<{ $implicit: TafDetailField }>) {}\n}\n\n/**\n * `<taf-detail>` — the read-only field list a record's detail view is made of: label on one side,\n * value on the other, in one or more columns, optionally grouped under section titles.\n *\n * Every detail screen hand-rolls this, usually as a one-off `field-row` component repeated a few\n * dozen times. Declaring the fields as data instead means a section is a list, not markup — and the\n * rows that genuinely need a control keep one, through a `tafDetailValue` template keyed by field.\n *\n * Empty values print `emptyText` (\"—\") rather than collapsing the row, because in a clinical record\n * \"we don't hold this\" and \"this row doesn't exist\" are different statements. `hideEmpty` opts into\n * dropping them where that distinction doesn't matter.\n *\n * Ships NO theme — `taf-detail__*` class hooks only.\n */\n@Component({\n selector: 'taf-detail',\n standalone: true,\n imports: [CommonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n template: `\n <div class=\"taf-detail\" [attr.data-dense]=\"dense ? '' : null\">\n <ng-container *ngFor=\"let s of sectionList\">\n <div class=\"taf-detail__section\">\n <p class=\"taf-detail__section-title\" *ngIf=\"s.title\">{{ s.title }}</p>\n <dl class=\"taf-detail__fields\" [style.grid-template-columns]=\"tracks(s.columns ?? columns)\">\n <ng-container *ngFor=\"let f of shown(s.fields)\">\n <div\n class=\"taf-detail__row\"\n [style.grid-column]=\"f.span && f.span > 1 ? 'span ' + f.span : null\"\n [attr.data-key]=\"f.key || null\"\n >\n <dt class=\"taf-detail__label\">{{ f.label }}</dt>\n <dd class=\"taf-detail__value\" [attr.title]=\"f.hint || null\">\n <ng-container\n *ngIf=\"templateFor(f) as tpl; else plain\"\n [ngTemplateOutlet]=\"tpl\"\n [ngTemplateOutletContext]=\"{ $implicit: f }\"\n ></ng-container>\n <ng-template #plain>{{ text(f) }}</ng-template>\n </dd>\n </div>\n </ng-container>\n </dl>\n </div>\n </ng-container>\n </div>\n `,\n styles: [\n `\n /* :host, NOT the element name. Under the default emulated encapsulation Angular rewrites\n a style's selector by appending [_ngcontent-<id>], and a component host never carries its\n OWN _ngcontent -- it carries _nghost-<own> plus its PARENT's _ngcontent. So writing the\n element name here compiled to a selector that could not match, so this host fell back to\n its initial display for every release up to this one -- inline in block flow, and\n blockified to block inside a flex or grid parent, which is a shorter distance from\n contents than inline is and is why measuring found nothing moves. Confirmed in a\n built bundle: the injected stylesheet was taf-detail[_ngcontent-%COMP%]{display:contents}, while\n the bare rule that also appears there is in the dev-only setClassMetadata block and is\n never applied. :host becomes [_nghost-<own>], which does match.\n (Backticks are deliberately absent from this comment: it sits inside a template literal,\n and a backtick here would terminate it -- which is exactly how this edit failed once.) */\n :host { display: contents; }\n `,\n ],\n})\nexport class TafDetailComponent {\n @ContentChildren(TafDetailValueDirective) valueTemplates?: QueryList<TafDetailValueDirective>;\n\n /** A flat field list — the common case. Ignored when `sections` is given. */\n @Input() fields: readonly TafDetailField[] = [];\n /** Titled groups, for a panel that shows several. */\n @Input() sections: readonly TafDetailSection[] = [];\n /** A column count, or a CSS track list for uneven columns. */\n @Input() columns: number | string = 1;\n /** What an empty value prints. */\n @Input() emptyText = '—';\n /** Drop rows with no value instead of printing `emptyText`. */\n @Input({ transform: booleanAttribute }) hideEmpty = false;\n /** Tighter rows, for a panel that shows many fields at once. */\n @Input({ transform: booleanAttribute }) dense = false;\n\n get sectionList(): readonly TafDetailSection[] {\n return this.sections.length ? this.sections : [{ fields: this.fields }];\n }\n\n protected shown(fields: readonly TafDetailField[]): readonly TafDetailField[] {\n if (!this.hideEmpty) return fields;\n return fields.filter((f) => f.value !== undefined && f.value !== null && f.value !== '');\n }\n\n protected tracks(columns: number | string): string {\n return typeof columns === 'number' ? `repeat(${columns}, minmax(0, 1fr))` : columns;\n }\n\n protected text(f: TafDetailField): string {\n return f.value === undefined || f.value === null || f.value === '' ? this.emptyText : String(f.value);\n }\n\n protected templateFor(f: TafDetailField): TemplateRef<{ $implicit: TafDetailField }> | null {\n if (!f.key || !this.valueTemplates) return null;\n return this.valueTemplates.find((t) => t.key === f.key)?.template ?? null;\n }\n}\n\n/**\n * Everything `<taf-detail>` needs, in one import: `imports: [...TAF_DETAIL]`.\n * Importing the component alone makes every `tafDetailValue` template inert — the field falls back\n * to printing its string, with no error.\n */\nexport const TAF_DETAIL = [TafDetailComponent, TafDetailValueDirective] as const;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;AA+BA;;;;;;;AAOG;MAEU,uBAAuB,CAAA;AAGb,IAAA,QAAA;;IADI,GAAG,GAAG,EAAE;AACjC,IAAA,WAAA,CAAqB,QAAoD,EAAA;QAApD,IAAA,CAAA,QAAQ,GAAR,QAAQ;IAA+C;uGAHjE,uBAAuB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,WAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,MAAA,EAAA,EAAA,GAAA,EAAA,CAAA,gBAAA,EAAA,KAAA,CAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAvB,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBADnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA,EAAE,QAAQ,EAAE,6BAA6B,EAAE,UAAU,EAAE,IAAI,EAAE;;sBAGrE,KAAK;uBAAC,gBAAgB;;AAIzB;;;;;;;;;;;;;AAaG;MAoDU,kBAAkB,CAAA;AACa,IAAA,cAAc;;IAG/C,MAAM,GAA8B,EAAE;;IAEtC,QAAQ,GAAgC,EAAE;;IAE1C,OAAO,GAAoB,CAAC;;IAE5B,SAAS,GAAG,GAAG;;IAEgB,SAAS,GAAG,KAAK;;IAEjB,KAAK,GAAG,KAAK;AAErD,IAAA,IAAI,WAAW,GAAA;QACb,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,GAAG,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC;IACzE;AAEU,IAAA,KAAK,CAAC,MAAiC,EAAA;QAC/C,IAAI,CAAC,IAAI,CAAC,SAAS;AAAE,YAAA,OAAO,MAAM;QAClC,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,KAAK,SAAS,IAAI,CAAC,CAAC,KAAK,KAAK,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,EAAE,CAAC;IAC1F;AAEU,IAAA,MAAM,CAAC,OAAwB,EAAA;AACvC,QAAA,OAAO,OAAO,OAAO,KAAK,QAAQ,GAAG,CAAA,OAAA,EAAU,OAAO,CAAA,iBAAA,CAAmB,GAAG,OAAO;IACrF;AAEU,IAAA,IAAI,CAAC,CAAiB,EAAA;AAC9B,QAAA,OAAO,CAAC,CAAC,KAAK,KAAK,SAAS,IAAI,CAAC,CAAC,KAAK,KAAK,IAAI,IAAI,CAAC,CAAC,KAAK,KAAK,EAAE,GAAG,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC;IACvG;AAEU,IAAA,WAAW,CAAC,CAAiB,EAAA;QACrC,IAAI,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,cAAc;AAAE,YAAA,OAAO,IAAI;QAC/C,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,GAAG,CAAC,EAAE,QAAQ,IAAI,IAAI;IAC3E;uGApCW,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAlB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,kBAAkB,kLAYT,gBAAgB,CAAA,EAAA,KAAA,EAAA,CAAA,OAAA,EAAA,OAAA,EAEhB,gBAAgB,CAAA,EAAA,EAAA,OAAA,EAAA,CAAA,EAAA,YAAA,EAAA,gBAAA,EAAA,SAAA,EAbnB,uBAAuB,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EA/C9B;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EA7BS,YAAY,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,CAAA,SAAA,EAAA,cAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,IAAA,EAAA,QAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,CAAA,yBAAA,EAAA,kBAAA,EAAA,0BAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;2FAgDX,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAnD9B,SAAS;+BACE,YAAY,EAAA,UAAA,EACV,IAAI,EAAA,OAAA,EACP,CAAC,YAAY,CAAC,EAAA,eAAA,EACN,uBAAuB,CAAC,MAAM,EAAA,QAAA,EACrC;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BT,EAAA,CAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA;;sBAoBA,eAAe;uBAAC,uBAAuB;;sBAGvC;;sBAEA;;sBAEA;;sBAEA;;sBAEA,KAAK;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;sBAErC,KAAK;uBAAC,EAAE,SAAS,EAAE,gBAAgB,EAAE;;AAyBxC;;;;AAIG;MACU,UAAU,GAAG,CAAC,kBAAkB,EAAE,uBAAuB;;AC3JtE;;AAEG;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jigisha_ruparel/taf-client-detail-angular",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "<taf-detail> — the themeless read-only field list a record detail view is made of: labels, values, columns, sections.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|