@northlight/ui 1.0.0
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 -0
- package/README.md +35 -0
- package/dist/es/mediatool-ui-framework.d.mts +1132 -0
- package/dist/es/mediatool-ui-framework.mjs +84224 -0
- package/dist/es/mediatool-ui-framework.mjs.map +1 -0
- package/dist/es/sandbox.d.mts +21 -0
- package/dist/es/sandbox.mjs +3562 -0
- package/dist/es/sandbox.mjs.map +1 -0
- package/dist/ts/types.d.ts +1132 -0
- package/dist/umd/mediatool-ui-framework.js +84634 -0
- package/dist/umd/mediatool-ui-framework.js.map +1 -0
- package/dist/umd/mediatool-ui-framework.min.js +433 -0
- package/dist/umd/mediatool-ui-framework.min.js.map +1 -0
- package/package.json +110 -0
package/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@northlight/ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Mediatool UI library, based on Chakra-ui",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Mediatool",
|
|
7
|
+
"types": "./dist/ts/types.d.ts",
|
|
8
|
+
"main": "./dist/es/mediatool-ui-framework.mjs",
|
|
9
|
+
"exports": {
|
|
10
|
+
"./package.json": "./package.json",
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/es/mediatool-ui-framework.d.mts",
|
|
13
|
+
"import": "./dist/es/mediatool-ui-framework.mjs",
|
|
14
|
+
"require": "./dist/umd/mediatool-ui-framework.js"
|
|
15
|
+
},
|
|
16
|
+
"./sandbox": {
|
|
17
|
+
"types": "./dist/es/sandbox.d.mts",
|
|
18
|
+
"import": "./dist/es/sandbox.mjs"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "rollup --config rollup.config.js",
|
|
26
|
+
"clean": "rm -rf dist",
|
|
27
|
+
"lint": "eslint --ext ts,tsx lib/ sandbox/ test",
|
|
28
|
+
"prepublishOnly": "yarn clean && yarn build",
|
|
29
|
+
"start": "vite",
|
|
30
|
+
"tokens": "node sd-build.js",
|
|
31
|
+
"test": "yarn lint && frontend-tools test"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@chakra-ui/clickable": "^2.0.11",
|
|
35
|
+
"@chakra-ui/react": "^2.4.1",
|
|
36
|
+
"@chakra-ui/system": "^2.3.3",
|
|
37
|
+
"@chakra-ui/theme-tools": "^2.0.13",
|
|
38
|
+
"@dnd-kit/core": "^6.0.5",
|
|
39
|
+
"@dnd-kit/modifiers": "^6.0.0",
|
|
40
|
+
"@dnd-kit/sortable": "^7.0.1",
|
|
41
|
+
"@dnd-kit/utilities": "^3.2.0",
|
|
42
|
+
"@emotion/react": "^11.10.5",
|
|
43
|
+
"@emotion/styled": "^11.10.5",
|
|
44
|
+
"@internationalized/date": "^3.0.0",
|
|
45
|
+
"@northlight/icons": "^1.2.3",
|
|
46
|
+
"@northlight/tokens": "^2.0.2",
|
|
47
|
+
"@react-aria/button": "^3.6.3",
|
|
48
|
+
"@react-aria/calendar": "^3.0.4",
|
|
49
|
+
"@react-aria/checkbox": "^3.7.0",
|
|
50
|
+
"@react-aria/datepicker": "^3.2.0",
|
|
51
|
+
"@react-aria/focus": "^3.10.0",
|
|
52
|
+
"@react-aria/i18n": "^3.6.2",
|
|
53
|
+
"@react-aria/radio": "^3.4.1",
|
|
54
|
+
"@react-aria/utils": "^3.14.2",
|
|
55
|
+
"@react-stately/calendar": "^3.0.4",
|
|
56
|
+
"@react-stately/checkbox": "^3.3.1",
|
|
57
|
+
"@react-stately/datepicker": "^3.2.0",
|
|
58
|
+
"@react-stately/radio": "^3.6.1",
|
|
59
|
+
"@shopify/react-i18n": "^7.4.0",
|
|
60
|
+
"@types/ramda": "^0.28.15",
|
|
61
|
+
"@types/react-avatar-editor": "^13.0.0",
|
|
62
|
+
"@types/react-virtualized-auto-sizer": "^1.0.1",
|
|
63
|
+
"@types/react-window": "^1.8.5",
|
|
64
|
+
"chakra-react-select": "4.4.2",
|
|
65
|
+
"framer-motion": "^4",
|
|
66
|
+
"lodash.debounce": "^4.0.8",
|
|
67
|
+
"ramda": "^0.15.1",
|
|
68
|
+
"react-avatar-editor": "^13.0.0",
|
|
69
|
+
"react-hook-form": "^7.39.4",
|
|
70
|
+
"react-input-mask": "2.0.4",
|
|
71
|
+
"react-virtualized": "^9.22.3",
|
|
72
|
+
"react-virtualized-auto-sizer": "^1.0.7",
|
|
73
|
+
"react-window": "^1.8.8",
|
|
74
|
+
"style-dictionary": "^3.7.1"
|
|
75
|
+
},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@mediatool/frontend-tools": "^0.0.6",
|
|
78
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
|
79
|
+
"@rollup/plugin-image": "^2.1.1",
|
|
80
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
81
|
+
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
82
|
+
"@rollup/plugin-typescript": "^8.3.0",
|
|
83
|
+
"@testing-library/react": "^13.4.0",
|
|
84
|
+
"@testing-library/user-event": "^14.4.3",
|
|
85
|
+
"@types/lodash.debounce": "^4.0.7",
|
|
86
|
+
"@types/react": "^18.0.0",
|
|
87
|
+
"@types/react-dom": "^18.0.5",
|
|
88
|
+
"@types/react-input-mask": "2.0.4",
|
|
89
|
+
"@types/react-router-dom": "^5.3.2",
|
|
90
|
+
"@vitejs/plugin-react-refresh": "^1.3.6",
|
|
91
|
+
"chai": "^4.3.7",
|
|
92
|
+
"esbuild": "^0.14.48",
|
|
93
|
+
"fuse.js": "^6.6.2",
|
|
94
|
+
"react": "^18.1.0",
|
|
95
|
+
"react-dom": "^18.1.0",
|
|
96
|
+
"react-router-dom": "5.2.0",
|
|
97
|
+
"rollup": "^2.59.0",
|
|
98
|
+
"rollup-plugin-dts": "^4.2.2",
|
|
99
|
+
"rollup-plugin-esbuild": "^4.9.1",
|
|
100
|
+
"typescript": "^4.8.4",
|
|
101
|
+
"vite": "^2.6.14",
|
|
102
|
+
"yarn-dedupe": "^0.2.3"
|
|
103
|
+
},
|
|
104
|
+
"peerDependencies": {
|
|
105
|
+
"react": ">=18.0.0",
|
|
106
|
+
"react-dom": ">=18.0.0",
|
|
107
|
+
"react-router-dom": "^5.0.0"
|
|
108
|
+
},
|
|
109
|
+
"gitHead": "4627ec2dc8ededc490946b16d1deb4697b6f0cdb"
|
|
110
|
+
}
|