@frollo/frollo-web-ui 0.0.1
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/README.md +30 -0
- package/cjs/index.js +1317 -0
- package/esm/fw-card.js +46 -0
- package/esm/index.js +1479 -0
- package/frollo-web-ui.esm.js +1520 -0
- package/index.d.ts +34 -0
- package/package.json +101 -0
- package/types/components/fw-card/fw-card.vue.d.ts +28 -0
- package/types/components/fw-card/index.d.ts +2 -0
- package/types/components/index.d.ts +1 -0
- package/types/index.d.ts +2 -0
- package/types/index.esm.d.ts +4 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as vue from 'vue';
|
|
2
|
+
import { Plugin } from 'vue';
|
|
3
|
+
|
|
4
|
+
declare const _default: vue.DefineComponent<{
|
|
5
|
+
/**
|
|
6
|
+
* The header title of the card
|
|
7
|
+
*/
|
|
8
|
+
title: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Title prefix with primary color
|
|
13
|
+
*/
|
|
14
|
+
prefixTitle: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
};
|
|
17
|
+
}, unknown, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
18
|
+
/**
|
|
19
|
+
* The header title of the card
|
|
20
|
+
*/
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Title prefix with primary color
|
|
26
|
+
*/
|
|
27
|
+
prefixTitle: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
};
|
|
30
|
+
}>>, {}>;
|
|
31
|
+
|
|
32
|
+
declare const install: Exclude<Plugin['install'], undefined>;
|
|
33
|
+
|
|
34
|
+
export { _default as FwCard, install as default };
|
package/package.json
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@frollo/frollo-web-ui",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Frollo's UI library for components, utilities and configs",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"import": "./frollo-web-ui.esm.js",
|
|
8
|
+
"require": "./cjs/index.js"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"main": "cjs/index.js",
|
|
12
|
+
"module": "frollo-web-ui.esm.js",
|
|
13
|
+
"types": "index.d.ts",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"serve": "npm run tw-config-export && start-storybook -s ./dist/twconfig-viewer -p 6008",
|
|
16
|
+
"build": "npm run build:lib && npm run build:docs",
|
|
17
|
+
"build:docs": "bin/build-docs.sh",
|
|
18
|
+
"build:lib": "bin/build-lib.sh",
|
|
19
|
+
"deploy": "bin/publish.sh",
|
|
20
|
+
"release": "bin/release.sh",
|
|
21
|
+
"test:unit": "jest --config jest.config.js --coverage --maxWorkers=50%",
|
|
22
|
+
"test:single": "jest --config jest.config.js --coverage --watchAll",
|
|
23
|
+
"lint": "eslint --cache ./ --ext .js,.ts,.vue",
|
|
24
|
+
"lint:fix": "eslint --cache ./ --fix --ext .js,.ts,.vue",
|
|
25
|
+
"tw-config-export": "mkdir -p ./dist && tailwind-config-viewer export ./dist/twconfig-viewer",
|
|
26
|
+
"storybook": "start-storybook -p 6006",
|
|
27
|
+
"build-storybook": "build-storybook"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"vue": "^3.2.31"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@babel/core": "^7.17.5",
|
|
34
|
+
"@geometricpanda/storybook-addon-iframe": "^0.2.1",
|
|
35
|
+
"@rollup/plugin-alias": "^3.1.9",
|
|
36
|
+
"@rollup/plugin-babel": "^5.3.0",
|
|
37
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
|
38
|
+
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
39
|
+
"@rollup/plugin-replace": "^3.1.0",
|
|
40
|
+
"@rollup/plugin-url": "^6.1.0",
|
|
41
|
+
"@storybook/addon-a11y": "^6.4.19",
|
|
42
|
+
"@storybook/addon-actions": "^6.4.19",
|
|
43
|
+
"@storybook/addon-essentials": "^6.4.19",
|
|
44
|
+
"@storybook/addon-links": "^6.4.19",
|
|
45
|
+
"@storybook/addon-postcss": "^2.0.0",
|
|
46
|
+
"@storybook/addon-storysource": "^6.4.19",
|
|
47
|
+
"@storybook/builder-webpack5": "^6.4.19",
|
|
48
|
+
"@storybook/manager-webpack5": "^6.4.19",
|
|
49
|
+
"@storybook/vue3": "^6.4.19",
|
|
50
|
+
"@types/jest": "^27.4.0",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
|
52
|
+
"@vue/cli-plugin-babel": "^5.0.1",
|
|
53
|
+
"@vue/eslint-config-typescript": "^10.0.0",
|
|
54
|
+
"@vue/test-utils": "^2.0.0-rc.17",
|
|
55
|
+
"@vue/vue3-jest": "^27.0.0-alpha.4",
|
|
56
|
+
"autoprefixer": "^10.4.2",
|
|
57
|
+
"babel-core": "^7.0.0-bridge.0",
|
|
58
|
+
"babel-jest": "^27.5.1",
|
|
59
|
+
"babel-loader": "^8.2.3",
|
|
60
|
+
"cross-env": "^7.0.3",
|
|
61
|
+
"css-loader": "^6.6.0",
|
|
62
|
+
"eslint": "^8.9.0",
|
|
63
|
+
"eslint-plugin-vue": "^8.4.1",
|
|
64
|
+
"jest": "^27.5.1",
|
|
65
|
+
"rimraf": "^3.0.2",
|
|
66
|
+
"rollup": "^2.67.2",
|
|
67
|
+
"rollup-plugin-dts": "^4.1.0",
|
|
68
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
69
|
+
"rollup-plugin-typescript2": "^0.31.2",
|
|
70
|
+
"rollup-plugin-vue": "^6.0.0",
|
|
71
|
+
"sass": "^1.49.7",
|
|
72
|
+
"sass-loader": "^12.6.0",
|
|
73
|
+
"tailwind-config-viewer": "^1.6.3",
|
|
74
|
+
"tailwindcss": "^3.0.23",
|
|
75
|
+
"ts-jest": "^27.1.3",
|
|
76
|
+
"typescript": "^4.5.5",
|
|
77
|
+
"vue-loader": "^16.8.3",
|
|
78
|
+
"vue-style-loader": "^4.1.3"
|
|
79
|
+
},
|
|
80
|
+
"homepage": "https://github.com/frollous/frollo-web-ui#readme",
|
|
81
|
+
"repository": {
|
|
82
|
+
"type": "git",
|
|
83
|
+
"url": "git+https://github.com/frollous/frollo-web-ui.git"
|
|
84
|
+
},
|
|
85
|
+
"bugs": {
|
|
86
|
+
"url": "https://github.com/frollous/frollo-web-ui/issues"
|
|
87
|
+
},
|
|
88
|
+
"license": "Apache-2.0",
|
|
89
|
+
"sideEffects": false,
|
|
90
|
+
"publishConfig": {
|
|
91
|
+
"access": "public"
|
|
92
|
+
},
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": ">=16.0.0",
|
|
95
|
+
"npm": ">=8.3.1"
|
|
96
|
+
},
|
|
97
|
+
"keywords": [
|
|
98
|
+
"frollo web ui",
|
|
99
|
+
"vue 3 component library"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
/**
|
|
3
|
+
* The header title of the card
|
|
4
|
+
*/
|
|
5
|
+
title: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Title prefix with primary color
|
|
10
|
+
*/
|
|
11
|
+
prefixTitle: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
};
|
|
14
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
/**
|
|
16
|
+
* The header title of the card
|
|
17
|
+
*/
|
|
18
|
+
title: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Title prefix with primary color
|
|
23
|
+
*/
|
|
24
|
+
prefixTitle: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
};
|
|
27
|
+
}>>, {}>;
|
|
28
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { FwCard } from './fw-card';
|
package/types/index.d.ts
ADDED