@3ddv/software-division-components 1.0.0-alpha.3.7 → 1.0.0-alpha.3.9
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/backoffice/table/types.d.ts +1 -1
- package/esm2022/backoffice/table/components/body-row/body-row.component.mjs +1 -1
- package/esm2022/backoffice/table/table.component.mjs +2 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/3ddv-software-division-components.mjs +4 -4
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { NgPipes } from '
|
|
1
|
+
import { NgPipes } from '../../shared/types';
|
|
2
2
|
export type ScrollDirection = 'vertical' | 'horizontal' | 'both';
|
|
3
3
|
export type TableSize = 'small' | 'large' | 'normal';
|
|
4
4
|
export type InputTypes = 'text' | 'select' | 'checkbox';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Component, input } from '@angular/core';
|
|
2
|
-
import { FormatValuePipe } from '
|
|
2
|
+
import { FormatValuePipe } from '../../../../../shared/format-value.pipe.js';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
const _c0 = ["app-body-row", ""];
|
|
5
5
|
const _forTrack0 = ($index, $item) => $item.field;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CommonModule } from '@angular/common';
|
|
2
2
|
import { ChangeDetectionStrategy, Component, input, ViewChild } from '@angular/core';
|
|
3
|
-
import { ButtonComponent } from '
|
|
4
|
-
import { validateStylesForComponent } from '
|
|
3
|
+
import { ButtonComponent } from '../../../generic/button/index.js';
|
|
4
|
+
import { validateStylesForComponent } from '../../../utils/validate-styles-for-component.js';
|
|
5
5
|
import { ButtonModule } from 'primeng/button';
|
|
6
6
|
import { ContextMenuModule } from 'primeng/contextmenu';
|
|
7
7
|
import { PaginatorModule } from 'primeng/paginator';
|
package/esm2022/public-api.mjs
CHANGED
|
@@ -2,4 +2,5 @@ export * from './backoffice';
|
|
|
2
2
|
export * from './dvm';
|
|
3
3
|
export * from './generic';
|
|
4
4
|
export { provideSdComponentsTheme } from './shared/theme.service';
|
|
5
|
-
|
|
5
|
+
export { validateStylesForComponent } from './utils/validate-styles-for-component';
|
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3Byb2plY3RzL3NvZnR3YXJlLWRpdmlzaW9uLWNvbXBvbmVudHMvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUM7QUFDN0IsY0FBYyxPQUFPLENBQUM7QUFDdEIsY0FBYyxXQUFXLENBQUM7QUFDMUIsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDbEUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sdUNBQXVDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2JhY2tvZmZpY2UnO1xuZXhwb3J0ICogZnJvbSAnLi9kdm0nO1xuZXhwb3J0ICogZnJvbSAnLi9nZW5lcmljJztcbmV4cG9ydCB7IHByb3ZpZGVTZENvbXBvbmVudHNUaGVtZSB9IGZyb20gJy4vc2hhcmVkL3RoZW1lLnNlcnZpY2UnO1xuZXhwb3J0IHsgdmFsaWRhdGVTdHlsZXNGb3JDb21wb25lbnQgfSBmcm9tICcuL3V0aWxzL3ZhbGlkYXRlLXN0eWxlcy1mb3ItY29tcG9uZW50JztcbiJdfQ==
|
|
@@ -2,8 +2,8 @@ import * as i1$2 from '@angular/common';
|
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
4
|
import { input, Component, computed, ChangeDetectionStrategy, ViewChild, Injectable, InjectionToken, Directive, Inject, HostBinding } from '@angular/core';
|
|
5
|
-
import { ButtonComponent as ButtonComponent$1 } from '
|
|
6
|
-
import { validateStylesForComponent as validateStylesForComponent$1 } from '
|
|
5
|
+
import { ButtonComponent as ButtonComponent$1 } from '../generic/button/index.js';
|
|
6
|
+
import { validateStylesForComponent as validateStylesForComponent$1 } from '../utils/validate-styles-for-component.js';
|
|
7
7
|
import * as i1$1 from 'primeng/button';
|
|
8
8
|
import { ButtonModule, Button, ButtonStyle } from 'primeng/button';
|
|
9
9
|
import * as i3 from 'primeng/contextmenu';
|
|
@@ -11,7 +11,7 @@ import { ContextMenuModule } from 'primeng/contextmenu';
|
|
|
11
11
|
import { PaginatorModule } from 'primeng/paginator';
|
|
12
12
|
import * as i1 from 'primeng/table';
|
|
13
13
|
import { TableModule, Table, TableService as TableService$1 } from 'primeng/table';
|
|
14
|
-
import { FormatValuePipe } from '
|
|
14
|
+
import { FormatValuePipe } from '../shared/format-value.pipe.js';
|
|
15
15
|
import * as i2 from 'primeng/api';
|
|
16
16
|
import { RippleModule } from 'primeng/ripple';
|
|
17
17
|
import * as i3$1 from 'primeng/tooltip';
|
|
@@ -695,5 +695,5 @@ class ModalService {
|
|
|
695
695
|
* Generated bundle index. Do not edit.
|
|
696
696
|
*/
|
|
697
697
|
|
|
698
|
-
export { ButtonComponent, CartComponent, CartItemComponent, CartItemService, CartService, DrawerComponent, DrawerService, LegendComponent, LegendService, LoaderComponent, LoaderService, ModalComponent, ModalService, PopoverComponent, PopoverService, StepperComponent, StepperService, TableComponent, TableService, TicketInfoItemComponent, TicketInfoItemService, provideSdComponentsTheme, tableFactory };
|
|
698
|
+
export { ButtonComponent, CartComponent, CartItemComponent, CartItemService, CartService, DrawerComponent, DrawerService, LegendComponent, LegendService, LoaderComponent, LoaderService, ModalComponent, ModalService, PopoverComponent, PopoverService, StepperComponent, StepperService, TableComponent, TableService, TicketInfoItemComponent, TicketInfoItemService, provideSdComponentsTheme, tableFactory, validateStylesForComponent };
|
|
699
699
|
//# sourceMappingURL=3ddv-software-division-components.mjs.map
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ export * from './backoffice';
|
|
|
2
2
|
export * from './dvm';
|
|
3
3
|
export * from './generic';
|
|
4
4
|
export { provideSdComponentsTheme } from './shared/theme.service';
|
|
5
|
+
export { validateStylesForComponent } from './utils/validate-styles-for-component';
|
|
5
6
|
//# sourceMappingURL=public-api.d.ts.map
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../projects/software-division-components/src/public-api.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../projects/software-division-components/src/public-api.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,0BAA0B,EAAE,MAAM,uCAAuC,CAAC"}
|