init component
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
import './box.sass';
|
||||
declare const _default: import("vue").DefineComponent<{
|
||||
tag: {
|
||||
type: (FunctionConstructor | StringConstructor)[];
|
||||
default: string;
|
||||
};
|
||||
themeMap: {
|
||||
type: import("vue").PropType<import("../../..").ThemeColorMap>;
|
||||
required: boolean;
|
||||
default: import("fp-ts/lib/function").Lazy<import("../../..").ThemeColorMap>;
|
||||
};
|
||||
isThemeable: {
|
||||
type: import("vue").PropType<boolean>;
|
||||
required: boolean;
|
||||
default: boolean;
|
||||
};
|
||||
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
||||
[key: string]: any;
|
||||
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
||||
isThemeable: boolean;
|
||||
themeMap: import("../../..").ThemeColorMap;
|
||||
tag: string | Function;
|
||||
} & {}>, {
|
||||
isThemeable: boolean;
|
||||
themeMap: import("../../..").ThemeColorMap;
|
||||
tag: string | Function;
|
||||
}>;
|
||||
export default _default;
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import "../../../../src/components/layout/box/box.sass";
|
||||
import { getThemeableFunctionalComponent } from '../../../utils/getThemeableFunctionalComponent';
|
||||
export default getThemeableFunctionalComponent({
|
||||
cls: 'box',
|
||||
el: 'section'
|
||||
});
|
||||
//# sourceMappingURL=BBox.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../../src/components/layout/box/BBox.ts"],"names":[],"mappings":"AAAA,OAAO,gDAAP;AACA,SAAS,+BAAT,QAAgD,gDAAhD;AAEA,eAAe,+BAA+B,CAAC;AAAE,EAAA,GAAG,EAAE,KAAP;AAAc,EAAA,EAAE,EAAE;AAAlB,CAAD,CAA9C","sourcesContent":["import './box.sass';\nimport { getThemeableFunctionalComponent } from '../../../utils/getThemeableFunctionalComponent';\n\nexport default getThemeableFunctionalComponent({ cls: 'box', el: 'section' });\n"],"sourceRoot":"","file":"BBox.js"}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import BBox from './BBox';
|
||||
export { BBox };
|
||||
export default BBox;
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import BBox from './BBox';
|
||||
export { BBox };
|
||||
export default BBox;
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../../src/components/layout/box/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAP,MAAiB,QAAjB;AAEA,SAAS,IAAT;AAEA,eAAe,IAAf","sourcesContent":["import BBox from './BBox';\n\nexport { BBox };\n\nexport default BBox;\n"],"sourceRoot":"","file":"index.js"}
|
||||
Reference in New Issue
Block a user