Skip to content

Commit 37c4697

Browse files
committed
v5.0.0
2 parents 7be7494 + 36dde54 commit 37c4697

File tree

157 files changed

+4240
-8467
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+4240
-8467
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
<p align="center">
2-
<a href="https://metroui.org.ua/">
3-
<img src="https://metroui.org.ua/images/metro-xscode-logo.jpg" alt="">
4-
</a>
1+
<div align="center">
2+
<h3 align="center">Metro UI Components Library</h3>
53

6-
<h3 align="center">Metro 4 Components Library</h3>
7-
</p>
4+
Sleek, intuitive, and powerful front-end framework for faster and easier web development.
5+
Build responsive, mobile-first projects on the web with the first front-end component library in Metro Style.
6+
</div>
87

98
<p align="center">
10-
Sleek, intuitive, and powerful front-end framework for faster and easier web development.
11-
Build responsive, mobile-first projects on the web with the first front-end component library in Metro Style.
12-
<br>
139
<a href="https://metroui.org.ua/"><strong>Explore Metro 4 docs »</strong></a>
1410
</p>
1511

@@ -30,17 +26,21 @@ It's an independent project with its ongoing development made possible entirely
3026
<br>
3127

3228
----
33-
29+
### Project State
3430
![Dependencies](https://img.shields.io/badge/Dependencies-none-darklime.svg)
35-
[![CSS gzip size](http://img.badgesize.io/olton/Metro-UI-CSS/master/build/metro.css?compression=gzip&label=CSS+gzip)](https://github.com/olton/Metro-UI-CSS/blob/master/build/metro.css)
36-
[![JS gzip size](http://img.badgesize.io/olton/Metro-UI-CSS/master/build/metro.js?compression=gzip&label=JS+gzip)](https://github.com/olton/Metro-UI-CSS/blob/master/build/metro.js)
37-
[![Icons gzip size](http://img.badgesize.io/olton/Metro-UI-CSS/master/build/icons.css?compression=gzip&label=Icons+gzip)](https://github.com/olton/Metro-UI-CSS/blob/master/build/icons.css)
38-
![GitHub release](https://img.shields.io/github/v/release/olton/Metro-UI-CSS?color=darkLime)
39-
[![npm version](https://badge.fury.io/js/metro4.svg)](https://badge.fury.io/js/metro4)
31+
![Package Version](https://img.shields.io/github/package-json/v/olton/Metro-UI-CSS)
32+
![GitHub Release](https://img.shields.io/github/v/release/olton/Metro-UI-CSS)
33+
![NPM Version](https://img.shields.io/npm/v/%40olton%2Fmetroui)
4034
![Website](https://img.shields.io/website/https/metroui.org.ua.svg)
41-
![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat)
42-
![GitHub issues](https://img.shields.io/github/issues-raw/olton/Metro-UI-CSS.svg)
43-
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/olton/Metro-UI-CSS.svg)
35+
![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?color=7852a9)
36+
37+
---
38+
### Project Size
39+
![Code size](https://img.shields.io/github/languages/code-size/olton/Metro-UI-CSS.svg?color=830000)
40+
![GitHub Css Size](https://img.shields.io/github/size/olton/Metro-UI-CSS/build%2Fmetro.css?label=CSS%20Size&color=fd9812)
41+
![GitHub JS Size](https://img.shields.io/github/size/olton/Metro-UI-CSS/build%2Fmetro.js?label=JS%20Size&color=8f99ff)
42+
![GitHub Icons Size](https://img.shields.io/github/size/olton/Metro-UI-CSS/build%2Ficons.css?label=Icons%20Size&color=01796f)
43+
![GitHub Bundle Size](https://img.shields.io/github/size/olton/Metro-UI-CSS/build%2Fmetro.all.js?label=Bundle%20Size&color=8d4585)
4444

4545
----
4646

build/icons.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

build/metro.all.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

build/metro.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

build/metro.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

deploy-dev.cjs renamed to deploy-dev.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
#!/usr/bin/env node
1+
import FtpDeploy from "ftp-deploy"
2+
import auth from "./ftpauth.json" assert {type: "json"}
3+
import { dirname } from 'path';
4+
import { fileURLToPath } from 'url';
5+
6+
const __dirname = dirname(fileURLToPath(import.meta.url));
27

3-
const FtpDeploy = require("ftp-deploy");
48
const ftpDeploy = new FtpDeploy();
5-
const auth = require("./ftpauth.json")
6-
const pkg = require("./package.json")
79

810
const config = {
911
user: auth.keycdn.username,
@@ -22,4 +24,4 @@ const config = {
2224
ftpDeploy
2325
.deploy(config)
2426
.then((res) => console.log("finished:", res))
25-
.catch((err) => console.log(err));
27+
.catch((err) => console.log(err));

deploy.cjs renamed to deploy.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
const FtpDeploy = require("ftp-deploy");
1+
import FtpDeploy from "ftp-deploy"
2+
import auth from "./ftpauth.json" assert {type: "json"}
3+
import pkg from "./package.json" assert {type: "json"}
4+
import { dirname } from 'path';
5+
import { fileURLToPath } from 'url';
6+
7+
const __dirname = dirname(fileURLToPath(import.meta.url));
8+
29
const ftp = new FtpDeploy();
3-
const auth = require("./ftpauth.json")
4-
const pkg = require("./package.json")
510

611
const configVer = {
712
user: auth.keycdn.username,

icons/metro.svg

Lines changed: 23 additions & 0 deletions
Loading

icons/metro.ttf

3.4 KB
Binary file not shown.

icons/metro.woff

3.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)