当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript d.w函数代码示例

本文整理汇总了TypeScript中@dojo/framework/widget-core/d.w函数的典型用法代码示例。如果您正苦于以下问题:TypeScript w函数的具体用法?TypeScript w怎么用?TypeScript w使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了w函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: harness

			const h = harness(() => w(EnhancedTextInput, { addonAfter: [ 'bar' ]}));
开发者ID:mwistrand,项目名称:widgets,代码行数:1,代码来源:EnhancedTextInput.ts

示例2: harness

				const h = harness(() => w(RangeSlider, {
					onInput
				}));
开发者ID:dojo,项目名称:widgets,代码行数:3,代码来源:RangeSlider.ts

示例3: harness

			const h = harness(() => w(TextInput, {
				label: 'foo'
			}));
开发者ID:bryanforbes,项目名称:widgets,代码行数:3,代码来源:TextInput.ts

示例4: v

const expected = (options: ExpectedOptions = {}) => {
	const {
		inputOverrides = {},
		addonBefore = false,
		addonAfter = false,
		label = false,
		states = {},
		focused = false
	} = options;
	const { readOnly, disabled, required, invalid } = states;
	const children = [
		v('input', {
			'aria-invalid': invalid ? 'true' : null,
			autocomplete: undefined,
			classes: css.input,
			disabled,
			id: '',
			key: 'input',
			maxlength: null,
			minlength: null,
			name: undefined,
			placeholder: undefined,
			pattern: undefined,
			readOnly,
			'aria-readonly': readOnly ? 'true' : null,
			required,
			type: 'text',
			value: undefined,
			focus: noop,
			onblur: noop,
			onchange: noop,
			onclick: noop,
			onfocus: noop,
			oninput: noop,
			onkeydown: noop,
			onkeypress: noop,
			onkeyup: noop,
			onmousedown: noop,
			onmouseup: noop,
			ontouchstart: noop,
			ontouchend: noop,
			ontouchcancel: noop,
			...inputOverrides
		})
	];
	if (addonBefore) {
		children.unshift(v('span', {
			classes: [css.addon, css.addonBefore]
		}, [ 'foo' ]));
	}
	if (addonAfter) {
		children.push(v('span', {
			classes: [css.addon, css.addonAfter]
		}, [ 'bar' ]));
	}

	return v('div', {
		key: 'root',
		classes: [
			textInputCss.root,
			disabled ? textInputCss.disabled : null,
			focused ? textInputCss.focused : null,
			invalid ? textInputCss.invalid : null,
			invalid === false ? textInputCss.valid : null,
			readOnly ? textInputCss.readonly : null,
			required ? textInputCss.required : null
		]
	}, [
		label ? w(Label, {
			theme: undefined,
			classes: undefined,
			disabled,
			focused,
			hidden: false,
			invalid,
			readOnly,
			required,
			forId: ''
		}, [ 'foo' ]) : null,
		v('div', { classes: css.inputWrapper }, children)
	]);
};
开发者ID:mwistrand,项目名称:widgets,代码行数:82,代码来源:EnhancedTextInput.ts

示例5: harness

			const h = harness(() => w(DatePicker, {
				renderMonthLabel: () => { return 'bar'; },
				...customProps,
				...requiredProps
			}), [ compareId, compareAriaLabelledBy, compareAriaControls, compareKey, compareFor, compareName ]);
开发者ID:dojo,项目名称:widgets,代码行数:5,代码来源:DatePicker.ts


注:本文中的@dojo/framework/widget-core/d.w函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。