Skip to content

Commit

Permalink
Adding the experimental exports.
Browse files Browse the repository at this point in the history
  • Loading branch information
travist committed Apr 2, 2024
1 parent 20307d4 commit c91cc05
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions experimental.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib/experimental';
17 changes: 17 additions & 0 deletions experimental.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./lib/experimental"), exports);
2 changes: 1 addition & 1 deletion src/experimental/base/component/Component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { merge } from 'lodash';
import { Components } from '../Components';
import { Template } from '../../template';
import { Evaluator } from 'utils';
import { Evaluator } from 'utils/Evaluator';
import * as dom from 'utils/dom';
import { sanitize } from 'utils/sanitize';
import { Model, ModelDecoratorInterface, ModelInterface } from '../../model';
Expand Down
2 changes: 1 addition & 1 deletion src/experimental/template/Template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { merge } from 'lodash';
* Manages all the available templates which can be rendered.
*/
export class Template {
public static templates: any = [];
public static templates: any = {};
public static _current: any = {};
public static _framework: string = 'bootstrap';

Expand Down

0 comments on commit c91cc05

Please sign in to comment.