@mirantes-micro/foundation-design-system 1.2.204 → 1.2.207

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +2 -3
  2. package/dist/index.js +201 -202
  3. package/package.json +203 -203
package/package.json CHANGED
@@ -1,204 +1,204 @@
1
- {
2
- "name": "@mirantes-micro/foundation-design-system",
3
- "description": "A scalable and customizable design system package featuring a collection of reusable React components, utility functions, and context providers. Built to enforce visual and functional consistency across applications, this package offers accessible, themeable UI elements, shared logic through utility helpers, and context-based providers for managing global state such as themes, modals, and user sessions.",
4
- "version": "1.2.204",
5
- "license": "MIT",
6
- "author": {
7
- "name": "Mirantes Frontend team"
8
- },
9
- "sideEffects": [
10
- "*.css"
11
- ],
12
- "exports": {
13
- ".": {
14
- "import": {
15
- "types": "./dist/index.d.ts",
16
- "default": "./dist/index.js"
17
- },
18
- "require": {
19
- "types": "./dist/index.d.ts",
20
- "default": "./dist/index.js"
21
- }
22
- },
23
- "./styles.css": "./dist/styles.css"
24
- },
25
- "source": "./src/components/fromMirantes/index.ts",
26
- "module": "./dist/index.js",
27
- "types": "./dist/index.d.ts",
28
- "files": [
29
- "dist/*",
30
- "src/components/tiptap-node/blockquote-node/blockquote-node.css",
31
- "src/components/tiptap-node/code-block-node/code-block-node.css",
32
- "src/components/tiptap-node/horizontal-rule-node/horizontal-rule-node.css",
33
- "src/components/tiptap-node/image-node/image-node.css",
34
- "src/components/tiptap-node/heading-node/heading-node.css",
35
- "src/components/tiptap-node/image-upload-node/image-upload-node.css",
36
- "src/components/tiptap-node/list-node/list-node.css",
37
- "src/components/tiptap-node/paragraph-node/paragraph-node.css",
38
- "src/components/tiptap-templates/simple/simple-editor.css",
39
- "src/components/tiptap-ui/color-highlight-button/color-highlight-button.css",
40
- "src/components/tiptap-ui-primitive/badge/badge-colors.css",
41
- "src/components/tiptap-ui-primitive/badge/badge-group.css",
42
- "src/components/tiptap-ui-primitive/badge/badge.css",
43
- "src/components/tiptap-ui-primitive/button/button.css",
44
- "src/components/tiptap-ui-primitive/button/button-group.css",
45
- "src/components/tiptap-ui-primitive/button/button-colors.css",
46
- "src/components/tiptap-ui-primitive/card/card.css",
47
- "src/components/tiptap-ui-primitive/dropdown-menu/dropdown-menu.css",
48
- "src/components/tiptap-ui-primitive/input/input.css",
49
- "src/components/tiptap-ui-primitive/popover/popover.css",
50
- "src/components/tiptap-ui-primitive/separator/separator.css",
51
- "src/components/tiptap-ui-primitive/toolbar/toolbar.css",
52
- "src/components/tiptap-ui-primitive/tooltip/tooltip.css"
53
- ],
54
- "scripts": {
55
- "dev": "webpack serve --mode development",
56
- "build": "webpack --mode production",
57
- "build:webpack": "tsup src/components/fromMirantes/index.ts --format cjs --minify",
58
- "release": "pnpm build:webpack && npm publish",
59
- "build:css": "npx tailwindcss -i ./src/styles/globals.css -o ./dist/styles.css --minify"
60
- },
61
- "devDependencies": {
62
- "@babel/core": "7.26.0",
63
- "@babel/preset-env": "7.26.0",
64
- "@babel/preset-react": "7.26.3",
65
- "@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
66
- "@tailwindcss/postcss7-compat": "2.2.17",
67
- "@tanstack/react-query": "5.76.1",
68
- "@types/country-data": "0.0.5",
69
- "@types/crypto-js": "4.2.2",
70
- "@types/js-cookie": "3.0.6",
71
- "@types/lodash.throttle": "^4.1.9",
72
- "@types/node": "22.10.5",
73
- "@types/react": "19.1.4",
74
- "@types/react-detect-offline": "2.4.5",
75
- "@types/react-dom": "19.1.5",
76
- "@types/react-syntax-highlighter": "15.5.13",
77
- "@types/uuid": "10.0.0",
78
- "babel-loader": "9.2.1",
79
- "baseline-browser-mapping": "^2.9.19",
80
- "css-loader": "6.8.1",
81
- "esbuild-sass-plugin": "3.3.1",
82
- "eslint": "9.17.0",
83
- "eslint-plugin-react": "7.37.3",
84
- "file-loader": "6.2.0",
85
- "graphql-tag": "2.12.6",
86
- "html-webpack-plugin": "5.5.3",
87
- "postcss": "8.4.39",
88
- "postcss-import": "16.1.0",
89
- "postcss-important": "0.3.0",
90
- "postcss-loader": "7.3.3",
91
- "postcss-nesting": "12.1.5",
92
- "prettier": "3.4.2",
93
- "react-refresh": "0.16.0",
94
- "sass": "^1.94.2",
95
- "sass-embedded": "^1.93.3",
96
- "sass-loader": "^16.0.6",
97
- "style-loader": "3.3.3",
98
- "tailwind-merge": "2.6.0",
99
- "tailwindcss": "3.4.4",
100
- "tailwindcss-animate": "1.0.7",
101
- "ts-loader": "9.5.1",
102
- "tsup": "8.3.5",
103
- "typescript": "5.7.2",
104
- "webpack": "5.97.1",
105
- "webpack-cli": "6.0.1",
106
- "webpack-dev-server": "5.2.0"
107
- },
108
- "dependencies": {
109
- "@emotion/is-prop-valid": "^1.4.0",
110
- "@floating-ui/react": "^0.27.16",
111
- "@hookform/resolvers": "^5.2.2",
112
- "@mirantes-micro/billing-v2": "0.1.49",
113
- "@mirantes-micro/notifications-v2": "0.0.42",
114
- "@mirantes-micro/widgets": "0.0.138",
115
- "@radix-ui/react-avatar": "^1.1.10",
116
- "@radix-ui/react-checkbox": "^1.3.3",
117
- "@radix-ui/react-dialog": "^1.1.15",
118
- "@radix-ui/react-dropdown-menu": "^2.1.16",
119
- "@radix-ui/react-label": "^2.1.7",
120
- "@radix-ui/react-popover": "1.1.15",
121
- "@radix-ui/react-radio-group": "^1.3.8",
122
- "@radix-ui/react-scroll-area": "^1.2.10",
123
- "@radix-ui/react-select": "^2.2.6",
124
- "@radix-ui/react-slot": "^1.2.3",
125
- "@radix-ui/react-tooltip": "^1.2.8",
126
- "@tanstack/react-query-devtools": "5.76.1",
127
- "@tiptap/core": "^3.10.7",
128
- "@tiptap/extension-highlight": "^3.13.0",
129
- "@tiptap/extension-horizontal-rule": "^3.13.0",
130
- "@tiptap/extension-image": "^3.13.0",
131
- "@tiptap/extension-list": "^3.13.0",
132
- "@tiptap/extension-mention": "^3.10.7",
133
- "@tiptap/extension-placeholder": "^3.10.7",
134
- "@tiptap/extension-subscript": "^3.13.0",
135
- "@tiptap/extension-superscript": "^3.13.0",
136
- "@tiptap/extension-text-align": "^3.13.0",
137
- "@tiptap/extension-typography": "^3.13.0",
138
- "@tiptap/extensions": "^3.13.0",
139
- "@tiptap/pm": "^3.13.0",
140
- "@tiptap/react": "^3.10.7",
141
- "@tiptap/starter-kit": "^3.10.7",
142
- "@tiptap/suggestion": "^3.10.7",
143
- "@uidotdev/usehooks": "2.4.1",
144
- "axios": "1.11.0",
145
- "class-variance-authority": "0.7.1",
146
- "clsx": "2.1.1",
147
- "cmdk": "^1.1.1",
148
- "cookies-next": "^5.1.0",
149
- "country-data": "0.0.31",
150
- "crypto-js": "4.2.0",
151
- "currencies.json": "1.1.0",
152
- "date-fns": "^4.1.0",
153
- "emoji-mart": "5.6.0",
154
- "emoji-picker-react": "4.13.3",
155
- "framer-motion": "12.19.2",
156
- "global-currencies": "1.0.3",
157
- "graphql": "16.11.0",
158
- "graphql-request": "^7.3.1",
159
- "html2canvas": "1.4.1",
160
- "isomorphic-dompurify": "^2.34.0",
161
- "js-cookie": "3.0.5",
162
- "jspdf": "3.0.3",
163
- "link-preview-js": "^3.1.0",
164
- "lodash.throttle": "^4.1.1",
165
- "lucide-react": "0.510.0",
166
- "marked": "^17.0.0",
167
- "motion": "^12.23.24",
168
- "next": "15.3.2",
169
- "ogp-parser": "0.8.1",
170
- "pdf-lib": "^1.17.1",
171
- "pdfjs-dist": "^5.4.449",
172
- "process": "0.11.10",
173
- "react": "19.1.0",
174
- "react-day-picker": "^9.11.1",
175
- "react-detect-offline": "2.4.5",
176
- "react-dom": "19.1.0",
177
- "react-dropzone": "14.3.8",
178
- "react-hook-form": "^7.65.0",
179
- "react-hotkeys-hook": "^5.2.1",
180
- "react-infinite-scroll-hook": "6.0.1",
181
- "react-markdown": "^10.1.0",
182
- "react-mentions-ts": "5.4.7",
183
- "react-router-dom": "7.6.0",
184
- "react-syntax-highlighter": "16.1.0",
185
- "react-toastify": "^11.0.5",
186
- "remark-gfm": "^4.0.1",
187
- "shiki": "^3.15.0",
188
- "slugify": "1.6.6",
189
- "socket.io-client": "4.8.1",
190
- "swiper": "11.2.10",
191
- "tailwind-scrollbar-hide": "4.0.0",
192
- "tippy.js": "^6.3.7",
193
- "tw-animate-css": "1.2.9",
194
- "uuid": "11.1.0",
195
- "vaul": "^1.1.2",
196
- "yup": "^1.7.1",
197
- "zustand": "^5.0.8"
198
- },
199
- "peerDependencies": {
200
- "tailwind-scrollbar-hide": "^4.0.0",
201
- "tailwindcss": "^3.0.0",
202
- "tailwindcss-animate": "^1.0.0"
203
- }
1
+ {
2
+ "name": "@mirantes-micro/foundation-design-system",
3
+ "description": "A scalable and customizable design system package featuring a collection of reusable React components, utility functions, and context providers. Built to enforce visual and functional consistency across applications, this package offers accessible, themeable UI elements, shared logic through utility helpers, and context-based providers for managing global state such as themes, modals, and user sessions.",
4
+ "version": "1.2.207",
5
+ "license": "MIT",
6
+ "author": {
7
+ "name": "Mirantes Frontend team"
8
+ },
9
+ "sideEffects": [
10
+ "*.css"
11
+ ],
12
+ "exports": {
13
+ ".": {
14
+ "import": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ },
18
+ "require": {
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/index.js"
21
+ }
22
+ },
23
+ "./styles.css": "./dist/styles.css"
24
+ },
25
+ "source": "./src/components/fromMirantes/index.ts",
26
+ "module": "./dist/index.js",
27
+ "types": "./dist/index.d.ts",
28
+ "files": [
29
+ "dist/*",
30
+ "src/components/tiptap-node/blockquote-node/blockquote-node.css",
31
+ "src/components/tiptap-node/code-block-node/code-block-node.css",
32
+ "src/components/tiptap-node/horizontal-rule-node/horizontal-rule-node.css",
33
+ "src/components/tiptap-node/image-node/image-node.css",
34
+ "src/components/tiptap-node/heading-node/heading-node.css",
35
+ "src/components/tiptap-node/image-upload-node/image-upload-node.css",
36
+ "src/components/tiptap-node/list-node/list-node.css",
37
+ "src/components/tiptap-node/paragraph-node/paragraph-node.css",
38
+ "src/components/tiptap-templates/simple/simple-editor.css",
39
+ "src/components/tiptap-ui/color-highlight-button/color-highlight-button.css",
40
+ "src/components/tiptap-ui-primitive/badge/badge-colors.css",
41
+ "src/components/tiptap-ui-primitive/badge/badge-group.css",
42
+ "src/components/tiptap-ui-primitive/badge/badge.css",
43
+ "src/components/tiptap-ui-primitive/button/button.css",
44
+ "src/components/tiptap-ui-primitive/button/button-group.css",
45
+ "src/components/tiptap-ui-primitive/button/button-colors.css",
46
+ "src/components/tiptap-ui-primitive/card/card.css",
47
+ "src/components/tiptap-ui-primitive/dropdown-menu/dropdown-menu.css",
48
+ "src/components/tiptap-ui-primitive/input/input.css",
49
+ "src/components/tiptap-ui-primitive/popover/popover.css",
50
+ "src/components/tiptap-ui-primitive/separator/separator.css",
51
+ "src/components/tiptap-ui-primitive/toolbar/toolbar.css",
52
+ "src/components/tiptap-ui-primitive/tooltip/tooltip.css"
53
+ ],
54
+ "scripts": {
55
+ "dev": "webpack serve --mode development",
56
+ "build": "webpack --mode production",
57
+ "build:webpack": "tsup src/components/fromMirantes/index.ts --format cjs --minify",
58
+ "release": "pnpm build:webpack && npm publish",
59
+ "build:css": "npx tailwindcss -i ./src/styles/globals.css -o ./dist/styles.css --minify"
60
+ },
61
+ "devDependencies": {
62
+ "@babel/core": "7.26.0",
63
+ "@babel/preset-env": "7.26.0",
64
+ "@babel/preset-react": "7.26.3",
65
+ "@pmmmwh/react-refresh-webpack-plugin": "0.5.15",
66
+ "@tailwindcss/postcss7-compat": "2.2.17",
67
+ "@tanstack/react-query": "5.76.1",
68
+ "@types/country-data": "0.0.5",
69
+ "@types/crypto-js": "4.2.2",
70
+ "@types/js-cookie": "3.0.6",
71
+ "@types/lodash.throttle": "^4.1.9",
72
+ "@types/node": "22.10.5",
73
+ "@types/react": "19.1.4",
74
+ "@types/react-detect-offline": "2.4.5",
75
+ "@types/react-dom": "19.1.5",
76
+ "@types/react-syntax-highlighter": "15.5.13",
77
+ "@types/uuid": "10.0.0",
78
+ "babel-loader": "9.2.1",
79
+ "baseline-browser-mapping": "^2.9.19",
80
+ "css-loader": "6.8.1",
81
+ "esbuild-sass-plugin": "3.3.1",
82
+ "eslint": "9.17.0",
83
+ "eslint-plugin-react": "7.37.3",
84
+ "file-loader": "6.2.0",
85
+ "graphql-tag": "2.12.6",
86
+ "html-webpack-plugin": "5.5.3",
87
+ "postcss": "8.4.39",
88
+ "postcss-import": "16.1.0",
89
+ "postcss-important": "0.3.0",
90
+ "postcss-loader": "7.3.3",
91
+ "postcss-nesting": "12.1.5",
92
+ "prettier": "3.4.2",
93
+ "react-refresh": "0.16.0",
94
+ "sass": "^1.94.2",
95
+ "sass-embedded": "^1.93.3",
96
+ "sass-loader": "^16.0.6",
97
+ "style-loader": "3.3.3",
98
+ "tailwind-merge": "2.6.0",
99
+ "tailwindcss": "3.4.4",
100
+ "tailwindcss-animate": "1.0.7",
101
+ "ts-loader": "9.5.1",
102
+ "tsup": "8.3.5",
103
+ "typescript": "5.7.2",
104
+ "webpack": "5.97.1",
105
+ "webpack-cli": "6.0.1",
106
+ "webpack-dev-server": "5.2.0"
107
+ },
108
+ "dependencies": {
109
+ "@emotion/is-prop-valid": "^1.4.0",
110
+ "@floating-ui/react": "^0.27.16",
111
+ "@hookform/resolvers": "^5.2.2",
112
+ "@mirantes-micro/billing-v2": "0.1.50",
113
+ "@mirantes-micro/notifications-v2": "0.0.45",
114
+ "@mirantes-micro/widgets": "0.0.161",
115
+ "@radix-ui/react-avatar": "^1.1.10",
116
+ "@radix-ui/react-checkbox": "^1.3.3",
117
+ "@radix-ui/react-dialog": "^1.1.15",
118
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
119
+ "@radix-ui/react-label": "^2.1.7",
120
+ "@radix-ui/react-popover": "1.1.15",
121
+ "@radix-ui/react-radio-group": "^1.3.8",
122
+ "@radix-ui/react-scroll-area": "^1.2.10",
123
+ "@radix-ui/react-select": "^2.2.6",
124
+ "@radix-ui/react-slot": "^1.2.3",
125
+ "@radix-ui/react-tooltip": "^1.2.8",
126
+ "@tanstack/react-query-devtools": "5.76.1",
127
+ "@tiptap/core": "^3.10.7",
128
+ "@tiptap/extension-highlight": "^3.13.0",
129
+ "@tiptap/extension-horizontal-rule": "^3.13.0",
130
+ "@tiptap/extension-image": "^3.13.0",
131
+ "@tiptap/extension-list": "^3.13.0",
132
+ "@tiptap/extension-mention": "^3.10.7",
133
+ "@tiptap/extension-placeholder": "^3.10.7",
134
+ "@tiptap/extension-subscript": "^3.13.0",
135
+ "@tiptap/extension-superscript": "^3.13.0",
136
+ "@tiptap/extension-text-align": "^3.13.0",
137
+ "@tiptap/extension-typography": "^3.13.0",
138
+ "@tiptap/extensions": "^3.13.0",
139
+ "@tiptap/pm": "^3.13.0",
140
+ "@tiptap/react": "^3.10.7",
141
+ "@tiptap/starter-kit": "^3.10.7",
142
+ "@tiptap/suggestion": "^3.10.7",
143
+ "@uidotdev/usehooks": "2.4.1",
144
+ "axios": "1.11.0",
145
+ "class-variance-authority": "0.7.1",
146
+ "clsx": "2.1.1",
147
+ "cmdk": "^1.1.1",
148
+ "cookies-next": "^5.1.0",
149
+ "country-data": "0.0.31",
150
+ "crypto-js": "4.2.0",
151
+ "currencies.json": "1.1.0",
152
+ "date-fns": "^4.1.0",
153
+ "emoji-mart": "5.6.0",
154
+ "emoji-picker-react": "4.13.3",
155
+ "framer-motion": "12.19.2",
156
+ "global-currencies": "1.0.3",
157
+ "graphql": "16.11.0",
158
+ "graphql-request": "^7.3.1",
159
+ "html2canvas": "1.4.1",
160
+ "isomorphic-dompurify": "^2.34.0",
161
+ "js-cookie": "3.0.5",
162
+ "jspdf": "3.0.3",
163
+ "link-preview-js": "^3.1.0",
164
+ "lodash.throttle": "^4.1.1",
165
+ "lucide-react": "0.510.0",
166
+ "marked": "^17.0.0",
167
+ "motion": "^12.23.24",
168
+ "next": "15.3.2",
169
+ "ogp-parser": "0.8.1",
170
+ "pdf-lib": "^1.17.1",
171
+ "pdfjs-dist": "^5.4.449",
172
+ "process": "0.11.10",
173
+ "react": "19.1.0",
174
+ "react-day-picker": "^9.11.1",
175
+ "react-detect-offline": "2.4.5",
176
+ "react-dom": "19.1.0",
177
+ "react-dropzone": "14.3.8",
178
+ "react-hook-form": "^7.65.0",
179
+ "react-hotkeys-hook": "^5.2.1",
180
+ "react-infinite-scroll-hook": "6.0.1",
181
+ "react-markdown": "^10.1.0",
182
+ "react-mentions-ts": "5.4.7",
183
+ "react-router-dom": "7.6.0",
184
+ "react-syntax-highlighter": "16.1.0",
185
+ "react-toastify": "^11.0.5",
186
+ "remark-gfm": "^4.0.1",
187
+ "shiki": "^3.15.0",
188
+ "slugify": "1.6.6",
189
+ "socket.io-client": "4.8.1",
190
+ "swiper": "11.2.10",
191
+ "tailwind-scrollbar-hide": "4.0.0",
192
+ "tippy.js": "^6.3.7",
193
+ "tw-animate-css": "1.2.9",
194
+ "uuid": "11.1.0",
195
+ "vaul": "^1.1.2",
196
+ "yup": "^1.7.1",
197
+ "zustand": "^5.0.8"
198
+ },
199
+ "peerDependencies": {
200
+ "tailwind-scrollbar-hide": "^4.0.0",
201
+ "tailwindcss": "^3.0.0",
202
+ "tailwindcss-animate": "^1.0.0"
203
+ }
204
204
  }