@falcon-ng/tailwind 0.0.3 → 0.0.5
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/esm2020/lib/control-type/AutoComplete.mjs +8 -0
- package/esm2020/lib/control-type/Button.mjs +8 -0
- package/esm2020/lib/control-type/ButtonToggle.mjs +8 -0
- package/esm2020/lib/control-type/CheckBox.mjs +8 -0
- package/esm2020/lib/control-type/Chip.mjs +8 -0
- package/esm2020/lib/control-type/DatePicker.mjs +8 -0
- package/esm2020/lib/control-type/Divider.mjs +8 -0
- package/esm2020/lib/control-type/Editor.mjs +8 -0
- package/esm2020/lib/control-type/Radio.mjs +8 -0
- package/esm2020/lib/control-type/RichTextEditor.mjs +8 -0
- package/esm2020/lib/control-type/SlideToggle.mjs +8 -0
- package/esm2020/lib/control-type/Slider.mjs +8 -0
- package/esm2020/lib/control-type/{textarea.mjs → Textarea.mjs} +1 -1
- package/esm2020/lib/control-type/{textbox.mjs → Textbox.mjs} +1 -1
- package/esm2020/lib/falcon-core.module.mjs +1 -3
- package/esm2020/public-api.mjs +16 -18
- package/fesm2015/falcon-ng-tailwind.mjs +85 -3
- package/fesm2015/falcon-ng-tailwind.mjs.map +1 -1
- package/fesm2020/falcon-ng-tailwind.mjs +85 -3
- package/fesm2020/falcon-ng-tailwind.mjs.map +1 -1
- package/lib/control-type/AutoComplete.d.ts +5 -0
- package/lib/control-type/Button.d.ts +5 -0
- package/lib/control-type/ButtonToggle.d.ts +5 -0
- package/lib/control-type/CheckBox.d.ts +5 -0
- package/lib/control-type/Chip.d.ts +5 -0
- package/lib/control-type/DatePicker.d.ts +5 -0
- package/lib/control-type/Divider.d.ts +5 -0
- package/lib/control-type/Editor.d.ts +5 -0
- package/lib/control-type/Radio.d.ts +5 -0
- package/lib/control-type/RichTextEditor.d.ts +5 -0
- package/lib/control-type/SlideToggle.d.ts +5 -0
- package/lib/control-type/Slider.d.ts +5 -0
- package/lib/control-type/{textarea.d.ts → Textarea.d.ts} +0 -0
- package/lib/control-type/{textbox.d.ts → Textbox.d.ts} +0 -0
- package/lib/falcon-core.module.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +15 -17
|
@@ -1388,7 +1388,6 @@ FalconCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", versio
|
|
|
1388
1388
|
RouterModule,
|
|
1389
1389
|
ProgressBarComponent,
|
|
1390
1390
|
ProgressSpinnerComponent,
|
|
1391
|
-
ChipComponent,
|
|
1392
1391
|
PaginationComponent,
|
|
1393
1392
|
TableComponent,
|
|
1394
1393
|
AngularEditorModule,
|
|
@@ -1488,7 +1487,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.1", ngImpor
|
|
|
1488
1487
|
RouterModule,
|
|
1489
1488
|
ProgressBarComponent,
|
|
1490
1489
|
ProgressSpinnerComponent,
|
|
1491
|
-
ChipComponent,
|
|
1492
1490
|
PaginationComponent,
|
|
1493
1491
|
TableComponent,
|
|
1494
1492
|
AngularEditorModule,
|
|
@@ -1615,6 +1613,76 @@ class BaseControl {
|
|
|
1615
1613
|
}
|
|
1616
1614
|
}
|
|
1617
1615
|
|
|
1616
|
+
class AutoComplete extends BaseControl {
|
|
1617
|
+
constructor() {
|
|
1618
|
+
super(...arguments);
|
|
1619
|
+
this.controlType = 10 /* ControlType.AutoComplete */;
|
|
1620
|
+
}
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
class Button extends BaseControl {
|
|
1624
|
+
constructor() {
|
|
1625
|
+
super(...arguments);
|
|
1626
|
+
this.controlType = 6 /* ControlType.Button */;
|
|
1627
|
+
}
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
class ButtonToggle extends BaseControl {
|
|
1631
|
+
constructor() {
|
|
1632
|
+
super(...arguments);
|
|
1633
|
+
this.controlType = 9 /* ControlType.ButtonToggle */;
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
class CheckBox extends BaseControl {
|
|
1638
|
+
constructor() {
|
|
1639
|
+
super(...arguments);
|
|
1640
|
+
this.controlType = 5 /* ControlType.Checkbox */;
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
class Chip extends BaseControl {
|
|
1645
|
+
constructor() {
|
|
1646
|
+
super(...arguments);
|
|
1647
|
+
this.controlType = 11 /* ControlType.Chip */;
|
|
1648
|
+
}
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
class DatePicker extends BaseControl {
|
|
1652
|
+
constructor() {
|
|
1653
|
+
super(...arguments);
|
|
1654
|
+
this.controlType = 3 /* ControlType.DatePicker */;
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
class Divider extends BaseControl {
|
|
1659
|
+
constructor() {
|
|
1660
|
+
super(...arguments);
|
|
1661
|
+
this.controlType = 13 /* ControlType.Divider */;
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
class Editor extends BaseControl {
|
|
1666
|
+
constructor() {
|
|
1667
|
+
super(...arguments);
|
|
1668
|
+
this.controlType = 12 /* ControlType.Editor */;
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
class Radio extends BaseControl {
|
|
1673
|
+
constructor() {
|
|
1674
|
+
super(...arguments);
|
|
1675
|
+
this.controlType = 4 /* ControlType.Radio */;
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
class RichTextEditor extends BaseControl {
|
|
1680
|
+
constructor() {
|
|
1681
|
+
super(...arguments);
|
|
1682
|
+
this.controlType = 12 /* ControlType.Editor */;
|
|
1683
|
+
}
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1618
1686
|
class Select extends BaseControl {
|
|
1619
1687
|
constructor() {
|
|
1620
1688
|
super(...arguments);
|
|
@@ -1622,6 +1690,20 @@ class Select extends BaseControl {
|
|
|
1622
1690
|
}
|
|
1623
1691
|
}
|
|
1624
1692
|
|
|
1693
|
+
class Slider extends BaseControl {
|
|
1694
|
+
constructor() {
|
|
1695
|
+
super(...arguments);
|
|
1696
|
+
this.controlType = 8 /* ControlType.Slider */;
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
class SliderToggle extends BaseControl {
|
|
1701
|
+
constructor() {
|
|
1702
|
+
super(...arguments);
|
|
1703
|
+
this.controlType = 7 /* ControlType.SlideToggle */;
|
|
1704
|
+
}
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1625
1707
|
class Textarea extends BaseControl {
|
|
1626
1708
|
constructor() {
|
|
1627
1709
|
super(...arguments);
|
|
@@ -1876,5 +1958,5 @@ class BaseFormComponent {
|
|
|
1876
1958
|
* Generated bundle index. Do not edit.
|
|
1877
1959
|
*/
|
|
1878
1960
|
|
|
1879
|
-
export { AngularmaterialModule, AppSettingService, AuthGuardService, AuthService,
|
|
1961
|
+
export { AngularmaterialModule, AppSettingService, AuthGuardService, AuthService, AutoComplete, BaseFormComponent, Button, ButtonComponent, ButtonToggle, CheckBox, Chip, Constant, ControlBuilderComponent, DatePicker, Divider, Editor, EnvironmentViewModel, FalconCoreModule, IGenericHttpClient, LoggerService, PaginationComponent, ProgressBarComponent, ProgressSpinnerComponent, Radio, ReactiveFieldDirective, RichTextEditor, Select, Slider, SliderToggle, TableComponent, Textarea, Textbox, appSettingsFactory, authServiceFactory, loggerServiceFactory };
|
|
1880
1962
|
//# sourceMappingURL=falcon-ng-tailwind.mjs.map
|