newtil-css 0.2.72 → 0.2.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +42 -42
- package/dist/index.d.ts +7 -7
- package/dist/index.js +8 -8
- package/dist/style.css +4 -4
- package/dist/types/n-bar.d.ts +3 -3
- package/dist/types/n-layout.d.ts +3 -3
- package/index.d.ts +7 -7
- package/index.js +8 -8
- package/package.json +53 -53
package/dist/types/n-bar.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare module 'newtil-css/dist/js/n-bar' {
|
|
2
|
-
export default function initBar(): void;
|
|
3
|
-
}
|
|
1
|
+
declare module 'newtil-css/dist/js/n-bar' {
|
|
2
|
+
export default function initBar(): void;
|
|
3
|
+
}
|
package/dist/types/n-layout.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare module 'newtil-css/dist/js/n-layout' {
|
|
2
|
-
export default function initLayout(): void;
|
|
3
|
-
}
|
|
1
|
+
declare module 'newtil-css/dist/js/n-layout' {
|
|
2
|
+
export default function initLayout(): void;
|
|
3
|
+
}
|
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
// CSS 파일을 가져옴
|
|
2
|
-
import "./dist/utils.css";
|
|
3
|
-
import "./dist/components.css";
|
|
4
|
-
|
|
5
|
-
// JavaScript 모듈을 가져옴
|
|
6
|
-
export { default as initLayout } from "./dist/js/n-layout";
|
|
7
|
-
export { default as initBar } from "./dist/js/n-layout";
|
|
1
|
+
// CSS 파일을 가져옴
|
|
2
|
+
import "./dist/utils.css";
|
|
3
|
+
import "./dist/components.css";
|
|
4
|
+
|
|
5
|
+
// JavaScript 모듈을 가져옴
|
|
6
|
+
export { default as initLayout } from "./dist/js/n-layout";
|
|
7
|
+
export { default as initBar } from "./dist/js/n-layout";
|
package/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// CSS 파일을 가져옴
|
|
2
|
-
// import "./dist/utils.css";
|
|
3
|
-
// import "./dist/components.css";
|
|
4
|
-
import "./dist/style.css";
|
|
5
|
-
|
|
6
|
-
// JavaScript 모듈을 가져옴
|
|
7
|
-
export { default as initLayout } from "./dist/js/n-layout";
|
|
8
|
-
export { default as initBar } from "./dist/js/n-bar";
|
|
1
|
+
// CSS 파일을 가져옴
|
|
2
|
+
// import "./dist/utils.css";
|
|
3
|
+
// import "./dist/components.css";
|
|
4
|
+
import "./dist/style.css";
|
|
5
|
+
|
|
6
|
+
// JavaScript 모듈을 가져옴
|
|
7
|
+
export { default as initLayout } from "./dist/js/n-layout";
|
|
8
|
+
export { default as initBar } from "./dist/js/n-bar";
|
package/package.json
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "newtil-css",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Utility based CSS",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"types": "index.d.ts",
|
|
7
|
-
"style": "dist/style.css",
|
|
8
|
-
"type": "module",
|
|
9
|
-
"keywords": [
|
|
10
|
-
"css",
|
|
11
|
-
"util css"
|
|
12
|
-
],
|
|
13
|
-
"author": "lectureteam",
|
|
14
|
-
"license": "MIT",
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "rm -rf ./dist && rollup -c",
|
|
17
|
-
"deploy": "npm run build && npm publish",
|
|
18
|
-
"docs:dev": "vitepress dev docs",
|
|
19
|
-
"docs:build": "vitepress build docs",
|
|
20
|
-
"docs:preview": "vitepress preview docs"
|
|
21
|
-
},
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
24
|
-
"@rollup/plugin-typescript": "^12.1.2",
|
|
25
|
-
"postcss": "^8.4
|
|
26
|
-
"postcss-import": "^16.1.0",
|
|
27
|
-
"postcss-url": "^10.1.3",
|
|
28
|
-
"rollup": "^4.9.2",
|
|
29
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
30
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
31
|
-
"vitepress": "^
|
|
32
|
-
},
|
|
33
|
-
"directories": {
|
|
34
|
-
"doc": "docs"
|
|
35
|
-
},
|
|
36
|
-
"repository": {
|
|
37
|
-
"type": "git",
|
|
38
|
-
"url": "git+https://github.com/newlecture-corp/newtil-css.git"
|
|
39
|
-
},
|
|
40
|
-
"bugs": {
|
|
41
|
-
"url": "https://github.com/newlecture-corp/newtil-css/issues"
|
|
42
|
-
},
|
|
43
|
-
"homepage": "https://github.com/newlecture-corp/newtil-css#readme",
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"newtil-css": "file:",
|
|
46
|
-
"tslib": "^2.8.1"
|
|
47
|
-
},
|
|
48
|
-
"files": [
|
|
49
|
-
"dist",
|
|
50
|
-
"index.js",
|
|
51
|
-
"index.d.ts"
|
|
52
|
-
]
|
|
53
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "newtil-css",
|
|
3
|
+
"version": "0.2.74",
|
|
4
|
+
"description": "Utility based CSS",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"style": "dist/style.css",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"css",
|
|
11
|
+
"util css"
|
|
12
|
+
],
|
|
13
|
+
"author": "lectureteam",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "rm -rf ./dist && rollup -c",
|
|
17
|
+
"deploy": "npm run build && npm publish",
|
|
18
|
+
"docs:dev": "vitepress dev docs",
|
|
19
|
+
"docs:build": "vitepress build docs",
|
|
20
|
+
"docs:preview": "vitepress preview docs"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
24
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
25
|
+
"postcss": "^8.5.4",
|
|
26
|
+
"postcss-import": "^16.1.0",
|
|
27
|
+
"postcss-url": "^10.1.3",
|
|
28
|
+
"rollup": "^4.9.2",
|
|
29
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
30
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
31
|
+
"vitepress": "^0.1.1"
|
|
32
|
+
},
|
|
33
|
+
"directories": {
|
|
34
|
+
"doc": "docs"
|
|
35
|
+
},
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/newlecture-corp/newtil-css.git"
|
|
39
|
+
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/newlecture-corp/newtil-css/issues"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/newlecture-corp/newtil-css#readme",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"newtil-css": "file:",
|
|
46
|
+
"tslib": "^2.8.1"
|
|
47
|
+
},
|
|
48
|
+
"files": [
|
|
49
|
+
"dist",
|
|
50
|
+
"index.js",
|
|
51
|
+
"index.d.ts"
|
|
52
|
+
]
|
|
53
|
+
}
|