@ni/nimble-angular 1.0.0-beta.9 → 1.0.0-beta.93

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.
Files changed (78) hide show
  1. package/README.md +6 -2
  2. package/bundles/ni-nimble-angular.umd.js +953 -0
  3. package/bundles/ni-nimble-angular.umd.js.map +1 -0
  4. package/directives/button/index.d.ts +2 -0
  5. package/directives/button/nimble-button.directive.d.ts +11 -0
  6. package/directives/button/nimble-button.module.d.ts +9 -0
  7. package/directives/checkbox/index.d.ts +3 -0
  8. package/directives/checkbox/nimble-checkbox-control-value-accessor.directive.d.ts +12 -0
  9. package/directives/checkbox/nimble-checkbox.directive.d.ts +8 -0
  10. package/directives/checkbox/nimble-checkbox.module.d.ts +10 -0
  11. package/directives/control-value-accessor/index.d.ts +3 -0
  12. package/directives/control-value-accessor/nimble-control-value-accessor.module.d.ts +9 -0
  13. package/directives/control-value-accessor/nimble-default-control-value-accessor.directive.d.ts +12 -0
  14. package/directives/control-value-accessor/nimble-number-control-value-accessor.directive.d.ts +12 -0
  15. package/directives/listbox-option/index.d.ts +2 -0
  16. package/directives/listbox-option/nimble-listbox-option.directive.d.ts +14 -0
  17. package/directives/listbox-option/nimble-listbox-option.module.d.ts +9 -0
  18. package/directives/number-field/index.d.ts +2 -0
  19. package/directives/number-field/nimble-number-field.directive.d.ts +13 -0
  20. package/directives/number-field/nimble-number-field.module.d.ts +10 -0
  21. package/directives/select/index.d.ts +3 -0
  22. package/directives/select/nimble-select-control-value-accessor.directive.d.ts +14 -0
  23. package/directives/select/nimble-select.directive.d.ts +8 -0
  24. package/directives/select/nimble-select.module.d.ts +10 -0
  25. package/directives/text-field/index.d.ts +2 -0
  26. package/directives/text-field/nimble-text-field.directive.d.ts +9 -0
  27. package/directives/text-field/nimble-text-field.module.d.ts +10 -0
  28. package/directives/theme-provider/index.d.ts +2 -0
  29. package/directives/theme-provider/nimble-theme-provider.directive.d.ts +9 -0
  30. package/directives/theme-provider/nimble-theme-provider.module.d.ts +9 -0
  31. package/directives/tree-item/index.d.ts +2 -0
  32. package/directives/tree-item/nimble-tree-item.directive.d.ts +19 -0
  33. package/directives/tree-item/nimble-tree-item.module.d.ts +9 -0
  34. package/directives/tree-view/index.d.ts +2 -0
  35. package/directives/tree-view/nimble-tree-view.directive.d.ts +8 -0
  36. package/directives/tree-view/nimble-tree-view.module.d.ts +9 -0
  37. package/esm2015/directives/button/index.js +3 -0
  38. package/esm2015/directives/button/nimble-button.directive.js +26 -0
  39. package/esm2015/directives/button/nimble-button.module.js +19 -0
  40. package/esm2015/directives/checkbox/index.js +4 -0
  41. package/esm2015/directives/checkbox/nimble-checkbox-control-value-accessor.directive.js +32 -0
  42. package/esm2015/directives/checkbox/nimble-checkbox.directive.js +16 -0
  43. package/esm2015/directives/checkbox/nimble-checkbox.module.js +20 -0
  44. package/esm2015/directives/control-value-accessor/index.js +4 -0
  45. package/esm2015/directives/control-value-accessor/nimble-control-value-accessor.module.js +19 -0
  46. package/esm2015/directives/control-value-accessor/nimble-default-control-value-accessor.directive.js +37 -0
  47. package/esm2015/directives/control-value-accessor/nimble-number-control-value-accessor.directive.js +32 -0
  48. package/esm2015/directives/listbox-option/index.js +3 -0
  49. package/esm2015/directives/listbox-option/nimble-listbox-option.directive.js +30 -0
  50. package/esm2015/directives/listbox-option/nimble-listbox-option.module.js +19 -0
  51. package/esm2015/directives/number-field/index.js +3 -0
  52. package/esm2015/directives/number-field/nimble-number-field.directive.js +41 -0
  53. package/esm2015/directives/number-field/nimble-number-field.module.js +21 -0
  54. package/esm2015/directives/select/index.js +4 -0
  55. package/esm2015/directives/select/nimble-select-control-value-accessor.directive.js +34 -0
  56. package/esm2015/directives/select/nimble-select.directive.js +16 -0
  57. package/esm2015/directives/select/nimble-select.module.js +20 -0
  58. package/esm2015/directives/text-field/index.js +3 -0
  59. package/esm2015/directives/text-field/nimble-text-field.directive.js +21 -0
  60. package/esm2015/directives/text-field/nimble-text-field.module.js +21 -0
  61. package/esm2015/directives/theme-provider/index.js +3 -0
  62. package/esm2015/directives/theme-provider/nimble-theme-provider.directive.js +21 -0
  63. package/esm2015/directives/theme-provider/nimble-theme-provider.module.js +19 -0
  64. package/esm2015/directives/tree-item/index.js +3 -0
  65. package/esm2015/directives/tree-item/nimble-tree-item.directive.js +63 -0
  66. package/esm2015/directives/tree-item/nimble-tree-item.module.js +19 -0
  67. package/esm2015/directives/tree-view/index.js +3 -0
  68. package/esm2015/directives/tree-view/nimble-tree-view.directive.js +16 -0
  69. package/esm2015/directives/tree-view/nimble-tree-view.module.js +19 -0
  70. package/esm2015/ni-nimble-angular.js +5 -0
  71. package/esm2015/public-api.js +14 -0
  72. package/fesm2015/ni-nimble-angular.js +519 -0
  73. package/fesm2015/ni-nimble-angular.js.map +1 -0
  74. package/ni-nimble-angular.d.ts +5 -0
  75. package/package.json +22 -13
  76. package/public-api.d.ts +10 -0
  77. package/.eslintrc.js +0 -38
  78. package/karma.conf.js +0 -46
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ni-nimble-angular.umd.js","sources":["../../../../projects/ni/nimble-angular/src/directives/theme-provider/nimble-theme-provider.directive.ts","../../../../projects/ni/nimble-angular/src/directives/theme-provider/nimble-theme-provider.module.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field.directive.ts","../../../../../node_modules/tslib/tslib.es6.js","../../../../projects/ni/nimble-angular/src/directives/control-value-accessor/nimble-default-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/control-value-accessor/nimble-number-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/control-value-accessor/nimble-control-value-accessor.module.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field.module.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field.directive.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field.module.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select.directive.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select.module.ts","../../../../projects/ni/nimble-angular/src/directives/listbox-option/nimble-listbox-option.directive.ts","../../../../projects/ni/nimble-angular/src/directives/listbox-option/nimble-listbox-option.module.ts","../../../../projects/ni/nimble-angular/src/directives/button/nimble-button.directive.ts","../../../../projects/ni/nimble-angular/src/directives/button/nimble-button.module.ts","../../../../projects/ni/nimble-angular/src/directives/tree-view/nimble-tree-view.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tree-view/nimble-tree-view.module.ts","../../../../projects/ni/nimble-angular/src/directives/tree-item/nimble-tree-item.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tree-item/nimble-tree-item.module.ts","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox.directive.ts","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox.module.ts","../../../../projects/ni/nimble-angular/src/public-api.ts","../../../../projects/ni/nimble-angular/src/ni-nimble-angular.ts"],"sourcesContent":["import { Directive, HostBinding, Input } from '@angular/core';\n\n/**\n * Directive for Angular integration for the theme provider\n */\n@Directive({\n selector: 'nimble-theme-provider'\n})\nexport class NimbleThemeProviderDirective {\n @HostBinding('attr.theme') @Input() public theme: string;\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleThemeProviderDirective } from './nimble-theme-provider.directive';\n\nimport '@ni/nimble-components/dist/esm/theme-provider';\n\n@NgModule({\n declarations: [NimbleThemeProviderDirective],\n imports: [CommonModule],\n exports: [NimbleThemeProviderDirective]\n})\nexport class NimbleThemeProviderModule { }\n","import { Directive, HostBinding, Input } from '@angular/core';\n\n/**\n * Directive to provide Angular integration for the text field\n */\n@Directive({\n selector: 'nimble-text-field'\n})\nexport class NimbleTextFieldDirective {\n @HostBinding('attr.readonly') @Input() public readonly: boolean;\n}\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n","import { Directive, forwardRef } from '@angular/core';\nimport { DefaultValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n/**\n * Extension of Angular's DefaultValueAccessor to target the text-based inputs.\n *\n * Directive decorator based on DefaultValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/default_value_accessor.ts#L72\n */\n@Directive({\n selector:\n 'nimble-text-field[formControlName],nimble-text-field[formControl],nimble-text-field[ngModel]',\n // The following host metadata is duplicated from DefaultValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: {\n '(input)': '$any(this)._handleInput($event.target.value)',\n '(blur)': 'onTouched()',\n '(compositionstart)': '$any(this)._compositionStart()',\n '(compositionend)': '$any(this)._compositionEnd($event.target.value)'\n },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleDefaultControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleDefaultControlValueAccessorDirective extends DefaultValueAccessor {}","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, NumberValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's NumberValueAccessor to target the number-based inputs.\n *\n * Directive decorator based on NumberValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/number_value_accessor.ts#L43\n */\n@Directive({\n selector:\n 'nimble-number-field[formControlName],nimble-number-field[formControl],nimble-number-field[ngModel]',\n // The following host metadata is duplicated from NumberValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(input)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleNumberControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleNumberControlValueAccessorDirective extends NumberValueAccessor {}","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleDefaultControlValueAccessorDirective } from './nimble-default-control-value-accessor.directive';\nimport { NimbleNumberControlValueAccessorDirective } from './nimble-number-control-value-accessor.directive';\n\n@NgModule({\n declarations: [NimbleDefaultControlValueAccessorDirective, NimbleNumberControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleDefaultControlValueAccessorDirective, NimbleNumberControlValueAccessorDirective]\n})\nexport class NimbleControlValueAccessorModule { }\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NimbleTextFieldDirective } from './nimble-text-field.directive';\nimport { NimbleControlValueAccessorModule } from '../control-value-accessor';\n\nimport '@ni/nimble-components/dist/esm/text-field';\n\n@NgModule({\n declarations: [NimbleTextFieldDirective],\n imports: [CommonModule, NimbleControlValueAccessorModule],\n providers: [],\n exports: [NimbleTextFieldDirective, NimbleControlValueAccessorModule]\n})\nexport class NimbleTextFieldModule {}\n","import { Directive, HostBinding, Input } from '@angular/core';\n\n/**\n * Directive to provide Angular integration for the number field.\n */\n@Directive({\n selector: 'nimble-number-field'\n})\nexport class NimbleNumberFieldDirective {\n @HostBinding('attr.readonly') @Input() public readonly: boolean;\n @HostBinding('attr.min') @Input() public min: number;\n @HostBinding('attr.max') @Input() public max: number;\n @HostBinding('attr.step') @Input() public step: number;\n @HostBinding('attr.placeholder') @Input() public placeholder: string;\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NimbleNumberFieldDirective } from './nimble-number-field.directive';\nimport { NimbleControlValueAccessorModule } from '../control-value-accessor';\n\nimport '@ni/nimble-components/dist/esm/number-field';\n\n@NgModule({\n declarations: [NimbleNumberFieldDirective],\n imports: [CommonModule, NimbleControlValueAccessorModule],\n providers: [],\n exports: [NimbleNumberFieldDirective, NimbleControlValueAccessorModule]\n})\nexport class NimbleNumberFieldModule {}\n","import { Directive } from '@angular/core';\n\n/**\n * Directive for Nimble select control Angular integration\n */\n@Directive({\n selector: 'nimble-select',\n})\nexport class NimbleSelectDirective {\n}\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, SelectControlValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's SelectControlValueAccessor to target the Nimble select control.\n *\n * @see NimbleSelectOptionDirective\n *\n * Directive decorator based on SelectControlValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/select_control_value_accessor.ts#L85\n */\n@Directive({\n selector:\n 'nimble-select:not([multiple])[formControlName],nimble-select:not([multiple])[formControl],nimble-select:not([multiple])[ngModel]',\n // The following host metadata is duplicated from SelectControlValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(change)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleSelectControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleSelectControlValueAccessorDirective extends SelectControlValueAccessor {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleSelectDirective } from './nimble-select.directive';\nimport { NimbleSelectControlValueAccessorDirective } from './nimble-select-control-value-accessor.directive';\n\nimport '@ni/nimble-components/dist/esm/select';\n\n@NgModule({\n declarations: [NimbleSelectDirective, NimbleSelectControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleSelectDirective, NimbleSelectControlValueAccessorDirective]\n})\nexport class NimbleSelectModule { }\n","import { Directive, ElementRef, Host, HostBinding, Input, Optional, Renderer2 } from '@angular/core';\nimport { NgSelectOption } from '@angular/forms';\nimport { ListboxOption } from '@ni/nimble-components/dist/esm/listbox-option';\nimport { NimbleSelectControlValueAccessorDirective } from '../select';\n\n/**\n * Directive to provide Angular integration for the listbox option.\n */\n@Directive({\n selector: 'nimble-listbox-option'\n})\nexport class NimbleListboxOptionDirective extends NgSelectOption {\n @HostBinding('attr.disabled') @Input() public disabled: boolean;\n\n public constructor(\n element: ElementRef<ListboxOption>, renderer: Renderer2,\n @Optional() @Host() select: NimbleSelectControlValueAccessorDirective\n ) {\n super(element, renderer, select);\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleListboxOptionDirective } from './nimble-listbox-option.directive';\n\nimport '@ni/nimble-components/dist/esm/listbox-option';\n\n@NgModule({\n declarations: [NimbleListboxOptionDirective],\n imports: [CommonModule],\n exports: [NimbleListboxOptionDirective]\n})\nexport class NimbleListboxOptionModule { }\n","import { Directive, HostBinding, Input } from '@angular/core';\nimport { ButtonAppearance } from '@ni/nimble-components/dist/esm/button/types';\n\n/**\n * Directive to provide Angular integration for the button.\n */\n@Directive({\n selector: 'nimble-button'\n})\nexport class NimbleButtonDirective {\n @HostBinding('disabled') @Input() public disabled: boolean;\n @HostBinding('appearance') @Input() public appearance: ButtonAppearance;\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleButtonDirective } from './nimble-button.directive';\n\nimport '@ni/nimble-components/dist/esm/button';\n\n@NgModule({\n declarations: [NimbleButtonDirective],\n imports: [CommonModule],\n exports: [NimbleButtonDirective]\n})\nexport class NimbleButtonModule { }\n","import { Directive } from '@angular/core';\n\n/**\n * Directive to provide Angular integration for the tree view.\n */\n@Directive({\n selector: 'nimble-tree-view'\n})\nexport class NimbleTreeViewDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTreeViewDirective } from './nimble-tree-view.directive';\n\nimport '@ni/nimble-components/dist/esm/tree-view';\n\n@NgModule({\n declarations: [NimbleTreeViewDirective],\n imports: [CommonModule],\n exports: [NimbleTreeViewDirective]\n})\nexport class NimbleTreeViewModule { }\n","import { Directive, ElementRef, EventEmitter, HostBinding, HostListener, Input, Output } from '@angular/core';\nimport { TreeItem } from '@ni/nimble-components/dist/esm/tree-item';\n\n/**\n * Directive to provide Angular integration for the tree item.\n */\n@Directive({\n selector: 'nimble-tree-item'\n})\nexport class NimbleTreeItemDirective {\n @HostBinding('disabled') @Input() public disabled: boolean;\n @HostBinding('expanded') @Input() public expanded: boolean;\n @HostBinding('selected')\n @HostBinding('attr.aria-selected') // Needed because fast-foundation TreeView sets initial selection with an aria-selected query\n @Input() public selected: boolean;\n\n @Output() public selectedChange = new EventEmitter<boolean>();\n @Output() public expandedChange = new EventEmitter<boolean>();\n\n public constructor(private readonly treeItemReference: ElementRef<TreeItem>) {\n }\n\n @HostListener('selected-change', ['$event'])\n private onSelectedChange($event: Event): void {\n const treeItemElement = this.treeItemReference.nativeElement;\n if ($event.target === treeItemElement) {\n this.selected = treeItemElement.selected;\n this.selectedChange.emit(this.selected);\n }\n }\n\n @HostListener('expanded-change', ['$event'])\n private onExpandedChange($event: Event): void {\n const treeItemElement = this.treeItemReference.nativeElement;\n if ($event.target === treeItemElement) {\n this.expanded = treeItemElement.expanded;\n this.expandedChange.emit(treeItemElement.expanded);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTreeItemDirective } from './nimble-tree-item.directive';\n\nimport '@ni/nimble-components/dist/esm/tree-item';\n\n@NgModule({\n declarations: [NimbleTreeItemDirective],\n imports: [CommonModule],\n exports: [NimbleTreeItemDirective]\n})\nexport class NimbleTreeItemModule { }\n","import { Directive } from '@angular/core';\n\n/**\n * Directive to provide Angular integration for the checkbox.\n */\n@Directive({\n selector: 'nimble-checkbox'\n})\nexport class NimbleCheckboxDirective {\n}\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, CheckboxControlValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's CheckboxControlValueAccessor to target the Nimble checkbox control.\n *\n * Directive decorator based on CheckboxControlValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/checkbox_value_accessor.ts#L42\n */\n@Directive({\n selector:\n 'nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]',\n // The following host metadata is duplicated from CheckboxControlValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleCheckboxControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleCheckboxControlValueAccessorDirective extends CheckboxControlValueAccessor {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleCheckboxDirective } from './nimble-checkbox.directive';\nimport { NimbleCheckboxControlValueAccessorDirective } from './nimble-checkbox-control-value-accessor.directive';\n\nimport '@ni/nimble-components/dist/esm/checkbox';\n\n@NgModule({\n declarations: [NimbleCheckboxDirective, NimbleCheckboxControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleCheckboxDirective, NimbleCheckboxControlValueAccessorDirective]\n})\nexport class NimbleCheckboxModule { }\n","/*\n * Public API Surface of nimble-angular\n */\n\nexport * from './directives/theme-provider';\nexport * from './directives/text-field';\nexport * from './directives/number-field';\nexport * from './directives/listbox-option';\nexport * from './directives/select';\nexport * from './directives/button';\nexport * from './directives/control-value-accessor';\nexport * from './directives/tree-view';\nexport * from './directives/tree-item';\nexport * from './directives/checkbox';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Directive","HostBinding","Input","CommonModule","NgModule","DefaultValueAccessor","NG_VALUE_ACCESSOR","forwardRef","NumberValueAccessor","SelectControlValueAccessor","NgSelectOption","Optional","Host","EventEmitter","Output","HostListener","CheckboxControlValueAccessor"],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export * from './nimble-button.module';
2
+ export * from './nimble-button.directive';
@@ -0,0 +1,11 @@
1
+ import { ButtonAppearance } from '@ni/nimble-components/dist/esm/button/types';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Directive to provide Angular integration for the button.
5
+ */
6
+ export declare class NimbleButtonDirective {
7
+ disabled: boolean;
8
+ appearance: ButtonAppearance;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleButtonDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleButtonDirective, "nimble-button", never, { "disabled": "disabled"; "appearance": "appearance"; }, {}, never>;
11
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/button';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-button.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleButtonModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleButtonModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleButtonModule, [typeof i1.NimbleButtonDirective], [typeof i2.CommonModule], [typeof i1.NimbleButtonDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleButtonModule>;
9
+ }
@@ -0,0 +1,3 @@
1
+ export * from './nimble-checkbox.module';
2
+ export * from './nimble-checkbox.directive';
3
+ export * from './nimble-checkbox-control-value-accessor.directive';
@@ -0,0 +1,12 @@
1
+ import { CheckboxControlValueAccessor } from '@angular/forms';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Extension of Angular's CheckboxControlValueAccessor to target the Nimble checkbox control.
5
+ *
6
+ * Directive decorator based on CheckboxControlValueAccessor decorator
7
+ * https://github.com/angular/angular/blob/master/packages/forms/src/directives/checkbox_value_accessor.ts#L42
8
+ */
9
+ export declare class NimbleCheckboxControlValueAccessorDirective extends CheckboxControlValueAccessor {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleCheckboxControlValueAccessorDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleCheckboxControlValueAccessorDirective, "nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]", never, {}, {}, never>;
12
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Directive to provide Angular integration for the checkbox.
4
+ */
5
+ export declare class NimbleCheckboxDirective {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleCheckboxDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleCheckboxDirective, "nimble-checkbox", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import '@ni/nimble-components/dist/esm/checkbox';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-checkbox.directive";
4
+ import * as i2 from "./nimble-checkbox-control-value-accessor.directive";
5
+ import * as i3 from "@angular/common";
6
+ export declare class NimbleCheckboxModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleCheckboxModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleCheckboxModule, [typeof i1.NimbleCheckboxDirective, typeof i2.NimbleCheckboxControlValueAccessorDirective], [typeof i3.CommonModule], [typeof i1.NimbleCheckboxDirective, typeof i2.NimbleCheckboxControlValueAccessorDirective]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleCheckboxModule>;
10
+ }
@@ -0,0 +1,3 @@
1
+ export * from './nimble-control-value-accessor.module';
2
+ export * from './nimble-default-control-value-accessor.directive';
3
+ export * from './nimble-number-control-value-accessor.directive';
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./nimble-default-control-value-accessor.directive";
3
+ import * as i2 from "./nimble-number-control-value-accessor.directive";
4
+ import * as i3 from "@angular/common";
5
+ export declare class NimbleControlValueAccessorModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleControlValueAccessorModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleControlValueAccessorModule, [typeof i1.NimbleDefaultControlValueAccessorDirective, typeof i2.NimbleNumberControlValueAccessorDirective], [typeof i3.CommonModule], [typeof i1.NimbleDefaultControlValueAccessorDirective, typeof i2.NimbleNumberControlValueAccessorDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleControlValueAccessorModule>;
9
+ }
@@ -0,0 +1,12 @@
1
+ import { DefaultValueAccessor } from '@angular/forms';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Extension of Angular's DefaultValueAccessor to target the text-based inputs.
5
+ *
6
+ * Directive decorator based on DefaultValueAccessor decorator
7
+ * https://github.com/angular/angular/blob/master/packages/forms/src/directives/default_value_accessor.ts#L72
8
+ */
9
+ export declare class NimbleDefaultControlValueAccessorDirective extends DefaultValueAccessor {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleDefaultControlValueAccessorDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleDefaultControlValueAccessorDirective, "nimble-text-field[formControlName],nimble-text-field[formControl],nimble-text-field[ngModel]", never, {}, {}, never>;
12
+ }
@@ -0,0 +1,12 @@
1
+ import { NumberValueAccessor } from '@angular/forms';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Extension of Angular's NumberValueAccessor to target the number-based inputs.
5
+ *
6
+ * Directive decorator based on NumberValueAccessor decorator
7
+ * https://github.com/angular/angular/blob/master/packages/forms/src/directives/number_value_accessor.ts#L43
8
+ */
9
+ export declare class NimbleNumberControlValueAccessorDirective extends NumberValueAccessor {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleNumberControlValueAccessorDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleNumberControlValueAccessorDirective, "nimble-number-field[formControlName],nimble-number-field[formControl],nimble-number-field[ngModel]", never, {}, {}, never>;
12
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-listbox-option.module';
2
+ export * from './nimble-listbox-option.directive';
@@ -0,0 +1,14 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ import { NgSelectOption } from '@angular/forms';
3
+ import { ListboxOption } from '@ni/nimble-components/dist/esm/listbox-option';
4
+ import { NimbleSelectControlValueAccessorDirective } from '../select';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * Directive to provide Angular integration for the listbox option.
8
+ */
9
+ export declare class NimbleListboxOptionDirective extends NgSelectOption {
10
+ disabled: boolean;
11
+ constructor(element: ElementRef<ListboxOption>, renderer: Renderer2, select: NimbleSelectControlValueAccessorDirective);
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleListboxOptionDirective, [null, null, { optional: true; host: true; }]>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleListboxOptionDirective, "nimble-listbox-option", never, { "disabled": "disabled"; }, {}, never>;
14
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/listbox-option';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-listbox-option.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleListboxOptionModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleListboxOptionModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleListboxOptionModule, [typeof i1.NimbleListboxOptionDirective], [typeof i2.CommonModule], [typeof i1.NimbleListboxOptionDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleListboxOptionModule>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-number-field.module';
2
+ export * from './nimble-number-field.directive';
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Directive to provide Angular integration for the number field.
4
+ */
5
+ export declare class NimbleNumberFieldDirective {
6
+ readonly: boolean;
7
+ min: number;
8
+ max: number;
9
+ step: number;
10
+ placeholder: string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleNumberFieldDirective, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleNumberFieldDirective, "nimble-number-field", never, { "readonly": "readonly"; "min": "min"; "max": "max"; "step": "step"; "placeholder": "placeholder"; }, {}, never>;
13
+ }
@@ -0,0 +1,10 @@
1
+ import '@ni/nimble-components/dist/esm/number-field';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-number-field.directive";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "../control-value-accessor/nimble-control-value-accessor.module";
6
+ export declare class NimbleNumberFieldModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleNumberFieldModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleNumberFieldModule, [typeof i1.NimbleNumberFieldDirective], [typeof i2.CommonModule, typeof i3.NimbleControlValueAccessorModule], [typeof i1.NimbleNumberFieldDirective, typeof i3.NimbleControlValueAccessorModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleNumberFieldModule>;
10
+ }
@@ -0,0 +1,3 @@
1
+ export * from './nimble-select.module';
2
+ export * from './nimble-select.directive';
3
+ export * from './nimble-select-control-value-accessor.directive';
@@ -0,0 +1,14 @@
1
+ import { SelectControlValueAccessor } from '@angular/forms';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Extension of Angular's SelectControlValueAccessor to target the Nimble select control.
5
+ *
6
+ * @see NimbleSelectOptionDirective
7
+ *
8
+ * Directive decorator based on SelectControlValueAccessor decorator
9
+ * https://github.com/angular/angular/blob/master/packages/forms/src/directives/select_control_value_accessor.ts#L85
10
+ */
11
+ export declare class NimbleSelectControlValueAccessorDirective extends SelectControlValueAccessor {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleSelectControlValueAccessorDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleSelectControlValueAccessorDirective, "nimble-select:not([multiple])[formControlName],nimble-select:not([multiple])[formControl],nimble-select:not([multiple])[ngModel]", never, {}, {}, never>;
14
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Directive for Nimble select control Angular integration
4
+ */
5
+ export declare class NimbleSelectDirective {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleSelectDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleSelectDirective, "nimble-select", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import '@ni/nimble-components/dist/esm/select';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-select.directive";
4
+ import * as i2 from "./nimble-select-control-value-accessor.directive";
5
+ import * as i3 from "@angular/common";
6
+ export declare class NimbleSelectModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleSelectModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleSelectModule, [typeof i1.NimbleSelectDirective, typeof i2.NimbleSelectControlValueAccessorDirective], [typeof i3.CommonModule], [typeof i1.NimbleSelectDirective, typeof i2.NimbleSelectControlValueAccessorDirective]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleSelectModule>;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-text-field.module';
2
+ export * from './nimble-text-field.directive';
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Directive to provide Angular integration for the text field
4
+ */
5
+ export declare class NimbleTextFieldDirective {
6
+ readonly: boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleTextFieldDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleTextFieldDirective, "nimble-text-field", never, { "readonly": "readonly"; }, {}, never>;
9
+ }
@@ -0,0 +1,10 @@
1
+ import '@ni/nimble-components/dist/esm/text-field';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-text-field.directive";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "../control-value-accessor/nimble-control-value-accessor.module";
6
+ export declare class NimbleTextFieldModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleTextFieldModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleTextFieldModule, [typeof i1.NimbleTextFieldDirective], [typeof i2.CommonModule, typeof i3.NimbleControlValueAccessorModule], [typeof i1.NimbleTextFieldDirective, typeof i3.NimbleControlValueAccessorModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleTextFieldModule>;
10
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-theme-provider.module';
2
+ export * from './nimble-theme-provider.directive';
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Directive for Angular integration for the theme provider
4
+ */
5
+ export declare class NimbleThemeProviderDirective {
6
+ theme: string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleThemeProviderDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleThemeProviderDirective, "nimble-theme-provider", never, { "theme": "theme"; }, {}, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/theme-provider';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-theme-provider.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleThemeProviderModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleThemeProviderModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleThemeProviderModule, [typeof i1.NimbleThemeProviderDirective], [typeof i2.CommonModule], [typeof i1.NimbleThemeProviderDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleThemeProviderModule>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-tree-item.module';
2
+ export * from './nimble-tree-item.directive';
@@ -0,0 +1,19 @@
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import { TreeItem } from '@ni/nimble-components/dist/esm/tree-item';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Directive to provide Angular integration for the tree item.
6
+ */
7
+ export declare class NimbleTreeItemDirective {
8
+ private readonly treeItemReference;
9
+ disabled: boolean;
10
+ expanded: boolean;
11
+ selected: boolean;
12
+ selectedChange: EventEmitter<boolean>;
13
+ expandedChange: EventEmitter<boolean>;
14
+ constructor(treeItemReference: ElementRef<TreeItem>);
15
+ private onSelectedChange;
16
+ private onExpandedChange;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleTreeItemDirective, never>;
18
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleTreeItemDirective, "nimble-tree-item", never, { "disabled": "disabled"; "expanded": "expanded"; "selected": "selected"; }, { "selectedChange": "selectedChange"; "expandedChange": "expandedChange"; }, never>;
19
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/tree-item';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-tree-item.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleTreeItemModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleTreeItemModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleTreeItemModule, [typeof i1.NimbleTreeItemDirective], [typeof i2.CommonModule], [typeof i1.NimbleTreeItemDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleTreeItemModule>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './nimble-tree-view.module';
2
+ export * from './nimble-tree-view.directive';
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Directive to provide Angular integration for the tree view.
4
+ */
5
+ export declare class NimbleTreeViewDirective {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleTreeViewDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleTreeViewDirective, "nimble-tree-view", never, {}, {}, never>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import '@ni/nimble-components/dist/esm/tree-view';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./nimble-tree-view.directive";
4
+ import * as i2 from "@angular/common";
5
+ export declare class NimbleTreeViewModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<NimbleTreeViewModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleTreeViewModule, [typeof i1.NimbleTreeViewDirective], [typeof i2.CommonModule], [typeof i1.NimbleTreeViewDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<NimbleTreeViewModule>;
9
+ }
@@ -0,0 +1,3 @@
1
+ export * from './nimble-button.module';
2
+ export * from './nimble-button.directive';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uaS9uaW1ibGUtYW5ndWxhci9zcmMvZGlyZWN0aXZlcy9idXR0b24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9uaW1ibGUtYnV0dG9uLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL25pbWJsZS1idXR0b24uZGlyZWN0aXZlJztcbiJdfQ==
@@ -0,0 +1,26 @@
1
+ import { Directive, HostBinding, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Directive to provide Angular integration for the button.
5
+ */
6
+ export class NimbleButtonDirective {
7
+ }
8
+ NimbleButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleButtonDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
9
+ NimbleButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleButtonDirective, selector: "nimble-button", inputs: { disabled: "disabled", appearance: "appearance" }, host: { properties: { "disabled": "this.disabled", "appearance": "this.appearance" } }, ngImport: i0 });
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleButtonDirective, decorators: [{
11
+ type: Directive,
12
+ args: [{
13
+ selector: 'nimble-button'
14
+ }]
15
+ }], propDecorators: { disabled: [{
16
+ type: HostBinding,
17
+ args: ['disabled']
18
+ }, {
19
+ type: Input
20
+ }], appearance: [{
21
+ type: HostBinding,
22
+ args: ['appearance']
23
+ }, {
24
+ type: Input
25
+ }] } });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLWJ1dHRvbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uaS9uaW1ibGUtYW5ndWxhci9zcmMvZGlyZWN0aXZlcy9idXR0b24vbmltYmxlLWJ1dHRvbi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUc5RDs7R0FFRztBQUlILE1BQU0sT0FBTyxxQkFBcUI7O2tIQUFyQixxQkFBcUI7c0dBQXJCLHFCQUFxQjsyRkFBckIscUJBQXFCO2tCQUhqQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxlQUFlO2lCQUM1Qjs4QkFFNEMsUUFBUTtzQkFBaEQsV0FBVzt1QkFBQyxVQUFVOztzQkFBRyxLQUFLO2dCQUNZLFVBQVU7c0JBQXBELFdBQVc7dUJBQUMsWUFBWTs7c0JBQUcsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgSG9zdEJpbmRpbmcsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCdXR0b25BcHBlYXJhbmNlIH0gZnJvbSAnQG5pL25pbWJsZS1jb21wb25lbnRzL2Rpc3QvZXNtL2J1dHRvbi90eXBlcyc7XG5cbi8qKlxuICogRGlyZWN0aXZlIHRvIHByb3ZpZGUgQW5ndWxhciBpbnRlZ3JhdGlvbiBmb3IgdGhlIGJ1dHRvbi5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICduaW1ibGUtYnV0dG9uJ1xufSlcbmV4cG9ydCBjbGFzcyBOaW1ibGVCdXR0b25EaXJlY3RpdmUge1xuICAgIEBIb3N0QmluZGluZygnZGlzYWJsZWQnKSBASW5wdXQoKSBwdWJsaWMgZGlzYWJsZWQ6IGJvb2xlYW47XG4gICAgQEhvc3RCaW5kaW5nKCdhcHBlYXJhbmNlJykgQElucHV0KCkgcHVibGljIGFwcGVhcmFuY2U6IEJ1dHRvbkFwcGVhcmFuY2U7XG59XG4iXX0=
@@ -0,0 +1,19 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { NimbleButtonDirective } from './nimble-button.directive';
4
+ import '@ni/nimble-components/dist/esm/button';
5
+ import * as i0 from "@angular/core";
6
+ export class NimbleButtonModule {
7
+ }
8
+ NimbleButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9
+ NimbleButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleButtonModule, declarations: [NimbleButtonDirective], imports: [CommonModule], exports: [NimbleButtonDirective] });
10
+ NimbleButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleButtonModule, imports: [[CommonModule]] });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleButtonModule, decorators: [{
12
+ type: NgModule,
13
+ args: [{
14
+ declarations: [NimbleButtonDirective],
15
+ imports: [CommonModule],
16
+ exports: [NimbleButtonDirective]
17
+ }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLWJ1dHRvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uaS9uaW1ibGUtYW5ndWxhci9zcmMvZGlyZWN0aXZlcy9idXR0b24vbmltYmxlLWJ1dHRvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFFbEUsT0FBTyx1Q0FBdUMsQ0FBQzs7QUFPL0MsTUFBTSxPQUFPLGtCQUFrQjs7K0dBQWxCLGtCQUFrQjtnSEFBbEIsa0JBQWtCLGlCQUpaLHFCQUFxQixhQUMxQixZQUFZLGFBQ1oscUJBQXFCO2dIQUV0QixrQkFBa0IsWUFIbEIsQ0FBQyxZQUFZLENBQUM7MkZBR2Qsa0JBQWtCO2tCQUw5QixRQUFRO21CQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLHFCQUFxQixDQUFDO29CQUNyQyxPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE9BQU8sRUFBRSxDQUFDLHFCQUFxQixDQUFDO2lCQUNuQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmltYmxlQnV0dG9uRGlyZWN0aXZlIH0gZnJvbSAnLi9uaW1ibGUtYnV0dG9uLmRpcmVjdGl2ZSc7XG5cbmltcG9ydCAnQG5pL25pbWJsZS1jb21wb25lbnRzL2Rpc3QvZXNtL2J1dHRvbic7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbTmltYmxlQnV0dG9uRGlyZWN0aXZlXSxcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgICBleHBvcnRzOiBbTmltYmxlQnV0dG9uRGlyZWN0aXZlXVxufSlcbmV4cG9ydCBjbGFzcyBOaW1ibGVCdXR0b25Nb2R1bGUgeyB9XG4iXX0=
@@ -0,0 +1,4 @@
1
+ export * from './nimble-checkbox.module';
2
+ export * from './nimble-checkbox.directive';
3
+ export * from './nimble-checkbox-control-value-accessor.directive';
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uaS9uaW1ibGUtYW5ndWxhci9zcmMvZGlyZWN0aXZlcy9jaGVja2JveC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyxvREFBb0QsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbmltYmxlLWNoZWNrYm94Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL25pbWJsZS1jaGVja2JveC5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9uaW1ibGUtY2hlY2tib3gtY29udHJvbC12YWx1ZS1hY2Nlc3Nvci5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,32 @@
1
+ import { Directive, forwardRef } from '@angular/core';
2
+ import { NG_VALUE_ACCESSOR, CheckboxControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Extension of Angular's CheckboxControlValueAccessor to target the Nimble checkbox control.
6
+ *
7
+ * Directive decorator based on CheckboxControlValueAccessor decorator
8
+ * https://github.com/angular/angular/blob/master/packages/forms/src/directives/checkbox_value_accessor.ts#L42
9
+ */
10
+ export class NimbleCheckboxControlValueAccessorDirective extends CheckboxControlValueAccessor {
11
+ }
12
+ NimbleCheckboxControlValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleCheckboxControlValueAccessorDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
13
+ NimbleCheckboxControlValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleCheckboxControlValueAccessorDirective, selector: "nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]", host: { listeners: { "change": "onChange($event.target.checked)", "blur": "onTouched()" } }, providers: [{
14
+ provide: NG_VALUE_ACCESSOR,
15
+ useExisting: forwardRef(() => NimbleCheckboxControlValueAccessorDirective),
16
+ multi: true
17
+ }], usesInheritance: true, ngImport: i0 });
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleCheckboxControlValueAccessorDirective, decorators: [{
19
+ type: Directive,
20
+ args: [{
21
+ selector: 'nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]',
22
+ // The following host metadata is duplicated from CheckboxControlValueAccessor
23
+ // eslint-disable-next-line @angular-eslint/no-host-metadata-property
24
+ host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },
25
+ providers: [{
26
+ provide: NG_VALUE_ACCESSOR,
27
+ useExisting: forwardRef(() => NimbleCheckboxControlValueAccessorDirective),
28
+ multi: true
29
+ }]
30
+ }]
31
+ }] });
32
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLWNoZWNrYm94LWNvbnRyb2wtdmFsdWUtYWNjZXNzb3IuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmkvbmltYmxlLWFuZ3VsYXIvc3JjL2RpcmVjdGl2ZXMvY2hlY2tib3gvbmltYmxlLWNoZWNrYm94LWNvbnRyb2wtdmFsdWUtYWNjZXNzb3IuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3RELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSw0QkFBNEIsRUFBRSxNQUFNLGdCQUFnQixDQUFDOztBQUVqRjs7Ozs7R0FLRztBQWFILE1BQU0sT0FBTywyQ0FBNEMsU0FBUSw0QkFBNEI7O3dJQUFoRiwyQ0FBMkM7NEhBQTNDLDJDQUEyQyw4TUFOekMsQ0FBQztZQUNSLE9BQU8sRUFBRSxpQkFBaUI7WUFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQywyQ0FBMkMsQ0FBQztZQUMxRSxLQUFLLEVBQUUsSUFBSTtTQUNkLENBQUM7MkZBRU8sMkNBQTJDO2tCQVp2RCxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFDTix3RkFBd0Y7b0JBQzFGLDhFQUE4RTtvQkFDOUUscUVBQXFFO29CQUNyRSxJQUFJLEVBQUUsRUFBRSxVQUFVLEVBQUUsaUNBQWlDLEVBQUUsUUFBUSxFQUFFLGFBQWEsRUFBRTtvQkFDaEYsU0FBUyxFQUFFLENBQUM7NEJBQ1IsT0FBTyxFQUFFLGlCQUFpQjs0QkFDMUIsV0FBVyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsNENBQTRDLENBQUM7NEJBQzFFLEtBQUssRUFBRSxJQUFJO3lCQUNkLENBQUM7aUJBQ0wiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIGZvcndhcmRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5HX1ZBTFVFX0FDQ0VTU09SLCBDaGVja2JveENvbnRyb2xWYWx1ZUFjY2Vzc29yIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG4vKipcbiAqIEV4dGVuc2lvbiBvZiBBbmd1bGFyJ3MgQ2hlY2tib3hDb250cm9sVmFsdWVBY2Nlc3NvciB0byB0YXJnZXQgdGhlIE5pbWJsZSBjaGVja2JveCBjb250cm9sLlxuICpcbiAqIERpcmVjdGl2ZSBkZWNvcmF0b3IgYmFzZWQgb24gQ2hlY2tib3hDb250cm9sVmFsdWVBY2Nlc3NvciBkZWNvcmF0b3JcbiAqIGh0dHBzOi8vZ2l0aHViLmNvbS9hbmd1bGFyL2FuZ3VsYXIvYmxvYi9tYXN0ZXIvcGFja2FnZXMvZm9ybXMvc3JjL2RpcmVjdGl2ZXMvY2hlY2tib3hfdmFsdWVfYWNjZXNzb3IudHMjTDQyXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOlxuICAgICAgJ25pbWJsZS1jaGVja2JveFtmb3JtQ29udHJvbE5hbWVdLG5pbWJsZS1jaGVja2JveFtmb3JtQ29udHJvbF0sbmltYmxlLWNoZWNrYm94W25nTW9kZWxdJyxcbiAgICAvLyBUaGUgZm9sbG93aW5nIGhvc3QgbWV0YWRhdGEgaXMgZHVwbGljYXRlZCBmcm9tIENoZWNrYm94Q29udHJvbFZhbHVlQWNjZXNzb3JcbiAgICAvLyBlc2xpbnQtZGlzYWJsZS1uZXh0LWxpbmUgQGFuZ3VsYXItZXNsaW50L25vLWhvc3QtbWV0YWRhdGEtcHJvcGVydHlcbiAgICBob3N0OiB7ICcoY2hhbmdlKSc6ICdvbkNoYW5nZSgkZXZlbnQudGFyZ2V0LmNoZWNrZWQpJywgJyhibHVyKSc6ICdvblRvdWNoZWQoKScgfSxcbiAgICBwcm92aWRlcnM6IFt7XG4gICAgICAgIHByb3ZpZGU6IE5HX1ZBTFVFX0FDQ0VTU09SLFxuICAgICAgICB1c2VFeGlzdGluZzogZm9yd2FyZFJlZigoKSA9PiBOaW1ibGVDaGVja2JveENvbnRyb2xWYWx1ZUFjY2Vzc29yRGlyZWN0aXZlKSxcbiAgICAgICAgbXVsdGk6IHRydWVcbiAgICB9XVxufSlcbmV4cG9ydCBjbGFzcyBOaW1ibGVDaGVja2JveENvbnRyb2xWYWx1ZUFjY2Vzc29yRGlyZWN0aXZlIGV4dGVuZHMgQ2hlY2tib3hDb250cm9sVmFsdWVBY2Nlc3NvciB7XG59XG4iXX0=
@@ -0,0 +1,16 @@
1
+ import { Directive } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Directive to provide Angular integration for the checkbox.
5
+ */
6
+ export class NimbleCheckboxDirective {
7
+ }
8
+ NimbleCheckboxDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleCheckboxDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
9
+ NimbleCheckboxDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleCheckboxDirective, selector: "nimble-checkbox", ngImport: i0 });
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleCheckboxDirective, decorators: [{
11
+ type: Directive,
12
+ args: [{
13
+ selector: 'nimble-checkbox'
14
+ }]
15
+ }] });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLWNoZWNrYm94LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25pL25pbWJsZS1hbmd1bGFyL3NyYy9kaXJlY3RpdmVzL2NoZWNrYm94L25pbWJsZS1jaGVja2JveC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFFMUM7O0dBRUc7QUFJSCxNQUFNLE9BQU8sdUJBQXVCOztvSEFBdkIsdUJBQXVCO3dHQUF2Qix1QkFBdUI7MkZBQXZCLHVCQUF1QjtrQkFIbkMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsaUJBQWlCO2lCQUM5QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG4vKipcbiAqIERpcmVjdGl2ZSB0byBwcm92aWRlIEFuZ3VsYXIgaW50ZWdyYXRpb24gZm9yIHRoZSBjaGVja2JveC5cbiAqL1xuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICduaW1ibGUtY2hlY2tib3gnXG59KVxuZXhwb3J0IGNsYXNzIE5pbWJsZUNoZWNrYm94RGlyZWN0aXZlIHtcbn1cbiJdfQ==