@vkzstudio/muza-ui 1.0.47 → 1.0.48

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 (86) hide show
  1. package/dist/components/Accordion/Accordion.d.ts +112 -18
  2. package/dist/components/Accordion/Accordion.d.ts.map +1 -1
  3. package/dist/components/Accordion/Accordion.js +208 -110
  4. package/dist/components/Accordion/Accordion.stories.d.ts +3 -0
  5. package/dist/components/Accordion/Accordion.stories.d.ts.map +1 -1
  6. package/dist/components/Alert/Alert.js +4 -4
  7. package/dist/components/ButtonArrow/ButtonArrow.stories.d.ts.map +1 -1
  8. package/dist/components/CardCheckboxAmount/CardCheckboxAmount.d.ts +111 -0
  9. package/dist/components/CardCheckboxAmount/CardCheckboxAmount.d.ts.map +1 -0
  10. package/dist/components/CardCheckboxAmount/CardCheckboxAmount.js +115 -0
  11. package/dist/components/CardCheckboxAmount/CardCheckboxAmount.stories.d.ts +13 -0
  12. package/dist/components/CardCheckboxAmount/CardCheckboxAmount.stories.d.ts.map +1 -0
  13. package/dist/components/CardCheckboxAmount/index.d.ts +2 -0
  14. package/dist/components/CardCheckboxAmount/index.d.ts.map +1 -0
  15. package/dist/components/Chip/Chip.d.ts.map +1 -1
  16. package/dist/components/Chip/Chip.js +6 -2
  17. package/dist/components/Chip/Chip.stories.d.ts.map +1 -1
  18. package/dist/components/DatePicker/DatePicker.d.ts.map +1 -1
  19. package/dist/components/DatePicker/DatePicker.js +10 -2
  20. package/dist/components/DatePicker/DatePicker.stories.d.ts.map +1 -1
  21. package/dist/components/DatePickerButton/DatePickerButton.d.ts +97 -0
  22. package/dist/components/DatePickerButton/DatePickerButton.d.ts.map +1 -0
  23. package/dist/components/DatePickerButton/DatePickerButton.js +329 -0
  24. package/dist/components/DatePickerButton/DatePickerButton.stories.d.ts +15 -0
  25. package/dist/components/DatePickerButton/DatePickerButton.stories.d.ts.map +1 -0
  26. package/dist/components/DatePickerButton/index.d.ts +2 -0
  27. package/dist/components/DatePickerButton/index.d.ts.map +1 -0
  28. package/dist/components/Dialog/Dialog.js +1 -1
  29. package/dist/components/Icons/CustomLogos.d.ts +18 -2
  30. package/dist/components/Icons/CustomLogos.d.ts.map +1 -1
  31. package/dist/components/Icons/CustomLogos.js +103 -97
  32. package/dist/components/Icons/LogosAndBadges.stories.d.ts +1 -0
  33. package/dist/components/Icons/LogosAndBadges.stories.d.ts.map +1 -1
  34. package/dist/components/LanguageSwitcher/LanguageSwitcher.d.ts +26 -1
  35. package/dist/components/LanguageSwitcher/LanguageSwitcher.d.ts.map +1 -1
  36. package/dist/components/LanguageSwitcher/LanguageSwitcher.js +86 -44
  37. package/dist/components/LanguageSwitcher/LanguageSwitcher.stories.d.ts +1 -0
  38. package/dist/components/LanguageSwitcher/LanguageSwitcher.stories.d.ts.map +1 -1
  39. package/dist/components/Popover/Popover.d.ts +8 -1
  40. package/dist/components/Popover/Popover.d.ts.map +1 -1
  41. package/dist/components/Popover/Popover.js +7 -6
  42. package/dist/components/SegmentedControl/SegmentedControl.stories.d.ts.map +1 -1
  43. package/dist/components/SegmentedIconControl/SegmentedIconControl.stories.d.ts.map +1 -1
  44. package/dist/components/TextEditor/TextEditor.d.ts.map +1 -1
  45. package/dist/components/TextEditor/TextEditor.js +12 -9
  46. package/dist/components/TextEditor/TextEditor.stories.d.ts.map +1 -1
  47. package/dist/components/Toggle/Toggle.stories.d.ts.map +1 -1
  48. package/dist/components/ToggleCheckButton/ToggleCheckButton.stories.d.ts.map +1 -1
  49. package/dist/components/ToggleGroup/ToggleGroup.stories.d.ts.map +1 -1
  50. package/dist/components/Typography/Typography.d.ts +10 -1
  51. package/dist/components/Typography/Typography.d.ts.map +1 -1
  52. package/dist/components/Typography/Typography.js +82 -67
  53. package/dist/components/Typography/Typography.stories.d.ts +1 -0
  54. package/dist/components/Typography/Typography.stories.d.ts.map +1 -1
  55. package/dist/components/TypographyLink/TypographyLink.d.ts +72 -0
  56. package/dist/components/TypographyLink/TypographyLink.d.ts.map +1 -0
  57. package/dist/components/TypographyLink/TypographyLink.js +103 -0
  58. package/dist/components/TypographyLink/TypographyLink.stories.d.ts +12 -0
  59. package/dist/components/TypographyLink/TypographyLink.stories.d.ts.map +1 -0
  60. package/dist/components/TypographyLink/index.d.ts +2 -0
  61. package/dist/components/TypographyLink/index.d.ts.map +1 -0
  62. package/dist/components/UniversalFooter/UniversalFooter.d.ts +198 -0
  63. package/dist/components/UniversalFooter/UniversalFooter.d.ts.map +1 -0
  64. package/dist/components/UniversalFooter/UniversalFooter.js +401 -0
  65. package/dist/components/UniversalFooter/UniversalFooter.stories.d.ts +19 -0
  66. package/dist/components/UniversalFooter/UniversalFooter.stories.d.ts.map +1 -0
  67. package/dist/components/UniversalFooter/index.d.ts +2 -0
  68. package/dist/components/UniversalFooter/index.d.ts.map +1 -0
  69. package/dist/components/index.d.ts +4 -0
  70. package/dist/components/index.d.ts.map +1 -1
  71. package/dist/index.js +353 -322
  72. package/dist/muza-ui.css +1 -1
  73. package/dist/styles/primitives.css +2 -0
  74. package/dist/styles/token-colors.css +51 -43
  75. package/dist/styles/token-sizes.css +40 -0
  76. package/dist/translations/index.d.ts +1 -1
  77. package/dist/translations/index.d.ts.map +1 -1
  78. package/dist/translations/locales/cs.d.ts.map +1 -1
  79. package/dist/translations/locales/cs.js +6 -1
  80. package/dist/translations/locales/en.d.ts.map +1 -1
  81. package/dist/translations/locales/en.js +6 -1
  82. package/dist/translations/locales/sk.d.ts.map +1 -1
  83. package/dist/translations/locales/sk.js +6 -1
  84. package/dist/translations/types.d.ts +12 -0
  85. package/dist/translations/types.d.ts.map +1 -1
  86. package/package.json +171 -169
package/package.json CHANGED
@@ -1,169 +1,171 @@
1
- {
2
- "name": "@vkzstudio/muza-ui",
3
- "version": "1.0.47",
4
- "description": "React component library built with Vite, shadcn/ui, and Tailwind CSS",
5
- "type": "module",
6
- "main": "./dist/index.js",
7
- "module": "./dist/index.js",
8
- "types": "./dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "import": "./dist/index.js",
12
- "types": "./dist/index.d.ts"
13
- },
14
- "./styles": "./dist/muza-ui.css",
15
- "./components/*": {
16
- "import": "./dist/components/*/index.js",
17
- "types": "./dist/components/*/index.d.ts"
18
- },
19
- "./utils": {
20
- "import": "./dist/utils/index.js",
21
- "types": "./dist/utils/index.d.ts"
22
- },
23
- "./utils/*": {
24
- "import": "./dist/utils/*.js",
25
- "types": "./dist/utils/*.d.ts"
26
- },
27
- "./styles/*": "./dist/styles/*",
28
- "./globals.css": "./dist/globals.css",
29
- "./3rd-parties.css": "./dist/styles/3rd-parties.css",
30
- "./models/*": "./dist/models/*"
31
- },
32
- "sideEffects": [
33
- "**/*.css"
34
- ],
35
- "files": [
36
- "dist",
37
- "llms-full.md",
38
- "llms.txt"
39
- ],
40
- "scripts": {
41
- "dev": "storybook dev -p 6006",
42
- "build": "tsc && vite build",
43
- "build-storybook": "storybook build",
44
- "preview": "vite preview",
45
- "typecheck": "tsc --noEmit",
46
- "lint": "eslint . --ext ts,tsx,js,jsx,mjs,cjs --report-unused-disable-directives --max-warnings 0",
47
- "lint:fix": "eslint . --ext ts,tsx,js,jsx,mjs,cjs --fix",
48
- "add-component": "chmod +x scripts/add-component.sh && ./scripts/add-component.sh",
49
- "add-component:win": "powershell -ExecutionPolicy Bypass -File scripts/add-component.ps1",
50
- "tokens:import": "node scripts/import-tokens.mjs",
51
- "format": "prettier --write .",
52
- "chromatic": "npx chromatic --project-token=chpt_23ce248b589dbff",
53
- "local-publish": "npm run build && npx shx rm -rf ../internal-benefits-frontend/node_modules/@vkzstudio/muza-ui/dist && npx shx cp -r dist ../internal-benefits-frontend/node_modules/@vkzstudio/muza-ui/dist && npx shx cp llms.txt llms-full.md ../internal-benefits-frontend/node_modules/@vkzstudio/muza-ui/"
54
- },
55
- "dependencies": {
56
- "react-day-picker": "^9.9.0",
57
- "react-imask": "^7.6.1"
58
- },
59
- "peerDependencies": {
60
- "@radix-ui/react-accordion": "^1.2.12",
61
- "@radix-ui/react-avatar": "^1.1.10",
62
- "@radix-ui/react-checkbox": "^1.3.3",
63
- "@radix-ui/react-dialog": "^1.1.15",
64
- "@radix-ui/react-dropdown-menu": "^2.1.16",
65
- "@radix-ui/react-popover": "^1.1.15",
66
- "@radix-ui/react-progress": "^1.1.8",
67
- "@radix-ui/react-radio-group": "^1.3.8",
68
- "@radix-ui/react-slider": "^1.3.6",
69
- "@radix-ui/react-slot": "^1.2.3",
70
- "@radix-ui/react-switch": "^1.2.6",
71
- "@radix-ui/react-toggle": "^1.1.10",
72
- "@radix-ui/react-toggle-group": "^1.1.11",
73
- "@radix-ui/react-tooltip": "^1.2.8",
74
- "@react-three/drei": "^8.20.2",
75
- "@react-three/fiber": "^8.18.0",
76
- "@solar-icons/react-perf": "^1.0.0",
77
- "@storybook/addon-designs": "^10.0.2",
78
- "@tiptap/extension-character-count": "^2.22.0",
79
- "@tiptap/extension-link": "^2.22.0",
80
- "@tiptap/extension-mention": "^2.22.0",
81
- "@tiptap/extension-placeholder": "^2.22.0",
82
- "@tiptap/pm": "^2.22.0",
83
- "@tiptap/react": "^2.22.0",
84
- "@tiptap/starter-kit": "^2.22.0",
85
- "@tiptap/suggestion": "^2.22.0",
86
- "class-variance-authority": "^0.7.0",
87
- "clsx": "^2.1.0",
88
- "color": "^5.0.2",
89
- "date-fns": "^4.1.0",
90
- "embla-carousel-react": "^8.6.0",
91
- "motion": "^12.29.0",
92
- "next-themes": "^0.4.6",
93
- "photoswipe": "^5.4.4",
94
- "react": "^18.3.1",
95
- "react-dom": "^18.3.1",
96
- "react-dropzone": "^14.3.8",
97
- "react-photoswipe-gallery": "^4.0.0",
98
- "sonner": "^2.0.7",
99
- "tailwind-merge": "^3.3.1",
100
- "three": "^0.151.3",
101
- "tw-animate-css": "^1.3.7"
102
- },
103
- "peerDependenciesMeta": {
104
- "next-themes": {
105
- "optional": true
106
- },
107
- "@tiptap/extension-mention": {
108
- "optional": true
109
- },
110
- "@tiptap/suggestion": {
111
- "optional": true
112
- }
113
- },
114
- "devDependencies": {
115
- "@storybook/addon-designs": "^10.0.2",
116
- "@storybook/addon-docs": "^9.1.8",
117
- "@storybook/addon-links": "^9.1.8",
118
- "@storybook/addon-onboarding": "^9.1.8",
119
- "@storybook/react-vite": "^9.1.8",
120
- "@storybook/testing-library": "^0.2.2",
121
- "@tailwindcss/vite": "^4.1.11",
122
- "@tiptap/extension-character-count": "^2.27.2",
123
- "@tiptap/extension-mention": "^2.27.2",
124
- "@tiptap/suggestion": "^2.27.2",
125
- "@trivago/prettier-plugin-sort-imports": "^5.2.2",
126
- "@types/node": "^25.5.0",
127
- "@types/react": "^18.3.23",
128
- "@types/react-dom": "^18.3.7",
129
- "@types/three": "^0.180.0",
130
- "@typescript-eslint/eslint-plugin": "^8.39.0",
131
- "@typescript-eslint/parser": "^8.39.0",
132
- "@vitejs/plugin-react": "^4.2.1",
133
- "chromatic": "^13.3.3",
134
- "eslint": "^9.33.0",
135
- "eslint-config-prettier": "^10.1.8",
136
- "eslint-plugin-prettier": "^5.5.4",
137
- "eslint-plugin-react": "^7.37.5",
138
- "eslint-plugin-react-hooks": "^5.2.0",
139
- "eslint-plugin-react-refresh": "^0.4.5",
140
- "eslint-plugin-storybook": "^9.1.8",
141
- "prettier": "3.6.2",
142
- "prettier-plugin-tailwindcss": "^0.6.14",
143
- "react-imask": "^7.6.1",
144
- "storybook": "^9.1.8",
145
- "tailwindcss": "^4.1.11",
146
- "tippy.js": "^6.3.7",
147
- "typescript": "^5.2.2",
148
- "typescript-eslint": "^8.39.1",
149
- "vite": "^6.3.5",
150
- "vite-plugin-dts": "^4.5.4",
151
- "vite-plugin-static-copy": "^3.1.2",
152
- "vite-tsconfig-paths": "^5.1.4"
153
- },
154
- "engines": {
155
- "node": ">=22.0.0"
156
- },
157
- "keywords": [
158
- "react",
159
- "components",
160
- "ui",
161
- "tailwind",
162
- "shadcn",
163
- "vite",
164
- "storybook"
165
- ],
166
- "author": "",
167
- "license": "MIT",
168
- "packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
169
- }
1
+ {
2
+ "name": "@vkzstudio/muza-ui",
3
+ "version": "1.0.48",
4
+ "description": "React component library built with Vite, shadcn/ui, and Tailwind CSS",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ },
14
+ "./styles": "./dist/muza-ui.css",
15
+ "./components/*": {
16
+ "import": "./dist/components/*/index.js",
17
+ "types": "./dist/components/*/index.d.ts"
18
+ },
19
+ "./utils": {
20
+ "import": "./dist/utils/index.js",
21
+ "types": "./dist/utils/index.d.ts"
22
+ },
23
+ "./utils/*": {
24
+ "import": "./dist/utils/*.js",
25
+ "types": "./dist/utils/*.d.ts"
26
+ },
27
+ "./styles/*": "./dist/styles/*",
28
+ "./globals.css": "./dist/globals.css",
29
+ "./3rd-parties.css": "./dist/styles/3rd-parties.css",
30
+ "./models/*": "./dist/models/*"
31
+ },
32
+ "sideEffects": [
33
+ "**/*.css"
34
+ ],
35
+ "files": [
36
+ "dist",
37
+ "llms-full.md",
38
+ "llms.txt"
39
+ ],
40
+ "scripts": {
41
+ "dev": "storybook dev -p 6006",
42
+ "build": "tsc && vite build",
43
+ "build-storybook": "storybook build",
44
+ "preview": "vite preview",
45
+ "typecheck": "tsc --noEmit",
46
+ "lint": "eslint . --ext ts,tsx,js,jsx,mjs,cjs --report-unused-disable-directives --max-warnings 0",
47
+ "lint:fix": "eslint . --ext ts,tsx,js,jsx,mjs,cjs --fix",
48
+ "add-component": "chmod +x scripts/add-component.sh && ./scripts/add-component.sh",
49
+ "add-component:win": "powershell -ExecutionPolicy Bypass -File scripts/add-component.ps1",
50
+ "tokens:import": "node scripts/import-tokens.mjs",
51
+ "format": "prettier --write .",
52
+ "chromatic": "npx chromatic --project-token=chpt_23ce248b589dbff",
53
+ "local-publish": "npm run build && npx shx rm -rf ../internal-benefits-frontend/node_modules/@vkzstudio/muza-ui/dist && npx shx cp -r dist ../internal-benefits-frontend/node_modules/@vkzstudio/muza-ui/dist && npx shx cp llms.txt llms-full.md ../internal-benefits-frontend/node_modules/@vkzstudio/muza-ui/"
54
+ },
55
+ "dependencies": {
56
+ "react-day-picker": "^9.9.0",
57
+ "react-imask": "^7.6.1"
58
+ },
59
+ "peerDependencies": {
60
+ "@radix-ui/react-accordion": "^1.2.12",
61
+ "@radix-ui/react-avatar": "^1.1.10",
62
+ "@radix-ui/react-checkbox": "^1.3.3",
63
+ "@radix-ui/react-dialog": "^1.1.15",
64
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
65
+ "@radix-ui/react-popover": "^1.1.15",
66
+ "@radix-ui/react-progress": "^1.1.8",
67
+ "@radix-ui/react-radio-group": "^1.3.8",
68
+ "@radix-ui/react-slider": "^1.3.6",
69
+ "@radix-ui/react-slot": "^1.2.3",
70
+ "@radix-ui/react-switch": "^1.2.6",
71
+ "@radix-ui/react-toggle": "^1.1.10",
72
+ "@radix-ui/react-toggle-group": "^1.1.11",
73
+ "@radix-ui/react-tooltip": "^1.2.8",
74
+ "@radix-ui/react-use-controllable-state": "^1.2.2",
75
+ "@react-three/drei": "^8.20.2",
76
+ "@react-three/fiber": "^8.18.0",
77
+ "@solar-icons/react-perf": "^1.0.0",
78
+ "@storybook/addon-designs": "^10.0.2",
79
+ "@tiptap/extension-character-count": "^2.22.0",
80
+ "@tiptap/extension-link": "^2.22.0",
81
+ "@tiptap/extension-mention": "^2.22.0",
82
+ "@tiptap/extension-placeholder": "^2.22.0",
83
+ "@tiptap/pm": "^2.22.0",
84
+ "@tiptap/react": "^2.22.0",
85
+ "@tiptap/starter-kit": "^2.22.0",
86
+ "@tiptap/suggestion": "^2.22.0",
87
+ "class-variance-authority": "^0.7.0",
88
+ "clsx": "^2.1.0",
89
+ "color": "^5.0.2",
90
+ "date-fns": "^4.1.0",
91
+ "embla-carousel-react": "^8.6.0",
92
+ "motion": "^12.29.0",
93
+ "next-themes": "^0.4.6",
94
+ "photoswipe": "^5.4.4",
95
+ "react": "^18.3.1",
96
+ "react-dom": "^18.3.1",
97
+ "react-dropzone": "^14.3.8",
98
+ "react-photoswipe-gallery": "^4.0.0",
99
+ "sonner": "^2.0.7",
100
+ "tailwind-merge": "^3.3.1",
101
+ "three": "^0.151.3",
102
+ "tw-animate-css": "^1.3.7"
103
+ },
104
+ "peerDependenciesMeta": {
105
+ "next-themes": {
106
+ "optional": true
107
+ },
108
+ "@tiptap/extension-mention": {
109
+ "optional": true
110
+ },
111
+ "@tiptap/suggestion": {
112
+ "optional": true
113
+ }
114
+ },
115
+ "devDependencies": {
116
+ "@storybook/addon-designs": "^10.0.2",
117
+ "@storybook/addon-docs": "^9.1.8",
118
+ "@storybook/addon-links": "^9.1.8",
119
+ "@storybook/addon-onboarding": "^9.1.8",
120
+ "@storybook/react-vite": "^9.1.8",
121
+ "@storybook/testing-library": "^0.2.2",
122
+ "@tailwindcss/vite": "^4.1.11",
123
+ "@tiptap/extension-character-count": "^2.27.2",
124
+ "@tiptap/extension-mention": "^2.27.2",
125
+ "@tiptap/suggestion": "^2.27.2",
126
+ "@trivago/prettier-plugin-sort-imports": "^5.2.2",
127
+ "@types/node": "^25.5.0",
128
+ "@types/react": "^18.3.23",
129
+ "@types/react-dom": "^18.3.7",
130
+ "@types/three": "^0.180.0",
131
+ "@typescript-eslint/eslint-plugin": "^8.39.0",
132
+ "@typescript-eslint/parser": "^8.39.0",
133
+ "@vitejs/plugin-react": "^4.2.1",
134
+ "chromatic": "^13.3.3",
135
+ "eslint": "^9.33.0",
136
+ "eslint-config-prettier": "^10.1.8",
137
+ "eslint-plugin-prettier": "^5.5.4",
138
+ "eslint-plugin-react": "^7.37.5",
139
+ "eslint-plugin-react-hooks": "^5.2.0",
140
+ "eslint-plugin-react-refresh": "^0.4.5",
141
+ "eslint-plugin-storybook": "^9.1.8",
142
+ "prettier": "3.6.2",
143
+ "prettier-plugin-tailwindcss": "^0.6.14",
144
+ "react-imask": "^7.6.1",
145
+ "storybook": "^9.1.8",
146
+ "storybook-addon-pseudo-states": "^9.1.13",
147
+ "tailwindcss": "^4.1.11",
148
+ "tippy.js": "^6.3.7",
149
+ "typescript": "^5.2.2",
150
+ "typescript-eslint": "^8.39.1",
151
+ "vite": "^6.3.5",
152
+ "vite-plugin-dts": "^4.5.4",
153
+ "vite-plugin-static-copy": "^3.1.2",
154
+ "vite-tsconfig-paths": "^5.1.4"
155
+ },
156
+ "engines": {
157
+ "node": ">=22.0.0"
158
+ },
159
+ "keywords": [
160
+ "react",
161
+ "components",
162
+ "ui",
163
+ "tailwind",
164
+ "shadcn",
165
+ "vite",
166
+ "storybook"
167
+ ],
168
+ "author": "",
169
+ "license": "MIT",
170
+ "packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
171
+ }