igniteui-webcomponents-layouts 6.3.1 → 7.0.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.
- package/bundles/igniteui-webcomponents-layouts.umd.js +487 -484
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/PropertyEditorDataSource_combined.js +3 -0
- package/esm2015/lib/PropertyEditorTreeTransformer.js +11 -11
- package/esm2015/lib/igc-tool-panel-module.js +6 -6
- package/esm5/lib/PropertyEditorDataSource_combined.js +3 -0
- package/esm5/lib/PropertyEditorTreeTransformer.js +11 -11
- package/esm5/lib/igc-tool-panel-module.js +6 -6
- package/fesm2015/igniteui-webcomponents-layouts.js +395 -392
- package/fesm5/igniteui-webcomponents-layouts.js +487 -484
- package/package.json +3 -3
|
@@ -165,6 +165,9 @@ let PropertyEditorDataSource = /*@__PURE__*/ (() => {
|
|
|
165
165
|
if (stringEndsWith(c[d], "@stringUnion")) {
|
|
166
166
|
continue;
|
|
167
167
|
}
|
|
168
|
+
if (stringEndsWith(c[d], "@constantValues")) {
|
|
169
|
+
continue;
|
|
170
|
+
}
|
|
168
171
|
let e = this.b.getMetadata(this.n, c[d]);
|
|
169
172
|
let f = this.f(e);
|
|
170
173
|
if (f.w == 0) {
|
|
@@ -222,18 +222,18 @@ let PropertyEditorTreeTransformer = /*@__PURE__*/ (() => {
|
|
|
222
222
|
let a = new DescriptionSerializerBuilder();
|
|
223
223
|
let b = new DescriptionSerializer();
|
|
224
224
|
let c = "root";
|
|
225
|
-
a.
|
|
226
|
-
a.
|
|
227
|
-
a.
|
|
228
|
-
a.
|
|
229
|
-
a.
|
|
230
|
-
a.
|
|
225
|
+
a.appendLine("{");
|
|
226
|
+
a.increaseTabLevel();
|
|
227
|
+
a.appendLine("\"descriptions\": {");
|
|
228
|
+
a.increaseTabLevel();
|
|
229
|
+
a.append("\"" + c + "\"");
|
|
230
|
+
a.append(": ");
|
|
231
231
|
b.y(this.c, this.b, a);
|
|
232
|
-
a.
|
|
233
|
-
a.
|
|
234
|
-
a.
|
|
235
|
-
a.
|
|
236
|
-
a.
|
|
232
|
+
a.appendLine("");
|
|
233
|
+
a.decreaseTabLevel();
|
|
234
|
+
a.append("}");
|
|
235
|
+
a.decreaseTabLevel();
|
|
236
|
+
a.appendLine("}");
|
|
237
237
|
return a.toString();
|
|
238
238
|
}
|
|
239
239
|
}
|
|
@@ -11,10 +11,7 @@ import { IgcToolActionCheckboxListModule } from './igc-tool-action-checkbox-list
|
|
|
11
11
|
import { IgcToolActionGroupHeaderModule } from './igc-tool-action-group-header-module';
|
|
12
12
|
import { IgcToolActionFieldSelectorModule } from './igc-tool-action-field-selector-module';
|
|
13
13
|
import { IgcToolActionNumberInputModule } from './igc-tool-action-number-input-module';
|
|
14
|
-
import { IgcToolActionIconButtonModule } from './igc-tool-action-icon-button-module';
|
|
15
|
-
import { IgcToolActionIconMenuModule } from './igc-tool-action-icon-menu-module';
|
|
16
14
|
import { IgcToolActionSeparatorModule } from './igc-tool-action-separator-module';
|
|
17
|
-
import { IgcToolActionSubPanelModule } from './igc-tool-action-sub-panel-module';
|
|
18
15
|
import { IgcToolActionRadioModule } from './igc-tool-action-radio-module';
|
|
19
16
|
import { IgcToolActionButtonModule } from './igc-tool-action-button-module';
|
|
20
17
|
import { IgcXInputGroupModule } from "igniteui-webcomponents-inputs";
|
|
@@ -23,6 +20,9 @@ import { IgcXButtonModule } from "igniteui-webcomponents-inputs";
|
|
|
23
20
|
import { IgcXIconModule } from "igniteui-webcomponents-inputs";
|
|
24
21
|
import { IgcColorEditorModule } from "igniteui-webcomponents-inputs";
|
|
25
22
|
import { IgcMultiSliderModule } from "igniteui-webcomponents-inputs";
|
|
23
|
+
import { IgcToolActionSubPanelModule } from './igc-tool-action-sub-panel-module';
|
|
24
|
+
import { IgcToolActionIconButtonModule } from './igc-tool-action-icon-button-module';
|
|
25
|
+
import { IgcToolActionIconMenuModule } from './igc-tool-action-icon-menu-module';
|
|
26
26
|
import { IgcToolPanelComponent } from './igc-tool-panel-component';
|
|
27
27
|
import { ToolPanel } from './ToolPanel';
|
|
28
28
|
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
@@ -35,10 +35,7 @@ export class IgcToolPanelModule {
|
|
|
35
35
|
IgcToolActionGroupHeaderModule.register();
|
|
36
36
|
IgcToolActionFieldSelectorModule.register();
|
|
37
37
|
IgcToolActionNumberInputModule.register();
|
|
38
|
-
IgcToolActionIconButtonModule.register();
|
|
39
|
-
IgcToolActionIconMenuModule.register();
|
|
40
38
|
IgcToolActionSeparatorModule.register();
|
|
41
|
-
IgcToolActionSubPanelModule.register();
|
|
42
39
|
IgcToolActionRadioModule.register();
|
|
43
40
|
IgcToolActionButtonModule.register();
|
|
44
41
|
IgcXInputGroupModule.register();
|
|
@@ -47,6 +44,9 @@ export class IgcToolPanelModule {
|
|
|
47
44
|
IgcXIconModule.register();
|
|
48
45
|
IgcColorEditorModule.register();
|
|
49
46
|
IgcMultiSliderModule.register();
|
|
47
|
+
IgcToolActionSubPanelModule.register();
|
|
48
|
+
IgcToolActionIconButtonModule.register();
|
|
49
|
+
IgcToolActionIconMenuModule.register();
|
|
50
50
|
IgcToolPanelComponent.register();
|
|
51
51
|
TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
|
|
52
52
|
TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
|
|
@@ -182,6 +182,9 @@ export var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
182
182
|
if (stringEndsWith(c[d], "@stringUnion")) {
|
|
183
183
|
continue;
|
|
184
184
|
}
|
|
185
|
+
if (stringEndsWith(c[d], "@constantValues")) {
|
|
186
|
+
continue;
|
|
187
|
+
}
|
|
185
188
|
var e = this.b.getMetadata(this.n, c[d]);
|
|
186
189
|
var f = this.f(e);
|
|
187
190
|
if (f.w == 0) {
|
|
@@ -227,18 +227,18 @@ export var PropertyEditorTreeTransformer = /** @class */ /*@__PURE__*/ (function
|
|
|
227
227
|
var a = new DescriptionSerializerBuilder();
|
|
228
228
|
var b = new DescriptionSerializer();
|
|
229
229
|
var c = "root";
|
|
230
|
-
a.
|
|
231
|
-
a.
|
|
232
|
-
a.
|
|
233
|
-
a.
|
|
234
|
-
a.
|
|
235
|
-
a.
|
|
230
|
+
a.appendLine("{");
|
|
231
|
+
a.increaseTabLevel();
|
|
232
|
+
a.appendLine("\"descriptions\": {");
|
|
233
|
+
a.increaseTabLevel();
|
|
234
|
+
a.append("\"" + c + "\"");
|
|
235
|
+
a.append(": ");
|
|
236
236
|
b.y(this.c, this.b, a);
|
|
237
|
-
a.
|
|
238
|
-
a.
|
|
239
|
-
a.
|
|
240
|
-
a.
|
|
241
|
-
a.
|
|
237
|
+
a.appendLine("");
|
|
238
|
+
a.decreaseTabLevel();
|
|
239
|
+
a.append("}");
|
|
240
|
+
a.decreaseTabLevel();
|
|
241
|
+
a.appendLine("}");
|
|
242
242
|
return a.toString();
|
|
243
243
|
};
|
|
244
244
|
PropertyEditorTreeTransformer.$t = markType(PropertyEditorTreeTransformer, 'PropertyEditorTreeTransformer');
|
|
@@ -11,10 +11,7 @@ import { IgcToolActionCheckboxListModule } from './igc-tool-action-checkbox-list
|
|
|
11
11
|
import { IgcToolActionGroupHeaderModule } from './igc-tool-action-group-header-module';
|
|
12
12
|
import { IgcToolActionFieldSelectorModule } from './igc-tool-action-field-selector-module';
|
|
13
13
|
import { IgcToolActionNumberInputModule } from './igc-tool-action-number-input-module';
|
|
14
|
-
import { IgcToolActionIconButtonModule } from './igc-tool-action-icon-button-module';
|
|
15
|
-
import { IgcToolActionIconMenuModule } from './igc-tool-action-icon-menu-module';
|
|
16
14
|
import { IgcToolActionSeparatorModule } from './igc-tool-action-separator-module';
|
|
17
|
-
import { IgcToolActionSubPanelModule } from './igc-tool-action-sub-panel-module';
|
|
18
15
|
import { IgcToolActionRadioModule } from './igc-tool-action-radio-module';
|
|
19
16
|
import { IgcToolActionButtonModule } from './igc-tool-action-button-module';
|
|
20
17
|
import { IgcXInputGroupModule } from "igniteui-webcomponents-inputs";
|
|
@@ -23,6 +20,9 @@ import { IgcXButtonModule } from "igniteui-webcomponents-inputs";
|
|
|
23
20
|
import { IgcXIconModule } from "igniteui-webcomponents-inputs";
|
|
24
21
|
import { IgcColorEditorModule } from "igniteui-webcomponents-inputs";
|
|
25
22
|
import { IgcMultiSliderModule } from "igniteui-webcomponents-inputs";
|
|
23
|
+
import { IgcToolActionSubPanelModule } from './igc-tool-action-sub-panel-module';
|
|
24
|
+
import { IgcToolActionIconButtonModule } from './igc-tool-action-icon-button-module';
|
|
25
|
+
import { IgcToolActionIconMenuModule } from './igc-tool-action-icon-menu-module';
|
|
26
26
|
import { IgcToolPanelComponent } from './igc-tool-panel-component';
|
|
27
27
|
import { ToolPanel } from './ToolPanel';
|
|
28
28
|
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
@@ -37,10 +37,7 @@ var IgcToolPanelModule = /** @class */ /*@__PURE__*/ (function () {
|
|
|
37
37
|
IgcToolActionGroupHeaderModule.register();
|
|
38
38
|
IgcToolActionFieldSelectorModule.register();
|
|
39
39
|
IgcToolActionNumberInputModule.register();
|
|
40
|
-
IgcToolActionIconButtonModule.register();
|
|
41
|
-
IgcToolActionIconMenuModule.register();
|
|
42
40
|
IgcToolActionSeparatorModule.register();
|
|
43
|
-
IgcToolActionSubPanelModule.register();
|
|
44
41
|
IgcToolActionRadioModule.register();
|
|
45
42
|
IgcToolActionButtonModule.register();
|
|
46
43
|
IgcXInputGroupModule.register();
|
|
@@ -49,6 +46,9 @@ var IgcToolPanelModule = /** @class */ /*@__PURE__*/ (function () {
|
|
|
49
46
|
IgcXIconModule.register();
|
|
50
47
|
IgcColorEditorModule.register();
|
|
51
48
|
IgcMultiSliderModule.register();
|
|
49
|
+
IgcToolActionSubPanelModule.register();
|
|
50
|
+
IgcToolActionIconButtonModule.register();
|
|
51
|
+
IgcToolActionIconMenuModule.register();
|
|
52
52
|
IgcToolPanelComponent.register();
|
|
53
53
|
TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
|
|
54
54
|
TypeRegistrar.registerCons('IgcToolPanelComponent', IgcToolPanelComponent);
|