Skip to content

Commit

Permalink
omg
Browse files Browse the repository at this point in the history
  • Loading branch information
andresmonc committed May 9, 2024
1 parent fc5edbf commit 524ccd5
Show file tree
Hide file tree
Showing 300 changed files with 6,358 additions and 8,665 deletions.
33 changes: 0 additions & 33 deletions controllers/mailer.js

This file was deleted.

36 changes: 0 additions & 36 deletions index.js

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { Subject } from '../Subject';\nimport { Observable } from '../Observable';\nimport { defer } from './defer';\nconst DEFAULT_CONFIG = {\n connector: () => new Subject(),\n resetOnDisconnect: true\n};\nexport function connectable(source, config = DEFAULT_CONFIG) {\n let connection = null;\n const {\n connector,\n resetOnDisconnect = true\n } = config;\n let subject = connector();\n const result = new Observable(subscriber => {\n return subject.subscribe(subscriber);\n });\n result.connect = () => {\n if (!connection || connection.closed) {\n connection = defer(() => source).subscribe(subject);\n if (resetOnDisconnect) {\n connection.add(() => subject = connector());\n }\n }\n return connection;\n };\n return result;\n}\n//# sourceMappingURL=connectable.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nexport function every(predicate, thisArg) {\n return operate((source, subscriber) => {\n let index = 0;\n source.subscribe(createOperatorSubscriber(subscriber, value => {\n if (!predicate.call(thisArg, value, index++, source)) {\n subscriber.next(false);\n subscriber.complete();\n }\n }, () => {\n subscriber.next(true);\n subscriber.complete();\n }));\n });\n}\n//# sourceMappingURL=every.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import * as i0 from \"@angular/core\";\nvar FAQButtonComponent = /** @class */function () {\n function FAQButtonComponent() {}\n FAQButtonComponent.prototype.ngOnInit = function () {};\n FAQButtonComponent.ɵfac = function FAQButtonComponent_Factory(t) {\n return new (t || FAQButtonComponent)();\n };\n FAQButtonComponent.ɵcmp = /*@__PURE__*/i0.ɵɵdefineComponent({\n type: FAQButtonComponent,\n selectors: [[\"app-faq-button\"]],\n decls: 3,\n vars: 0,\n consts: [[\"id\", \"btn-padding\", 1, \"w3-container\", \"w3-center\", \"w3-opacity\", \"w3-light-grey\", \"w3-xlarge\"], [\"type\", \"button\", \"onclick\", \"document.getElementById('FaqModal').style.display='block'\", 1, \"btn\", \"btn-default\"]],\n template: function FAQButtonComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"button\", 1);\n i0.ɵɵtext(2, \"\\u00BFPreguntas Frecuentes?\");\n i0.ɵɵelementEnd()();\n }\n },\n styles: [\"#btn-padding[_ngcontent-%COMP%]{padding-top:14px}\"]\n });\n return FAQButtonComponent;\n}();\nexport { FAQButtonComponent };","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { mergeMap } from './mergeMap';\nimport { isFunction } from '../util/isFunction';\nexport function concatMap(project, resultSelector) {\n return isFunction(resultSelector) ? mergeMap(project, resultSelector, 1) : mergeMap(project, 1);\n}\n//# sourceMappingURL=concatMap.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { operate } from '../util/lift';\nimport { noop } from '../util/noop';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nexport function buffer(closingNotifier) {\n return operate((source, subscriber) => {\n let currentBuffer = [];\n source.subscribe(createOperatorSubscriber(subscriber, value => currentBuffer.push(value), () => {\n subscriber.next(currentBuffer);\n subscriber.complete();\n }));\n closingNotifier.subscribe(createOperatorSubscriber(subscriber, () => {\n const b = currentBuffer;\n currentBuffer = [];\n subscriber.next(b);\n }, noop));\n return () => {\n currentBuffer = null;\n };\n });\n}\n//# sourceMappingURL=buffer.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { Observable } from '../Observable';\nimport { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from '../util/isFunction';\nimport { executeSchedule } from '../util/executeSchedule';\nexport function scheduleIterable(input, scheduler) {\n return new Observable(subscriber => {\n let iterator;\n executeSchedule(subscriber, scheduler, () => {\n iterator = input[Symbol_iterator]();\n executeSchedule(subscriber, scheduler, () => {\n let value;\n let done;\n try {\n ({\n value,\n done\n } = iterator.next());\n } catch (err) {\n subscriber.error(err);\n return;\n }\n if (done) {\n subscriber.complete();\n } else {\n subscriber.next(value);\n }\n }, 0, true);\n });\n return () => isFunction(iterator === null || iterator === void 0 ? void 0 : iterator.return) && iterator.return();\n });\n}\n//# sourceMappingURL=scheduleIterable.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { asyncScheduler } from '../scheduler/async';\nimport { defaultThrottleConfig, throttle } from './throttle';\nimport { timer } from '../observable/timer';\nexport function throttleTime(duration, scheduler = asyncScheduler, config = defaultThrottleConfig) {\n const duration$ = timer(duration, scheduler);\n return throttle(() => duration$, config);\n}\n//# sourceMappingURL=throttleTime.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { createErrorClass } from './createErrorClass';\nexport const EmptyError = createErrorClass(_super => function EmptyErrorImpl() {\n _super(this);\n this.name = 'EmptyError';\n this.message = 'no elements in sequence';\n});\n//# sourceMappingURL=EmptyError.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { innerFrom } from '../observable/innerFrom';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { operate } from '../util/lift';\nexport function catchError(selector) {\n return operate((source, subscriber) => {\n let innerSub = null;\n let syncUnsub = false;\n let handledResult;\n innerSub = source.subscribe(createOperatorSubscriber(subscriber, undefined, undefined, err => {\n handledResult = innerFrom(selector(err, catchError(selector)(source)));\n if (innerSub) {\n innerSub.unsubscribe();\n innerSub = null;\n handledResult.subscribe(subscriber);\n } else {\n syncUnsub = true;\n }\n }));\n if (syncUnsub) {\n innerSub.unsubscribe();\n innerSub = null;\n handledResult.subscribe(subscriber);\n }\n });\n}\n//# sourceMappingURL=catchError.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { zip as zipStatic } from '../observable/zip';\nimport { operate } from '../util/lift';\nexport function zip(...sources) {\n return operate((source, subscriber) => {\n zipStatic(source, ...sources).subscribe(subscriber);\n });\n}\n//# sourceMappingURL=zip.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { EmptyError } from './util/EmptyError';\nimport { SafeSubscriber } from './Subscriber';\nexport function firstValueFrom(source, config) {\n const hasConfig = typeof config === 'object';\n return new Promise((resolve, reject) => {\n const subscriber = new SafeSubscriber({\n next: value => {\n resolve(value);\n subscriber.unsubscribe();\n },\n error: reject,\n complete: () => {\n if (hasConfig) {\n resolve(config.defaultValue);\n } else {\n reject(new EmptyError());\n }\n }\n });\n source.subscribe(subscriber);\n });\n}\n//# sourceMappingURL=firstValueFrom.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import * as i0 from \"@angular/core\";\nvar GalleryComponent = /** @class */function () {\n function GalleryComponent() {}\n GalleryComponent.prototype.ngOnInit = function () {};\n GalleryComponent.ɵfac = function GalleryComponent_Factory(t) {\n return new (t || GalleryComponent)();\n };\n GalleryComponent.ɵcmp = /*@__PURE__*/i0.ɵɵdefineComponent({\n type: GalleryComponent,\n selectors: [[\"app-gallery\"]],\n decls: 43,\n vars: 0,\n consts: [[\"id\", \"gallery-banner\", 1, \"w3-container\", \"w3-content\", \"w3-padding-64\"], [1, \"w3-wide\", \"w3-center\", \"galeria-title\"], [\"id\", \"container\"], [1, \"photobanner\"], [\"srcset\", \"\", \"type\", \"image/webp\"], [\"srcset\", \"\", \"type\", \"image/jpeg\"], [\"srcset\", \"https://i.imgur.com/9PbdbKv.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/9PbdbKv.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"first\", \"gallery-img\"], [\"srcset\", \"https://i.imgur.com/O0Z7IwT.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/O0Z7IwT.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://i.imgur.com/PxUOprm.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/PxUOprm.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://i.imgur.com/JyioDpp.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/JyioDpp.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://i.imgur.com/27TzEsc.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/27TzEsc.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://drive.google.com/uc?export=view&id=138CY6my7zdL2fDrQ_NfzEj82TYJgjM2E\", \"type\", \"image/webp\"], [\"srcset\", \"https://i.imgur.com/MGXfKL4.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/MGXfKL4.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://drive.google.com/uc?export=view&id=14P01zltDbCWXlORPN1NbsPP5JlWJajPW\", \"type\", \"image/webp\"], [\"srcset\", \"https://i.imgur.com/LSEVMGu.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/LSEVMGu.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://drive.google.com/uc?export=view&id=1F2THjnQusnTN_UNNovBK2imxdgroIG7d\", \"type\", \"image/webp\"], [\"srcset\", \"https://i.imgur.com/aUl4oan.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/aUl4oan.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://drive.google.com/uc?export=view&id=1h7X6BMs5mkJVocwykcBidUOlw9cJz6CJ\", \"type\", \"image/webp\"], [\"srcset\", \"https://i.imgur.com/66HYs4x.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/66HYs4x.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"], [\"srcset\", \"https://drive.google.com/uc?export=view&id=1rENYtjopyhKQ2fZqKRLzmM9xUqI5Gjai\", \"type\", \"image/webp\"], [\"srcset\", \"https://i.imgur.com/6jkrwIo.jpeg\", \"type\", \"image/jpeg\"], [\"src\", \"https://i.imgur.com/6jkrwIo.jpeg\", \"alt\", \"\", \"rel\", \"noopener\", 1, \"gallery-img\"]],\n template: function GalleryComponent_Template(rf, ctx) {\n if (rf & 1) {\n i0.ɵɵelementStart(0, \"div\", 0)(1, \"h2\", 1);\n i0.ɵɵtext(2, \"GALERIA\");\n i0.ɵɵelementEnd()();\n i0.ɵɵelementStart(3, \"div\", 2)(4, \"div\", 3);\n i0.ɵɵelement(5, \"source\", 4)(6, \"source\", 5);\n i0.ɵɵelementStart(7, \"picture\");\n i0.ɵɵelement(8, \"source\", 6)(9, \"img\", 7);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(10, \"picture\");\n i0.ɵɵelement(11, \"source\", 8)(12, \"img\", 9);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(13, \"picture\");\n i0.ɵɵelement(14, \"source\", 10)(15, \"img\", 11);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(16, \"picture\");\n i0.ɵɵelement(17, \"source\", 12)(18, \"img\", 13);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(19, \"picture\");\n i0.ɵɵelement(20, \"source\", 14)(21, \"img\", 15);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(22, \"picture\");\n i0.ɵɵelement(23, \"source\", 16)(24, \"source\", 17)(25, \"img\", 18);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(26, \"picture\");\n i0.ɵɵelement(27, \"source\", 19)(28, \"source\", 20)(29, \"img\", 21);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(30, \"picture\");\n i0.ɵɵelement(31, \"source\", 22)(32, \"source\", 23)(33, \"img\", 24);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(34, \"picture\");\n i0.ɵɵelement(35, \"source\", 25)(36, \"source\", 26)(37, \"img\", 27);\n i0.ɵɵelementEnd();\n i0.ɵɵelementStart(38, \"picture\");\n i0.ɵɵelement(39, \"source\", 28)(40, \"source\", 29)(41, \"img\", 30);\n i0.ɵɵelementEnd()()();\n i0.ɵɵelement(42, \"hr\");\n }\n },\n styles: [\"#gallery-banner[_ngcontent-%COMP%]{height:20vh;width:100%;text-align:center;background-image:url(https://i.imgur.com/8gWCfzU.jpeg);background-attachment:fixed;background-position:center;background-repeat:no-repeat;background-size:cover}.galeria-title[_ngcontent-%COMP%]{font-weight:700;color:#fff}#scroll[_ngcontent-%COMP%]{width:98vw;height:400px;margin:80px auto;overflow:auto;white-space:nowrap}.gallery-img[_ngcontent-%COMP%]{height:400px;width:400px;margin:0 1px}@media only screen and (max-device-width: 700px){#gallery-banner[_ngcontent-%COMP%]{background-attachment:scroll}}#container[_ngcontent-%COMP%]{width:80vw;height:400px;overflow:hidden;margin:50px auto;background:white}.photobanner[_ngcontent-%COMP%]{overflow:hidden;height:45vh;width:3550px;margin-bottom:0}.photobanner[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{transition:all .1s ease}.first[_ngcontent-%COMP%]{animation:_ngcontent-%COMP%_bannermove 30s linear infinite}@keyframes _ngcontent-%COMP%_bannermove{0%{margin-left:0}to{margin-left:-2125px}}\"]\n });\n return GalleryComponent;\n}();\nexport { GalleryComponent };","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { operate } from '../util/lift';\nimport { createOperatorSubscriber } from './OperatorSubscriber';\nimport { noop } from '../util/noop';\nexport function distinct(keySelector, flushes) {\n return operate((source, subscriber) => {\n const distinctKeys = new Set();\n source.subscribe(createOperatorSubscriber(subscriber, value => {\n const key = keySelector ? keySelector(value) : value;\n if (!distinctKeys.has(key)) {\n distinctKeys.add(key);\n subscriber.next(value);\n }\n }));\n flushes === null || flushes === void 0 ? void 0 : flushes.subscribe(createOperatorSubscriber(subscriber, () => distinctKeys.clear(), noop));\n });\n}\n//# sourceMappingURL=distinct.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { combineLatestInit } from '../observable/combineLatest';\nimport { operate } from '../util/lift';\nimport { argsOrArgArray } from '../util/argsOrArgArray';\nimport { mapOneOrManyArgs } from '../util/mapOneOrManyArgs';\nimport { pipe } from '../util/pipe';\nimport { popResultSelector } from '../util/args';\nexport function combineLatest(...args) {\n const resultSelector = popResultSelector(args);\n return resultSelector ? pipe(combineLatest(...args), mapOneOrManyArgs(resultSelector)) : operate((source, subscriber) => {\n combineLatestInit([source, ...argsOrArgArray(args)])(subscriber);\n });\n}\n//# sourceMappingURL=combineLatest.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { iterator as Symbol_iterator } from '../symbol/iterator';\nimport { isFunction } from './isFunction';\nexport function isIterable(input) {\n return isFunction(input === null || input === void 0 ? void 0 : input[Symbol_iterator]);\n}\n//# sourceMappingURL=isIterable.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"ast":null,"code":"import { QueueAction } from './QueueAction';\nimport { QueueScheduler } from './QueueScheduler';\nexport const queueScheduler = new QueueScheduler(QueueAction);\nexport const queue = queueScheduler;\n//# sourceMappingURL=queue.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}
Loading

0 comments on commit 524ccd5

Please sign in to comment.