@norwegian/core-components 5.12.1 → 5.13.0

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.
@@ -0,0 +1,60 @@
1
+ /**
2
+ * @license
3
+ * Copyright Norwegian Air Shuttle. All Rights Reserved.
4
+ */
5
+ import { ClassModel } from '../../core/models/class.model';
6
+ import { NasComponentBase } from '../../core/base/nas-component.base';
7
+ /**
8
+ * @description
9
+ * Norwegian Divider Component | Layout
10
+ */
11
+ export declare class DividerComponent extends NasComponentBase {
12
+ /**
13
+ * @description
14
+ * Sets text on the divider. If set to false the divider will not display any text.
15
+ */
16
+ text: string;
17
+ /**
18
+ * @description
19
+ * Boolean to give the divider a double look.
20
+ */
21
+ double: boolean;
22
+ /**
23
+ * @description
24
+ * Boolean to give the divider a dotted look.
25
+ */
26
+ dotted: boolean;
27
+ /**
28
+ * @description
29
+ * Boolean to give the divider a dashed look.
30
+ */
31
+ dashed: boolean;
32
+ /**
33
+ * @description
34
+ * Boolean to give the divider large spacing.
35
+ */
36
+ spaceLarge: boolean;
37
+ /**
38
+ * @description
39
+ * Boolean to give the divider light color.
40
+ */
41
+ light: boolean;
42
+ /**
43
+ * @description
44
+ * Boolean to give the divider dark color.
45
+ */
46
+ dark: boolean;
47
+ /**
48
+ * @description
49
+ * Boolean to give the divider secondary color.
50
+ */
51
+ secondary: boolean;
52
+ /**
53
+ * @description
54
+ * Boolean to give the divider primary color.
55
+ */
56
+ primary: boolean;
57
+ constructor();
58
+ getModifiers(): Array<string>;
59
+ getClasses(element?: string, modifiers?: any): Array<ClassModel>;
60
+ }
@@ -0,0 +1,2 @@
1
+ export declare class DividerModule {
2
+ }
@@ -0,0 +1,2 @@
1
+ export * from './divider.component';
2
+ export * from './divider.module';
@@ -46,3 +46,4 @@ export * from './backdrop/index';
46
46
  export * from './slide-toggle/index';
47
47
  export * from './slider/index';
48
48
  export * from './table/index';
49
+ export * from './divider/index';
@@ -1,4 +1,5 @@
1
1
  export interface ClassModel {
2
+ className?: any;
2
3
  block: string;
3
4
  element?: string;
4
5
  modifiers?: Array<string>;