@bnsights/bbsf-controls 1.0.188 → 1.0.190

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,31 @@
1
+ export declare enum ToolbarButtons {
2
+ undo = "undo",
3
+ redo = "redo",
4
+ bold = "bold",
5
+ italic = "italic",
6
+ underline = "underline",
7
+ strikeThrough = "strikeThrough",
8
+ subscript = "subscript",
9
+ superscript = "superscript",
10
+ justifyLeft = "justifyLeft",
11
+ justifyCenter = "justifyCenter",
12
+ justifyRight = "justifyRight",
13
+ justifyFull = "justifyFull",
14
+ indent = "indent",
15
+ outdent = "outdent",
16
+ insertUnorderedList = "insertUnorderedList",
17
+ insertOrderedList = "insertOrderedList",
18
+ heading = "heading",
19
+ fontName = "fontName",
20
+ fontSize = "fontSize",
21
+ textColor = "textColor",
22
+ backgroundColor = "backgroundColor",
23
+ customClasses = "customClasses",
24
+ link = "link",
25
+ unlink = "unlink",
26
+ insertImage = "insertImage",
27
+ insertVideo = "insertVideo",
28
+ insertHorizontalRule = "insertHorizontalRule",
29
+ removeFormat = "removeFormat",
30
+ toggleEditorMode = "toggleEditorMode"
31
+ }
@@ -1,10 +1,6 @@
1
1
  import { ForceDirection } from '../Enums/ForceDirection';
2
2
  import { Attribute } from './Attribute';
3
- import { Misc } from '../Enums/Misc';
4
- import { Style } from '../Enums/Style';
5
- import { FontSize } from '../Enums/FontSize';
6
- import { Para } from '../Enums/Para';
7
- import { Insert } from '../Enums/Insert';
3
+ import { ToolbarButtons } from '../Enums/ToolbarButtons';
8
4
  import { ControlOptionsBase } from './ControlOptionsBase';
9
5
  export declare class HtmlEditorOptions extends ControlOptionsBase {
10
6
  /**To set value to HtmlEditor */
@@ -18,14 +14,6 @@ export declare class HtmlEditorOptions extends ControlOptionsBase {
18
14
  height: number;
19
15
  /** Set List of Custom Attribute to HtmlEditor */
20
16
  attributeList: Attribute[];
21
- /** Set List of Misc like codeview Or undo Or redo */
22
- toolsList_Misc?: Misc[];
23
- /** Set List of Style like bold Or italic Or underline Or clear */
24
- toolsList_Style?: Style[];
25
- /** Set List of FontSize like fontname Or fontsize Or color */
26
- toolsList_FontSize?: FontSize[];
27
- /** Set List of Para like style Or ul Or ol Or paragraph Or height */
28
- toolsList_Para?: Para[];
29
- /** Set List of Insert like table Or picture Or link Or video Or hr */
30
- toolsList_Insert?: Insert[];
17
+ /** Set List of hidden buttons like codeview Or undo Or redo */
18
+ toolbarHiddenButtons?: ToolbarButtons[][];
31
19
  }
@@ -34,5 +34,6 @@ export declare class TextBoxOptions extends ControlOptionsBase {
34
34
  noMargin: boolean;
35
35
  validationRules: any[];
36
36
  maxLengthWarningLimit: number;
37
+ showPasswordRequirements: boolean;
37
38
  get displayValue(): any;
38
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bnsights/bbsf-controls",
3
- "version": "1.0.188",
3
+ "version": "1.0.190",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^17.0.5",
6
6
  "@angular/cdk": "^17.0.2",
@@ -22,7 +22,7 @@
22
22
  "@fullcalendar/list": "^6.1.10",
23
23
  "@fullcalendar/timegrid": "^6.1.10",
24
24
  "@googlemaps/js-api-loader": "1.16.2",
25
- "@kolkov/angular-editor": "^3.0.0-beta.0",
25
+ "@kolkov/angular-editor": "^3.0.0-beta.2",
26
26
  "@ng-bootstrap/ng-bootstrap": "^16.0.0",
27
27
  "@ng-select/ng-select": "^12.0.4",
28
28
  "@ngrx/store": "^17.0.1",
package/public-api.d.ts CHANGED
@@ -120,3 +120,4 @@ export * from './lib/Shared/Enums/LanguageValidation';
120
120
  export * from './lib/Shared/Enums/TagInputView';
121
121
  export * from './lib/Shared/Enums/map-enums';
122
122
  export * from './lib/Shared/Enums/Markdown';
123
+ export * from './lib/Shared/Enums/ToolbarButtons';