Skip to content

Commit

Permalink
[ACS-5571] revert wrong file deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
g-jaskowski committed Apr 12, 2024
1 parent 06d146d commit 924e908
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
37 changes: 37 additions & 0 deletions lib/core/src/lib/dynamic-chip-list/dynamic-chip-list.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*!
* @license
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import { NgModule } from '@angular/core';
import { DynamicChipListComponent } from './dynamic-chip-list.component';
import { MatChipsModule } from '@angular/material/chips';
import { MatIconModule } from '@angular/material/icon';
import { MatButtonModule } from '@angular/material/button';
import { TranslateModule } from '@ngx-translate/core';
import { CommonModule } from '@angular/common';

@NgModule({
declarations: [DynamicChipListComponent],
imports: [
MatChipsModule,
MatIconModule,
MatButtonModule,
TranslateModule,
CommonModule
],
exports: [DynamicChipListComponent]
})
export class DynamicChipListModule {}
30 changes: 30 additions & 0 deletions lib/js-api/src/api/content-rest-api/model/nodeEntry.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*!
* @license
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import { Node } from './node';

export class NodeEntry {
entry: Node;

constructor(input?: Partial<NodeEntry>) {
if (input) {
Object.assign(this, input);
this.entry = input.entry ? new Node(input.entry) : undefined;
}
}

}

0 comments on commit 924e908

Please sign in to comment.