@lateralus-ai/shipping-ui 1.4.12 → 1.4.14

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 (64) hide show
  1. package/README.md +108 -108
  2. package/dist/index.cjs +38 -38
  3. package/dist/index.esm.js +4936 -4913
  4. package/dist/tailwind-theme.d.ts +12 -0
  5. package/package.json +99 -99
  6. package/src/components/DocumentEditor/DocumentEditor.tsx +871 -871
  7. package/src/components/HelloWorld.tsx +3 -3
  8. package/src/components/InputPrompt.tsx +96 -96
  9. package/src/components/ModalPanel.tsx +49 -49
  10. package/src/components/PdfViewer/ImageViewer.tsx +211 -211
  11. package/src/components/PdfViewer/PdfViewer.tsx +232 -209
  12. package/src/components/PdfViewer/index.ts +2 -2
  13. package/src/components/PdfViewer/usePageManagement.ts +32 -32
  14. package/src/components/PdfViewer/usePanning.ts +42 -42
  15. package/src/components/PdfViewer/useRefDimensions.ts +16 -16
  16. package/src/components/PdfViewer/useRotation.ts +13 -13
  17. package/src/components/PdfViewer/useZoom.ts +26 -26
  18. package/src/components/SearchModal.tsx +320 -320
  19. package/src/components/Sidebar/Button.tsx +20 -20
  20. package/src/components/Sidebar/Container.tsx +31 -31
  21. package/src/components/Sidebar/Item.tsx +39 -39
  22. package/src/components/Sidebar/Layout.tsx +32 -32
  23. package/src/components/Sidebar/Provider.tsx +47 -47
  24. package/src/components/Sidebar/SecondaryItem.tsx +39 -39
  25. package/src/components/Sidebar/SideContainer.tsx +31 -31
  26. package/src/components/Sidebar/ToggleCollapseButton.tsx +24 -24
  27. package/src/components/Sidebar/index.ts +8 -8
  28. package/src/components/Tabs.tsx +43 -43
  29. package/src/components/icons/CloseSidebarIcon.tsx +19 -19
  30. package/src/components/icons/CloseSidebarMidIcon.tsx +19 -19
  31. package/src/components/icons/ExpandIcon.tsx +21 -21
  32. package/src/components/icons/SendArrowIcon.tsx +23 -23
  33. package/src/components/icons/SendArrowIconGreen.tsx +17 -17
  34. package/src/components/icons/SettingsIcon.tsx +33 -33
  35. package/src/components/icons/XIcon.tsx +21 -21
  36. package/src/components/index.ts +6 -6
  37. package/src/index.ts +4 -4
  38. package/src/material-theme.ts +477 -477
  39. package/src/stories/Buttons.stories.tsx +15 -15
  40. package/src/stories/Buttons.tsx +52 -52
  41. package/src/stories/Checkbox.stories.tsx +15 -15
  42. package/src/stories/Checkbox.tsx +56 -56
  43. package/src/stories/ColorPalette.stories.tsx +15 -15
  44. package/src/stories/ColorPalette.tsx +85 -72
  45. package/src/stories/DocumentEditor.stories.tsx +287 -287
  46. package/src/stories/Dropdowns.stories.tsx +15 -15
  47. package/src/stories/Dropdowns.tsx +52 -52
  48. package/src/stories/InputPrompt.stories.tsx +15 -15
  49. package/src/stories/InputPrompt.tsx +63 -63
  50. package/src/stories/ModalHeader.stories.tsx +35 -35
  51. package/src/stories/PDFViewer.stories.tsx +39 -39
  52. package/src/stories/SearchModal.stories.tsx +132 -132
  53. package/src/stories/SearchModal.tsx +82 -82
  54. package/src/stories/Sidebar.stories.tsx +15 -15
  55. package/src/stories/Sidebar.tsx +108 -108
  56. package/src/stories/Tabs.stories.tsx +51 -51
  57. package/src/stories/Typography.stories.tsx +15 -15
  58. package/src/stories/Typography.tsx +110 -110
  59. package/src/style.css +2 -2
  60. package/src/styles/tabs.css +55 -55
  61. package/src/tailwind-theme.ts +243 -231
  62. package/src/types/documentEditor.ts +55 -55
  63. package/src/utils/checkboxModule.ts +241 -241
  64. package/src/utils/cn.ts +11 -11
package/README.md CHANGED
@@ -1,108 +1,108 @@
1
- # @lateralus-ai/shipping-ui
2
-
3
- Shared UI theme and design system for Lateralus shipping applications.
4
-
5
- ## Features
6
-
7
- - Material Tailwind theme configuration
8
- - Custom color palette (Gray, Green, Blue, Red, Orange)
9
- - Typography styles (subheader, body, caption, footnote variations)
10
- - CSS variables for theming
11
- - Light/Dark mode support
12
- - Storybook for component documentation
13
-
14
- ## Development
15
-
16
- ### Setup
17
-
18
- ```bash
19
- npm install
20
- ```
21
-
22
- ### Run Storybook
23
-
24
- ```bash
25
- npm run dev
26
- # or
27
- npm run storybook
28
- ```
29
-
30
- Storybook will be available at http://localhost:6006
31
-
32
- ### Build Storybook
33
-
34
- ```bash
35
- npm run build
36
- # or
37
- npm run build-storybook
38
- ```
39
-
40
- ## Using the Theme in Your Project
41
-
42
- ### 1. Install the package (when published)
43
-
44
- ```bash
45
- npm install @lateralus-ai/shipping-ui
46
- ```
47
-
48
- ### 2. Import the Tailwind configuration
49
-
50
- In your `tailwind.config.js`:
51
-
52
- ```javascript
53
- const shippingUIConfig = require("@lateralus-ai/shipping-ui/tailwind");
54
-
55
- module.exports = shippingUIConfig;
56
- ```
57
-
58
- Or extend it:
59
-
60
- ```javascript
61
- const shippingUIConfig = require("@lateralus-ai/shipping-ui/tailwind");
62
-
63
- module.exports = {
64
- ...shippingUIConfig,
65
- content: [
66
- "./src/**/*.{js,jsx,ts,tsx}",
67
- "./node_modules/@lateralus-ai/shipping-ui/**/*.{js,jsx,ts,tsx}",
68
- ],
69
- // Your additional configuration
70
- };
71
- ```
72
-
73
- ### 3. Import the global styles
74
-
75
- In your main CSS file:
76
-
77
- ```css
78
- @import "@lateralus-ai/shipping-ui/style.css";
79
- ```
80
-
81
- ## Theme Structure
82
-
83
- ### Typography Classes
84
-
85
- - `text-subheader` / `text-subheader-em` - 18px/28px
86
- - `text-body` / `text-body-em` - 16px/28px
87
- - `text-caption-1` / `text-caption-1-em` - 16px/22px
88
- - `text-caption-2` / `text-caption-2-em` - 14px/20px
89
- - `text-footnote` / `text-footnote-em` - 13px/17px
90
-
91
- ### Color Palette
92
-
93
- - Gray: 50-900
94
- - Green: 50-900 (primary brand color)
95
- - Blue: 50-900
96
- - Red: 50-900
97
- - Orange: 50-900
98
- - Brand Purple: #ab68ff
99
-
100
- ### Font Families
101
-
102
- - Sans: Work Sans
103
- - Mono: Roboto Mono
104
- - Signature: Cursive fonts for signatures
105
-
106
- ## License
107
-
108
- UNLICENSED - Proprietary software
1
+ # @lateralus-ai/shipping-ui
2
+
3
+ Shared UI theme and design system for Lateralus shipping applications.
4
+
5
+ ## Features
6
+
7
+ - Material Tailwind theme configuration
8
+ - Custom color palette (Gray, Green, Blue, Red, Orange)
9
+ - Typography styles (subheader, body, caption, footnote variations)
10
+ - CSS variables for theming
11
+ - Light/Dark mode support
12
+ - Storybook for component documentation
13
+
14
+ ## Development
15
+
16
+ ### Setup
17
+
18
+ ```bash
19
+ npm install
20
+ ```
21
+
22
+ ### Run Storybook
23
+
24
+ ```bash
25
+ npm run dev
26
+ # or
27
+ npm run storybook
28
+ ```
29
+
30
+ Storybook will be available at http://localhost:6006
31
+
32
+ ### Build Storybook
33
+
34
+ ```bash
35
+ npm run build
36
+ # or
37
+ npm run build-storybook
38
+ ```
39
+
40
+ ## Using the Theme in Your Project
41
+
42
+ ### 1. Install the package (when published)
43
+
44
+ ```bash
45
+ npm install @lateralus-ai/shipping-ui
46
+ ```
47
+
48
+ ### 2. Import the Tailwind configuration
49
+
50
+ In your `tailwind.config.js`:
51
+
52
+ ```javascript
53
+ const shippingUIConfig = require("@lateralus-ai/shipping-ui/tailwind");
54
+
55
+ module.exports = shippingUIConfig;
56
+ ```
57
+
58
+ Or extend it:
59
+
60
+ ```javascript
61
+ const shippingUIConfig = require("@lateralus-ai/shipping-ui/tailwind");
62
+
63
+ module.exports = {
64
+ ...shippingUIConfig,
65
+ content: [
66
+ "./src/**/*.{js,jsx,ts,tsx}",
67
+ "./node_modules/@lateralus-ai/shipping-ui/**/*.{js,jsx,ts,tsx}",
68
+ ],
69
+ // Your additional configuration
70
+ };
71
+ ```
72
+
73
+ ### 3. Import the global styles
74
+
75
+ In your main CSS file:
76
+
77
+ ```css
78
+ @import "@lateralus-ai/shipping-ui/style.css";
79
+ ```
80
+
81
+ ## Theme Structure
82
+
83
+ ### Typography Classes
84
+
85
+ - `text-subheader` / `text-subheader-em` - 18px/28px
86
+ - `text-body` / `text-body-em` - 16px/28px
87
+ - `text-caption-1` / `text-caption-1-em` - 16px/22px
88
+ - `text-caption-2` / `text-caption-2-em` - 14px/20px
89
+ - `text-footnote` / `text-footnote-em` - 13px/17px
90
+
91
+ ### Color Palette
92
+
93
+ - Gray: 50-900
94
+ - Green: 50-900 (primary brand color)
95
+ - Blue: 50-900
96
+ - Red: 50-900
97
+ - Orange: 50-900
98
+ - Brand Purple: #ab68ff
99
+
100
+ ### Font Families
101
+
102
+ - Sans: Work Sans
103
+ - Mono: Roboto Mono
104
+ - Signature: Cursive fonts for signatures
105
+
106
+ ## License
107
+
108
+ UNLICENSED - Proprietary software