Skip to content

Commit

Permalink
Use any type for schema
Browse files Browse the repository at this point in the history
#12, introduced #36
  • Loading branch information
tobi-or-not-tobi committed Jun 7, 2018
1 parent 318e985 commit 64f3de2
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './alert-docs.component.html'
})
export class AlertDocsComponent {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './badge-label-docs.component.html'
})
export class BadgeLabelDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './button-group-docs.component.html'
})
export class ButtonGroupDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './button-docs.component.html'
})
export class ButtonDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './dropdown-docs.component.html'
})
export class DropdownDocsComponent {
static schema: Schema = {
static schema: any = {
properties: {
state: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ export class IconDocsComponent implements OnInit {
'zoom-out'
];

static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './identifier-docs.component.html'
})
export class IdentifierDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './image-docs.component.html'
})
export class ImageDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './inline-help-docs.component.html'
})
export class InlineHelpDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './input-group-docs.component.html'
})
export class InputGroupDocsComponent {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './list-docs.component.html'
})
export class ListDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ModalService } from '../../../../../src/modal/modal.service';
templateUrl: './modal-docs.component.html'
})
export class ModalDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SchemaFactoryService } from '../../../schema/services/schema-factory/sc
templateUrl: './tile-docs.component.html'
})
export class TileDocsComponent implements OnInit {
static schema: Schema = {
static schema: any = {
properties: {
properties: {
type: 'object',
Expand Down

0 comments on commit 64f3de2

Please sign in to comment.