@genesislcap/rapid-grid-pro 14.136.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/README.md +8 -0
- package/custom-elements-manifest.config.js +14 -0
- package/dist/custom-elements.json +4305 -0
- package/dist/dts/cell-editors/date.editor.d.ts +23 -0
- package/dist/dts/cell-editors/date.editor.d.ts.map +1 -0
- package/dist/dts/cell-editors/index.d.ts +6 -0
- package/dist/dts/cell-editors/index.d.ts.map +1 -0
- package/dist/dts/cell-editors/multiselect.editor.d.ts +23 -0
- package/dist/dts/cell-editors/multiselect.editor.d.ts.map +1 -0
- package/dist/dts/cell-editors/number.editor.d.ts +23 -0
- package/dist/dts/cell-editors/number.editor.d.ts.map +1 -0
- package/dist/dts/cell-editors/select.editor.d.ts +23 -0
- package/dist/dts/cell-editors/select.editor.d.ts.map +1 -0
- package/dist/dts/cell-editors/string.editor.d.ts +23 -0
- package/dist/dts/cell-editors/string.editor.d.ts.map +1 -0
- package/dist/dts/cell-renderers/action.renderer.d.ts +23 -0
- package/dist/dts/cell-renderers/action.renderer.d.ts.map +1 -0
- package/dist/dts/cell-renderers/actions-menu.renderer.d.ts +21 -0
- package/dist/dts/cell-renderers/actions-menu.renderer.d.ts.map +1 -0
- package/dist/dts/cell-renderers/boolean.renderer.d.ts +23 -0
- package/dist/dts/cell-renderers/boolean.renderer.d.ts.map +1 -0
- package/dist/dts/cell-renderers/editable.renderer.d.ts +23 -0
- package/dist/dts/cell-renderers/editable.renderer.d.ts.map +1 -0
- package/dist/dts/cell-renderers/index.d.ts +7 -0
- package/dist/dts/cell-renderers/index.d.ts.map +1 -0
- package/dist/dts/cell-renderers/select.renderer.d.ts +23 -0
- package/dist/dts/cell-renderers/select.renderer.d.ts.map +1 -0
- package/dist/dts/cell-renderers/text.renderer.d.ts +23 -0
- package/dist/dts/cell-renderers/text.renderer.d.ts.map +1 -0
- package/dist/dts/grid-components.d.ts +113 -0
- package/dist/dts/grid-components.d.ts.map +1 -0
- package/dist/dts/grid-pro.d.ts +34 -0
- package/dist/dts/grid-pro.d.ts.map +1 -0
- package/dist/dts/grid-pro.styles.d.ts +2 -0
- package/dist/dts/grid-pro.styles.d.ts.map +1 -0
- package/dist/dts/grid-pro.template.d.ts +2 -0
- package/dist/dts/grid-pro.template.d.ts.map +1 -0
- package/dist/dts/grid-pro.types.d.ts +168 -0
- package/dist/dts/grid-pro.types.d.ts.map +1 -0
- package/dist/dts/index.d.ts +10 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/dts/index.federated.d.ts +1 -0
- package/dist/dts/index.federated.d.ts.map +1 -0
- package/dist/dts/style/colors.d.ts +16 -0
- package/dist/dts/style/colors.d.ts.map +1 -0
- package/dist/dts/style/index.d.ts +3 -0
- package/dist/dts/style/index.d.ts.map +1 -0
- package/dist/dts/style/tokens.d.ts +9 -0
- package/dist/dts/style/tokens.d.ts.map +1 -0
- package/dist/dts/themes/genesis-rapid/ag-theme-genesis-rapid-css.d.ts +2 -0
- package/dist/dts/themes/genesis-rapid/ag-theme-genesis-rapid-css.d.ts.map +1 -0
- package/dist/dts/themes/genesis-rapid/ag-theme-genesis-rapid.d.ts +8 -0
- package/dist/dts/themes/genesis-rapid/ag-theme-genesis-rapid.d.ts.map +1 -0
- package/dist/dts/themes/index.d.ts +2 -0
- package/dist/dts/themes/index.d.ts.map +1 -0
- package/dist/esm/cell-editors/date.editor.js +18 -0
- package/dist/esm/cell-editors/index.js +5 -0
- package/dist/esm/cell-editors/multiselect.editor.js +18 -0
- package/dist/esm/cell-editors/number.editor.js +18 -0
- package/dist/esm/cell-editors/select.editor.js +18 -0
- package/dist/esm/cell-editors/string.editor.js +18 -0
- package/dist/esm/cell-renderers/action.renderer.js +39 -0
- package/dist/esm/cell-renderers/actions-menu.renderer.js +23 -0
- package/dist/esm/cell-renderers/boolean.renderer.js +18 -0
- package/dist/esm/cell-renderers/editable.renderer.js +18 -0
- package/dist/esm/cell-renderers/index.js +6 -0
- package/dist/esm/cell-renderers/select.renderer.js +18 -0
- package/dist/esm/cell-renderers/text.renderer.js +18 -0
- package/dist/esm/grid-components.js +30 -0
- package/dist/esm/grid-pro.js +56 -0
- package/dist/esm/grid-pro.styles.js +16 -0
- package/dist/esm/grid-pro.template.js +2 -0
- package/dist/esm/grid-pro.types.js +162 -0
- package/dist/esm/index.federated.js +1 -0
- package/dist/esm/index.js +9 -0
- package/dist/esm/style/colors.js +16 -0
- package/dist/esm/style/index.js +2 -0
- package/dist/esm/style/tokens.js +21 -0
- package/dist/esm/themes/genesis-rapid/ag-theme-genesis-rapid-css.js +462 -0
- package/dist/esm/themes/genesis-rapid/ag-theme-genesis-rapid.js +82 -0
- package/dist/esm/themes/index.js +1 -0
- package/genx.config.ts +11 -0
- package/license.txt +46 -0
- package/package.json +59 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DateEditor } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-date-editor
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidDateEditor extends DateEditor {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Date editor
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-date-editor\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgDateEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<DateEditor, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<DateEditor, any>;
|
|
22
|
+
}, typeof RapidDateEditor>;
|
|
23
|
+
//# sourceMappingURL=date.editor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"date.editor.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/date.editor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAA6C,MAAM,uBAAuB,CAAC;AAE9F;;GAEG;AACH,qBAAa,eAAgB,SAAQ,UAAU;CAAG;AAElD;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;0BAI5B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { MultiselectEditor } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-multiselect-editor
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidMultiselectEditor extends MultiselectEditor {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Multiselect editor
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-multiselect-editor\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgMultiselectEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<MultiselectEditor, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<MultiselectEditor, any>;
|
|
22
|
+
}, typeof RapidMultiselectEditor>;
|
|
23
|
+
//# sourceMappingURL=multiselect.editor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"multiselect.editor.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/multiselect.editor.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAElB,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,qBAAa,sBAAuB,SAAQ,iBAAiB;CAAG;AAEhE;;;;;;GAMG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;iCAInC,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { NumberEditor } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-number-editor
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidNumberEditor extends NumberEditor {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Number editor
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-number-editor\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgNumberEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<NumberEditor, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<NumberEditor, any>;
|
|
22
|
+
}, typeof RapidNumberEditor>;
|
|
23
|
+
//# sourceMappingURL=number.editor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number.editor.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/number.editor.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,YAAY,EAAwB,MAAM,uBAAuB,CAAC;AAEpG;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,YAAY;CAAG;AAEtD;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;4BAI9B,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { SelectEditor } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-select-editor
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidSelectEditor extends SelectEditor {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Select editor
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-select-editor\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgSelectEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<SelectEditor, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<SelectEditor, any>;
|
|
22
|
+
}, typeof RapidSelectEditor>;
|
|
23
|
+
//# sourceMappingURL=select.editor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.editor.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/select.editor.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,YAAY,EAAwB,MAAM,uBAAuB,CAAC;AAEpG;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,YAAY;CAAG;AAEtD;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;4BAI9B,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { StringEditor } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-string-editor
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidStringEditor extends StringEditor {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid String editor
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-string-editor\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgStringEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<StringEditor, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<StringEditor, any>;
|
|
22
|
+
}, typeof RapidStringEditor>;
|
|
23
|
+
//# sourceMappingURL=string.editor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"string.editor.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/string.editor.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,YAAY,EAAwB,MAAM,uBAAuB,CAAC;AAEpG;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,YAAY;CAAG;AAEtD;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;4BAI9B,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ActionRenderer } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-grid-pro-action-renderer
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidAgActionRenderer extends ActionRenderer {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Action Renderer
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-grid-pro-action-renderer\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgActionRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<RapidAgActionRenderer, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<RapidAgActionRenderer, any>;
|
|
22
|
+
}, typeof RapidAgActionRenderer>;
|
|
23
|
+
//# sourceMappingURL=action.renderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/action.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAA0B,MAAM,uBAAuB,CAAC;AAG/E;;GAEG;AACH,qBAAa,qBAAsB,SAAQ,cAAc;CAAG;AAE5D;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;gCAyBhC,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ActionsMenuRenderer } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-grid-pro-actions-menu-renderer
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidAgActionsMenuRenderer extends ActionsMenuRenderer {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Ag Actions Menu Renderer
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-grid-pro-actions-menu-renderer\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgActionsMenuRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
17
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
18
|
+
baseName: string;
|
|
19
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
20
|
+
}, typeof RapidAgActionsMenuRenderer>;
|
|
21
|
+
//# sourceMappingURL=actions-menu.renderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"actions-menu.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/actions-menu.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAG5D;;GAEG;AACH,qBAAa,0BAA2B,SAAQ,mBAAmB;CAAG;AAEtE;;;;;;GAMG;AACH,eAAO,MAAM,0BAA0B;;;;;;qCAQrC,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { BooleanRenderer } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-boolean-renderer
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidBooleanRenderer extends BooleanRenderer {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Ag Boolean Renderer
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-boolean-renderer\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgBooleanRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<BooleanRenderer, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<BooleanRenderer, any>;
|
|
22
|
+
}, typeof RapidBooleanRenderer>;
|
|
23
|
+
//# sourceMappingURL=boolean.renderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"boolean.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/boolean.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EAGhB,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,qBAAa,oBAAqB,SAAQ,eAAe;CAAG;AAE5D;;;;;;GAMG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;+BAIjC,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EditableRenderer } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-editable-renderer
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidEditableRenderer extends EditableRenderer {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Ag Editable Renderer
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-editable-renderer\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgEditableRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<EditableRenderer, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<EditableRenderer, any>;
|
|
22
|
+
}, typeof RapidEditableRenderer>;
|
|
23
|
+
//# sourceMappingURL=editable.renderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"editable.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/editable.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,gBAAgB,EAEjB,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,qBAAa,qBAAsB,SAAQ,gBAAgB;CAAG;AAE9D;;;;;;GAMG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;gCAIlC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { SelectRenderer as FoundationAgSelectRenderer } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-select-renderer
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidAgSelectRenderer extends FoundationAgSelectRenderer {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Select Renderer
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-select-renderer\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgSelectRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
22
|
+
}, typeof RapidAgSelectRenderer>;
|
|
23
|
+
//# sourceMappingURL=select.renderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/select.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,cAAc,IAAI,0BAA0B,EAE7C,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,qBAAa,qBAAsB,SAAQ,0BAA0B;CAAG;AAExE;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;gCAIhC,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AgTextRenderer as FoundationAgTextRenderer } from '@genesislcap/grid-pro';
|
|
2
|
+
/**
|
|
3
|
+
* @tagname %%prefix%%-grid-text-renderer
|
|
4
|
+
*/
|
|
5
|
+
export declare class RapidAgTextRenderer extends FoundationAgTextRenderer {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* The Rapid Ag Text Renderer
|
|
9
|
+
*
|
|
10
|
+
* @public
|
|
11
|
+
* @remarks
|
|
12
|
+
* HTML Element: \<rapid-grid-text-renderer\>
|
|
13
|
+
*/
|
|
14
|
+
export declare const rapidAgTextRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
15
|
+
baseName: string;
|
|
16
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
17
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").AgTextFieldRenderer, any>;
|
|
18
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
19
|
+
baseName: string;
|
|
20
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
21
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").AgTextFieldRenderer, any>;
|
|
22
|
+
}, typeof RapidAgTextRenderer>;
|
|
23
|
+
//# sourceMappingURL=text.renderer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"text.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/text.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,cAAc,IAAI,wBAAwB,EAE3C,MAAM,uBAAuB,CAAC;AAE/B;;GAEG;AACH,qBAAa,mBAAoB,SAAQ,wBAAwB;CAAG;AAEpE;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;8BAI9B,CAAC"}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type { Container } from '@microsoft/fast-foundation';
|
|
2
|
+
export declare const rapidGridComponents: {
|
|
3
|
+
rapidAgEditableRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
4
|
+
baseName: string;
|
|
5
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
6
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").EditableRenderer, any>;
|
|
7
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
8
|
+
baseName: string;
|
|
9
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
10
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").EditableRenderer, any>;
|
|
11
|
+
}, typeof import("./cell-renderers").RapidEditableRenderer>;
|
|
12
|
+
rapidAgActionRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
13
|
+
baseName: string;
|
|
14
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
15
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./cell-renderers").RapidAgActionRenderer, any>;
|
|
16
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
17
|
+
baseName: string;
|
|
18
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
19
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./cell-renderers").RapidAgActionRenderer, any>;
|
|
20
|
+
}, typeof import("./cell-renderers").RapidAgActionRenderer>;
|
|
21
|
+
rapidAgActionsMenuRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
22
|
+
baseName: string;
|
|
23
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
24
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
25
|
+
baseName: string;
|
|
26
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
27
|
+
}, typeof import("./cell-renderers").RapidAgActionsMenuRenderer>;
|
|
28
|
+
rapidAgBooleanRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
29
|
+
baseName: string;
|
|
30
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
31
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").BooleanRenderer, any>;
|
|
32
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
33
|
+
baseName: string;
|
|
34
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
35
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").BooleanRenderer, any>;
|
|
36
|
+
}, typeof import("./cell-renderers").RapidBooleanRenderer>;
|
|
37
|
+
rapidAgTextRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
38
|
+
baseName: string;
|
|
39
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
40
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").AgTextFieldRenderer, any>;
|
|
41
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
42
|
+
baseName: string;
|
|
43
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
44
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").AgTextFieldRenderer, any>;
|
|
45
|
+
}, typeof import("./cell-renderers").RapidAgTextRenderer>;
|
|
46
|
+
rapidAgSelectRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
47
|
+
baseName: string;
|
|
48
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
49
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
50
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
51
|
+
baseName: string;
|
|
52
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
53
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
54
|
+
}, typeof import("./cell-renderers").RapidAgSelectRenderer>;
|
|
55
|
+
rapidAgDateEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
56
|
+
baseName: string;
|
|
57
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
58
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").DateEditor, any>;
|
|
59
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
60
|
+
baseName: string;
|
|
61
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
62
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").DateEditor, any>;
|
|
63
|
+
}, typeof import("./cell-editors").RapidDateEditor>;
|
|
64
|
+
rapidAgMultiselectEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
65
|
+
baseName: string;
|
|
66
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
67
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").MultiselectEditor, any>;
|
|
68
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
69
|
+
baseName: string;
|
|
70
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
71
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").MultiselectEditor, any>;
|
|
72
|
+
}, typeof import("./cell-editors").RapidMultiselectEditor>;
|
|
73
|
+
rapidAgSelectEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
74
|
+
baseName: string;
|
|
75
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
76
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").SelectEditor, any>;
|
|
77
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
78
|
+
baseName: string;
|
|
79
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
80
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").SelectEditor, any>;
|
|
81
|
+
}, typeof import("./cell-editors").RapidSelectEditor>;
|
|
82
|
+
rapidAgNumberEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
83
|
+
baseName: string;
|
|
84
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
85
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").NumberEditor, any>;
|
|
86
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
87
|
+
baseName: string;
|
|
88
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
89
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").NumberEditor, any>;
|
|
90
|
+
}, typeof import("./cell-editors").RapidNumberEditor>;
|
|
91
|
+
rapidAgStringEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
92
|
+
baseName: string;
|
|
93
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
94
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").StringEditor, any>;
|
|
95
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
96
|
+
baseName: string;
|
|
97
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
98
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").StringEditor, any>;
|
|
99
|
+
}, typeof import("./cell-editors").RapidStringEditor>;
|
|
100
|
+
rapidGridPro: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
101
|
+
shadowOptions: any;
|
|
102
|
+
baseName: string;
|
|
103
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
104
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
105
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
106
|
+
shadowOptions: any;
|
|
107
|
+
baseName: string;
|
|
108
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
109
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
110
|
+
}, typeof import("./grid-pro").RapidGridPro>;
|
|
111
|
+
register(container?: Container, ...rest: any[]): void;
|
|
112
|
+
};
|
|
113
|
+
//# sourceMappingURL=grid-components.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-components.d.ts","sourceRoot":"","sources":["../../src/grid-components.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAkB5D,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAaT,SAAS,WAAW,GAAG,EAAE;CAa/C,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { GridOptions } from '@ag-grid-community/core';
|
|
2
|
+
import { GridPro } from '@genesislcap/grid-pro';
|
|
3
|
+
/**
|
|
4
|
+
* @tagname %%prefix%%-grid-pro
|
|
5
|
+
*/
|
|
6
|
+
export declare class RapidGridPro extends GridPro {
|
|
7
|
+
/**
|
|
8
|
+
* Sets default theme to Rapid
|
|
9
|
+
* @override
|
|
10
|
+
*/
|
|
11
|
+
theme: string;
|
|
12
|
+
themeChanged(oldValue: string, newValue: string): void;
|
|
13
|
+
/**
|
|
14
|
+
* Handles extra Rapid configs
|
|
15
|
+
* @override
|
|
16
|
+
*/
|
|
17
|
+
set gridOptions(options: GridOptions);
|
|
18
|
+
}
|
|
19
|
+
export declare const rapidGridProShadowOptions: ShadowRootInit;
|
|
20
|
+
export declare const rapidDefaultGridProConfig: {
|
|
21
|
+
shadowOptions: any;
|
|
22
|
+
};
|
|
23
|
+
export declare const rapidGridPro: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
24
|
+
shadowOptions: any;
|
|
25
|
+
baseName: string;
|
|
26
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
27
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
28
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
29
|
+
shadowOptions: any;
|
|
30
|
+
baseName: string;
|
|
31
|
+
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
32
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
33
|
+
}, typeof RapidGridPro>;
|
|
34
|
+
//# sourceMappingURL=grid-pro.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-pro.d.ts","sourceRoot":"","sources":["../../src/grid-pro.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EACL,OAAO,EAIR,MAAM,uBAAuB,CAAC;AAqB/B;;GAEG;AACH,qBAAa,YAAa,SAAQ,OAAO;IACvC;;;OAGG;IACH,KAAK,SAAqB;IAC1B,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAM/C;;;OAGG;IACH,IAAI,WAAW,CAAC,OAAO,EAAE,WAAW,EAqBnC;CACF;AAGD,eAAO,MAAM,yBAAyB,EAAE,cAA+C,CAAC;AACxF,eAAO,MAAM,yBAAyB;;CAAmB,CAAC;AAE1D,eAAO,MAAM,YAAY;;;;;;;;;;uBAMvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-pro.styles.d.ts","sourceRoot":"","sources":["../../src/grid-pro.styles.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,kBAAkB,iDAW9B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grid-pro.template.d.ts","sourceRoot":"","sources":["../../src/grid-pro.template.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,0DAAkB,CAAC"}
|