@krosoft/react 0.0.82 → 0.0.84
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/{AppTitle-BOhhDNS5.js → AppTitle-CJZdhpRm.js} +2 -2
- package/dist/FormDialog-CwxZPmv4.js +472 -0
- package/dist/{MetricCard-bpuqueI5.js → MetricCard-5kWhYPKJ.js} +1 -1
- package/dist/{SearchInput-Dh-92XhU.js → SearchInput-Dpy2amwO.js} +28 -28
- package/dist/{TableFilter-BoNsBNbv.js → TableFilter-w9BHeObX.js} +2 -2
- package/dist/{TableSettings-D2qjh0E9.js → TableSettings-DNkdLgCN.js} +21 -21
- package/dist/components/core/cards/index.js +1 -1
- package/dist/components/core/dialogs/AppDialog.d.ts +28 -0
- package/dist/components/core/dialogs/AppDialog.d.ts.map +1 -0
- package/dist/components/core/dialogs/FormDialog.d.ts +32 -0
- package/dist/components/core/dialogs/FormDialog.d.ts.map +1 -0
- package/dist/components/core/dialogs/index.d.ts +7 -0
- package/dist/components/core/dialogs/index.d.ts.map +1 -0
- package/dist/components/core/dialogs/index.js +16 -0
- package/dist/components/core/filters/index.js +1 -1
- package/dist/components/core/index.d.ts +1 -0
- package/dist/components/core/index.d.ts.map +1 -1
- package/dist/components/core/index.js +46 -32
- package/dist/components/core/inputs/index.js +1 -1
- package/dist/components/core/layouts/index.js +1 -1
- package/dist/components/core/table/index.js +1 -1
- package/dist/components/index.js +96 -82
- package/dist/components/ui/dialog.d.ts +20 -0
- package/dist/components/ui/dialog.d.ts.map +1 -0
- package/dist/components/ui/index.js +1 -1
- package/dist/components/ui/progress.d.ts +8 -0
- package/dist/components/ui/progress.d.ts.map +1 -0
- package/dist/{dropdown-menu-D6j1GdTA.js → dropdown-menu-Q_WkonPk.js} +1 -1
- package/dist/{popover-DVVl_ccN.js → popover-BMvYmQOM.js} +598 -590
- package/dist/tailwind/index.d.ts +9 -0
- package/dist/tailwind/index.d.ts.map +1 -1
- package/dist/tailwind/index.js +6 -1
- package/package.json +5 -4
package/dist/tailwind/index.d.ts
CHANGED
|
@@ -94,10 +94,19 @@ declare const krosoftPreset: {
|
|
|
94
94
|
height: string;
|
|
95
95
|
};
|
|
96
96
|
};
|
|
97
|
+
progress: {
|
|
98
|
+
"0%": {
|
|
99
|
+
transform: string;
|
|
100
|
+
};
|
|
101
|
+
"100%": {
|
|
102
|
+
transform: string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
97
105
|
};
|
|
98
106
|
animation: {
|
|
99
107
|
"accordion-down": string;
|
|
100
108
|
"accordion-up": string;
|
|
109
|
+
progress: string;
|
|
101
110
|
};
|
|
102
111
|
};
|
|
103
112
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tailwind/index.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,QAAA,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/tailwind/index.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2ED,CAAC;AAEnB,eAAe,aAAa,CAAC"}
|
package/dist/tailwind/index.js
CHANGED
|
@@ -60,11 +60,16 @@ const r = {
|
|
|
60
60
|
"accordion-up": {
|
|
61
61
|
from: { height: "var(--radix-accordion-content-height)" },
|
|
62
62
|
to: { height: "0" }
|
|
63
|
+
},
|
|
64
|
+
progress: {
|
|
65
|
+
"0%": { transform: "translateX(-100%)" },
|
|
66
|
+
"100%": { transform: "translateX(100%)" }
|
|
63
67
|
}
|
|
64
68
|
},
|
|
65
69
|
animation: {
|
|
66
70
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
67
|
-
"accordion-up": "accordion-up 0.2s ease-out"
|
|
71
|
+
"accordion-up": "accordion-up 0.2s ease-out",
|
|
72
|
+
progress: "progress 1.5s ease-in-out infinite"
|
|
68
73
|
}
|
|
69
74
|
}
|
|
70
75
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@krosoft/react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.84",
|
|
4
4
|
"description": "Krosoft shared React package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"next-themes": ">=0.4.6",
|
|
35
35
|
"react": ">=18.3.1",
|
|
36
36
|
"react-i18next": ">=17.0.8",
|
|
37
|
-
"react-router-dom": ">=6.
|
|
37
|
+
"react-router-dom": ">=6.30.3"
|
|
38
38
|
},
|
|
39
39
|
"peerDependenciesMeta": {
|
|
40
40
|
"next-themes": {
|
|
@@ -47,9 +47,10 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
49
49
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
50
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
51
50
|
"@radix-ui/react-label": "^2.1.8",
|
|
52
51
|
"@radix-ui/react-popover": "^1.1.15",
|
|
52
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
53
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
53
54
|
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
54
55
|
"@radix-ui/react-select": "^2.2.6",
|
|
55
56
|
"@radix-ui/react-separator": "^1.1.8",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"react": "^18.3.1",
|
|
83
84
|
"react-dom": "^18.3.1",
|
|
84
85
|
"react-i18next": "^17.0.8",
|
|
85
|
-
"react-router-dom": "^7.
|
|
86
|
+
"react-router-dom": "^7.15.1",
|
|
86
87
|
"storybook": "^8.6.18",
|
|
87
88
|
"tailwindcss": "^3.4.19",
|
|
88
89
|
"typescript": "^5.9.3",
|