rich-react-component 0.2.0 → 0.3.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/LICENSE +21 -21
- package/README.md +314 -120
- package/dist/base/Appearance.d.ts +116 -0
- package/dist/base/AppearanceMenu.d.ts +65 -0
- package/dist/base/Badge.d.ts +8 -1
- package/dist/base/Button.d.ts +9 -1
- package/dist/base/Sidebar.d.ts +111 -21
- package/dist/base/Tag.d.ts +4 -2
- package/dist/base/Tooltip.d.ts +8 -1
- package/dist/base/appearanceSchemes.d.ts +92 -0
- package/dist/base/index.d.ts +4 -0
- package/dist/base/sidebarModel.d.ts +171 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +0 -15
- package/dist/index.js +2211 -1333
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -0
- package/package.json +72 -68
package/dist/index.d.ts
CHANGED
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Public entry point.
|
|
3
|
-
*
|
|
4
|
-
* Layering (doc section 17):
|
|
5
|
-
* Base — no dependency on Remote or Smart.
|
|
6
|
-
* Remote — may depend on Base, must not depend on Smart.
|
|
7
|
-
* Smart — metadata-driven layer, approved architecture, Phases 1-5
|
|
8
|
-
* complete: metadata types + registries + the headless
|
|
9
|
-
* useSmartField/useSmartDependencies engine (1), built-in
|
|
10
|
-
* Input/ComboBox/DatePicker resolvers + SmartField (2),
|
|
11
|
-
* SmartForm (3), a built-in DataGrid resolver (4), and
|
|
12
|
-
* useSmartAction/SmartAction/SmartActions plus localized
|
|
13
|
-
* DataGrid boolean formatting (5). See the "Smart Components"
|
|
14
|
-
* design doc for the full plan.
|
|
15
|
-
*/
|
|
16
1
|
export * from './base';
|
|
17
2
|
export * from './remote';
|
|
18
3
|
export * from './smart';
|