@gestio/gds 0.0.1 → 0.0.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/bundles/gestio-gds.umd.js +59 -6
- package/bundles/gestio-gds.umd.js.map +1 -1
- package/bundles/gestio-gds.umd.min.js +1 -1
- package/bundles/gestio-gds.umd.min.js.map +1 -1
- package/esm2015/lib/gds-input/gds-input.component.js +1 -1
- package/esm2015/lib/gds-label/gds-label.component.js +3 -3
- package/esm2015/lib/gds-selectbox/gds-selectbox.component.js +1 -1
- package/esm2015/lib/gds-textbox/gds-textbox.component.js +44 -3
- package/esm5/lib/gds-input/gds-input.component.js +1 -1
- package/esm5/lib/gds-label/gds-label.component.js +3 -3
- package/esm5/lib/gds-selectbox/gds-selectbox.component.js +1 -1
- package/esm5/lib/gds-textbox/gds-textbox.component.js +56 -3
- package/fesm2015/gestio-gds.js +47 -6
- package/fesm2015/gestio-gds.js.map +1 -1
- package/fesm5/gestio-gds.js +59 -6
- package/fesm5/gestio-gds.js.map +1 -1
- package/gestio-gds.metadata.json +1 -1
- package/lib/gds-textbox/gds-textbox.component.d.ts +5 -0
- package/package.json +1 -1
- package/src/lib/styles/tokens/semantic/colors.css +1 -0
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
selector: 'gds-input',
|
|
315
315
|
template: "<div\n class=\"gds-input-container\"\n [class.gds-input--invalid]=\"invalid\"\n [class.gds-input--disabled]=\"disabled\"\n [class.gds-input--focused]=\"isFocused\"\n [class.gds-input--sm]=\"size === 'sm'\"\n [class.gds-input--md]=\"size === 'md'\"\n [class.gds-input--lg]=\"size === 'lg'\"\n>\n <input\n [id]=\"id\"\n [type]=\"type\"\n [placeholder]=\"placeholder\"\n [disabled]=\"disabled\"\n [value]=\"value\"\n class=\"gds-input\"\n [attr.aria-invalid]=\"invalid\"\n (input)=\"onInput($event)\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n />\n</div>\n",
|
|
316
316
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
317
|
-
styles: [".gds-input-container{display:flex;flex-direction:column;width:100%}.gds-input-container.gds-input--invalid .gds-input{border-color:var(--danger)}.gds-input-container.gds-input--invalid .gds-input:focus{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--disabled .gds-input{opacity:.6;cursor:not-allowed;background-color:var(--bg-disabled)}.gds-input-container.gds-input--focused .gds-input{border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-input-container.gds-input--focused.gds-input--invalid .gds-input{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--sm .gds-input{height:32px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--md .gds-input{height:40px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--lg .gds-input{height:48px;padding:0 12px;font-size:14px}.gds-input{width:100%;border:1px solid var(--gds-neutral-
|
|
317
|
+
styles: [".gds-input-container{display:flex;flex-direction:column;width:100%}.gds-input-container.gds-input--invalid .gds-input{border-color:var(--danger)}.gds-input-container.gds-input--invalid .gds-input:focus{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--disabled .gds-input{opacity:.6;cursor:not-allowed;background-color:var(--bg-disabled)}.gds-input-container.gds-input--focused .gds-input{border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-input-container.gds-input--focused.gds-input--invalid .gds-input{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--sm .gds-input{height:32px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--md .gds-input{height:40px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--lg .gds-input{height:48px;padding:0 12px;font-size:14px}.gds-input{width:100%;border:1px solid var(--gds-neutral-100);border-radius:6px;height:40px;padding:0 12px;font-size:14px;line-height:1;color:var(--text-foreground);background-color:var(--bg-surface);transition:.2s;box-sizing:border-box;font-family:inherit}.gds-input::-moz-placeholder{color:var(--text-foreground);opacity:.5}.gds-input::placeholder{color:var(--text-foreground);opacity:.5}.gds-input:hover:not(:disabled){border-color:var(--gds-neutral-300)}.gds-input:focus{outline:0;border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-input:disabled{opacity:.6;cursor:not-allowed;background-color:var(--bg-disabled)}"]
|
|
318
318
|
})
|
|
319
319
|
], GdsInputComponent);
|
|
320
320
|
return GdsInputComponent;
|
|
@@ -359,9 +359,9 @@
|
|
|
359
359
|
GdsLabelComponent = __decorate([
|
|
360
360
|
core.Component({
|
|
361
361
|
selector: 'gds-label',
|
|
362
|
-
template: "<label\n class=\"gds-label\"\n [class.gds-label--disabled]=\"disabled\"\n [class.gds-label--sm]=\"size === 'sm'\"\n [class.gds-label--md]=\"size === 'md'\"\n [class.gds-label--lg]=\"size === 'lg'\"\n [class.gds-label--error]=\"error || required\"\n [attr.for]=\"for\"\n>\n <ng-content></ng-content>\n\n <span *ngIf=\"required\" class=\"gds-label__required\">*</span>\n</label>\n",
|
|
362
|
+
template: "<label\n class=\"gds-label\"\n [class.gds-label--disabled]=\"disabled\"\n [class.gds-label--sm]=\"size === 'sm'\"\n [class.gds-label--md]=\"size === 'md'\"\n [class.gds-label--lg]=\"size === 'lg'\"\n [class.gds-label--error]=\"error || (error && required)\"\n [attr.for]=\"for\"\n>\n <ng-content></ng-content>\n\n <span *ngIf=\"required\" class=\"gds-label__required\">*</span>\n</label>\n",
|
|
363
363
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
364
|
-
styles: [".gds-label{display:inline-flex;align-items:center;gap:4px;font-weight:
|
|
364
|
+
styles: [".gds-label{display:inline-flex;align-items:center;gap:4px;font-weight:600;font-size:.875rem;line-height:calc(1.25 / .875);color:var(--gds-neutral-400);cursor:pointer}.gds-label__required{font-size:.875em}.gds-label--error{color:var(--gds-red-500)}.gds-label--disabled{opacity:.6;cursor:not-allowed}.gds-label--sm{font-size:.75rem;line-height:calc(1.25 / .75)}.gds-label--md{font-size:.875rem;line-height:calc(1.25 / .875)}.gds-label--lg{font-size:1rem;line-height:1.25}"]
|
|
365
365
|
})
|
|
366
366
|
], GdsLabelComponent);
|
|
367
367
|
return GdsLabelComponent;
|
|
@@ -392,15 +392,62 @@
|
|
|
392
392
|
this.type = 'text';
|
|
393
393
|
this.id = "gds-textbox-" + Math.random().toString(36).substr(2, 9);
|
|
394
394
|
this.size = 'md';
|
|
395
|
+
this.control = null;
|
|
395
396
|
this.value = '';
|
|
396
397
|
this.isFocused = false;
|
|
397
398
|
this.onChange = function (value) { };
|
|
398
399
|
this.onTouched = function () { };
|
|
399
400
|
}
|
|
400
401
|
GdsTextboxComponent_1 = GdsTextboxComponent;
|
|
402
|
+
Object.defineProperty(GdsTextboxComponent.prototype, "hasError", {
|
|
403
|
+
get: function () {
|
|
404
|
+
if (this.control) {
|
|
405
|
+
return (this.control.invalid && (this.control.dirty || this.control.touched));
|
|
406
|
+
}
|
|
407
|
+
return this.error;
|
|
408
|
+
},
|
|
409
|
+
enumerable: true,
|
|
410
|
+
configurable: true
|
|
411
|
+
});
|
|
412
|
+
Object.defineProperty(GdsTextboxComponent.prototype, "validationMessage", {
|
|
413
|
+
get: function () {
|
|
414
|
+
if (this.control && this.control.errors) {
|
|
415
|
+
if (this.control.errors['required']) {
|
|
416
|
+
return 'Campo obrigatório';
|
|
417
|
+
}
|
|
418
|
+
if (this.control.errors['minlength']) {
|
|
419
|
+
return "M\u00EDnimo de " + this.control.errors['minlength'].requiredLength + " caracteres";
|
|
420
|
+
}
|
|
421
|
+
if (this.control.errors['maxlength']) {
|
|
422
|
+
return "M\u00E1ximo de " + this.control.errors['maxlength'].requiredLength + " caracteres";
|
|
423
|
+
}
|
|
424
|
+
if (this.control.errors['email']) {
|
|
425
|
+
return 'Email inválido';
|
|
426
|
+
}
|
|
427
|
+
return 'Valor inválido';
|
|
428
|
+
}
|
|
429
|
+
return this.errorMessage;
|
|
430
|
+
},
|
|
431
|
+
enumerable: true,
|
|
432
|
+
configurable: true
|
|
433
|
+
});
|
|
434
|
+
Object.defineProperty(GdsTextboxComponent.prototype, "isRequired", {
|
|
435
|
+
get: function () {
|
|
436
|
+
if (this.control) {
|
|
437
|
+
return this.control.hasError('required');
|
|
438
|
+
}
|
|
439
|
+
return this.required;
|
|
440
|
+
},
|
|
441
|
+
enumerable: true,
|
|
442
|
+
configurable: true
|
|
443
|
+
});
|
|
401
444
|
GdsTextboxComponent.prototype.onInput = function (event) {
|
|
402
445
|
var target = event.target;
|
|
403
446
|
this.value = target.value;
|
|
447
|
+
if (this.control) {
|
|
448
|
+
this.control.setValue(this.value);
|
|
449
|
+
this.control.markAsDirty();
|
|
450
|
+
}
|
|
404
451
|
this.onChange(this.value);
|
|
405
452
|
};
|
|
406
453
|
GdsTextboxComponent.prototype.onFocus = function () {
|
|
@@ -408,6 +455,9 @@
|
|
|
408
455
|
};
|
|
409
456
|
GdsTextboxComponent.prototype.onBlur = function () {
|
|
410
457
|
this.isFocused = false;
|
|
458
|
+
if (this.control) {
|
|
459
|
+
this.control.markAsTouched();
|
|
460
|
+
}
|
|
411
461
|
this.onTouched();
|
|
412
462
|
};
|
|
413
463
|
// ControlValueAccessor implementation
|
|
@@ -454,10 +504,13 @@
|
|
|
454
504
|
__decorate([
|
|
455
505
|
core.Input()
|
|
456
506
|
], GdsTextboxComponent.prototype, "size", void 0);
|
|
507
|
+
__decorate([
|
|
508
|
+
core.Input()
|
|
509
|
+
], GdsTextboxComponent.prototype, "control", void 0);
|
|
457
510
|
GdsTextboxComponent = GdsTextboxComponent_1 = __decorate([
|
|
458
511
|
core.Component({
|
|
459
512
|
selector: 'gds-textbox',
|
|
460
|
-
template: "<div class=\"gds-textbox\">\n <!-- Label -->\n <gds-label\n [for]=\"id\"\n [size]=\"size\"\n [required]=\"
|
|
513
|
+
template: "<div class=\"gds-textbox\">\n <!-- Label -->\n <gds-label\n [for]=\"id\"\n [size]=\"size\"\n [required]=\"isRequired\"\n [disabled]=\"disabled\"\n [error]=\"hasError\"\n *ngIf=\"label\"\n >\n {{ label }}\n </gds-label>\n\n <!-- Input Field -->\n <gds-input\n [id]=\"id\"\n [type]=\"type\"\n [placeholder]=\"placeholder\"\n [disabled]=\"disabled || (control && control.disabled)\"\n [invalid]=\"hasError\"\n [size]=\"size\"\n [value]=\"control ? control.value : value\"\n (input)=\"onInput($event)\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n ></gds-input>\n\n <div\n *ngIf=\"helperText || validationMessage\"\n [id]=\"id + '-description'\"\n class=\"gds-textbox__description\"\n [class.gds-textbox__description--error]=\"hasError\"\n >\n {{ hasError ? validationMessage : helperText }}\n </div>\n</div>\n",
|
|
461
514
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
462
515
|
providers: [
|
|
463
516
|
{
|
|
@@ -466,7 +519,7 @@
|
|
|
466
519
|
multi: true,
|
|
467
520
|
},
|
|
468
521
|
],
|
|
469
|
-
styles: [".gds-textbox{display:flex;flex-direction:column;width:100%;gap:
|
|
522
|
+
styles: [".gds-textbox{display:flex;flex-direction:column;width:100%;position:relative;gap:8px}.gds-textbox__description{position:absolute;top:calc(100% + 4px);left:0;font-size:.75rem;color:var(--gds-neutral-400)}.gds-textbox__description--error{color:var(--gds-red-500)}.gds-textbox__error-icon{margin-right:4px;color:var(--gds-red-500)}"]
|
|
470
523
|
})
|
|
471
524
|
], GdsTextboxComponent);
|
|
472
525
|
return GdsTextboxComponent;
|
|
@@ -655,7 +708,7 @@
|
|
|
655
708
|
multi: true,
|
|
656
709
|
},
|
|
657
710
|
],
|
|
658
|
-
styles: [".gds-selectbox{position:relative;width:100%;display:flex;flex-direction:column;gap:
|
|
711
|
+
styles: [".gds-selectbox{position:relative;width:100%;display:flex;flex-direction:column;gap:8px}.gds-selectbox__control{position:relative;display:flex;align-items:center;background-color:var(--bg-surface);border:1px solid var(--gds-neutral-300);border-radius:6px;transition:.2s}.gds-selectbox__control:hover:not(.gds-selectbox__control--disabled){border-color:var(--gds-neutral-400)}.gds-selectbox__control--open,.gds-selectbox__control:focus-within{border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-selectbox__control--error{border-color:var(--danger)}.gds-selectbox__control--error:focus-within{box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-selectbox__control--disabled{background-color:var(--bg-disabled);cursor:not-allowed;opacity:.6}.gds-selectbox__control--sm{height:32px}.gds-selectbox__control--md{height:40px}.gds-selectbox__control--lg{height:48px}.gds-selectbox__input{flex:1;border:none;outline:0;background:0 0;padding:0 12px;font-size:14px;color:var(--text-foreground);font-family:inherit}.gds-selectbox__input::-moz-placeholder{color:var(--text-foreground)}.gds-selectbox__input::placeholder{color:var(--text-foreground)}.gds-selectbox__input:disabled{cursor:not-allowed}.gds-selectbox__clear{display:flex;align-items:center;justify-content:center;padding:0 4px;border:none;background:0 0;cursor:pointer;color:var(--text-foreground);opacity:.7;transition:color .2s}.gds-selectbox__clear:hover{opacity:1}.gds-selectbox__clear-icon{width:16px;height:16px}.gds-selectbox__toggle{display:flex;align-items:center;justify-content:center;padding:0 8px;border:none;background:0 0;cursor:pointer;color:var(--text-foreground);transition:color .2s}.gds-selectbox__toggle:hover:not(:disabled){color:var(--text-foreground)}.gds-selectbox__toggle:disabled{cursor:not-allowed}.gds-selectbox__icon{transition:transform .2s}.gds-selectbox__icon--open{transform:rotate(180deg)}.gds-selectbox__dropdown{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:1000;background-color:var(--bg-surface);border:1px solid var(--gds-neutral-300);border-radius:6px;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);max-height:300px;overflow:hidden}.gds-selectbox__options{max-height:300px;overflow-y:auto}.gds-selectbox__option{padding:10px 12px;cursor:pointer;font-size:14px;color:var(--text-foreground);transition:background-color .15s}.gds-selectbox__option:hover{background-color:var(--gds-neutral-50)}.gds-selectbox__option--selected{background-color:var(--gds-brand-50);color:var(--primary);font-weight:500}.gds-selectbox__option--selected:hover{background-color:var(--gds-brand-100)}.gds-selectbox__option--empty{color:var(--text-muted);cursor:default;font-style:italic}.gds-selectbox__option--empty:hover{background-color:transparent}.gds-selectbox__description{margin-top:6px;font-size:12px;color:var(--text-muted)}.gds-selectbox__description--error{color:var(--danger)}"]
|
|
659
712
|
})
|
|
660
713
|
], GdsSelectboxComponent);
|
|
661
714
|
return GdsSelectboxComponent;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gestio-gds.umd.js","sources":["../../../node_modules/tslib/tslib.es6.js","ng://@gestio/gds/lib/gds-button/gds-button.component.ts","ng://@gestio/gds/lib/gds-button/gds-button.module.ts","ng://@gestio/gds/lib/gds-input/gds-input.component.ts","ng://@gestio/gds/lib/gds-input/gds-input.module.ts","ng://@gestio/gds/lib/gds-label/gds-label.component.ts","ng://@gestio/gds/lib/gds-label/gds-label.module.ts","ng://@gestio/gds/lib/gds-textbox/gds-textbox.component.ts","ng://@gestio/gds/lib/gds-textbox/gds-textbox.module.ts","ng://@gestio/gds/lib/gds-selectbox/gds-selectbox.component.ts","ng://@gestio/gds/lib/gds-selectbox/gds-selectbox.module.ts","ng://@gestio/gds/lib/gds.component.ts","ng://@gestio/gds/lib/gds.module.ts","ng://@gestio/gds/lib/tokens/colors.ts","ng://@gestio/gds/lib/tokens/typography.ts"],"sourcesContent":["/*! *****************************************************************************\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 (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\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 function __createBinding(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, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = 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\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\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 __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\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 (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = 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, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'gds-button',\n templateUrl: './gds-button.component.html',\n styleUrls: ['../styles/tokens/index.css', './gds-button.component.scss'],\n})\nexport class GdsButtonComponent implements OnInit {\n @Input() variant: 'primary' | 'secondary' | 'tertiary' = 'primary';\n\n constructor() {}\n\n ngOnInit(): void {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsButtonComponent } from './gds-button.component';\n\n@NgModule({\n declarations: [GdsButtonComponent],\n imports: [CommonModule],\n exports: [GdsButtonComponent],\n})\nexport class GdsButtonModule {}\n","import {\n ChangeDetectionStrategy,\n Component,\n EventEmitter,\n Input,\n Output,\n} from '@angular/core';\n\n@Component({\n selector: 'gds-input',\n templateUrl: './gds-input.component.html',\n styleUrls: ['./gds-input.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class GdsInputComponent {\n @Input() id = '';\n @Input() placeholder = '';\n @Input() type: 'text' | 'email' | 'password' | 'number' = 'text';\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n @Input() disabled = false;\n @Input() invalid = false;\n @Input() value: string = '';\n\n @Output() input = new EventEmitter<Event>();\n @Output() focus = new EventEmitter<void>();\n @Output() blur = new EventEmitter<void>();\n\n isFocused: boolean = false;\n\n onInput(event: Event): void {\n this.input.emit(event);\n }\n\n onFocus(): void {\n this.isFocused = true;\n this.focus.emit();\n }\n\n onBlur(): void {\n this.isFocused = false;\n this.blur.emit();\n }\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsInputComponent } from './gds-input.component';\n\n@NgModule({\n declarations: [GdsInputComponent],\n imports: [CommonModule],\n exports: [GdsInputComponent],\n})\nexport class GdsInputModule {}\n","import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\n\n@Component({\n selector: 'gds-label',\n templateUrl: './gds-label.component.html',\n styleUrls: ['./gds-label.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class GdsLabelComponent {\n @Input() for?: string;\n @Input() required = false;\n @Input() error = false;\n @Input() disabled = false;\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n\n ngOnInit(): void {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsLabelComponent } from './gds-label.component';\n\n@NgModule({\n declarations: [GdsLabelComponent],\n imports: [CommonModule],\n exports: [GdsLabelComponent],\n})\nexport class GdsLabelModule {}\n","import {\n ChangeDetectionStrategy,\n Component,\n forwardRef,\n Input,\n} from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\n@Component({\n selector: 'gds-textbox',\n templateUrl: './gds-textbox.component.html',\n styleUrls: ['./gds-textbox.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => GdsTextboxComponent),\n multi: true,\n },\n ],\n})\nexport class GdsTextboxComponent {\n @Input() label: string = '';\n @Input() placeholder: string = '';\n @Input() required: boolean = false;\n @Input() disabled: boolean = false;\n @Input() error: boolean = false;\n @Input() errorMessage: string = '';\n @Input() helperText: string = '';\n @Input() type: 'text' | 'email' | 'password' | 'number' = 'text';\n @Input() id: string = `gds-textbox-${Math.random().toString(36).substr(2, 9)}`;\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n\n value: string = '';\n isFocused: boolean = false;\n\n private onChange = (value: string) => {};\n private onTouched = () => {};\n\n onInput(event: Event): void {\n const target = event.target as HTMLInputElement;\n this.value = target.value;\n this.onChange(this.value);\n }\n\n onFocus(): void {\n this.isFocused = true;\n }\n\n onBlur(): void {\n this.isFocused = false;\n this.onTouched();\n }\n\n // ControlValueAccessor implementation\n writeValue(value: string): void {\n this.value = value || '';\n }\n\n registerOnChange(fn: (value: string) => void): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: () => void): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this.disabled = isDisabled;\n }\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsInputModule, GdsLabelModule } from '../../public-api';\nimport { GdsTextboxComponent } from './gds-textbox.component';\n\n@NgModule({\n declarations: [GdsTextboxComponent],\n imports: [CommonModule, GdsLabelModule, GdsInputModule],\n exports: [GdsTextboxComponent],\n})\nexport class GdsTextboxModule {}\n","import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n forwardRef,\n HostListener,\n Input,\n} from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\nexport interface GdsSelectOption {\n display: string;\n value: any;\n}\n\n@Component({\n selector: 'gds-selectbox',\n templateUrl: './gds-selectbox.component.html',\n styleUrls: ['./gds-selectbox.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => GdsSelectboxComponent),\n multi: true,\n },\n ],\n})\nexport class GdsSelectboxComponent {\n @Input() label: string = '';\n @Input() placeholder: string = 'Selecione...';\n @Input() required: boolean = false;\n @Input() disabled: boolean = false;\n @Input() error: boolean = false;\n @Input() errorMessage: string = '';\n @Input() helperText: string = '';\n @Input() id: string =\n `gds-selectbox-${Math.random().toString(36).substr(2, 9)}`;\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n @Input() options: GdsSelectOption[] = [];\n\n searchTerm: string = '';\n selectedValue: any = null;\n isOpen: boolean = false;\n isFocused: boolean = false;\n filteredOptions: GdsSelectOption[] = [];\n\n private onChange = (value: any) => {};\n private onTouched = () => {};\n\n constructor(\n private elementRef: ElementRef,\n private cdr: ChangeDetectorRef,\n ) {}\n\n ngOnInit(): void {\n this.filteredOptions = [...this.options];\n }\n\n onSearchInput(event: Event): void {\n const target = event.target as HTMLInputElement;\n this.searchTerm = target.value;\n this.filterOptions();\n }\n\n filterOptions(): void {\n if (!this.searchTerm) {\n this.filteredOptions = [...this.options];\n } else {\n const term = this.searchTerm.toLowerCase();\n this.filteredOptions = this.options.filter((option) =>\n option.display.toLowerCase().includes(term),\n );\n }\n this.cdr.markForCheck();\n }\n\n toggleDropdown(): void {\n if (!this.disabled) {\n this.isOpen = !this.isOpen;\n if (this.isOpen) {\n this.filterOptions();\n }\n this.cdr.markForCheck();\n }\n }\n\n clearSelection(): void {\n this.selectedValue = null;\n this.searchTerm = '';\n this.isOpen = false;\n this.onChange(null);\n this.cdr.markForCheck();\n }\n\n selectOption(option: GdsSelectOption): void {\n this.selectedValue = option.value;\n this.searchTerm = option.display;\n this.isOpen = false;\n this.onChange(this.selectedValue);\n this.cdr.markForCheck();\n }\n\n onFocus(): void {\n this.isFocused = true;\n this.isOpen = true;\n this.cdr.markForCheck();\n }\n\n onBlur(): void {\n setTimeout(() => {\n this.isFocused = false;\n this.isOpen = false;\n this.onTouched();\n\n // Restaura o display da opção selecionada se o searchTerm não corresponder\n if (this.selectedValue !== null) {\n const selected = this.options.find(\n (opt) => opt.value === this.selectedValue,\n );\n if (selected) {\n this.searchTerm = selected.display;\n }\n } else {\n this.searchTerm = '';\n }\n this.cdr.markForCheck();\n }, 200);\n }\n\n @HostListener('document:click', ['$event'])\n onClickOutside(event: Event): void {\n if (!this.elementRef.nativeElement.contains(event.target)) {\n this.isOpen = false;\n this.cdr.markForCheck();\n }\n }\n\n // ControlValueAccessor implementation\n writeValue(value: any): void {\n this.selectedValue = value;\n if (value !== null && value !== undefined) {\n const selected = this.options.find((opt) => opt.value === value);\n if (selected) {\n this.searchTerm = selected.display;\n }\n } else {\n this.searchTerm = '';\n }\n this.cdr.markForCheck();\n }\n\n registerOnChange(fn: (value: any) => void): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: () => void): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this.disabled = isDisabled;\n this.cdr.markForCheck();\n }\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsLabelModule } from '../gds-label/gds-label.module';\nimport { GdsSelectboxComponent } from './gds-selectbox.component';\n\n@NgModule({\n declarations: [GdsSelectboxComponent],\n imports: [CommonModule, GdsLabelModule],\n exports: [GdsSelectboxComponent],\n})\nexport class GdsSelectboxModule {}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-gds',\n template: `\n <p>\n gds works!\n </p>\n `,\n styles: [\n ]\n})\nexport class GdsComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsButtonModule } from '../public-api';\nimport { GdsInputModule } from './gds-input/gds-input.module';\nimport { GdsLabelModule } from './gds-label/gds-label.module';\nimport { GdsSelectboxModule } from './gds-selectbox/gds-selectbox.module';\nimport { GdsTextboxModule } from './gds-textbox/gds-textbox.module';\nimport { GdsComponent } from './gds.component';\n\n@NgModule({\n declarations: [GdsComponent],\n imports: [\n CommonModule,\n GdsButtonModule,\n GdsInputModule,\n GdsLabelModule,\n GdsTextboxModule,\n GdsSelectboxModule,\n ],\n exports: [GdsComponent],\n})\nexport class GdsModule {}\n","// BASE COLORS\nexport const BASE_COLORS = ['gestio-dark', 'gestio-light'];\n\n// PRIMARY COLORS\nexport const PRIMARY_COLORS = [\n 'primary',\n 'gestio-primary',\n 'gestio-primary-hover',\n];\n\n// SECONDARY COLORS\nexport const SECONDARY_COLORS = ['gestio-secondary'];\n\n// TERTIARY COLORS\nexport const TERTIARY_COLORS = ['gestio-tertiary'];\n\n// BRAND COLORS\nexport const BRAND_COLORS = [\n 'gestio-brand-25',\n 'gestio-brand-50',\n 'gestio-brand-100',\n 'gestio-brand-200',\n 'gestio-brand-300',\n 'gestio-brand-400',\n 'gestio-brand-500',\n 'gestio-brand-600',\n 'gestio-brand-700',\n 'gestio-brand-800',\n 'gestio-brand-900',\n];\n\n// NEUTRAL COLORS\nexport const NEUTRAL_COLORS = [\n 'gestio-neutral-25',\n 'gestio-neutral-50',\n 'gestio-neutral-100',\n 'gestio-neutral-200',\n 'gestio-neutral-300',\n 'gestio-neutral-400',\n 'gestio-neutral-500',\n 'gestio-neutral-600',\n 'gestio-neutral-700',\n 'gestio-neutral-800',\n 'gestio-neutral-900',\n 'gestio-neutral-1000',\n];\n\n// GREEN COLORS\nexport const GREEN_COLORS = [\n 'gestio-green-25',\n 'gestio-green-50',\n 'gestio-green-100',\n 'gestio-green-200',\n 'gestio-green-300',\n 'gestio-green-400',\n 'gestio-green-500',\n 'gestio-green-600',\n 'gestio-green-700',\n 'gestio-green-800',\n 'gestio-green-900',\n];\n\n// RED COLORS\nexport const RED_COLORS = [\n 'gestio-red-25',\n 'gestio-red-50',\n 'gestio-red-100',\n 'gestio-red-200',\n 'gestio-red-300',\n 'gestio-red-400',\n 'gestio-red-500',\n 'gestio-red-600',\n 'gestio-red-700',\n 'gestio-red-800',\n 'gestio-red-900',\n];\n\n// BLUE COLORS\nexport const BLUE_COLORS = [\n 'gestio-blue-25',\n 'gestio-blue-50',\n 'gestio-blue-100',\n 'gestio-blue-200',\n 'gestio-blue-300',\n 'gestio-blue-400',\n 'gestio-blue-500',\n 'gestio-blue-600',\n 'gestio-blue-700',\n 'gestio-blue-800',\n 'gestio-blue-900',\n];\n\n// AMBER COLORS\nexport const AMBER_COLORS = [\n 'gestio-amber-25',\n 'gestio-amber-50',\n 'gestio-amber-100',\n 'gestio-amber-200',\n 'gestio-amber-300',\n 'gestio-amber-400',\n 'gestio-amber-500',\n 'gestio-amber-600',\n 'gestio-amber-700',\n 'gestio-amber-800',\n 'gestio-amber-900',\n];\n\n// TEAL COLORS\nexport const TEAL_COLORS = [\n 'gestio-teal-25',\n 'gestio-teal-50',\n 'gestio-teal-100',\n 'gestio-teal-200',\n 'gestio-teal-300',\n 'gestio-teal-400',\n 'gestio-teal-500',\n 'gestio-teal-600',\n 'gestio-teal-700',\n 'gestio-teal-800',\n 'gestio-teal-900',\n];\n\n// PURPLE COLORS\nexport const PURPLE_COLORS = [\n 'gestio-purple-25',\n 'gestio-purple-50',\n 'gestio-purple-100',\n 'gestio-purple-200',\n 'gestio-purple-300',\n 'gestio-purple-400',\n 'gestio-purple-500',\n 'gestio-purple-600',\n 'gestio-purple-700',\n 'gestio-purple-800',\n 'gestio-purple-900',\n];\n\n// EMERALD COLORS\nexport const EMERALD_COLORS = [\n 'gestio-emerald-25',\n 'gestio-emerald-50',\n 'gestio-emerald-100',\n 'gestio-emerald-200',\n 'gestio-emerald-300',\n 'gestio-emerald-400',\n 'gestio-emerald-500',\n 'gestio-emerald-600',\n 'gestio-emerald-700',\n 'gestio-emerald-800',\n 'gestio-emerald-900',\n];\n\n// MAGENTA COLORS\nexport const MAGENTA_COLORS = [\n 'gestio-magenta-25',\n 'gestio-magenta-50',\n 'gestio-magenta-100',\n 'gestio-magenta-200',\n 'gestio-magenta-300',\n 'gestio-magenta-400',\n 'gestio-magenta-500',\n 'gestio-magenta-600',\n 'gestio-magenta-700',\n 'gestio-magenta-800',\n 'gestio-magenta-900',\n];\n\n// YELLOW COLORS\nexport const YELLOW_COLORS = [\n 'gestio-yellow-25',\n 'gestio-yellow-50',\n 'gestio-yellow-100',\n 'gestio-yellow-200',\n 'gestio-yellow-300',\n 'gestio-yellow-400',\n 'gestio-yellow-500',\n 'gestio-yellow-600',\n 'gestio-yellow-700',\n 'gestio-yellow-800',\n 'gestio-yellow-900',\n];\n\n// LIME COLORS\nexport const LIME_COLORS = [\n 'gestio-lime-25',\n 'gestio-lime-50',\n 'gestio-lime-100',\n 'gestio-lime-200',\n 'gestio-lime-300',\n 'gestio-lime-400',\n 'gestio-lime-500',\n 'gestio-lime-600',\n 'gestio-lime-700',\n 'gestio-lime-800',\n 'gestio-lime-900',\n];\n\n// ALL COLORS\nexport const ALL_COLORS = [\n ...BASE_COLORS,\n ...PRIMARY_COLORS,\n ...SECONDARY_COLORS,\n ...TERTIARY_COLORS,\n ...BRAND_COLORS,\n ...NEUTRAL_COLORS,\n ...GREEN_COLORS,\n ...RED_COLORS,\n ...BLUE_COLORS,\n ...AMBER_COLORS,\n ...TEAL_COLORS,\n ...PURPLE_COLORS,\n ...EMERALD_COLORS,\n ...MAGENTA_COLORS,\n ...YELLOW_COLORS,\n ...LIME_COLORS,\n];\n","export const TYPOGRAPHY_TOKENS = [\n 'gds-heading-3xl',\n 'gds-heading-2xl',\n 'gds-heading-xl',\n 'gds-heading-lg',\n 'gds-heading-md',\n 'gds-heading-sm',\n 'gds-heading-xs',\n 'gds-subheading',\n];\n\nexport const TYPOGRAPHY_DESCRIPTIONS = {\n 'gds-heading-3xl': 'Largest heading for hero sections and major page titles',\n 'gds-heading-2xl': 'Secondary large heading for section dividers',\n 'gds-heading-xl': 'Large heading for important content blocks',\n 'gds-heading-lg': 'Medium heading for subsections',\n 'gds-heading-md': 'Standard heading for content areas',\n 'gds-heading-sm': 'Small heading for cards and components',\n 'gds-heading-xs': 'Smallest heading for micro components',\n 'gds-subheading': 'Supporting text for headings and descriptions',\n};\n\nexport const TYPOGRAPHY_EXAMPLES = {\n 'gds-heading-3xl': 'Design System',\n 'gds-heading-2xl': 'Foundation',\n 'gds-heading-xl': 'Typography',\n 'gds-heading-lg': 'Heading Large',\n 'gds-heading-md': 'Heading Medium',\n 'gds-heading-sm': 'Heading Small',\n 'gds-heading-xs': 'Heading XS',\n 'gds-subheading':\n 'Supporting text that provides additional context and helps establish hierarchy',\n};\n"],"names":["Input","Component","NgModule","CommonModule","EventEmitter","Output","ChangeDetectionStrategy","NG_VALUE_ACCESSOR","forwardRef","ElementRef","ChangeDetectorRef","HostListener"],"mappings":";;;;;;IAAA;IACA;AACA;IACA;IACA;AACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;AACA;IACA,IAAI,aAAa,GAAG,SAAS,CAAC,EAAE,CAAC,EAAE;IACnC,IAAI,aAAa,GAAG,MAAM,CAAC,cAAc;IACzC,SAAS,EAAE,SAAS,EAAE,EAAE,EAAE,YAAY,KAAK,IAAI,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,EAAE,CAAC;IACpF,QAAQ,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;IACnF,IAAI,OAAO,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IAC/B,CAAC,CAAC;AACF;IACO,SAAS,SAAS,CAAC,CAAC,EAAE,CAAC,EAAE;IAChC,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACxB,IAAI,SAAS,EAAE,GAAG,EAAE,IAAI,CAAC,WAAW,GAAG,CAAC,CAAC,EAAE;IAC3C,IAAI,CAAC,CAAC,SAAS,GAAG,CAAC,KAAK,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,GAAG,CAAC,CAAC,SAAS,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC;IACzF,CAAC;AACD;IACO,IAAI,QAAQ,GAAG,WAAW;IACjC,IAAI,QAAQ,GAAG,MAAM,CAAC,MAAM,IAAI,SAAS,QAAQ,CAAC,CAAC,EAAE;IACrD,QAAQ,KAAK,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;IAC7D,YAAY,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;IAC7B,YAAY,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACzF,SAAS;IACT,QAAQ,OAAO,CAAC,CAAC;IACjB,MAAK;IACL,IAAI,OAAO,QAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC;IAC3C,EAAC;AACD;IACO,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE;IAC7B,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC;IACf,IAAI,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,MAAM,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC;IACvF,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACpB,IAAI,IAAI,CAAC,IAAI,IAAI,IAAI,OAAO,MAAM,CAAC,qBAAqB,KAAK,UAAU;IACvE,QAAQ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,MAAM,CAAC,qBAAqB,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;IAChF,YAAY,IAAI,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,SAAS,CAAC,oBAAoB,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;IAC1F,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAClC,SAAS;IACT,IAAI,OAAO,CAAC,CAAC;IACb,CAAC;AACD;IACO,SAAS,UAAU,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE;IAC1D,IAAI,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,MAAM,GAAG,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,wBAAwB,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;IACjI,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC,GAAG,OAAO,CAAC,QAAQ,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;IACnI,SAAS,KAAK,IAAI,CAAC,GAAG,UAAU,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC;IACtJ,IAAI,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;IAClE,CAAC;AACD;IACO,SAAS,OAAO,CAAC,UAAU,EAAE,SAAS,EAAE;IAC/C,IAAI,OAAO,UAAU,MAAM,EAAE,GAAG,EAAE,EAAE,SAAS,CAAC,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC,EAAE;IACzE,CAAC;AACD;IACO,SAAS,UAAU,CAAC,WAAW,EAAE,aAAa,EAAE;IACvD,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,UAAU,EAAE,OAAO,OAAO,CAAC,QAAQ,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC;IACnI,CAAC;AACD;IACO,SAAS,SAAS,CAAC,OAAO,EAAE,UAAU,EAAE,CAAC,EAAE,SAAS,EAAE;IAC7D,IAAI,SAAS,KAAK,CAAC,KAAK,EAAE,EAAE,OAAO,KAAK,YAAY,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,CAAC,UAAU,OAAO,EAAE,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE;IAChH,IAAI,OAAO,KAAK,CAAC,KAAK,CAAC,GAAG,OAAO,CAAC,EAAE,UAAU,OAAO,EAAE,MAAM,EAAE;IAC/D,QAAQ,SAAS,SAAS,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE;IACnG,QAAQ,SAAS,QAAQ,CAAC,KAAK,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE;IACtG,QAAQ,SAAS,IAAI,CAAC,MAAM,EAAE,EAAE,MAAM,CAAC,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC,EAAE;IACtH,QAAQ,IAAI,CAAC,CAAC,SAAS,GAAG,SAAS,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC;IAC9E,KAAK,CAAC,CAAC;IACP,CAAC;AACD;IACO,SAAS,WAAW,CAAC,OAAO,EAAE,IAAI,EAAE;IAC3C,IAAI,IAAI,CAAC,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;IACrH,IAAI,OAAO,CAAC,GAAG,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,OAAO,MAAM,KAAK,UAAU,KAAK,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,WAAW,EAAE,OAAO,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;IAC7J,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,OAAO,UAAU,CAAC,EAAE,EAAE,OAAO,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE;IACtE,IAAI,SAAS,IAAI,CAAC,EAAE,EAAE;IACtB,QAAQ,IAAI,CAAC,EAAE,MAAM,IAAI,SAAS,CAAC,iCAAiC,CAAC,CAAC;IACtE,QAAQ,OAAO,CAAC,EAAE,IAAI;IACtB,YAAY,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IACzK,YAAY,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC;IACpD,YAAY,QAAQ,EAAE,CAAC,CAAC,CAAC;IACzB,gBAAgB,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM;IAC9C,gBAAgB,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC;IACxE,gBAAgB,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;IACjE,gBAAgB,KAAK,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,SAAS;IACjE,gBAAgB;IAChB,oBAAoB,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,EAAE;IAChI,oBAAoB,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE;IAC1G,oBAAoB,IAAI,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACzF,oBAAoB,IAAI,CAAC,IAAI,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,EAAE;IACvF,oBAAoB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC;IAC1C,oBAAoB,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,SAAS;IAC3C,aAAa;IACb,YAAY,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC;IACvC,SAAS,CAAC,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,SAAS,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,EAAE;IAClE,QAAQ,IAAI,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACzF,KAAK;IACL,CAAC;AACD;IACO,SAAS,eAAe,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE;IAC7C,IAAI,IAAI,EAAE,KAAK,SAAS,EAAE,EAAE,GAAG,CAAC,CAAC;IACjC,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACjB,CAAC;AACD;IACO,SAAS,YAAY,CAAC,CAAC,EAAE,OAAO,EAAE;IACzC,IAAI,KAAK,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,KAAK,SAAS,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IAC1F,CAAC;AACD;IACO,SAAS,QAAQ,CAAC,CAAC,EAAE;IAC5B,IAAI,IAAI,CAAC,GAAG,OAAO,MAAM,KAAK,UAAU,IAAI,MAAM,CAAC,QAAQ,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC;IAClF,IAAI,IAAI,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC5B,IAAI,IAAI,CAAC,IAAI,OAAO,CAAC,CAAC,MAAM,KAAK,QAAQ,EAAE,OAAO;IAClD,QAAQ,IAAI,EAAE,YAAY;IAC1B,YAAY,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,KAAK,CAAC,CAAC;IAC/C,YAAY,OAAO,EAAE,KAAK,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC;IACpD,SAAS;IACT,KAAK,CAAC;IACN,IAAI,MAAM,IAAI,SAAS,CAAC,CAAC,GAAG,yBAAyB,GAAG,iCAAiC,CAAC,CAAC;IAC3F,CAAC;AACD;IACO,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE;IAC7B,IAAI,IAAI,CAAC,GAAG,OAAO,MAAM,KAAK,UAAU,IAAI,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAC/D,IAAI,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IACrB,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC;IACrC,IAAI,IAAI;IACR,QAAQ,OAAO,CAAC,CAAC,KAAK,KAAK,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;IACnF,KAAK;IACL,IAAI,OAAO,KAAK,EAAE,EAAE,CAAC,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,EAAE;IAC3C,YAAY;IACZ,QAAQ,IAAI;IACZ,YAAY,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC7D,SAAS;IACT,gBAAgB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,CAAC,KAAK,CAAC,EAAE;IACzC,KAAK;IACL,IAAI,OAAO,EAAE,CAAC;IACd,CAAC;AACD;IACO,SAAS,QAAQ,GAAG;IAC3B,IAAI,KAAK,IAAI,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE;IACtD,QAAQ,EAAE,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC7C,IAAI,OAAO,EAAE,CAAC;IACd,CAAC;AACD;IACO,SAAS,cAAc,GAAG;IACjC,IAAI,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;IACxF,IAAI,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE;IACpD,QAAQ,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,EAAE,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE;IACzE,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACxB,IAAI,OAAO,CAAC,CAAC;IACb,CAAC,CAAC;AACF;IACO,SAAS,OAAO,CAAC,CAAC,EAAE;IAC3B,IAAI,OAAO,IAAI,YAAY,OAAO,IAAI,IAAI,CAAC,CAAC,GAAG,CAAC,EAAE,IAAI,IAAI,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC;IACzE,CAAC;AACD;IACO,SAAS,gBAAgB,CAAC,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE;IACjE,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,MAAM,IAAI,SAAS,CAAC,sCAAsC,CAAC,CAAC;IAC3F,IAAI,IAAI,CAAC,GAAG,SAAS,CAAC,KAAK,CAAC,OAAO,EAAE,UAAU,IAAI,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC;IAClE,IAAI,OAAO,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;IAC1H,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,EAAE,OAAO,IAAI,OAAO,CAAC,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE;IAC9I,IAAI,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;IACtF,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,YAAY,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE;IAC5H,IAAI,SAAS,OAAO,CAAC,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC,EAAE;IACtD,IAAI,SAAS,MAAM,CAAC,KAAK,EAAE,EAAE,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,EAAE;IACtD,IAAI,SAAS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE;IACtF,CAAC;AACD;IACO,SAAS,gBAAgB,CAAC,CAAC,EAAE;IACpC,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC;IACb,IAAI,OAAO,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,EAAE,UAAU,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC;IAChJ,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC,EAAE,EAAE,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,EAAE,CAAC,KAAK,QAAQ,EAAE,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE;IACnJ,CAAC;AACD;IACO,SAAS,aAAa,CAAC,CAAC,EAAE;IACjC,IAAI,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,MAAM,IAAI,SAAS,CAAC,sCAAsC,CAAC,CAAC;IAC3F,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,EAAE,CAAC,CAAC;IACvC,IAAI,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,OAAO,QAAQ,KAAK,UAAU,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,aAAa,CAAC,GAAG,YAAY,EAAE,OAAO,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;IACrN,IAAI,SAAS,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,UAAU,CAAC,EAAE,EAAE,OAAO,IAAI,OAAO,CAAC,UAAU,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE;IACpK,IAAI,SAAS,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,EAAE,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE;IAChI,CAAC;AACD;IACO,SAAS,oBAAoB,CAAC,MAAM,EAAE,GAAG,EAAE;IAClD,IAAI,IAAI,MAAM,CAAC,cAAc,EAAE,EAAE,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,GAAG,GAAG,GAAG,CAAC,EAAE;IACnH,IAAI,OAAO,MAAM,CAAC;IAClB,CAAC,CAAC;AACF;IACO,SAAS,YAAY,CAAC,GAAG,EAAE;IAClC,IAAI,IAAI,GAAG,IAAI,GAAG,CAAC,UAAU,EAAE,OAAO,GAAG,CAAC;IAC1C,IAAI,IAAI,MAAM,GAAG,EAAE,CAAC;IACpB,IAAI,IAAI,GAAG,IAAI,IAAI,EAAE,KAAK,IAAI,CAAC,IAAI,GAAG,EAAE,IAAI,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;IACnG,IAAI,MAAM,CAAC,OAAO,GAAG,GAAG,CAAC;IACzB,IAAI,OAAO,MAAM,CAAC;IAClB,CAAC;AACD;IACO,SAAS,eAAe,CAAC,GAAG,EAAE;IACrC,IAAI,OAAO,CAAC,GAAG,IAAI,GAAG,CAAC,UAAU,IAAI,GAAG,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,CAAC;IAC5D,CAAC;AACD;IACO,SAAS,sBAAsB,CAAC,QAAQ,EAAE,UAAU,EAAE;IAC7D,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE;IACnC,QAAQ,MAAM,IAAI,SAAS,CAAC,gDAAgD,CAAC,CAAC;IAC9E,KAAK;IACL,IAAI,OAAO,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACpC,CAAC;AACD;IACO,SAAS,sBAAsB,CAAC,QAAQ,EAAE,UAAU,EAAE,KAAK,EAAE;IACpE,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE;IACnC,QAAQ,MAAM,IAAI,SAAS,CAAC,gDAAgD,CAAC,CAAC;IAC9E,KAAK;IACL,IAAI,UAAU,CAAC,GAAG,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;IACpC,IAAI,OAAO,KAAK,CAAC;IACjB;;;QC/ME;YAFS,YAAO,GAAyC,SAAS,CAAC;SAEnD;QAEhB,qCAAQ,GAAR,eAAmB;QAJV;YAARA,UAAK,EAAE;2DAA2D;QADxD,kBAAkB;YAL9BC,cAAS,CAAC;gBACT,QAAQ,EAAE,YAAY;gBACtB,yGAA0C;;aAE3C,CAAC;WACW,kBAAkB,CAM9B;QAAD,yBAAC;KAND;;;QCEA;SAA+B;QAAlB,eAAe;YAL3BC,aAAQ,CAAC;gBACR,YAAY,EAAE,CAAC,kBAAkB,CAAC;gBAClC,OAAO,EAAE,CAACC,mBAAY,CAAC;gBACvB,OAAO,EAAE,CAAC,kBAAkB,CAAC;aAC9B,CAAC;WACW,eAAe,CAAG;QAAD,sBAAC;KAA/B;;;QCKA;YACW,OAAE,GAAG,EAAE,CAAC;YACR,gBAAW,GAAG,EAAE,CAAC;YACjB,SAAI,GAA6C,MAAM,CAAC;YACxD,SAAI,GAAuB,IAAI,CAAC;YAChC,aAAQ,GAAG,KAAK,CAAC;YACjB,YAAO,GAAG,KAAK,CAAC;YAChB,UAAK,GAAW,EAAE,CAAC;YAElB,UAAK,GAAG,IAAIC,iBAAY,EAAS,CAAC;YAClC,UAAK,GAAG,IAAIA,iBAAY,EAAQ,CAAC;YACjC,SAAI,GAAG,IAAIA,iBAAY,EAAQ,CAAC;YAE1C,cAAS,GAAY,KAAK,CAAC;SAe5B;QAbC,mCAAO,GAAP,UAAQ,KAAY;YAClB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SACxB;QAED,mCAAO,GAAP;YACE,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;YACtB,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;SACnB;QAED,kCAAM,GAAN;YACE,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;YACvB,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;SAClB;QA1BQ;YAARJ,UAAK,EAAE;qDAAS;QACR;YAARA,UAAK,EAAE;8DAAkB;QACjB;YAARA,UAAK,EAAE;uDAAyD;QACxD;YAARA,UAAK,EAAE;uDAAiC;QAChC;YAARA,UAAK,EAAE;2DAAkB;QACjB;YAARA,UAAK,EAAE;0DAAiB;QAChB;YAARA,UAAK,EAAE;wDAAoB;QAElB;YAATK,WAAM,EAAE;wDAAmC;QAClC;YAATA,WAAM,EAAE;wDAAkC;QACjC;YAATA,WAAM,EAAE;uDAAiC;QAX/B,iBAAiB;YAN7BJ,cAAS,CAAC;gBACT,QAAQ,EAAE,WAAW;gBACrB,imBAAyC;gBAEzC,eAAe,EAAEK,4BAAuB,CAAC,MAAM;;aAChD,CAAC;WACW,iBAAiB,CA4B7B;QAAD,wBAAC;KA5BD;;;QCLA;SAA8B;QAAjB,cAAc;YAL1BJ,aAAQ,CAAC;gBACR,YAAY,EAAE,CAAC,iBAAiB,CAAC;gBACjC,OAAO,EAAE,CAACC,mBAAY,CAAC;gBACvB,OAAO,EAAE,CAAC,iBAAiB,CAAC;aAC7B,CAAC;WACW,cAAc,CAAG;QAAD,qBAAC;KAA9B;;;QCDA;YAEW,aAAQ,GAAG,KAAK,CAAC;YACjB,UAAK,GAAG,KAAK,CAAC;YACd,aAAQ,GAAG,KAAK,CAAC;YACjB,SAAI,GAAuB,IAAI,CAAC;SAG1C;QADC,oCAAQ,GAAR,eAAmB;QANV;YAARH,UAAK,EAAE;sDAAc;QACb;YAARA,UAAK,EAAE;2DAAkB;QACjB;YAARA,UAAK,EAAE;wDAAe;QACd;YAARA,UAAK,EAAE;2DAAkB;QACjB;YAARA,UAAK,EAAE;uDAAiC;QAL9B,iBAAiB;YAN7BC,cAAS,CAAC;gBACT,QAAQ,EAAE,WAAW;gBACrB,+YAAyC;gBAEzC,eAAe,EAAEK,4BAAuB,CAAC,MAAM;;aAChD,CAAC;WACW,iBAAiB,CAQ7B;QAAD,wBAAC;KARD;;;QCCA;SAA8B;QAAjB,cAAc;YAL1BJ,aAAQ,CAAC;gBACR,YAAY,EAAE,CAAC,iBAAiB,CAAC;gBACjC,OAAO,EAAE,CAACC,mBAAY,CAAC;gBACvB,OAAO,EAAE,CAAC,iBAAiB,CAAC;aAC7B,CAAC;WACW,cAAc,CAAG;QAAD,qBAAC;KAA9B;;;QCYA;YACW,UAAK,GAAW,EAAE,CAAC;YACnB,gBAAW,GAAW,EAAE,CAAC;YACzB,aAAQ,GAAY,KAAK,CAAC;YAC1B,aAAQ,GAAY,KAAK,CAAC;YAC1B,UAAK,GAAY,KAAK,CAAC;YACvB,iBAAY,GAAW,EAAE,CAAC;YAC1B,eAAU,GAAW,EAAE,CAAC;YACxB,SAAI,GAA6C,MAAM,CAAC;YACxD,OAAE,GAAW,iBAAe,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAG,CAAC;YACtE,SAAI,GAAuB,IAAI,CAAC;YAEzC,UAAK,GAAW,EAAE,CAAC;YACnB,cAAS,GAAY,KAAK,CAAC;YAEnB,aAAQ,GAAG,UAAC,KAAa,KAAO,CAAC;YACjC,cAAS,GAAG,eAAQ,CAAC;SAiC9B;gCAjDY,mBAAmB;QAkB9B,qCAAO,GAAP,UAAQ,KAAY;YAClB,IAAM,MAAM,GAAG,KAAK,CAAC,MAA0B,CAAC;YAChD,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,KAAK,CAAC;YAC1B,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;SAC3B;QAED,qCAAO,GAAP;YACE,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;SACvB;QAED,oCAAM,GAAN;YACE,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;YACvB,IAAI,CAAC,SAAS,EAAE,CAAC;SAClB;;QAGD,wCAAU,GAAV,UAAW,KAAa;YACtB,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,EAAE,CAAC;SAC1B;QAED,8CAAgB,GAAhB,UAAiB,EAA2B;YAC1C,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;SACpB;QAED,+CAAiB,GAAjB,UAAkB,EAAc;YAC9B,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;SACrB;QAED,8CAAgB,GAAhB,UAAiB,UAAmB;YAClC,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC;SAC5B;;QA/CQ;YAARH,UAAK,EAAE;0DAAoB;QACnB;YAARA,UAAK,EAAE;gEAA0B;QACzB;YAARA,UAAK,EAAE;6DAA2B;QAC1B;YAARA,UAAK,EAAE;6DAA2B;QAC1B;YAARA,UAAK,EAAE;0DAAwB;QACvB;YAARA,UAAK,EAAE;iEAA2B;QAC1B;YAARA,UAAK,EAAE;+DAAyB;QACxB;YAARA,UAAK,EAAE;yDAAyD;QACxD;YAARA,UAAK,EAAE;uDAAuE;QACtE;YAARA,UAAK,EAAE;yDAAiC;QAV9B,mBAAmB;YAb/BC,cAAS,CAAC;gBACT,QAAQ,EAAE,aAAa;gBACvB,80BAA2C;gBAE3C,eAAe,EAAEK,4BAAuB,CAAC,MAAM;gBAC/C,SAAS,EAAE;oBACT;wBACE,OAAO,EAAEC,uBAAiB;wBAC1B,WAAW,EAAEC,eAAU,CAAC,cAAM,OAAA,qBAAmB,GAAA,CAAC;wBAClD,KAAK,EAAE,IAAI;qBACZ;iBACF;;aACF,CAAC;WACW,mBAAmB,CAiD/B;QAAD,0BAAC;KAjDD;;;QCXA;SAAgC;QAAnB,gBAAgB;YAL5BN,aAAQ,CAAC;gBACR,YAAY,EAAE,CAAC,mBAAmB,CAAC;gBACnC,OAAO,EAAE,CAACC,mBAAY,EAAE,cAAc,EAAE,cAAc,CAAC;gBACvD,OAAO,EAAE,CAAC,mBAAmB,CAAC;aAC/B,CAAC;WACW,gBAAgB,CAAG;QAAD,uBAAC;KAAhC;;;QCyCE,+BACU,UAAsB,EACtB,GAAsB;YADtB,eAAU,GAAV,UAAU,CAAY;YACtB,QAAG,GAAH,GAAG,CAAmB;YAvBvB,UAAK,GAAW,EAAE,CAAC;YACnB,gBAAW,GAAW,cAAc,CAAC;YACrC,aAAQ,GAAY,KAAK,CAAC;YAC1B,aAAQ,GAAY,KAAK,CAAC;YAC1B,UAAK,GAAY,KAAK,CAAC;YACvB,iBAAY,GAAW,EAAE,CAAC;YAC1B,eAAU,GAAW,EAAE,CAAC;YACxB,OAAE,GACT,mBAAiB,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAG,CAAC;YACpD,SAAI,GAAuB,IAAI,CAAC;YAChC,YAAO,GAAsB,EAAE,CAAC;YAEzC,eAAU,GAAW,EAAE,CAAC;YACxB,kBAAa,GAAQ,IAAI,CAAC;YAC1B,WAAM,GAAY,KAAK,CAAC;YACxB,cAAS,GAAY,KAAK,CAAC;YAC3B,oBAAe,GAAsB,EAAE,CAAC;YAEhC,aAAQ,GAAG,UAAC,KAAU,KAAO,CAAC;YAC9B,cAAS,GAAG,eAAQ,CAAC;SAKzB;kCAzBO,qBAAqB;QA2BhC,wCAAQ,GAAR;YACE,IAAI,CAAC,eAAe,YAAO,IAAI,CAAC,OAAO,CAAC,CAAC;SAC1C;QAED,6CAAa,GAAb,UAAc,KAAY;YACxB,IAAM,MAAM,GAAG,KAAK,CAAC,MAA0B,CAAC;YAChD,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,KAAK,CAAC;YAC/B,IAAI,CAAC,aAAa,EAAE,CAAC;SACtB;QAED,6CAAa,GAAb;YACE,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE;gBACpB,IAAI,CAAC,eAAe,YAAO,IAAI,CAAC,OAAO,CAAC,CAAC;aAC1C;iBAAM;gBACL,IAAM,MAAI,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW,EAAE,CAAC;gBAC3C,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,UAAC,MAAM;oBAChD,OAAA,MAAM,CAAC,OAAO,CAAC,WAAW,EAAE,CAAC,QAAQ,CAAC,MAAI,CAAC;iBAAA,CAC5C,CAAC;aACH;YACD,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;SACzB;QAED,8CAAc,GAAd;YACE,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;gBAClB,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC;gBAC3B,IAAI,IAAI,CAAC,MAAM,EAAE;oBACf,IAAI,CAAC,aAAa,EAAE,CAAC;iBACtB;gBACD,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;aACzB;SACF;QAED,8CAAc,GAAd;YACE,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC;YAC1B,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;YACrB,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;YACpB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;YACpB,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;SACzB;QAED,4CAAY,GAAZ,UAAa,MAAuB;YAClC,IAAI,CAAC,aAAa,GAAG,MAAM,CAAC,KAAK,CAAC;YAClC,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,OAAO,CAAC;YACjC,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;YACpB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;YAClC,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;SACzB;QAED,uCAAO,GAAP;YACE,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;YACtB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;YACnB,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;SACzB;QAED,sCAAM,GAAN;YAAA,iBAmBC;YAlBC,UAAU,CAAC;gBACT,KAAI,CAAC,SAAS,GAAG,KAAK,CAAC;gBACvB,KAAI,CAAC,MAAM,GAAG,KAAK,CAAC;gBACpB,KAAI,CAAC,SAAS,EAAE,CAAC;;gBAGjB,IAAI,KAAI,CAAC,aAAa,KAAK,IAAI,EAAE;oBAC/B,IAAM,QAAQ,GAAG,KAAI,CAAC,OAAO,CAAC,IAAI,CAChC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,KAAK,KAAK,KAAI,CAAC,aAAa,GAAA,CAC1C,CAAC;oBACF,IAAI,QAAQ,EAAE;wBACZ,KAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,OAAO,CAAC;qBACpC;iBACF;qBAAM;oBACL,KAAI,CAAC,UAAU,GAAG,EAAE,CAAC;iBACtB;gBACD,KAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;aACzB,EAAE,GAAG,CAAC,CAAC;SACT;QAGD,8CAAc,GAAd,UAAe,KAAY;YACzB,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE;gBACzD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;gBACpB,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;aACzB;SACF;;QAGD,0CAAU,GAAV,UAAW,KAAU;YACnB,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;YAC3B,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE;gBACzC,IAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAC,GAAG,IAAK,OAAA,GAAG,CAAC,KAAK,KAAK,KAAK,GAAA,CAAC,CAAC;gBACjE,IAAI,QAAQ,EAAE;oBACZ,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC,OAAO,CAAC;iBACpC;aACF;iBAAM;gBACL,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;aACtB;YACD,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;SACzB;QAED,gDAAgB,GAAhB,UAAiB,EAAwB;YACvC,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;SACpB;QAED,iDAAiB,GAAjB,UAAkB,EAAc;YAC9B,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;SACrB;QAED,gDAAgB,GAAhB,UAAiB,UAAmB;YAClC,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC;YAC3B,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,CAAC;SACzB;;;oBAhHqBM,eAAU;oBACjBC,sBAAiB;;QAvBvB;YAARV,UAAK,EAAE;4DAAoB;QACnB;YAARA,UAAK,EAAE;kEAAsC;QACrC;YAARA,UAAK,EAAE;+DAA2B;QAC1B;YAARA,UAAK,EAAE;+DAA2B;QAC1B;YAARA,UAAK,EAAE;4DAAwB;QACvB;YAARA,UAAK,EAAE;mEAA2B;QAC1B;YAARA,UAAK,EAAE;iEAAyB;QACxB;YAARA,UAAK,EAAE;yDACqD;QACpD;YAARA,UAAK,EAAE;2DAAiC;QAChC;YAARA,UAAK,EAAE;8DAAiC;QA4FzC;YADCW,iBAAY,CAAC,gBAAgB,EAAE,CAAC,QAAQ,CAAC,CAAC;mEAM1C;QA5GU,qBAAqB;YAbjCV,cAAS,CAAC;gBACT,QAAQ,EAAE,eAAe;gBACzB,kyGAA6C;gBAE7C,eAAe,EAAEK,4BAAuB,CAAC,MAAM;gBAC/C,SAAS,EAAE;oBACT;wBACE,OAAO,EAAEC,uBAAiB;wBAC1B,WAAW,EAAEC,eAAU,CAAC,cAAM,OAAA,uBAAqB,GAAA,CAAC;wBACpD,KAAK,EAAE,IAAI;qBACZ;iBACF;;aACF,CAAC;WACW,qBAAqB,CAwIjC;QAAD,4BAAC;KAxID;;;QCnBA;SAAkC;QAArB,kBAAkB;YAL9BN,aAAQ,CAAC;gBACR,YAAY,EAAE,CAAC,qBAAqB,CAAC;gBACrC,OAAO,EAAE,CAACC,mBAAY,EAAE,cAAc,CAAC;gBACvC,OAAO,EAAE,CAAC,qBAAqB,CAAC;aACjC,CAAC;WACW,kBAAkB,CAAG;QAAD,yBAAC;KAAlC;;;QCIE;SAAiB;QAEjB,+BAAQ,GAAR;SACC;QALU,YAAY;YAVxBF,cAAS,CAAC;gBACT,QAAQ,EAAE,SAAS;gBACnB,QAAQ,EAAE,2CAIT;aAGF,CAAC;WACW,YAAY,CAOxB;QAAD,mBAAC;KAPD;;;QCSA;SAAyB;QAAZ,SAAS;YAZrBC,aAAQ,CAAC;gBACR,YAAY,EAAE,CAAC,YAAY,CAAC;gBAC5B,OAAO,EAAE;oBACPC,mBAAY;oBACZ,eAAe;oBACf,cAAc;oBACd,cAAc;oBACd,gBAAgB;oBAChB,kBAAkB;iBACnB;gBACD,OAAO,EAAE,CAAC,YAAY,CAAC;aACxB,CAAC;WACW,SAAS,CAAG;QAAD,gBAAC;KAAzB;;ICrBA;QACa,WAAW,GAAG,CAAC,aAAa,EAAE,cAAc,EAAE;IAE3D;QACa,cAAc,GAAG;QAC5B,SAAS;QACT,gBAAgB;QAChB,sBAAsB;MACtB;IAEF;QACa,gBAAgB,GAAG,CAAC,kBAAkB,EAAE;IAErD;QACa,eAAe,GAAG,CAAC,iBAAiB,EAAE;IAEnD;QACa,YAAY,GAAG;QAC1B,iBAAiB;QACjB,iBAAiB;QACjB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;MAClB;IAEF;QACa,cAAc,GAAG;QAC5B,mBAAmB;QACnB,mBAAmB;QACnB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,qBAAqB;MACrB;IAEF;QACa,YAAY,GAAG;QAC1B,iBAAiB;QACjB,iBAAiB;QACjB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;MAClB;IAEF;QACa,UAAU,GAAG;QACxB,eAAe;QACf,eAAe;QACf,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;MAChB;IAEF;QACa,WAAW,GAAG;QACzB,gBAAgB;QAChB,gBAAgB;QAChB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;MACjB;IAEF;QACa,YAAY,GAAG;QAC1B,iBAAiB;QACjB,iBAAiB;QACjB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;QAClB,kBAAkB;MAClB;IAEF;QACa,WAAW,GAAG;QACzB,gBAAgB;QAChB,gBAAgB;QAChB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;MACjB;IAEF;QACa,aAAa,GAAG;QAC3B,kBAAkB;QAClB,kBAAkB;QAClB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;MACnB;IAEF;QACa,cAAc,GAAG;QAC5B,mBAAmB;QACnB,mBAAmB;QACnB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;MACpB;IAEF;QACa,cAAc,GAAG;QAC5B,mBAAmB;QACnB,mBAAmB;QACnB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;QACpB,oBAAoB;MACpB;IAEF;QACa,aAAa,GAAG;QAC3B,kBAAkB;QAClB,kBAAkB;QAClB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;QACnB,mBAAmB;MACnB;IAEF;QACa,WAAW,GAAG;QACzB,gBAAgB;QAChB,gBAAgB;QAChB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;QACjB,iBAAiB;MACjB;IAEF;QACa,UAAU,YAClB,WAAW,EACX,cAAc,EACd,gBAAgB,EAChB,eAAe,EACf,YAAY,EACZ,cAAc,EACd,YAAY,EACZ,UAAU,EACV,WAAW,EACX,YAAY,EACZ,WAAW,EACX,aAAa,EACb,cAAc,EACd,cAAc,EACd,aAAa,EACb,WAAW;;QCtNH,iBAAiB,GAAG;QAC/B,iBAAiB;QACjB,iBAAiB;QACjB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;QAChB,gBAAgB;MAChB;QAEW,uBAAuB,GAAG;QACrC,iBAAiB,EAAE,yDAAyD;QAC5E,iBAAiB,EAAE,8CAA8C;QACjE,gBAAgB,EAAE,4CAA4C;QAC9D,gBAAgB,EAAE,gCAAgC;QAClD,gBAAgB,EAAE,oCAAoC;QACtD,gBAAgB,EAAE,wCAAwC;QAC1D,gBAAgB,EAAE,uCAAuC;QACzD,gBAAgB,EAAE,+CAA+C;MACjE;QAEW,mBAAmB,GAAG;QACjC,iBAAiB,EAAE,eAAe;QAClC,iBAAiB,EAAE,YAAY;QAC/B,gBAAgB,EAAE,YAAY;QAC9B,gBAAgB,EAAE,eAAe;QACjC,gBAAgB,EAAE,gBAAgB;QAClC,gBAAgB,EAAE,eAAe;QACjC,gBAAgB,EAAE,YAAY;QAC9B,gBAAgB,EACd,gFAAgF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
1
|
+
{"version":3,"file":"gestio-gds.umd.js","sources":["../../../node_modules/tslib/tslib.es6.js","ng://@gestio/gds/lib/gds-button/gds-button.component.ts","ng://@gestio/gds/lib/gds-button/gds-button.module.ts","ng://@gestio/gds/lib/gds-input/gds-input.component.ts","ng://@gestio/gds/lib/gds-input/gds-input.module.ts","ng://@gestio/gds/lib/gds-label/gds-label.component.ts","ng://@gestio/gds/lib/gds-label/gds-label.module.ts","ng://@gestio/gds/lib/gds-textbox/gds-textbox.component.ts","ng://@gestio/gds/lib/gds-textbox/gds-textbox.module.ts","ng://@gestio/gds/lib/gds-selectbox/gds-selectbox.component.ts","ng://@gestio/gds/lib/gds-selectbox/gds-selectbox.module.ts","ng://@gestio/gds/lib/gds.component.ts","ng://@gestio/gds/lib/gds.module.ts","ng://@gestio/gds/lib/tokens/colors.ts","ng://@gestio/gds/lib/tokens/typography.ts"],"sourcesContent":["/*! *****************************************************************************\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 (b.hasOwnProperty(p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\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 function __createBinding(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, exports) {\r\n for (var p in m) if (p !== \"default\" && !exports.hasOwnProperty(p)) exports[p] = 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\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\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 __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\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 (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\r\n result.default = 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, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n}\r\n","import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'gds-button',\n templateUrl: './gds-button.component.html',\n styleUrls: ['../styles/tokens/index.css', './gds-button.component.scss'],\n})\nexport class GdsButtonComponent implements OnInit {\n @Input() variant: 'primary' | 'secondary' | 'tertiary' = 'primary';\n\n constructor() {}\n\n ngOnInit(): void {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsButtonComponent } from './gds-button.component';\n\n@NgModule({\n declarations: [GdsButtonComponent],\n imports: [CommonModule],\n exports: [GdsButtonComponent],\n})\nexport class GdsButtonModule {}\n","import {\n ChangeDetectionStrategy,\n Component,\n EventEmitter,\n Input,\n Output,\n} from '@angular/core';\n\n@Component({\n selector: 'gds-input',\n templateUrl: './gds-input.component.html',\n styleUrls: ['./gds-input.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class GdsInputComponent {\n @Input() id = '';\n @Input() placeholder = '';\n @Input() type: 'text' | 'email' | 'password' | 'number' = 'text';\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n @Input() disabled = false;\n @Input() invalid = false;\n @Input() value: string = '';\n\n @Output() input = new EventEmitter<Event>();\n @Output() focus = new EventEmitter<void>();\n @Output() blur = new EventEmitter<void>();\n\n isFocused: boolean = false;\n\n onInput(event: Event): void {\n this.input.emit(event);\n }\n\n onFocus(): void {\n this.isFocused = true;\n this.focus.emit();\n }\n\n onBlur(): void {\n this.isFocused = false;\n this.blur.emit();\n }\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsInputComponent } from './gds-input.component';\n\n@NgModule({\n declarations: [GdsInputComponent],\n imports: [CommonModule],\n exports: [GdsInputComponent],\n})\nexport class GdsInputModule {}\n","import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\n\n@Component({\n selector: 'gds-label',\n templateUrl: './gds-label.component.html',\n styleUrls: ['./gds-label.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class GdsLabelComponent {\n @Input() for?: string;\n @Input() required = false;\n @Input() error = false;\n @Input() disabled = false;\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n\n ngOnInit(): void {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsLabelComponent } from './gds-label.component';\n\n@NgModule({\n declarations: [GdsLabelComponent],\n imports: [CommonModule],\n exports: [GdsLabelComponent],\n})\nexport class GdsLabelModule {}\n","import {\n ChangeDetectionStrategy,\n Component,\n forwardRef,\n Input,\n} from '@angular/core';\nimport { FormControl, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n@Component({\n selector: 'gds-textbox',\n templateUrl: './gds-textbox.component.html',\n styleUrls: ['./gds-textbox.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => GdsTextboxComponent),\n multi: true,\n },\n ],\n})\nexport class GdsTextboxComponent {\n @Input() label: string = '';\n @Input() placeholder: string = '';\n @Input() required: boolean = false;\n @Input() disabled: boolean = false;\n @Input() error: boolean = false;\n @Input() errorMessage: string = '';\n @Input() helperText: string = '';\n @Input() type: 'text' | 'email' | 'password' | 'number' = 'text';\n @Input() id: string =\n `gds-textbox-${Math.random().toString(36).substr(2, 9)}`;\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n\n @Input() control: FormControl | null = null;\n\n value: string = '';\n isFocused: boolean = false;\n\n private onChange = (value: string) => {};\n private onTouched = () => {};\n\n get hasError(): boolean {\n if (this.control) {\n return (\n this.control.invalid && (this.control.dirty || this.control.touched)\n );\n }\n return this.error;\n }\n\n get validationMessage(): string {\n if (this.control && this.control.errors) {\n if (this.control.errors['required']) {\n return 'Campo obrigatório';\n }\n if (this.control.errors['minlength']) {\n return `Mínimo de ${this.control.errors['minlength'].requiredLength} caracteres`;\n }\n if (this.control.errors['maxlength']) {\n return `Máximo de ${this.control.errors['maxlength'].requiredLength} caracteres`;\n }\n if (this.control.errors['email']) {\n return 'Email inválido';\n }\n return 'Valor inválido';\n }\n return this.errorMessage;\n }\n\n get isRequired(): boolean {\n if (this.control) {\n return this.control.hasError('required');\n }\n return this.required;\n }\n\n onInput(event: Event): void {\n const target = event.target as HTMLInputElement;\n this.value = target.value;\n\n if (this.control) {\n this.control.setValue(this.value);\n this.control.markAsDirty();\n }\n\n this.onChange(this.value);\n }\n\n onFocus(): void {\n this.isFocused = true;\n }\n\n onBlur(): void {\n this.isFocused = false;\n\n if (this.control) {\n this.control.markAsTouched();\n }\n\n this.onTouched();\n }\n\n // ControlValueAccessor implementation\n writeValue(value: string): void {\n this.value = value || '';\n }\n\n registerOnChange(fn: (value: string) => void): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: () => void): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this.disabled = isDisabled;\n }\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsInputModule, GdsLabelModule } from '../../public-api';\nimport { GdsTextboxComponent } from './gds-textbox.component';\n\n@NgModule({\n declarations: [GdsTextboxComponent],\n imports: [CommonModule, GdsLabelModule, GdsInputModule],\n exports: [GdsTextboxComponent],\n})\nexport class GdsTextboxModule {}\n","import {\n ChangeDetectionStrategy,\n ChangeDetectorRef,\n Component,\n ElementRef,\n forwardRef,\n HostListener,\n Input,\n} from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\n\nexport interface GdsSelectOption {\n display: string;\n value: any;\n}\n\n@Component({\n selector: 'gds-selectbox',\n templateUrl: './gds-selectbox.component.html',\n styleUrls: ['./gds-selectbox.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => GdsSelectboxComponent),\n multi: true,\n },\n ],\n})\nexport class GdsSelectboxComponent {\n @Input() label: string = '';\n @Input() placeholder: string = 'Selecione...';\n @Input() required: boolean = false;\n @Input() disabled: boolean = false;\n @Input() error: boolean = false;\n @Input() errorMessage: string = '';\n @Input() helperText: string = '';\n @Input() id: string =\n `gds-selectbox-${Math.random().toString(36).substr(2, 9)}`;\n @Input() size: 'sm' | 'md' | 'lg' = 'md';\n @Input() options: GdsSelectOption[] = [];\n\n searchTerm: string = '';\n selectedValue: any = null;\n isOpen: boolean = false;\n isFocused: boolean = false;\n filteredOptions: GdsSelectOption[] = [];\n\n private onChange = (value: any) => {};\n private onTouched = () => {};\n\n constructor(\n private elementRef: ElementRef,\n private cdr: ChangeDetectorRef,\n ) {}\n\n ngOnInit(): void {\n this.filteredOptions = [...this.options];\n }\n\n onSearchInput(event: Event): void {\n const target = event.target as HTMLInputElement;\n this.searchTerm = target.value;\n this.filterOptions();\n }\n\n filterOptions(): void {\n if (!this.searchTerm) {\n this.filteredOptions = [...this.options];\n } else {\n const term = this.searchTerm.toLowerCase();\n this.filteredOptions = this.options.filter((option) =>\n option.display.toLowerCase().includes(term),\n );\n }\n this.cdr.markForCheck();\n }\n\n toggleDropdown(): void {\n if (!this.disabled) {\n this.isOpen = !this.isOpen;\n if (this.isOpen) {\n this.filterOptions();\n }\n this.cdr.markForCheck();\n }\n }\n\n clearSelection(): void {\n this.selectedValue = null;\n this.searchTerm = '';\n this.isOpen = false;\n this.onChange(null);\n this.cdr.markForCheck();\n }\n\n selectOption(option: GdsSelectOption): void {\n this.selectedValue = option.value;\n this.searchTerm = option.display;\n this.isOpen = false;\n this.onChange(this.selectedValue);\n this.cdr.markForCheck();\n }\n\n onFocus(): void {\n this.isFocused = true;\n this.isOpen = true;\n this.cdr.markForCheck();\n }\n\n onBlur(): void {\n setTimeout(() => {\n this.isFocused = false;\n this.isOpen = false;\n this.onTouched();\n\n // Restaura o display da opção selecionada se o searchTerm não corresponder\n if (this.selectedValue !== null) {\n const selected = this.options.find(\n (opt) => opt.value === this.selectedValue,\n );\n if (selected) {\n this.searchTerm = selected.display;\n }\n } else {\n this.searchTerm = '';\n }\n this.cdr.markForCheck();\n }, 200);\n }\n\n @HostListener('document:click', ['$event'])\n onClickOutside(event: Event): void {\n if (!this.elementRef.nativeElement.contains(event.target)) {\n this.isOpen = false;\n this.cdr.markForCheck();\n }\n }\n\n // ControlValueAccessor implementation\n writeValue(value: any): void {\n this.selectedValue = value;\n if (value !== null && value !== undefined) {\n const selected = this.options.find((opt) => opt.value === value);\n if (selected) {\n this.searchTerm = selected.display;\n }\n } else {\n this.searchTerm = '';\n }\n this.cdr.markForCheck();\n }\n\n registerOnChange(fn: (value: any) => void): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: () => void): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this.disabled = isDisabled;\n this.cdr.markForCheck();\n }\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsLabelModule } from '../gds-label/gds-label.module';\nimport { GdsSelectboxComponent } from './gds-selectbox.component';\n\n@NgModule({\n declarations: [GdsSelectboxComponent],\n imports: [CommonModule, GdsLabelModule],\n exports: [GdsSelectboxComponent],\n})\nexport class GdsSelectboxModule {}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'lib-gds',\n template: `\n <p>\n gds works!\n </p>\n `,\n styles: [\n ]\n})\nexport class GdsComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { GdsButtonModule } from '../public-api';\nimport { GdsInputModule } from './gds-input/gds-input.module';\nimport { GdsLabelModule } from './gds-label/gds-label.module';\nimport { GdsSelectboxModule } from './gds-selectbox/gds-selectbox.module';\nimport { GdsTextboxModule } from './gds-textbox/gds-textbox.module';\nimport { GdsComponent } from './gds.component';\n\n@NgModule({\n declarations: [GdsComponent],\n imports: [\n CommonModule,\n GdsButtonModule,\n GdsInputModule,\n GdsLabelModule,\n GdsTextboxModule,\n GdsSelectboxModule,\n ],\n exports: [GdsComponent],\n})\nexport class GdsModule {}\n","// BASE COLORS\nexport const BASE_COLORS = ['gestio-dark', 'gestio-light'];\n\n// PRIMARY COLORS\nexport const PRIMARY_COLORS = [\n 'primary',\n 'gestio-primary',\n 'gestio-primary-hover',\n];\n\n// SECONDARY COLORS\nexport const SECONDARY_COLORS = ['gestio-secondary'];\n\n// TERTIARY COLORS\nexport const TERTIARY_COLORS = ['gestio-tertiary'];\n\n// BRAND COLORS\nexport const BRAND_COLORS = [\n 'gestio-brand-25',\n 'gestio-brand-50',\n 'gestio-brand-100',\n 'gestio-brand-200',\n 'gestio-brand-300',\n 'gestio-brand-400',\n 'gestio-brand-500',\n 'gestio-brand-600',\n 'gestio-brand-700',\n 'gestio-brand-800',\n 'gestio-brand-900',\n];\n\n// NEUTRAL COLORS\nexport const NEUTRAL_COLORS = [\n 'gestio-neutral-25',\n 'gestio-neutral-50',\n 'gestio-neutral-100',\n 'gestio-neutral-200',\n 'gestio-neutral-300',\n 'gestio-neutral-400',\n 'gestio-neutral-500',\n 'gestio-neutral-600',\n 'gestio-neutral-700',\n 'gestio-neutral-800',\n 'gestio-neutral-900',\n 'gestio-neutral-1000',\n];\n\n// GREEN COLORS\nexport const GREEN_COLORS = [\n 'gestio-green-25',\n 'gestio-green-50',\n 'gestio-green-100',\n 'gestio-green-200',\n 'gestio-green-300',\n 'gestio-green-400',\n 'gestio-green-500',\n 'gestio-green-600',\n 'gestio-green-700',\n 'gestio-green-800',\n 'gestio-green-900',\n];\n\n// RED COLORS\nexport const RED_COLORS = [\n 'gestio-red-25',\n 'gestio-red-50',\n 'gestio-red-100',\n 'gestio-red-200',\n 'gestio-red-300',\n 'gestio-red-400',\n 'gestio-red-500',\n 'gestio-red-600',\n 'gestio-red-700',\n 'gestio-red-800',\n 'gestio-red-900',\n];\n\n// BLUE COLORS\nexport const BLUE_COLORS = [\n 'gestio-blue-25',\n 'gestio-blue-50',\n 'gestio-blue-100',\n 'gestio-blue-200',\n 'gestio-blue-300',\n 'gestio-blue-400',\n 'gestio-blue-500',\n 'gestio-blue-600',\n 'gestio-blue-700',\n 'gestio-blue-800',\n 'gestio-blue-900',\n];\n\n// AMBER COLORS\nexport const AMBER_COLORS = [\n 'gestio-amber-25',\n 'gestio-amber-50',\n 'gestio-amber-100',\n 'gestio-amber-200',\n 'gestio-amber-300',\n 'gestio-amber-400',\n 'gestio-amber-500',\n 'gestio-amber-600',\n 'gestio-amber-700',\n 'gestio-amber-800',\n 'gestio-amber-900',\n];\n\n// TEAL COLORS\nexport const TEAL_COLORS = [\n 'gestio-teal-25',\n 'gestio-teal-50',\n 'gestio-teal-100',\n 'gestio-teal-200',\n 'gestio-teal-300',\n 'gestio-teal-400',\n 'gestio-teal-500',\n 'gestio-teal-600',\n 'gestio-teal-700',\n 'gestio-teal-800',\n 'gestio-teal-900',\n];\n\n// PURPLE COLORS\nexport const PURPLE_COLORS = [\n 'gestio-purple-25',\n 'gestio-purple-50',\n 'gestio-purple-100',\n 'gestio-purple-200',\n 'gestio-purple-300',\n 'gestio-purple-400',\n 'gestio-purple-500',\n 'gestio-purple-600',\n 'gestio-purple-700',\n 'gestio-purple-800',\n 'gestio-purple-900',\n];\n\n// EMERALD COLORS\nexport const EMERALD_COLORS = [\n 'gestio-emerald-25',\n 'gestio-emerald-50',\n 'gestio-emerald-100',\n 'gestio-emerald-200',\n 'gestio-emerald-300',\n 'gestio-emerald-400',\n 'gestio-emerald-500',\n 'gestio-emerald-600',\n 'gestio-emerald-700',\n 'gestio-emerald-800',\n 'gestio-emerald-900',\n];\n\n// MAGENTA COLORS\nexport const MAGENTA_COLORS = [\n 'gestio-magenta-25',\n 'gestio-magenta-50',\n 'gestio-magenta-100',\n 'gestio-magenta-200',\n 'gestio-magenta-300',\n 'gestio-magenta-400',\n 'gestio-magenta-500',\n 'gestio-magenta-600',\n 'gestio-magenta-700',\n 'gestio-magenta-800',\n 'gestio-magenta-900',\n];\n\n// YELLOW COLORS\nexport const YELLOW_COLORS = [\n 'gestio-yellow-25',\n 'gestio-yellow-50',\n 'gestio-yellow-100',\n 'gestio-yellow-200',\n 'gestio-yellow-300',\n 'gestio-yellow-400',\n 'gestio-yellow-500',\n 'gestio-yellow-600',\n 'gestio-yellow-700',\n 'gestio-yellow-800',\n 'gestio-yellow-900',\n];\n\n// LIME COLORS\nexport const LIME_COLORS = [\n 'gestio-lime-25',\n 'gestio-lime-50',\n 'gestio-lime-100',\n 'gestio-lime-200',\n 'gestio-lime-300',\n 'gestio-lime-400',\n 'gestio-lime-500',\n 'gestio-lime-600',\n 'gestio-lime-700',\n 'gestio-lime-800',\n 'gestio-lime-900',\n];\n\n// ALL COLORS\nexport const ALL_COLORS = [\n ...BASE_COLORS,\n ...PRIMARY_COLORS,\n ...SECONDARY_COLORS,\n ...TERTIARY_COLORS,\n ...BRAND_COLORS,\n ...NEUTRAL_COLORS,\n ...GREEN_COLORS,\n ...RED_COLORS,\n ...BLUE_COLORS,\n ...AMBER_COLORS,\n ...TEAL_COLORS,\n ...PURPLE_COLORS,\n ...EMERALD_COLORS,\n ...MAGENTA_COLORS,\n ...YELLOW_COLORS,\n ...LIME_COLORS,\n];\n","export const TYPOGRAPHY_TOKENS = [\n 'gds-heading-3xl',\n 'gds-heading-2xl',\n 'gds-heading-xl',\n 'gds-heading-lg',\n 'gds-heading-md',\n 'gds-heading-sm',\n 'gds-heading-xs',\n 'gds-subheading',\n];\n\nexport const TYPOGRAPHY_DESCRIPTIONS = {\n 'gds-heading-3xl': 'Largest heading for hero sections and major page titles',\n 'gds-heading-2xl': 'Secondary large heading for section dividers',\n 'gds-heading-xl': 'Large heading for important content blocks',\n 'gds-heading-lg': 'Medium heading for subsections',\n 'gds-heading-md': 'Standard heading for content areas',\n 'gds-heading-sm': 'Small heading for cards and components',\n 'gds-heading-xs': 'Smallest heading for micro components',\n 'gds-subheading': 'Supporting text for headings and descriptions',\n};\n\nexport const TYPOGRAPHY_EXAMPLES = {\n 'gds-heading-3xl': 'Design System',\n 'gds-heading-2xl': 'Foundation',\n 'gds-heading-xl': 'Typography',\n 'gds-heading-lg': 'Heading Large',\n 'gds-heading-md': 'Heading Medium',\n 'gds-heading-sm': 'Heading Small',\n 'gds-heading-xs': 'Heading XS',\n 'gds-subheading':\n 'Supporting text that provides additional context and helps establish hierarchy',\n};\n"],"names":["Input","Component","NgModule","CommonModule","EventEmitter","Output","ChangeDetectionStrategy","NG_VALUE_ACCESSOR","forwardRef","ElementRef","ChangeDetectorRef","HostListener"],"mappings":"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"}
|
|
@@ -12,5 +12,5 @@
|
|
|
12
12
|
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
13
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
14
|
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
-
***************************************************************************** */function s(e,t,o,n){var s,i=arguments.length,r=i<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)r=Reflect.decorate(e,t,o,n);else for(var d=e.length-1;d>=0;d--)(s=e[d])&&(r=(i<3?s(r):i>3?s(t,o,r):s(t,o))||r);return i>3&&r&&Object.defineProperty(t,o,r),r}function i(e,t){var o="function"==typeof Symbol&&e[Symbol.iterator];if(!o)return e;var n,s,i=o.call(e),r=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)r.push(n.value)}catch(e){s={error:e}}finally{try{n&&!n.done&&(o=i.return)&&o.call(i)}finally{if(s)throw s.error}}return r}function r(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(i(arguments[t]));return e}var d=function(){function e(){this.variant="primary"}return e.prototype.ngOnInit=function(){},s([t.Input()],e.prototype,"variant",void 0),e=s([t.Component({selector:"gds-button",template:'<button class="gds-button" [ngClass]="variant">\n <ng-content></ng-content>\n</button>\n',styles:["",".gds-button{padding:10px 16px;border-radius:8px;border:none;font-family:var(--gds-font-primary,Inter);font-weight:600;cursor:pointer}.gds-button.primary{background:var(--gds-primary);color:#fff}.gds-button.secondary{background:var(--gds-secondary);color:#fff}.gds-button.tertiary{background:var(--gds-tertiary);color:#fff}"]})],e)}(),l=function(){function e(){}return e=s([t.NgModule({declarations:[d],imports:[o.CommonModule],exports:[d]})],e)}(),a=function(){function e(){this.id="",this.placeholder="",this.type="text",this.size="md",this.disabled=!1,this.invalid=!1,this.value="",this.input=new t.EventEmitter,this.focus=new t.EventEmitter,this.blur=new t.EventEmitter,this.isFocused=!1}return e.prototype.onInput=function(e){this.input.emit(e)},e.prototype.onFocus=function(){this.isFocused=!0,this.focus.emit()},e.prototype.onBlur=function(){this.isFocused=!1,this.blur.emit()},s([t.Input()],e.prototype,"id",void 0),s([t.Input()],e.prototype,"placeholder",void 0),s([t.Input()],e.prototype,"type",void 0),s([t.Input()],e.prototype,"size",void 0),s([t.Input()],e.prototype,"disabled",void 0),s([t.Input()],e.prototype,"invalid",void 0),s([t.Input()],e.prototype,"value",void 0),s([t.Output()],e.prototype,"input",void 0),s([t.Output()],e.prototype,"focus",void 0),s([t.Output()],e.prototype,"blur",void 0),e=s([t.Component({selector:"gds-input",template:'<div\n class="gds-input-container"\n [class.gds-input--invalid]="invalid"\n [class.gds-input--disabled]="disabled"\n [class.gds-input--focused]="isFocused"\n [class.gds-input--sm]="size === \'sm\'"\n [class.gds-input--md]="size === \'md\'"\n [class.gds-input--lg]="size === \'lg\'"\n>\n <input\n [id]="id"\n [type]="type"\n [placeholder]="placeholder"\n [disabled]="disabled"\n [value]="value"\n class="gds-input"\n [attr.aria-invalid]="invalid"\n (input)="onInput($event)"\n (focus)="onFocus()"\n (blur)="onBlur()"\n />\n</div>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,styles:[".gds-input-container{display:flex;flex-direction:column;width:100%}.gds-input-container.gds-input--invalid .gds-input{border-color:var(--danger)}.gds-input-container.gds-input--invalid .gds-input:focus{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--disabled .gds-input{opacity:.6;cursor:not-allowed;background-color:var(--bg-disabled)}.gds-input-container.gds-input--focused .gds-input{border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-input-container.gds-input--focused.gds-input--invalid .gds-input{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--sm .gds-input{height:32px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--md .gds-input{height:40px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--lg .gds-input{height:48px;padding:0 12px;font-size:14px}.gds-input{width:100%;border:1px solid var(--gds-neutral-300);border-radius:6px;height:40px;padding:0 12px;font-size:14px;line-height:1;color:var(--text-foreground);background-color:var(--bg-surface);transition:.2s;box-sizing:border-box;font-family:inherit}.gds-input::-moz-placeholder{color:var(--text-foreground);opacity:.5}.gds-input::placeholder{color:var(--text-foreground);opacity:.5}.gds-input:hover:not(:disabled){border-color:var(--gds-neutral-400)}.gds-input:focus{outline:0;border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-input:disabled{opacity:.6;cursor:not-allowed;background-color:var(--bg-disabled)}"]})],e)}(),g=function(){function e(){}return e=s([t.NgModule({declarations:[a],imports:[o.CommonModule],exports:[a]})],e)}(),p=function(){function e(){this.required=!1,this.error=!1,this.disabled=!1,this.size="md"}return e.prototype.ngOnInit=function(){},s([t.Input()],e.prototype,"for",void 0),s([t.Input()],e.prototype,"required",void 0),s([t.Input()],e.prototype,"error",void 0),s([t.Input()],e.prototype,"disabled",void 0),s([t.Input()],e.prototype,"size",void 0),e=s([t.Component({selector:"gds-label",template:'<label\n class="gds-label"\n [class.gds-label--disabled]="disabled"\n [class.gds-label--sm]="size === \'sm\'"\n [class.gds-label--md]="size === \'md\'"\n [class.gds-label--lg]="size === \'lg\'"\n [class.gds-label--error]="error || required"\n [attr.for]="for"\n>\n <ng-content></ng-content>\n\n <span *ngIf="required" class="gds-label__required">*</span>\n</label>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,styles:[".gds-label{display:inline-flex;align-items:center;gap:4px;font-weight:var(--font-weight-medium);font-size:.875rem;line-height:calc(1.25 / .875);color:var(--gds-neutral-400);cursor:pointer}.gds-label__required{color:var(--gds-red-500);font-size:.875em}.gds-label--error{color:var(--gds-red-500)}.gds-label--disabled{opacity:.6;cursor:not-allowed}.gds-label--sm{font-size:.75rem;line-height:calc(1.25 / .75)}.gds-label--md{font-size:.875rem;line-height:calc(1.25 / .875)}.gds-label--lg{font-size:1rem;line-height:1.25}"]})],e)}(),c=function(){function e(){}return e=s([t.NgModule({declarations:[p],imports:[o.CommonModule],exports:[p]})],e)}(),u=function(){function e(){this.label="",this.placeholder="",this.required=!1,this.disabled=!1,this.error=!1,this.errorMessage="",this.helperText="",this.type="text",this.id="gds-textbox-"+Math.random().toString(36).substr(2,9),this.size="md",this.value="",this.isFocused=!1,this.onChange=function(e){},this.onTouched=function(){}}var o;return o=e,e.prototype.onInput=function(e){var t=e.target;this.value=t.value,this.onChange(this.value)},e.prototype.onFocus=function(){this.isFocused=!0},e.prototype.onBlur=function(){this.isFocused=!1,this.onTouched()},e.prototype.writeValue=function(e){this.value=e||""},e.prototype.registerOnChange=function(e){this.onChange=e},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this.disabled=e},s([t.Input()],e.prototype,"label",void 0),s([t.Input()],e.prototype,"placeholder",void 0),s([t.Input()],e.prototype,"required",void 0),s([t.Input()],e.prototype,"disabled",void 0),s([t.Input()],e.prototype,"error",void 0),s([t.Input()],e.prototype,"errorMessage",void 0),s([t.Input()],e.prototype,"helperText",void 0),s([t.Input()],e.prototype,"type",void 0),s([t.Input()],e.prototype,"id",void 0),s([t.Input()],e.prototype,"size",void 0),e=o=s([t.Component({selector:"gds-textbox",template:'<div class="gds-textbox">\n \x3c!-- Label --\x3e\n <gds-label\n [for]="id"\n [size]="size"\n [required]="required"\n [disabled]="disabled"\n [error]="error"\n *ngIf="label"\n >\n {{ label }}\n </gds-label>\n\n \x3c!-- Input Field --\x3e\n <gds-input\n [id]="id"\n [type]="type"\n [placeholder]="placeholder"\n [disabled]="disabled"\n [invalid]="error"\n [size]="size"\n [value]="value"\n (input)="onInput($event)"\n (focus)="onFocus()"\n (blur)="onBlur()"\n ></gds-input>\n\n <div\n *ngIf="helperText || errorMessage"\n [id]="id + \'-description\'"\n class="gds-textbox__description"\n [class.gds-textbox__description--error]="error && errorMessage"\n >\n {{ error && errorMessage ? errorMessage : helperText }}\n </div>\n</div>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,providers:[{provide:n.NG_VALUE_ACCESSOR,useExisting:t.forwardRef((function(){return o})),multi:!0}],styles:[".gds-textbox{display:flex;flex-direction:column;width:100%;gap:4px}.gds-textbox__description{font-size:.75rem;color:var(--gds-neutral-400)}.gds-textbox__description--error{color:var(--gds-red-500)}.gds-textbox__error-icon{margin-right:4px;color:var(--gds-red-500)}"]})],e)}(),h=function(){function e(){}return e=s([t.NgModule({declarations:[u],imports:[o.CommonModule,c,g],exports:[u]})],e)}(),b=function(){function e(e,t){this.elementRef=e,this.cdr=t,this.label="",this.placeholder="Selecione...",this.required=!1,this.disabled=!1,this.error=!1,this.errorMessage="",this.helperText="",this.id="gds-selectbox-"+Math.random().toString(36).substr(2,9),this.size="md",this.options=[],this.searchTerm="",this.selectedValue=null,this.isOpen=!1,this.isFocused=!1,this.filteredOptions=[],this.onChange=function(e){},this.onTouched=function(){}}var o;return o=e,e.prototype.ngOnInit=function(){this.filteredOptions=r(this.options)},e.prototype.onSearchInput=function(e){var t=e.target;this.searchTerm=t.value,this.filterOptions()},e.prototype.filterOptions=function(){if(this.searchTerm){var e=this.searchTerm.toLowerCase();this.filteredOptions=this.options.filter((function(t){return t.display.toLowerCase().includes(e)}))}else this.filteredOptions=r(this.options);this.cdr.markForCheck()},e.prototype.toggleDropdown=function(){this.disabled||(this.isOpen=!this.isOpen,this.isOpen&&this.filterOptions(),this.cdr.markForCheck())},e.prototype.clearSelection=function(){this.selectedValue=null,this.searchTerm="",this.isOpen=!1,this.onChange(null),this.cdr.markForCheck()},e.prototype.selectOption=function(e){this.selectedValue=e.value,this.searchTerm=e.display,this.isOpen=!1,this.onChange(this.selectedValue),this.cdr.markForCheck()},e.prototype.onFocus=function(){this.isFocused=!0,this.isOpen=!0,this.cdr.markForCheck()},e.prototype.onBlur=function(){var e=this;setTimeout((function(){if(e.isFocused=!1,e.isOpen=!1,e.onTouched(),null!==e.selectedValue){var t=e.options.find((function(t){return t.value===e.selectedValue}));t&&(e.searchTerm=t.display)}else e.searchTerm="";e.cdr.markForCheck()}),200)},e.prototype.onClickOutside=function(e){this.elementRef.nativeElement.contains(e.target)||(this.isOpen=!1,this.cdr.markForCheck())},e.prototype.writeValue=function(e){if(this.selectedValue=e,null!=e){var t=this.options.find((function(t){return t.value===e}));t&&(this.searchTerm=t.display)}else this.searchTerm="";this.cdr.markForCheck()},e.prototype.registerOnChange=function(e){this.onChange=e},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this.disabled=e,this.cdr.markForCheck()},e.ctorParameters=function(){return[{type:t.ElementRef},{type:t.ChangeDetectorRef}]},s([t.Input()],e.prototype,"label",void 0),s([t.Input()],e.prototype,"placeholder",void 0),s([t.Input()],e.prototype,"required",void 0),s([t.Input()],e.prototype,"disabled",void 0),s([t.Input()],e.prototype,"error",void 0),s([t.Input()],e.prototype,"errorMessage",void 0),s([t.Input()],e.prototype,"helperText",void 0),s([t.Input()],e.prototype,"id",void 0),s([t.Input()],e.prototype,"size",void 0),s([t.Input()],e.prototype,"options",void 0),s([t.HostListener("document:click",["$event"])],e.prototype,"onClickOutside",null),e=o=s([t.Component({selector:"gds-selectbox",template:'<div class="gds-selectbox">\n \x3c!-- Label --\x3e\n <gds-label\n [for]="id"\n [size]="size"\n [required]="required"\n [disabled]="disabled"\n [error]="error"\n *ngIf="label"\n >\n {{ label }}\n </gds-label>\n\n \x3c!-- Select Input --\x3e\n <div\n class="gds-selectbox__control"\n [class.gds-selectbox__control--open]="isOpen"\n [class.gds-selectbox__control--error]="error"\n [class.gds-selectbox__control--disabled]="disabled"\n [class.gds-selectbox__control--sm]="size === \'sm\'"\n [class.gds-selectbox__control--md]="size === \'md\'"\n [class.gds-selectbox__control--lg]="size === \'lg\'"\n >\n <input\n [id]="id"\n type="text"\n class="gds-selectbox__input"\n [placeholder]="placeholder"\n [disabled]="disabled"\n [value]="searchTerm"\n (input)="onSearchInput($event)"\n (focus)="onFocus()"\n (blur)="onBlur()"\n autocomplete="off"\n />\n <button\n type="button"\n class="gds-selectbox__clear"\n *ngIf="selectedValue !== null && !disabled"\n (click)="clearSelection()"\n tabindex="-1"\n title="Limpar seleção"\n >\n <svg\n class="gds-selectbox__clear-icon"\n width="16"\n height="16"\n viewBox="0 0 16 16"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5" />\n <path\n d="M10.5 5.5L5.5 10.5M5.5 5.5L10.5 10.5"\n stroke="currentColor"\n stroke-width="1.5"\n stroke-linecap="round"\n />\n </svg>\n </button>\n <button\n type="button"\n class="gds-selectbox__toggle"\n [disabled]="disabled"\n (click)="toggleDropdown()"\n tabindex="-1"\n >\n <svg\n class="gds-selectbox__icon"\n [class.gds-selectbox__icon--open]="isOpen"\n width="20"\n height="20"\n viewBox="0 0 20 20"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n d="M5 7.5L10 12.5L15 7.5"\n stroke="currentColor"\n stroke-width="2"\n stroke-linecap="round"\n stroke-linejoin="round"\n />\n </svg>\n </button>\n </div>\n\n \x3c!-- Dropdown --\x3e\n <div class="gds-selectbox__dropdown" *ngIf="isOpen">\n <div class="gds-selectbox__options">\n <div\n *ngFor="let option of filteredOptions"\n class="gds-selectbox__option"\n [class.gds-selectbox__option--selected]="option.value === selectedValue"\n (click)="selectOption(option)"\n >\n {{ option.display }}\n </div>\n <div\n *ngIf="filteredOptions.length === 0"\n class="gds-selectbox__option gds-selectbox__option--empty"\n >\n Nenhum resultado encontrado\n </div>\n </div>\n </div>\n\n \x3c!-- Helper Text / Error Message --\x3e\n <div\n *ngIf="helperText || errorMessage"\n [id]="id + \'-description\'"\n class="gds-selectbox__description"\n [class.gds-selectbox__description--error]="error && errorMessage"\n >\n {{ error && errorMessage ? errorMessage : helperText }}\n </div>\n</div>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,providers:[{provide:n.NG_VALUE_ACCESSOR,useExisting:t.forwardRef((function(){return o})),multi:!0}],styles:[".gds-selectbox{position:relative;width:100%;display:flex;flex-direction:column;gap:4px}.gds-selectbox__control{position:relative;display:flex;align-items:center;background-color:var(--bg-surface);border:1px solid var(--gds-neutral-300);border-radius:6px;transition:.2s}.gds-selectbox__control:hover:not(.gds-selectbox__control--disabled){border-color:var(--gds-neutral-400)}.gds-selectbox__control--open,.gds-selectbox__control:focus-within{border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-selectbox__control--error{border-color:var(--danger)}.gds-selectbox__control--error:focus-within{box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-selectbox__control--disabled{background-color:var(--bg-disabled);cursor:not-allowed;opacity:.6}.gds-selectbox__control--sm{height:32px}.gds-selectbox__control--md{height:40px}.gds-selectbox__control--lg{height:48px}.gds-selectbox__input{flex:1;border:none;outline:0;background:0 0;padding:0 12px;font-size:14px;color:var(--text-foreground);font-family:inherit}.gds-selectbox__input::-moz-placeholder{color:var(--text-foreground)}.gds-selectbox__input::placeholder{color:var(--text-foreground)}.gds-selectbox__input:disabled{cursor:not-allowed}.gds-selectbox__clear{display:flex;align-items:center;justify-content:center;padding:0 4px;border:none;background:0 0;cursor:pointer;color:var(--text-foreground);opacity:.7;transition:color .2s}.gds-selectbox__clear:hover{opacity:1}.gds-selectbox__clear-icon{width:16px;height:16px}.gds-selectbox__toggle{display:flex;align-items:center;justify-content:center;padding:0 8px;border:none;background:0 0;cursor:pointer;color:var(--text-foreground);transition:color .2s}.gds-selectbox__toggle:hover:not(:disabled){color:var(--text-foreground)}.gds-selectbox__toggle:disabled{cursor:not-allowed}.gds-selectbox__icon{transition:transform .2s}.gds-selectbox__icon--open{transform:rotate(180deg)}.gds-selectbox__dropdown{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:1000;background-color:var(--bg-surface);border:1px solid var(--gds-neutral-300);border-radius:6px;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);max-height:300px;overflow:hidden}.gds-selectbox__options{max-height:300px;overflow-y:auto}.gds-selectbox__option{padding:10px 12px;cursor:pointer;font-size:14px;color:var(--text-foreground);transition:background-color .15s}.gds-selectbox__option:hover{background-color:var(--bg-muted)}.gds-selectbox__option--selected{background-color:var(--gds-brand-100);color:var(--primary);font-weight:500}.gds-selectbox__option--selected:hover{background-color:var(--gds-brand-200)}.gds-selectbox__option--empty{color:var(--text-muted);cursor:default;font-style:italic}.gds-selectbox__option--empty:hover{background-color:transparent}.gds-selectbox__description{margin-top:6px;font-size:12px;color:var(--text-muted)}.gds-selectbox__description--error{color:var(--danger)}"]})],e)}(),x=function(){function e(){}return e=s([t.NgModule({declarations:[b],imports:[o.CommonModule,c],exports:[b]})],e)}(),f=function(){function e(){}return e.prototype.ngOnInit=function(){},e=s([t.Component({selector:"lib-gds",template:"\n <p>\n gds works!\n </p>\n "})],e)}(),m=function(){function e(){}return e=s([t.NgModule({declarations:[f],imports:[o.CommonModule,l,g,c,h,x],exports:[f]})],e)}(),v=["gestio-dark","gestio-light"],y=["primary","gestio-primary","gestio-primary-hover"],_=["gestio-secondary"],O=["gestio-tertiary"],C=["gestio-brand-25","gestio-brand-50","gestio-brand-100","gestio-brand-200","gestio-brand-300","gestio-brand-400","gestio-brand-500","gestio-brand-600","gestio-brand-700","gestio-brand-800","gestio-brand-900"],w=["gestio-neutral-25","gestio-neutral-50","gestio-neutral-100","gestio-neutral-200","gestio-neutral-300","gestio-neutral-400","gestio-neutral-500","gestio-neutral-600","gestio-neutral-700","gestio-neutral-800","gestio-neutral-900","gestio-neutral-1000"],I=["gestio-green-25","gestio-green-50","gestio-green-100","gestio-green-200","gestio-green-300","gestio-green-400","gestio-green-500","gestio-green-600","gestio-green-700","gestio-green-800","gestio-green-900"],S=["gestio-red-25","gestio-red-50","gestio-red-100","gestio-red-200","gestio-red-300","gestio-red-400","gestio-red-500","gestio-red-600","gestio-red-700","gestio-red-800","gestio-red-900"],k=["gestio-blue-25","gestio-blue-50","gestio-blue-100","gestio-blue-200","gestio-blue-300","gestio-blue-400","gestio-blue-500","gestio-blue-600","gestio-blue-700","gestio-blue-800","gestio-blue-900"],L=["gestio-amber-25","gestio-amber-50","gestio-amber-100","gestio-amber-200","gestio-amber-300","gestio-amber-400","gestio-amber-500","gestio-amber-600","gestio-amber-700","gestio-amber-800","gestio-amber-900"],M=["gestio-teal-25","gestio-teal-50","gestio-teal-100","gestio-teal-200","gestio-teal-300","gestio-teal-400","gestio-teal-500","gestio-teal-600","gestio-teal-700","gestio-teal-800","gestio-teal-900"],R=["gestio-purple-25","gestio-purple-50","gestio-purple-100","gestio-purple-200","gestio-purple-300","gestio-purple-400","gestio-purple-500","gestio-purple-600","gestio-purple-700","gestio-purple-800","gestio-purple-900"],T=["gestio-emerald-25","gestio-emerald-50","gestio-emerald-100","gestio-emerald-200","gestio-emerald-300","gestio-emerald-400","gestio-emerald-500","gestio-emerald-600","gestio-emerald-700","gestio-emerald-800","gestio-emerald-900"],z=["gestio-magenta-25","gestio-magenta-50","gestio-magenta-100","gestio-magenta-200","gestio-magenta-300","gestio-magenta-400","gestio-magenta-500","gestio-magenta-600","gestio-magenta-700","gestio-magenta-800","gestio-magenta-900"],E=["gestio-yellow-25","gestio-yellow-50","gestio-yellow-100","gestio-yellow-200","gestio-yellow-300","gestio-yellow-400","gestio-yellow-500","gestio-yellow-600","gestio-yellow-700","gestio-yellow-800","gestio-yellow-900"],F=["gestio-lime-25","gestio-lime-50","gestio-lime-100","gestio-lime-200","gestio-lime-300","gestio-lime-400","gestio-lime-500","gestio-lime-600","gestio-lime-700","gestio-lime-800","gestio-lime-900"],D=r(v,y,_,O,C,w,I,S,k,L,M,R,T,z,E,F);e.ALL_COLORS=D,e.AMBER_COLORS=L,e.BASE_COLORS=v,e.BLUE_COLORS=k,e.BRAND_COLORS=C,e.EMERALD_COLORS=T,e.GREEN_COLORS=I,e.GdsButtonComponent=d,e.GdsButtonModule=l,e.GdsComponent=f,e.GdsInputComponent=a,e.GdsInputModule=g,e.GdsLabelComponent=p,e.GdsLabelModule=c,e.GdsModule=m,e.GdsSelectboxComponent=b,e.GdsSelectboxModule=x,e.GdsTextboxComponent=u,e.GdsTextboxModule=h,e.LIME_COLORS=F,e.MAGENTA_COLORS=z,e.NEUTRAL_COLORS=w,e.PRIMARY_COLORS=y,e.PURPLE_COLORS=R,e.RED_COLORS=S,e.SECONDARY_COLORS=_,e.TEAL_COLORS=M,e.TERTIARY_COLORS=O,e.TYPOGRAPHY_DESCRIPTIONS={"gds-heading-3xl":"Largest heading for hero sections and major page titles","gds-heading-2xl":"Secondary large heading for section dividers","gds-heading-xl":"Large heading for important content blocks","gds-heading-lg":"Medium heading for subsections","gds-heading-md":"Standard heading for content areas","gds-heading-sm":"Small heading for cards and components","gds-heading-xs":"Smallest heading for micro components","gds-subheading":"Supporting text for headings and descriptions"},e.TYPOGRAPHY_EXAMPLES={"gds-heading-3xl":"Design System","gds-heading-2xl":"Foundation","gds-heading-xl":"Typography","gds-heading-lg":"Heading Large","gds-heading-md":"Heading Medium","gds-heading-sm":"Heading Small","gds-heading-xs":"Heading XS","gds-subheading":"Supporting text that provides additional context and helps establish hierarchy"},e.TYPOGRAPHY_TOKENS=["gds-heading-3xl","gds-heading-2xl","gds-heading-xl","gds-heading-lg","gds-heading-md","gds-heading-sm","gds-heading-xs","gds-subheading"],e.YELLOW_COLORS=E,Object.defineProperty(e,"__esModule",{value:!0})}));
|
|
15
|
+
***************************************************************************** */function r(e,t,o,n){var r,i=arguments.length,s=i<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,o,n);else for(var d=e.length-1;d>=0;d--)(r=e[d])&&(s=(i<3?r(s):i>3?r(t,o,s):r(t,o))||s);return i>3&&s&&Object.defineProperty(t,o,s),s}function i(e,t){var o="function"==typeof Symbol&&e[Symbol.iterator];if(!o)return e;var n,r,i=o.call(e),s=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)s.push(n.value)}catch(e){r={error:e}}finally{try{n&&!n.done&&(o=i.return)&&o.call(i)}finally{if(r)throw r.error}}return s}function s(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(i(arguments[t]));return e}var d=function(){function e(){this.variant="primary"}return e.prototype.ngOnInit=function(){},r([t.Input()],e.prototype,"variant",void 0),e=r([t.Component({selector:"gds-button",template:'<button class="gds-button" [ngClass]="variant">\n <ng-content></ng-content>\n</button>\n',styles:["",".gds-button{padding:10px 16px;border-radius:8px;border:none;font-family:var(--gds-font-primary,Inter);font-weight:600;cursor:pointer}.gds-button.primary{background:var(--gds-primary);color:#fff}.gds-button.secondary{background:var(--gds-secondary);color:#fff}.gds-button.tertiary{background:var(--gds-tertiary);color:#fff}"]})],e)}(),l=function(){function e(){}return e=r([t.NgModule({declarations:[d],imports:[o.CommonModule],exports:[d]})],e)}(),a=function(){function e(){this.id="",this.placeholder="",this.type="text",this.size="md",this.disabled=!1,this.invalid=!1,this.value="",this.input=new t.EventEmitter,this.focus=new t.EventEmitter,this.blur=new t.EventEmitter,this.isFocused=!1}return e.prototype.onInput=function(e){this.input.emit(e)},e.prototype.onFocus=function(){this.isFocused=!0,this.focus.emit()},e.prototype.onBlur=function(){this.isFocused=!1,this.blur.emit()},r([t.Input()],e.prototype,"id",void 0),r([t.Input()],e.prototype,"placeholder",void 0),r([t.Input()],e.prototype,"type",void 0),r([t.Input()],e.prototype,"size",void 0),r([t.Input()],e.prototype,"disabled",void 0),r([t.Input()],e.prototype,"invalid",void 0),r([t.Input()],e.prototype,"value",void 0),r([t.Output()],e.prototype,"input",void 0),r([t.Output()],e.prototype,"focus",void 0),r([t.Output()],e.prototype,"blur",void 0),e=r([t.Component({selector:"gds-input",template:'<div\n class="gds-input-container"\n [class.gds-input--invalid]="invalid"\n [class.gds-input--disabled]="disabled"\n [class.gds-input--focused]="isFocused"\n [class.gds-input--sm]="size === \'sm\'"\n [class.gds-input--md]="size === \'md\'"\n [class.gds-input--lg]="size === \'lg\'"\n>\n <input\n [id]="id"\n [type]="type"\n [placeholder]="placeholder"\n [disabled]="disabled"\n [value]="value"\n class="gds-input"\n [attr.aria-invalid]="invalid"\n (input)="onInput($event)"\n (focus)="onFocus()"\n (blur)="onBlur()"\n />\n</div>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,styles:[".gds-input-container{display:flex;flex-direction:column;width:100%}.gds-input-container.gds-input--invalid .gds-input{border-color:var(--danger)}.gds-input-container.gds-input--invalid .gds-input:focus{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--disabled .gds-input{opacity:.6;cursor:not-allowed;background-color:var(--bg-disabled)}.gds-input-container.gds-input--focused .gds-input{border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-input-container.gds-input--focused.gds-input--invalid .gds-input{border-color:var(--danger);box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-input-container.gds-input--sm .gds-input{height:32px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--md .gds-input{height:40px;padding:0 12px;font-size:14px}.gds-input-container.gds-input--lg .gds-input{height:48px;padding:0 12px;font-size:14px}.gds-input{width:100%;border:1px solid var(--gds-neutral-100);border-radius:6px;height:40px;padding:0 12px;font-size:14px;line-height:1;color:var(--text-foreground);background-color:var(--bg-surface);transition:.2s;box-sizing:border-box;font-family:inherit}.gds-input::-moz-placeholder{color:var(--text-foreground);opacity:.5}.gds-input::placeholder{color:var(--text-foreground);opacity:.5}.gds-input:hover:not(:disabled){border-color:var(--gds-neutral-300)}.gds-input:focus{outline:0;border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-input:disabled{opacity:.6;cursor:not-allowed;background-color:var(--bg-disabled)}"]})],e)}(),g=function(){function e(){}return e=r([t.NgModule({declarations:[a],imports:[o.CommonModule],exports:[a]})],e)}(),c=function(){function e(){this.required=!1,this.error=!1,this.disabled=!1,this.size="md"}return e.prototype.ngOnInit=function(){},r([t.Input()],e.prototype,"for",void 0),r([t.Input()],e.prototype,"required",void 0),r([t.Input()],e.prototype,"error",void 0),r([t.Input()],e.prototype,"disabled",void 0),r([t.Input()],e.prototype,"size",void 0),e=r([t.Component({selector:"gds-label",template:'<label\n class="gds-label"\n [class.gds-label--disabled]="disabled"\n [class.gds-label--sm]="size === \'sm\'"\n [class.gds-label--md]="size === \'md\'"\n [class.gds-label--lg]="size === \'lg\'"\n [class.gds-label--error]="error || (error && required)"\n [attr.for]="for"\n>\n <ng-content></ng-content>\n\n <span *ngIf="required" class="gds-label__required">*</span>\n</label>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,styles:[".gds-label{display:inline-flex;align-items:center;gap:4px;font-weight:600;font-size:.875rem;line-height:calc(1.25 / .875);color:var(--gds-neutral-400);cursor:pointer}.gds-label__required{font-size:.875em}.gds-label--error{color:var(--gds-red-500)}.gds-label--disabled{opacity:.6;cursor:not-allowed}.gds-label--sm{font-size:.75rem;line-height:calc(1.25 / .75)}.gds-label--md{font-size:.875rem;line-height:calc(1.25 / .875)}.gds-label--lg{font-size:1rem;line-height:1.25}"]})],e)}(),p=function(){function e(){}return e=r([t.NgModule({declarations:[c],imports:[o.CommonModule],exports:[c]})],e)}(),u=function(){function e(){this.label="",this.placeholder="",this.required=!1,this.disabled=!1,this.error=!1,this.errorMessage="",this.helperText="",this.type="text",this.id="gds-textbox-"+Math.random().toString(36).substr(2,9),this.size="md",this.control=null,this.value="",this.isFocused=!1,this.onChange=function(e){},this.onTouched=function(){}}var o;return o=e,Object.defineProperty(e.prototype,"hasError",{get:function(){return this.control?this.control.invalid&&(this.control.dirty||this.control.touched):this.error},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"validationMessage",{get:function(){return this.control&&this.control.errors?this.control.errors.required?"Campo obrigatório":this.control.errors.minlength?"Mínimo de "+this.control.errors.minlength.requiredLength+" caracteres":this.control.errors.maxlength?"Máximo de "+this.control.errors.maxlength.requiredLength+" caracteres":this.control.errors.email?"Email inválido":"Valor inválido":this.errorMessage},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"isRequired",{get:function(){return this.control?this.control.hasError("required"):this.required},enumerable:!0,configurable:!0}),e.prototype.onInput=function(e){var t=e.target;this.value=t.value,this.control&&(this.control.setValue(this.value),this.control.markAsDirty()),this.onChange(this.value)},e.prototype.onFocus=function(){this.isFocused=!0},e.prototype.onBlur=function(){this.isFocused=!1,this.control&&this.control.markAsTouched(),this.onTouched()},e.prototype.writeValue=function(e){this.value=e||""},e.prototype.registerOnChange=function(e){this.onChange=e},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this.disabled=e},r([t.Input()],e.prototype,"label",void 0),r([t.Input()],e.prototype,"placeholder",void 0),r([t.Input()],e.prototype,"required",void 0),r([t.Input()],e.prototype,"disabled",void 0),r([t.Input()],e.prototype,"error",void 0),r([t.Input()],e.prototype,"errorMessage",void 0),r([t.Input()],e.prototype,"helperText",void 0),r([t.Input()],e.prototype,"type",void 0),r([t.Input()],e.prototype,"id",void 0),r([t.Input()],e.prototype,"size",void 0),r([t.Input()],e.prototype,"control",void 0),e=o=r([t.Component({selector:"gds-textbox",template:'<div class="gds-textbox">\n \x3c!-- Label --\x3e\n <gds-label\n [for]="id"\n [size]="size"\n [required]="isRequired"\n [disabled]="disabled"\n [error]="hasError"\n *ngIf="label"\n >\n {{ label }}\n </gds-label>\n\n \x3c!-- Input Field --\x3e\n <gds-input\n [id]="id"\n [type]="type"\n [placeholder]="placeholder"\n [disabled]="disabled || (control && control.disabled)"\n [invalid]="hasError"\n [size]="size"\n [value]="control ? control.value : value"\n (input)="onInput($event)"\n (focus)="onFocus()"\n (blur)="onBlur()"\n ></gds-input>\n\n <div\n *ngIf="helperText || validationMessage"\n [id]="id + \'-description\'"\n class="gds-textbox__description"\n [class.gds-textbox__description--error]="hasError"\n >\n {{ hasError ? validationMessage : helperText }}\n </div>\n</div>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,providers:[{provide:n.NG_VALUE_ACCESSOR,useExisting:t.forwardRef((function(){return o})),multi:!0}],styles:[".gds-textbox{display:flex;flex-direction:column;width:100%;position:relative;gap:8px}.gds-textbox__description{position:absolute;top:calc(100% + 4px);left:0;font-size:.75rem;color:var(--gds-neutral-400)}.gds-textbox__description--error{color:var(--gds-red-500)}.gds-textbox__error-icon{margin-right:4px;color:var(--gds-red-500)}"]})],e)}(),h=function(){function e(){}return e=r([t.NgModule({declarations:[u],imports:[o.CommonModule,p,g],exports:[u]})],e)}(),b=function(){function e(e,t){this.elementRef=e,this.cdr=t,this.label="",this.placeholder="Selecione...",this.required=!1,this.disabled=!1,this.error=!1,this.errorMessage="",this.helperText="",this.id="gds-selectbox-"+Math.random().toString(36).substr(2,9),this.size="md",this.options=[],this.searchTerm="",this.selectedValue=null,this.isOpen=!1,this.isFocused=!1,this.filteredOptions=[],this.onChange=function(e){},this.onTouched=function(){}}var o;return o=e,e.prototype.ngOnInit=function(){this.filteredOptions=s(this.options)},e.prototype.onSearchInput=function(e){var t=e.target;this.searchTerm=t.value,this.filterOptions()},e.prototype.filterOptions=function(){if(this.searchTerm){var e=this.searchTerm.toLowerCase();this.filteredOptions=this.options.filter((function(t){return t.display.toLowerCase().includes(e)}))}else this.filteredOptions=s(this.options);this.cdr.markForCheck()},e.prototype.toggleDropdown=function(){this.disabled||(this.isOpen=!this.isOpen,this.isOpen&&this.filterOptions(),this.cdr.markForCheck())},e.prototype.clearSelection=function(){this.selectedValue=null,this.searchTerm="",this.isOpen=!1,this.onChange(null),this.cdr.markForCheck()},e.prototype.selectOption=function(e){this.selectedValue=e.value,this.searchTerm=e.display,this.isOpen=!1,this.onChange(this.selectedValue),this.cdr.markForCheck()},e.prototype.onFocus=function(){this.isFocused=!0,this.isOpen=!0,this.cdr.markForCheck()},e.prototype.onBlur=function(){var e=this;setTimeout((function(){if(e.isFocused=!1,e.isOpen=!1,e.onTouched(),null!==e.selectedValue){var t=e.options.find((function(t){return t.value===e.selectedValue}));t&&(e.searchTerm=t.display)}else e.searchTerm="";e.cdr.markForCheck()}),200)},e.prototype.onClickOutside=function(e){this.elementRef.nativeElement.contains(e.target)||(this.isOpen=!1,this.cdr.markForCheck())},e.prototype.writeValue=function(e){if(this.selectedValue=e,null!=e){var t=this.options.find((function(t){return t.value===e}));t&&(this.searchTerm=t.display)}else this.searchTerm="";this.cdr.markForCheck()},e.prototype.registerOnChange=function(e){this.onChange=e},e.prototype.registerOnTouched=function(e){this.onTouched=e},e.prototype.setDisabledState=function(e){this.disabled=e,this.cdr.markForCheck()},e.ctorParameters=function(){return[{type:t.ElementRef},{type:t.ChangeDetectorRef}]},r([t.Input()],e.prototype,"label",void 0),r([t.Input()],e.prototype,"placeholder",void 0),r([t.Input()],e.prototype,"required",void 0),r([t.Input()],e.prototype,"disabled",void 0),r([t.Input()],e.prototype,"error",void 0),r([t.Input()],e.prototype,"errorMessage",void 0),r([t.Input()],e.prototype,"helperText",void 0),r([t.Input()],e.prototype,"id",void 0),r([t.Input()],e.prototype,"size",void 0),r([t.Input()],e.prototype,"options",void 0),r([t.HostListener("document:click",["$event"])],e.prototype,"onClickOutside",null),e=o=r([t.Component({selector:"gds-selectbox",template:'<div class="gds-selectbox">\n \x3c!-- Label --\x3e\n <gds-label\n [for]="id"\n [size]="size"\n [required]="required"\n [disabled]="disabled"\n [error]="error"\n *ngIf="label"\n >\n {{ label }}\n </gds-label>\n\n \x3c!-- Select Input --\x3e\n <div\n class="gds-selectbox__control"\n [class.gds-selectbox__control--open]="isOpen"\n [class.gds-selectbox__control--error]="error"\n [class.gds-selectbox__control--disabled]="disabled"\n [class.gds-selectbox__control--sm]="size === \'sm\'"\n [class.gds-selectbox__control--md]="size === \'md\'"\n [class.gds-selectbox__control--lg]="size === \'lg\'"\n >\n <input\n [id]="id"\n type="text"\n class="gds-selectbox__input"\n [placeholder]="placeholder"\n [disabled]="disabled"\n [value]="searchTerm"\n (input)="onSearchInput($event)"\n (focus)="onFocus()"\n (blur)="onBlur()"\n autocomplete="off"\n />\n <button\n type="button"\n class="gds-selectbox__clear"\n *ngIf="selectedValue !== null && !disabled"\n (click)="clearSelection()"\n tabindex="-1"\n title="Limpar seleção"\n >\n <svg\n class="gds-selectbox__clear-icon"\n width="16"\n height="16"\n viewBox="0 0 16 16"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-width="1.5" />\n <path\n d="M10.5 5.5L5.5 10.5M5.5 5.5L10.5 10.5"\n stroke="currentColor"\n stroke-width="1.5"\n stroke-linecap="round"\n />\n </svg>\n </button>\n <button\n type="button"\n class="gds-selectbox__toggle"\n [disabled]="disabled"\n (click)="toggleDropdown()"\n tabindex="-1"\n >\n <svg\n class="gds-selectbox__icon"\n [class.gds-selectbox__icon--open]="isOpen"\n width="20"\n height="20"\n viewBox="0 0 20 20"\n fill="none"\n xmlns="http://www.w3.org/2000/svg"\n >\n <path\n d="M5 7.5L10 12.5L15 7.5"\n stroke="currentColor"\n stroke-width="2"\n stroke-linecap="round"\n stroke-linejoin="round"\n />\n </svg>\n </button>\n </div>\n\n \x3c!-- Dropdown --\x3e\n <div class="gds-selectbox__dropdown" *ngIf="isOpen">\n <div class="gds-selectbox__options">\n <div\n *ngFor="let option of filteredOptions"\n class="gds-selectbox__option"\n [class.gds-selectbox__option--selected]="option.value === selectedValue"\n (click)="selectOption(option)"\n >\n {{ option.display }}\n </div>\n <div\n *ngIf="filteredOptions.length === 0"\n class="gds-selectbox__option gds-selectbox__option--empty"\n >\n Nenhum resultado encontrado\n </div>\n </div>\n </div>\n\n \x3c!-- Helper Text / Error Message --\x3e\n <div\n *ngIf="helperText || errorMessage"\n [id]="id + \'-description\'"\n class="gds-selectbox__description"\n [class.gds-selectbox__description--error]="error && errorMessage"\n >\n {{ error && errorMessage ? errorMessage : helperText }}\n </div>\n</div>\n',changeDetection:t.ChangeDetectionStrategy.OnPush,providers:[{provide:n.NG_VALUE_ACCESSOR,useExisting:t.forwardRef((function(){return o})),multi:!0}],styles:[".gds-selectbox{position:relative;width:100%;display:flex;flex-direction:column;gap:8px}.gds-selectbox__control{position:relative;display:flex;align-items:center;background-color:var(--bg-surface);border:1px solid var(--gds-neutral-300);border-radius:6px;transition:.2s}.gds-selectbox__control:hover:not(.gds-selectbox__control--disabled){border-color:var(--gds-neutral-400)}.gds-selectbox__control--open,.gds-selectbox__control:focus-within{border-color:var(--primary);box-shadow:0 0 0 3px rgba(28,103,244,.1)}.gds-selectbox__control--error{border-color:var(--danger)}.gds-selectbox__control--error:focus-within{box-shadow:0 0 0 3px rgba(216,44,13,.1)}.gds-selectbox__control--disabled{background-color:var(--bg-disabled);cursor:not-allowed;opacity:.6}.gds-selectbox__control--sm{height:32px}.gds-selectbox__control--md{height:40px}.gds-selectbox__control--lg{height:48px}.gds-selectbox__input{flex:1;border:none;outline:0;background:0 0;padding:0 12px;font-size:14px;color:var(--text-foreground);font-family:inherit}.gds-selectbox__input::-moz-placeholder{color:var(--text-foreground)}.gds-selectbox__input::placeholder{color:var(--text-foreground)}.gds-selectbox__input:disabled{cursor:not-allowed}.gds-selectbox__clear{display:flex;align-items:center;justify-content:center;padding:0 4px;border:none;background:0 0;cursor:pointer;color:var(--text-foreground);opacity:.7;transition:color .2s}.gds-selectbox__clear:hover{opacity:1}.gds-selectbox__clear-icon{width:16px;height:16px}.gds-selectbox__toggle{display:flex;align-items:center;justify-content:center;padding:0 8px;border:none;background:0 0;cursor:pointer;color:var(--text-foreground);transition:color .2s}.gds-selectbox__toggle:hover:not(:disabled){color:var(--text-foreground)}.gds-selectbox__toggle:disabled{cursor:not-allowed}.gds-selectbox__icon{transition:transform .2s}.gds-selectbox__icon--open{transform:rotate(180deg)}.gds-selectbox__dropdown{position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:1000;background-color:var(--bg-surface);border:1px solid var(--gds-neutral-300);border-radius:6px;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);max-height:300px;overflow:hidden}.gds-selectbox__options{max-height:300px;overflow-y:auto}.gds-selectbox__option{padding:10px 12px;cursor:pointer;font-size:14px;color:var(--text-foreground);transition:background-color .15s}.gds-selectbox__option:hover{background-color:var(--gds-neutral-50)}.gds-selectbox__option--selected{background-color:var(--gds-brand-50);color:var(--primary);font-weight:500}.gds-selectbox__option--selected:hover{background-color:var(--gds-brand-100)}.gds-selectbox__option--empty{color:var(--text-muted);cursor:default;font-style:italic}.gds-selectbox__option--empty:hover{background-color:transparent}.gds-selectbox__description{margin-top:6px;font-size:12px;color:var(--text-muted)}.gds-selectbox__description--error{color:var(--danger)}"]})],e)}(),f=function(){function e(){}return e=r([t.NgModule({declarations:[b],imports:[o.CommonModule,p],exports:[b]})],e)}(),x=function(){function e(){}return e.prototype.ngOnInit=function(){},e=r([t.Component({selector:"lib-gds",template:"\n <p>\n gds works!\n </p>\n "})],e)}(),m=function(){function e(){}return e=r([t.NgModule({declarations:[x],imports:[o.CommonModule,l,g,p,h,f],exports:[x]})],e)}(),v=["gestio-dark","gestio-light"],y=["primary","gestio-primary","gestio-primary-hover"],_=["gestio-secondary"],O=["gestio-tertiary"],C=["gestio-brand-25","gestio-brand-50","gestio-brand-100","gestio-brand-200","gestio-brand-300","gestio-brand-400","gestio-brand-500","gestio-brand-600","gestio-brand-700","gestio-brand-800","gestio-brand-900"],w=["gestio-neutral-25","gestio-neutral-50","gestio-neutral-100","gestio-neutral-200","gestio-neutral-300","gestio-neutral-400","gestio-neutral-500","gestio-neutral-600","gestio-neutral-700","gestio-neutral-800","gestio-neutral-900","gestio-neutral-1000"],I=["gestio-green-25","gestio-green-50","gestio-green-100","gestio-green-200","gestio-green-300","gestio-green-400","gestio-green-500","gestio-green-600","gestio-green-700","gestio-green-800","gestio-green-900"],k=["gestio-red-25","gestio-red-50","gestio-red-100","gestio-red-200","gestio-red-300","gestio-red-400","gestio-red-500","gestio-red-600","gestio-red-700","gestio-red-800","gestio-red-900"],S=["gestio-blue-25","gestio-blue-50","gestio-blue-100","gestio-blue-200","gestio-blue-300","gestio-blue-400","gestio-blue-500","gestio-blue-600","gestio-blue-700","gestio-blue-800","gestio-blue-900"],L=["gestio-amber-25","gestio-amber-50","gestio-amber-100","gestio-amber-200","gestio-amber-300","gestio-amber-400","gestio-amber-500","gestio-amber-600","gestio-amber-700","gestio-amber-800","gestio-amber-900"],M=["gestio-teal-25","gestio-teal-50","gestio-teal-100","gestio-teal-200","gestio-teal-300","gestio-teal-400","gestio-teal-500","gestio-teal-600","gestio-teal-700","gestio-teal-800","gestio-teal-900"],R=["gestio-purple-25","gestio-purple-50","gestio-purple-100","gestio-purple-200","gestio-purple-300","gestio-purple-400","gestio-purple-500","gestio-purple-600","gestio-purple-700","gestio-purple-800","gestio-purple-900"],T=["gestio-emerald-25","gestio-emerald-50","gestio-emerald-100","gestio-emerald-200","gestio-emerald-300","gestio-emerald-400","gestio-emerald-500","gestio-emerald-600","gestio-emerald-700","gestio-emerald-800","gestio-emerald-900"],E=["gestio-magenta-25","gestio-magenta-50","gestio-magenta-100","gestio-magenta-200","gestio-magenta-300","gestio-magenta-400","gestio-magenta-500","gestio-magenta-600","gestio-magenta-700","gestio-magenta-800","gestio-magenta-900"],z=["gestio-yellow-25","gestio-yellow-50","gestio-yellow-100","gestio-yellow-200","gestio-yellow-300","gestio-yellow-400","gestio-yellow-500","gestio-yellow-600","gestio-yellow-700","gestio-yellow-800","gestio-yellow-900"],F=["gestio-lime-25","gestio-lime-50","gestio-lime-100","gestio-lime-200","gestio-lime-300","gestio-lime-400","gestio-lime-500","gestio-lime-600","gestio-lime-700","gestio-lime-800","gestio-lime-900"],q=s(v,y,_,O,C,w,I,k,S,L,M,R,T,E,z,F);e.ALL_COLORS=q,e.AMBER_COLORS=L,e.BASE_COLORS=v,e.BLUE_COLORS=S,e.BRAND_COLORS=C,e.EMERALD_COLORS=T,e.GREEN_COLORS=I,e.GdsButtonComponent=d,e.GdsButtonModule=l,e.GdsComponent=x,e.GdsInputComponent=a,e.GdsInputModule=g,e.GdsLabelComponent=c,e.GdsLabelModule=p,e.GdsModule=m,e.GdsSelectboxComponent=b,e.GdsSelectboxModule=f,e.GdsTextboxComponent=u,e.GdsTextboxModule=h,e.LIME_COLORS=F,e.MAGENTA_COLORS=E,e.NEUTRAL_COLORS=w,e.PRIMARY_COLORS=y,e.PURPLE_COLORS=R,e.RED_COLORS=k,e.SECONDARY_COLORS=_,e.TEAL_COLORS=M,e.TERTIARY_COLORS=O,e.TYPOGRAPHY_DESCRIPTIONS={"gds-heading-3xl":"Largest heading for hero sections and major page titles","gds-heading-2xl":"Secondary large heading for section dividers","gds-heading-xl":"Large heading for important content blocks","gds-heading-lg":"Medium heading for subsections","gds-heading-md":"Standard heading for content areas","gds-heading-sm":"Small heading for cards and components","gds-heading-xs":"Smallest heading for micro components","gds-subheading":"Supporting text for headings and descriptions"},e.TYPOGRAPHY_EXAMPLES={"gds-heading-3xl":"Design System","gds-heading-2xl":"Foundation","gds-heading-xl":"Typography","gds-heading-lg":"Heading Large","gds-heading-md":"Heading Medium","gds-heading-sm":"Heading Small","gds-heading-xs":"Heading XS","gds-subheading":"Supporting text that provides additional context and helps establish hierarchy"},e.TYPOGRAPHY_TOKENS=["gds-heading-3xl","gds-heading-2xl","gds-heading-xl","gds-heading-lg","gds-heading-md","gds-heading-sm","gds-heading-xs","gds-subheading"],e.YELLOW_COLORS=z,Object.defineProperty(e,"__esModule",{value:!0})}));
|
|
16
16
|
//# sourceMappingURL=gestio-gds.umd.min.js.map
|