UNPKG

4 kBJavaScriptView Raw
1
2/**
3 * Decorative react components of apeman.
4 * @namespace apeman-react-decorative
5 * @property {function} ApClock - ApClock component from "apeman-react-clock" module.
6 * @property {function} ApClockStyle - ApClockStyle component from "apeman-react-clock" module.
7 * @property {function} ApAnalogClock - ApAnalogClock component from "apeman-react-clock" module.
8 * @property {function} ApAnalogClockStyle - ApAnalogClockStyle component from "apeman-react-clock" module.
9 * @property {function} ApDigitalClock - ApDigitalClock component from "apeman-react-clock" module.
10 * @property {function} ApDigitalClockStyle - ApDigitalClockStyle component from "apeman-react-clock" module.
11 * @property {function} ApShowcase - ApShowcase component from "apeman-react-showcase" module.
12 * @property {function} ApShowcaseStyle - ApShowcaseStyle component from "apeman-react-showcase" module.
13 * @property {function} ApDesktopShowcase - ApDesktopShowcase component from "apeman-react-showcase" module.
14 * @property {function} ApDesktopShowcaseStyle - ApDesktopShowcaseStyle component from "apeman-react-showcase" module.
15 * @property {function} ApMobileShowcase - ApMobileShowcase component from "apeman-react-showcase" module.
16 * @property {function} ApMobileShowcaseStyle - ApMobileShowcaseStyle component from "apeman-react-showcase" module.
17 * @property {function} ApSlideshow - ApSlideshow component from "apeman-react-slideshow" module.
18 * @property {function} ApSlideshowStyle - ApSlideshowStyle component from "apeman-react-slideshow" module.
19 * @property {function} ApPhoto - ApPhoto component from "apeman-react-photo" module.
20 * @property {function} ApPhotoStyle - ApPhotoStyle component from "apeman-react-photo" module.
21 * @property {function} ApPaperPhoto - ApPaperPhoto component from "apeman-react-photo" module.
22 * @property {function} ApPaperPhotoStyle - ApPaperPhotoStyle component from "apeman-react-photo" module.
23 * @property {function} ApAlbum - ApAlbum component from "apeman-react-album" module.
24 * @property {function} ApAlbumStyle - ApAlbumStyle component from "apeman-react-album" module.
25*/
26
27'use strict'
28
29const apemanReactClock = require('apeman-react-clock')
30const apemanReactShowcase = require('apeman-react-showcase')
31const apemanReactSlideshow = require('apeman-react-slideshow')
32const apemanReactPhoto = require('apeman-react-photo')
33const apemanReactAlbum = require('apeman-react-album')
34// --------------------------
35// apeman-react-clock
36// --------------------------
37
38exports.ApClock = apemanReactClock.ApClock
39exports.ApClockStyle = apemanReactClock.ApClockStyle
40exports.ApAnalogClock = apemanReactClock.ApAnalogClock
41exports.ApAnalogClockStyle = apemanReactClock.ApAnalogClockStyle
42exports.ApDigitalClock = apemanReactClock.ApDigitalClock
43exports.ApDigitalClockStyle = apemanReactClock.ApDigitalClockStyle
44
45// --------------------------
46// apeman-react-showcase
47// --------------------------
48
49exports.ApShowcase = apemanReactShowcase.ApShowcase
50exports.ApShowcaseStyle = apemanReactShowcase.ApShowcaseStyle
51exports.ApDesktopShowcase = apemanReactShowcase.ApDesktopShowcase
52exports.ApDesktopShowcaseStyle = apemanReactShowcase.ApDesktopShowcaseStyle
53exports.ApMobileShowcase = apemanReactShowcase.ApMobileShowcase
54exports.ApMobileShowcaseStyle = apemanReactShowcase.ApMobileShowcaseStyle
55
56// --------------------------
57// apeman-react-slideshow
58// --------------------------
59
60exports.ApSlideshow = apemanReactSlideshow.ApSlideshow
61exports.ApSlideshowStyle = apemanReactSlideshow.ApSlideshowStyle
62
63// --------------------------
64// apeman-react-photo
65// --------------------------
66
67exports.ApPhoto = apemanReactPhoto.ApPhoto
68exports.ApPhotoStyle = apemanReactPhoto.ApPhotoStyle
69exports.ApPaperPhoto = apemanReactPhoto.ApPaperPhoto
70exports.ApPaperPhotoStyle = apemanReactPhoto.ApPaperPhotoStyle
71
72// --------------------------
73// apeman-react-album
74// --------------------------
75
76exports.ApAlbum = apemanReactAlbum.ApAlbum
77exports.ApAlbumStyle = apemanReactAlbum.ApAlbumStyle
78