impact-nova 1.7.14 → 1.7.16
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/components/ui/ag-grid-react/index.js +141 -148
- package/dist/components/ui/create-item-flow/create-item-flow.d.ts +60 -0
- package/dist/components/ui/create-item-flow/create-item-flow.js +267 -0
- package/dist/components/ui/create-item-flow/index.d.ts +1 -0
- package/dist/components/ui/create-item-flow/index.js +16 -0
- package/dist/components/ui/notification-panel/notification-item.js +2 -2
- package/dist/components/ui/report-card/index.d.ts +1 -0
- package/dist/components/ui/report-card/index.js +8 -0
- package/dist/components/ui/report-card/report-card.d.ts +16 -0
- package/dist/components/ui/report-card/report-card.js +105 -0
- package/dist/components/ui/sidebar.js +4 -1
- package/dist/icons/assets/bookmarkFilled.svg.js +2 -2
- package/dist/icons/assets/createFlowImage.svg.js +5 -0
- package/dist/icons/assets/infoCircleFilled.svg.js +5 -0
- package/dist/icons/assets/webp/Checkmark_success.webp.js +4 -0
- package/dist/icons/assets/webp/report1.webp.js +4 -0
- package/dist/icons/assets/webp/report2.webp.js +4 -0
- package/dist/icons/index.d.ts +4 -0
- package/dist/icons/index.js +256 -248
- package/dist/impact-nova.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +319 -299
- package/package.json +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "impact-nova",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.16",
|
|
4
4
|
"description": "Enterprise-grade React design system built with React 19, Vite, Tailwind CSS, and Radix UI. Built-in internationalization (i18n) and comprehensive UI component library for scalable, accessible, and performant applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -348,6 +348,14 @@
|
|
|
348
348
|
"types": "./dist/components/ui/command-palette/index.d.ts",
|
|
349
349
|
"import": "./dist/components/ui/command-palette/index.js"
|
|
350
350
|
},
|
|
351
|
+
"./create-item-flow": {
|
|
352
|
+
"types": "./dist/components/ui/create-item-flow/index.d.ts",
|
|
353
|
+
"import": "./dist/components/ui/create-item-flow/index.js"
|
|
354
|
+
},
|
|
355
|
+
"./report-card": {
|
|
356
|
+
"types": "./dist/components/ui/report-card/index.d.ts",
|
|
357
|
+
"import": "./dist/components/ui/report-card/index.js"
|
|
358
|
+
},
|
|
351
359
|
"./tailwind.config": {
|
|
352
360
|
"types": "./tailwind.config.d.ts",
|
|
353
361
|
"import": "./tailwind.config.js",
|
|
@@ -541,6 +549,12 @@
|
|
|
541
549
|
],
|
|
542
550
|
"command-palette": [
|
|
543
551
|
"dist/components/ui/command-palette/index.d.ts"
|
|
552
|
+
],
|
|
553
|
+
"create-item-flow": [
|
|
554
|
+
"dist/components/ui/create-item-flow/index.d.ts"
|
|
555
|
+
],
|
|
556
|
+
"report-card": [
|
|
557
|
+
"dist/components/ui/report-card/index.d.ts"
|
|
544
558
|
]
|
|
545
559
|
}
|
|
546
560
|
},
|