@provoly/dashboard 0.25.1 → 0.25.2
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/assets/svgs/format_bold.svg +1 -0
- package/assets/svgs/format_details.svg +1 -0
- package/assets/svgs/format_italic.svg +1 -0
- package/assets/svgs/format_list_bulleted.svg +1 -0
- package/assets/svgs/format_list_numbered.svg +1 -0
- package/assets/svgs/format_quote.svg +1 -0
- package/assets/svgs/format_strikethrough.svg +1 -0
- package/assets/svgs/format_table.svg +1 -0
- package/assets/svgs/format_title.svg +1 -0
- package/assets/svgs/format_underlined.svg +1 -0
- package/components/text-editor/component/text-editor.component.d.ts +38 -0
- package/components/text-editor/i18n/en.translations.d.ts +22 -0
- package/components/text-editor/i18n/fr.translations.d.ts +22 -0
- package/components/text-editor/index.d.ts +5 -0
- package/components/text-editor/mdToHtml.pipe.d.ts +7 -0
- package/components/text-editor/public-api.d.ts +5 -0
- package/components/text-editor/service/text-editor.service.d.ts +40 -0
- package/components/text-editor/style/_o-text-editor.scss +120 -0
- package/components/text-editor/style/css.component.d.ts +5 -0
- package/components/text-editor/text-editor.module.d.ts +17 -0
- package/dataset/components/dataset-detail/dataset-detail.component.d.ts +11 -4
- package/dataset/components/dataset-version-form/dataset-version-form.component.d.ts +23 -0
- package/dataset/dataset.module.d.ts +7 -5
- package/dataset/i18n/en.translations.d.ts +6 -0
- package/dataset/i18n/fr.translations.d.ts +6 -0
- package/dataset/style/_o-pry-dataset-detail.scss +61 -25
- package/dataset/style/_o-pry-dataset-version-form.scss +7 -0
- package/esm2022/admin/components/admin-classes/admin-classes-customize/admin-classes-customize.component.mjs +1 -1
- package/esm2022/admin/components/admin-classes/admin-classes-select/admin-classes-select.component.mjs +1 -1
- package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-select/admin-attributes-select.component.mjs +1 -1
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +1 -1
- package/esm2022/admin/components/admin-environment/admin-environment-select/admin-environment-select.component.mjs +1 -1
- package/esm2022/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.mjs +1 -1
- package/esm2022/admin/components/admin-metadata/admin-select-metadata/admin-select-metadata.component.mjs +1 -1
- package/esm2022/admin/components/admin-metadata-rules/admin-select-metadata-rules/admin-select-metadata-rules.component.mjs +1 -1
- package/esm2022/admin/components/admin-metadata-user/admin-user-select-metadata/admin-user-select-metadata.component.mjs +1 -1
- package/esm2022/admin/components/admin-predicates/admin-predicates-select/admin-predicates-select.component.mjs +1 -1
- package/esm2022/admin/components/admin-relation-types/admin-relation-types-select/admin-relation-types-select.component.mjs +1 -1
- package/esm2022/admin/components/admin-user/admin-user-select/admin-user-select.component.mjs +1 -1
- package/esm2022/components/text-editor/component/text-editor.component.mjs +126 -0
- package/esm2022/components/text-editor/i18n/en.translations.mjs +23 -0
- package/esm2022/components/text-editor/i18n/fr.translations.mjs +23 -0
- package/esm2022/components/text-editor/mdToHtml.pipe.mjs +17 -0
- package/esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs +5 -0
- package/esm2022/components/text-editor/public-api.mjs +6 -0
- package/esm2022/components/text-editor/service/text-editor.service.mjs +136 -0
- package/esm2022/components/text-editor/style/css.component.mjs +11 -0
- package/esm2022/components/text-editor/text-editor.module.mjs +32 -0
- package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +1 -1
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +42 -9
- package/esm2022/dataset/components/dataset-version-form/dataset-version-form.component.mjs +58 -0
- package/esm2022/dataset/dataset.module.mjs +25 -8
- package/esm2022/dataset/i18n/en.translations.mjs +7 -1
- package/esm2022/dataset/i18n/fr.translations.mjs +7 -1
- package/esm2022/dataset/style/css.component.mjs +3 -3
- package/esm2022/import/components/import.component.mjs +39 -21
- package/esm2022/import/import.module.mjs +12 -5
- package/esm2022/import/store/import.actions.mjs +1 -1
- package/esm2022/import/store/import.effects.mjs +4 -2
- package/esm2022/import/store/import.service.mjs +3 -2
- package/esm2022/lib/core/components/tabs/tab-group.component.mjs +7 -3
- package/esm2022/lib/core/i18n/en.translations.mjs +3 -3
- package/esm2022/lib/core/store/data-source/data-source.actions.mjs +4 -2
- package/esm2022/lib/core/store/data-source/data-source.effects.mjs +2 -1
- package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
- package/esm2022/lib/core/store/data-source/data-source.reducer.mjs +4 -1
- package/esm2022/lib/core/store/data-source/data-source.service.mjs +13 -1
- package/esm2022/restitution/style/css.component.mjs +2 -2
- package/esm2022/toolbox/style/css.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-admin.mjs +12 -12
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-components-text-editor.mjs +356 -0
- package/fesm2022/provoly-dashboard-components-text-editor.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-dataset.mjs +128 -18
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-import.mjs +53 -25
- package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +2 -2
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +2 -2
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +38 -4
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/import/components/import.component.d.ts +10 -5
- package/import/import.module.d.ts +2 -1
- package/import/store/import.actions.d.ts +2 -0
- package/import/store/import.service.d.ts +1 -1
- package/lib/core/components/tabs/tab-group.component.d.ts +3 -2
- package/lib/core/i18n/en.translations.d.ts +1 -1
- package/lib/core/store/data-source/data-source.actions.d.ts +10 -0
- package/lib/core/store/data-source/data-source.effects.d.ts +8 -5
- package/lib/core/store/data-source/data-source.model.d.ts +3 -0
- package/lib/core/store/data-source/data-source.service.d.ts +2 -0
- package/package.json +36 -30
- package/restitution/style/_o-restitution.scss +0 -1
- package/styles/base/_utils.scss +4 -0
- package/styles/components/_o-text-panel.scss +64 -0
- package/styles/main.scss +1 -0
- package/styles-theme/components-theme/_a-form-field.theme.scss +2 -0
- package/toolbox/style/_o-dashboard-details.component.scss +3 -25
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
|
-
import { Dataset } from '@provoly/dashboard';
|
|
3
|
+
import { Dataset, DataSourceService, SubscriptionnerDirective } from '@provoly/dashboard';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
type FileExtension = 'csv' | 'zip';
|
|
7
|
-
export declare class PryImportComponent implements OnDestroy {
|
|
7
|
+
export declare class PryImportComponent extends SubscriptionnerDirective implements OnDestroy {
|
|
8
8
|
private store;
|
|
9
|
+
private dsService;
|
|
9
10
|
datasets$: Observable<Dataset[]>;
|
|
10
11
|
file?: File;
|
|
11
|
-
|
|
12
|
+
selectedDataset?: Dataset;
|
|
12
13
|
selectedFileType: FileExtension;
|
|
13
14
|
loading$: Observable<boolean>;
|
|
14
15
|
normalizeGeoShape: boolean;
|
|
@@ -18,14 +19,18 @@ export declare class PryImportComponent implements OnDestroy {
|
|
|
18
19
|
}[];
|
|
19
20
|
fileExtension: Record<FileExtension, string>;
|
|
20
21
|
showMessage: boolean;
|
|
21
|
-
|
|
22
|
+
productionDate: string;
|
|
23
|
+
producer: string;
|
|
24
|
+
additionalInformation: string;
|
|
25
|
+
maxDate: string;
|
|
26
|
+
constructor(store: Store, dsService: DataSourceService);
|
|
22
27
|
ngOnDestroy(): void;
|
|
23
|
-
sortObjectEntries(obj: any): any;
|
|
24
28
|
uploadedChange($event: File): void;
|
|
25
29
|
submit(): void;
|
|
26
30
|
isSubmitDisabled(): boolean;
|
|
27
31
|
getFileSize(size: number): string;
|
|
28
32
|
onFileTypeChange(fileType: FileExtension): void;
|
|
33
|
+
getLastActiveVersion($event?: Dataset): void;
|
|
29
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryImportComponent, never>;
|
|
30
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<PryImportComponent, "pry-import", never, {}, {}, never, never, false, never>;
|
|
31
36
|
}
|
|
@@ -9,10 +9,11 @@ import * as i6 from "./import-routing.module";
|
|
|
9
9
|
import * as i7 from "@ngrx/store";
|
|
10
10
|
import * as i8 from "@ngrx/effects";
|
|
11
11
|
import * as i9 from "@provoly/dashboard/components/checkbox";
|
|
12
|
+
import * as i10 from "@provoly/dashboard/components/text-editor";
|
|
12
13
|
export declare class PryImportModule {
|
|
13
14
|
private pryTranslateService;
|
|
14
15
|
constructor(pryTranslateService: PryI18nService);
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PryImportModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PryImportModule, [typeof i1.PryImportComponent, typeof i2.PryImportCssComponent], [typeof i3.PryCoreModule, typeof i3.PrySelectModule, typeof i3.PryI18nModule, typeof i4.CommonModule, typeof i3.PryIconModule, typeof i5.FormsModule, typeof i6.PryImportRoutingModule, typeof i7.StoreFeatureModule, typeof i8.EffectsFeatureModule, typeof i9.PryCheckboxModule], [typeof i1.PryImportComponent]>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PryImportModule, [typeof i1.PryImportComponent, typeof i2.PryImportCssComponent], [typeof i3.PryCoreModule, typeof i3.PrySelectModule, typeof i3.PryI18nModule, typeof i4.CommonModule, typeof i3.PryIconModule, typeof i5.FormsModule, typeof i6.PryImportRoutingModule, typeof i7.StoreFeatureModule, typeof i8.EffectsFeatureModule, typeof i9.PryCheckboxModule, typeof i5.ReactiveFormsModule, typeof i10.PryTextEditorModule], [typeof i1.PryImportComponent]>;
|
|
17
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<PryImportModule>;
|
|
18
19
|
}
|
|
@@ -5,11 +5,13 @@ export declare const ImportActions: {
|
|
|
5
5
|
dataset: string;
|
|
6
6
|
fileType: string;
|
|
7
7
|
normalizeGeo?: boolean | undefined;
|
|
8
|
+
datasetVersionInformation: Partial<DatasetVersion>;
|
|
8
9
|
}) => {
|
|
9
10
|
file: File;
|
|
10
11
|
dataset: string;
|
|
11
12
|
fileType: string;
|
|
12
13
|
normalizeGeo?: boolean | undefined;
|
|
14
|
+
datasetVersionInformation: Partial<DatasetVersion>;
|
|
13
15
|
} & import("@ngrx/store/src/models").TypedAction<"[Import] import data">>;
|
|
14
16
|
uploadSuccess: import("@ngrx/store").ActionCreator<"[Import] import data successful", (props: {
|
|
15
17
|
uploadedDataset: Partial<DatasetVersion>;
|
|
@@ -6,7 +6,7 @@ export declare class ImportService {
|
|
|
6
6
|
private httpClient;
|
|
7
7
|
private store;
|
|
8
8
|
constructor(httpClient: HttpClient, store: Store<any>);
|
|
9
|
-
upload(file: File, datasetId: string, fileType: string, normalizeGeo
|
|
9
|
+
upload(file: File, datasetId: string, fileType: string, normalizeGeo: boolean | undefined, datasetVersionInformation: Partial<DatasetVersion>): import("rxjs").Observable<Partial<DatasetVersion>>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImportService, never>;
|
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<ImportService>;
|
|
12
12
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterContentInit, QueryList } from '@angular/core';
|
|
1
|
+
import { AfterContentInit, EventEmitter, QueryList } from '@angular/core';
|
|
2
2
|
import { TabComponent } from './tab.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class TabGroupComponent implements AfterContentInit {
|
|
@@ -7,10 +7,11 @@ export declare class TabGroupComponent implements AfterContentInit {
|
|
|
7
7
|
currentTab: TabComponent;
|
|
8
8
|
currentTabIndex: number;
|
|
9
9
|
static instanceId: number;
|
|
10
|
+
clickedTabIdx: EventEmitter<number>;
|
|
10
11
|
get instanceId(): number;
|
|
11
12
|
constructor();
|
|
12
13
|
ngAfterContentInit(): void;
|
|
13
14
|
switch(tab: TabComponent, index: number): void;
|
|
14
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "pry-tab-group", never, { "translationStringBase": { "alias": "translationStringBase"; "required": false; }; }, {}, ["tabs"], never, false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "pry-tab-group", never, { "translationStringBase": { "alias": "translationStringBase"; "required": false; }; }, { "clickedTabIdx": "clickedTabIdx"; }, ["tabs"], never, false, never>;
|
|
16
17
|
}
|
|
@@ -315,6 +315,7 @@ export declare const enTranslations: {
|
|
|
315
315
|
view: string;
|
|
316
316
|
};
|
|
317
317
|
components: {
|
|
318
|
+
searchData: string;
|
|
318
319
|
chipsSelector: {
|
|
319
320
|
datasource: {
|
|
320
321
|
select: string;
|
|
@@ -335,7 +336,6 @@ export declare const enTranslations: {
|
|
|
335
336
|
};
|
|
336
337
|
};
|
|
337
338
|
};
|
|
338
|
-
searchData: string;
|
|
339
339
|
};
|
|
340
340
|
errors: {
|
|
341
341
|
default: string;
|
|
@@ -251,5 +251,15 @@ export declare const DataSourceActions: {
|
|
|
251
251
|
error: any;
|
|
252
252
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset/Previews] get by id Failure">>;
|
|
253
253
|
};
|
|
254
|
+
updateDatasetVersionInfo: import("@ngrx/store").ActionCreator<"[Dataset] Update Dataset version info", (props: {
|
|
255
|
+
version: Partial<DatasetVersion>;
|
|
256
|
+
}) => {
|
|
257
|
+
version: Partial<DatasetVersion>;
|
|
258
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Update Dataset version info">>;
|
|
259
|
+
updateDatasetVersionInfoSuccess: import("@ngrx/store").ActionCreator<"[Dataset] Update Dataset version info success", (props: {
|
|
260
|
+
version: Partial<DatasetVersion>;
|
|
261
|
+
}) => {
|
|
262
|
+
version: Partial<DatasetVersion>;
|
|
263
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Update Dataset version info success">>;
|
|
254
264
|
};
|
|
255
265
|
};
|
|
@@ -4,7 +4,7 @@ import { PryDialogService } from '../../components/overlay/dialog.service';
|
|
|
4
4
|
import { PrySnackbarService } from '../../components/snackbar/snackbar.service';
|
|
5
5
|
import { PryI18nService } from '../../i18n/i18n.service';
|
|
6
6
|
import { SearchService } from '../search/search.service';
|
|
7
|
-
import { Dataset, NamedQuery } from './data-source.model';
|
|
7
|
+
import { Dataset, DatasetVersion, NamedQuery } from './data-source.model';
|
|
8
8
|
import { DataSourceService } from './data-source.service';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
export declare class DataSourceEffects {
|
|
@@ -73,11 +73,11 @@ export declare class DataSourceEffects {
|
|
|
73
73
|
error: any;
|
|
74
74
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset by Id Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
75
75
|
listVersions$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset versions Failure"> | ({
|
|
76
|
-
versions:
|
|
76
|
+
versions: DatasetVersion[];
|
|
77
77
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset versions Success">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
78
78
|
listVersionsById$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dataset] Get Dataset versions Failure"> | ({
|
|
79
79
|
id: string;
|
|
80
|
-
versions:
|
|
80
|
+
versions: DatasetVersion[];
|
|
81
81
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Update Dataset version list">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
82
82
|
confirmDatasourceDeletion$: import("rxjs").Observable<{
|
|
83
83
|
name: string;
|
|
@@ -85,12 +85,12 @@ export declare class DataSourceEffects {
|
|
|
85
85
|
addRoute: string;
|
|
86
86
|
} & import("@ngrx/store/src/models").TypedAction<"[Datase] confirm deletion datasource">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
87
87
|
deactivateDatasetVersion$: import("rxjs").Observable<({
|
|
88
|
-
datasetVersion:
|
|
88
|
+
datasetVersion: DatasetVersion;
|
|
89
89
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Deactivate dataset version success">) | ({
|
|
90
90
|
error: any;
|
|
91
91
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Deactivate dataset version failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
92
92
|
activateDatasetVersion$: import("rxjs").Observable<({
|
|
93
|
-
datasetVersion:
|
|
93
|
+
datasetVersion: DatasetVersion;
|
|
94
94
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Activate dataset version success">) | ({
|
|
95
95
|
error: any;
|
|
96
96
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Activate dataset version failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
@@ -100,6 +100,9 @@ export declare class DataSourceEffects {
|
|
|
100
100
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset/Previews] get by id Success">) | ({
|
|
101
101
|
error: any;
|
|
102
102
|
} & import("@ngrx/store/src/models").TypedAction<"[Dataset/Previews] get by id Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
103
|
+
updateDatasetVersionInfo: import("rxjs").Observable<{
|
|
104
|
+
version: Partial<DatasetVersion>;
|
|
105
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Dataset] Update Dataset version info success">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
103
106
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataSourceEffects, never>;
|
|
104
107
|
static ɵprov: i0.ɵɵInjectableDeclaration<DataSourceEffects>;
|
|
105
108
|
}
|
|
@@ -37,6 +37,8 @@ export declare class DataSourceService {
|
|
|
37
37
|
getPreviews(id: string): Observable<DatasetPreview[]>;
|
|
38
38
|
deactivateDatasetVersion(versionId: string): Observable<DatasetVersion>;
|
|
39
39
|
activateDatasetVersion(versionId: string): Observable<DatasetVersion>;
|
|
40
|
+
getLastActiveDatasetVersion(datasetId: string): Observable<DatasetVersion>;
|
|
41
|
+
updateDatasetVersionInfo(version: Partial<DatasetVersion>): Observable<DatasetVersion>;
|
|
40
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataSourceService, never>;
|
|
41
43
|
static ɵprov: i0.ɵɵInjectableDeclaration<DataSourceService>;
|
|
42
44
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.2",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -132,6 +132,36 @@
|
|
|
132
132
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
133
133
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
134
134
|
},
|
|
135
|
+
"./filters/autocomplete": {
|
|
136
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
137
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
138
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
139
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
140
|
+
},
|
|
141
|
+
"./filters/date": {
|
|
142
|
+
"types": "./filters/date/index.d.ts",
|
|
143
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
144
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
145
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
146
|
+
},
|
|
147
|
+
"./filters/list": {
|
|
148
|
+
"types": "./filters/list/index.d.ts",
|
|
149
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
150
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
151
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
152
|
+
},
|
|
153
|
+
"./filters/number": {
|
|
154
|
+
"types": "./filters/number/index.d.ts",
|
|
155
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
156
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
157
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
158
|
+
},
|
|
159
|
+
"./filters/text": {
|
|
160
|
+
"types": "./filters/text/index.d.ts",
|
|
161
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
162
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
163
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
164
|
+
},
|
|
135
165
|
"./components/card": {
|
|
136
166
|
"types": "./components/card/index.d.ts",
|
|
137
167
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -186,35 +216,11 @@
|
|
|
186
216
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
187
217
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
188
218
|
},
|
|
189
|
-
"./
|
|
190
|
-
"types": "./
|
|
191
|
-
"esm2022": "./esm2022/
|
|
192
|
-
"esm": "./esm2022/
|
|
193
|
-
"default": "./fesm2022/provoly-dashboard-
|
|
194
|
-
},
|
|
195
|
-
"./filters/date": {
|
|
196
|
-
"types": "./filters/date/index.d.ts",
|
|
197
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
198
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
199
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
200
|
-
},
|
|
201
|
-
"./filters/list": {
|
|
202
|
-
"types": "./filters/list/index.d.ts",
|
|
203
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
204
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
205
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
206
|
-
},
|
|
207
|
-
"./filters/number": {
|
|
208
|
-
"types": "./filters/number/index.d.ts",
|
|
209
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
210
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
211
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
212
|
-
},
|
|
213
|
-
"./filters/text": {
|
|
214
|
-
"types": "./filters/text/index.d.ts",
|
|
215
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
216
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
217
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
219
|
+
"./components/text-editor": {
|
|
220
|
+
"types": "./components/text-editor/index.d.ts",
|
|
221
|
+
"esm2022": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
222
|
+
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
223
|
+
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
218
224
|
},
|
|
219
225
|
"./pipeline-components/filter": {
|
|
220
226
|
"types": "./pipeline-components/filter/index.d.ts",
|
package/styles/base/_utils.scss
CHANGED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
@use '../../styles/abstracts/index' as *;
|
|
2
|
+
@use '../../styles/abstracts/functions' as *;
|
|
3
|
+
@use '../../styles/abstracts/mixins' as *;
|
|
4
|
+
@use '../../styles-theme/abstracts-theme/variables.theme' as *;
|
|
5
|
+
|
|
6
|
+
%o-text-panel {
|
|
7
|
+
h1, h2, h3, h4, h5, h6 {
|
|
8
|
+
padding: 0;
|
|
9
|
+
margin: 0;
|
|
10
|
+
color: themed($theme-map, 'color', 'grey', 700);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
h5 {
|
|
14
|
+
font-size: toRem(14);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
span, p {
|
|
18
|
+
font-size: toRem(14);
|
|
19
|
+
color: themed($theme-map, 'color', 'primary', 750);
|
|
20
|
+
white-space: pre-wrap;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
div {
|
|
24
|
+
padding-bottom: 10px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
ul, ol {
|
|
28
|
+
margin: 0;
|
|
29
|
+
line-height: 1rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
li {
|
|
33
|
+
color: themed($theme-map, 'color', 'grey', 700);
|
|
34
|
+
font-size: toRem(14);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
table {
|
|
38
|
+
border-collapse: collapse;
|
|
39
|
+
thead {
|
|
40
|
+
tr {
|
|
41
|
+
border-bottom-width: toRem(1);
|
|
42
|
+
border-bottom-style: solid;
|
|
43
|
+
th {
|
|
44
|
+
padding-top: toRem(12);
|
|
45
|
+
padding-bottom: toRem(12);
|
|
46
|
+
text-align: left;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
tbody {
|
|
52
|
+
tr {
|
|
53
|
+
border-bottom-width: toRem(1);
|
|
54
|
+
border-bottom-style: solid;
|
|
55
|
+
|
|
56
|
+
td {
|
|
57
|
+
padding: toRem(12) toRem(8);
|
|
58
|
+
text-align: left;
|
|
59
|
+
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
package/styles/main.scss
CHANGED
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
@use 'components/o-properties' as *;
|
|
67
67
|
@use 'components/o-settings' as *;
|
|
68
68
|
@use 'components/o-tabs' as *;
|
|
69
|
+
@use 'components/o-text-panel' as *;
|
|
69
70
|
@use 'components/o-widget' as *;
|
|
70
71
|
@use 'components/o-pry-admin-classes-customize' as *;
|
|
71
72
|
@use 'components/o-pry-admin-dataset-select' as *;
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
@use '../../styles/abstracts/functions' as *;
|
|
3
3
|
@use '../../styles/abstracts/mixins' as *;
|
|
4
4
|
@use '../../styles-theme/abstracts-theme/variables.theme' as *;
|
|
5
|
+
@use '../../styles/components/o-text-panel' as *;
|
|
6
|
+
|
|
5
7
|
|
|
6
8
|
.o-dashboard-details {
|
|
7
9
|
&.a-btn {
|
|
@@ -40,30 +42,6 @@
|
|
|
40
42
|
padding: 0;
|
|
41
43
|
}
|
|
42
44
|
|
|
43
|
-
|
|
44
|
-
font-weight: bold;
|
|
45
|
-
font-size: toRem(14);
|
|
46
|
-
color: themed($theme-map, 'color', 'grey', 700);
|
|
47
|
-
padding: 0;
|
|
48
|
-
margin: 0;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
span, p {
|
|
52
|
-
font-size: toRem(14);
|
|
53
|
-
color: themed($theme-map, 'color', 'primary', 750);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
div {
|
|
57
|
-
padding-bottom: 10px;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
ul {
|
|
61
|
-
margin: 0;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
li {
|
|
65
|
-
color: themed($theme-map, 'color', 'grey', 700);
|
|
66
|
-
font-size: toRem(14);
|
|
67
|
-
}
|
|
45
|
+
@extend %o-text-panel;
|
|
68
46
|
}
|
|
69
47
|
|