├── .babelrc ├── .gitignore ├── .svnignore ├── README.md ├── address ├── address.css ├── address.js ├── address.jsx ├── address.map └── address.scss ├── assets ├── hours-input.png ├── hours-render.png └── phone-input.png ├── business-hours ├── business-hours.css ├── business-hours.js ├── business-hours.jsx ├── business-hours.map ├── business-hours.scss └── components │ ├── HoursList.jsx │ └── HoursRow.jsx ├── contact-phone ├── contact-phone.css ├── contact-phone.js ├── contact-phone.jsx ├── contact-phone.map └── contact-phone.scss ├── package.json ├── random-blocks.php ├── readme.txt └── time ├── time-converter-script.js ├── time.js ├── time.jsx └── time.map /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@wordpress/default"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | node_modules 3 | -------------------------------------------------------------------------------- /.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/.svnignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/README.md -------------------------------------------------------------------------------- /address/address.css: -------------------------------------------------------------------------------- 1 | .random-blocks-address p{white-space:pre-line} -------------------------------------------------------------------------------- /address/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/address/address.js -------------------------------------------------------------------------------- /address/address.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/address/address.jsx -------------------------------------------------------------------------------- /address/address.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/address/address.map -------------------------------------------------------------------------------- /address/address.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/address/address.scss -------------------------------------------------------------------------------- /assets/hours-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/assets/hours-input.png -------------------------------------------------------------------------------- /assets/hours-render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/assets/hours-render.png -------------------------------------------------------------------------------- /assets/phone-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/assets/phone-input.png -------------------------------------------------------------------------------- /business-hours/business-hours.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/business-hours/business-hours.css -------------------------------------------------------------------------------- /business-hours/business-hours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/business-hours/business-hours.js -------------------------------------------------------------------------------- /business-hours/business-hours.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/business-hours/business-hours.jsx -------------------------------------------------------------------------------- /business-hours/business-hours.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/business-hours/business-hours.map -------------------------------------------------------------------------------- /business-hours/business-hours.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/business-hours/business-hours.scss -------------------------------------------------------------------------------- /business-hours/components/HoursList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/business-hours/components/HoursList.jsx -------------------------------------------------------------------------------- /business-hours/components/HoursRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/business-hours/components/HoursRow.jsx -------------------------------------------------------------------------------- /contact-phone/contact-phone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/contact-phone/contact-phone.css -------------------------------------------------------------------------------- /contact-phone/contact-phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/contact-phone/contact-phone.js -------------------------------------------------------------------------------- /contact-phone/contact-phone.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/contact-phone/contact-phone.jsx -------------------------------------------------------------------------------- /contact-phone/contact-phone.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/contact-phone/contact-phone.map -------------------------------------------------------------------------------- /contact-phone/contact-phone.scss: -------------------------------------------------------------------------------- 1 | .react-phone-number-input__icon { 2 | line-height: 1; 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/package.json -------------------------------------------------------------------------------- /random-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/random-blocks.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/readme.txt -------------------------------------------------------------------------------- /time/time-converter-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/time/time-converter-script.js -------------------------------------------------------------------------------- /time/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/time/time.js -------------------------------------------------------------------------------- /time/time.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/time/time.jsx -------------------------------------------------------------------------------- /time/time.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/georgestephanis/random-blocks/HEAD/time/time.map --------------------------------------------------------------------------------