@natoora-libs/core 0.2.19 → 0.2.20-dev-doug-2
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/dist/{TableDesktop-BrpwT-lM.d.cts → TableDesktop-wpKCBVE4.d.cts} +1 -1
- package/dist/{TableDesktop-BrpwT-lM.d.ts → TableDesktop-wpKCBVE4.d.ts} +1 -1
- package/dist/components/index.cjs +2419 -1851
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +101 -8
- package/dist/components/index.d.ts +101 -8
- package/dist/components/index.js +2062 -1490
- package/dist/components/index.js.map +1 -1
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +14 -11
package/dist/utils/index.d.cts
CHANGED
package/dist/utils/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@natoora-libs/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.20-dev-doug-2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -13,6 +13,11 @@
|
|
|
13
13
|
"types": "dist/index.d.ts",
|
|
14
14
|
"module": "dist/index.js",
|
|
15
15
|
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/index.js",
|
|
19
|
+
"require": "./dist/index.cjs"
|
|
20
|
+
},
|
|
16
21
|
"./components": {
|
|
17
22
|
"types": "./dist/components/index.d.ts",
|
|
18
23
|
"import": "./dist/components/index.js",
|
|
@@ -39,7 +44,7 @@
|
|
|
39
44
|
},
|
|
40
45
|
"packageManager": "pnpm@10.14.0",
|
|
41
46
|
"scripts": {
|
|
42
|
-
"dev": "yalc publish && tsup --watch --onSuccess
|
|
47
|
+
"dev": "yalc publish && tsup --watch src --onSuccess \"yalc push --changed\"",
|
|
43
48
|
"build": "tsup",
|
|
44
49
|
"build-storybook": "storybook build",
|
|
45
50
|
"storybook": "storybook dev -p 6006",
|
|
@@ -54,9 +59,9 @@
|
|
|
54
59
|
},
|
|
55
60
|
"dependencies": {
|
|
56
61
|
"classnames": "^2.3.2",
|
|
57
|
-
"mdi-material-ui": "^7.9.3",
|
|
58
62
|
"moment": "^2.29.4",
|
|
59
63
|
"react-dates": "^21.8.0",
|
|
64
|
+
"react-google-places-autocomplete": "4.1.0",
|
|
60
65
|
"react-phone-input-material-ui": "^2.18.1",
|
|
61
66
|
"react-window": "^1.8.6",
|
|
62
67
|
"tss-react": "^4.9.15",
|
|
@@ -66,15 +71,14 @@
|
|
|
66
71
|
"@emotion/react": "^11.14.0",
|
|
67
72
|
"@emotion/styled": "^11.14.0",
|
|
68
73
|
"@mui/icons-material": "^7.3.2",
|
|
69
|
-
"@mui/lab": "^7.0.0-beta.17",
|
|
70
74
|
"@mui/material": "^7.3.2",
|
|
71
75
|
"@mui/x-data-grid": "^8.11.3",
|
|
72
76
|
"@mui/x-date-pickers": "^8.11.3",
|
|
73
|
-
"@storybook/addon-docs": "^10.2.
|
|
74
|
-
"@storybook/addon-links": "^10.2.
|
|
75
|
-
"@storybook/addon-onboarding": "^10.2.
|
|
76
|
-
"@storybook/builder-webpack5": "^10.2.
|
|
77
|
-
"@storybook/react-webpack5": "^10.2.
|
|
77
|
+
"@storybook/addon-docs": "^10.2.10",
|
|
78
|
+
"@storybook/addon-links": "^10.2.10",
|
|
79
|
+
"@storybook/addon-onboarding": "^10.2.10",
|
|
80
|
+
"@storybook/builder-webpack5": "^10.2.10",
|
|
81
|
+
"@storybook/react-webpack5": "^10.2.10",
|
|
78
82
|
"@testing-library/jest-dom": "^6.6.3",
|
|
79
83
|
"@testing-library/react": "16.3.0",
|
|
80
84
|
"@testing-library/user-event": "^14.4.3",
|
|
@@ -93,7 +97,7 @@
|
|
|
93
97
|
"react-hook-form": "^7.71.1",
|
|
94
98
|
"react-query": "^3.19.6",
|
|
95
99
|
"react-router": "^7.12.0",
|
|
96
|
-
"storybook": "^10.2.
|
|
100
|
+
"storybook": "^10.2.10",
|
|
97
101
|
"ts-jest": "^29.4.0",
|
|
98
102
|
"ts-loader": "^9.5.2",
|
|
99
103
|
"tsup": "^8.5.1",
|
|
@@ -104,7 +108,6 @@
|
|
|
104
108
|
"@emotion/react": "^11.14.0",
|
|
105
109
|
"@emotion/styled": "^11.14.0",
|
|
106
110
|
"@mui/icons-material": "^7.3.2",
|
|
107
|
-
"@mui/lab": "^7.0.0-beta.17",
|
|
108
111
|
"@mui/material": "^7.3.2",
|
|
109
112
|
"@mui/x-data-grid": "^8.11.3",
|
|
110
113
|
"@mui/x-date-pickers": "^8.11.3",
|