@geoit/ui 0.0.2 → 0.0.5
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/AGENTS.md +12 -8
- package/README.md +140 -17
- package/ai/AGENTS.md +43 -32
- package/ai/README.md +36 -2
- package/ai/catalog.json +5585 -437
- package/ai/components/geo-alert.md +75 -21
- package/ai/components/geo-back-button.md +64 -18
- package/ai/components/geo-breadcrumb.md +71 -12
- package/ai/components/geo-button.md +90 -27
- package/ai/components/geo-chart.md +103 -0
- package/ai/components/geo-checkbox.md +67 -20
- package/ai/components/geo-column-picker.md +91 -18
- package/ai/components/geo-confirm-modal.md +92 -27
- package/ai/components/geo-dashboard.md +91 -0
- package/ai/components/geo-date-picker.md +105 -29
- package/ai/components/geo-date-range-picker.md +101 -28
- package/ai/components/geo-empty-state.md +75 -0
- package/ai/components/geo-feedback-form.md +97 -0
- package/ai/components/geo-file-picker.md +99 -26
- package/ai/components/geo-forgot-password.md +78 -0
- package/ai/components/geo-form-modal.md +111 -44
- package/ai/components/geo-icon.md +70 -16
- package/ai/components/geo-input.md +94 -29
- package/ai/components/geo-layout-footer.md +70 -0
- package/ai/components/geo-layout-header-actions.md +82 -0
- package/ai/components/geo-layout-header.md +89 -0
- package/ai/components/geo-layout-sidebar.md +86 -0
- package/ai/components/geo-layout.md +155 -0
- package/ai/components/geo-list-page.md +72 -0
- package/ai/components/geo-login.md +94 -0
- package/ai/components/geo-map-admin-filter.md +80 -0
- package/ai/components/geo-map-basemap-switcher.md +75 -0
- package/ai/components/geo-map-help.md +72 -0
- package/ai/components/geo-map-layer-card.md +73 -0
- package/ai/components/geo-map-layer-panel.md +75 -0
- package/ai/components/geo-map-layers-drawer.md +78 -0
- package/ai/components/geo-map-legend.md +74 -0
- package/ai/components/geo-map-locate.md +75 -0
- package/ai/components/geo-map-location-chip.md +71 -0
- package/ai/components/geo-map-measure.md +74 -0
- package/ai/components/geo-map-opacity.md +75 -0
- package/ai/components/geo-map-parcel-popup.md +79 -0
- package/ai/components/geo-map-search.md +83 -0
- package/ai/components/geo-map-shell.md +110 -0
- package/ai/components/geo-map-snapshot.md +75 -0
- package/ai/components/geo-map-swipe.md +73 -0
- package/ai/components/geo-map-toolbar.md +76 -0
- package/ai/components/geo-map-zoom.md +74 -0
- package/ai/components/geo-map.md +205 -0
- package/ai/components/geo-overlap-result.md +88 -0
- package/ai/components/geo-page-header.md +72 -0
- package/ai/components/geo-page-title.md +62 -16
- package/ai/components/geo-pagination.md +76 -24
- package/ai/components/geo-radio.md +110 -27
- package/ai/components/geo-row-actions.md +87 -19
- package/ai/components/geo-select.md +108 -28
- package/ai/components/geo-slider.md +70 -21
- package/ai/components/geo-stat-card.md +98 -0
- package/ai/components/geo-status-tag.md +67 -15
- package/ai/components/geo-step-form-layout.md +121 -38
- package/ai/components/geo-stepper.md +81 -19
- package/ai/components/geo-table-filter.md +90 -29
- package/ai/components/geo-table-pagination.md +70 -23
- package/ai/components/geo-table-toolbar.md +84 -29
- package/ai/components/geo-table.md +191 -59
- package/ai/components/geo-tabs.md +99 -27
- package/ai/components/geo-textarea.md +84 -23
- package/ai/components/geo-toast.md +138 -27
- package/ai/components/geo-tree.md +94 -22
- package/ai/components/geo-typography.md +70 -19
- package/ai/components/geo-upload.md +109 -39
- package/ai/mockup.html +1194 -0
- package/ai/recipes.md +132 -47
- package/esm2022/lib/figma/geo-alert/geo-alert.component.mjs +19 -36
- package/esm2022/lib/figma/geo-back-button/geo-back-button.component.mjs +14 -24
- package/esm2022/lib/figma/geo-breadcrumb/geo-breadcrumb.component.mjs +8 -11
- package/esm2022/lib/figma/geo-button/geo-button.component.mjs +30 -59
- package/esm2022/lib/figma/geo-chart/geo-chart.component.mjs +88 -0
- package/esm2022/lib/figma/geo-chart/geo-chart.types.mjs +2 -0
- package/esm2022/lib/figma/geo-checkbox/geo-checkbox.component.mjs +11 -22
- package/esm2022/lib/figma/geo-confirm-modal/geo-confirm-modal.component.mjs +22 -54
- package/esm2022/lib/figma/geo-dashboard/geo-dashboard.component.mjs +49 -0
- package/esm2022/lib/figma/geo-dashboard/geo-dashboard.types.mjs +2 -0
- package/esm2022/lib/figma/geo-date-picker/geo-date-picker.component.mjs +48 -78
- package/esm2022/lib/figma/geo-date-range-picker/geo-date-range-picker.component.mjs +47 -75
- package/esm2022/lib/figma/geo-empty-state/geo-empty-state.component.mjs +25 -0
- package/esm2022/lib/figma/geo-feedback-form/geo-feedback-form.component.mjs +75 -0
- package/esm2022/lib/figma/geo-feedback-form/geo-feedback-form.types.mjs +2 -0
- package/esm2022/lib/figma/geo-file-picker/geo-file-picker.component.mjs +59 -81
- package/esm2022/lib/figma/geo-forgot-password/geo-forgot-password.component.mjs +51 -0
- package/esm2022/lib/figma/geo-form-modal/geo-form-modal.component.mjs +45 -112
- package/esm2022/lib/figma/geo-icon/geo-icon.component.mjs +22 -32
- package/esm2022/lib/figma/geo-input/geo-input.component.mjs +41 -70
- package/esm2022/lib/figma/geo-layout/footer/geo-layout-footer.component.mjs +18 -0
- package/esm2022/lib/figma/geo-layout/geo-layout-actions.directive.mjs +15 -0
- package/esm2022/lib/figma/geo-layout/geo-layout.component.mjs +79 -0
- package/esm2022/lib/figma/geo-layout/geo-layout.types.mjs +42 -0
- package/esm2022/lib/figma/geo-layout/header/geo-layout-header.component.mjs +60 -0
- package/esm2022/lib/figma/geo-layout/header-actions/geo-layout-header-actions.component.mjs +70 -0
- package/esm2022/lib/figma/geo-layout/sidebar/geo-layout-sidebar.component.mjs +90 -0
- package/esm2022/lib/figma/geo-list-page/geo-list-page.component.mjs +22 -0
- package/esm2022/lib/figma/geo-login/geo-login.component.mjs +58 -0
- package/esm2022/lib/figma/geo-login/geo-login.types.mjs +2 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-admin-filter/geo-map-admin-filter.component.mjs +52 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-basemap-switcher/geo-map-basemap-switcher.component.mjs +61 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-help/geo-map-help.component.mjs +26 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-layer-card/geo-map-layer-card.component.mjs +24 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-layer-panel/geo-map-layer-panel.component.mjs +146 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-layers-drawer/geo-map-layers-drawer.component.mjs +37 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-legend/geo-map-legend.component.mjs +30 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-locate/geo-map-locate.component.mjs +72 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-location-chip/geo-map-location-chip.component.mjs +21 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-measure/geo-map-measure.component.mjs +375 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-opacity/geo-map-opacity.component.mjs +94 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-parcel-popup/geo-map-parcel-popup.component.mjs +136 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-search/geo-map-search.component.mjs +182 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-shell/geo-map-shell.component.mjs +577 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-snapshot/geo-map-snapshot.component.mjs +93 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-swipe/geo-map-swipe.component.mjs +129 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-toolbar/geo-map-toolbar.component.mjs +64 -0
- package/esm2022/lib/figma/geo-map/chrome/geo-map-zoom/geo-map-zoom.component.mjs +295 -0
- package/esm2022/lib/figma/geo-map/geo-map-toolbar.icons.mjs +18 -0
- package/esm2022/lib/figma/geo-map/geo-map.component.mjs +144 -0
- package/esm2022/lib/figma/geo-map/geo-map.constants.mjs +497 -0
- package/esm2022/lib/figma/geo-map/geo-map.controller.mjs +71 -0
- package/esm2022/lib/figma/geo-map/geo-map.types.mjs +2 -0
- package/esm2022/lib/figma/geo-map/services/geo-map-layer.service.mjs +368 -0
- package/esm2022/lib/figma/geo-map/services/geo-map-projection.service.mjs +110 -0
- package/esm2022/lib/figma/geo-map/services/geo-map.service.mjs +540 -0
- package/esm2022/lib/figma/geo-map/utils/geo-map-fullscreen-overlay.util.mjs +47 -0
- package/esm2022/lib/figma/geo-map/utils/geo-map-interactions.util.mjs +30 -0
- package/esm2022/lib/figma/geo-overlap-result/geo-overlap-result.component.mjs +25 -0
- package/esm2022/lib/figma/geo-overlap-result/geo-overlap-result.types.mjs +2 -0
- package/esm2022/lib/figma/geo-page-header/geo-page-header.component.mjs +23 -0
- package/esm2022/lib/figma/geo-page-title/geo-page-title.component.mjs +20 -35
- package/esm2022/lib/figma/geo-pagination/geo-pagination.component.mjs +13 -43
- package/esm2022/lib/figma/geo-radio/geo-radio.component.mjs +32 -52
- package/esm2022/lib/figma/geo-select/geo-select.component.mjs +46 -72
- package/esm2022/lib/figma/geo-slider/geo-slider.component.mjs +12 -28
- package/esm2022/lib/figma/geo-stat-card/geo-stat-card.component.mjs +163 -0
- package/esm2022/lib/figma/geo-stat-card/geo-stat-card.types.mjs +2 -0
- package/esm2022/lib/figma/geo-status-tag/geo-status-tag.component.mjs +23 -27
- package/esm2022/lib/figma/geo-step-form-layout/geo-step-form-layout.component.mjs +39 -96
- package/esm2022/lib/figma/geo-stepper/geo-stepper.component.mjs +18 -33
- package/esm2022/lib/figma/geo-table/geo-column-picker/geo-column-picker.component.mjs +14 -24
- package/esm2022/lib/figma/geo-table/geo-row-actions/geo-row-actions.component.mjs +18 -36
- package/esm2022/lib/figma/geo-table/geo-table-filter/geo-table-filter.component.mjs +41 -98
- package/esm2022/lib/figma/geo-table/geo-table-pagination/geo-table-pagination.component.mjs +40 -73
- package/esm2022/lib/figma/geo-table/geo-table-toolbar/geo-table-toolbar.component.mjs +26 -56
- package/esm2022/lib/figma/geo-table/geo-table.component.mjs +110 -210
- package/esm2022/lib/figma/geo-tabs/geo-tabs.component.mjs +33 -63
- package/esm2022/lib/figma/geo-textarea/geo-textarea.component.mjs +28 -44
- package/esm2022/lib/figma/geo-toast/geo-toast.component.mjs +18 -39
- package/esm2022/lib/figma/geo-tree/geo-tree.component.mjs +12 -40
- package/esm2022/lib/figma/geo-typography/geo-typography.component.mjs +49 -64
- package/esm2022/lib/figma/geo-upload/geo-upload.component.mjs +50 -101
- package/esm2022/lib/figma/index.mjs +50 -1
- package/esm2022/lib/styles/tokens.mjs +56 -24
- package/fesm2022/geoit-ui.mjs +5981 -1825
- package/fesm2022/geoit-ui.mjs.map +1 -1
- package/lib/figma/geo-alert/geo-alert.component.d.ts +10 -11
- package/lib/figma/geo-back-button/geo-back-button.component.d.ts +6 -7
- package/lib/figma/geo-breadcrumb/geo-breadcrumb.component.d.ts +2 -2
- package/lib/figma/geo-button/geo-button.component.d.ts +21 -17
- package/lib/figma/geo-chart/geo-chart.component.d.ts +40 -0
- package/lib/figma/geo-chart/geo-chart.types.d.ts +13 -0
- package/lib/figma/geo-checkbox/geo-checkbox.component.d.ts +6 -7
- package/lib/figma/geo-confirm-modal/geo-confirm-modal.component.d.ts +15 -17
- package/lib/figma/geo-dashboard/geo-dashboard.component.d.ts +29 -0
- package/lib/figma/geo-dashboard/geo-dashboard.types.d.ts +7 -0
- package/lib/figma/geo-date-picker/geo-date-picker.component.d.ts +26 -21
- package/lib/figma/geo-date-range-picker/geo-date-range-picker.component.d.ts +25 -20
- package/lib/figma/geo-empty-state/geo-empty-state.component.d.ts +17 -0
- package/lib/figma/geo-feedback-form/geo-feedback-form.component.d.ts +36 -0
- package/lib/figma/geo-feedback-form/geo-feedback-form.types.d.ts +8 -0
- package/lib/figma/geo-file-picker/geo-file-picker.component.d.ts +23 -20
- package/lib/figma/geo-forgot-password/geo-forgot-password.component.d.ts +24 -0
- package/lib/figma/geo-form-modal/geo-form-modal.component.d.ts +33 -35
- package/lib/figma/geo-icon/geo-icon.component.d.ts +7 -7
- package/lib/figma/geo-input/geo-input.component.d.ts +23 -21
- package/lib/figma/geo-layout/footer/geo-layout-footer.component.d.ts +10 -0
- package/lib/figma/geo-layout/geo-layout-actions.directive.d.ts +6 -0
- package/lib/figma/geo-layout/geo-layout.component.d.ts +48 -0
- package/lib/figma/geo-layout/geo-layout.types.d.ts +44 -0
- package/lib/figma/geo-layout/header/geo-layout-header.component.d.ts +31 -0
- package/lib/figma/geo-layout/header-actions/geo-layout-header-actions.component.d.ts +32 -0
- package/lib/figma/geo-layout/sidebar/geo-layout-sidebar.component.d.ts +34 -0
- package/lib/figma/geo-list-page/geo-list-page.component.d.ts +16 -0
- package/lib/figma/geo-login/geo-login.component.d.ts +27 -0
- package/lib/figma/geo-login/geo-login.types.d.ts +6 -0
- package/lib/figma/geo-map/chrome/geo-map-admin-filter/geo-map-admin-filter.component.d.ts +28 -0
- package/lib/figma/geo-map/chrome/geo-map-basemap-switcher/geo-map-basemap-switcher.component.d.ts +26 -0
- package/lib/figma/geo-map/chrome/geo-map-help/geo-map-help.component.d.ts +20 -0
- package/lib/figma/geo-map/chrome/geo-map-layer-card/geo-map-layer-card.component.d.ts +15 -0
- package/lib/figma/geo-map/chrome/geo-map-layer-panel/geo-map-layer-panel.component.d.ts +40 -0
- package/lib/figma/geo-map/chrome/geo-map-layers-drawer/geo-map-layers-drawer.component.d.ts +25 -0
- package/lib/figma/geo-map/chrome/geo-map-legend/geo-map-legend.component.d.ts +18 -0
- package/lib/figma/geo-map/chrome/geo-map-locate/geo-map-locate.component.d.ts +24 -0
- package/lib/figma/geo-map/chrome/geo-map-location-chip/geo-map-location-chip.component.d.ts +14 -0
- package/lib/figma/geo-map/chrome/geo-map-measure/geo-map-measure.component.d.ts +49 -0
- package/lib/figma/geo-map/chrome/geo-map-opacity/geo-map-opacity.component.d.ts +30 -0
- package/lib/figma/geo-map/chrome/geo-map-parcel-popup/geo-map-parcel-popup.component.d.ts +44 -0
- package/lib/figma/geo-map/chrome/geo-map-search/geo-map-search.component.d.ts +56 -0
- package/lib/figma/geo-map/chrome/geo-map-shell/geo-map-shell.component.d.ts +103 -0
- package/lib/figma/geo-map/chrome/geo-map-snapshot/geo-map-snapshot.component.d.ts +21 -0
- package/lib/figma/geo-map/chrome/geo-map-swipe/geo-map-swipe.component.d.ts +33 -0
- package/lib/figma/geo-map/chrome/geo-map-toolbar/geo-map-toolbar.component.d.ts +30 -0
- package/lib/figma/geo-map/chrome/geo-map-zoom/geo-map-zoom.component.d.ts +67 -0
- package/lib/figma/geo-map/geo-map-toolbar.icons.d.ts +17 -0
- package/lib/figma/geo-map/geo-map.component.d.ts +53 -0
- package/lib/figma/geo-map/geo-map.constants.d.ts +73 -0
- package/lib/figma/geo-map/geo-map.controller.d.ts +49 -0
- package/lib/figma/geo-map/geo-map.types.d.ts +224 -0
- package/lib/figma/geo-map/services/geo-map-layer.service.d.ts +42 -0
- package/lib/figma/geo-map/services/geo-map-projection.service.d.ts +32 -0
- package/lib/figma/geo-map/services/geo-map.service.d.ts +99 -0
- package/lib/figma/geo-map/utils/geo-map-fullscreen-overlay.util.d.ts +13 -0
- package/lib/figma/geo-map/utils/geo-map-interactions.util.d.ts +9 -0
- package/lib/figma/geo-overlap-result/geo-overlap-result.component.d.ts +18 -0
- package/lib/figma/geo-overlap-result/geo-overlap-result.types.d.ts +7 -0
- package/lib/figma/geo-page-header/geo-page-header.component.d.ts +16 -0
- package/lib/figma/geo-page-title/geo-page-title.component.d.ts +9 -9
- package/lib/figma/geo-pagination/geo-pagination.component.d.ts +9 -14
- package/lib/figma/geo-radio/geo-radio.component.d.ts +17 -15
- package/lib/figma/geo-select/geo-select.component.d.ts +24 -19
- package/lib/figma/geo-slider/geo-slider.component.d.ts +7 -9
- package/lib/figma/geo-stat-card/geo-stat-card.component.d.ts +50 -0
- package/lib/figma/geo-stat-card/geo-stat-card.types.d.ts +11 -0
- package/lib/figma/geo-status-tag/geo-status-tag.component.d.ts +7 -7
- package/lib/figma/geo-step-form-layout/geo-step-form-layout.component.d.ts +27 -29
- package/lib/figma/geo-stepper/geo-stepper.component.d.ts +6 -8
- package/lib/figma/geo-table/geo-column-picker/geo-column-picker.component.d.ts +6 -7
- package/lib/figma/geo-table/geo-row-actions/geo-row-actions.component.d.ts +11 -12
- package/lib/figma/geo-table/geo-table-filter/geo-table-filter.component.d.ts +21 -28
- package/lib/figma/geo-table/geo-table-pagination/geo-table-pagination.component.d.ts +17 -20
- package/lib/figma/geo-table/geo-table-toolbar/geo-table-toolbar.component.d.ts +17 -18
- package/lib/figma/geo-table/geo-table.component.d.ts +58 -62
- package/lib/figma/geo-tabs/geo-tabs.component.d.ts +14 -17
- package/lib/figma/geo-textarea/geo-textarea.component.d.ts +15 -13
- package/lib/figma/geo-toast/geo-toast.component.d.ts +11 -12
- package/lib/figma/geo-tree/geo-tree.component.d.ts +8 -13
- package/lib/figma/geo-typography/geo-typography.component.d.ts +13 -13
- package/lib/figma/geo-upload/geo-upload.component.d.ts +26 -28
- package/lib/figma/index.d.ts +49 -0
- package/lib/styles/tokens.d.ts +56 -23
- package/package.json +4 -2
- package/src/lib/figma/geo-map/assets/toolbar/fullscreen.svg +8 -0
- package/src/lib/figma/geo-map/assets/toolbar/home.svg +3 -0
- package/src/lib/figma/geo-map/assets/toolbar/layers.svg +3 -0
- package/src/lib/figma/geo-map/assets/toolbar/measure-area.svg +12 -0
- package/src/lib/figma/geo-map/assets/toolbar/measure-distance.svg +5 -0
- package/src/lib/figma/geo-map/assets/toolbar/pan.svg +13 -0
- package/src/lib/figma/geo-map/assets/toolbar/search.svg +3 -0
- package/src/lib/figma/geo-map/assets/toolbar/zoom-in.svg +3 -0
- package/src/lib/figma/geo-map/assets/toolbar/zoom-out.svg +5 -0
- package/src/lib/styles/design-tokens.scss +108 -35
- package/src/lib/styles/scrollbar.scss +2 -2
- package/src/lib/styles/theme.scss +1 -1
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# geo-stat-card
|
|
2
|
+
|
|
3
|
+
> Complete usage reference for **GeoStatCardComponent** (`@geoit/ui`)
|
|
4
|
+
>
|
|
5
|
+
> Read this file before using the component. Use **only** the Inputs/Outputs listed here.
|
|
6
|
+
|
|
7
|
+
## Summary
|
|
8
|
+
GeoStatCardComponent
|
|
9
|
+
|
|
10
|
+
## Import
|
|
11
|
+
|
|
12
|
+
```ts
|
|
13
|
+
import { GeoStatCardComponent } from '@geoit/ui';
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Add to the consuming standalone component:
|
|
17
|
+
|
|
18
|
+
```ts
|
|
19
|
+
imports: [GeoStatCardComponent]
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Selector
|
|
23
|
+
`geo-stat-card`
|
|
24
|
+
|
|
25
|
+
## Category
|
|
26
|
+
`other`
|
|
27
|
+
|
|
28
|
+
## When to use
|
|
29
|
+
—
|
|
30
|
+
|
|
31
|
+
## Do not use when
|
|
32
|
+
—
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Binding
|
|
36
|
+
|
|
37
|
+
Standalone component — drive via Inputs (`input()` / `model()`) and Outputs (`output()`). Banana bindings work for any `model()` fields (e.g. `[(open)]`, `[(pageIndex)]`).
|
|
38
|
+
|
|
39
|
+
## Inputs
|
|
40
|
+
|
|
41
|
+
Every supported Input (do not invent others):
|
|
42
|
+
|
|
43
|
+
| Input | Type | Default | Description |
|
|
44
|
+
|-------|------|---------|-------------|
|
|
45
|
+
| `label` | `string` | `''` | — |
|
|
46
|
+
| `value` | `string \| number` | `''` | — |
|
|
47
|
+
| `unit` | `string` | `''` | — |
|
|
48
|
+
| `icon` | `string` | `'bar-chart'` | — |
|
|
49
|
+
| `hint` | `string` | `''` | — |
|
|
50
|
+
| `clickable` | `boolean` | `false` | — |
|
|
51
|
+
| `animate` | `boolean` | `true` | Count-up number animation. Honors `prefers-reduced-motion`. |
|
|
52
|
+
| `animationDuration` | `number` | `1000` | Count-up duration in ms. |
|
|
53
|
+
| `animationDelay` | `number` | `0` | Stagger delay before count-up starts (ms). |
|
|
54
|
+
| `item` | `GeoStatCardItem \| null` | `null` | Convenience: bind a whole item object. |
|
|
55
|
+
|
|
56
|
+
## Outputs
|
|
57
|
+
|
|
58
|
+
| Output | Payload | Description |
|
|
59
|
+
|--------|---------|-------------|
|
|
60
|
+
| `clicked` | `OutputEmitterRef<void>` | — |
|
|
61
|
+
|
|
62
|
+
## Related types
|
|
63
|
+
|
|
64
|
+
From `figma/geo-stat-card/geo-stat-card.types.ts`:
|
|
65
|
+
|
|
66
|
+
```ts
|
|
67
|
+
export interface GeoStatCardItem {
|
|
68
|
+
id?: string;
|
|
69
|
+
label: string;
|
|
70
|
+
value: string | number;
|
|
71
|
+
/** Optional unit shown after value (e.g. m², thửa). */
|
|
72
|
+
unit?: string;
|
|
73
|
+
/** Ant Design icon name. */
|
|
74
|
+
icon?: string;
|
|
75
|
+
/** Optional helper / trend text. */
|
|
76
|
+
hint?: string;
|
|
77
|
+
}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Examples
|
|
81
|
+
|
|
82
|
+
### Example
|
|
83
|
+
|
|
84
|
+
```html
|
|
85
|
+
<geo-stat-card></geo-stat-card>
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Package path
|
|
89
|
+
`node_modules/@geoit/ui/ai/components/geo-stat-card.md`
|
|
90
|
+
|
|
91
|
+
## Source
|
|
92
|
+
`projects/geo-ui/src/lib/figma/geo-stat-card/geo-stat-card.component.ts`
|
|
93
|
+
|
|
94
|
+
## Rules for AI / consumers
|
|
95
|
+
- Prefer this component over raw ng-zorro / HTML for the same UI role.
|
|
96
|
+
- Use design tokens (`var(--geo-*)`) — never hardcode brand colors or radius.
|
|
97
|
+
- Match props exactly to the Inputs table; do not invent unsupported inputs.
|
|
98
|
+
- Copy examples and adapt labels/bindings only.
|
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
# geo-status-tag
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Complete usage reference for **GeoStatusTagComponent** (`@geoit/ui`)
|
|
4
|
+
>
|
|
5
|
+
> Read this file before using the component. Use **only** the Inputs/Outputs listed here.
|
|
4
6
|
|
|
5
7
|
## Summary
|
|
6
8
|
Pill status tag with optional dot (success/error/warning/info/teal/…).
|
|
7
9
|
|
|
8
10
|
## Import
|
|
11
|
+
|
|
9
12
|
```ts
|
|
10
13
|
import { GeoStatusTagComponent } from '@geoit/ui';
|
|
11
14
|
```
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
Add to the consuming standalone component:
|
|
17
|
+
|
|
18
|
+
```ts
|
|
19
|
+
imports: [GeoStatusTagComponent]
|
|
20
|
+
```
|
|
14
21
|
|
|
15
22
|
## Selector
|
|
16
23
|
`geo-status-tag`
|
|
@@ -24,28 +31,73 @@ Status in tables, cards, lists.
|
|
|
24
31
|
## Do not use when
|
|
25
32
|
Clickable filters — use button/tabs.
|
|
26
33
|
|
|
34
|
+
## How to use
|
|
35
|
+
|
|
36
|
+
Tag trạng thái (dot + label). status preset success|primary|error|warning|info|teal|neutral (hoặc legacy completed|cancelled|…); [label] ghi đè text.
|
|
37
|
+
|
|
38
|
+
## Binding
|
|
39
|
+
|
|
40
|
+
Standalone component — drive via Inputs (`input()` / `model()`) and Outputs (`output()`). Banana bindings work for any `model()` fields (e.g. `[(open)]`, `[(pageIndex)]`).
|
|
41
|
+
|
|
27
42
|
## Inputs
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
|
32
|
-
|
|
43
|
+
|
|
44
|
+
Every supported Input (do not invent others):
|
|
45
|
+
|
|
46
|
+
| Input | Type | Default | Description |
|
|
47
|
+
|-------|------|---------|-------------|
|
|
48
|
+
| `status` | `GeoStatusPreset \| string` | `'success'` | Status preset or free-form string. Semantic: success \| primary \| error \| warning \| info \| teal \| neutral Legacy: completed \| cancelled \| in_progress \| adjusting |
|
|
49
|
+
| `label` | `string \| undefined` | `undefined` | Override label text. |
|
|
50
|
+
| `showDot` | `boolean` | `true` | Show leading status dot (design default). |
|
|
33
51
|
|
|
34
52
|
## Outputs
|
|
53
|
+
|
|
35
54
|
_None_
|
|
36
55
|
|
|
37
|
-
##
|
|
56
|
+
## Related types
|
|
57
|
+
|
|
58
|
+
From `figma/geo-status-tag/geo-status-tag.types.ts`:
|
|
59
|
+
|
|
60
|
+
```ts
|
|
61
|
+
export type GeoStatusColor = 'success' | 'primary' | 'error' | 'warning' | 'info' | 'teal' | 'neutral';
|
|
62
|
+
|
|
63
|
+
export type GeoStatusPreset = GeoStatusColor | 'completed' | 'cancelled' | 'in_progress' | 'adjusting';
|
|
64
|
+
|
|
65
|
+
export const UI_STATUS_LABELS = GEO_STATUS_LABELS;
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Examples
|
|
69
|
+
|
|
70
|
+
### Basic
|
|
71
|
+
|
|
72
|
+
```html
|
|
73
|
+
<geo-status-tag status="success" label="Đã duyệt"></geo-status-tag>
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Full options
|
|
77
|
+
|
|
38
78
|
```html
|
|
39
|
-
<geo-status-tag status="
|
|
79
|
+
<geo-status-tag status="warning" label="Chờ xử lý" [showDot]="true"></geo-status-tag>
|
|
80
|
+
<geo-status-tag status="error" label="Từ chối"></geo-status-tag>
|
|
81
|
+
<geo-status-tag status="in_progress" label="Đang xử lý"></geo-status-tag>
|
|
40
82
|
```
|
|
41
83
|
|
|
84
|
+
## Tips
|
|
85
|
+
|
|
86
|
+
- Trong bảng dùng cột renderAs: 'status'.
|
|
87
|
+
- Không dùng làm filter clickable.
|
|
88
|
+
- showDot mặc định true.
|
|
89
|
+
## Related components
|
|
90
|
+
|
|
91
|
+
- [`geo-table`](./geo-table.md)
|
|
92
|
+
- [`geo-typography`](./geo-typography.md)
|
|
93
|
+
## Package path
|
|
94
|
+
`node_modules/@geoit/ui/ai/components/geo-status-tag.md`
|
|
95
|
+
|
|
42
96
|
## Source
|
|
43
97
|
`projects/geo-ui/src/lib/figma/geo-status-tag/geo-status-tag.component.ts`
|
|
44
98
|
|
|
45
|
-
##
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
## Rules for AI
|
|
49
|
-
- Prefer this component over raw ng-zorro / HTML equivalents for the same UI role.
|
|
99
|
+
## Rules for AI / consumers
|
|
100
|
+
- Prefer this component over raw ng-zorro / HTML for the same UI role.
|
|
50
101
|
- Use design tokens (`var(--geo-*)`) — never hardcode brand colors or radius.
|
|
51
|
-
- Match props to
|
|
102
|
+
- Match props exactly to the Inputs table; do not invent unsupported inputs.
|
|
103
|
+
- Copy examples and adapt labels/bindings only.
|
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
# geo-step-form-layout
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Complete usage reference for **GeoStepFormLayoutComponent** (`@geoit/ui`)
|
|
4
|
+
>
|
|
5
|
+
> Read this file before using the component. Use **only** the Inputs/Outputs listed here.
|
|
4
6
|
|
|
5
7
|
## Summary
|
|
6
8
|
Full-page multi-step form: vertical stepper + content card + footer actions.
|
|
7
9
|
|
|
8
10
|
## Import
|
|
11
|
+
|
|
9
12
|
```ts
|
|
10
13
|
import { GeoStepFormLayoutComponent } from '@geoit/ui';
|
|
11
14
|
```
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
Add to the consuming standalone component:
|
|
17
|
+
|
|
18
|
+
```ts
|
|
19
|
+
imports: [GeoStepFormLayoutComponent]
|
|
20
|
+
```
|
|
14
21
|
|
|
15
22
|
## Selector
|
|
16
23
|
`geo-step-form-layout`
|
|
@@ -24,38 +31,66 @@ Long registration / create wizards as a page.
|
|
|
24
31
|
## Do not use when
|
|
25
32
|
Dialogs — use geo-form-modal + geo-stepper.
|
|
26
33
|
|
|
34
|
+
## How to use
|
|
35
|
+
|
|
36
|
+
Wizard full-page: stepper dọc + card nội dung + footer Hủy/Trở lại/Lưu/Tiếp theo. [steps] + [activeIndex]; (next)/(previous)/(save)/(cancel).
|
|
37
|
+
|
|
38
|
+
## Binding
|
|
39
|
+
|
|
40
|
+
Standalone component — drive via Inputs (`input()` / `model()`) and Outputs (`output()`). Banana bindings work for any `model()` fields (e.g. `[(open)]`, `[(pageIndex)]`).
|
|
41
|
+
|
|
27
42
|
## Inputs
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
|
32
|
-
|
|
33
|
-
| `
|
|
34
|
-
| `
|
|
35
|
-
| `
|
|
36
|
-
| `
|
|
37
|
-
| `
|
|
38
|
-
| `
|
|
39
|
-
| `
|
|
40
|
-
| `
|
|
41
|
-
| `
|
|
42
|
-
| `
|
|
43
|
-
| `
|
|
44
|
-
| `
|
|
45
|
-
| `
|
|
46
|
-
| `
|
|
43
|
+
|
|
44
|
+
Every supported Input (do not invent others):
|
|
45
|
+
|
|
46
|
+
| Input | Type | Default | Description |
|
|
47
|
+
|-------|------|---------|-------------|
|
|
48
|
+
| `steps` | `GeoStepperStep[]` | `[]` | — |
|
|
49
|
+
| `activeIndex` | `number` | `0` | Two-way `model()` (supports banana binding). |
|
|
50
|
+
| `title` | `string` | `''` | — |
|
|
51
|
+
| `clickableSteps` | `boolean` | `true` | — |
|
|
52
|
+
| `showScrollButtons` | `boolean` | `true` | Hiện nút ↑/↓ góc phải card (chuyển bước). Mặc định `true`. |
|
|
53
|
+
| `showCancel` | `boolean` | `true` | — |
|
|
54
|
+
| `showPrevious` | `boolean` | `true` | — |
|
|
55
|
+
| `showSave` | `boolean` | `true` | — |
|
|
56
|
+
| `showNext` | `boolean` | `true` | — |
|
|
57
|
+
| `cancelLabel` | `string` | `'Hủy'` | — |
|
|
58
|
+
| `previousLabel` | `string` | `'Trở lại'` | — |
|
|
59
|
+
| `saveLabel` | `string` | `'Lưu'` | — |
|
|
60
|
+
| `nextLabel` | `string` | `'Tiếp theo'` | — |
|
|
61
|
+
| `finishLabel` | `string` | `'Hoàn thành'` | — |
|
|
62
|
+
| `saveLoading` | `boolean` | `false` | — |
|
|
63
|
+
| `nextLoading` | `boolean` | `false` | — |
|
|
64
|
+
| `hideDefaultFooter` | `boolean` | `false` | Ẩn footer actions (dùng slot `[footer]` hoặc không cần nút). |
|
|
47
65
|
|
|
48
66
|
## Outputs
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
| `stepSelect` |
|
|
53
|
-
| `cancel` |
|
|
54
|
-
| `previous` |
|
|
55
|
-
| `save` |
|
|
56
|
-
| `next` |
|
|
57
|
-
|
|
58
|
-
##
|
|
67
|
+
|
|
68
|
+
| Output | Payload | Description |
|
|
69
|
+
|--------|---------|-------------|
|
|
70
|
+
| `stepSelect` | `OutputEmitterRef<{ index: number; step: GeoStepperStep }>` | — |
|
|
71
|
+
| `cancel` | `OutputEmitterRef<void>` | — |
|
|
72
|
+
| `previous` | `OutputEmitterRef<void>` | — |
|
|
73
|
+
| `save` | `OutputEmitterRef<void>` | — |
|
|
74
|
+
| `next` | `OutputEmitterRef<void>` | — |
|
|
75
|
+
|
|
76
|
+
## Related types
|
|
77
|
+
|
|
78
|
+
From `figma/geo-step-form-layout/geo-step-form-layout.types.ts`:
|
|
79
|
+
|
|
80
|
+
```ts
|
|
81
|
+
export interface GeoStepFormLayoutLabels {
|
|
82
|
+
back?: string;
|
|
83
|
+
cancel?: string;
|
|
84
|
+
save?: string;
|
|
85
|
+
next?: string;
|
|
86
|
+
finish?: string;
|
|
87
|
+
}
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Examples
|
|
91
|
+
|
|
92
|
+
### Basic
|
|
93
|
+
|
|
59
94
|
```html
|
|
60
95
|
<geo-step-form-layout
|
|
61
96
|
title="Thêm mới"
|
|
@@ -65,17 +100,65 @@ Dialogs — use geo-form-modal + geo-stepper.
|
|
|
65
100
|
(previous)="goPrev()"
|
|
66
101
|
(cancel)="cancel()"
|
|
67
102
|
>
|
|
68
|
-
<!--
|
|
103
|
+
<!-- nội dung bước -->
|
|
104
|
+
</geo-step-form-layout>
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### Full options
|
|
108
|
+
|
|
109
|
+
```html
|
|
110
|
+
<geo-step-form-layout
|
|
111
|
+
title="Đăng ký khai thác"
|
|
112
|
+
[steps]="[
|
|
113
|
+
{ key: 'info', label: '1. Thông tin' },
|
|
114
|
+
{ key: 'files', label: '2. Tài liệu' },
|
|
115
|
+
{ key: 'confirm', label: '3. Xác nhận' }
|
|
116
|
+
]"
|
|
117
|
+
[activeIndex]="activeIndex"
|
|
118
|
+
[clickableSteps]="true"
|
|
119
|
+
[showScrollButtons]="true"
|
|
120
|
+
[showCancel]="true"
|
|
121
|
+
[showPrevious]="true"
|
|
122
|
+
[showSave]="true"
|
|
123
|
+
[showNext]="true"
|
|
124
|
+
cancelLabel="Hủy"
|
|
125
|
+
previousLabel="Trở lại"
|
|
126
|
+
saveLabel="Lưu"
|
|
127
|
+
nextLabel="Tiếp theo"
|
|
128
|
+
finishLabel="Hoàn thành"
|
|
129
|
+
[saveLoading]="saving"
|
|
130
|
+
[nextLoading]="validating"
|
|
131
|
+
(activeIndexChange)="activeIndex = $event"
|
|
132
|
+
(stepSelect)="onStep($event)"
|
|
133
|
+
(cancel)="onCancel()"
|
|
134
|
+
(previous)="goPrev()"
|
|
135
|
+
(save)="onSave()"
|
|
136
|
+
(next)="goNext()"
|
|
137
|
+
>
|
|
138
|
+
@if (activeIndex === 0) {
|
|
139
|
+
<geo-input label="Tên hồ sơ" [block]="true" [(ngModel)]="name"></geo-input>
|
|
140
|
+
}
|
|
69
141
|
</geo-step-form-layout>
|
|
70
142
|
```
|
|
71
143
|
|
|
144
|
+
## Tips
|
|
145
|
+
|
|
146
|
+
- Dialog multi-step → geo-form-modal + geo-stepper.
|
|
147
|
+
- finishLabel hiện khi bước cuối (thay nextLabel).
|
|
148
|
+
- hideDefaultFooter nếu tự render footer.
|
|
149
|
+
## Related components
|
|
150
|
+
|
|
151
|
+
- [`geo-stepper`](./geo-stepper.md)
|
|
152
|
+
- [`geo-form-modal`](./geo-form-modal.md)
|
|
153
|
+
- [`geo-button`](./geo-button.md)
|
|
154
|
+
## Package path
|
|
155
|
+
`node_modules/@geoit/ui/ai/components/geo-step-form-layout.md`
|
|
156
|
+
|
|
72
157
|
## Source
|
|
73
158
|
`projects/geo-ui/src/lib/figma/geo-step-form-layout/geo-step-form-layout.component.ts`
|
|
74
159
|
|
|
75
|
-
##
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
## Rules for AI
|
|
79
|
-
- Prefer this component over raw ng-zorro / HTML equivalents for the same UI role.
|
|
160
|
+
## Rules for AI / consumers
|
|
161
|
+
- Prefer this component over raw ng-zorro / HTML for the same UI role.
|
|
80
162
|
- Use design tokens (`var(--geo-*)`) — never hardcode brand colors or radius.
|
|
81
|
-
- Match props to
|
|
163
|
+
- Match props exactly to the Inputs table; do not invent unsupported inputs.
|
|
164
|
+
- Copy examples and adapt labels/bindings only.
|
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
# geo-stepper
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Complete usage reference for **GeoStepperComponent** (`@geoit/ui`)
|
|
4
|
+
>
|
|
5
|
+
> Read this file before using the component. Use **only** the Inputs/Outputs listed here.
|
|
4
6
|
|
|
5
7
|
## Summary
|
|
6
8
|
Steps indicator (horizontal default). Active=primary, completed=success+check.
|
|
7
9
|
|
|
8
10
|
## Import
|
|
11
|
+
|
|
9
12
|
```ts
|
|
10
13
|
import { GeoStepperComponent } from '@geoit/ui';
|
|
11
14
|
```
|
|
12
15
|
|
|
13
|
-
|
|
16
|
+
Add to the consuming standalone component:
|
|
17
|
+
|
|
18
|
+
```ts
|
|
19
|
+
imports: [GeoStepperComponent]
|
|
20
|
+
```
|
|
14
21
|
|
|
15
22
|
## Selector
|
|
16
23
|
`geo-stepper`
|
|
@@ -24,21 +31,52 @@ Multi-step flows; place inside geo-form-modal body or pages.
|
|
|
24
31
|
## Do not use when
|
|
25
32
|
Tabs for peer sections — use geo-tabs.
|
|
26
33
|
|
|
34
|
+
## How to use
|
|
35
|
+
|
|
36
|
+
Chỉ báo bước. [steps] {key,label}[]; [activeIndex]; orientation horizontal|vertical. Active=primary, completed=success+check.
|
|
37
|
+
|
|
38
|
+
## Binding
|
|
39
|
+
|
|
40
|
+
Standalone component — drive via Inputs (`input()` / `model()`) and Outputs (`output()`). Banana bindings work for any `model()` fields (e.g. `[(open)]`, `[(pageIndex)]`).
|
|
41
|
+
|
|
27
42
|
## Inputs
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
|
32
|
-
|
|
33
|
-
| `
|
|
43
|
+
|
|
44
|
+
Every supported Input (do not invent others):
|
|
45
|
+
|
|
46
|
+
| Input | Type | Default | Description |
|
|
47
|
+
|-------|------|---------|-------------|
|
|
48
|
+
| `steps` | `GeoStepperStep[]` | `[]` | — |
|
|
49
|
+
| `activeIndex` | `number` | `0` | Two-way `model()` (supports banana binding). |
|
|
50
|
+
| `orientation` | `'vertical' \| 'horizontal'` | `'horizontal'` | Mặc định horizontal theo design form modal. |
|
|
51
|
+
| `clickable` | `boolean` | `true` | Cho phép click để đổi bước. |
|
|
34
52
|
|
|
35
53
|
## Outputs
|
|
36
|
-
| Output | Notes |
|
|
37
|
-
|--------|-------|
|
|
38
|
-
| `activeIndexChange` | EventEmitter |
|
|
39
|
-
| `stepSelect` | EventEmitter |
|
|
40
54
|
|
|
41
|
-
|
|
55
|
+
| Output | Payload | Description |
|
|
56
|
+
|--------|---------|-------------|
|
|
57
|
+
| `stepSelect` | `OutputEmitterRef<{ index: number; step: GeoStepperStep }>` | — |
|
|
58
|
+
|
|
59
|
+
## Related types
|
|
60
|
+
|
|
61
|
+
From `figma/geo-stepper/geo-stepper.types.ts`:
|
|
62
|
+
|
|
63
|
+
```ts
|
|
64
|
+
export interface GeoStepperStep {
|
|
65
|
+
/** Unique key (optional). */
|
|
66
|
+
key?: string;
|
|
67
|
+
/** Label hiển thị bên cạnh số bước. */
|
|
68
|
+
label: string;
|
|
69
|
+
/** Disable click chọn bước. */
|
|
70
|
+
disabled?: boolean;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export type GeoStepperOrientation = 'vertical' | 'horizontal';
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Examples
|
|
77
|
+
|
|
78
|
+
### Basic
|
|
79
|
+
|
|
42
80
|
```html
|
|
43
81
|
<geo-stepper
|
|
44
82
|
[steps]="[
|
|
@@ -51,13 +89,37 @@ Tabs for peer sections — use geo-tabs.
|
|
|
51
89
|
></geo-stepper>
|
|
52
90
|
```
|
|
53
91
|
|
|
92
|
+
### Full options
|
|
93
|
+
|
|
94
|
+
```html
|
|
95
|
+
<geo-stepper
|
|
96
|
+
[steps]="steps"
|
|
97
|
+
[activeIndex]="activeIndex"
|
|
98
|
+
orientation="vertical"
|
|
99
|
+
[clickable]="true"
|
|
100
|
+
(activeIndexChange)="activeIndex = $event"
|
|
101
|
+
(stepSelect)="onStepSelect($event)"
|
|
102
|
+
></geo-stepper>
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Tips
|
|
106
|
+
|
|
107
|
+
- Trong dialog: đặt trong geo-form-modal body.
|
|
108
|
+
- Wizard trang: dùng geo-step-form-layout.
|
|
109
|
+
- clickable=false khi bắt buộc đi tuần tự.
|
|
110
|
+
## Related components
|
|
111
|
+
|
|
112
|
+
- [`geo-form-modal`](./geo-form-modal.md)
|
|
113
|
+
- [`geo-step-form-layout`](./geo-step-form-layout.md)
|
|
114
|
+
- [`geo-tabs`](./geo-tabs.md)
|
|
115
|
+
## Package path
|
|
116
|
+
`node_modules/@geoit/ui/ai/components/geo-stepper.md`
|
|
117
|
+
|
|
54
118
|
## Source
|
|
55
119
|
`projects/geo-ui/src/lib/figma/geo-stepper/geo-stepper.component.ts`
|
|
56
120
|
|
|
57
|
-
##
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
## Rules for AI
|
|
61
|
-
- Prefer this component over raw ng-zorro / HTML equivalents for the same UI role.
|
|
121
|
+
## Rules for AI / consumers
|
|
122
|
+
- Prefer this component over raw ng-zorro / HTML for the same UI role.
|
|
62
123
|
- Use design tokens (`var(--geo-*)`) — never hardcode brand colors or radius.
|
|
63
|
-
- Match props to
|
|
124
|
+
- Match props exactly to the Inputs table; do not invent unsupported inputs.
|
|
125
|
+
- Copy examples and adapt labels/bindings only.
|