@woovi/ui 5.0.2 → 5.0.4

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.
@@ -1 +1,3 @@
1
1
  export declare const copyToClipboard: (text: string) => Promise<boolean>;
2
+ export declare const copyClipboardTextNode: (text: string) => boolean;
3
+ export declare const copyClipboardTextArea: (text: string) => boolean;
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@woovi/ui",
3
3
  "description": "Woovi UI component library",
4
- "version": "5.0.2",
4
+ "version": "5.0.4",
5
5
  "author": "Woovi",
6
6
  "dependencies": {
7
+ "@microlink/react-json-view": "^1.27.0",
7
8
  "@mui/icons-material": "5.16.5",
8
9
  "@mui/lab": "5.0.0-alpha.168",
9
10
  "@mui/material": "5.16.5",
@@ -161,21 +162,24 @@
161
162
  "type": "git"
162
163
  },
163
164
  "scripts": {
165
+ "changelo:major": "pnpm n ./scripts/release/changelog.ts --major",
166
+ "changelo:minor": "pnpm n ./scripts/release/changelog.ts --minor",
167
+ "changelo:patch": "pnpm n ./scripts/release/changelog.ts --patch",
164
168
  "check:updates": "bunx npm-check-updates --interactive --format group",
165
169
  "docs:build": "storybook build",
166
170
  "docs:dev": "storybook dev -p 6006",
167
- "lib:dev": "NODE_OPTIONS='--max-old-space-size=8192' DEBUG=rsbuild rslib build --watch",
168
- "lib:prod": "NODE_OPTIONS='--max-old-space-size=8192' rslib build",
169
- "lint": "bunx biome check --write ./src && bunx biome format --write ./src",
170
- "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false",
171
171
  "i18n": "pnpm i18n:scan && pnpm i18n:translate",
172
172
  "i18n:scan": "pnpm n scripts/i18next-parser/i18next-parser.js",
173
173
  "i18n:translate": "pnpm zx scripts/i18next-parser/translateI18n.mjs ./locales/pt-BR.json -no-auto",
174
- "n": "node --experimental-strip-types",
174
+ "lib:dev": "NODE_OPTIONS='--max-old-space-size=8192' DEBUG=rsbuild rslib build --watch",
175
+ "lib:prod": "NODE_OPTIONS='--max-old-space-size=8192' rslib build",
176
+ "lint": "bunx biome check --write ./src && bunx biome format --write ./src",
175
177
  "mergePullRequestRelease": "pnpm n ./scripts/release/mergePullRequestRelease.ts",
176
- "release:major": "pnpm n ./scripts/release/changelog.ts --major",
177
- "release:minor": "pnpm n ./scripts/release/changelog.ts --minor",
178
- "release:patch": "pnpm n ./scripts/release/changelog.ts --patch",
178
+ "n": "node --experimental-strip-types",
179
+ "release:major": "npm version major && git push --follow-tags",
180
+ "release:minor": "npm version minor && git push --follow-tags",
181
+ "release:patch": "npm version patch && git push --follow-tags",
182
+ "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false",
179
183
  "updateRelease": "pnpm n ./scripts/release/updateRelease.ts"
180
184
  },
181
185
  "sideEffects": false,