@skyux/data-manager 5.7.2 → 5.8.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/documentation.json
CHANGED
@@ -4285,7 +4285,7 @@
|
|
4285
4285
|
"isOptional": true
|
4286
4286
|
},
|
4287
4287
|
"comment": {
|
4288
|
-
"shortText": "
|
4288
|
+
"shortText": "Indicates whether to display the filter button for this view."
|
4289
4289
|
},
|
4290
4290
|
"sources": [
|
4291
4291
|
{
|
@@ -4808,7 +4808,7 @@
|
|
4808
4808
|
{
|
4809
4809
|
"fileName": "data-manager-demo.module.ts",
|
4810
4810
|
"filePath": "/projects/data-manager/documentation/code-examples/data-manager/basic/data-manager-demo.module.ts",
|
4811
|
-
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { SkyDataManagerModule } from '@skyux/data-manager';\nimport { SkyCheckboxModule } from '@skyux/forms';\nimport { SkyCardModule, SkyToolbarModule } from '@skyux/layout';\nimport { SkyRepeaterModule } from '@skyux/lists';\nimport { SkyModalModule } from '@skyux/modals';\n\nimport { DataManagerFiltersModalDemoComponent } from './data-filter-modal.component';\nimport { DataManagerDemoComponent } from './data-manager-demo.component';\nimport { DataViewCardsDemoComponent } from './data-view-cards.component';\nimport { DataViewRepeaterDemoComponent } from './data-view-repeater.component';\n\n@NgModule({\n declarations: [\n DataManagerDemoComponent,\n DataManagerFiltersModalDemoComponent,\n DataViewCardsDemoComponent,\n DataViewRepeaterDemoComponent,\n ],\n imports: [\n CommonModule,\n FormsModule,\n SkyCardModule,\n SkyCheckboxModule,\n SkyDataManagerModule,\n SkyModalModule,\n SkyRepeaterModule,\n SkyToolbarModule,\n ],\n exports: [DataManagerDemoComponent],\n})\nexport class DataManagerDemoModule {}\n"
|
4811
|
+
"rawContents": "import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { SkyDataManagerModule } from '@skyux/data-manager';\nimport { SkyCheckboxModule } from '@skyux/forms';\nimport { SkyCardModule, SkyToolbarModule } from '@skyux/layout';\nimport { SkyRepeaterModule } from '@skyux/lists';\nimport { SkyModalModule } from '@skyux/modals';\n\nimport { DataManagerFiltersModalDemoComponent } from './data-filter-modal.component';\nimport { DataManagerDemoComponent } from './data-manager-demo.component';\nimport { DataViewCardsDemoComponent } from './data-view-cards.component';\nimport { DataViewRepeaterDemoComponent } from './data-view-repeater.component';\n\n@NgModule({\n declarations: [\n DataManagerDemoComponent,\n DataManagerFiltersModalDemoComponent,\n DataViewCardsDemoComponent,\n DataViewRepeaterDemoComponent,\n ],\n imports: [\n CommonModule,\n FormsModule,\n SkyCardModule,\n SkyCheckboxModule,\n SkyDataManagerModule,\n SkyModalModule,\n SkyRepeaterModule,\n SkyToolbarModule,\n ],\n exports: [DataManagerDemoComponent],\n entryComponents: [\n DataManagerDemoComponent,\n DataManagerFiltersModalDemoComponent,\n ],\n})\nexport class DataManagerDemoModule {}\n"
|
4812
4812
|
},
|
4813
4813
|
{
|
4814
4814
|
"fileName": "data-view-cards.component.html",
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"data-view-config.js","sourceRoot":"","sources":["../../../../../../../../../libs/components/data-manager/src/lib/modules/data-manager/models/data-view-config.ts"],"names":[],"mappings":"","sourcesContent":["import { SkyDataManagerColumnPickerOption } from './data-manager-column-picker-option';\nimport { SkyDataManagerColumnPickerSortStrategy } from './data-manager-column-picker-sort-strategy';\n\n/**\n * The data view config contains settings that apply to the specific view, such as\n * column picker options and the buttons to display in the toolbar.\n */\nexport interface SkyDataViewConfig {\n /**\n * An untyped property that can track any view config information relevant to a\n * data view that the existing options do not include.\n */\n additionalOptions?: Object;\n /**\n * The column data to pass to the column picker. Columns that are always displayed should be\n * passed in addition to the optional columns. See SkyDataManagerColumnPickerOption.\n */\n columnOptions?: SkyDataManagerColumnPickerOption[];\n /**\n * Indicates whether to display the column picker button for this view.\n */\n columnPickerEnabled?: boolean;\n /**\n * The strategy used to sort the options in the column picker. If no strategy is provided the columns will be sorted\n * by selected then alphabetical.\n */\n columnPickerSortStrategy?: SkyDataManagerColumnPickerSortStrategy;\n /**\n *
|
1
|
+
{"version":3,"file":"data-view-config.js","sourceRoot":"","sources":["../../../../../../../../../libs/components/data-manager/src/lib/modules/data-manager/models/data-view-config.ts"],"names":[],"mappings":"","sourcesContent":["import { SkyDataManagerColumnPickerOption } from './data-manager-column-picker-option';\nimport { SkyDataManagerColumnPickerSortStrategy } from './data-manager-column-picker-sort-strategy';\n\n/**\n * The data view config contains settings that apply to the specific view, such as\n * column picker options and the buttons to display in the toolbar.\n */\nexport interface SkyDataViewConfig {\n /**\n * An untyped property that can track any view config information relevant to a\n * data view that the existing options do not include.\n */\n additionalOptions?: Object;\n /**\n * The column data to pass to the column picker. Columns that are always displayed should be\n * passed in addition to the optional columns. See SkyDataManagerColumnPickerOption.\n */\n columnOptions?: SkyDataManagerColumnPickerOption[];\n /**\n * Indicates whether to display the column picker button for this view.\n */\n columnPickerEnabled?: boolean;\n /**\n * The strategy used to sort the options in the column picker. If no strategy is provided the columns will be sorted\n * by selected then alphabetical.\n */\n columnPickerSortStrategy?: SkyDataManagerColumnPickerSortStrategy;\n /**\n * Indicates whether to display the filter button for this view.\n */\n filterButtonEnabled?: boolean;\n /**\n * The Font Awesome icon name to use for this view in the view switcher.\n * Required if you have more than one view. Do not include the `fa-` prefix.\n */\n icon?: string;\n /**\n * The unique ID for this view.\n */\n id: string;\n /**\n * Indicates whether to display the multiselect toolbar for this view.\n */\n multiselectToolbarEnabled?: boolean;\n /**\n * The name of the view. This is used in the ARIA label for the view switcher.\n */\n name: string;\n /**\n * The function called when a user selects the \"Clear all\" button on the multi-select toolbar.\n * Update your displayed data to indicate it is not selected in this function.\n */\n onClearAllClick?: Function;\n /**\n * The function called when a user selects the \"Select all\" button on the multi-select toolbar.\n * Update your displayed data to indicate it is selected in this function.\n */\n onSelectAllClick?: Function;\n /**\n * Indicates whether to display the search box for this view.\n */\n searchEnabled?: boolean;\n /**\n * Specifies placeholder text to display in the search input until users enter search criteria.\n * See the <a href=\"https://developer.blackbaud.com/skyux/components/search\">search component</a> for the default value.\n */\n searchPlaceholderText?: string;\n /**\n * Sets the `expandMode` property on the search box for this view.\n * See the <a href=\"https://developer.blackbaud.com/skyux/components/search\">search component</a> for valid options and the default value.\n */\n searchExpandMode?: string;\n /**\n * Indicates whether to include the \"Filter\" text on the displayed filter button for this view.\n * If it is not set, no text appears.\n */\n showFilterButtonText?: boolean;\n /**\n * Indicates whether to include the \"Sort\" text on the displayed sort button for this view.\n * If it is not set, no text appears.\n */\n showSortButtonText?: boolean;\n /**\n * Indicates whether to display the sort button in this view.\n */\n sortEnabled?: boolean;\n}\n"]}
|
@@ -25,7 +25,7 @@ export interface SkyDataViewConfig {
|
|
25
25
|
*/
|
26
26
|
columnPickerSortStrategy?: SkyDataManagerColumnPickerSortStrategy;
|
27
27
|
/**
|
28
|
-
*
|
28
|
+
* Indicates whether to display the filter button for this view.
|
29
29
|
*/
|
30
30
|
filterButtonEnabled?: boolean;
|
31
31
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/data-manager",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.8.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -19,14 +19,14 @@
|
|
19
19
|
"@angular/common": "^12.2.16",
|
20
20
|
"@angular/core": "^12.2.16",
|
21
21
|
"@angular/forms": "^12.2.16",
|
22
|
-
"@skyux/core": "5.
|
23
|
-
"@skyux/forms": "5.
|
24
|
-
"@skyux/i18n": "5.
|
25
|
-
"@skyux/indicators": "5.
|
26
|
-
"@skyux/layout": "5.
|
27
|
-
"@skyux/lists": "5.
|
28
|
-
"@skyux/lookup": "5.
|
29
|
-
"@skyux/modals": "5.
|
22
|
+
"@skyux/core": "5.8.0",
|
23
|
+
"@skyux/forms": "5.8.0",
|
24
|
+
"@skyux/i18n": "5.8.0",
|
25
|
+
"@skyux/indicators": "5.8.0",
|
26
|
+
"@skyux/layout": "5.8.0",
|
27
|
+
"@skyux/lists": "5.8.0",
|
28
|
+
"@skyux/lookup": "5.8.0",
|
29
|
+
"@skyux/modals": "5.8.0"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
32
|
"tslib": "^2.3.1"
|
@@ -38,4 +38,4 @@
|
|
38
38
|
"fesm2015": "fesm2015/skyux-data-manager.js",
|
39
39
|
"typings": "skyux-data-manager.d.ts",
|
40
40
|
"sideEffects": false
|
41
|
-
}
|
41
|
+
}
|