office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
64 lines • 3.9 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var Shimmer_1 = require("office-ui-fabric-react/lib/Shimmer");
var Fabric_1 = require("office-ui-fabric-react/lib/Fabric");
var Styling_1 = require("office-ui-fabric-react/lib/Styling");
var wrapperClass = Styling_1.mergeStyles({
padding: 2,
selectors: {
'& > .ms-Shimmer-container': {
margin: '10px 0'
}
}
});
exports.ShimmerBasicExample = function () {
return (React.createElement(Fabric_1.Fabric, { className: wrapperClass },
"Basic Shimmer with no elements provided. It defaults to a line of 16px height.",
React.createElement(Shimmer_1.Shimmer, null),
React.createElement(Shimmer_1.Shimmer, { width: "75%" }),
React.createElement(Shimmer_1.Shimmer, { width: "50%" }),
"Basic Shimmer with elements provided.",
React.createElement(Shimmer_1.Shimmer, { shimmerElements: [
{ type: Shimmer_1.ShimmerElementType.circle },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.line }
] }),
React.createElement(Shimmer_1.Shimmer, { shimmerElements: [
{ type: Shimmer_1.ShimmerElementType.circle, height: 24 },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16, width: '20%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '5%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16, width: '20%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '10%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16, width: '15%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '10%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16 }
] }),
React.createElement(Shimmer_1.Shimmer, { width: '70%', shimmerElements: [
{ type: Shimmer_1.ShimmerElementType.circle, height: 24 },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16, width: '20%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '5%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16, width: '20%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '10%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16, width: '15%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '10%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16 }
] }),
"Variations of vertical alignment for Circles and Lines.",
React.createElement(Shimmer_1.Shimmer, { shimmerElements: [
{ type: Shimmer_1.ShimmerElementType.circle },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.circle, height: 15, verticalAlign: 'top' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.line, verticalAlign: 'bottom', width: '20%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 5, verticalAlign: 'top', width: '20%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 16, width: '15%' },
{ type: Shimmer_1.ShimmerElementType.gap, width: '2%' },
{ type: Shimmer_1.ShimmerElementType.line, height: 10, verticalAlign: 'bottom' }
] })));
};
//# sourceMappingURL=Shimmer.Basic.Example.js.map