fina-react-ds 0.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/README.md +17 -0
- package/dist/_virtual/index.js +5 -0
- package/dist/_virtual/index2.js +4 -0
- package/dist/_virtual/use-sync-external-store-shim.development.js +4 -0
- package/dist/_virtual/use-sync-external-store-shim.production.js +4 -0
- package/dist/components/alert-dialog.d.ts +16 -0
- package/dist/components/alert.d.ts +8 -0
- package/dist/components/alert.js +70 -0
- package/dist/components/avatar.d.ts +5 -0
- package/dist/components/avatar.js +58 -0
- package/dist/components/badge.d.ts +8 -0
- package/dist/components/badge.js +43 -0
- package/dist/components/button.d.ts +10 -0
- package/dist/components/button.js +152 -0
- package/dist/components/card.d.ts +8 -0
- package/dist/components/card.js +99 -0
- package/dist/components/checkbox.d.ts +4 -0
- package/dist/components/checkbox.js +34 -0
- package/dist/components/dialog.d.ts +15 -0
- package/dist/components/dialog.js +148 -0
- package/dist/components/dropdown-menu.d.ts +25 -0
- package/dist/components/dropdown-menu.js +248 -0
- package/dist/components/input.d.ts +3 -0
- package/dist/components/input.js +24 -0
- package/dist/components/label.d.ts +6 -0
- package/dist/components/label.js +32 -0
- package/dist/components/pagination.d.ts +13 -0
- package/dist/components/pagination.js +128 -0
- package/dist/components/popover.d.ts +7 -0
- package/dist/components/popover.js +50 -0
- package/dist/components/select.d.ts +11 -0
- package/dist/components/select.js +48 -0
- package/dist/components/separator.d.ts +4 -0
- package/dist/components/simple-pagination.d.ts +6 -0
- package/dist/components/simple-pagination.js +34 -0
- package/dist/components/tabs.d.ts +7 -0
- package/dist/components/tabs.js +73 -0
- package/dist/hooks/use-mobile.d.ts +1 -0
- package/dist/index.js +80 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.js +11 -0
- package/dist/lib.d.ts +16 -0
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +534 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +430 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +215 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +159 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +149 -0
- package/dist/node_modules/@radix-ui/primitive/dist/index.js +12 -0
- package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +24 -0
- package/dist/node_modules/@radix-ui/react-avatar/dist/index.js +80 -0
- package/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +258 -0
- package/dist/node_modules/@radix-ui/react-collection/dist/index.js +51 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +34 -0
- package/dist/node_modules/@radix-ui/react-context/dist/index.js +76 -0
- package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +265 -0
- package/dist/node_modules/@radix-ui/react-direction/dist/index.js +12 -0
- package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +133 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +230 -0
- package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +21 -0
- package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +149 -0
- package/dist/node_modules/@radix-ui/react-id/dist/index.js +16 -0
- package/dist/node_modules/@radix-ui/react-label/dist/index.js +22 -0
- package/dist/node_modules/@radix-ui/react-menu/dist/index.js +663 -0
- package/dist/node_modules/@radix-ui/react-popover/dist/index.js +247 -0
- package/dist/node_modules/@radix-ui/react-popper/dist/index.js +224 -0
- package/dist/node_modules/@radix-ui/react-portal/dist/index.js +16 -0
- package/dist/node_modules/@radix-ui/react-presence/dist/index.js +77 -0
- package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +39 -0
- package/dist/node_modules/@radix-ui/react-roving-focus/dist/index.js +189 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js +60 -0
- package/dist/node_modules/@radix-ui/react-tabs/dist/index.js +168 -0
- package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +16 -0
- package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +59 -0
- package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +17 -0
- package/dist/node_modules/@radix-ui/react-use-is-hydrated/dist/index.js +19 -0
- package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +6 -0
- package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +11 -0
- package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +30 -0
- package/dist/node_modules/aria-hidden/dist/es2015/index.js +54 -0
- package/dist/node_modules/get-nonce/dist/es2015/index.js +9 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +11 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +116 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +33 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +18 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +70 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +5 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +7 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +73 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +7 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +27 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/component.js +13 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +17 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +35 -0
- package/dist/node_modules/tslib/tslib.es6.js +31 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +9 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +29 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +28 -0
- package/dist/node_modules/use-sidecar/dist/es2015/exports.js +21 -0
- package/dist/node_modules/use-sidecar/dist/es2015/medium.js +72 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +73 -0
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +62 -0
- package/dist/node_modules/use-sync-external-store/shim/index.js +13 -0
- package/dist/themes/base.css +1982 -0
- package/dist/themes/pro.css +188 -0
- package/dist/themes/puulse-colors.css +388 -0
- package/package.json +114 -0
package/package.json
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fina-react-ds",
|
|
3
|
+
"repository": {
|
|
4
|
+
"type": "git",
|
|
5
|
+
"url": "https://github.com/ElsanLab/elsan-react-puulse.git"
|
|
6
|
+
},
|
|
7
|
+
"private": false,
|
|
8
|
+
"version": "0.0.0",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"main": "dist/index.js",
|
|
14
|
+
"module": "dist/index.js",
|
|
15
|
+
"types": "dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js",
|
|
20
|
+
"require": "./dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./*": "./dist/*"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
|
26
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
27
|
+
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
28
|
+
"@tailwindcss/cli": "^4.1.10",
|
|
29
|
+
"@tailwindcss/vite": "^4.1.10",
|
|
30
|
+
"class-variance-authority": "^0.7.1",
|
|
31
|
+
"clsx": "^2.1.1",
|
|
32
|
+
"cmdk": "^1.1.1",
|
|
33
|
+
"date-fns": "^4.0.0",
|
|
34
|
+
"lucide-react": "^0.525.0",
|
|
35
|
+
"next-themes": "^0.4.6",
|
|
36
|
+
"radix-ui": "^1.4.2",
|
|
37
|
+
"react": "^19.0.0",
|
|
38
|
+
"react-colorful": "^5.6.1",
|
|
39
|
+
"react-day-picker": "9.7.0",
|
|
40
|
+
"react-dom": "^19.0.0",
|
|
41
|
+
"react-phone-number-input": "^3.4.12",
|
|
42
|
+
"react-select": "^5.10.1",
|
|
43
|
+
"sonner": "^2.0.5",
|
|
44
|
+
"tailwind-merge": "^3.3.1",
|
|
45
|
+
"tailwindcss": "^4.0.0",
|
|
46
|
+
"tailwindcss-animate": "^1.0.0"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
50
|
+
"@eslint/js": "^9.29.0",
|
|
51
|
+
"@microsoft/api-extractor": "^7.52.8",
|
|
52
|
+
"@types/node": "^22.15.32",
|
|
53
|
+
"@types/react": "^19.1.8",
|
|
54
|
+
"@types/react-dom": "^19.1.6",
|
|
55
|
+
"@vitejs/plugin-react-swc": "^3.10.2",
|
|
56
|
+
"@vitest/browser": "^3.2.3",
|
|
57
|
+
"@vitest/coverage-v8": "^3.2.3",
|
|
58
|
+
"eslint": "^9.29.0",
|
|
59
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
60
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
61
|
+
"eslint-plugin-storybook": "^9.0.16",
|
|
62
|
+
"globals": "^15.15.0",
|
|
63
|
+
"rimraf": "^6.0.1",
|
|
64
|
+
"rollup": "^4.43.0",
|
|
65
|
+
"stylelint": "^16.20.0",
|
|
66
|
+
"stylelint-gamut": "^1.3.4",
|
|
67
|
+
"tsc-alias": "^1.8.16",
|
|
68
|
+
"typescript": "~5.7.3",
|
|
69
|
+
"typescript-eslint": "^8.34.1",
|
|
70
|
+
"vite": "^6.3.5",
|
|
71
|
+
"vite-plugin-static-copy": "^2.3.1",
|
|
72
|
+
"vitest": "^3.2.3"
|
|
73
|
+
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
|
76
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
77
|
+
"@fortawesome/react-fontawesome": "^0.2.2",
|
|
78
|
+
"@tailwindcss/cli": "^4.1.10",
|
|
79
|
+
"@tailwindcss/vite": "^4.1.10",
|
|
80
|
+
"class-variance-authority": "^0.7.1",
|
|
81
|
+
"clsx": "^2.1.1",
|
|
82
|
+
"cmdk": "^1.1.1",
|
|
83
|
+
"date-fns": "^4.0.0",
|
|
84
|
+
"next-themes": "^0.4.6",
|
|
85
|
+
"radix-ui": "^1.4.2",
|
|
86
|
+
"react": "^19.0.0",
|
|
87
|
+
"react-colorful": "^5.6.1",
|
|
88
|
+
"react-day-picker": "9.7.0",
|
|
89
|
+
"react-dom": "^19.0.0",
|
|
90
|
+
"react-phone-number-input": "^3.4.12",
|
|
91
|
+
"react-select": "^5.10.1",
|
|
92
|
+
"sonner": "^2.0.5",
|
|
93
|
+
"tailwind-merge": "^3.3.1",
|
|
94
|
+
"tailwindcss": "^4.0.0",
|
|
95
|
+
"tailwindcss-animate": "^1.0.0"
|
|
96
|
+
},
|
|
97
|
+
"sideEffects": [
|
|
98
|
+
"**/*.css"
|
|
99
|
+
],
|
|
100
|
+
"eslintConfig": {
|
|
101
|
+
"extends": []
|
|
102
|
+
},
|
|
103
|
+
"scripts": {
|
|
104
|
+
"dev": "vite",
|
|
105
|
+
"build": "rimraf dist && pnpm build:types && pnpm build:themes && pnpm build:components && pnpm build:clean",
|
|
106
|
+
"build:types": "tsc -p tsconfig.build.json && tsc-alias",
|
|
107
|
+
"build:themes": "pnpm dlx @tailwindcss/cli -i ./src/themes/base.css -o ./dist/themes/base.css",
|
|
108
|
+
"build:components": "vite build",
|
|
109
|
+
"build:clean": "rimraf dist/vite.config.d.ts dist/vite.config.d.ts.map",
|
|
110
|
+
"lint": "eslint . && stylelint src/**/*.css",
|
|
111
|
+
"stylelint": "stylelint src/**/*.css",
|
|
112
|
+
"preview": "vite preview"
|
|
113
|
+
}
|
|
114
|
+
}
|