@homecode/ui 5.5.0 → 5.6.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/dist/esm/index.js +1 -0
- package/dist/esm/src/components/Autocomplete/Autocomplete.js +1 -0
- package/dist/esm/src/components/GridLayout/GridLayout.js +15 -0
- package/dist/esm/src/components/GridLayout/GridLayout.styl.js +7 -0
- package/dist/esm/src/components/InputFile/InputFile.js +1 -0
- package/dist/esm/types/src/components/GridLayout/GridLayout.d.ts +3 -0
- package/dist/esm/types/src/components/GridLayout/GridLayout.types.d.ts +8 -0
- package/dist/esm/types/src/components/index.d.ts +1 -0
- package/graphify-out/.graphify_labels.json +31 -1
- package/graphify-out/2026-07-19/.graphify_labels.json +198 -0
- package/graphify-out/2026-07-19/GRAPH_REPORT.md +938 -0
- package/graphify-out/2026-07-19/cost.json +12 -0
- package/graphify-out/2026-07-19/graph.json +70862 -0
- package/graphify-out/2026-07-19/manifest.json +2342 -0
- package/graphify-out/GRAPH_REPORT.md +232 -124
- package/graphify-out/cache/ast/8766e44866b3d8e85f93a934d6365f18e57ed6f69f1363461804de9ba9a03f55.json +1 -0
- package/graphify-out/cache/ast/ea772d333147535e64c8857d1a1c87cc6dde7c165dfb275fe6b3a6e871421ee6.json +1 -0
- package/graphify-out/cache/stat-index.json +1 -1
- package/graphify-out/graph.html +4 -4
- package/graphify-out/graph.json +3234 -2951
- package/graphify-out/manifest.json +39 -14
- package/package.json +3 -2
package/dist/esm/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export { Expand } from './src/components/Expand/Expand.js';
|
|
|
17
17
|
export { Flex } from './src/components/Flex/Flex.js';
|
|
18
18
|
export { Form } from './src/components/Form/Form.js';
|
|
19
19
|
export { Gallery, normalizeGalleryItem } from './src/components/Gallery/Gallery.js';
|
|
20
|
+
export { GridLayout } from './src/components/GridLayout/GridLayout.js';
|
|
20
21
|
export { Heading } from './src/components/Heading/Heading.js';
|
|
21
22
|
export { Icon } from './src/components/Icon/Icon.js';
|
|
22
23
|
export { Input } from './src/components/Input/Input.js';
|
|
@@ -44,6 +44,7 @@ import '../ProgressCircular/ProgressCircular.styl.js';
|
|
|
44
44
|
import '../Slider/Slider.styl.js';
|
|
45
45
|
import '../VideoPlayer/VideoPlayer.styl.js';
|
|
46
46
|
import '../Gallery/Gallery.styl.js';
|
|
47
|
+
import '../GridLayout/GridLayout.styl.js';
|
|
47
48
|
import '../Heading/Heading.js';
|
|
48
49
|
import '../InputFile/InputFile.styl.js';
|
|
49
50
|
import '../InputFile/Item/Item.styl.js';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import cn from 'classnames';
|
|
3
|
+
import S from './GridLayout.styl.js';
|
|
4
|
+
|
|
5
|
+
function GridLayout({ children, colWidth = 300, gap = 'var(--p-2)', className, as: asProp, }) {
|
|
6
|
+
const As = asProp ?? 'div';
|
|
7
|
+
return (jsx(As, { className: cn(S.root, className), style: {
|
|
8
|
+
maxWidth: '100%',
|
|
9
|
+
gap,
|
|
10
|
+
display: 'grid',
|
|
11
|
+
gridTemplateColumns: `repeat(auto-fit, minmax(${colWidth}px, 1fr))`,
|
|
12
|
+
}, children: children }));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export { GridLayout };
|
|
@@ -48,6 +48,7 @@ import '../ProgressCircular/ProgressCircular.styl.js';
|
|
|
48
48
|
import '../Slider/Slider.styl.js';
|
|
49
49
|
import '../VideoPlayer/VideoPlayer.styl.js';
|
|
50
50
|
import '../Gallery/Gallery.styl.js';
|
|
51
|
+
import '../GridLayout/GridLayout.styl.js';
|
|
51
52
|
import '../Heading/Heading.js';
|
|
52
53
|
import '../../services/i18n.js';
|
|
53
54
|
import '../LightBox/LightBox.styl.js';
|
|
@@ -17,6 +17,7 @@ export * from './Expand/Expand';
|
|
|
17
17
|
export * from './Flex/Flex';
|
|
18
18
|
export * from './Form/Form';
|
|
19
19
|
export * from './Gallery/Gallery';
|
|
20
|
+
export * from './GridLayout/GridLayout';
|
|
20
21
|
export * from './Heading/Heading';
|
|
21
22
|
export * from './Icon/Icon';
|
|
22
23
|
export * from './Input/Input';
|
|
@@ -175,24 +175,54 @@
|
|
|
175
175
|
"173": "Community 173",
|
|
176
176
|
"174": "Community 174",
|
|
177
177
|
"175": "Community 175",
|
|
178
|
+
"176": "Community 176",
|
|
178
179
|
"177": "Community 177",
|
|
180
|
+
"178": "Community 178",
|
|
181
|
+
"179": "Community 179",
|
|
179
182
|
"180": "Community 180",
|
|
183
|
+
"181": "Community 181",
|
|
180
184
|
"182": "Community 182",
|
|
181
185
|
"183": "Community 183",
|
|
182
186
|
"184": "Community 184",
|
|
187
|
+
"185": "Community 185",
|
|
188
|
+
"186": "Community 186",
|
|
189
|
+
"187": "Community 187",
|
|
183
190
|
"188": "Community 188",
|
|
184
191
|
"189": "Community 189",
|
|
192
|
+
"190": "Community 190",
|
|
193
|
+
"191": "Community 191",
|
|
185
194
|
"192": "Community 192",
|
|
195
|
+
"193": "Community 193",
|
|
186
196
|
"194": "Community 194",
|
|
187
197
|
"195": "Community 195",
|
|
198
|
+
"196": "Community 196",
|
|
188
199
|
"197": "Community 197",
|
|
200
|
+
"198": "Community 198",
|
|
201
|
+
"199": "Community 199",
|
|
189
202
|
"200": "Community 200",
|
|
190
203
|
"201": "Community 201",
|
|
204
|
+
"202": "Community 202",
|
|
205
|
+
"203": "Community 203",
|
|
206
|
+
"204": "Community 204",
|
|
191
207
|
"205": "Community 205",
|
|
208
|
+
"206": "Community 206",
|
|
209
|
+
"207": "Community 207",
|
|
210
|
+
"208": "Community 208",
|
|
211
|
+
"209": "Community 209",
|
|
192
212
|
"210": "Community 210",
|
|
193
213
|
"211": "Community 211",
|
|
194
214
|
"212": "Community 212",
|
|
195
215
|
"213": "Community 213",
|
|
216
|
+
"214": "Community 214",
|
|
196
217
|
"215": "Community 215",
|
|
197
|
-
"216": "Community 216"
|
|
218
|
+
"216": "Community 216",
|
|
219
|
+
"217": "Community 217",
|
|
220
|
+
"218": "Community 218",
|
|
221
|
+
"219": "Community 219",
|
|
222
|
+
"220": "Community 220",
|
|
223
|
+
"221": "Community 221",
|
|
224
|
+
"222": "Community 222",
|
|
225
|
+
"223": "Community 223",
|
|
226
|
+
"224": "Community 224",
|
|
227
|
+
"225": "Community 225"
|
|
198
228
|
}
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
{
|
|
2
|
+
"0": "Docs Examples Index",
|
|
3
|
+
"1": "PromptComposer",
|
|
4
|
+
"2": "Build Toolchain",
|
|
5
|
+
"3": "Form Examples",
|
|
6
|
+
"4": "Autocomplete Examples",
|
|
7
|
+
"5": "Checkbox Showcase",
|
|
8
|
+
"6": "Theme Config",
|
|
9
|
+
"7": "Type Props Schema",
|
|
10
|
+
"8": "Notifications System",
|
|
11
|
+
"9": "Button Checkbox Core",
|
|
12
|
+
"10": "Optional Value Props",
|
|
13
|
+
"11": "Select Component",
|
|
14
|
+
"12": "Input AssistiveText",
|
|
15
|
+
"13": "Gallery Component",
|
|
16
|
+
"14": "Virtualized Examples",
|
|
17
|
+
"15": "TypeScript Config",
|
|
18
|
+
"16": "Package Dependencies",
|
|
19
|
+
"17": "Card Component",
|
|
20
|
+
"18": "Debounce Paranja",
|
|
21
|
+
"19": "UILIB Docs Assets",
|
|
22
|
+
"20": "Component Type Props",
|
|
23
|
+
"21": "Flex Gallery",
|
|
24
|
+
"22": "DatePicker Examples",
|
|
25
|
+
"23": "Comment Value Props",
|
|
26
|
+
"24": "Docs Index Pages",
|
|
27
|
+
"25": "i18n LangSelector",
|
|
28
|
+
"26": "Package Metadata",
|
|
29
|
+
"27": "Popup Positioning",
|
|
30
|
+
"28": "Popup Component",
|
|
31
|
+
"29": "Docs Code Layout",
|
|
32
|
+
"30": "Draggable Types",
|
|
33
|
+
"31": "Slider Component",
|
|
34
|
+
"32": "Small Component Props",
|
|
35
|
+
"33": "Select Popup Types",
|
|
36
|
+
"34": "Router Core",
|
|
37
|
+
"35": "Calendar Helpers",
|
|
38
|
+
"36": "AssistiveText Menu",
|
|
39
|
+
"37": "Button DatePicker Types",
|
|
40
|
+
"38": "Container Icon",
|
|
41
|
+
"39": "Checkbox Props",
|
|
42
|
+
"40": "NPM Scripts",
|
|
43
|
+
"41": "Calendar DatePicker",
|
|
44
|
+
"42": "DateTime Types",
|
|
45
|
+
"43": "Autocomplete Core",
|
|
46
|
+
"44": "Global Type Kinds",
|
|
47
|
+
"45": "Date Type Fields",
|
|
48
|
+
"46": "Form Types",
|
|
49
|
+
"47": "Docs App Store",
|
|
50
|
+
"48": "Component Types JSON",
|
|
51
|
+
"49": "Option Value Types",
|
|
52
|
+
"50": "Generic Props",
|
|
53
|
+
"51": "Draggable Component",
|
|
54
|
+
"52": "Heading Scroll",
|
|
55
|
+
"53": "Progress Indicators",
|
|
56
|
+
"54": "Table Virtualized",
|
|
57
|
+
"55": "Virtualized Lifecycle",
|
|
58
|
+
"56": "Docs Pages",
|
|
59
|
+
"57": "Code Example Helpers",
|
|
60
|
+
"58": "Media Control Icons",
|
|
61
|
+
"59": "Text Heading",
|
|
62
|
+
"60": "Type Parser Script",
|
|
63
|
+
"61": "ButtonGroup Tabs",
|
|
64
|
+
"62": "DateTime Component",
|
|
65
|
+
"63": "Display Format Props",
|
|
66
|
+
"64": "Calendar Day Props",
|
|
67
|
+
"65": "Dialogue Props",
|
|
68
|
+
"66": "Arrow Chevron Icons",
|
|
69
|
+
"67": "InputFile Upload",
|
|
70
|
+
"68": "InputFile Types",
|
|
71
|
+
"69": "Virtualized List",
|
|
72
|
+
"70": "List Lifecycle",
|
|
73
|
+
"71": "Icon Index Exports",
|
|
74
|
+
"72": "Webpack Paths Config",
|
|
75
|
+
"73": "DatePicker Helpers",
|
|
76
|
+
"74": "Calendar Day",
|
|
77
|
+
"75": "Calendar Pointer Props",
|
|
78
|
+
"76": "Size Enum Props",
|
|
79
|
+
"77": "Code Editor",
|
|
80
|
+
"78": "Communication Icons",
|
|
81
|
+
"79": "Select Constants",
|
|
82
|
+
"80": "TextShimmer",
|
|
83
|
+
"81": "Virtualized Cards",
|
|
84
|
+
"82": "ClassName Props",
|
|
85
|
+
"83": "Ukrainian i18n",
|
|
86
|
+
"84": "Icon RequiredStar Types",
|
|
87
|
+
"85": "Navigation Icons",
|
|
88
|
+
"86": "File Action Icons",
|
|
89
|
+
"87": "Label Helpers",
|
|
90
|
+
"88": "Lazy Types",
|
|
91
|
+
"89": "Select Example Helpers",
|
|
92
|
+
"90": "Menu More Icons",
|
|
93
|
+
"91": "Social Media Icons",
|
|
94
|
+
"92": "Rollup Build Config",
|
|
95
|
+
"93": "Tabs Types",
|
|
96
|
+
"94": "VH Component",
|
|
97
|
+
"95": "Docs Navigation",
|
|
98
|
+
"96": "Footer Alignment",
|
|
99
|
+
"97": "Calendar Day Disabled",
|
|
100
|
+
"98": "Render Day Props",
|
|
101
|
+
"99": "Render Months Label",
|
|
102
|
+
"100": "Render Month Label",
|
|
103
|
+
"101": "Render Weekday Label",
|
|
104
|
+
"102": "Render Year Label",
|
|
105
|
+
"103": "Start Of Week",
|
|
106
|
+
"104": "Weekend ClassName",
|
|
107
|
+
"105": "Weekend Styling",
|
|
108
|
+
"106": "Icon Name Helpers",
|
|
109
|
+
"107": "Media Placeholder Icons",
|
|
110
|
+
"108": "Utility Icons",
|
|
111
|
+
"109": "Commerce Icons",
|
|
112
|
+
"110": "Data Usage Icons",
|
|
113
|
+
"111": "Peer Dependencies",
|
|
114
|
+
"112": "Table Render",
|
|
115
|
+
"113": "Theme Docs",
|
|
116
|
+
"114": "Number Formatting",
|
|
117
|
+
"115": "Virtualized Index Helpers",
|
|
118
|
+
"116": "Docs Scope",
|
|
119
|
+
"117": "Auto Scroll Props",
|
|
120
|
+
"118": "Content Props",
|
|
121
|
+
"119": "Content ClassName",
|
|
122
|
+
"120": "Footer Props",
|
|
123
|
+
"121": "Icon Props",
|
|
124
|
+
"122": "Max Height Props",
|
|
125
|
+
"123": "No Scroll Props",
|
|
126
|
+
"124": "Subtitle Props",
|
|
127
|
+
"125": "Subtitle ClassName",
|
|
128
|
+
"126": "Title Props",
|
|
129
|
+
"127": "Title ClassName",
|
|
130
|
+
"128": "Trigger Props",
|
|
131
|
+
"129": "Trigger ClassName",
|
|
132
|
+
"130": "Width Props",
|
|
133
|
+
"131": "Community 131",
|
|
134
|
+
"132": "Expand Types",
|
|
135
|
+
"133": "Brand Avatar Icons",
|
|
136
|
+
"134": "Communication Action Icons",
|
|
137
|
+
"135": "Status Action Icons",
|
|
138
|
+
"136": "OAuth Brand Icons",
|
|
139
|
+
"137": "View Fullscreen Icons",
|
|
140
|
+
"138": "Add Remove Icons",
|
|
141
|
+
"139": "Route Navigation Icons",
|
|
142
|
+
"140": "Settings Tool Icons",
|
|
143
|
+
"141": "Input Label Constants",
|
|
144
|
+
"142": "Community 142",
|
|
145
|
+
"143": "More Docs Examples",
|
|
146
|
+
"144": "Docs Scope Pages",
|
|
147
|
+
"145": "Additional Docs Examples",
|
|
148
|
+
"146": "Brand Logo Assets",
|
|
149
|
+
"147": "Test Utilities",
|
|
150
|
+
"148": "PostCSS Config",
|
|
151
|
+
"149": "Single Doc Page",
|
|
152
|
+
"150": "Gallery Dots",
|
|
153
|
+
"151": "Community 151",
|
|
154
|
+
"152": "Bookmark Icons",
|
|
155
|
+
"153": "Drag Handler Icons",
|
|
156
|
+
"154": "Lock Security Icons",
|
|
157
|
+
"155": "Save Undo Icons",
|
|
158
|
+
"156": "SVG Test Mock",
|
|
159
|
+
"157": "Store Declarations",
|
|
160
|
+
"158": "Global Window Types",
|
|
161
|
+
"159": "Gallery Singleton",
|
|
162
|
+
"160": "Minimize Prop",
|
|
163
|
+
"161": "Forward Icon",
|
|
164
|
+
"162": "Router Context",
|
|
165
|
+
"163": "Router Store",
|
|
166
|
+
"164": "Select Helpers",
|
|
167
|
+
"165": "Theme Styl Types",
|
|
168
|
+
"166": "Test Setup",
|
|
169
|
+
"167": "Community 167",
|
|
170
|
+
"168": "Community 168",
|
|
171
|
+
"169": "Community 169",
|
|
172
|
+
"170": "Community 170",
|
|
173
|
+
"171": "Community 171",
|
|
174
|
+
"172": "Community 172",
|
|
175
|
+
"173": "Community 173",
|
|
176
|
+
"174": "Community 174",
|
|
177
|
+
"175": "Community 175",
|
|
178
|
+
"177": "Community 177",
|
|
179
|
+
"180": "Community 180",
|
|
180
|
+
"182": "Community 182",
|
|
181
|
+
"183": "Community 183",
|
|
182
|
+
"184": "Community 184",
|
|
183
|
+
"188": "Community 188",
|
|
184
|
+
"189": "Community 189",
|
|
185
|
+
"192": "Community 192",
|
|
186
|
+
"194": "Community 194",
|
|
187
|
+
"195": "Community 195",
|
|
188
|
+
"197": "Community 197",
|
|
189
|
+
"200": "Community 200",
|
|
190
|
+
"201": "Community 201",
|
|
191
|
+
"205": "Community 205",
|
|
192
|
+
"210": "Community 210",
|
|
193
|
+
"211": "Community 211",
|
|
194
|
+
"212": "Community 212",
|
|
195
|
+
"213": "Community 213",
|
|
196
|
+
"215": "Community 215",
|
|
197
|
+
"216": "Community 216"
|
|
198
|
+
}
|