How to use the @ui5/webcomponents-base/dist/i18nBundle.js.fetchI18nBundle function in @ui5/webcomponents-base

To help you get started, we’ve selected a few @ui5/webcomponents-base examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github SAP / ui5-webcomponents / packages / main / src / Switch.js View on Github external
static async define(...params) {
		await Promise.all([
			Icon.define(),
			fetchI18nBundle("@ui5/webcomponents"),
		]);

		super.define(...params);
	}
}
github SAP / ui5-webcomponents / packages / tools / lib / init-package / resources / src / Demo.js View on Github external
static async define(...params) {
		await fetchI18nBundle("INIT_PACKAGE_VAR_NAME");
		super.define(...params);
	}
}
github SAP / ui5-webcomponents / packages / main / src / Tokenizer.js View on Github external
static async define(...params) {
		await fetchI18nBundle("@ui5/webcomponents");

		super.define(...params);
	}
}
github SAP / ui5-webcomponents / packages / main / src / MultiComboBox.js View on Github external
static async define(...params) {
		await Promise.all([
			Tokenizer.define(),
			Token.define(),
			Icon.define(),
			Popover.define(),
			List.define(),
			StandardListItem.define(),
			fetchI18nBundle("@ui5/webcomponents"),
		]);

		super.define(...params);
	}
}
github SAP / ui5-webcomponents / packages / main / src / CheckBox.js View on Github external
static async define(...params) {
		await Promise.all([
			Label.define(),
			Icon.define(),
			fetchI18nBundle("@ui5/webcomponents"),
		]);

		super.define(...params);
	}
}
github SAP / ui5-webcomponents / packages / main / src / Badge.js View on Github external
static async define(...params) {
		await fetchI18nBundle("@ui5/webcomponents");

		super.define(...params);
	}
github SAP / ui5-webcomponents / packages / main / src / BusyIndicator.js View on Github external
static async define(...params) {
		await fetchI18nBundle("@ui5/webcomponents");

		super.define(...params);
	}
github SAP / ui5-webcomponents / packages / main / src / DatePicker.js View on Github external
static async define(...params) {
		await Promise.all([
			fetchCldr(getLocale().getLanguage(), getLocale().getRegion(), getLocale().getScript()),
			Icon.define(),
			Popover.define(),
			Calendar.define(),
			Input.define(),
			fetchI18nBundle("@ui5/webcomponents"),
		]);

		super.define(...params);
	}
}
github SAP / ui5-webcomponents / packages / main / src / Button.js View on Github external
static async define(...params) {
		await Promise.all([
			Icon.define(),
			fetchI18nBundle("@ui5/webcomponents"),
		]);

		super.define(...params);
	}
}
github SAP / ui5-webcomponents / packages / main / src / RadioButton.js View on Github external
static async define(...params) {
		await Promise.all([
			Label.define(),
			fetchI18nBundle("@ui5/webcomponents"),
		]);

		super.define(...params);
	}

@ui5/webcomponents-base

UI5 Web Components: webcomponents.base

Apache-2.0
Latest version published 5 days ago

Package Health Score

90 / 100
Full package analysis