ekm-ui 0.3.85 → 0.3.87

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 (43) hide show
  1. package/.turbo/turbo-build.log +49 -39
  2. package/CHANGELOG.md +6 -0
  3. package/dist/card-payment-block.css +1 -1
  4. package/dist/card-payment-block.css.map +1 -1
  5. package/dist/card-payment-block.js +5 -3
  6. package/dist/chunk-BV5QP4Q2.js +7 -0
  7. package/dist/chunk-BV5QP4Q2.js.map +1 -0
  8. package/dist/{chunk-BS2JSVCX.js → chunk-UEHTOYK2.js} +1 -1
  9. package/dist/chunk-X6RBGNFS.js +7 -0
  10. package/dist/chunk-X6RBGNFS.js.map +1 -0
  11. package/dist/drag-and-drop.css +1 -1
  12. package/dist/drag-and-drop.css.map +1 -1
  13. package/dist/drag-and-drop.js +5 -3
  14. package/dist/file-picker/file-picker.css +1 -1
  15. package/dist/file-picker/file-picker.css.map +1 -1
  16. package/dist/file-picker/file-picker.js +5 -3
  17. package/dist/index.css +1 -1
  18. package/dist/index.css.map +1 -1
  19. package/dist/index.d.ts +2 -0
  20. package/dist/index.js +5 -3
  21. package/dist/layout/layout.css +1 -1
  22. package/dist/layout/layout.css.map +1 -1
  23. package/dist/layout/layout.js +5 -3
  24. package/dist/nbui/nbui-card.d.ts +3 -0
  25. package/dist/nbui/nbui-card.js +4 -0
  26. package/dist/nbui/nbui-card.js.map +1 -0
  27. package/dist/nbui/nbui-container.d.ts +5 -0
  28. package/dist/nbui/nbui-container.js +4 -0
  29. package/dist/nbui/nbui-container.js.map +1 -0
  30. package/dist/product-picker/product-drawer.css +1 -1
  31. package/dist/product-picker/product-drawer.css.map +1 -1
  32. package/dist/product-picker/product-drawer.js +5 -3
  33. package/dist/stacked-list-item.css +1 -1
  34. package/dist/stacked-list-item.css.map +1 -1
  35. package/dist/stacked-list-item.js +5 -3
  36. package/dist/table-result-block.css +1 -1
  37. package/dist/table-result-block.css.map +1 -1
  38. package/dist/table-result-block.js +5 -3
  39. package/package.json +1 -1
  40. package/src/index.tsx +3 -1
  41. package/src/nbui/nbui-card.tsx +15 -0
  42. package/src/nbui/nbui-container.tsx +22 -0
  43. /package/dist/{chunk-BS2JSVCX.js.map → chunk-UEHTOYK2.js.map} +0 -0
@@ -1,15 +1,17 @@
1
- export { e as TableResultBlock } from './chunk-BS2JSVCX.js';
1
+ export { e as TableResultBlock } from './chunk-UEHTOYK2.js';
2
+ import './chunk-RHBXFO7R.js';
2
3
  import './chunk-CVZY2CLV.js';
3
4
  import './chunk-N7JQ6EAC.js';
4
5
  import './chunk-HVNLAQA6.js';
5
6
  import './chunk-52VBZOHL.js';
6
7
  import './chunk-ZHMUFBQM.js';
7
- import './chunk-Q3HXAUZP.js';
8
8
  import './chunk-E62SCYLR.js';
9
+ import './chunk-Q3HXAUZP.js';
9
10
  import './chunk-JHGOFDVG.js';
10
11
  import './chunk-4E6CDLVE.js';
11
12
  import './chunk-XXP5K6Y4.js';
12
- import './chunk-RHBXFO7R.js';
13
+ import './chunk-X6RBGNFS.js';
14
+ import './chunk-BV5QP4Q2.js';
13
15
  import './chunk-P4BV63ZR.js';
14
16
  import './chunk-QCHLLBHM.js';
15
17
  import './chunk-LIXVY47P.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ekm-ui",
3
- "version": "0.3.85",
3
+ "version": "0.3.87",
4
4
  "sideEffects": [
5
5
  "**/*.css"
6
6
  ],
package/src/index.tsx CHANGED
@@ -55,6 +55,8 @@ export { FeaturePageGroup } from "./featurePageComponents/feature-page-group";
55
55
  export { TableResultBlock } from "./table-result-block";
56
56
  export { DateRangePicker } from "./date-range-picker";
57
57
  export { ProductPicker } from "./product-picker/product-drawer";
58
- export {TestComponent} from "./test-component";
58
+ export { TestComponent } from "./test-component";
59
+ export { NBUI_Container } from "./nbui/nbui-container";
60
+ export { NBUI_Card } from "./nbui/nbui-card";
59
61
 
60
62
  import "./styles.css";
@@ -0,0 +1,15 @@
1
+ export function NBUI_Card() {
2
+ return (
3
+ <div className="flex flex-col rounded-lg border border-gray-200 bg-white px-5 py-4 shadow-sm dark:border-gray-700 dark:bg-gray-800">
4
+ <div className="flex h-full flex-col justify-center gap-4">
5
+ <div className="w-1/4 h-6 bg-gray-400 rounded-md" />
6
+ <div className="mt-2 w-2/4 h-4 bg-gray-200 rounded-md" />
7
+ <div className="mt-4 w-2/4 h-4 bg-gray-200 rounded-md" />
8
+ <div className="mt-4 w-2/4 h-4 bg-gray-200 rounded-md" />
9
+ <div className="mt-4 w-2/4 h-4 bg-gray-200 rounded-md" />
10
+ <div className="mt-4 w-2/4 h-4 bg-gray-200 rounded-md" />
11
+ <div className="mt-4 w-2/4 h-4 bg-gray-200 rounded-md" />
12
+ </div>
13
+ </div>
14
+ )
15
+ }
@@ -0,0 +1,22 @@
1
+ //@ts-nocheck
2
+ function NBUI_PageHeader() {
3
+ return (
4
+ <div className="border-b bg-white p-8 shadow-sm dark:border-gray-700 dark:bg-gray-800 lg:flex lg:items-center lg:justify-between">
5
+ <div className="w-full">
6
+ <div className="w-32 h-4 bg-gray-200 rounded-md" />
7
+ <div className="flex items-center">
8
+ <div className="mt-2 w-80 h-10 bg-gray-400 rounded-md" />
9
+ </div>
10
+ </div>
11
+ </div>
12
+ )
13
+ }
14
+
15
+ export function NBUI_Container({ children }) {
16
+ return (
17
+ <main className="relative dark:bg-gray-900 flex h-full flex-grow flex-col gap-4 overflow-y-auto bg-gray-50 ">
18
+ <NBUI_PageHeader />
19
+ <form className="grid-col-1 grid gap-y-4 px-4">{children}</form>
20
+ </main>
21
+ )
22
+ }