carbon-components-angular 3.53.8 → 3.54.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/bundle/carbon-angular.umd.js +9 -9
- package/bundle/carbon-angular.umd.js.map +1 -1
- package/combobox/combobox.component.js +1 -7
- package/combobox/combobox.component.js.map +1 -1
- package/docs/documentation/classes/SearchChange.html +11 -0
- package/docs/documentation/components/ComboBox.html +5 -10
- package/docs/documentation/components/DropdownList.html +79 -31
- package/docs/documentation/components/Pagination.html +114 -56
- package/docs/documentation/components/Search.html +96 -17
- package/docs/documentation/components/TableToolbarSearch.html +96 -16
- package/docs/documentation/components/TagFilter.html +131 -4
- package/docs/documentation/coverage.html +17 -17
- package/docs/documentation/interfaces/PaginationTranslations.html +87 -11
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/storybook/iframe.html +3 -3
- package/docs/storybook/{main.293b4966d65e38f1c80c.bundle.js → main.1ccde517361f3d1a057c.bundle.js} +86 -33
- package/docs/storybook/main.1ccde517361f3d1a057c.bundle.js.map +1 -0
- package/docs/storybook/{runtime~main.293b4966d65e38f1c80c.bundle.js → runtime~main.1ccde517361f3d1a057c.bundle.js} +1 -1
- package/docs/storybook/{runtime~main.293b4966d65e38f1c80c.bundle.js.map → runtime~main.1ccde517361f3d1a057c.bundle.js.map} +1 -1
- package/docs/storybook/{vendors~main.293b4966d65e38f1c80c.bundle.js → vendors~main.1ccde517361f3d1a057c.bundle.js} +1 -1
- package/docs/storybook/{vendors~main.293b4966d65e38f1c80c.bundle.js.map → vendors~main.1ccde517361f3d1a057c.bundle.js.map} +1 -1
- package/dropdown/list/dropdown-list.component.d.ts +1 -0
- package/dropdown/list/dropdown-list.component.js +17 -10
- package/dropdown/list/dropdown-list.component.js.map +1 -1
- package/dropdown/list/dropdown-list.component.metadata.json +1 -1
- package/dropdown/list/dropdown-list.component.ngsummary.json +1 -1
- package/i18n/en.d.ts +2 -1
- package/i18n/en.js +3 -2
- package/i18n/en.js.map +1 -1
- package/i18n/i18n.service.d.ts +13 -3
- package/package.json +1 -1
- package/pagination/pagination.component.d.ts +9 -4
- package/pagination/pagination.component.js +9 -5
- package/pagination/pagination.component.js.map +1 -1
- package/pagination/pagination.component.metadata.json +1 -1
- package/pagination/pagination.component.ngfactory.js +20 -18
- package/pagination/pagination.component.ngfactory.js.map +1 -1
- package/search/search.component.d.ts +8 -0
- package/search/search.component.js +12 -1
- package/search/search.component.js.map +1 -1
- package/search/search.component.metadata.json +1 -1
- package/search/search.component.ngfactory.js +6 -3
- package/search/search.component.ngfactory.js.map +1 -1
- package/search/search.component.ngsummary.json +1 -1
- package/table/toolbar/table-toolbar-search.component.js +1 -1
- package/table/toolbar/table-toolbar-search.component.js.map +1 -1
- package/table/toolbar/table-toolbar-search.component.metadata.json +1 -1
- package/table/toolbar/table-toolbar-search.component.ngfactory.js +6 -3
- package/table/toolbar/table-toolbar-search.component.ngfactory.js.map +1 -1
- package/table/toolbar/table-toolbar-search.component.ngsummary.json +1 -1
- package/tag/tag-filter.component.d.ts +9 -0
- package/tag/tag-filter.component.js +15 -1
- package/tag/tag-filter.component.js.map +1 -1
- package/tag/tag-filter.component.metadata.json +1 -1
- package/tag/tag-filter.component.ngfactory.js +2 -2
- package/tag/tag-filter.component.ngfactory.js.map +1 -1
- package/tag/tag-filter.component.ngsummary.json +1 -1
- package/tag/tag.module.ngfactory.js.map +1 -1
- package/docs/storybook/main.293b4966d65e38f1c80c.bundle.js.map +0 -1
|
@@ -125,11 +125,11 @@
|
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
|
|
128
|
-
<script src="runtime~main.
|
|
128
|
+
<script src="runtime~main.1ccde517361f3d1a057c.bundle.js"></script>
|
|
129
129
|
|
|
130
|
-
<script src="vendors~main.
|
|
130
|
+
<script src="vendors~main.1ccde517361f3d1a057c.bundle.js"></script>
|
|
131
131
|
|
|
132
|
-
<script src="main.
|
|
132
|
+
<script src="main.1ccde517361f3d1a057c.bundle.js"></script>
|
|
133
133
|
|
|
134
134
|
</body>
|
|
135
135
|
</html>
|
package/docs/storybook/{main.293b4966d65e38f1c80c.bundle.js → main.1ccde517361f3d1a057c.bundle.js}
RENAMED
|
@@ -2664,13 +2664,7 @@ var ComboBox = /** @class */ (function () {
|
|
|
2664
2664
|
var matches = this.view.getListItems().some(function (item) { return item.content.toLowerCase().includes(searchString.toLowerCase()); });
|
|
2665
2665
|
if (!matches) {
|
|
2666
2666
|
var selected = this.view.getSelected();
|
|
2667
|
-
if (selected
|
|
2668
|
-
selected[0].selected = false;
|
|
2669
|
-
// notify that the selection has changed
|
|
2670
|
-
this.view.select.emit({ item: selected[0] });
|
|
2671
|
-
this.propagateChangeCallback(null);
|
|
2672
|
-
}
|
|
2673
|
-
else {
|
|
2667
|
+
if (!selected || !selected[0]) {
|
|
2674
2668
|
this.view.filterBy("");
|
|
2675
2669
|
}
|
|
2676
2670
|
}
|
|
@@ -2971,9 +2965,9 @@ var addSourceDecorator = __webpack_require__(/*! @storybook/source-loader/previe
|
|
|
2971
2965
|
// @ts-ignore
|
|
2972
2966
|
var __SOURCE_PREFIX__ = "/home/travis/build/IBM/carbon-components-angular/src/combobox";
|
|
2973
2967
|
// @ts-ignore
|
|
2974
|
-
var __STORY__ = "import { storiesOf, moduleMetadata } from \"@storybook/angular\";\nimport { action } from \"@storybook/addon-actions\";\nimport { withKnobs, text, boolean, number } from \"@storybook/addon-knobs/angular\";\n\nimport { ComboBoxModule } from \"./combobox.module\";\nimport { LoadingModule } from \"../loading/loading.module\";\nimport { ButtonModule } from \"../button/button.module\";\nimport { DocumentationModule } from \"./../documentation-component/documentation.module\";\nimport {\n\tReactiveFormsModule,\n\tFormGroup,\n\tFormBuilder,\n\tFormControl\n} from \"@angular/forms\";\nimport {\n\tComponent,\n\tOnInit,\n\tInput,\n\tAfterViewInit\n} from \"@angular/core\";\n\nconst getOptions = (override = {}) => {\n\tconst options = {\n\t\tdisabled: boolean(\"disabled\", false),\n\t\tinvalid: boolean(\"Invalid\", false),\n\t\tinvalidText: text(\"Invalid text\", \"A valid value is required\"),\n\t\tlabel: text(\"Label\", \"ComboBox label\"),\n\t\thelperText: text(\"Helper text\", \"Optional helper text.\"),\n\t\titems: [\n\t\t\t{\n\t\t\t\tcontent: \"one\"\n\t\t\t},\n\t\t\t{\n\t\t\t\tcontent: \"two\",\n\t\t\t\tselected: true\n\t\t\t},\n\t\t\t{\n\t\t\t\tcontent: \"three\"\n\t\t\t},\n\t\t\t{\n\t\t\t\tcontent: \"four\"\n\t\t\t}\n\t\t],\n\t\tselected: action(\"selection changed\"),\n\t\tsubmit: action(\"submit\"),\n\t\tsearch: action(\"search\")\n\t};\n\n\treturn Object.assign({}, options, override);\n};\n\n@Component({\n\tselector: \"app-dynamic-list-combobox\",\n\ttemplate: `\n\t\t<ibm-combo-box\n\t\t\t[(items)]=\"items\"\n\t\t\ttype=\"multi\"\n\t\t\t(selected)=\"updateSelected($event)\">\n\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t</ibm-combo-box>\n\t`\n})\nclass DynamicListComboBox implements AfterViewInit {\n\titems = [\n\t\t{\n\t\t\tcontent: \"one\"\n\t\t},\n\t\t{\n\t\t\tcontent: \"two\"\n\t\t},\n\t\t{\n\t\t\tcontent: \"three\"\n\t\t},\n\t\t{\n\t\t\tcontent: \"four\"\n\t\t}\n\t];\n\n\tupdateSelected(event) {\n\t\tthis.items.forEach((item: any) => {\n\t\t\tif (event.some(selectedItem => selectedItem.content === item.content)) {\n\t\t\t\titem.selected = true;\n\t\t\t} else {\n\t\t\t\titem.selected = false;\n\t\t\t}\n\t\t});\n\t}\n\n\tngAfterViewInit() {\n\t\tsetInterval(() => {\n\t\t\tconst newItems = JSON.parse(JSON.stringify(this.items));\n\t\t\tnewItems.push({ content: `New ${newItems.length}` });\n\t\t\tthis.items = newItems;\n\t\t}, 4000);\n\t}\n}\n\n@Component({\n\tselector: \"app-reactive-combobox\",\n\ttemplate: `\n\t\t<form [formGroup]=\"sampleForm\" (ngSubmit)=\"onSubmit(sampleForm)\">\n\t\t\t<ibm-combo-box\n\t\t\t\tformControlName=\"combobox\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t\tselected: {{ sampleForm.get(\"combobox\").value | json }}\n\t\t\t<ibm-combo-box\n\t\t\t\tstyle=\"margin-top: 40px\"\n\t\t\t\tformControlName=\"multibox\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\ttype=\"multi\"\n\t\t\t\t[items]=\"items\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t\tselected: {{ sampleForm.get(\"multibox\").value | json }}\n\t\t</form>\n\t`\n})\nclass ReactiveFormsCombobox implements OnInit {\n\tpublic sampleForm: FormGroup;\n\t@Input() items = [];\n\t@Input() label = \"\";\n\t@Input() helperText = \"\";\n\n\tconstructor(private fb: FormBuilder) {}\n\n\tngOnInit() {\n\t\tthis.sampleForm = this.fb.group({\n\t\t\tcombobox: new FormControl,\n\t\t\tmultibox: new FormControl\n\t\t});\n\n\t\tthis.sampleForm.get(\"combobox\").setValue({ content: \"four\", selected: true });\n\t\tthis.sampleForm.get(\"multibox\").setValue(\n\t\t\t[\n\t\t\t\t{ content: \"four\", selected: true },\n\t\t\t\t{ content: \"two\", selected: true }\n\t\t\t]\n\t\t);\n\t}\n}\n\n@Component({\n\tselector: \"app-mock-query-search\",\n\ttemplate: `\n\t\t<ibm-loading [isActive]=\"loading\" size=\"sm\"></ibm-loading>\n\t\t<ibm-combo-box\n\t\t\tappendInline=\"true\"\n\t\t\t[items]=\"filterItems\"\n\t\t\t(search)=\"onSearch($event)\">\n\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t</ibm-combo-box>\n\t`\n})\nclass TestComponent {\n\tfilterItems = [];\n\n\tloading = false;\n\n\tonSearch() {\n\t\tthis.loading = true;\n\t\tsetTimeout(() => {\n\t\t\tthis.filterItems = [\n\t\t\t\t{ content: `Random ${Math.random()}` },\n\t\t\t\t{ content: `Random ${Math.random()}` },\n\t\t\t\t{ content: `Random ${Math.random()}` },\n\t\t\t\t{ content: `Random ${Math.random()}` }\n\t\t\t];\n\t\t\tthis.loading = false;\n\t\t}, 1000);\n\t}\n}\n\nstoriesOf(\"Components|Combobox\", module)\n\t.addDecorator(\n\t\tmoduleMetadata({\n\t\t\tdeclarations: [\n\t\t\t\tDynamicListComboBox,\n\t\t\t\tReactiveFormsCombobox,\n\t\t\t\tTestComponent\n\t\t\t],\n\t\t\timports: [\n\t\t\t\tComboBoxModule,\n\t\t\t\tButtonModule,\n\t\t\t\tReactiveFormsModule,\n\t\t\t\tDocumentationModule,\n\t\t\t\tLoadingModule\n\t\t\t]\n\t\t})\n\t)\n\t.addDecorator(withKnobs)\n\t.add(\"Basic\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\"\n\t\t\t\t(search)=\"search($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: getOptions()\n\t}))\n\t.add(\"Dynamically added list items\", () => ({\n\t\ttemplate: `\n\t\t\t<app-dynamic-list-combobox></app-dynamic-list-combobox>\n\t\t`\n\t}))\n\t.add(\"Basic with max length\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\"\n\t\t\t\t[maxLength]=\"maxLength\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: {\n\t\t\t...getOptions(),\n\t\t\tmaxLength: number(\"Max length\", 5)\n\t\t}\n\t}))\n\t.add(\"With dynamic search\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"onSelected()\"\n\t\t\t\t(search)=\"onSearch($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: {\n\t\t\tdisabled: boolean(\"disabled\", false),\n\t\t\tinvalid: boolean(\"Invalid\", false),\n\t\t\tinvalidText: text(\"Invalid text\", \"A valid value is required\"),\n\t\t\tlabel: text(\"Label\", \"ComboBox label\"),\n\t\t\thelperText: text(\"Helper text\", \"Optional helper text.\"),\n\t\t\titems: [\n\t\t\t\t{\n\t\t\t\t\tcontent: \"one\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tcontent: \"two\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tcontent: \"three\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tcontent: \"four\"\n\t\t\t\t}\n\t\t\t],\n\t\t\tonSelected: function() {\n\t\t\t\tthis.invalid = false;\n\t\t\t},\n\t\t\tonSearch: function(event) {\n\t\t\t\tconst selected = this.items.find(\n\t\t\t\t\t({ content }) => content.toLowerCase().includes(event.toLowerCase())\n\t\t\t\t);\n\n\t\t\t\tif (!selected) {\n\t\t\t\t\tthis.invalid = true;\n\t\t\t\t} else {\n\t\t\t\t\tthis.invalid = false;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}))\n\t.add(\"With template\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"onSelected()\"\n\t\t\t\t(search)=\"onSearch($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\n\t\t\t<ng-template #invalidText>\n\t\t\t\t<div class=\"bx--form-requirement\">This is a template</div>\n\t\t\t</ng-template>\n\t\t`,\n\t\tprops: getOptions({\n\t\t\tonSelected: function() {\n\t\t\t\tthis.invalid = false;\n\t\t\t},\n\t\t\tonSearch: function(event) {\n\t\t\t\tconst selected = this.items.find(\n\t\t\t\t\t({ content }) => content.toLowerCase().includes(event.toLowerCase())\n\t\t\t\t);\n\n\t\t\t\tif (!selected) {\n\t\t\t\t\tthis.invalid = true;\n\t\t\t\t} else {\n\t\t\t\t\tthis.invalid = false;\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}))\n\t.add(\"Multi-select\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\ttype=\"multi\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: getOptions()\n\t}))\n\t.add(\"With reactive forms\", () => ({\n\t\ttemplate: `\n\t\t\t<app-reactive-combobox\n\t\t\t\t[items]=\"items\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\">\n\t\t\t</app-reactive-combobox>\n\t\t`,\n\t\tprops: getOptions()\n\t}))\n\t.add(\"With submit\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\ttype=\"multi\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: getOptions({\n\t\t\tsubmit: function(event) {\n\t\t\t\t// so the action still shows up in the \"actions\" panel\n\t\t\t\taction(\"submit\")(event);\n\t\t\t\tif (event.value.content) {\n\t\t\t\t\tthis.items = [\n\t\t\t\t\t\t...event.items,\n\t\t\t\t\t\tObject.assign({}, event.value, { selected: true })\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}))\n\t.add(\"With ngModel\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t[(ngModel)]=\"model\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\n\t\t\t<p>model: {{model | json}}</p>\n\t\t`,\n\t\tprops: getOptions({\n\t\t\tmodel: { \"content\": \"three\", \"selected\": true }\n\t\t})\n\t}))\n\t.add(\"Mock query search\", () => ({\n\t\ttemplate: `\n\t\t\t<app-mock-query-search></app-mock-query-search>\n\t\t`\n\t}))\n\t.add(\"Documentation\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-documentation src=\"documentation/components/ComboBox.html\"></ibm-documentation>\n\t\t`\n\t}));\n";
|
|
2968
|
+
var __STORY__ = "import { storiesOf, moduleMetadata } from \"@storybook/angular\";\nimport { action } from \"@storybook/addon-actions\";\nimport { withKnobs, text, boolean, number } from \"@storybook/addon-knobs/angular\";\n\nimport { ComboBoxModule } from \"./combobox.module\";\nimport { LoadingModule } from \"../loading/loading.module\";\nimport { ButtonModule } from \"../button/button.module\";\nimport { DocumentationModule } from \"./../documentation-component/documentation.module\";\nimport {\n\tReactiveFormsModule,\n\tFormGroup,\n\tFormBuilder,\n\tFormControl\n} from \"@angular/forms\";\nimport {\n\tComponent,\n\tOnInit,\n\tInput,\n\tAfterViewInit\n} from \"@angular/core\";\n\nconst getOptions = (override = {}) => {\n\tconst options = {\n\t\tdisabled: boolean(\"disabled\", false),\n\t\tinvalid: boolean(\"Invalid\", false),\n\t\tinvalidText: text(\"Invalid text\", \"A valid value is required\"),\n\t\tlabel: text(\"Label\", \"ComboBox label\"),\n\t\thelperText: text(\"Helper text\", \"Optional helper text.\"),\n\t\titems: [\n\t\t\t{\n\t\t\t\tcontent: \"one\"\n\t\t\t},\n\t\t\t{\n\t\t\t\tcontent: \"two\",\n\t\t\t\tselected: true\n\t\t\t},\n\t\t\t{\n\t\t\t\tcontent: \"three\"\n\t\t\t},\n\t\t\t{\n\t\t\t\tcontent: \"four\"\n\t\t\t}\n\t\t],\n\t\tselected: action(\"selection changed\"),\n\t\tsubmit: action(\"submit\"),\n\t\tsearch: function(event) {\n\t\t\tconsole.log(\"search string:\", event);\n\t\t}\n\t};\n\n\treturn Object.assign({}, options, override);\n};\n\n@Component({\n\tselector: \"app-dynamic-list-combobox\",\n\ttemplate: `\n\t\t<ibm-combo-box\n\t\t\t[(items)]=\"items\"\n\t\t\ttype=\"multi\"\n\t\t\t(selected)=\"updateSelected($event)\">\n\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t</ibm-combo-box>\n\t`\n})\nclass DynamicListComboBox implements AfterViewInit {\n\titems = [\n\t\t{\n\t\t\tcontent: \"one\"\n\t\t},\n\t\t{\n\t\t\tcontent: \"two\"\n\t\t},\n\t\t{\n\t\t\tcontent: \"three\"\n\t\t},\n\t\t{\n\t\t\tcontent: \"four\"\n\t\t}\n\t];\n\n\tupdateSelected(event) {\n\t\tthis.items.forEach((item: any) => {\n\t\t\tif (event.some(selectedItem => selectedItem.content === item.content)) {\n\t\t\t\titem.selected = true;\n\t\t\t} else {\n\t\t\t\titem.selected = false;\n\t\t\t}\n\t\t});\n\t}\n\n\tngAfterViewInit() {\n\t\tsetInterval(() => {\n\t\t\tconst newItems = JSON.parse(JSON.stringify(this.items));\n\t\t\tnewItems.push({ content: `New ${newItems.length}` });\n\t\t\tthis.items = newItems;\n\t\t}, 4000);\n\t}\n}\n\n@Component({\n\tselector: \"app-reactive-combobox\",\n\ttemplate: `\n\t\t<form [formGroup]=\"sampleForm\" (ngSubmit)=\"onSubmit(sampleForm)\">\n\t\t\t<ibm-combo-box\n\t\t\t\tformControlName=\"combobox\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t\tselected: {{ sampleForm.get(\"combobox\").value | json }}\n\t\t\t<ibm-combo-box\n\t\t\t\tstyle=\"margin-top: 40px\"\n\t\t\t\tformControlName=\"multibox\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\ttype=\"multi\"\n\t\t\t\t[items]=\"items\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t\tselected: {{ sampleForm.get(\"multibox\").value | json }}\n\t\t</form>\n\t`\n})\nclass ReactiveFormsCombobox implements OnInit {\n\tpublic sampleForm: FormGroup;\n\t@Input() items = [];\n\t@Input() label = \"\";\n\t@Input() helperText = \"\";\n\n\tconstructor(private fb: FormBuilder) {}\n\n\tngOnInit() {\n\t\tthis.sampleForm = this.fb.group({\n\t\t\tcombobox: new FormControl,\n\t\t\tmultibox: new FormControl\n\t\t});\n\n\t\tthis.sampleForm.get(\"combobox\").setValue({ content: \"four\", selected: true });\n\t\tthis.sampleForm.get(\"multibox\").setValue(\n\t\t\t[\n\t\t\t\t{ content: \"four\", selected: true },\n\t\t\t\t{ content: \"two\", selected: true }\n\t\t\t]\n\t\t);\n\t}\n}\n\n@Component({\n\tselector: \"app-mock-query-search\",\n\ttemplate: `\n\t\t<ibm-loading [isActive]=\"loading\" size=\"sm\"></ibm-loading>\n\t\t<ibm-combo-box\n\t\t\tappendInline=\"true\"\n\t\t\t[items]=\"filterItems\"\n\t\t\t(search)=\"onSearch($event)\">\n\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t</ibm-combo-box>\n\t`\n})\nclass TestComponent {\n\tfilterItems = [];\n\n\tloading = false;\n\n\tonSearch() {\n\t\tthis.loading = true;\n\t\tsetTimeout(() => {\n\t\t\tthis.filterItems = [\n\t\t\t\t{ content: `Random ${Math.random()}` },\n\t\t\t\t{ content: `Random ${Math.random()}` },\n\t\t\t\t{ content: `Random ${Math.random()}` },\n\t\t\t\t{ content: `Random ${Math.random()}` }\n\t\t\t];\n\t\t\tthis.loading = false;\n\t\t}, 1000);\n\t}\n}\n\nstoriesOf(\"Components|Combobox\", module)\n\t.addDecorator(\n\t\tmoduleMetadata({\n\t\t\tdeclarations: [\n\t\t\t\tDynamicListComboBox,\n\t\t\t\tReactiveFormsCombobox,\n\t\t\t\tTestComponent\n\t\t\t],\n\t\t\timports: [\n\t\t\t\tComboBoxModule,\n\t\t\t\tButtonModule,\n\t\t\t\tReactiveFormsModule,\n\t\t\t\tDocumentationModule,\n\t\t\t\tLoadingModule\n\t\t\t]\n\t\t})\n\t)\n\t.addDecorator(withKnobs)\n\t.add(\"Basic\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\"\n\t\t\t\t(search)=\"search($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: getOptions()\n\t}))\n\t.add(\"Dynamically added list items\", () => ({\n\t\ttemplate: `\n\t\t\t<app-dynamic-list-combobox></app-dynamic-list-combobox>\n\t\t`\n\t}))\n\t.add(\"Basic with max length\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\"\n\t\t\t\t[maxLength]=\"maxLength\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: {\n\t\t\t...getOptions(),\n\t\t\tmaxLength: number(\"Max length\", 5)\n\t\t}\n\t}))\n\t.add(\"With dynamic search\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"onSelected()\"\n\t\t\t\t(search)=\"onSearch($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: {\n\t\t\tdisabled: boolean(\"disabled\", false),\n\t\t\tinvalid: boolean(\"Invalid\", false),\n\t\t\tinvalidText: text(\"Invalid text\", \"A valid value is required\"),\n\t\t\tlabel: text(\"Label\", \"ComboBox label\"),\n\t\t\thelperText: text(\"Helper text\", \"Optional helper text.\"),\n\t\t\titems: [\n\t\t\t\t{\n\t\t\t\t\tcontent: \"one\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tcontent: \"two\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tcontent: \"three\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tcontent: \"four\"\n\t\t\t\t}\n\t\t\t],\n\t\t\tonSelected: function() {\n\t\t\t\tthis.invalid = false;\n\t\t\t},\n\t\t\tonSearch: function(event) {\n\t\t\t\tconst selected = this.items.find(\n\t\t\t\t\t({ content }) => content.toLowerCase().includes(event.toLowerCase())\n\t\t\t\t);\n\n\t\t\t\tif (!selected) {\n\t\t\t\t\tthis.invalid = true;\n\t\t\t\t} else {\n\t\t\t\t\tthis.invalid = false;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}))\n\t.add(\"With template\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[disabled]=\"disabled\"\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t(selected)=\"onSelected()\"\n\t\t\t\t(search)=\"onSearch($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\n\t\t\t<ng-template #invalidText>\n\t\t\t\t<div class=\"bx--form-requirement\">This is a template</div>\n\t\t\t</ng-template>\n\t\t`,\n\t\tprops: getOptions({\n\t\t\tonSelected: function() {\n\t\t\t\tthis.invalid = false;\n\t\t\t},\n\t\t\tonSearch: function(event) {\n\t\t\t\tconst selected = this.items.find(\n\t\t\t\t\t({ content }) => content.toLowerCase().includes(event.toLowerCase())\n\t\t\t\t);\n\n\t\t\t\tif (!selected) {\n\t\t\t\t\tthis.invalid = true;\n\t\t\t\t} else {\n\t\t\t\t\tthis.invalid = false;\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}))\n\t.add(\"Multi-select\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\ttype=\"multi\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: getOptions()\n\t}))\n\t.add(\"With reactive forms\", () => ({\n\t\ttemplate: `\n\t\t\t<app-reactive-combobox\n\t\t\t\t[items]=\"items\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\">\n\t\t\t</app-reactive-combobox>\n\t\t`,\n\t\tprops: getOptions()\n\t}))\n\t.add(\"With submit\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\ttype=\"multi\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\t\t`,\n\t\tprops: getOptions({\n\t\t\tsubmit: function(event) {\n\t\t\t\t// so the action still shows up in the \"actions\" panel\n\t\t\t\taction(\"submit\")(event);\n\t\t\t\tif (event.value.content) {\n\t\t\t\t\tthis.items = [\n\t\t\t\t\t\t...event.items,\n\t\t\t\t\t\tObject.assign({}, event.value, { selected: true })\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}))\n\t.add(\"With ngModel\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-combo-box\n\t\t\t\t[invalid]=\"invalid\"\n\t\t\t\t[invalidText]=\"invalidText\"\n\t\t\t\t[label]=\"label\"\n\t\t\t\t[helperText]=\"helperText\"\n\t\t\t\t[items]=\"items\"\n\t\t\t\t[(ngModel)]=\"model\"\n\t\t\t\t(selected)=\"selected($event)\"\n\t\t\t\t(submit)=\"submit($event)\">\n\t\t\t\t<ibm-dropdown-list></ibm-dropdown-list>\n\t\t\t</ibm-combo-box>\n\n\t\t\t<p>model: {{model | json}}</p>\n\t\t`,\n\t\tprops: getOptions({\n\t\t\tmodel: { \"content\": \"three\", \"selected\": true }\n\t\t})\n\t}))\n\t.add(\"Mock query search\", () => ({\n\t\ttemplate: `\n\t\t\t<app-mock-query-search></app-mock-query-search>\n\t\t`\n\t}))\n\t.add(\"Documentation\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-documentation src=\"documentation/components/ComboBox.html\"></ibm-documentation>\n\t\t`\n\t}));\n";
|
|
2975
2969
|
// @ts-ignore
|
|
2976
|
-
var __ADDS_MAP__ = { "components-combobox--documentation": { "startLoc": { "col": 6, "line":
|
|
2970
|
+
var __ADDS_MAP__ = { "components-combobox--documentation": { "startLoc": { "col": 6, "line": 403 }, "endLoc": { "col": 3, "line": 407 }, "startBody": { "col": 23, "line": 403 }, "endBody": { "col": 3, "line": 407 } }, "components-combobox--mock-query-search": { "startLoc": { "col": 6, "line": 398 }, "endLoc": { "col": 3, "line": 402 }, "startBody": { "col": 27, "line": 398 }, "endBody": { "col": 3, "line": 402 } }, "components-combobox--with-ngmodel": { "startLoc": { "col": 6, "line": 378 }, "endLoc": { "col": 3, "line": 397 }, "startBody": { "col": 22, "line": 378 }, "endBody": { "col": 3, "line": 397 } }, "components-combobox--with-submit": { "startLoc": { "col": 6, "line": 351 }, "endLoc": { "col": 3, "line": 377 }, "startBody": { "col": 21, "line": 351 }, "endBody": { "col": 3, "line": 377 } }, "components-combobox--with-reactive-forms": { "startLoc": { "col": 6, "line": 341 }, "endLoc": { "col": 3, "line": 350 }, "startBody": { "col": 29, "line": 341 }, "endBody": { "col": 3, "line": 350 } }, "components-combobox--multi-select": { "startLoc": { "col": 6, "line": 325 }, "endLoc": { "col": 3, "line": 340 }, "startBody": { "col": 22, "line": 325 }, "endBody": { "col": 3, "line": 340 } }, "components-combobox--with-template": { "startLoc": { "col": 6, "line": 290 }, "endLoc": { "col": 3, "line": 324 }, "startBody": { "col": 23, "line": 290 }, "endBody": { "col": 3, "line": 324 } }, "components-combobox--with-dynamic-search": { "startLoc": { "col": 6, "line": 240 }, "endLoc": { "col": 3, "line": 289 }, "startBody": { "col": 29, "line": 240 }, "endBody": { "col": 3, "line": 289 } }, "components-combobox--basic-with-max-length": { "startLoc": { "col": 6, "line": 220 }, "endLoc": { "col": 3, "line": 239 }, "startBody": { "col": 31, "line": 220 }, "endBody": { "col": 3, "line": 239 } }, "components-combobox--dynamically-added-list-items": { "startLoc": { "col": 6, "line": 215 }, "endLoc": { "col": 3, "line": 219 }, "startBody": { "col": 38, "line": 215 }, "endBody": { "col": 3, "line": 219 } }, "components-combobox--basic": { "startLoc": { "col": 6, "line": 198 }, "endLoc": { "col": 3, "line": 214 }, "startBody": { "col": 15, "line": 198 }, "endBody": { "col": 3, "line": 214 } } };
|
|
2977
2971
|
// @ts-ignore
|
|
2978
2972
|
var __MAIN_FILE_LOCATION__ = "/combobox.stories.ts";
|
|
2979
2973
|
// @ts-ignore
|
|
@@ -3016,7 +3010,9 @@ var getOptions = function (override) {
|
|
|
3016
3010
|
],
|
|
3017
3011
|
selected: Object(_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__["action"])("selection changed"),
|
|
3018
3012
|
submit: Object(_storybook_addon_actions__WEBPACK_IMPORTED_MODULE_1__["action"])("submit"),
|
|
3019
|
-
search:
|
|
3013
|
+
search: function (event) {
|
|
3014
|
+
console.log("search string:", event);
|
|
3015
|
+
}
|
|
3020
3016
|
};
|
|
3021
3017
|
return Object.assign({}, options, override);
|
|
3022
3018
|
};
|
|
@@ -7183,6 +7179,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
7183
7179
|
/* harmony import */ var _storybook_addon_knobs_angular__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_storybook_addon_knobs_angular__WEBPACK_IMPORTED_MODULE_1__);
|
|
7184
7180
|
/* harmony import */ var _carbon_icons_angular_lib_information_filled_16__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @carbon/icons-angular/lib/information--filled/16 */ "./node_modules/@carbon/icons-angular/lib/information--filled/16.js");
|
|
7185
7181
|
/* harmony import */ var ___WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../ */ "./src/index.ts");
|
|
7182
|
+
/* harmony import */ var _tag_tag_module__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../tag/tag.module */ "./src/tag/tag.module.ts");
|
|
7186
7183
|
/* eslint-disable */
|
|
7187
7184
|
// @ts-nocheck
|
|
7188
7185
|
// @ts-ignore
|
|
@@ -7192,9 +7189,9 @@ var addSourceDecorator = __webpack_require__(/*! @storybook/source-loader/previe
|
|
|
7192
7189
|
// @ts-ignore
|
|
7193
7190
|
var __SOURCE_PREFIX__ = "/home/travis/build/IBM/carbon-components-angular/src/dialog/tooltip";
|
|
7194
7191
|
// @ts-ignore
|
|
7195
|
-
var __STORY__ = "import { storiesOf, moduleMetadata } from \"@storybook/angular\";\nimport { action } from \"@storybook/addon-actions\";\nimport {\n\twithKnobs,\n\ttext,\n\tselect,\n\tobject,\n\tboolean\n} from \"@storybook/addon-knobs/angular\";\n\nimport { InformationFilled16Module } from \"@carbon/icons-angular/lib/information--filled/16\";\nimport { DialogModule, PlaceholderModule, DocumentationModule } from \"../../\";\n\nstoriesOf(\"Components|Tooltip\", module)\n\t.addDecorator(\n\t\tmoduleMetadata({\n\t\t\timports: [\n\t\t\t\tDialogModule,\n\t\t\t\tPlaceholderModule,\n\t\t\t\tInformationFilled16Module,\n\t\t\t\tDocumentationModule\n\t\t\t]\n\t\t})\n\t)\n\t.addDecorator(withKnobs)\n\t.add(\"Basic\", () => ({\n\ttemplate: `\n\t\t\t<div>\n\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t</div>\n\t\t\t\t</ng-template>\n\n\t\t\t\t<div class=\"bx--tooltip__label\">\n\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t<div role=\"button\">\n\t\t\t\t\t\t\t<ibm-icon-information-filled16></ibm-icon-information-filled16>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</span>\n\t\t\t\t</div>\n\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t</div>\n\t\t`,\n\t\tprops: {\n\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\ttriggerText: text(\"Trigger text\", \"Tooltip label\")\n\t\t}\n\t}))\n\t.add(\"No icon\", () => ({\n\t\ttemplate: `\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t[offset]=\"offset\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\t\ttriggerText: text(\"Trigger text\", \"Tooltip label\"),\n\t\t\t\toffset: object(\"Horizontal and vertical offset\", { x: 0, y: 0 })\n\t\t\t}\n\t}))\n\t.add(\"Only icon\", () => ({\n\t\ttemplate: `\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t<div role=\"button\" class=\"bx--tooltip__trigger\">\n\t\t\t\t\t\t\t<svg focusable=\"false\" aria-label=\"tooltip\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" role=\"img\" style=\"will-change: transform;\">\n\t\t\t\t\t\t\t\t<circle cx=\"8\" cy=\"3\" r=\"1\"></circle><circle cx=\"8\" cy=\"8\" r=\"1\"></circle><circle cx=\"8\" cy=\"13\" r=\"1\"></circle>\n\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\")\n\t\t\t}\n\t}))\n\t.add(\"Multiple tooltips\", () => ({\n\t\ttemplate: `\n\t\t\t<div style=\"display: flex\">\n\t\t\t\t<div style=\"margin-right:30px\">\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"hover\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template2 let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template2\"\n\t\t\t\t\t\ttrigger=\"hover\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\t\ttriggerText: text(\"Trigger text\", \"Tooltip label\")\n\t\t\t}\n\t}))\n\t.add(\"Ellipsis tooltip\", () => ({\n\t\tstyles: [`\n\t\t\t.fullText {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t\t.overflowText {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\twidth: 100px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t`],\n\t\ttemplate: `\n\t\t\t<span\n\t\t\t\tclass=\"ellipsis\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'fullText': showFullText,\n\t\t\t\t\t'overflowText': !showFullText\n\t\t\t\t}\"\n\t\t\t\ttrigger=\"hover\"\n\t\t\t\t[offset]=\"offset\"\n\t\t\t\t[placement]=\"placement\"\n\t\t\t\tibmEllipsisTooltip>\n\t\t\t\t\tTooltip for ellipsis because I can and I am really really long\n\t\t\t</span>\n\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t`,\n\t\tprops: {\n\t\t\tshowFullText: boolean(\"Show full text\", false),\n\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\toffset: object(\"Horizontal and vertical offset\", { x: 0, y: 0 })\n\t\t}\n\t}))\n\t.add(\"Documentation\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-documentation src=\"documentation/directives/TooltipDirective.html\"></ibm-documentation>\n\t\t`\n\t}));\n";
|
|
7192
|
+
var __STORY__ = "import { storiesOf, moduleMetadata } from \"@storybook/angular\";\nimport { action } from \"@storybook/addon-actions\";\nimport {\n\twithKnobs,\n\ttext,\n\tselect,\n\tobject,\n\tboolean\n} from \"@storybook/addon-knobs/angular\";\n\nimport { InformationFilled16Module } from \"@carbon/icons-angular/lib/information--filled/16\";\nimport { DialogModule, PlaceholderModule, DocumentationModule } from \"../../\";\nimport { TagModule } from \"../../tag/tag.module\";\n\nstoriesOf(\"Components|Tooltip\", module)\n\t.addDecorator(\n\t\tmoduleMetadata({\n\t\t\timports: [\n\t\t\t\tDialogModule,\n\t\t\t\tTagModule,\n\t\t\t\tPlaceholderModule,\n\t\t\t\tInformationFilled16Module,\n\t\t\t\tDocumentationModule\n\t\t\t]\n\t\t})\n\t)\n\t.addDecorator(withKnobs)\n\t.add(\"Basic\", () => ({\n\t\ttemplate: `\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\n\t\t\t\t\t<div class=\"bx--tooltip__label\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t\t<div role=\"button\">\n\t\t\t\t\t\t\t\t<ibm-icon-information-filled16></ibm-icon-information-filled16>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</span>\n\t\t\t\t\t</div>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\t\ttriggerText: text(\"Trigger text\", \"Tooltip label\")\n\t\t\t}\n\t\t}))\n\t.add(\"With dynamic content\", () => ({\n\t\ttemplate: `\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<ibm-tag-filter\n\t\t\t\t\t\t\t*ngFor=\"let tag of tags; let i of index\"\n\t\t\t\t\t\t\t(close)=\"removeTag(i)\">\n\t\t\t\t\t\t\t{{ tag.content }}\n\t\t\t\t\t\t</ibm-tag-filter>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<div class=\"bx--tooltip__label\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t\t<div role=\"button\">\n\t\t\t\t\t\t\t\t<ibm-icon-information-filled16></ibm-icon-information-filled16>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</span>\n\t\t\t\t\t</div>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\t\ttriggerText: text(\"Trigger text\", \"Tooltip label\"),\n\t\t\t\ttags: [{ content: \"One\" }, { content: \"Two\" }, { content: \"Three\" }, { content: \"Four\" }],\n\t\t\t\tremoveTag: function(index: number) {\n\t\t\t\t\tthis.tags.splice(index, 1);\n\t\t\t\t}\n\t\t\t}\n\t\t}))\n\t.add(\"No icon\", () => ({\n\t\ttemplate: `\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t[offset]=\"offset\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\t\ttriggerText: text(\"Trigger text\", \"Tooltip label\"),\n\t\t\t\toffset: object(\"Horizontal and vertical offset\", { x: 0, y: 0 })\n\t\t\t}\n\t}))\n\t.add(\"Only icon\", () => ({\n\t\ttemplate: `\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t<div role=\"button\" class=\"bx--tooltip__trigger\">\n\t\t\t\t\t\t\t<svg focusable=\"false\" aria-label=\"tooltip\" width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" role=\"img\" style=\"will-change: transform;\">\n\t\t\t\t\t\t\t\t<circle cx=\"8\" cy=\"3\" r=\"1\"></circle><circle cx=\"8\" cy=\"8\" r=\"1\"></circle><circle cx=\"8\" cy=\"13\" r=\"1\"></circle>\n\t\t\t\t\t\t\t</svg>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\")\n\t\t\t}\n\t}))\n\t.add(\"Multiple tooltips\", () => ({\n\t\ttemplate: `\n\t\t\t<div style=\"display: flex\">\n\t\t\t\t<div style=\"margin-right:30px\">\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"hover\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template2 let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template2\"\n\t\t\t\t\t\ttrigger=\"hover\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t`,\n\t\t\tprops: {\n\t\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\t\ttriggerText: text(\"Trigger text\", \"Tooltip label\")\n\t\t\t}\n\t}))\n\t.add(\"Ellipsis tooltip\", () => ({\n\t\tstyles: [`\n\t\t\t.fullText {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t\t.overflowText {\n\t\t\t\twhite-space: nowrap;\n\t\t\t\toverflow: hidden;\n\t\t\t\ttext-overflow: ellipsis;\n\t\t\t\twidth: 100px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t`],\n\t\ttemplate: `\n\t\t\t<span\n\t\t\t\tclass=\"ellipsis\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'fullText': showFullText,\n\t\t\t\t\t'overflowText': !showFullText\n\t\t\t\t}\"\n\t\t\t\ttrigger=\"hover\"\n\t\t\t\t[offset]=\"offset\"\n\t\t\t\t[placement]=\"placement\"\n\t\t\t\tibmEllipsisTooltip>\n\t\t\t\t\tTooltip for ellipsis because I can and I am really really long\n\t\t\t</span>\n\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t`,\n\t\tprops: {\n\t\t\tshowFullText: boolean(\"Show full text\", false),\n\t\t\tplacement: select(\"Tooltip direction\", [\"bottom\", \"top\", \"left\", \"right\"], \"bottom\"),\n\t\t\toffset: object(\"Horizontal and vertical offset\", { x: 0, y: 0 })\n\t\t}\n\t}))\n\t.add(\"Documentation\", () => ({\n\t\ttemplate: `\n\t\t\t<ibm-documentation src=\"documentation/directives/TooltipDirective.html\"></ibm-documentation>\n\t\t`\n\t}));\n";
|
|
7196
7193
|
// @ts-ignore
|
|
7197
|
-
var __ADDS_MAP__ = { "components-tooltip--documentation": { "startLoc": { "col": 6, "line":
|
|
7194
|
+
var __ADDS_MAP__ = { "components-tooltip--documentation": { "startLoc": { "col": 6, "line": 224 }, "endLoc": { "col": 3, "line": 228 }, "startBody": { "col": 23, "line": 224 }, "endBody": { "col": 3, "line": 228 } }, "components-tooltip--ellipsis-tooltip": { "startLoc": { "col": 6, "line": 189 }, "endLoc": { "col": 3, "line": 223 }, "startBody": { "col": 26, "line": 189 }, "endBody": { "col": 3, "line": 223 } }, "components-tooltip--multiple-tooltips": { "startLoc": { "col": 6, "line": 149 }, "endLoc": { "col": 3, "line": 188 }, "startBody": { "col": 27, "line": 149 }, "endBody": { "col": 3, "line": 188 } }, "components-tooltip--only-icon": { "startLoc": { "col": 6, "line": 120 }, "endLoc": { "col": 3, "line": 148 }, "startBody": { "col": 19, "line": 120 }, "endBody": { "col": 3, "line": 148 } }, "components-tooltip--no-icon": { "startLoc": { "col": 6, "line": 92 }, "endLoc": { "col": 3, "line": 119 }, "startBody": { "col": 17, "line": 92 }, "endBody": { "col": 3, "line": 119 } }, "components-tooltip--with-dynamic-content": { "startLoc": { "col": 6, "line": 59 }, "endLoc": { "col": 4, "line": 91 }, "startBody": { "col": 30, "line": 59 }, "endBody": { "col": 4, "line": 91 } }, "components-tooltip--basic": { "startLoc": { "col": 6, "line": 28 }, "endLoc": { "col": 4, "line": 58 }, "startBody": { "col": 15, "line": 28 }, "endBody": { "col": 4, "line": 58 } } };
|
|
7198
7195
|
// @ts-ignore
|
|
7199
7196
|
var __MAIN_FILE_LOCATION__ = "/tooltip.stories.ts";
|
|
7200
7197
|
// @ts-ignore
|
|
@@ -7207,10 +7204,12 @@ var __IDS_TO_FRAMEWORKS__ = {};
|
|
|
7207
7204
|
|
|
7208
7205
|
|
|
7209
7206
|
|
|
7207
|
+
|
|
7210
7208
|
Object(_storybook_angular__WEBPACK_IMPORTED_MODULE_0__["storiesOf"])("Components|Tooltip", module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__, __MAIN_FILE_LOCATION__, __MODULE_DEPENDENCIES__, __LOCAL_DEPENDENCIES__, __SOURCE_PREFIX__, __IDS_TO_FRAMEWORKS__))
|
|
7211
7209
|
.addDecorator(Object(_storybook_angular__WEBPACK_IMPORTED_MODULE_0__["moduleMetadata"])({
|
|
7212
7210
|
imports: [
|
|
7213
7211
|
___WEBPACK_IMPORTED_MODULE_3__["DialogModule"],
|
|
7212
|
+
_tag_tag_module__WEBPACK_IMPORTED_MODULE_4__["TagModule"],
|
|
7214
7213
|
___WEBPACK_IMPORTED_MODULE_3__["PlaceholderModule"],
|
|
7215
7214
|
_carbon_icons_angular_lib_information_filled_16__WEBPACK_IMPORTED_MODULE_2__["InformationFilled16Module"],
|
|
7216
7215
|
___WEBPACK_IMPORTED_MODULE_3__["DocumentationModule"]
|
|
@@ -7218,11 +7217,22 @@ Object(_storybook_angular__WEBPACK_IMPORTED_MODULE_0__["storiesOf"])("Components
|
|
|
7218
7217
|
}))
|
|
7219
7218
|
.addDecorator(_storybook_addon_knobs_angular__WEBPACK_IMPORTED_MODULE_1__["withKnobs"])
|
|
7220
7219
|
.add("Basic", function () { return ({
|
|
7221
|
-
template: "\n\t\t\t<div>\n\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t</div>\n\t\t\t\t</ng-template>\n\n\t\t\t\t<div class=\"bx--tooltip__label\">\n\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t<div role=\"button\">\n\t\t\t\t\t\t\t<ibm-icon-information-filled16></ibm-icon-information-filled16>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</span>\n\t\t\t\t</div>\n\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t</div>\n\t\t",
|
|
7220
|
+
template: "\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\n\t\t\t\t\t<div class=\"bx--tooltip__label\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t\t<div role=\"button\">\n\t\t\t\t\t\t\t\t<ibm-icon-information-filled16></ibm-icon-information-filled16>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</span>\n\t\t\t\t\t</div>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t",
|
|
7222
7221
|
props: {
|
|
7223
7222
|
placement: Object(_storybook_addon_knobs_angular__WEBPACK_IMPORTED_MODULE_1__["select"])("Tooltip direction", ["bottom", "top", "left", "right"], "bottom"),
|
|
7224
7223
|
triggerText: Object(_storybook_addon_knobs_angular__WEBPACK_IMPORTED_MODULE_1__["text"])("Trigger text", "Tooltip label")
|
|
7225
7224
|
}
|
|
7225
|
+
}); })
|
|
7226
|
+
.add("With dynamic content", function () { return ({
|
|
7227
|
+
template: "\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<ibm-tag-filter\n\t\t\t\t\t\t\t*ngFor=\"let tag of tags; let i of index\"\n\t\t\t\t\t\t\t(close)=\"removeTag(i)\">\n\t\t\t\t\t\t\t{{ tag.content }}\n\t\t\t\t\t\t</ibm-tag-filter>\n\t\t\t\t\t</ng-template>\n\t\t\t\t\t<div class=\"bx--tooltip__label\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t\t<span\n\t\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t\t<div role=\"button\">\n\t\t\t\t\t\t\t\t<ibm-icon-information-filled16></ibm-icon-information-filled16>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</span>\n\t\t\t\t\t</div>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t",
|
|
7228
|
+
props: {
|
|
7229
|
+
placement: Object(_storybook_addon_knobs_angular__WEBPACK_IMPORTED_MODULE_1__["select"])("Tooltip direction", ["bottom", "top", "left", "right"], "bottom"),
|
|
7230
|
+
triggerText: Object(_storybook_addon_knobs_angular__WEBPACK_IMPORTED_MODULE_1__["text"])("Trigger text", "Tooltip label"),
|
|
7231
|
+
tags: [{ content: "One" }, { content: "Two" }, { content: "Three" }, { content: "Four" }],
|
|
7232
|
+
removeTag: function (index) {
|
|
7233
|
+
this.tags.splice(index, 1);
|
|
7234
|
+
}
|
|
7235
|
+
}
|
|
7226
7236
|
}); })
|
|
7227
7237
|
.add("No icon", function () { return ({
|
|
7228
7238
|
template: "\n\t\t\t\t<div>\n\t\t\t\t\t<ng-template #template let-tooltip=\"tooltip\">\n\t\t\t\t\t\t<p>This is some tooltip text. This box shows the maximum amount of text that should appear inside.\n\t\t\t\t\t\t\tIf more room is needed please use a modal instead.</p>\n\t\t\t\t\t\t<div class=\"bx--tooltip__footer\">\n\t\t\t\t\t\t\t<a href=\"/\" class=\"bx--link\">Learn More</a>\n\t\t\t\t\t\t\t<button class=\"bx--btn bx--btn--primary\" (click)=\"tooltip.doClose()\">Close</button>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</ng-template>\n\n\t\t\t\t\t<span\n\t\t\t\t\t\t[ibmTooltip]=\"template\"\n\t\t\t\t\t\ttrigger=\"click\"\n\t\t\t\t\t\t[offset]=\"offset\"\n\t\t\t\t\t\t[placement]=\"placement\">\n\t\t\t\t\t\t{{triggerText}}\n\t\t\t\t\t</span>\n\t\t\t\t\t<ibm-placeholder></ibm-placeholder>\n\t\t\t\t</div>\n\t\t\t",
|
|
@@ -8940,7 +8950,11 @@ var DropdownList = /** @class */ (function () {
|
|
|
8940
8950
|
* Additionally, any Observables for the `DropdownList` are initialized.
|
|
8941
8951
|
*/
|
|
8942
8952
|
DropdownList.prototype.ngAfterViewInit = function () {
|
|
8953
|
+
var _this = this;
|
|
8943
8954
|
this.index = this.getListItems().findIndex(function (item) { return item.selected; });
|
|
8955
|
+
setTimeout(function () {
|
|
8956
|
+
_this.doEmitSelect();
|
|
8957
|
+
});
|
|
8944
8958
|
this.setupFocusObservable();
|
|
8945
8959
|
};
|
|
8946
8960
|
/**
|
|
@@ -8954,6 +8968,18 @@ var DropdownList = /** @class */ (function () {
|
|
|
8954
8968
|
this._itemsSubscription.unsubscribe();
|
|
8955
8969
|
}
|
|
8956
8970
|
};
|
|
8971
|
+
DropdownList.prototype.doEmitSelect = function () {
|
|
8972
|
+
if (this.type === "single") {
|
|
8973
|
+
this.select.emit({ item: this._items.find(function (item) { return item.selected; }), isUpdate: true });
|
|
8974
|
+
}
|
|
8975
|
+
else {
|
|
8976
|
+
// abuse javascripts object mutability until we can break the API and switch to
|
|
8977
|
+
// { items: [], isUpdate: true }
|
|
8978
|
+
var selected = this.getSelected() || [];
|
|
8979
|
+
selected["isUpdate"] = true;
|
|
8980
|
+
this.select.emit(selected);
|
|
8981
|
+
}
|
|
8982
|
+
};
|
|
8957
8983
|
/**
|
|
8958
8984
|
* Updates the displayed list of items and then retrieves the most current properties for the `DropdownList` from the DOM.
|
|
8959
8985
|
*/
|
|
@@ -8967,16 +8993,7 @@ var DropdownList = /** @class */ (function () {
|
|
|
8967
8993
|
if (_this.getSelected() !== []) {
|
|
8968
8994
|
return;
|
|
8969
8995
|
}
|
|
8970
|
-
|
|
8971
|
-
_this.select.emit({ item: _this._items.find(function (item) { return item.selected; }), isUpdate: true });
|
|
8972
|
-
}
|
|
8973
|
-
else {
|
|
8974
|
-
// abuse javascripts object mutability until we can break the API and switch to
|
|
8975
|
-
// { items: [], isUpdate: true }
|
|
8976
|
-
var selected = _this.getSelected() || [];
|
|
8977
|
-
selected["isUpdate"] = true;
|
|
8978
|
-
_this.select.emit(selected);
|
|
8979
|
-
}
|
|
8996
|
+
_this.doEmitSelect();
|
|
8980
8997
|
});
|
|
8981
8998
|
};
|
|
8982
8999
|
/**
|
|
@@ -11059,9 +11076,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
11059
11076
|
"FORWARD": "Forward",
|
|
11060
11077
|
"TOTAL_ITEMS_UNKNOWN": "{{start}}-{{end}} items",
|
|
11061
11078
|
"TOTAL_ITEMS": "{{start}}-{{end}} of {{total}} items",
|
|
11062
|
-
"
|
|
11079
|
+
"TOTAL_ITEM": "{{start}}-{{end}} of {{total}} item",
|
|
11063
11080
|
"PAGE": "page",
|
|
11064
|
-
"OF_LAST_PAGES": "of {{last}} pages"
|
|
11081
|
+
"OF_LAST_PAGES": "of {{last}} pages",
|
|
11082
|
+
"OF_LAST_PAGE": "of {{last}} page"
|
|
11065
11083
|
},
|
|
11066
11084
|
"TABLE": {
|
|
11067
11085
|
"GO_TO_PAGE": "Go to page",
|
|
@@ -16609,10 +16627,11 @@ var Pagination = /** @class */ (function () {
|
|
|
16609
16627
|
this.backwardText = this.i18n.getOverridable("PAGINATION.BACKWARD");
|
|
16610
16628
|
this.forwardText = this.i18n.getOverridable("PAGINATION.FORWARD");
|
|
16611
16629
|
this.totalItemsText = this.i18n.getOverridable("PAGINATION.TOTAL_ITEMS");
|
|
16630
|
+
this.totalItemText = this.i18n.getOverridable("PAGINATION.TOTAL_ITEM");
|
|
16612
16631
|
this.totalItemsUnknownText = this.i18n.getOverridable("PAGINATION.TOTAL_ITEMS_UNKNOWN");
|
|
16613
|
-
this.totalPagesText = this.i18n.getOverridable("PAGINATION.TOTAL_PAGES");
|
|
16614
16632
|
this.pageText = this.i18n.getOverridable("PAGINATION.PAGE");
|
|
16615
16633
|
this.ofLastPagesText = this.i18n.getOverridable("PAGINATION.OF_LAST_PAGES");
|
|
16634
|
+
this.ofLastPageText = this.i18n.getOverridable("PAGINATION.OF_LAST_PAGE");
|
|
16616
16635
|
this._pageOptions = [];
|
|
16617
16636
|
Pagination_1.paginationCounter++;
|
|
16618
16637
|
}
|
|
@@ -16626,9 +16645,11 @@ var Pagination = /** @class */ (function () {
|
|
|
16626
16645
|
* "OPEN_LIST_OF_OPTIONS": "Open list of options",
|
|
16627
16646
|
* "BACKWARD": "Backward",
|
|
16628
16647
|
* "FORWARD": "Forward",
|
|
16648
|
+
* "TOTAL_ITEMS_UNKNOWN": "{{start}}-{{end}} items",
|
|
16629
16649
|
* "TOTAL_ITEMS": "{{start}}-{{end}} of {{total}} items",
|
|
16630
|
-
* "
|
|
16631
|
-
* "OF_LAST_PAGES": "of {{last}} pages"
|
|
16650
|
+
* "TOTAL_ITEM": "{{start}}-{{end}} of {{total}} item",
|
|
16651
|
+
* "OF_LAST_PAGES": "of {{last}} pages",
|
|
16652
|
+
* "OF_LAST_PAGE": "of {{last}} page",
|
|
16632
16653
|
* }
|
|
16633
16654
|
* ```
|
|
16634
16655
|
*/
|
|
@@ -16639,10 +16660,11 @@ var Pagination = /** @class */ (function () {
|
|
|
16639
16660
|
this.backwardText.override(valueWithDefaults.BACKWARD);
|
|
16640
16661
|
this.forwardText.override(valueWithDefaults.FORWARD);
|
|
16641
16662
|
this.totalItemsText.override(valueWithDefaults.TOTAL_ITEMS);
|
|
16663
|
+
this.totalItemText.override(valueWithDefaults.TOTAL_ITEM);
|
|
16642
16664
|
this.totalItemsUnknownText.override(valueWithDefaults.TOTAL_ITEMS_UNKNOWN);
|
|
16643
|
-
this.totalPagesText.override(valueWithDefaults.TOTAL_PAGES);
|
|
16644
16665
|
this.pageText.override(valueWithDefaults.PAGE);
|
|
16645
16666
|
this.ofLastPagesText.override(valueWithDefaults.OF_LAST_PAGES);
|
|
16667
|
+
this.ofLastPageText.override(valueWithDefaults.OF_LAST_PAGE);
|
|
16646
16668
|
},
|
|
16647
16669
|
enumerable: true,
|
|
16648
16670
|
configurable: true
|
|
@@ -16784,7 +16806,7 @@ var Pagination = /** @class */ (function () {
|
|
|
16784
16806
|
Pagination = Pagination_1 = __decorate([
|
|
16785
16807
|
Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Component"])({
|
|
16786
16808
|
selector: "ibm-pagination",
|
|
16787
|
-
template: "\n\t<div\n\t\tclass=\"bx--pagination\"\n\t\t[ngClass]=\"{\n\t\t\t'bx--skeleton': skeleton\n\t\t}\">\n\t\t<!-- left skeleton div -->\n\t\t<div *ngIf=\"skeleton\" class=\"bx--pagination__left\">\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 70px\"></p>\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 35px\"></p>\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 105px\"></p>\n\t\t</div>\n\n\t\t<div *ngIf=\"!skeleton\" class=\"bx--pagination__left\">\n\t\t\t<label class=\"bx--pagination__text\" [for]=\"itemsPerPageSelectId\">\n\t\t\t\t{{itemsPerPageText.subject | async}}\n\t\t\t</label>\n\t\t\t<div class=\"bx--select bx--select--inline\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--select__item-count': isExperimental,\n\t\t\t\t\t'bx--select--disabled': pageInputDisabled\n\t\t\t\t}\">\n\t\t\t\t<select\n\t\t\t\t\t[id]=\"itemsPerPageSelectId\"\n\t\t\t\t\t[disabled]=\"pageInputDisabled\"\n\t\t\t\t\t[(ngModel)]=\"itemsPerPage\"\n\t\t\t\t\tclass=\"bx--select-input\">\n\t\t\t\t\t<option\n\t\t\t\t\t\tclass=\"bx--select-option\"\n\t\t\t\t\t\t*ngFor=\"let option of itemsPerPageOptions\"\n\t\t\t\t\t\t[value]=\"option\">\n\t\t\t\t\t\t\t{{ option }}\n\t\t\t\t\t</option>\n\t\t\t\t</select>\n\t\t\t\t<svg\n\t\t\t\t\tibmIconChevronDown16\n\t\t\t\t\tstyle=\"display: inherit\"\n\t\t\t\t\tclass=\"bx--select__arrow\"\n\t\t\t\t\taria-hidden=\"true\"\n\t\t\t\t\t[attr.ariaLabel]=\"optionsListText.subject | async\">\n\t\t\t\t</svg>\n\t\t\t</div>\n\t\t\t<span *ngIf=\"!pagesUnknown\" class=\"bx--pagination__text\">\n\t\t\t\t<span *ngIf=\"!isExperimental\">| </span>\n\t\t\t\t{{totalItemsText.subject | i18nReplace:{start: startItemIndex, end: endItemIndex, total: totalDataLength } | async}}\n\t\t\t</span>\n\t\t\t<span *ngIf=\"pagesUnknown\" class=\"bx--pagination__text\">\n\t\t\t\t<span *ngIf=\"!isExperimental\">| </span>\n\t\t\t\t{{totalItemsUnknownText.subject | i18nReplace:{start: startItemIndex, end: endItemIndex } | async}}\n\t\t\t</span>\n\t\t</div>\n\n\t\t<!-- right skeleton div -->\n\t\t<div *ngIf=\"skeleton\" class=\"bx--pagination__right\">\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 70px\"></p>\n\t\t</div>\n\n\t\t<div *ngIf=\"!skeleton\" class=\"bx--pagination__right\"\n\t\t\t[ngClass]=\"{\n\t\t\t\t'bx--pagination--inline': !isExperimental\n\t\t\t}\">\n\t\t\t<div\n\t\t\t\tclass=\"bx--select bx--select--inline\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--select__page-number' : isExperimental,\n\t\t\t\t\t'bx--select--disabled': pageInputDisabled\n\t\t\t\t}\">\n\t\t\t\t<label [for]=\"currentPageSelectId\" class=\"bx--label bx--visually-hidden\">{{itemsPerPageText.subject | async}}</label>\n\t\t\t\t<input\n\t\t\t\t\t*ngIf=\"pageOptions.length > pageSelectThreshold\"\n\t\t\t\t\tstyle=\"padding-right: 1rem; margin-right: 1rem;\"\n\t\t\t\t\t[id]=\"currentPageSelectId\"\n\t\t\t\t\ttype=\"number\"\n\t\t\t\t\tmin=\"1\"\n\t\t\t\t\t[max]=\"pageOptions.length\"\n\t\t\t\t\tclass=\"bx--select-input\"\n\t\t\t\t\t[(ngModel)]=\"currentPage\">\n\t\t\t\t<select\n\t\t\t\t\t*ngIf=\"pageOptions.length <= pageSelectThreshold\"\n\t\t\t\t\t[id]=\"currentPageSelectId\"\n\t\t\t\t\t[disabled]=\"pageInputDisabled\"\n\t\t\t\t\tclass=\"bx--select-input\"\n\t\t\t\t\t[(ngModel)]=\"currentPage\">\n\t\t\t\t\t<option *ngFor=\"let page of pageOptions; let i = index;\" class=\"bx--select-option\" [value]=\"i + 1\">{{i + 1}}</option>\n\t\t\t\t</select>\n\t\t\t\t<svg\n\t\t\t\t\t*ngIf=\"pageOptions.length <= 1000\"\n\t\t\t\t\tibmIconChevronDown16\n\t\t\t\t\tstyle=\"display: inherit;\"\n\t\t\t\t\tclass=\"bx--select__arrow\"\n\t\t\t\t\t[attr.ariaLabel]=\"optionsListText.subject | async\">\n\t\t\t\t</svg>\n\t\t\t</div>\n\n\t\t\t<span *ngIf=\"!pagesUnknown\" class=\"bx--pagination__text\">\n\t\t\t\t{{ofLastPagesText.subject | i18nReplace: {last: lastPage} | async}}\n\t\t\t</span>\n\t\t\t<span *ngIf=\"pagesUnknown\" class=\"bx--pagination__text\">\n\t\t\t\t{{pageText.subject | async}} {{currentPage}}\n\t\t\t</span>\n\t\t\t<button\n\t\t\t\tclass=\"bx--pagination__button bx--pagination__button--backward\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--pagination__button--no-index': currentPage <= 1 || disabled\n\t\t\t\t}\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t\t[attr.aria-label]=\"backwardText.subject | async\"\n\t\t\t\t(click)=\"selectPage.emit(previousPage)\"\n\t\t\t\t[disabled]=\"(currentPage <= 1 || disabled ? true : null)\">\n\t\t\t\t<ibm-icon-caret-left16></ibm-icon-caret-left16>\n\t\t\t</button>\n\n\t\t\t<button\n\t\t\t\tclass=\"bx--pagination__button bx--pagination__button--forward\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--pagination__button--no-index': currentPage >= lastPage || disabled\n\t\t\t\t}\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t\t[attr.aria-label]=\"forwardText.subject | async\"\n\t\t\t\t(click)=\"selectPage.emit(nextPage)\"\n\t\t\t\t[disabled]=\"(currentPage >= lastPage || disabled ? true : null)\">\n\t\t\t\t<ibm-icon-caret-right16></ibm-icon-caret-right16>\n\t\t\t</button>\n\t\t</div>\n\t</div>\n\t"
|
|
16809
|
+
template: "\n\t<div\n\t\tclass=\"bx--pagination\"\n\t\t[ngClass]=\"{\n\t\t\t'bx--skeleton': skeleton\n\t\t}\">\n\t\t<!-- left skeleton div -->\n\t\t<div *ngIf=\"skeleton\" class=\"bx--pagination__left\">\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 70px\"></p>\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 35px\"></p>\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 105px\"></p>\n\t\t</div>\n\n\t\t<div *ngIf=\"!skeleton\" class=\"bx--pagination__left\">\n\t\t\t<label class=\"bx--pagination__text\" [for]=\"itemsPerPageSelectId\">\n\t\t\t\t{{itemsPerPageText.subject | async}}\n\t\t\t</label>\n\t\t\t<div class=\"bx--select bx--select--inline\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--select__item-count': isExperimental,\n\t\t\t\t\t'bx--select--disabled': pageInputDisabled\n\t\t\t\t}\">\n\t\t\t\t<select\n\t\t\t\t\t[id]=\"itemsPerPageSelectId\"\n\t\t\t\t\t[disabled]=\"pageInputDisabled\"\n\t\t\t\t\t[(ngModel)]=\"itemsPerPage\"\n\t\t\t\t\tclass=\"bx--select-input\">\n\t\t\t\t\t<option\n\t\t\t\t\t\tclass=\"bx--select-option\"\n\t\t\t\t\t\t*ngFor=\"let option of itemsPerPageOptions\"\n\t\t\t\t\t\t[value]=\"option\">\n\t\t\t\t\t\t\t{{ option }}\n\t\t\t\t\t</option>\n\t\t\t\t</select>\n\t\t\t\t<svg\n\t\t\t\t\tibmIconChevronDown16\n\t\t\t\t\tstyle=\"display: inherit\"\n\t\t\t\t\tclass=\"bx--select__arrow\"\n\t\t\t\t\taria-hidden=\"true\"\n\t\t\t\t\t[attr.ariaLabel]=\"optionsListText.subject | async\">\n\t\t\t\t</svg>\n\t\t\t</div>\n\t\t\t<span *ngIf=\"!pagesUnknown && totalDataLength <= 1\" class=\"bx--pagination__text\">\n\t\t\t\t{{totalItemText.subject | i18nReplace:{start: startItemIndex, end: endItemIndex, total: totalDataLength } | async}}\n\t\t\t</span>\n\t\t\t<span *ngIf=\"!pagesUnknown && totalDataLength > 1\" class=\"bx--pagination__text\">\n\t\t\t\t<span *ngIf=\"!isExperimental\">| </span>\n\t\t\t\t{{totalItemsText.subject | i18nReplace:{start: startItemIndex, end: endItemIndex, total: totalDataLength } | async}}\n\t\t\t</span>\n\t\t\t<span *ngIf=\"pagesUnknown\" class=\"bx--pagination__text\">\n\t\t\t\t<span *ngIf=\"!isExperimental\">| </span>\n\t\t\t\t{{totalItemsUnknownText.subject | i18nReplace:{start: startItemIndex, end: endItemIndex } | async}}\n\t\t\t</span>\n\t\t</div>\n\n\t\t<!-- right skeleton div -->\n\t\t<div *ngIf=\"skeleton\" class=\"bx--pagination__right\">\n\t\t\t<p class=\"bx--skeleton__text\" style=\"width: 70px\"></p>\n\t\t</div>\n\n\t\t<div *ngIf=\"!skeleton\" class=\"bx--pagination__right\"\n\t\t\t[ngClass]=\"{\n\t\t\t\t'bx--pagination--inline': !isExperimental\n\t\t\t}\">\n\t\t\t<div\n\t\t\t\tclass=\"bx--select bx--select--inline\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--select__page-number' : isExperimental,\n\t\t\t\t\t'bx--select--disabled': pageInputDisabled\n\t\t\t\t}\">\n\t\t\t\t<label [for]=\"currentPageSelectId\" class=\"bx--label bx--visually-hidden\">{{itemsPerPageText.subject | async}}</label>\n\t\t\t\t<input\n\t\t\t\t\t*ngIf=\"pageOptions.length > pageSelectThreshold\"\n\t\t\t\t\tstyle=\"padding-right: 1rem; margin-right: 1rem;\"\n\t\t\t\t\t[id]=\"currentPageSelectId\"\n\t\t\t\t\ttype=\"number\"\n\t\t\t\t\tmin=\"1\"\n\t\t\t\t\t[max]=\"pageOptions.length\"\n\t\t\t\t\tclass=\"bx--select-input\"\n\t\t\t\t\t[(ngModel)]=\"currentPage\">\n\t\t\t\t<select\n\t\t\t\t\t*ngIf=\"pageOptions.length <= pageSelectThreshold\"\n\t\t\t\t\t[id]=\"currentPageSelectId\"\n\t\t\t\t\t[disabled]=\"pageInputDisabled\"\n\t\t\t\t\tclass=\"bx--select-input\"\n\t\t\t\t\t[(ngModel)]=\"currentPage\">\n\t\t\t\t\t<option *ngFor=\"let page of pageOptions; let i = index;\" class=\"bx--select-option\" [value]=\"i + 1\">{{i + 1}}</option>\n\t\t\t\t</select>\n\t\t\t\t<svg\n\t\t\t\t\t*ngIf=\"pageOptions.length <= 1000\"\n\t\t\t\t\tibmIconChevronDown16\n\t\t\t\t\tstyle=\"display: inherit;\"\n\t\t\t\t\tclass=\"bx--select__arrow\"\n\t\t\t\t\t[attr.ariaLabel]=\"optionsListText.subject | async\">\n\t\t\t\t</svg>\n\t\t\t</div>\n\n\t\t\t<span *ngIf=\"!pagesUnknown && lastPage <= 1\" class=\"bx--pagination__text\">\n\t\t\t\t{{ofLastPageText.subject | i18nReplace: {last: lastPage} | async}}\n\t\t\t</span>\n\t\t\t<span *ngIf=\"!pagesUnknown && lastPage > 1\" class=\"bx--pagination__text\">\n\t\t\t\t{{ofLastPagesText.subject | i18nReplace: {last: lastPage} | async}}\n\t\t\t</span>\n\t\t\t<span *ngIf=\"pagesUnknown\" class=\"bx--pagination__text\">\n\t\t\t\t{{pageText.subject | async}} {{currentPage}}\n\t\t\t</span>\n\t\t\t<button\n\t\t\t\tclass=\"bx--pagination__button bx--pagination__button--backward\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--pagination__button--no-index': currentPage <= 1 || disabled\n\t\t\t\t}\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t\t[attr.aria-label]=\"backwardText.subject | async\"\n\t\t\t\t(click)=\"selectPage.emit(previousPage)\"\n\t\t\t\t[disabled]=\"(currentPage <= 1 || disabled ? true : null)\">\n\t\t\t\t<ibm-icon-caret-left16></ibm-icon-caret-left16>\n\t\t\t</button>\n\n\t\t\t<button\n\t\t\t\tclass=\"bx--pagination__button bx--pagination__button--forward\"\n\t\t\t\t[ngClass]=\"{\n\t\t\t\t\t'bx--pagination__button--no-index': currentPage >= lastPage || disabled\n\t\t\t\t}\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t\t[attr.aria-label]=\"forwardText.subject | async\"\n\t\t\t\t(click)=\"selectPage.emit(nextPage)\"\n\t\t\t\t[disabled]=\"(currentPage >= lastPage || disabled ? true : null)\">\n\t\t\t\t<ibm-icon-caret-right16></ibm-icon-caret-right16>\n\t\t\t</button>\n\t\t</div>\n\t</div>\n\t"
|
|
16788
16810
|
}),
|
|
16789
16811
|
__metadata("design:paramtypes", [typeof (_b = typeof _i18n_i18n_module__WEBPACK_IMPORTED_MODULE_2__["I18n"] !== "undefined" && _i18n_i18n_module__WEBPACK_IMPORTED_MODULE_2__["I18n"]) === "function" && _b || Object, typeof (_c = typeof _experimental_module__WEBPACK_IMPORTED_MODULE_3__["ExperimentalService"] !== "undefined" && _experimental_module__WEBPACK_IMPORTED_MODULE_3__["ExperimentalService"]) === "function" && _c || Object])
|
|
16790
16812
|
], Pagination);
|
|
@@ -19053,7 +19075,7 @@ Object(_storybook_angular__WEBPACK_IMPORTED_MODULE_0__["storiesOf"])("Components
|
|
|
19053
19075
|
/*! no static exports found */
|
|
19054
19076
|
/***/ (function(module, exports) {
|
|
19055
19077
|
|
|
19056
|
-
module.exports = "<div\n\tclass=\"bx--search\"\n\t[ngClass]=\"{\n\t\t'bx--search--sm': size === 'sm',\n\t\t'bx--search--xl': size === 'xl',\n\t\t'bx--search--light': theme === 'light',\n\t\t'bx--skeleton': skeleton,\n\t\t'bx--toolbar-search': toolbar,\n\t\t'bx--toolbar-search--active': toolbar && active\n\t}\"\n\trole=\"search\">\n\t<label class=\"bx--label\" [for]=\"id\">{{label}}</label>\n\n\t<div *ngIf=\"skeleton; else enableInput\" class=\"bx--search-input\"></div>\n\t<ng-template #enableInput>\n\t\t<input\n\t\t\t#input\n\t\t\t*ngIf=\"!toolbar || active || value !== ''\"\n\t\t\tclass=\"bx--search-input\"\n\t\t\t[type]=\"tableSearch || !toolbar ? 'text' : 'search'\"\n\t\t\t[id]=\"id\"\n\t\t\t[value]=\"value\"\n\t\t\t[autocomplete]=\"autocomplete\"\n\t\t\t[placeholder]=\"placeholder\"\n\t\t\t[disabled]=\"disabled\"\n\t\t\t[required]=\"required\"\n\t\t\t(input)=\"onSearch($event.target.value)\"/>\n\t\t<button *ngIf=\"!tableSearch && toolbar\" class=\"bx--toolbar-search__btn\" (click)=\"openSearch()\">\n\t\t\t<ibm-icon-search16 class=\"bx--search-magnifier\"></ibm-icon-search16>\n\t\t</button>\n\t\t<ibm-icon-search16 *ngIf=\"tableSearch || !toolbar\" (click)=\"openSearch()\" class=\"bx--search-magnifier\"></ibm-icon-search16>\n\t</ng-template>\n\n\t<button\n\t\t*ngIf=\"tableSearch || !toolbar\"\n\t\tclass=\"bx--search-close\"\n\t\t[ngClass]=\"{\n\t\t\t'bx--search-close--hidden': !value || value.length === 0\n\t\t}\"\n\t\t[title]=\"clearButtonTitle\"\n\t\t[attr.aria-label]=\"clearButtonTitle\"\n\t\t(click)=\"clearSearch()\">\n\t\t<ibm-icon-close16></ibm-icon-close16>\n\t</button>\n</div>\n"
|
|
19078
|
+
module.exports = "<div\n\tclass=\"bx--search\"\n\t[ngClass]=\"{\n\t\t'bx--search--sm': size === 'sm',\n\t\t'bx--search--xl': size === 'xl',\n\t\t'bx--search--light': theme === 'light',\n\t\t'bx--skeleton': skeleton,\n\t\t'bx--toolbar-search': toolbar,\n\t\t'bx--toolbar-search--active': toolbar && active\n\t}\"\n\trole=\"search\">\n\t<label class=\"bx--label\" [for]=\"id\">{{label}}</label>\n\n\t<div *ngIf=\"skeleton; else enableInput\" class=\"bx--search-input\"></div>\n\t<ng-template #enableInput>\n\t\t<input\n\t\t\t#input\n\t\t\t*ngIf=\"!toolbar || active || value !== ''\"\n\t\t\tclass=\"bx--search-input\"\n\t\t\t[type]=\"tableSearch || !toolbar ? 'text' : 'search'\"\n\t\t\t[id]=\"id\"\n\t\t\t[value]=\"value\"\n\t\t\t[autocomplete]=\"autocomplete\"\n\t\t\t[placeholder]=\"placeholder\"\n\t\t\t[disabled]=\"disabled\"\n\t\t\t[required]=\"required\"\n\t\t\t(keyup.enter)=\"onEnter()\"\n\t\t\t(input)=\"onSearch($event.target.value)\"/>\n\t\t<button *ngIf=\"!tableSearch && toolbar\" class=\"bx--toolbar-search__btn\" (click)=\"openSearch()\">\n\t\t\t<ibm-icon-search16 class=\"bx--search-magnifier\"></ibm-icon-search16>\n\t\t</button>\n\t\t<ibm-icon-search16 *ngIf=\"tableSearch || !toolbar\" (click)=\"openSearch()\" class=\"bx--search-magnifier\"></ibm-icon-search16>\n\t</ng-template>\n\n\t<button\n\t\t*ngIf=\"tableSearch || !toolbar\"\n\t\tclass=\"bx--search-close\"\n\t\t[ngClass]=\"{\n\t\t\t'bx--search-close--hidden': !value || value.length === 0\n\t\t}\"\n\t\t[title]=\"clearButtonTitle\"\n\t\t[attr.aria-label]=\"clearButtonTitle\"\n\t\t(click)=\"clearSearch()\">\n\t\t<ibm-icon-close16></ibm-icon-close16>\n\t</button>\n</div>\n"
|
|
19057
19079
|
|
|
19058
19080
|
/***/ }),
|
|
19059
19081
|
|
|
@@ -19164,6 +19186,10 @@ var Search = /** @class */ (function () {
|
|
|
19164
19186
|
* Emits an event when value is changed.
|
|
19165
19187
|
*/
|
|
19166
19188
|
this.valueChange = new _angular_core__WEBPACK_IMPORTED_MODULE_0__["EventEmitter"]();
|
|
19189
|
+
/**
|
|
19190
|
+
* Emits an event on enter.
|
|
19191
|
+
*/
|
|
19192
|
+
this.search = new _angular_core__WEBPACK_IMPORTED_MODULE_0__["EventEmitter"]();
|
|
19167
19193
|
this.open = new _angular_core__WEBPACK_IMPORTED_MODULE_0__["EventEmitter"]();
|
|
19168
19194
|
/**
|
|
19169
19195
|
* Emits an event when the clear button is clicked.
|
|
@@ -19231,6 +19257,12 @@ var Search = /** @class */ (function () {
|
|
|
19231
19257
|
this.value = search;
|
|
19232
19258
|
this.doValueChange();
|
|
19233
19259
|
};
|
|
19260
|
+
/**
|
|
19261
|
+
* Called on enter.
|
|
19262
|
+
*/
|
|
19263
|
+
Search.prototype.onEnter = function () {
|
|
19264
|
+
this.search.emit(this.value);
|
|
19265
|
+
};
|
|
19234
19266
|
/**
|
|
19235
19267
|
* Called when clear button is clicked.
|
|
19236
19268
|
*/
|
|
@@ -19351,6 +19383,10 @@ var Search = /** @class */ (function () {
|
|
|
19351
19383
|
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["Output"])(),
|
|
19352
19384
|
__metadata("design:type", Object)
|
|
19353
19385
|
], Search.prototype, "valueChange", void 0);
|
|
19386
|
+
__decorate([
|
|
19387
|
+
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["Output"])(),
|
|
19388
|
+
__metadata("design:type", Object)
|
|
19389
|
+
], Search.prototype, "search", void 0);
|
|
19354
19390
|
__decorate([
|
|
19355
19391
|
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["Output"])(),
|
|
19356
19392
|
__metadata("design:type", Object)
|
|
@@ -28552,8 +28588,21 @@ var TagFilter = /** @class */ (function (_super) {
|
|
|
28552
28588
|
* Function for close/delete the tag
|
|
28553
28589
|
*/
|
|
28554
28590
|
_this.close = new _angular_core__WEBPACK_IMPORTED_MODULE_0__["EventEmitter"]();
|
|
28591
|
+
/**
|
|
28592
|
+
* We need to stop the immedate propagation of click on the close button
|
|
28593
|
+
* to prevent undesired effects when used within dialogs.
|
|
28594
|
+
*
|
|
28595
|
+
* We need to emit a click event on close to allow for clicks to be listened
|
|
28596
|
+
* to on the immediate close button element.
|
|
28597
|
+
*/
|
|
28598
|
+
_this.click = new _angular_core__WEBPACK_IMPORTED_MODULE_0__["EventEmitter"]();
|
|
28555
28599
|
return _this;
|
|
28556
28600
|
}
|
|
28601
|
+
TagFilter.prototype.onClose = function (event) {
|
|
28602
|
+
event.stopImmediatePropagation();
|
|
28603
|
+
this.click.emit();
|
|
28604
|
+
this.close.emit();
|
|
28605
|
+
};
|
|
28557
28606
|
Object.defineProperty(TagFilter.prototype, "attrClass", {
|
|
28558
28607
|
get: function () {
|
|
28559
28608
|
return "bx--tag bx--tag--filter bx--tag--" + this.type + " " + this.class;
|
|
@@ -28565,6 +28614,10 @@ var TagFilter = /** @class */ (function (_super) {
|
|
|
28565
28614
|
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["Output"])(),
|
|
28566
28615
|
__metadata("design:type", Object)
|
|
28567
28616
|
], TagFilter.prototype, "close", void 0);
|
|
28617
|
+
__decorate([
|
|
28618
|
+
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["Output"])(),
|
|
28619
|
+
__metadata("design:type", Object)
|
|
28620
|
+
], TagFilter.prototype, "click", void 0);
|
|
28568
28621
|
__decorate([
|
|
28569
28622
|
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["HostBinding"])("attr.class"),
|
|
28570
28623
|
__metadata("design:type", Object),
|
|
@@ -28573,7 +28626,7 @@ var TagFilter = /** @class */ (function (_super) {
|
|
|
28573
28626
|
TagFilter = __decorate([
|
|
28574
28627
|
Object(_angular_core__WEBPACK_IMPORTED_MODULE_0__["Component"])({
|
|
28575
28628
|
selector: "ibm-tag-filter",
|
|
28576
|
-
template: "\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\t(click)=\"
|
|
28629
|
+
template: "\n\t\t<ng-content></ng-content>\n\t\t<svg\n\t\t\t(click)=\"onClose($event)\"\n\t\t\tfocusable=\"false\"\n\t\t\tpreserveAspectRatio=\"xMidYMid meet\"\n\t\t\tstyle=\"will-change: transform;\"\n\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\taria-label=\"Clear filter\"\n\t\t\twidth=\"16\"\n\t\t\theight=\"16\"\n\t\t\tviewBox=\"0 0 16 16\"\n\t\t\trole=\"img\">\n\t\t\t<path d=\"M12 4.7l-.7-.7L8 7.3 4.7 4l-.7.7L7.3 8 4 11.3l.7.7L8 8.7l3.3 3.3.7-.7L8.7 8z\"></path>\n\t\t</svg>\n\t"
|
|
28577
28630
|
})
|
|
28578
28631
|
], TagFilter);
|
|
28579
28632
|
return TagFilter;
|
|
@@ -32981,4 +33034,4 @@ module.exports = __webpack_require__(/*! /home/travis/build/IBM/carbon-component
|
|
|
32981
33034
|
/***/ })
|
|
32982
33035
|
|
|
32983
33036
|
},[[0,"runtime~main","vendors~main"]]]);
|
|
32984
|
-
//# sourceMappingURL=main.
|
|
33037
|
+
//# sourceMappingURL=main.1ccde517361f3d1a057c.bundle.js.map
|