feat: bundle workflow support (#7337)

This commit is contained in:
Manol Donev
2019-06-20 15:58:36 +03:00
committed by Vasil Chimev
parent 5f9eabdf17
commit ecd9fc3e9d
1636 changed files with 19445 additions and 1619 deletions

View File

@ -0,0 +1,18 @@
import { Page } from "tns-core-modules/ui/page";
const CSS = `
#tab1 { text-transform: none; }
#tab2 { text-transform: lowercase; }
#tab3 { text-transform: uppercase; }
#tab4 { text-transform: capitalize; }
`
export function applyTap(args) {
var page = <Page>args.object.page;
page.css = CSS;
}
export function resetTap(args) {
var page = <Page>args.object.page;
page.css = "";
}