angular-slickgrid 4.1.2 → 4.2.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/.browserslistrc +12 -0
- package/.codecov.yml +17 -0
- package/.editorconfig +18 -0
- package/.eslintrc.json +50 -0
- package/.github/CODE_OF_CONDUCT.md +76 -0
- package/.github/FUNDING.yml +8 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +54 -0
- package/.github/ISSUE_TEMPLATE/config.yml +5 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +44 -0
- package/.github/renovate.json5 +26 -0
- package/.github/stale.yml +7 -0
- package/.github/workflows/main.yml +83 -0
- package/.vscode/extensions.json +9 -0
- package/.vscode/launch.json +72 -0
- package/.vscode/settings.json +7 -0
- package/.vscode/tasks.json +77 -0
- package/CHANGELOG.md +1172 -0
- package/LICENSE +20 -20
- package/README.md +9 -7
- package/angular.json +148 -0
- package/dist/LICENSE +20 -0
- package/dist/README.md +182 -0
- package/{angular-slickgrid.d.ts → dist/angular-slickgrid.d.ts} +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/components/angular-slickgrid.component.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/constants.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/extensions/index.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/extensions/slickRowDetailView.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/global-grid-options.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/index.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/models/angularComponentOutput.interface.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/models/angularGridInstance.interface.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/models/externalTestingDependencies.interface.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/models/gridOption.interface.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/models/index.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/models/rowDetailView.interface.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/models/slickGrid.interface.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/modules/angular-slickgrid.module.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/services/angularUtil.service.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/services/bsDropdown.service.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/services/container.service.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/services/index.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/services/translater.service.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/services/utilities.d.ts +0 -0
- package/{app → dist/app}/modules/angular-slickgrid/slickgrid-config.d.ts +0 -0
- package/{esm2020 → dist/esm2020}/angular-slickgrid.mjs +0 -0
- package/dist/esm2020/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +1171 -0
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/constants.mjs +1 -1
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/extensions/index.mjs +1 -1
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/extensions/slickRowDetailView.mjs +2 -2
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/global-grid-options.mjs +1 -1
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/index.mjs +1 -1
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/models/angularComponentOutput.interface.mjs +1 -1
- package/dist/esm2020/app/modules/angular-slickgrid/models/angularGridInstance.interface.mjs +2 -0
- package/dist/esm2020/app/modules/angular-slickgrid/models/externalTestingDependencies.interface.mjs +2 -0
- package/dist/esm2020/app/modules/angular-slickgrid/models/gridOption.interface.mjs +2 -0
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/models/index.mjs +1 -1
- package/dist/esm2020/app/modules/angular-slickgrid/models/rowDetailView.interface.mjs +2 -0
- package/dist/esm2020/app/modules/angular-slickgrid/models/slickGrid.interface.mjs +2 -0
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/modules/angular-slickgrid.module.mjs +5 -5
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/services/angularUtil.service.mjs +4 -4
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/services/bsDropdown.service.mjs +4 -4
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/services/container.service.mjs +4 -4
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/services/index.mjs +1 -1
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/services/translater.service.mjs +4 -4
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/services/utilities.mjs +1 -1
- package/{esm2020 → dist/esm2020}/app/modules/angular-slickgrid/slickgrid-config.mjs +1 -1
- package/{esm2020 → dist/esm2020}/public_api.mjs +1 -1
- package/{fesm2015 → dist/fesm2015}/angular-slickgrid.mjs +25 -22
- package/dist/fesm2015/angular-slickgrid.mjs.map +1 -0
- package/{fesm2020 → dist/fesm2020}/angular-slickgrid.mjs +25 -22
- package/dist/fesm2020/angular-slickgrid.mjs.map +1 -0
- package/{i18n → dist/i18n}/en.json +89 -89
- package/{i18n → dist/i18n}/fr.json +90 -90
- package/dist/package.json +79 -0
- package/{public_api.d.ts → dist/public_api.d.ts} +0 -0
- package/global.d.ts +1 -0
- package/ngcc.config.js +13 -0
- package/package.json +124 -37
- package/screenshots/column-picker.png +0 -0
- package/screenshots/composite-editor.png +0 -0
- package/screenshots/draggable-grouping.png +0 -0
- package/screenshots/editors.png +0 -0
- package/screenshots/export-to-file.png +0 -0
- package/screenshots/filter_and_sort.png +0 -0
- package/screenshots/formatters.png +0 -0
- package/screenshots/frozen.png +0 -0
- package/screenshots/multipleSelectFilter.png +0 -0
- package/screenshots/pagination.png +0 -0
- package/screenshots/selectFilter.png +0 -0
- package/screenshots/singleFilter.png +0 -0
- package/src/app/app-routing.module.ts +83 -0
- package/src/app/app.component.html +160 -0
- package/src/app/app.component.scss +65 -0
- package/src/app/app.component.ts +10 -0
- package/src/app/app.module.ts +175 -0
- package/src/app/examples/custom-angularComponentEditor.ts +184 -0
- package/src/app/examples/custom-angularComponentFilter.ts +126 -0
- package/src/app/examples/custom-inputEditor.ts +124 -0
- package/src/app/examples/custom-inputFilter.ts +142 -0
- package/src/app/examples/custom-titleFormatter.component.ts +8 -0
- package/src/app/examples/editor-ng-select.component.ts +37 -0
- package/src/app/examples/filter-ng-select.component.ts +32 -0
- package/src/app/examples/grid-additem.component.html +48 -0
- package/src/app/examples/grid-additem.component.ts +272 -0
- package/src/app/examples/grid-angular.component.html +79 -0
- package/src/app/examples/grid-angular.component.scss +28 -0
- package/src/app/examples/grid-angular.component.ts +370 -0
- package/src/app/examples/grid-autoheight.component.html +52 -0
- package/src/app/examples/grid-autoheight.component.ts +147 -0
- package/src/app/examples/grid-basic.component.html +29 -0
- package/src/app/examples/grid-basic.component.ts +82 -0
- package/src/app/examples/grid-clientside.component.html +51 -0
- package/src/app/examples/grid-clientside.component.ts +293 -0
- package/src/app/examples/grid-colspan.component.html +39 -0
- package/src/app/examples/grid-colspan.component.scss +11 -0
- package/src/app/examples/grid-colspan.component.ts +155 -0
- package/src/app/examples/grid-composite-editor.component.html +79 -0
- package/src/app/examples/grid-composite-editor.component.scss +19 -0
- package/src/app/examples/grid-composite-editor.component.ts +948 -0
- package/src/app/examples/grid-contextmenu.component.html +62 -0
- package/src/app/examples/grid-contextmenu.component.scss +44 -0
- package/src/app/examples/grid-contextmenu.component.ts +473 -0
- package/src/app/examples/grid-custom-tooltip.component.html +25 -0
- package/src/app/examples/grid-custom-tooltip.component.scss +77 -0
- package/src/app/examples/grid-custom-tooltip.component.ts +483 -0
- package/src/app/examples/grid-draggrouping.component.html +93 -0
- package/src/app/examples/grid-draggrouping.component.ts +397 -0
- package/src/app/examples/grid-editor.component.html +88 -0
- package/src/app/examples/grid-editor.component.ts +699 -0
- package/src/app/examples/grid-formatter.component.html +26 -0
- package/src/app/examples/grid-formatter.component.ts +162 -0
- package/src/app/examples/grid-frozen.component.html +65 -0
- package/src/app/examples/grid-frozen.component.scss +11 -0
- package/src/app/examples/grid-frozen.component.ts +303 -0
- package/src/app/examples/grid-graphql-nopage.component.html +33 -0
- package/src/app/examples/grid-graphql-nopage.component.scss +9 -0
- package/src/app/examples/grid-graphql-nopage.component.ts +242 -0
- package/src/app/examples/grid-graphql.component.html +87 -0
- package/src/app/examples/grid-graphql.component.ts +304 -0
- package/src/app/examples/grid-grouping.component.html +80 -0
- package/src/app/examples/grid-grouping.component.ts +313 -0
- package/src/app/examples/grid-headerbutton.component.html +31 -0
- package/src/app/examples/grid-headerbutton.component.scss +10 -0
- package/src/app/examples/grid-headerbutton.component.ts +233 -0
- package/src/app/examples/grid-headermenu.component.html +31 -0
- package/src/app/examples/grid-headermenu.component.scss +25 -0
- package/src/app/examples/grid-headermenu.component.ts +159 -0
- package/src/app/examples/grid-localization.component.html +54 -0
- package/src/app/examples/grid-localization.component.ts +293 -0
- package/src/app/examples/grid-menu.component.html +37 -0
- package/src/app/examples/grid-menu.component.scss +28 -0
- package/src/app/examples/grid-menu.component.ts +229 -0
- package/src/app/examples/grid-odata.component.html +116 -0
- package/src/app/examples/grid-odata.component.ts +441 -0
- package/src/app/examples/grid-range.component.html +74 -0
- package/src/app/examples/grid-range.component.ts +291 -0
- package/src/app/examples/grid-remote.component.html +37 -0
- package/src/app/examples/grid-remote.component.ts +153 -0
- package/src/app/examples/grid-resize-by-content.component.html +62 -0
- package/src/app/examples/grid-resize-by-content.component.scss +19 -0
- package/src/app/examples/grid-resize-by-content.component.ts +780 -0
- package/src/app/examples/grid-rowdetail.component.html +35 -0
- package/src/app/examples/grid-rowdetail.component.ts +205 -0
- package/src/app/examples/grid-rowmove.component.html +49 -0
- package/src/app/examples/grid-rowmove.component.ts +234 -0
- package/src/app/examples/grid-rowselection.component.html +76 -0
- package/src/app/examples/grid-rowselection.component.ts +267 -0
- package/src/app/examples/grid-state.component.html +36 -0
- package/src/app/examples/grid-state.component.ts +259 -0
- package/src/app/examples/grid-tabs.component.html +35 -0
- package/src/app/examples/grid-tabs.component.ts +115 -0
- package/src/app/examples/grid-trading.component.html +58 -0
- package/src/app/examples/grid-trading.component.scss +49 -0
- package/src/app/examples/grid-trading.component.ts +319 -0
- package/src/app/examples/grid-tree-data-hierarchical.component.html +79 -0
- package/src/app/examples/grid-tree-data-hierarchical.component.scss +47 -0
- package/src/app/examples/grid-tree-data-hierarchical.component.ts +311 -0
- package/src/app/examples/grid-tree-data-parent-child.component.html +108 -0
- package/src/app/examples/grid-tree-data-parent-child.component.scss +10 -0
- package/src/app/examples/grid-tree-data-parent-child.component.ts +351 -0
- package/src/app/examples/home.component.html +41 -0
- package/src/app/examples/home.component.ts +9 -0
- package/src/app/examples/rowdetail-preload.component.ts +10 -0
- package/src/app/examples/rowdetail-view.component.html +36 -0
- package/src/app/examples/rowdetail-view.component.ts +54 -0
- package/src/app/examples/swt-common-grid-pagination.component.ts +156 -0
- package/src/app/examples/swt-common-grid-test.component.html +30 -0
- package/src/app/examples/swt-common-grid-test.component.ts +219 -0
- package/src/app/examples/swt-common-grid.component.ts +436 -0
- package/src/app/examples/swt-logger.service.ts +165 -0
- package/src/app/modules/angular-slickgrid/components/angular-slickgrid.component.html +4 -0
- package/src/app/modules/angular-slickgrid/components/angular-slickgrid.component.ts +1395 -0
- package/src/app/modules/angular-slickgrid/constants.ts +97 -0
- package/src/app/modules/angular-slickgrid/extensions/index.ts +1 -0
- package/src/app/modules/angular-slickgrid/extensions/slickRowDetailView.ts +375 -0
- package/src/app/modules/angular-slickgrid/global-grid-options.ts +245 -0
- package/src/app/modules/angular-slickgrid/index.ts +11 -0
- package/src/app/modules/angular-slickgrid/models/angularComponentOutput.interface.ts +6 -0
- package/src/app/modules/angular-slickgrid/models/angularGridInstance.interface.ts +68 -0
- package/src/app/modules/angular-slickgrid/models/externalTestingDependencies.interface.ts +37 -0
- package/src/app/modules/angular-slickgrid/models/gridOption.interface.ts +12 -0
- package/src/app/modules/angular-slickgrid/models/index.ts +6 -0
- package/src/app/modules/angular-slickgrid/models/rowDetailView.interface.ts +33 -0
- package/src/app/modules/angular-slickgrid/models/slickGrid.interface.ts +7 -0
- package/src/app/modules/angular-slickgrid/modules/angular-slickgrid.module.ts +37 -0
- package/src/app/modules/angular-slickgrid/services/angularUtil.service.ts +48 -0
- package/src/app/modules/angular-slickgrid/services/bsDropdown.service.ts +142 -0
- package/src/app/modules/angular-slickgrid/services/container.service.ts +24 -0
- package/src/app/modules/angular-slickgrid/services/index.ts +5 -0
- package/src/app/modules/angular-slickgrid/services/translater.service.ts +38 -0
- package/src/app/modules/angular-slickgrid/services/utilities.ts +19 -0
- package/src/app/modules/angular-slickgrid/slickgrid-config.ts +10 -0
- package/src/app/slickgrid-custom-variables.scss +10 -0
- package/src/assets/.gitkeep +0 -0
- package/src/assets/data/collection_100_numbers.json +12 -0
- package/src/assets/data/collection_500_numbers.json +52 -0
- package/src/assets/data/countries.json +245 -0
- package/src/assets/data/country_names.json +245 -0
- package/src/assets/data/customers_100.json +102 -0
- package/src/assets/i18n/en.json +90 -0
- package/src/assets/i18n/fr.json +91 -0
- package/src/environments/environment.prod.ts +3 -0
- package/src/environments/environment.ts +8 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +18 -0
- package/src/main.ts +13 -0
- package/src/polyfills.ts +52 -0
- package/src/public_api.ts +1 -0
- package/src/styles.scss +66 -0
- package/src/typings.d.ts +10 -0
- package/tsconfig.app.json +25 -0
- package/tsconfig.json +40 -0
- package/tsconfig.spec.json +23 -0
- package/docs/assets/lib/multiple-select/README.md +0 -17
- package/esm2020/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +0 -1168
- package/esm2020/app/modules/angular-slickgrid/models/angularGridInstance.interface.mjs +0 -2
- package/esm2020/app/modules/angular-slickgrid/models/externalTestingDependencies.interface.mjs +0 -2
- package/esm2020/app/modules/angular-slickgrid/models/gridOption.interface.mjs +0 -2
- package/esm2020/app/modules/angular-slickgrid/models/rowDetailView.interface.mjs +0 -2
- package/esm2020/app/modules/angular-slickgrid/models/slickGrid.interface.mjs +0 -2
- package/fesm2015/angular-slickgrid.mjs.map +0 -1
- package/fesm2020/angular-slickgrid.mjs.map +0 -1
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
{
|
|
2
|
-
"ALL_SELECTED": "Tout sélectionnés",
|
|
3
|
-
"CANCEL": "Annuler",
|
|
4
|
-
"CLEAR_ALL_FILTERS": "Supprimer tous les filtres",
|
|
5
|
-
"CLEAR_ALL_GROUPING": "Supprimer tous les groupes",
|
|
6
|
-
"CLEAR_ALL_SORTING": "Supprimer tous les tris",
|
|
7
|
-
"CLEAR_PINNING": "Dégeler les colonnes/rangées",
|
|
8
|
-
"COLLAPSE_ALL_GROUPS": "Réduire tous les groupes",
|
|
9
|
-
"COLUMNS": "Colonnes",
|
|
10
|
-
"COLUMN_RESIZE_BY_CONTENT": "Redimensionner par contenu",
|
|
11
|
-
"COMMANDS": "Commandes",
|
|
12
|
-
"CONTAINS": "Contient",
|
|
13
|
-
"COPY": "Copier",
|
|
14
|
-
"EMPTY_DATA_WARNING_MESSAGE": "Aucune donnée à afficher.",
|
|
15
|
-
"ENDS_WITH": "Se termine par",
|
|
16
|
-
"EQUALS": "Égale",
|
|
17
|
-
"EQUAL_TO": "Égal à",
|
|
18
|
-
"EXPAND_ALL_GROUPS": "Étendre tous les groupes",
|
|
19
|
-
"EXPORT_TO_CSV": "Exporter en format CSV",
|
|
20
|
-
"EXPORT_TO_EXCEL": "Exporter vers Excel",
|
|
21
|
-
"EXPORT_TO_TAB_DELIMITED": "Exporter en format texte (délimité par tabulation)",
|
|
22
|
-
"EXPORT_TO_TEXT_FORMAT": "Exporter en format texte",
|
|
23
|
-
"FROM_TO_OF_TOTAL_ITEMS": "{{from}}-{{to}} de {{totalItems}} éléments",
|
|
24
|
-
"FORCE_FIT_COLUMNS": "Ajustement forcé des colonnes",
|
|
25
|
-
"FREEZE_COLUMNS": "Geler les colonnes",
|
|
26
|
-
"GREATER_THAN": "Plus grand que",
|
|
27
|
-
"GREATER_THAN_OR_EQUAL_TO": "Plus grand ou égal à",
|
|
28
|
-
"GROUP_BY": "Grouper par",
|
|
29
|
-
"HIDE_COLUMN": "Cacher la colonne",
|
|
30
|
-
"IN_COLLECTION_SEPERATED_BY_COMMA": "Recherche incluant certain éléments d'une collection, doit être séparé par une virgule (a,b)",
|
|
31
|
-
"INVALID_FLOAT": "Le nombre doit être valide et avoir un maximum de {{maxDecimal}} décimales.",
|
|
32
|
-
"ITEMS": "éléments",
|
|
33
|
-
"ITEMS_PER_PAGE": "éléments par page",
|
|
34
|
-
"ITEMS_SELECTED": "éléments sélectionnés",
|
|
35
|
-
"LAST_UPDATE": "Dernière mise à jour",
|
|
36
|
-
"LESS_THAN": "Plus petit que",
|
|
37
|
-
"LESS_THAN_OR_EQUAL_TO": "Plus petit ou égal à",
|
|
38
|
-
"NOT_CONTAINS": "Ne contient pas",
|
|
39
|
-
"NOT_EQUAL_TO": "Non égal à",
|
|
40
|
-
"NOT_IN_COLLECTION_SEPERATED_BY_COMMA": "Recherche excluant certain éléments d'une collection, doit être séparé par une virgule (a,b)",
|
|
41
|
-
"OF": "de",
|
|
42
|
-
"OK": "Terminé",
|
|
43
|
-
"PAGE": "Page",
|
|
44
|
-
"PAGE_X_OF_Y": "page {{x}} de {{y}}",
|
|
45
|
-
"REFRESH_DATASET": "Rafraîchir les données",
|
|
46
|
-
"REMOVE_FILTER": "Supprimer le filtre",
|
|
47
|
-
"REMOVE_SORT": "Supprimer le tri",
|
|
48
|
-
"SAVE": "Sauvegarder",
|
|
49
|
-
"SELECT_ALL": "Sélectionner tout",
|
|
50
|
-
"SORT_ASCENDING": "Trier par ordre croissant",
|
|
51
|
-
"SORT_DESCENDING": "Trier par ordre décroissant",
|
|
52
|
-
"STARTS_WITH": "Commence par",
|
|
53
|
-
"SYNCHRONOUS_RESIZE": "Redimension synchrone",
|
|
54
|
-
"TOGGLE_FILTER_ROW": "Basculer la ligne des filtres",
|
|
55
|
-
"TOGGLE_PRE_HEADER_ROW": "Basculer la ligne de pré-en-tête",
|
|
56
|
-
"X_OF_Y_SELECTED": "# de % sélectionnés",
|
|
57
|
-
"BILLING": {
|
|
58
|
-
"ADDRESS": {
|
|
59
|
-
"STREET": "Adresse de facturation",
|
|
60
|
-
"ZIP": "Code zip de facturation"
|
|
61
|
-
},
|
|
62
|
-
"INFORMATION": "Information de Facturation"
|
|
63
|
-
},
|
|
64
|
-
"DURATION": "Durée",
|
|
65
|
-
"COMPANY": "Compagnie",
|
|
66
|
-
"COMPLETED": "Terminé",
|
|
67
|
-
"CHANGE_COMPLETED_FLAG": "Changer l'indicateur terminé",
|
|
68
|
-
"CHANGE_PRIORITY": "Changer la priorité",
|
|
69
|
-
"CUSTOM_COMMANDS": "Commandes Personnalisées",
|
|
70
|
-
"CUSTOMER_INFORMATION": "Information Client",
|
|
71
|
-
"DELETE_ROW": "Supprimer la ligne",
|
|
72
|
-
"DISABLED_COMMAND": "Commande désactivée",
|
|
73
|
-
"FALSE": "Faux",
|
|
74
|
-
"FEMALE": "Féminin",
|
|
75
|
-
"FINISH": "Fin",
|
|
76
|
-
"GENDER": "Sexe",
|
|
77
|
-
"HELP": "Aide",
|
|
78
|
-
"HIGH": "Haut",
|
|
79
|
-
"LOW": "Bas",
|
|
80
|
-
"MEDIUM": "Moyen",
|
|
81
|
-
"MALE": "Masculin",
|
|
82
|
-
"NAME": "Nom",
|
|
83
|
-
"NONE": "Aucun",
|
|
84
|
-
"PERCENT_COMPLETE": "% Achevée",
|
|
85
|
-
"PRIORITY": "Priorité",
|
|
86
|
-
"START": "Début",
|
|
87
|
-
"TASK_X": "Tâche {{x}}",
|
|
88
|
-
"TITLE": "Titre",
|
|
89
|
-
"TITLE.NAME": "Nom du Titre",
|
|
90
|
-
"TRUE": "Vrai"
|
|
1
|
+
{
|
|
2
|
+
"ALL_SELECTED": "Tout sélectionnés",
|
|
3
|
+
"CANCEL": "Annuler",
|
|
4
|
+
"CLEAR_ALL_FILTERS": "Supprimer tous les filtres",
|
|
5
|
+
"CLEAR_ALL_GROUPING": "Supprimer tous les groupes",
|
|
6
|
+
"CLEAR_ALL_SORTING": "Supprimer tous les tris",
|
|
7
|
+
"CLEAR_PINNING": "Dégeler les colonnes/rangées",
|
|
8
|
+
"COLLAPSE_ALL_GROUPS": "Réduire tous les groupes",
|
|
9
|
+
"COLUMNS": "Colonnes",
|
|
10
|
+
"COLUMN_RESIZE_BY_CONTENT": "Redimensionner par contenu",
|
|
11
|
+
"COMMANDS": "Commandes",
|
|
12
|
+
"CONTAINS": "Contient",
|
|
13
|
+
"COPY": "Copier",
|
|
14
|
+
"EMPTY_DATA_WARNING_MESSAGE": "Aucune donnée à afficher.",
|
|
15
|
+
"ENDS_WITH": "Se termine par",
|
|
16
|
+
"EQUALS": "Égale",
|
|
17
|
+
"EQUAL_TO": "Égal à",
|
|
18
|
+
"EXPAND_ALL_GROUPS": "Étendre tous les groupes",
|
|
19
|
+
"EXPORT_TO_CSV": "Exporter en format CSV",
|
|
20
|
+
"EXPORT_TO_EXCEL": "Exporter vers Excel",
|
|
21
|
+
"EXPORT_TO_TAB_DELIMITED": "Exporter en format texte (délimité par tabulation)",
|
|
22
|
+
"EXPORT_TO_TEXT_FORMAT": "Exporter en format texte",
|
|
23
|
+
"FROM_TO_OF_TOTAL_ITEMS": "{{from}}-{{to}} de {{totalItems}} éléments",
|
|
24
|
+
"FORCE_FIT_COLUMNS": "Ajustement forcé des colonnes",
|
|
25
|
+
"FREEZE_COLUMNS": "Geler les colonnes",
|
|
26
|
+
"GREATER_THAN": "Plus grand que",
|
|
27
|
+
"GREATER_THAN_OR_EQUAL_TO": "Plus grand ou égal à",
|
|
28
|
+
"GROUP_BY": "Grouper par",
|
|
29
|
+
"HIDE_COLUMN": "Cacher la colonne",
|
|
30
|
+
"IN_COLLECTION_SEPERATED_BY_COMMA": "Recherche incluant certain éléments d'une collection, doit être séparé par une virgule (a,b)",
|
|
31
|
+
"INVALID_FLOAT": "Le nombre doit être valide et avoir un maximum de {{maxDecimal}} décimales.",
|
|
32
|
+
"ITEMS": "éléments",
|
|
33
|
+
"ITEMS_PER_PAGE": "éléments par page",
|
|
34
|
+
"ITEMS_SELECTED": "éléments sélectionnés",
|
|
35
|
+
"LAST_UPDATE": "Dernière mise à jour",
|
|
36
|
+
"LESS_THAN": "Plus petit que",
|
|
37
|
+
"LESS_THAN_OR_EQUAL_TO": "Plus petit ou égal à",
|
|
38
|
+
"NOT_CONTAINS": "Ne contient pas",
|
|
39
|
+
"NOT_EQUAL_TO": "Non égal à",
|
|
40
|
+
"NOT_IN_COLLECTION_SEPERATED_BY_COMMA": "Recherche excluant certain éléments d'une collection, doit être séparé par une virgule (a,b)",
|
|
41
|
+
"OF": "de",
|
|
42
|
+
"OK": "Terminé",
|
|
43
|
+
"PAGE": "Page",
|
|
44
|
+
"PAGE_X_OF_Y": "page {{x}} de {{y}}",
|
|
45
|
+
"REFRESH_DATASET": "Rafraîchir les données",
|
|
46
|
+
"REMOVE_FILTER": "Supprimer le filtre",
|
|
47
|
+
"REMOVE_SORT": "Supprimer le tri",
|
|
48
|
+
"SAVE": "Sauvegarder",
|
|
49
|
+
"SELECT_ALL": "Sélectionner tout",
|
|
50
|
+
"SORT_ASCENDING": "Trier par ordre croissant",
|
|
51
|
+
"SORT_DESCENDING": "Trier par ordre décroissant",
|
|
52
|
+
"STARTS_WITH": "Commence par",
|
|
53
|
+
"SYNCHRONOUS_RESIZE": "Redimension synchrone",
|
|
54
|
+
"TOGGLE_FILTER_ROW": "Basculer la ligne des filtres",
|
|
55
|
+
"TOGGLE_PRE_HEADER_ROW": "Basculer la ligne de pré-en-tête",
|
|
56
|
+
"X_OF_Y_SELECTED": "# de % sélectionnés",
|
|
57
|
+
"BILLING": {
|
|
58
|
+
"ADDRESS": {
|
|
59
|
+
"STREET": "Adresse de facturation",
|
|
60
|
+
"ZIP": "Code zip de facturation"
|
|
61
|
+
},
|
|
62
|
+
"INFORMATION": "Information de Facturation"
|
|
63
|
+
},
|
|
64
|
+
"DURATION": "Durée",
|
|
65
|
+
"COMPANY": "Compagnie",
|
|
66
|
+
"COMPLETED": "Terminé",
|
|
67
|
+
"CHANGE_COMPLETED_FLAG": "Changer l'indicateur terminé",
|
|
68
|
+
"CHANGE_PRIORITY": "Changer la priorité",
|
|
69
|
+
"CUSTOM_COMMANDS": "Commandes Personnalisées",
|
|
70
|
+
"CUSTOMER_INFORMATION": "Information Client",
|
|
71
|
+
"DELETE_ROW": "Supprimer la ligne",
|
|
72
|
+
"DISABLED_COMMAND": "Commande désactivée",
|
|
73
|
+
"FALSE": "Faux",
|
|
74
|
+
"FEMALE": "Féminin",
|
|
75
|
+
"FINISH": "Fin",
|
|
76
|
+
"GENDER": "Sexe",
|
|
77
|
+
"HELP": "Aide",
|
|
78
|
+
"HIGH": "Haut",
|
|
79
|
+
"LOW": "Bas",
|
|
80
|
+
"MEDIUM": "Moyen",
|
|
81
|
+
"MALE": "Masculin",
|
|
82
|
+
"NAME": "Nom",
|
|
83
|
+
"NONE": "Aucun",
|
|
84
|
+
"PERCENT_COMPLETE": "% Achevée",
|
|
85
|
+
"PRIORITY": "Priorité",
|
|
86
|
+
"START": "Début",
|
|
87
|
+
"TASK_X": "Tâche {{x}}",
|
|
88
|
+
"TITLE": "Titre",
|
|
89
|
+
"TITLE.NAME": "Nom du Titre",
|
|
90
|
+
"TRUE": "Vrai"
|
|
91
91
|
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "angular-slickgrid",
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"description": "Slickgrid components made available in Angular",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"plugin",
|
|
8
|
+
"datagrid",
|
|
9
|
+
"datatable",
|
|
10
|
+
"slickgrid"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"author": "Ghislain B.",
|
|
14
|
+
"homepage": "https://ghiscoding.github.io/Angular-Slickgrid/",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/ghiscoding/Angular-Slickgrid/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "http://github.com/ghiscoding/angular-slickgrid"
|
|
21
|
+
},
|
|
22
|
+
"main": "src/app/modules/angular-slickgrid/index",
|
|
23
|
+
"private": false,
|
|
24
|
+
"comments": {
|
|
25
|
+
"new-release": "1- build library (ng-packagr), 2- 'prepare-release' (npm script) & publish to npm, typically 'npm publish dist' works if it does not then run script 'pack-lib' and 'npm publish [tar file]'"
|
|
26
|
+
},
|
|
27
|
+
"funding": {
|
|
28
|
+
"type": "ko_fi",
|
|
29
|
+
"url": "https://ko-fi.com/ghiscoding"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@slickgrid-universal/common": "^1.3.0",
|
|
33
|
+
"@slickgrid-universal/custom-footer-component": "^1.3.0",
|
|
34
|
+
"@slickgrid-universal/empty-warning-component": "^1.3.0",
|
|
35
|
+
"@slickgrid-universal/event-pub-sub": "^1.3.0",
|
|
36
|
+
"@slickgrid-universal/pagination-component": "^1.3.0",
|
|
37
|
+
"@slickgrid-universal/row-detail-view-plugin": "^1.3.0",
|
|
38
|
+
"@slickgrid-universal/rxjs-observable": "^1.3.0",
|
|
39
|
+
"@types/dompurify": "^2.3.3",
|
|
40
|
+
"@types/jquery": "^3.5.14",
|
|
41
|
+
"dequal": "^2.0.2",
|
|
42
|
+
"dompurify": "^2.3.8",
|
|
43
|
+
"font-awesome": "^4.7.0",
|
|
44
|
+
"jquery": "^3.6.0",
|
|
45
|
+
"moment-mini": "^2.24.0",
|
|
46
|
+
"rxjs": "^7.5.5",
|
|
47
|
+
"tslib": "^2.3.0"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@ngx-translate/core": ">=14.0.0"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=14.17.0",
|
|
54
|
+
"npm": ">=6.14.13"
|
|
55
|
+
},
|
|
56
|
+
"resolutions": {
|
|
57
|
+
"caniuse-lite": "1.0.30001356"
|
|
58
|
+
},
|
|
59
|
+
"module": "fesm2015/angular-slickgrid.mjs",
|
|
60
|
+
"es2020": "fesm2020/angular-slickgrid.mjs",
|
|
61
|
+
"esm2020": "esm2020/angular-slickgrid.mjs",
|
|
62
|
+
"fesm2020": "fesm2020/angular-slickgrid.mjs",
|
|
63
|
+
"fesm2015": "fesm2015/angular-slickgrid.mjs",
|
|
64
|
+
"typings": "angular-slickgrid.d.ts",
|
|
65
|
+
"exports": {
|
|
66
|
+
"./package.json": {
|
|
67
|
+
"default": "./package.json"
|
|
68
|
+
},
|
|
69
|
+
".": {
|
|
70
|
+
"types": "./angular-slickgrid.d.ts",
|
|
71
|
+
"esm2020": "./esm2020/angular-slickgrid.mjs",
|
|
72
|
+
"es2020": "./fesm2020/angular-slickgrid.mjs",
|
|
73
|
+
"es2015": "./fesm2015/angular-slickgrid.mjs",
|
|
74
|
+
"node": "./fesm2015/angular-slickgrid.mjs",
|
|
75
|
+
"default": "./fesm2020/angular-slickgrid.mjs"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"sideEffects": false
|
|
79
|
+
}
|
|
File without changes
|
package/global.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import 'jest-extended';
|
package/ngcc.config.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-slickgrid",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Slickgrid components made available in Angular",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -15,6 +15,41 @@
|
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/ghiscoding/Angular-Slickgrid/issues"
|
|
17
17
|
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"ng": "ng",
|
|
20
|
+
"start": "ng serve --port 4300",
|
|
21
|
+
"postinstall": "ngcc",
|
|
22
|
+
"prebuild": "npm-run-all delete:dist lint",
|
|
23
|
+
"build": "npm run packagr",
|
|
24
|
+
"postbuild": "npm-run-all copy:i18n copy:lib",
|
|
25
|
+
"build:with-e2e": "npm-run-all build cypress:ci",
|
|
26
|
+
"build:gh-demo": "npm run build",
|
|
27
|
+
"postbuild:gh-demo": "npm-run-all del-demo:dist copy-demo:dist",
|
|
28
|
+
"build:gh-demo:with-e2e": "npm run build:gh-demo",
|
|
29
|
+
"postbuild:gh-demo:with-e2e": "npm run cypress:ci",
|
|
30
|
+
"delete:dist": "cross-env rimraf dist",
|
|
31
|
+
"cypress": "cd test/cypress && node node_modules/cypress/bin/cypress open",
|
|
32
|
+
"cypress:ci": "cd test/cypress && npm run cypress:ci",
|
|
33
|
+
"lint": "ng lint",
|
|
34
|
+
"test": "npm run test:jest",
|
|
35
|
+
"test:jest": "npx jest --config test/jest.config.js",
|
|
36
|
+
"jest:ci": "npx jest --runInBand --coverage=true --ci --config ./test/jest.config.js",
|
|
37
|
+
"jest:clear": "npx jest --clearCache",
|
|
38
|
+
"jest:watch": "npx jest --config test/jest.config.js --watch",
|
|
39
|
+
"jest:coverage": "npx jest --config test/jest.config.js --runInBand --coverage",
|
|
40
|
+
"jest:snapshot": "npx jest --config test/jest.config.js --coverage -u",
|
|
41
|
+
"copy:i18n": "cross-env copyfiles -f src/assets/i18n/*.json dist/i18n",
|
|
42
|
+
"copy:lib": "cross-env copyfiles --up 2 src/assets/lib/** dist",
|
|
43
|
+
"copy-demo:dist": "cross-env copyfiles --up 1 dist/**/*.* ../angular-slickgrid-demos/bootstrap3-demo-with-translate/node_modules/angular-slickgrid",
|
|
44
|
+
"del-demo:dist": "cross-env rimraf ../angular-slickgrid-demos/bootstrap3-demo-with-translate/node_modules/angular-slickgrid",
|
|
45
|
+
"packagr": "ng-packagr -p package.json",
|
|
46
|
+
"changelog": "cross-env conventional-changelog -p angular -i doc/CHANGELOG.md -s",
|
|
47
|
+
"bump-version": "npm --no-git-tag-version version",
|
|
48
|
+
"prepare-release": "cross-env npm run changelog && npm run build && npm run doc",
|
|
49
|
+
"release": "standard-version",
|
|
50
|
+
"build:demo": "ng build --configuration=production",
|
|
51
|
+
"pack-lib": "npm pack ./dist"
|
|
52
|
+
},
|
|
18
53
|
"repository": {
|
|
19
54
|
"type": "git",
|
|
20
55
|
"url": "http://github.com/ghiscoding/angular-slickgrid"
|
|
@@ -26,52 +61,104 @@
|
|
|
26
61
|
},
|
|
27
62
|
"funding": {
|
|
28
63
|
"type": "ko_fi",
|
|
29
|
-
"url": "https://ko-fi.com/
|
|
64
|
+
"url": "https://ko-fi.com/ghiscoding"
|
|
65
|
+
},
|
|
66
|
+
"ngPackage": {
|
|
67
|
+
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
|
|
68
|
+
"allowedNonPeerDependencies": [
|
|
69
|
+
"."
|
|
70
|
+
],
|
|
71
|
+
"dest": "dist",
|
|
72
|
+
"lib": {
|
|
73
|
+
"entryFile": "src/public_api.ts"
|
|
74
|
+
}
|
|
30
75
|
},
|
|
31
76
|
"dependencies": {
|
|
32
|
-
"@slickgrid-universal/common": "^1.
|
|
33
|
-
"@slickgrid-universal/custom-footer-component": "^1.
|
|
34
|
-
"@slickgrid-universal/empty-warning-component": "^1.
|
|
35
|
-
"@slickgrid-universal/event-pub-sub": "^1.
|
|
36
|
-
"@slickgrid-universal/pagination-component": "^1.
|
|
37
|
-
"@slickgrid-universal/row-detail-view-plugin": "^1.
|
|
38
|
-
"@slickgrid-universal/rxjs-observable": "^1.
|
|
77
|
+
"@slickgrid-universal/common": "^1.3.0",
|
|
78
|
+
"@slickgrid-universal/custom-footer-component": "^1.3.0",
|
|
79
|
+
"@slickgrid-universal/empty-warning-component": "^1.3.0",
|
|
80
|
+
"@slickgrid-universal/event-pub-sub": "^1.3.0",
|
|
81
|
+
"@slickgrid-universal/pagination-component": "^1.3.0",
|
|
82
|
+
"@slickgrid-universal/row-detail-view-plugin": "^1.3.0",
|
|
83
|
+
"@slickgrid-universal/rxjs-observable": "^1.3.0",
|
|
39
84
|
"@types/dompurify": "^2.3.3",
|
|
40
|
-
"@types/jquery": "^3.5.
|
|
85
|
+
"@types/jquery": "^3.5.14",
|
|
41
86
|
"dequal": "^2.0.2",
|
|
42
|
-
"dompurify": "^2.3.
|
|
87
|
+
"dompurify": "^2.3.8",
|
|
43
88
|
"font-awesome": "^4.7.0",
|
|
44
|
-
"jquery": "
|
|
45
|
-
"jquery-ui-dist": "^1.12.1",
|
|
89
|
+
"jquery": "^3.6.0",
|
|
46
90
|
"moment-mini": "^2.24.0",
|
|
47
|
-
"rxjs": "
|
|
48
|
-
"tslib": "^2.3.0"
|
|
91
|
+
"rxjs": "^7.5.5"
|
|
49
92
|
},
|
|
50
93
|
"peerDependencies": {
|
|
51
94
|
"@ngx-translate/core": ">=14.0.0"
|
|
52
95
|
},
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"@angular-devkit/build-angular": "~13.3.8",
|
|
98
|
+
"@angular-eslint/builder": "^13.5.0",
|
|
99
|
+
"@angular-eslint/eslint-plugin": "^13.5.0",
|
|
100
|
+
"@angular-eslint/eslint-plugin-template": "^13.5.0",
|
|
101
|
+
"@angular-eslint/schematics": "^13.5.0",
|
|
102
|
+
"@angular-eslint/template-parser": "^13.5.0",
|
|
103
|
+
"@angular/animations": "^13.3.11",
|
|
104
|
+
"@angular/cli": "^13.3.8",
|
|
105
|
+
"@angular/common": "^13.3.11",
|
|
106
|
+
"@angular/compiler": "^13.3.11",
|
|
107
|
+
"@angular/compiler-cli": "^13.3.11",
|
|
108
|
+
"@angular/core": "^13.3.11",
|
|
109
|
+
"@angular/forms": "^13.3.11",
|
|
110
|
+
"@angular/language-service": "^13.3.11",
|
|
111
|
+
"@angular/platform-browser": "^13.3.11",
|
|
112
|
+
"@angular/platform-browser-dynamic": "^13.3.11",
|
|
113
|
+
"@angular/router": "^13.3.11",
|
|
114
|
+
"@faker-js/faker": "^7.2.0",
|
|
115
|
+
"@fnando/sparkline": "^0.3.10",
|
|
116
|
+
"@ng-select/ng-select": "^8.3.0",
|
|
117
|
+
"@ngx-translate/core": "^14.0.0",
|
|
118
|
+
"@ngx-translate/http-loader": "^7.0.0",
|
|
119
|
+
"@slickgrid-universal/composite-editor-component": "^1.3.0",
|
|
120
|
+
"@slickgrid-universal/custom-tooltip-plugin": "^1.3.0",
|
|
121
|
+
"@slickgrid-universal/excel-export": "^1.3.0",
|
|
122
|
+
"@slickgrid-universal/graphql": "^1.3.0",
|
|
123
|
+
"@slickgrid-universal/odata": "^1.3.0",
|
|
124
|
+
"@slickgrid-universal/text-export": "^1.3.0",
|
|
125
|
+
"@types/flatpickr": "^3.1.2",
|
|
126
|
+
"@types/fnando__sparkline": "^0.3.4",
|
|
127
|
+
"@types/jest": "^28.1.2",
|
|
128
|
+
"@types/moment": "^2.13.0",
|
|
129
|
+
"@types/node": "^18.0.0",
|
|
130
|
+
"@types/text-encoding-utf-8": "^1.0.2",
|
|
131
|
+
"@typescript-eslint/eslint-plugin": "^5.28.0",
|
|
132
|
+
"@typescript-eslint/parser": "^5.28.0",
|
|
133
|
+
"autoprefixer": "^10.4.7",
|
|
134
|
+
"bootstrap": "^5.1.3",
|
|
135
|
+
"conventional-changelog": "^3.1.25",
|
|
136
|
+
"copyfiles": "^2.4.1",
|
|
137
|
+
"cross-env": "^7.0.3",
|
|
138
|
+
"custom-event-polyfill": "^1.0.7",
|
|
139
|
+
"eslint": "^8.18.0",
|
|
140
|
+
"jest": "^28.1.1",
|
|
141
|
+
"jest-extended": "^2.0.0",
|
|
142
|
+
"jest-preset-angular": "^12.1.0",
|
|
143
|
+
"ng-packagr": "^13.3.1",
|
|
144
|
+
"ngx-bootstrap": "^8.0.0",
|
|
145
|
+
"npm-run-all2": "^6.0.1",
|
|
146
|
+
"postcss": "^8.4.14",
|
|
147
|
+
"postcss-cli": "^9.1.0",
|
|
148
|
+
"rimraf": "^3.0.2",
|
|
149
|
+
"sass": "^1.52.3",
|
|
150
|
+
"standard-version": "^9.5.0",
|
|
151
|
+
"stream-browserify": "^3.0.0",
|
|
152
|
+
"ts-node": "^10.8.1",
|
|
153
|
+
"tslib": "^2.4.0",
|
|
154
|
+
"typescript": "~4.4.4",
|
|
155
|
+
"zone.js": "~0.11.6"
|
|
156
|
+
},
|
|
53
157
|
"engines": {
|
|
54
158
|
"node": ">=14.17.0",
|
|
55
|
-
"npm": ">=6.14.
|
|
56
|
-
},
|
|
57
|
-
"module": "fesm2015/angular-slickgrid.mjs",
|
|
58
|
-
"es2020": "fesm2020/angular-slickgrid.mjs",
|
|
59
|
-
"esm2020": "esm2020/angular-slickgrid.mjs",
|
|
60
|
-
"fesm2020": "fesm2020/angular-slickgrid.mjs",
|
|
61
|
-
"fesm2015": "fesm2015/angular-slickgrid.mjs",
|
|
62
|
-
"typings": "angular-slickgrid.d.ts",
|
|
63
|
-
"exports": {
|
|
64
|
-
"./package.json": {
|
|
65
|
-
"default": "./package.json"
|
|
66
|
-
},
|
|
67
|
-
".": {
|
|
68
|
-
"types": "./angular-slickgrid.d.ts",
|
|
69
|
-
"esm2020": "./esm2020/angular-slickgrid.mjs",
|
|
70
|
-
"es2020": "./fesm2020/angular-slickgrid.mjs",
|
|
71
|
-
"es2015": "./fesm2015/angular-slickgrid.mjs",
|
|
72
|
-
"node": "./fesm2015/angular-slickgrid.mjs",
|
|
73
|
-
"default": "./fesm2020/angular-slickgrid.mjs"
|
|
74
|
-
}
|
|
159
|
+
"npm": ">=6.14.13"
|
|
75
160
|
},
|
|
76
|
-
"
|
|
77
|
-
|
|
161
|
+
"resolutions": {
|
|
162
|
+
"caniuse-lite": "1.0.30001356"
|
|
163
|
+
}
|
|
164
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { HomeComponent } from './examples/home.component';
|
|
2
|
+
import { GridAddItemComponent } from './examples/grid-additem.component';
|
|
3
|
+
import { GridAngularComponent } from './examples/grid-angular.component';
|
|
4
|
+
import { GridAutoHeightComponent } from './examples/grid-autoheight.component';
|
|
5
|
+
import { GridBasicComponent } from './examples/grid-basic.component';
|
|
6
|
+
import { GridClientSideComponent } from './examples/grid-clientside.component';
|
|
7
|
+
import { GridColspanComponent } from './examples/grid-colspan.component';
|
|
8
|
+
import { GridCompositeEditorComponent } from './examples/grid-composite-editor.component';
|
|
9
|
+
import { GridContextMenuComponent } from './examples/grid-contextmenu.component';
|
|
10
|
+
import { GridCustomTooltipComponent } from './examples/grid-custom-tooltip.component';
|
|
11
|
+
import { GridDraggableGroupingComponent } from './examples/grid-draggrouping.component';
|
|
12
|
+
import { GridEditorComponent } from './examples/grid-editor.component';
|
|
13
|
+
import { GridFormatterComponent } from './examples/grid-formatter.component';
|
|
14
|
+
import { GridFrozenComponent } from './examples/grid-frozen.component';
|
|
15
|
+
import { GridGraphqlComponent } from './examples/grid-graphql.component';
|
|
16
|
+
import { GridGraphqlWithoutPaginationComponent } from './examples/grid-graphql-nopage.component';
|
|
17
|
+
import { GridGroupingComponent } from './examples/grid-grouping.component';
|
|
18
|
+
import { GridHeaderButtonComponent } from './examples/grid-headerbutton.component';
|
|
19
|
+
import { GridHeaderMenuComponent } from './examples/grid-headermenu.component';
|
|
20
|
+
import { GridLocalizationComponent } from './examples/grid-localization.component';
|
|
21
|
+
import { GridMenuComponent } from './examples/grid-menu.component';
|
|
22
|
+
import { GridOdataComponent } from './examples/grid-odata.component';
|
|
23
|
+
import { GridRangeComponent } from './examples/grid-range.component';
|
|
24
|
+
import { GridRemoteComponent } from './examples/grid-remote.component';
|
|
25
|
+
import { GridResizeByContentComponent } from './examples/grid-resize-by-content.component';
|
|
26
|
+
import { GridRowDetailComponent } from './examples/grid-rowdetail.component';
|
|
27
|
+
import { GridRowMoveComponent } from './examples/grid-rowmove.component';
|
|
28
|
+
import { GridRowSelectionComponent } from './examples/grid-rowselection.component';
|
|
29
|
+
import { GridStateComponent } from './examples/grid-state.component';
|
|
30
|
+
import { GridTabsComponent } from './examples/grid-tabs.component';
|
|
31
|
+
import { GridTradingComponent } from './examples/grid-trading.component';
|
|
32
|
+
import { GridTreeDataHierarchicalComponent } from './examples/grid-tree-data-hierarchical.component';
|
|
33
|
+
import { GridTreeDataParentChildComponent } from './examples/grid-tree-data-parent-child.component';
|
|
34
|
+
import { SwtCommonGridTestComponent } from './examples/swt-common-grid-test.component';
|
|
35
|
+
|
|
36
|
+
import { NgModule } from '@angular/core';
|
|
37
|
+
import { Routes, RouterModule } from '@angular/router';
|
|
38
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
39
|
+
|
|
40
|
+
const routes: Routes = [
|
|
41
|
+
{ path: 'home', component: HomeComponent },
|
|
42
|
+
{ path: 'angular-components', component: GridAngularComponent },
|
|
43
|
+
{ path: 'additem', component: GridAddItemComponent },
|
|
44
|
+
{ path: 'autoheight', component: GridAutoHeightComponent },
|
|
45
|
+
{ path: 'basic', component: GridBasicComponent },
|
|
46
|
+
{ path: 'colspan', component: GridColspanComponent },
|
|
47
|
+
{ path: 'composite-editor', component: GridCompositeEditorComponent },
|
|
48
|
+
{ path: 'context', component: GridContextMenuComponent },
|
|
49
|
+
{ path: 'custom-tooltip', component: GridCustomTooltipComponent },
|
|
50
|
+
{ path: 'editor', component: GridEditorComponent },
|
|
51
|
+
{ path: 'formatter', component: GridFormatterComponent },
|
|
52
|
+
{ path: 'frozen', component: GridFrozenComponent },
|
|
53
|
+
{ path: 'headerbutton', component: GridHeaderButtonComponent },
|
|
54
|
+
{ path: 'headermenu', component: GridHeaderMenuComponent },
|
|
55
|
+
{ path: 'gridgraphql', component: GridGraphqlComponent },
|
|
56
|
+
{ path: 'graphql-nopage', component: GridGraphqlWithoutPaginationComponent },
|
|
57
|
+
{ path: 'gridmenu', component: GridMenuComponent },
|
|
58
|
+
{ path: 'gridstate', component: GridStateComponent },
|
|
59
|
+
{ path: 'gridtabs', component: GridTabsComponent },
|
|
60
|
+
{ path: 'draggrouping', component: GridDraggableGroupingComponent },
|
|
61
|
+
{ path: 'grouping', component: GridGroupingComponent },
|
|
62
|
+
{ path: 'localization', component: GridLocalizationComponent },
|
|
63
|
+
{ path: 'clientside', component: GridClientSideComponent },
|
|
64
|
+
{ path: 'odata', component: GridOdataComponent },
|
|
65
|
+
{ path: 'range', component: GridRangeComponent },
|
|
66
|
+
{ path: 'remote', component: GridRemoteComponent },
|
|
67
|
+
{ path: 'resize-by-content', component: GridResizeByContentComponent },
|
|
68
|
+
{ path: 'rowdetail', component: GridRowDetailComponent },
|
|
69
|
+
{ path: 'rowmove', component: GridRowMoveComponent },
|
|
70
|
+
{ path: 'selection', component: GridRowSelectionComponent },
|
|
71
|
+
{ path: 'trading', component: GridTradingComponent },
|
|
72
|
+
{ path: 'tree-data-parent-child', component: GridTreeDataParentChildComponent },
|
|
73
|
+
{ path: 'tree-data-hierarchical', component: GridTreeDataHierarchicalComponent },
|
|
74
|
+
{ path: 'swt', component: SwtCommonGridTestComponent },
|
|
75
|
+
{ path: '', redirectTo: '/trading', pathMatch: 'full' },
|
|
76
|
+
{ path: '**', redirectTo: '/trading', pathMatch: 'full' }
|
|
77
|
+
];
|
|
78
|
+
|
|
79
|
+
@NgModule({
|
|
80
|
+
imports: [RouterModule.forRoot(routes, { useHash: true, relativeLinkResolution: 'legacy' }), TranslateModule],
|
|
81
|
+
exports: [RouterModule, TranslateModule],
|
|
82
|
+
})
|
|
83
|
+
export class AppRoutingRoutingModule { }
|