@net7/components 3.9.0 → 3.10.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/esm2020/lib/components/input-text/input-text.mjs +3 -3
- package/esm2020/lib/components/input-textarea/input-textarea.mjs +21 -0
- package/esm2020/lib/components/input-textarea/input-textarea.mock.mjs +9 -0
- package/esm2020/lib/dv-components-lib.module.mjs +5 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/net7-components.mjs +33 -3
- package/fesm2015/net7-components.mjs.map +1 -1
- package/fesm2020/net7-components.mjs +33 -3
- package/fesm2020/net7-components.mjs.map +1 -1
- package/lib/components/input-textarea/input-textarea.d.ts +31 -0
- package/lib/components/input-textarea/input-textarea.mock.d.ts +2 -0
- package/lib/dv-components-lib.module.d.ts +11 -10
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/lib/styles/_imports.scss +1 -0
- package/src/lib/styles/components/_input-textarea.scss +47 -0
|
@@ -1363,10 +1363,10 @@ class InputTextComponent {
|
|
|
1363
1363
|
}
|
|
1364
1364
|
}
|
|
1365
1365
|
InputTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: InputTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1366
|
-
InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: InputTextComponent, selector: "n7-input-text", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\" [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text {{input.classes || ''}}\"\n placeholder=\"{{input.placeholder || ''}}\"\n [type]=\"input.type ? input.type : 'text'\"\n [value]=\"input.value || null\"\n [disabled]=\"input.disabled\"\n [min]=\"input.type === 'number' && (input.min || input.min === 0) ? input.min : ''\"\n [max]=\"input.type === 'number' && (input.max || input.max === 0) ? input.max : ''\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span
|
|
1366
|
+
InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: InputTextComponent, selector: "n7-input-text", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\" [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text {{input.classes || ''}}\"\n placeholder=\"{{input.placeholder || ''}}\"\n [type]=\"input.type ? input.type : 'text'\"\n [value]=\"input.value || null\"\n [disabled]=\"input.disabled\"\n [min]=\"input.type === 'number' && (input.min || input.min === 0) ? input.min : ''\"\n [max]=\"input.type === 'number' && (input.max || input.max === 0) ? input.max : ''\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span> \n </div>\n</div>\n", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1367
1367
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: InputTextComponent, decorators: [{
|
|
1368
1368
|
type: Component,
|
|
1369
|
-
args: [{ selector: 'n7-input-text', template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\" [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text {{input.classes || ''}}\"\n placeholder=\"{{input.placeholder || ''}}\"\n [type]=\"input.type ? input.type : 'text'\"\n [value]=\"input.value || null\"\n [disabled]=\"input.disabled\"\n [min]=\"input.type === 'number' && (input.min || input.min === 0) ? input.min : ''\"\n [max]=\"input.type === 'number' && (input.max || input.max === 0) ? input.max : ''\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span
|
|
1369
|
+
args: [{ selector: 'n7-input-text', template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\" [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text {{input.classes || ''}}\"\n placeholder=\"{{input.placeholder || ''}}\"\n [type]=\"input.type ? input.type : 'text'\"\n [value]=\"input.value || null\"\n [disabled]=\"input.disabled\"\n [min]=\"input.type === 'number' && (input.min || input.min === 0) ? input.min : ''\"\n [max]=\"input.type === 'number' && (input.max || input.max === 0) ? input.max : ''\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span> \n </div>\n</div>\n" }]
|
|
1370
1370
|
}], propDecorators: { data: [{
|
|
1371
1371
|
type: Input
|
|
1372
1372
|
}], emit: [{
|
|
@@ -1894,6 +1894,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImpor
|
|
|
1894
1894
|
type: Input
|
|
1895
1895
|
}] } });
|
|
1896
1896
|
|
|
1897
|
+
class InputTextareaComponent {
|
|
1898
|
+
onChange(inputPayload, value) {
|
|
1899
|
+
if (!this.emit)
|
|
1900
|
+
return;
|
|
1901
|
+
this.emit('change', { inputPayload, value });
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
InputTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: InputTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1905
|
+
InputTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.7", type: InputTextareaComponent, selector: "n7-frontend-components-input-textarea", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data as input\"\n class=\"n7-input-textarea\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-textarea__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-textarea__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <textarea id=\"{{ input.id }}\"\n type=\"textarea\"\n class=\"n7-input-textarea__text {{input.classes || ''}}\"\n placeholder=\"{{input.placeholder || ''}}\"\n [value]=\"input.value || null\"\n [disabled]=\"input.disabled\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n </textarea>\n </div>\n</div>\n", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
1906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.7", ngImport: i0, type: InputTextareaComponent, decorators: [{
|
|
1907
|
+
type: Component,
|
|
1908
|
+
args: [{ selector: 'n7-frontend-components-input-textarea', template: "<div *ngIf=\"data as input\"\n class=\"n7-input-textarea\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-textarea__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-textarea__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <textarea id=\"{{ input.id }}\"\n type=\"textarea\"\n class=\"n7-input-textarea__text {{input.classes || ''}}\"\n placeholder=\"{{input.placeholder || ''}}\"\n [value]=\"input.value || null\"\n [disabled]=\"input.disabled\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n </textarea>\n </div>\n</div>\n" }]
|
|
1909
|
+
}], propDecorators: { data: [{
|
|
1910
|
+
type: Input
|
|
1911
|
+
}], emit: [{
|
|
1912
|
+
type: Input
|
|
1913
|
+
}] } });
|
|
1914
|
+
|
|
1897
1915
|
const COMPONENTS = [
|
|
1898
1916
|
AdvancedAutocompleteComponent,
|
|
1899
1917
|
AlertComponent,
|
|
@@ -1931,6 +1949,7 @@ const COMPONENTS = [
|
|
|
1931
1949
|
SimpleAutocompleteComponent,
|
|
1932
1950
|
TableComponent,
|
|
1933
1951
|
TagComponent,
|
|
1952
|
+
InputTextareaComponent,
|
|
1934
1953
|
TextViewerComponent,
|
|
1935
1954
|
TimelineComponent,
|
|
1936
1955
|
ToastComponent,
|
|
@@ -1978,6 +1997,7 @@ DvComponentsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", v
|
|
|
1978
1997
|
SimpleAutocompleteComponent,
|
|
1979
1998
|
TableComponent,
|
|
1980
1999
|
TagComponent,
|
|
2000
|
+
InputTextareaComponent,
|
|
1981
2001
|
TextViewerComponent,
|
|
1982
2002
|
TimelineComponent,
|
|
1983
2003
|
ToastComponent,
|
|
@@ -2020,6 +2040,7 @@ DvComponentsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", v
|
|
|
2020
2040
|
SimpleAutocompleteComponent,
|
|
2021
2041
|
TableComponent,
|
|
2022
2042
|
TagComponent,
|
|
2043
|
+
InputTextareaComponent,
|
|
2023
2044
|
TextViewerComponent,
|
|
2024
2045
|
TimelineComponent,
|
|
2025
2046
|
ToastComponent,
|
|
@@ -7289,6 +7310,15 @@ const INPUT_TEXT_MOCK = {
|
|
|
7289
7310
|
// max: 20,
|
|
7290
7311
|
};
|
|
7291
7312
|
|
|
7313
|
+
const INPUT_TEXTAREA_MOCK = {
|
|
7314
|
+
id: 'input-text-1',
|
|
7315
|
+
label: 'TEXT AREA LABEL',
|
|
7316
|
+
placeholder: 'Describe your thing here',
|
|
7317
|
+
inputPayload: 'textarea-input',
|
|
7318
|
+
enterPayload: 'textarea-enter',
|
|
7319
|
+
iconPayload: 'textarea-icon',
|
|
7320
|
+
};
|
|
7321
|
+
|
|
7292
7322
|
const ITEM_PREVIEW_MOCK = {
|
|
7293
7323
|
image: 'https://placeimg.com/600/600/nature',
|
|
7294
7324
|
color: '#4D8FF2',
|
|
@@ -8358,5 +8388,5 @@ const WIZARD_MOCK = {
|
|
|
8358
8388
|
* Generated bundle index. Do not edit.
|
|
8359
8389
|
*/
|
|
8360
8390
|
|
|
8361
|
-
export { ADVANCED_AUTOCOMPLETE_MOCK, ALERT_MOCK, AVATAR_MOCK, AdvancedAutocompleteComponent, AlertComponent, AnchorWrapperComponent, AvatarComponent, BREADCRUMBS_MOCK, BUBBLECHART_MOCK, BreadcrumbsComponent, BubbleChartComponent, CAROUSEL_MOCK, CHART_MOCK, CONTENT_PLACEHOLDER_MOCK, CarouselComponent, ChartComponent, ContentPlaceholderComponent, DATA_WIDGET_MOCK, DATEPICKER_MOCK, DataWidgetComponent, DatepickerComponent, DvComponentsLibModule, FACET_HEADER_MOCK, FACET_MOCK, FACET_YEAR_RANGE_MOCK, FOOTER_MOCK, FacetComponent, FacetHeaderComponent, FacetYearRangeComponent, FooterComponent, HEADER_MOCK, HERO_MOCK, HISTOGRAM_RANGE_MOCK, HeaderComponent, HeroComponent, HistogramRangeComponent, IMAGE_VIEWER_MOCK, IMAGE_VIEWER_TOOLS_MOCK, INNER_TITLE_MOCK, INPUT_CHECKBOX_MOCK, INPUT_LINK_MOCK, INPUT_SELECT_MOCK, INPUT_TEXT_MOCK, ITEM_PREVIEW_MOCK, ImageViewerComponent, ImageViewerToolsComponent, InnerTitleComponent, InputCheckboxComponent, InputLinkComponent, InputSelectComponent, InputTextComponent, ItemPreviewComponent, LOADER_MOCK, LoaderComponent, MAP_MOCK, METADATA_VIEWER_MOCK, MapComponent, MetadataViewerComponent, NAV_MOCK, NavComponent, PAGINATION_MOCK, PROGRESS_LINE_MOCK, PaginationComponent, ProgressLineComponent, SIDEBAR_HEADER_MOCK, SIGNUP_MOCK, SIMPLE_AUTOCOMPLETE_MOCK, SidebarHeaderComponent, SignupComponent, SimpleAutocompleteComponent, TABLE_MOCK, TAG_MOCK, TEXT_VIEWER_MOCK, TIMELINE_MOCK, TOAST_MOCK, TOOLTIP_CONTENT_MOCK, TREE_MOCK, TableComponent, TagComponent, TextViewerComponent, TimelineComponent, ToastComponent, TooltipContentComponent, TreeComponent, WIZARD_MOCK, WizardComponent };
|
|
8391
|
+
export { ADVANCED_AUTOCOMPLETE_MOCK, ALERT_MOCK, AVATAR_MOCK, AdvancedAutocompleteComponent, AlertComponent, AnchorWrapperComponent, AvatarComponent, BREADCRUMBS_MOCK, BUBBLECHART_MOCK, BreadcrumbsComponent, BubbleChartComponent, CAROUSEL_MOCK, CHART_MOCK, CONTENT_PLACEHOLDER_MOCK, CarouselComponent, ChartComponent, ContentPlaceholderComponent, DATA_WIDGET_MOCK, DATEPICKER_MOCK, DataWidgetComponent, DatepickerComponent, DvComponentsLibModule, FACET_HEADER_MOCK, FACET_MOCK, FACET_YEAR_RANGE_MOCK, FOOTER_MOCK, FacetComponent, FacetHeaderComponent, FacetYearRangeComponent, FooterComponent, HEADER_MOCK, HERO_MOCK, HISTOGRAM_RANGE_MOCK, HeaderComponent, HeroComponent, HistogramRangeComponent, IMAGE_VIEWER_MOCK, IMAGE_VIEWER_TOOLS_MOCK, INNER_TITLE_MOCK, INPUT_CHECKBOX_MOCK, INPUT_LINK_MOCK, INPUT_SELECT_MOCK, INPUT_TEXTAREA_MOCK, INPUT_TEXT_MOCK, ITEM_PREVIEW_MOCK, ImageViewerComponent, ImageViewerToolsComponent, InnerTitleComponent, InputCheckboxComponent, InputLinkComponent, InputSelectComponent, InputTextComponent, InputTextareaComponent, ItemPreviewComponent, LOADER_MOCK, LoaderComponent, MAP_MOCK, METADATA_VIEWER_MOCK, MapComponent, MetadataViewerComponent, NAV_MOCK, NavComponent, PAGINATION_MOCK, PROGRESS_LINE_MOCK, PaginationComponent, ProgressLineComponent, SIDEBAR_HEADER_MOCK, SIGNUP_MOCK, SIMPLE_AUTOCOMPLETE_MOCK, SidebarHeaderComponent, SignupComponent, SimpleAutocompleteComponent, TABLE_MOCK, TAG_MOCK, TEXT_VIEWER_MOCK, TIMELINE_MOCK, TOAST_MOCK, TOOLTIP_CONTENT_MOCK, TREE_MOCK, TableComponent, TagComponent, TextViewerComponent, TimelineComponent, ToastComponent, TooltipContentComponent, TreeComponent, WIZARD_MOCK, WizardComponent };
|
|
8362
8392
|
//# sourceMappingURL=net7-components.mjs.map
|