@fundamental-ngx/platform 0.59.2-rc.0 → 0.59.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.
@@ -0,0 +1,67 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Input, ChangeDetectionStrategy, ViewEncapsulation, Component, NgModule } from '@angular/core';
3
+ import { warnOnce } from '@fundamental-ngx/cdk/utils';
4
+ import { InfoLabelComponent as InfoLabelComponent$1 } from '@fundamental-ngx/core/info-label';
5
+
6
+ /**
7
+ * @deprecated Use `InfoLabelComponent` from `@fundamental-ngx/core` instead.
8
+ */
9
+ class InfoLabelComponent {
10
+ /** @hidden */
11
+ constructor() {
12
+ /**
13
+ * The icon font
14
+ * Options include: 'SAP-icons', 'BusinessSuiteInAppSymbols' and 'SAP-icons-TNT'
15
+ */
16
+ this.font = 'SAP-icons';
17
+ /** define the colour of the info label starting form 1 to 10 */
18
+ this.color = 7;
19
+ warnOnce('InfoLabelComponent is deprecated. Use InfoLabelComponent from @fundamental-ngx/core/info-label instead.');
20
+ }
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: InfoLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
22
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.0", type: InfoLabelComponent, isStandalone: true, selector: "fdp-info-label", inputs: { type: "type", font: "font", glyph: "glyph", label: "label", color: "color", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", title: "title" }, ngImport: i0, template: "<fd-info-label\n [type]=\"type\"\n [color]=\"color\"\n [glyph]=\"glyph\"\n [font]=\"font\"\n [ariaLabel]=\"ariaLabel\"\n [ariaLabelledBy]=\"ariaLabelledBy\"\n [title]=\"title\"\n [label]=\"label\"\n>\n</fd-info-label>\n", dependencies: [{ kind: "component", type: InfoLabelComponent$1, selector: "fd-info-label", inputs: ["class", "type", "glyph", "font", "color", "label", "title", "ariaLabel", "ariaLabelledBy"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
23
+ }
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: InfoLabelComponent, decorators: [{
25
+ type: Component,
26
+ args: [{ selector: 'fdp-info-label', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, imports: [InfoLabelComponent$1], template: "<fd-info-label\n [type]=\"type\"\n [color]=\"color\"\n [glyph]=\"glyph\"\n [font]=\"font\"\n [ariaLabel]=\"ariaLabel\"\n [ariaLabelledBy]=\"ariaLabelledBy\"\n [title]=\"title\"\n [label]=\"label\"\n>\n</fd-info-label>\n" }]
27
+ }], ctorParameters: () => [], propDecorators: { type: [{
28
+ type: Input
29
+ }], font: [{
30
+ type: Input
31
+ }], glyph: [{
32
+ type: Input
33
+ }], label: [{
34
+ type: Input
35
+ }], color: [{
36
+ type: Input
37
+ }], ariaLabel: [{
38
+ type: Input
39
+ }], ariaLabelledBy: [{
40
+ type: Input
41
+ }], title: [{
42
+ type: Input
43
+ }] } });
44
+
45
+ /**
46
+ * @deprecated
47
+ * Use direct imports of components and directives.
48
+ */
49
+ class PlatformInfoLabelModule {
50
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PlatformInfoLabelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
51
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.0", ngImport: i0, type: PlatformInfoLabelModule, imports: [InfoLabelComponent], exports: [InfoLabelComponent] }); }
52
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PlatformInfoLabelModule, imports: [InfoLabelComponent] }); }
53
+ }
54
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: PlatformInfoLabelModule, decorators: [{
55
+ type: NgModule,
56
+ args: [{
57
+ imports: [InfoLabelComponent],
58
+ exports: [InfoLabelComponent]
59
+ }]
60
+ }] });
61
+
62
+ /**
63
+ * Generated bundle index. Do not edit.
64
+ */
65
+
66
+ export { InfoLabelComponent, PlatformInfoLabelModule };
67
+ //# sourceMappingURL=fundamental-ngx-platform-info-label.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fundamental-ngx-platform-info-label.mjs","sources":["../../../../libs/platform/info-label/info-label.component.ts","../../../../libs/platform/info-label/info-label.component.html","../../../../libs/platform/info-label/info-label.module.ts","../../../../libs/platform/info-label/fundamental-ngx-platform-info-label.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, Input, ViewEncapsulation } from '@angular/core';\n\nimport { Nullable, warnOnce } from '@fundamental-ngx/cdk/utils';\nimport { IconFont } from '@fundamental-ngx/core/icon';\nimport {\n InfoLabelComponent as CoreInfoLabelComponent,\n InfoLabelColorInput,\n LabelType\n} from '@fundamental-ngx/core/info-label';\n\n/**\n * @deprecated Use `InfoLabelComponent` from `@fundamental-ngx/core` instead.\n */\n@Component({\n selector: 'fdp-info-label',\n templateUrl: './info-label.component.html',\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [CoreInfoLabelComponent]\n})\nexport class InfoLabelComponent {\n /**\n * The LabelType represented by the info label .\n * Can be one of the following: 'numeric' | 'only-icon' | 'icon'\n * For default info label omit this property\n */\n @Input()\n type: LabelType;\n\n /**\n * The icon font\n * Options include: 'SAP-icons', 'BusinessSuiteInAppSymbols' and 'SAP-icons-TNT'\n */\n @Input()\n font: IconFont = 'SAP-icons';\n\n /** glyph define the icon of info label */\n @Input()\n glyph: string;\n\n /** glyph define the icon of info label */\n @Input()\n label: string;\n\n /** define the colour of the info label starting form 1 to 10 */\n @Input()\n color: Nullable<InfoLabelColorInput> = 7;\n\n /** Sets control aria-label attribute value */\n @Input()\n ariaLabel: Nullable<string>;\n\n /** Binds to control aria-labelledBy attribute */\n @Input()\n ariaLabelledBy: Nullable<string>;\n\n /** Sets control aria-title to a string attribute value */\n @Input()\n title: string;\n\n /** @hidden */\n constructor() {\n warnOnce(\n 'InfoLabelComponent is deprecated. Use InfoLabelComponent from @fundamental-ngx/core/info-label instead.'\n );\n }\n}\n","<fd-info-label\n [type]=\"type\"\n [color]=\"color\"\n [glyph]=\"glyph\"\n [font]=\"font\"\n [ariaLabel]=\"ariaLabel\"\n [ariaLabelledBy]=\"ariaLabelledBy\"\n [title]=\"title\"\n [label]=\"label\"\n>\n</fd-info-label>\n","import { NgModule } from '@angular/core';\n\nimport { InfoLabelComponent } from './info-label.component';\n\n/**\n * @deprecated\n * Use direct imports of components and directives.\n */\n@NgModule({\n imports: [InfoLabelComponent],\n exports: [InfoLabelComponent]\n})\nexport class PlatformInfoLabelModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["CoreInfoLabelComponent"],"mappings":";;;;;AAUA;;AAEG;MAQU,kBAAkB,CAAA;;AAyC3B,IAAA,WAAA,GAAA;AAhCA;;;AAGG;QAEH,IAAA,CAAA,IAAI,GAAa,WAAW;;QAY5B,IAAA,CAAA,KAAK,GAAkC,CAAC;QAgBpC,QAAQ,CACJ,yGAAyG,CAC5G;IACL;8GA7CS,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;kGAAlB,kBAAkB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,IAAA,EAAA,MAAA,EAAA,KAAA,EAAA,OAAA,EAAA,KAAA,EAAA,OAAA,EAAA,KAAA,EAAA,OAAA,EAAA,SAAA,EAAA,WAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,KAAA,EAAA,OAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECpB/B,qPAWA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EDOcA,oBAAsB,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,OAAA,EAAA,MAAA,EAAA,OAAA,EAAA,OAAA,EAAA,OAAA,EAAA,WAAA,EAAA,gBAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA,CAAA;;2FAEvB,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAP9B,SAAS;+BACI,gBAAgB,EAAA,aAAA,EAEX,iBAAiB,CAAC,IAAI,EAAA,eAAA,EACpB,uBAAuB,CAAC,MAAM,EAAA,OAAA,EACtC,CAACA,oBAAsB,CAAC,EAAA,QAAA,EAAA,qPAAA,EAAA;;sBAQhC;;sBAOA;;sBAIA;;sBAIA;;sBAIA;;sBAIA;;sBAIA;;sBAIA;;;AErDL;;;AAGG;MAKU,uBAAuB,CAAA;8GAAvB,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;+GAAvB,uBAAuB,EAAA,OAAA,EAAA,CAHtB,kBAAkB,CAAA,EAAA,OAAA,EAAA,CAClB,kBAAkB,CAAA,EAAA,CAAA,CAAA;AAEnB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,uBAAuB,YAHtB,kBAAkB,CAAA,EAAA,CAAA,CAAA;;2FAGnB,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAJnC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACN,OAAO,EAAE,CAAC,kBAAkB,CAAC;oBAC7B,OAAO,EAAE,CAAC,kBAAkB;AAC/B,iBAAA;;;ACXD;;AAEG;;;;"}
@@ -13,6 +13,8 @@ import { FdpFormGroupModule, PlatformRadioGroupModule, PlatformCheckboxModule, P
13
13
  export * from '@fundamental-ngx/platform/form';
14
14
  import { PlatformIconTabBarModule } from '@fundamental-ngx/platform/icon-tab-bar';
15
15
  export * from '@fundamental-ngx/platform/icon-tab-bar';
16
+ import { PlatformInfoLabelModule } from '@fundamental-ngx/platform/info-label';
17
+ export * from '@fundamental-ngx/platform/info-label';
16
18
  import { PlatformLinkModule } from '@fundamental-ngx/platform/link';
17
19
  export * from '@fundamental-ngx/platform/link';
18
20
  import { PlatformListModule } from '@fundamental-ngx/platform/list';
@@ -71,6 +73,7 @@ class FundamentalNgxPlatformModule {
71
73
  PlatformButtonModule,
72
74
  PlatformDynamicPageModule,
73
75
  PlatformFeedInputModule,
76
+ PlatformInfoLabelModule,
74
77
  PlatformLinkModule,
75
78
  PlatformListModule,
76
79
  PlatformMenuModule,
@@ -115,6 +118,7 @@ class FundamentalNgxPlatformModule {
115
118
  PlatformButtonModule,
116
119
  PlatformDynamicPageModule,
117
120
  PlatformFeedInputModule,
121
+ PlatformInfoLabelModule,
118
122
  PlatformLinkModule,
119
123
  PlatformListModule,
120
124
  PlatformMenuModule,
@@ -165,6 +169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
165
169
  PlatformButtonModule,
166
170
  PlatformDynamicPageModule,
167
171
  PlatformFeedInputModule,
172
+ PlatformInfoLabelModule,
168
173
  PlatformLinkModule,
169
174
  PlatformListModule,
170
175
  PlatformMenuModule,
@@ -1 +1 @@
1
- {"version":3,"file":"fundamental-ngx-platform.mjs","sources":["../../../../libs/platform/fundamental-ngx.module.ts","../../../../libs/platform/fundamental-ngx-platform.ts"],"sourcesContent":["import { Injector, NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { PlatformApprovalFlowModule } from '@fundamental-ngx/platform/approval-flow';\nimport { PlatformButtonModule } from '@fundamental-ngx/platform/button';\nimport { PlatformDynamicPageModule } from '@fundamental-ngx/platform/dynamic-page';\nimport { PlatformFeedInputModule } from '@fundamental-ngx/platform/feed-input';\nimport {\n FdpFormGroupModule,\n PlatformAutoCompleteModule,\n PlatformCheckboxGroupModule,\n PlatformCheckboxModule,\n PlatformComboboxModule,\n PlatformDatePickerModule,\n PlatformDatetimePickerModule,\n PlatformFormGeneratorModule,\n PlatformInputGroupModule,\n PlatformInputModule,\n PlatformMultiComboboxModule,\n PlatformMultiInputModule,\n PlatformRadioGroupModule,\n PlatformSelectModule,\n PlatformStepInputModule,\n PlatformSwitchModule,\n PlatformTextAreaModule,\n PlatformTimePickerModule\n} from '@fundamental-ngx/platform/form';\nimport { PlatformIconTabBarModule } from '@fundamental-ngx/platform/icon-tab-bar';\nimport { PlatformLinkModule } from '@fundamental-ngx/platform/link';\nimport { PlatformListModule } from '@fundamental-ngx/platform/list';\nimport { PlatformMenuModule } from '@fundamental-ngx/platform/menu';\nimport { PlatformMenuButtonModule } from '@fundamental-ngx/platform/menu-button';\nimport { PlatformMessagePopoverModule } from '@fundamental-ngx/platform/message-popover';\nimport { PlatformObjectAttributeModule } from '@fundamental-ngx/platform/object-attribute';\nimport { PlatformObjectMarkerModule } from '@fundamental-ngx/platform/object-marker';\nimport { PlatformObjectStatusModule } from '@fundamental-ngx/platform/object-status';\nimport { PlatformPageFooterModule } from '@fundamental-ngx/platform/page-footer';\nimport { PlatformPanelModule } from '@fundamental-ngx/platform/panel';\nimport { PlatformSearchFieldModule } from '@fundamental-ngx/platform/search-field';\nimport { SettingsGeneratorModule } from '@fundamental-ngx/platform/settings-generator';\nimport { PlatformConfig, PlatformPipeModule } from '@fundamental-ngx/platform/shared';\nimport { PlatformSliderModule } from '@fundamental-ngx/platform/slider';\nimport { PlatformSmartFilterBarModule } from '@fundamental-ngx/platform/smart-filter-bar';\nimport { PlatformSplitMenuButtonModule } from '@fundamental-ngx/platform/split-menu-button';\nimport { PlatformTableModule, TableHelpersModule } from '@fundamental-ngx/platform/table';\nimport { PlatformValueHelpDialogModule } from '@fundamental-ngx/platform/value-help-dialog';\nimport { VariantManagementModule } from '@fundamental-ngx/platform/variant-management';\nimport { PlatformWizardGeneratorModule } from '@fundamental-ngx/platform/wizard-generator';\n\n/**\n * @deprecated\n * Use direct imports of components and directives.\n */\n@NgModule({\n imports: [FormsModule],\n exports: [\n PlatformPipeModule,\n PlatformApprovalFlowModule,\n PlatformButtonModule,\n PlatformDynamicPageModule,\n PlatformFeedInputModule,\n PlatformLinkModule,\n PlatformListModule,\n PlatformMenuModule,\n PlatformMenuButtonModule,\n PlatformObjectAttributeModule,\n PlatformObjectMarkerModule,\n PlatformObjectStatusModule,\n PlatformPageFooterModule,\n PlatformPanelModule,\n PlatformSearchFieldModule,\n PlatformSliderModule,\n PlatformSplitMenuButtonModule,\n PlatformTableModule,\n PlatformValueHelpDialogModule,\n PlatformWizardGeneratorModule,\n FdpFormGroupModule,\n PlatformRadioGroupModule,\n PlatformCheckboxModule,\n PlatformTextAreaModule,\n PlatformCheckboxGroupModule,\n PlatformSwitchModule,\n PlatformInputModule,\n PlatformStepInputModule,\n PlatformInputGroupModule,\n PlatformMultiInputModule,\n PlatformAutoCompleteModule,\n PlatformComboboxModule,\n PlatformSelectModule,\n PlatformDatetimePickerModule,\n PlatformTimePickerModule,\n PlatformDatePickerModule,\n PlatformFormGeneratorModule,\n PlatformMultiComboboxModule,\n PlatformIconTabBarModule,\n PlatformSmartFilterBarModule,\n PlatformMessagePopoverModule,\n VariantManagementModule,\n SettingsGeneratorModule,\n TableHelpersModule\n ],\n providers: []\n})\nexport class FundamentalNgxPlatformModule {\n /** @hidden */\n constructor(injector: Injector) {\n PlatformConfig.setInjector(injector);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"fundamental-ngx-platform.mjs","sources":["../../../../libs/platform/fundamental-ngx.module.ts","../../../../libs/platform/fundamental-ngx-platform.ts"],"sourcesContent":["import { Injector, NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { PlatformApprovalFlowModule } from '@fundamental-ngx/platform/approval-flow';\nimport { PlatformButtonModule } from '@fundamental-ngx/platform/button';\nimport { PlatformDynamicPageModule } from '@fundamental-ngx/platform/dynamic-page';\nimport { PlatformFeedInputModule } from '@fundamental-ngx/platform/feed-input';\nimport {\n FdpFormGroupModule,\n PlatformAutoCompleteModule,\n PlatformCheckboxGroupModule,\n PlatformCheckboxModule,\n PlatformComboboxModule,\n PlatformDatePickerModule,\n PlatformDatetimePickerModule,\n PlatformFormGeneratorModule,\n PlatformInputGroupModule,\n PlatformInputModule,\n PlatformMultiComboboxModule,\n PlatformMultiInputModule,\n PlatformRadioGroupModule,\n PlatformSelectModule,\n PlatformStepInputModule,\n PlatformSwitchModule,\n PlatformTextAreaModule,\n PlatformTimePickerModule\n} from '@fundamental-ngx/platform/form';\nimport { PlatformIconTabBarModule } from '@fundamental-ngx/platform/icon-tab-bar';\nimport { PlatformInfoLabelModule } from '@fundamental-ngx/platform/info-label';\nimport { PlatformLinkModule } from '@fundamental-ngx/platform/link';\nimport { PlatformListModule } from '@fundamental-ngx/platform/list';\nimport { PlatformMenuModule } from '@fundamental-ngx/platform/menu';\nimport { PlatformMenuButtonModule } from '@fundamental-ngx/platform/menu-button';\nimport { PlatformMessagePopoverModule } from '@fundamental-ngx/platform/message-popover';\nimport { PlatformObjectAttributeModule } from '@fundamental-ngx/platform/object-attribute';\nimport { PlatformObjectMarkerModule } from '@fundamental-ngx/platform/object-marker';\nimport { PlatformObjectStatusModule } from '@fundamental-ngx/platform/object-status';\nimport { PlatformPageFooterModule } from '@fundamental-ngx/platform/page-footer';\nimport { PlatformPanelModule } from '@fundamental-ngx/platform/panel';\nimport { PlatformSearchFieldModule } from '@fundamental-ngx/platform/search-field';\nimport { SettingsGeneratorModule } from '@fundamental-ngx/platform/settings-generator';\nimport { PlatformConfig, PlatformPipeModule } from '@fundamental-ngx/platform/shared';\nimport { PlatformSliderModule } from '@fundamental-ngx/platform/slider';\nimport { PlatformSmartFilterBarModule } from '@fundamental-ngx/platform/smart-filter-bar';\nimport { PlatformSplitMenuButtonModule } from '@fundamental-ngx/platform/split-menu-button';\nimport { PlatformTableModule, TableHelpersModule } from '@fundamental-ngx/platform/table';\nimport { PlatformValueHelpDialogModule } from '@fundamental-ngx/platform/value-help-dialog';\nimport { VariantManagementModule } from '@fundamental-ngx/platform/variant-management';\nimport { PlatformWizardGeneratorModule } from '@fundamental-ngx/platform/wizard-generator';\n\n/**\n * @deprecated\n * Use direct imports of components and directives.\n */\n@NgModule({\n imports: [FormsModule],\n exports: [\n PlatformPipeModule,\n PlatformApprovalFlowModule,\n PlatformButtonModule,\n PlatformDynamicPageModule,\n PlatformFeedInputModule,\n PlatformInfoLabelModule,\n PlatformLinkModule,\n PlatformListModule,\n PlatformMenuModule,\n PlatformMenuButtonModule,\n PlatformObjectAttributeModule,\n PlatformObjectMarkerModule,\n PlatformObjectStatusModule,\n PlatformPageFooterModule,\n PlatformPanelModule,\n PlatformSearchFieldModule,\n PlatformSliderModule,\n PlatformSplitMenuButtonModule,\n PlatformTableModule,\n PlatformValueHelpDialogModule,\n PlatformWizardGeneratorModule,\n\n FdpFormGroupModule,\n PlatformRadioGroupModule,\n PlatformCheckboxModule,\n PlatformTextAreaModule,\n PlatformCheckboxGroupModule,\n PlatformSwitchModule,\n PlatformInputModule,\n PlatformStepInputModule,\n PlatformInputGroupModule,\n PlatformMultiInputModule,\n PlatformAutoCompleteModule,\n PlatformComboboxModule,\n PlatformSelectModule,\n PlatformDatetimePickerModule,\n PlatformTimePickerModule,\n PlatformDatePickerModule,\n PlatformFormGeneratorModule,\n PlatformMultiComboboxModule,\n PlatformIconTabBarModule,\n PlatformSmartFilterBarModule,\n PlatformMessagePopoverModule,\n VariantManagementModule,\n SettingsGeneratorModule,\n TableHelpersModule\n ],\n providers: []\n})\nexport class FundamentalNgxPlatformModule {\n /** @hidden */\n constructor(injector: Injector) {\n PlatformConfig.setInjector(injector);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fundamental-ngx/platform",
3
- "version": "0.59.2-rc.0",
3
+ "version": "0.59.2",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "description": "Fundamental Library for Angular - platform",
6
6
  "license": "Apache-2.0",
@@ -13,9 +13,9 @@
13
13
  "node": ">= 10"
14
14
  },
15
15
  "peerDependencies": {
16
- "@fundamental-ngx/cdk": "0.59.2-rc.0",
17
- "@fundamental-ngx/core": "0.59.2-rc.0",
18
- "@fundamental-ngx/i18n": "0.59.2-rc.0"
16
+ "@fundamental-ngx/cdk": "0.59.2",
17
+ "@fundamental-ngx/core": "0.59.2",
18
+ "@fundamental-ngx/i18n": "0.59.2"
19
19
  },
20
20
  "dependencies": {
21
21
  "fast-deep-equal": "3.1.3",
@@ -57,6 +57,10 @@
57
57
  "types": "./types/fundamental-ngx-platform-icon-tab-bar.d.ts",
58
58
  "default": "./fesm2022/fundamental-ngx-platform-icon-tab-bar.mjs"
59
59
  },
60
+ "./info-label": {
61
+ "types": "./types/fundamental-ngx-platform-info-label.d.ts",
62
+ "default": "./fesm2022/fundamental-ngx-platform-info-label.mjs"
63
+ },
60
64
  "./link": {
61
65
  "types": "./types/fundamental-ngx-platform-link.d.ts",
62
66
  "default": "./fesm2022/fundamental-ngx-platform-link.mjs"
@@ -143,4 +147,4 @@
143
147
  }
144
148
  },
145
149
  "sideEffects": false
146
- }
150
+ }
@@ -31,7 +31,7 @@ function callCoreSchematic(options) {
31
31
  (0, dependencies_1.addPackageJsonDependency)(tree, {
32
32
  type: dependencies_1.NodeDependencyType.Default,
33
33
  // Will be replaced with the real version during sync-version script run
34
- version: `0.59.2-rc.0`,
34
+ version: `0.59.2`,
35
35
  name: '@fundamental-ngx/core'
36
36
  });
37
37
  const installTaskId = context.addTask(new tasks_1.NodePackageInstallTask({
@@ -0,0 +1,49 @@
1
+ import { Nullable } from '@fundamental-ngx/cdk/utils';
2
+ import { IconFont } from '@fundamental-ngx/core/icon';
3
+ import { LabelType, InfoLabelColorInput } from '@fundamental-ngx/core/info-label';
4
+ import * as i0 from '@angular/core';
5
+
6
+ /**
7
+ * @deprecated Use `InfoLabelComponent` from `@fundamental-ngx/core` instead.
8
+ */
9
+ declare class InfoLabelComponent {
10
+ /**
11
+ * The LabelType represented by the info label .
12
+ * Can be one of the following: 'numeric' | 'only-icon' | 'icon'
13
+ * For default info label omit this property
14
+ */
15
+ type: LabelType;
16
+ /**
17
+ * The icon font
18
+ * Options include: 'SAP-icons', 'BusinessSuiteInAppSymbols' and 'SAP-icons-TNT'
19
+ */
20
+ font: IconFont;
21
+ /** glyph define the icon of info label */
22
+ glyph: string;
23
+ /** glyph define the icon of info label */
24
+ label: string;
25
+ /** define the colour of the info label starting form 1 to 10 */
26
+ color: Nullable<InfoLabelColorInput>;
27
+ /** Sets control aria-label attribute value */
28
+ ariaLabel: Nullable<string>;
29
+ /** Binds to control aria-labelledBy attribute */
30
+ ariaLabelledBy: Nullable<string>;
31
+ /** Sets control aria-title to a string attribute value */
32
+ title: string;
33
+ /** @hidden */
34
+ constructor();
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<InfoLabelComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<InfoLabelComponent, "fdp-info-label", never, { "type": { "alias": "type"; "required": false; }; "font": { "alias": "font"; "required": false; }; "glyph": { "alias": "glyph"; "required": false; }; "label": { "alias": "label"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
37
+ }
38
+
39
+ /**
40
+ * @deprecated
41
+ * Use direct imports of components and directives.
42
+ */
43
+ declare class PlatformInfoLabelModule {
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlatformInfoLabelModule, never>;
45
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PlatformInfoLabelModule, never, [typeof InfoLabelComponent], [typeof InfoLabelComponent]>;
46
+ static ɵinj: i0.ɵɵInjectorDeclaration<PlatformInfoLabelModule>;
47
+ }
48
+
49
+ export { InfoLabelComponent, PlatformInfoLabelModule };
@@ -11,47 +11,49 @@ import * as i5 from '@fundamental-ngx/platform/dynamic-page';
11
11
  export * from '@fundamental-ngx/platform/dynamic-page';
12
12
  import * as i6 from '@fundamental-ngx/platform/feed-input';
13
13
  export * from '@fundamental-ngx/platform/feed-input';
14
- import * as i7 from '@fundamental-ngx/platform/link';
14
+ import * as i7 from '@fundamental-ngx/platform/info-label';
15
+ export * from '@fundamental-ngx/platform/info-label';
16
+ import * as i8 from '@fundamental-ngx/platform/link';
15
17
  export * from '@fundamental-ngx/platform/link';
16
- import * as i8 from '@fundamental-ngx/platform/list';
18
+ import * as i9 from '@fundamental-ngx/platform/list';
17
19
  export * from '@fundamental-ngx/platform/list';
18
- import * as i9 from '@fundamental-ngx/platform/menu';
20
+ import * as i10 from '@fundamental-ngx/platform/menu';
19
21
  export * from '@fundamental-ngx/platform/menu';
20
- import * as i10 from '@fundamental-ngx/platform/menu-button';
22
+ import * as i11 from '@fundamental-ngx/platform/menu-button';
21
23
  export * from '@fundamental-ngx/platform/menu-button';
22
- import * as i11 from '@fundamental-ngx/platform/object-attribute';
24
+ import * as i12 from '@fundamental-ngx/platform/object-attribute';
23
25
  export * from '@fundamental-ngx/platform/object-attribute';
24
- import * as i12 from '@fundamental-ngx/platform/object-marker';
26
+ import * as i13 from '@fundamental-ngx/platform/object-marker';
25
27
  export * from '@fundamental-ngx/platform/object-marker';
26
- import * as i13 from '@fundamental-ngx/platform/object-status';
28
+ import * as i14 from '@fundamental-ngx/platform/object-status';
27
29
  export * from '@fundamental-ngx/platform/object-status';
28
- import * as i14 from '@fundamental-ngx/platform/page-footer';
30
+ import * as i15 from '@fundamental-ngx/platform/page-footer';
29
31
  export * from '@fundamental-ngx/platform/page-footer';
30
- import * as i15 from '@fundamental-ngx/platform/panel';
32
+ import * as i16 from '@fundamental-ngx/platform/panel';
31
33
  export * from '@fundamental-ngx/platform/panel';
32
- import * as i16 from '@fundamental-ngx/platform/search-field';
34
+ import * as i17 from '@fundamental-ngx/platform/search-field';
33
35
  export * from '@fundamental-ngx/platform/search-field';
34
- import * as i17 from '@fundamental-ngx/platform/slider';
36
+ import * as i18 from '@fundamental-ngx/platform/slider';
35
37
  export * from '@fundamental-ngx/platform/slider';
36
- import * as i18 from '@fundamental-ngx/platform/split-menu-button';
38
+ import * as i19 from '@fundamental-ngx/platform/split-menu-button';
37
39
  export * from '@fundamental-ngx/platform/split-menu-button';
38
- import * as i19 from '@fundamental-ngx/platform/table';
40
+ import * as i20 from '@fundamental-ngx/platform/table';
39
41
  export * from '@fundamental-ngx/platform/table';
40
- import * as i20 from '@fundamental-ngx/platform/value-help-dialog';
42
+ import * as i21 from '@fundamental-ngx/platform/value-help-dialog';
41
43
  export * from '@fundamental-ngx/platform/value-help-dialog';
42
- import * as i21 from '@fundamental-ngx/platform/wizard-generator';
44
+ import * as i22 from '@fundamental-ngx/platform/wizard-generator';
43
45
  export * from '@fundamental-ngx/platform/wizard-generator';
44
- import * as i22 from '@fundamental-ngx/platform/form';
46
+ import * as i23 from '@fundamental-ngx/platform/form';
45
47
  export * from '@fundamental-ngx/platform/form';
46
- import * as i23 from '@fundamental-ngx/platform/icon-tab-bar';
48
+ import * as i24 from '@fundamental-ngx/platform/icon-tab-bar';
47
49
  export * from '@fundamental-ngx/platform/icon-tab-bar';
48
- import * as i24 from '@fundamental-ngx/platform/smart-filter-bar';
50
+ import * as i25 from '@fundamental-ngx/platform/smart-filter-bar';
49
51
  export * from '@fundamental-ngx/platform/smart-filter-bar';
50
- import * as i25 from '@fundamental-ngx/platform/message-popover';
52
+ import * as i26 from '@fundamental-ngx/platform/message-popover';
51
53
  export * from '@fundamental-ngx/platform/message-popover';
52
- import * as i26 from '@fundamental-ngx/platform/variant-management';
54
+ import * as i27 from '@fundamental-ngx/platform/variant-management';
53
55
  export * from '@fundamental-ngx/platform/variant-management';
54
- import * as i27 from '@fundamental-ngx/platform/settings-generator';
56
+ import * as i28 from '@fundamental-ngx/platform/settings-generator';
55
57
  export * from '@fundamental-ngx/platform/settings-generator';
56
58
  export * from '@fundamental-ngx/core/dialog';
57
59
  export * from '@fundamental-ngx/platform/table-helpers';
@@ -64,7 +66,7 @@ declare class FundamentalNgxPlatformModule {
64
66
  /** @hidden */
65
67
  constructor(injector: Injector);
66
68
  static ɵfac: i0.ɵɵFactoryDeclaration<FundamentalNgxPlatformModule, never>;
67
- static ɵmod: i0.ɵɵNgModuleDeclaration<FundamentalNgxPlatformModule, never, [typeof i1.FormsModule], [typeof i2.PlatformPipeModule, typeof i3.PlatformApprovalFlowModule, typeof i4.PlatformButtonModule, typeof i5.PlatformDynamicPageModule, typeof i6.PlatformFeedInputModule, typeof i7.PlatformLinkModule, typeof i8.PlatformListModule, typeof i9.PlatformMenuModule, typeof i10.PlatformMenuButtonModule, typeof i11.PlatformObjectAttributeModule, typeof i12.PlatformObjectMarkerModule, typeof i13.PlatformObjectStatusModule, typeof i14.PlatformPageFooterModule, typeof i15.PlatformPanelModule, typeof i16.PlatformSearchFieldModule, typeof i17.PlatformSliderModule, typeof i18.PlatformSplitMenuButtonModule, typeof i19.PlatformTableModule, typeof i20.PlatformValueHelpDialogModule, typeof i21.PlatformWizardGeneratorModule, typeof i22.FdpFormGroupModule, typeof i22.PlatformRadioGroupModule, typeof i22.PlatformCheckboxModule, typeof i22.PlatformTextAreaModule, typeof i22.PlatformCheckboxGroupModule, typeof i22.PlatformSwitchModule, typeof i22.PlatformInputModule, typeof i22.PlatformStepInputModule, typeof i22.PlatformInputGroupModule, typeof i22.PlatformMultiInputModule, typeof i22.PlatformAutoCompleteModule, typeof i22.PlatformComboboxModule, typeof i22.PlatformSelectModule, typeof i22.PlatformDatetimePickerModule, typeof i22.PlatformTimePickerModule, typeof i22.PlatformDatePickerModule, typeof i22.PlatformFormGeneratorModule, typeof i22.PlatformMultiComboboxModule, typeof i23.PlatformIconTabBarModule, typeof i24.PlatformSmartFilterBarModule, typeof i25.PlatformMessagePopoverModule, typeof i26.VariantManagementModule, typeof i27.SettingsGeneratorModule, typeof i19.TableHelpersModule]>;
69
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FundamentalNgxPlatformModule, never, [typeof i1.FormsModule], [typeof i2.PlatformPipeModule, typeof i3.PlatformApprovalFlowModule, typeof i4.PlatformButtonModule, typeof i5.PlatformDynamicPageModule, typeof i6.PlatformFeedInputModule, typeof i7.PlatformInfoLabelModule, typeof i8.PlatformLinkModule, typeof i9.PlatformListModule, typeof i10.PlatformMenuModule, typeof i11.PlatformMenuButtonModule, typeof i12.PlatformObjectAttributeModule, typeof i13.PlatformObjectMarkerModule, typeof i14.PlatformObjectStatusModule, typeof i15.PlatformPageFooterModule, typeof i16.PlatformPanelModule, typeof i17.PlatformSearchFieldModule, typeof i18.PlatformSliderModule, typeof i19.PlatformSplitMenuButtonModule, typeof i20.PlatformTableModule, typeof i21.PlatformValueHelpDialogModule, typeof i22.PlatformWizardGeneratorModule, typeof i23.FdpFormGroupModule, typeof i23.PlatformRadioGroupModule, typeof i23.PlatformCheckboxModule, typeof i23.PlatformTextAreaModule, typeof i23.PlatformCheckboxGroupModule, typeof i23.PlatformSwitchModule, typeof i23.PlatformInputModule, typeof i23.PlatformStepInputModule, typeof i23.PlatformInputGroupModule, typeof i23.PlatformMultiInputModule, typeof i23.PlatformAutoCompleteModule, typeof i23.PlatformComboboxModule, typeof i23.PlatformSelectModule, typeof i23.PlatformDatetimePickerModule, typeof i23.PlatformTimePickerModule, typeof i23.PlatformDatePickerModule, typeof i23.PlatformFormGeneratorModule, typeof i23.PlatformMultiComboboxModule, typeof i24.PlatformIconTabBarModule, typeof i25.PlatformSmartFilterBarModule, typeof i26.PlatformMessagePopoverModule, typeof i27.VariantManagementModule, typeof i28.SettingsGeneratorModule, typeof i20.TableHelpersModule]>;
68
70
  static ɵinj: i0.ɵɵInjectorDeclaration<FundamentalNgxPlatformModule>;
69
71
  }
70
72