@seniorsistemas/angular-components 18.1.0-feature-sds-276-5af1a901 → 18.1.0-feature-sds-276-69157a05
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/dynamic-form/src/optional-fields/editor/editor-field.d.ts +2 -0
- package/dynamic-form/src/optional-fields/editor/public-api.d.ts +1 -2
- package/esm2022/dynamic-form/src/optional-fields/editor/editor-field.mjs +17 -2
- package/esm2022/dynamic-form/src/optional-fields/editor/public-api.mjs +19 -17
- package/fesm2022/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs +18 -0
- package/fesm2022/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs.map +1 -1
- package/package.json +13 -13
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EnvironmentProviders } from '@angular/core';
|
|
1
2
|
import { FieldConfig } from '@seniorsistemas/angular-components/dynamic-form';
|
|
2
3
|
export interface EditorFieldConfig extends FieldConfig {
|
|
3
4
|
type: 'editor';
|
|
@@ -13,3 +14,4 @@ declare module '@seniorsistemas/angular-components/dynamic-form' {
|
|
|
13
14
|
editor: EditorFieldConfig;
|
|
14
15
|
}
|
|
15
16
|
}
|
|
17
|
+
export declare function provideEditorField(): EnvironmentProviders;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare function provideEditorField(): EnvironmentProviders;
|
|
1
|
+
export { provideEditorField } from './editor-field';
|
|
@@ -1,2 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { APP_INITIALIZER, makeEnvironmentProviders } from '@angular/core';
|
|
2
|
+
import { FormDynamicRegistry } from '@seniorsistemas/angular-components/dynamic-form';
|
|
3
|
+
import { EditorFieldComponent } from './editor-field/editor-field.component';
|
|
4
|
+
export function provideEditorField() {
|
|
5
|
+
return makeEnvironmentProviders([
|
|
6
|
+
{
|
|
7
|
+
provide: APP_INITIALIZER,
|
|
8
|
+
useFactory: () => {
|
|
9
|
+
return () => {
|
|
10
|
+
FormDynamicRegistry.registerField(EditorFieldComponent, 'editor');
|
|
11
|
+
};
|
|
12
|
+
},
|
|
13
|
+
multi: true,
|
|
14
|
+
},
|
|
15
|
+
]);
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdG9yLWZpZWxkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL2R5bmFtaWMtZm9ybS9zcmMvb3B0aW9uYWwtZmllbGRzL2VkaXRvci9lZGl0b3ItZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGVBQWUsRUFBd0Isd0JBQXdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDaEcsT0FBTyxFQUFlLG1CQUFtQixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDbkcsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7QUFnQjdFLE1BQU0sVUFBVSxrQkFBa0I7SUFDOUIsT0FBTyx3QkFBd0IsQ0FBQztRQUM1QjtZQUNJLE9BQU8sRUFBRSxlQUFlO1lBQ3hCLFVBQVUsRUFBRSxHQUFHLEVBQUU7Z0JBQ2IsT0FBTyxHQUFHLEVBQUU7b0JBQ1IsbUJBQW1CLENBQUMsYUFBYSxDQUFDLG9CQUFvQixFQUFFLFFBQVEsQ0FBQyxDQUFDO2dCQUN0RSxDQUFDLENBQUM7WUFDTixDQUFDO1lBQ0QsS0FBSyxFQUFFLElBQUk7U0FDZDtLQUNKLENBQUMsQ0FBQztBQUNQLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBUFBfSU5JVElBTElaRVIsIEVudmlyb25tZW50UHJvdmlkZXJzLCBtYWtlRW52aXJvbm1lbnRQcm92aWRlcnMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZpZWxkQ29uZmlnLCBGb3JtRHluYW1pY1JlZ2lzdHJ5IH0gZnJvbSAnQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy9keW5hbWljLWZvcm0nO1xuaW1wb3J0IHsgRWRpdG9yRmllbGRDb21wb25lbnQgfSBmcm9tICcuL2VkaXRvci1maWVsZC9lZGl0b3ItZmllbGQuY29tcG9uZW50JztcblxuZXhwb3J0IGludGVyZmFjZSBFZGl0b3JGaWVsZENvbmZpZyBleHRlbmRzIEZpZWxkQ29uZmlnIHtcbiAgICB0eXBlOiAnZWRpdG9yJztcbiAgICBmb3JtYXRzPzogc3RyaW5nW107XG4gICAgcmVhZG9ubHk/OiBib29sZWFuO1xuICAgIG1vZHVsZXM/OiBhbnk7XG4gICAgc3R5bGU/OiB7IFtrbGFzczogc3RyaW5nXTogdW5rbm93biB9O1xufVxuXG5kZWNsYXJlIG1vZHVsZSAnQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy9keW5hbWljLWZvcm0nIHtcbiAgICBleHBvcnQgaW50ZXJmYWNlIEZpZWxkVHlwZU1hcCB7XG4gICAgICAgIGVkaXRvcjogRWRpdG9yRmllbGRDb25maWc7XG4gICAgfVxufVxuXG5leHBvcnQgZnVuY3Rpb24gcHJvdmlkZUVkaXRvckZpZWxkKCk6IEVudmlyb25tZW50UHJvdmlkZXJzIHtcbiAgICByZXR1cm4gbWFrZUVudmlyb25tZW50UHJvdmlkZXJzKFtcbiAgICAgICAge1xuICAgICAgICAgICAgcHJvdmlkZTogQVBQX0lOSVRJQUxJWkVSLFxuICAgICAgICAgICAgdXNlRmFjdG9yeTogKCkgPT4ge1xuICAgICAgICAgICAgICAgIHJldHVybiAoKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgIEZvcm1EeW5hbWljUmVnaXN0cnkucmVnaXN0ZXJGaWVsZChFZGl0b3JGaWVsZENvbXBvbmVudCwgJ2VkaXRvcicpO1xuICAgICAgICAgICAgICAgIH07XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgbXVsdGk6IHRydWUsXG4gICAgICAgIH0sXG4gICAgXSk7XG59XG5cbiJdfQ==
|
|
@@ -1,17 +1,19 @@
|
|
|
1
|
-
import { APP_INITIALIZER, makeEnvironmentProviders } from '@angular/core';
|
|
2
|
-
import { FormDynamicRegistry } from '@seniorsistemas/angular-components/dynamic-form';
|
|
3
|
-
import { EditorFieldComponent } from './editor-field/editor-field.component';
|
|
4
|
-
export
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
// import { APP_INITIALIZER, EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';
|
|
2
|
+
// import { FormDynamicRegistry } from '@seniorsistemas/angular-components/dynamic-form';
|
|
3
|
+
// import { EditorFieldComponent } from './editor-field/editor-field.component';
|
|
4
|
+
// export { EditorFieldComponent } from './editor-field/editor-field.component';
|
|
5
|
+
// export function provideEditorField(): EnvironmentProviders {
|
|
6
|
+
// return makeEnvironmentProviders([
|
|
7
|
+
// {
|
|
8
|
+
// provide: APP_INITIALIZER,
|
|
9
|
+
// useFactory: () => {
|
|
10
|
+
// return () => {
|
|
11
|
+
// FormDynamicRegistry.registerField(EditorFieldComponent, 'editor');
|
|
12
|
+
// };
|
|
13
|
+
// },
|
|
14
|
+
// multi: true,
|
|
15
|
+
// },
|
|
16
|
+
// ]);
|
|
17
|
+
// }
|
|
18
|
+
export { provideEditorField } from './editor-field';
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9keW5hbWljLWZvcm0vc3JjL29wdGlvbmFsLWZpZWxkcy9lZGl0b3IvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxtR0FBbUc7QUFDbkcseUZBQXlGO0FBQ3pGLGdGQUFnRjtBQUNoRixnRkFBZ0Y7QUFDaEYsK0RBQStEO0FBQy9ELHdDQUF3QztBQUN4QyxZQUFZO0FBQ1osd0NBQXdDO0FBQ3hDLGtDQUFrQztBQUNsQyxpQ0FBaUM7QUFDakMseUZBQXlGO0FBQ3pGLHFCQUFxQjtBQUNyQixpQkFBaUI7QUFDakIsMkJBQTJCO0FBQzNCLGFBQWE7QUFDYixVQUFVO0FBQ1YsSUFBSTtBQUVKLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLGdCQUFnQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLy8gaW1wb3J0IHsgQVBQX0lOSVRJQUxJWkVSLCBFbnZpcm9ubWVudFByb3ZpZGVycywgbWFrZUVudmlyb25tZW50UHJvdmlkZXJzIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG4vLyBpbXBvcnQgeyBGb3JtRHluYW1pY1JlZ2lzdHJ5IH0gZnJvbSAnQHNlbmlvcnNpc3RlbWFzL2FuZ3VsYXItY29tcG9uZW50cy9keW5hbWljLWZvcm0nO1xuLy8gaW1wb3J0IHsgRWRpdG9yRmllbGRDb21wb25lbnQgfSBmcm9tICcuL2VkaXRvci1maWVsZC9lZGl0b3ItZmllbGQuY29tcG9uZW50Jztcbi8vIGV4cG9ydCB7IEVkaXRvckZpZWxkQ29tcG9uZW50IH0gZnJvbSAnLi9lZGl0b3ItZmllbGQvZWRpdG9yLWZpZWxkLmNvbXBvbmVudCc7XG4vLyBleHBvcnQgZnVuY3Rpb24gcHJvdmlkZUVkaXRvckZpZWxkKCk6IEVudmlyb25tZW50UHJvdmlkZXJzIHtcbi8vICAgICByZXR1cm4gbWFrZUVudmlyb25tZW50UHJvdmlkZXJzKFtcbi8vICAgICAgICAge1xuLy8gICAgICAgICAgICAgcHJvdmlkZTogQVBQX0lOSVRJQUxJWkVSLFxuLy8gICAgICAgICAgICAgdXNlRmFjdG9yeTogKCkgPT4ge1xuLy8gICAgICAgICAgICAgICAgIHJldHVybiAoKSA9PiB7XG4vLyAgICAgICAgICAgICAgICAgICAgIEZvcm1EeW5hbWljUmVnaXN0cnkucmVnaXN0ZXJGaWVsZChFZGl0b3JGaWVsZENvbXBvbmVudCwgJ2VkaXRvcicpO1xuLy8gICAgICAgICAgICAgICAgIH07XG4vLyAgICAgICAgICAgICB9LFxuLy8gICAgICAgICAgICAgbXVsdGk6IHRydWUsXG4vLyAgICAgICAgIH0sXG4vLyAgICAgXSk7XG4vLyB9XG5cbmV4cG9ydCB7IHByb3ZpZGVFZGl0b3JGaWVsZCB9IGZyb20gJy4vZWRpdG9yLWZpZWxkJztcbiJdfQ==
|
package/fesm2022/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs
CHANGED
|
@@ -31,6 +31,24 @@ function provideEditorField() {
|
|
|
31
31
|
]);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
// import { APP_INITIALIZER, EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';
|
|
35
|
+
// import { FormDynamicRegistry } from '@seniorsistemas/angular-components/dynamic-form';
|
|
36
|
+
// import { EditorFieldComponent } from './editor-field/editor-field.component';
|
|
37
|
+
// export { EditorFieldComponent } from './editor-field/editor-field.component';
|
|
38
|
+
// export function provideEditorField(): EnvironmentProviders {
|
|
39
|
+
// return makeEnvironmentProviders([
|
|
40
|
+
// {
|
|
41
|
+
// provide: APP_INITIALIZER,
|
|
42
|
+
// useFactory: () => {
|
|
43
|
+
// return () => {
|
|
44
|
+
// FormDynamicRegistry.registerField(EditorFieldComponent, 'editor');
|
|
45
|
+
// };
|
|
46
|
+
// },
|
|
47
|
+
// multi: true,
|
|
48
|
+
// },
|
|
49
|
+
// ]);
|
|
50
|
+
// }
|
|
51
|
+
|
|
34
52
|
/**
|
|
35
53
|
* Generated bundle index. Do not edit.
|
|
36
54
|
*/
|
package/fesm2022/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs","sources":["../../projects/angular-components/dynamic-form/src/optional-fields/editor/editor-field/editor-field.component.ts","../../projects/angular-components/dynamic-form/src/optional-fields/editor/editor-field/editor-field.component.html","../../projects/angular-components/dynamic-form/src/optional-fields/editor/public-api.ts","../../projects/angular-components/dynamic-form/src/optional-fields/editor/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.ts"],"sourcesContent":["import { Component, input } from '@angular/core';\nimport { FormControl, ReactiveFormsModule } from '@angular/forms';\nimport { BaseFieldComponentConfig, FieldLabelComponent } from '@seniorsistemas/angular-components/dynamic-form';\nimport { EditorModule } from 'primeng/editor';\nimport { EditorFieldConfig } from '../editor-field';\n@Component({\n standalone: true,\n imports: [EditorModule, ReactiveFormsModule, FieldLabelComponent],\n templateUrl: './editor-field.component.html',\n})\nexport class EditorFieldComponent implements BaseFieldComponentConfig {\n field = input.required<EditorFieldConfig>();\n formControl = input.required<FormControl>();\n}\n\n","@let _field = field();\n<s-field-label [field]=\"_field\"></s-field-label>\n\n<p-editor\n [formControl]=\"formControl()\"\n [formats]=\"_field.formats\"\n [readonly]=\"_field.readonly ? _field.readonly : false\"\n [modules]=\"_field.modules\"\n [style]=\"_field.style\"\n>\n</p-editor>\n\n","import { APP_INITIALIZER, EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';\nimport { FormDynamicRegistry } from '@seniorsistemas/angular-components/dynamic-form';\nimport { EditorFieldComponent } from './editor-field/editor-field.component';\n\nexport function provideEditorField(): EnvironmentProviders {\n return makeEnvironmentProviders([\n {\n provide: APP_INITIALIZER,\n useFactory: () => {\n return () => {\n FormDynamicRegistry.registerField(EditorFieldComponent, 'editor');\n };\n },\n multi: true,\n },\n ]);\n}\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;MAUa,oBAAoB,CAAA;AAC7B,IAAA,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAqB,CAAC;AAC5C,IAAA,WAAW,GAAG,KAAK,CAAC,QAAQ,EAAe,CAAC;wGAFnC,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,oBAAoB,oVCVjC,kTAYA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDLc,YAAY,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,YAAA,EAAA,aAAA,EAAA,SAAA,EAAA,SAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,OAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,cAAA,EAAA,mBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,mBAAmB,0TAAE,mBAAmB,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,mBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;4FAGvD,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;AACM,YAAA,IAAA,EAAA,CAAA,EAAA,UAAA,EAAA,IAAI,WACP,CAAC,YAAY,EAAE,mBAAmB,EAAE,mBAAmB,CAAC,EAAA,QAAA,EAAA,kTAAA,EAAA,CAAA;;;
|
|
1
|
+
{"version":3,"file":"seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs","sources":["../../projects/angular-components/dynamic-form/src/optional-fields/editor/editor-field/editor-field.component.ts","../../projects/angular-components/dynamic-form/src/optional-fields/editor/editor-field/editor-field.component.html","../../projects/angular-components/dynamic-form/src/optional-fields/editor/editor-field.ts","../../projects/angular-components/dynamic-form/src/optional-fields/editor/public-api.ts","../../projects/angular-components/dynamic-form/src/optional-fields/editor/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.ts"],"sourcesContent":["import { Component, input } from '@angular/core';\nimport { FormControl, ReactiveFormsModule } from '@angular/forms';\nimport { BaseFieldComponentConfig, FieldLabelComponent } from '@seniorsistemas/angular-components/dynamic-form';\nimport { EditorModule } from 'primeng/editor';\nimport { EditorFieldConfig } from '../editor-field';\n@Component({\n standalone: true,\n imports: [EditorModule, ReactiveFormsModule, FieldLabelComponent],\n templateUrl: './editor-field.component.html',\n})\nexport class EditorFieldComponent implements BaseFieldComponentConfig {\n field = input.required<EditorFieldConfig>();\n formControl = input.required<FormControl>();\n}\n\n","@let _field = field();\n<s-field-label [field]=\"_field\"></s-field-label>\n\n<p-editor\n [formControl]=\"formControl()\"\n [formats]=\"_field.formats\"\n [readonly]=\"_field.readonly ? _field.readonly : false\"\n [modules]=\"_field.modules\"\n [style]=\"_field.style\"\n>\n</p-editor>\n\n","import { APP_INITIALIZER, EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';\nimport { FieldConfig, FormDynamicRegistry } from '@seniorsistemas/angular-components/dynamic-form';\nimport { EditorFieldComponent } from './editor-field/editor-field.component';\n\nexport interface EditorFieldConfig extends FieldConfig {\n type: 'editor';\n formats?: string[];\n readonly?: boolean;\n modules?: any;\n style?: { [klass: string]: unknown };\n}\n\ndeclare module '@seniorsistemas/angular-components/dynamic-form' {\n export interface FieldTypeMap {\n editor: EditorFieldConfig;\n }\n}\n\nexport function provideEditorField(): EnvironmentProviders {\n return makeEnvironmentProviders([\n {\n provide: APP_INITIALIZER,\n useFactory: () => {\n return () => {\n FormDynamicRegistry.registerField(EditorFieldComponent, 'editor');\n };\n },\n multi: true,\n },\n ]);\n}\n\n","// import { APP_INITIALIZER, EnvironmentProviders, makeEnvironmentProviders } from '@angular/core';\n// import { FormDynamicRegistry } from '@seniorsistemas/angular-components/dynamic-form';\n// import { EditorFieldComponent } from './editor-field/editor-field.component';\n// export { EditorFieldComponent } from './editor-field/editor-field.component';\n// export function provideEditorField(): EnvironmentProviders {\n// return makeEnvironmentProviders([\n// {\n// provide: APP_INITIALIZER,\n// useFactory: () => {\n// return () => {\n// FormDynamicRegistry.registerField(EditorFieldComponent, 'editor');\n// };\n// },\n// multi: true,\n// },\n// ]);\n// }\n\nexport { provideEditorField } from './editor-field';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;MAUa,oBAAoB,CAAA;AAC7B,IAAA,KAAK,GAAG,KAAK,CAAC,QAAQ,EAAqB,CAAC;AAC5C,IAAA,WAAW,GAAG,KAAK,CAAC,QAAQ,EAAe,CAAC;wGAFnC,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,oBAAoB,oVCVjC,kTAYA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDLc,YAAY,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,YAAA,EAAA,aAAA,EAAA,SAAA,EAAA,SAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,OAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,cAAA,EAAA,mBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,mBAAmB,0TAAE,mBAAmB,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,mBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;4FAGvD,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;AACM,YAAA,IAAA,EAAA,CAAA,EAAA,UAAA,EAAA,IAAI,WACP,CAAC,YAAY,EAAE,mBAAmB,EAAE,mBAAmB,CAAC,EAAA,QAAA,EAAA,kTAAA,EAAA,CAAA;;;SEWrD,kBAAkB,GAAA;AAC9B,IAAA,OAAO,wBAAwB,CAAC;AAC5B,QAAA;AACI,YAAA,OAAO,EAAE,eAAe;YACxB,UAAU,EAAE,MAAK;AACb,gBAAA,OAAO,MAAK;AACR,oBAAA,mBAAmB,CAAC,aAAa,CAAC,oBAAoB,EAAE,QAAQ,CAAC,CAAC;AACtE,iBAAC,CAAC;aACL;AACD,YAAA,KAAK,EAAE,IAAI;AACd,SAAA;AACJ,KAAA,CAAC,CAAC;AACP;;AC9BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AChBA;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seniorsistemas/angular-components",
|
|
3
|
-
"version": "18.1.0-feature-sds-276-
|
|
3
|
+
"version": "18.1.0-feature-sds-276-69157a05",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^18.2.14",
|
|
6
6
|
"@angular/common": "^18.2.0",
|
|
@@ -64,18 +64,18 @@
|
|
|
64
64
|
"esm": "./esm2022/bignumber-input/seniorsistemas-angular-components-bignumber-input.mjs",
|
|
65
65
|
"default": "./fesm2022/seniorsistemas-angular-components-bignumber-input.mjs"
|
|
66
66
|
},
|
|
67
|
-
"./breadcrumb": {
|
|
68
|
-
"types": "./breadcrumb/index.d.ts",
|
|
69
|
-
"esm2022": "./esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs",
|
|
70
|
-
"esm": "./esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs",
|
|
71
|
-
"default": "./fesm2022/seniorsistemas-angular-components-breadcrumb.mjs"
|
|
72
|
-
},
|
|
73
67
|
"./button": {
|
|
74
68
|
"types": "./button/index.d.ts",
|
|
75
69
|
"esm2022": "./esm2022/button/seniorsistemas-angular-components-button.mjs",
|
|
76
70
|
"esm": "./esm2022/button/seniorsistemas-angular-components-button.mjs",
|
|
77
71
|
"default": "./fesm2022/seniorsistemas-angular-components-button.mjs"
|
|
78
72
|
},
|
|
73
|
+
"./breadcrumb": {
|
|
74
|
+
"types": "./breadcrumb/index.d.ts",
|
|
75
|
+
"esm2022": "./esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs",
|
|
76
|
+
"esm": "./esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs",
|
|
77
|
+
"default": "./fesm2022/seniorsistemas-angular-components-breadcrumb.mjs"
|
|
78
|
+
},
|
|
79
79
|
"./calendar-mask": {
|
|
80
80
|
"types": "./calendar-mask/index.d.ts",
|
|
81
81
|
"esm2022": "./esm2022/calendar-mask/seniorsistemas-angular-components-calendar-mask.mjs",
|
|
@@ -286,18 +286,18 @@
|
|
|
286
286
|
"esm": "./esm2022/localized-number-input/seniorsistemas-angular-components-localized-number-input.mjs",
|
|
287
287
|
"default": "./fesm2022/seniorsistemas-angular-components-localized-number-input.mjs"
|
|
288
288
|
},
|
|
289
|
-
"./mouse-events": {
|
|
290
|
-
"types": "./mouse-events/index.d.ts",
|
|
291
|
-
"esm2022": "./esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs",
|
|
292
|
-
"esm": "./esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs",
|
|
293
|
-
"default": "./fesm2022/seniorsistemas-angular-components-mouse-events.mjs"
|
|
294
|
-
},
|
|
295
289
|
"./mask": {
|
|
296
290
|
"types": "./mask/index.d.ts",
|
|
297
291
|
"esm2022": "./esm2022/mask/seniorsistemas-angular-components-mask.mjs",
|
|
298
292
|
"esm": "./esm2022/mask/seniorsistemas-angular-components-mask.mjs",
|
|
299
293
|
"default": "./fesm2022/seniorsistemas-angular-components-mask.mjs"
|
|
300
294
|
},
|
|
295
|
+
"./mouse-events": {
|
|
296
|
+
"types": "./mouse-events/index.d.ts",
|
|
297
|
+
"esm2022": "./esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs",
|
|
298
|
+
"esm": "./esm2022/mouse-events/seniorsistemas-angular-components-mouse-events.mjs",
|
|
299
|
+
"default": "./fesm2022/seniorsistemas-angular-components-mouse-events.mjs"
|
|
300
|
+
},
|
|
301
301
|
"./navigation-button": {
|
|
302
302
|
"types": "./navigation-button/index.d.ts",
|
|
303
303
|
"esm2022": "./esm2022/navigation-button/seniorsistemas-angular-components-navigation-button.mjs",
|