24 lines
772 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const styles_1 = require("../../input/styles");
const styles_2 = require("../../button/styles");
const common_1 = require("../../_styles/common");
const _mixins_1 = require("../../_mixins");
2024-08-02 18:19:39 +08:00
const _common_1 = __importDefault(require("./_common"));
function self() {
2024-01-29 09:26:07 +08:00
return _common_1.default;
2024-08-02 18:19:39 +08:00
}
2024-01-29 09:26:07 +08:00
const dynamicInputLight = (0, _mixins_1.createTheme)({
name: 'DynamicInput',
common: common_1.commonLight,
peers: {
Input: styles_1.inputLight,
Button: styles_2.buttonLight
},
self
});
exports.default = dynamicInputLight;