aurum-components
Advanced tools
Comparing version 0.1.9 to 0.2.0
{ | ||
"name": "aurum-components", | ||
"version": "0.1.9", | ||
"version": "0.2.0", | ||
"main": "prebuilt/cjs/aurum-components.js", | ||
@@ -5,0 +5,0 @@ "typings": "prebuilt/cjs/aurum-components.d.ts", |
@@ -94,2 +94,24 @@ declare module "theme/theme" { | ||
} | ||
declare module "accordion/accordion" { | ||
import { AurumComponentAPI, DataSource, Renderable, AttributeValue, ClassType } from 'aurumjs'; | ||
export interface AccordionProps { | ||
style?: AttributeValue; | ||
class?: ClassType; | ||
singleOpen?: boolean | DataSource<boolean>; | ||
sizeMode: { | ||
type: 'fit-content'; | ||
} | { | ||
type: 'even-share'; | ||
height: number | string; | ||
}; | ||
} | ||
export interface AccordionItemProps { | ||
title: Renderable; | ||
unresizable?: boolean; | ||
noCollapseButton?: boolean; | ||
expanded?: boolean | DataSource<boolean>; | ||
} | ||
export function Accordion(props: AccordionProps, children: Renderable[], api: AurumComponentAPI): Renderable; | ||
export function AccordionItem(props: AccordionItemProps): Renderable; | ||
} | ||
declare module "dialog/dialog" { | ||
@@ -387,2 +409,3 @@ import { AttributeValue, AurumComponentAPI, ClassType, Renderable } from 'aurumjs'; | ||
export * from "tree_view/tree_view_model"; | ||
export * from "accordion/accordion"; | ||
export * from "dialog/dialog"; | ||
@@ -389,0 +412,0 @@ export * from "dialog/context_menu"; |
export * from './tree_view/tree_view_component'; | ||
export * from './tree_view/tree_view_model'; | ||
export * from './accordion/accordion'; | ||
export * from './dialog/dialog'; | ||
@@ -4,0 +5,0 @@ export * from './dialog/context_menu'; |
@@ -20,2 +20,3 @@ "use strict"; | ||
__exportStar(require("./tree_view/tree_view_model"), exports); | ||
__exportStar(require("./accordion/accordion"), exports); | ||
__exportStar(require("./dialog/dialog"), exports); | ||
@@ -22,0 +23,0 @@ __exportStar(require("./dialog/context_menu"), exports); |
export * from './tree_view/tree_view_component'; | ||
export * from './tree_view/tree_view_model'; | ||
export * from './accordion/accordion'; | ||
export * from './dialog/dialog'; | ||
@@ -4,0 +5,0 @@ export * from './dialog/context_menu'; |
export * from './tree_view/tree_view_component'; | ||
export * from './tree_view/tree_view_model'; | ||
export * from './accordion/accordion'; | ||
export * from './dialog/dialog'; | ||
@@ -4,0 +5,0 @@ export * from './dialog/context_menu'; |
{ | ||
"name": "aurum-components", | ||
"version": "0.1.9", | ||
"version": "0.2.0", | ||
"description": "", | ||
@@ -38,2 +38,8 @@ "main": "prebuilt/cjs/aurum-components.js", | ||
{ | ||
"outdir": "dist/test", | ||
"includes": ["test/**/*.ts", "test/**/*.tsx", "src/**/*.ts", "src/**/*.tsx"], | ||
"name": "test", | ||
"platform": "browser" | ||
}, | ||
{ | ||
"outdir": "prebuilt/amd", | ||
@@ -40,0 +46,0 @@ "name": "amd", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1051178
234
11904