@alauda/ui 6.2.2-beta.0 → 6.2.2-beta.1
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/alauda-ui.d.ts +21 -20
- package/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +63 -69
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/esm2015/alauda-ui.js +22 -21
- package/esm2015/alauda-ui.ngsummary.json +1 -1
- package/esm2015/icon/icon.component.ngfactory.js +1 -1
- package/esm2015/icon/icon.module.ngfactory.js +1 -1
- package/esm2015/public-api.ngsummary.json +1 -1
- package/esm2015/theme/color.pipe.js +26 -0
- package/esm2015/theme/color.pipe.ngsummary.json +1 -0
- package/esm2015/theme/public-api.js +2 -3
- package/esm2015/theme/public-api.ngsummary.json +1 -1
- package/esm2015/theme/theme-picker.pipe.js +36 -0
- package/esm2015/theme/theme-picker.pipe.ngsummary.json +1 -0
- package/esm2015/theme/theme.module.js +3 -2
- package/esm2015/theme/theme.module.ngfactory.js +1 -1
- package/esm2015/theme/theme.module.ngsummary.json +1 -1
- package/fesm2015/alauda-ui.js +26 -35
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/theme/color.pipe.d.ts +10 -0
- package/theme/public-api.d.ts +1 -2
- package/theme/style.css +68 -68
- package/theme/{theme.pipe.d.ts → theme-picker.pipe.d.ts} +0 -10
- package/esm2015/theme/theme.pipe.js +0 -61
- package/esm2015/theme/theme.pipe.ngsummary.json +0 -1
- package/esm2015/theme/utils.js +0 -10
- package/esm2015/theme/utils.ngsummary.json +0 -1
- package/theme/utils.d.ts +0 -3
package/bundles/alauda-ui.umd.js
CHANGED
|
@@ -532,44 +532,6 @@
|
|
|
532
532
|
];
|
|
533
533
|
ThemeService.ctorParameters = function () { return []; };
|
|
534
534
|
|
|
535
|
-
function rgbColor(color) {
|
|
536
|
-
return "rgb(var(--aui-color-" + color + "))";
|
|
537
|
-
}
|
|
538
|
-
function rgbaColor(_a) {
|
|
539
|
-
var _b = __read(_a, 2), color = _b[0], opacity = _b[1];
|
|
540
|
-
return "rgba(var(--aui-color-" + color + "), " + opacity + ")";
|
|
541
|
-
}
|
|
542
|
-
function cssVar(value) {
|
|
543
|
-
return "var(--aui-" + value + ")";
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
var RgbColorPipe = /** @class */ (function () {
|
|
547
|
-
function RgbColorPipe() {
|
|
548
|
-
this.transform = rgbColor;
|
|
549
|
-
}
|
|
550
|
-
return RgbColorPipe;
|
|
551
|
-
}());
|
|
552
|
-
RgbColorPipe.decorators = [
|
|
553
|
-
{ type: i0.Pipe, args: [{ name: 'auiRgbColor', pure: true },] }
|
|
554
|
-
];
|
|
555
|
-
var RgbaColorPipe = /** @class */ (function () {
|
|
556
|
-
function RgbaColorPipe() {
|
|
557
|
-
this.transform = rgbaColor;
|
|
558
|
-
}
|
|
559
|
-
return RgbaColorPipe;
|
|
560
|
-
}());
|
|
561
|
-
RgbaColorPipe.decorators = [
|
|
562
|
-
{ type: i0.Pipe, args: [{ name: 'auiRgbaColor', pure: true },] }
|
|
563
|
-
];
|
|
564
|
-
var CssVarPipe = /** @class */ (function () {
|
|
565
|
-
function CssVarPipe() {
|
|
566
|
-
this.transform = cssVar;
|
|
567
|
-
}
|
|
568
|
-
return CssVarPipe;
|
|
569
|
-
}());
|
|
570
|
-
CssVarPipe.decorators = [
|
|
571
|
-
{ type: i0.Pipe, args: [{ name: 'auiCssVar', pure: true },] }
|
|
572
|
-
];
|
|
573
535
|
var ThemePickerPipe = /** @class */ (function () {
|
|
574
536
|
function ThemePickerPipe(themeService, cdr) {
|
|
575
537
|
var _this = this;
|
|
@@ -604,6 +566,41 @@
|
|
|
604
566
|
{ type: i0.ChangeDetectorRef }
|
|
605
567
|
]; };
|
|
606
568
|
|
|
569
|
+
var RgbColorPipe = /** @class */ (function () {
|
|
570
|
+
function RgbColorPipe() {
|
|
571
|
+
}
|
|
572
|
+
RgbColorPipe.prototype.transform = function (color) {
|
|
573
|
+
return "rgb(var(--aui-color-" + color + "))";
|
|
574
|
+
};
|
|
575
|
+
return RgbColorPipe;
|
|
576
|
+
}());
|
|
577
|
+
RgbColorPipe.decorators = [
|
|
578
|
+
{ type: i0.Pipe, args: [{ name: 'auiRgbColor', pure: true },] }
|
|
579
|
+
];
|
|
580
|
+
var RgbaColorPipe = /** @class */ (function () {
|
|
581
|
+
function RgbaColorPipe() {
|
|
582
|
+
}
|
|
583
|
+
RgbaColorPipe.prototype.transform = function (_a) {
|
|
584
|
+
var _b = __read(_a, 2), color = _b[0], opacity = _b[1];
|
|
585
|
+
return "rgba(var(--aui-color-" + color + "), " + opacity + ")";
|
|
586
|
+
};
|
|
587
|
+
return RgbaColorPipe;
|
|
588
|
+
}());
|
|
589
|
+
RgbaColorPipe.decorators = [
|
|
590
|
+
{ type: i0.Pipe, args: [{ name: 'auiRgbaColor', pure: true },] }
|
|
591
|
+
];
|
|
592
|
+
var CssVarPipe = /** @class */ (function () {
|
|
593
|
+
function CssVarPipe() {
|
|
594
|
+
}
|
|
595
|
+
CssVarPipe.prototype.transform = function (value) {
|
|
596
|
+
return "var(--aui-" + value + ")";
|
|
597
|
+
};
|
|
598
|
+
return CssVarPipe;
|
|
599
|
+
}());
|
|
600
|
+
CssVarPipe.decorators = [
|
|
601
|
+
{ type: i0.Pipe, args: [{ name: 'auiCssVar', pure: true },] }
|
|
602
|
+
];
|
|
603
|
+
|
|
607
604
|
var ThemeModule = /** @class */ (function () {
|
|
608
605
|
function ThemeModule() {
|
|
609
606
|
}
|
|
@@ -12559,7 +12556,6 @@
|
|
|
12559
12556
|
exports.CommonFormControl = CommonFormControl;
|
|
12560
12557
|
exports.ComponentSize = ComponentSize;
|
|
12561
12558
|
exports.ConfirmDialogConfig = ConfirmDialogConfig;
|
|
12562
|
-
exports.CssVarPipe = CssVarPipe;
|
|
12563
12559
|
exports.CustomAutoCompleteDirective = CustomAutoCompleteDirective;
|
|
12564
12560
|
exports.DATA = DATA;
|
|
12565
12561
|
exports.DATE = DATE;
|
|
@@ -12667,8 +12663,6 @@
|
|
|
12667
12663
|
exports.RadioModule = RadioModule;
|
|
12668
12664
|
exports.RadioSize = RadioSize;
|
|
12669
12665
|
exports.RangePickerComponent = RangePickerComponent;
|
|
12670
|
-
exports.RgbColorPipe = RgbColorPipe;
|
|
12671
|
-
exports.RgbaColorPipe = RgbaColorPipe;
|
|
12672
12666
|
exports.SECOND = SECOND;
|
|
12673
12667
|
exports.SECOND_ITEMS = SECOND_ITEMS;
|
|
12674
12668
|
exports.ScrollingModule = ScrollingModule;
|
|
@@ -12757,7 +12751,6 @@
|
|
|
12757
12751
|
exports.coerceAttrBoolean = coerceAttrBoolean;
|
|
12758
12752
|
exports.coerceNumber = coerceNumber;
|
|
12759
12753
|
exports.coerceString = coerceString;
|
|
12760
|
-
exports.cssVar = cssVar;
|
|
12761
12754
|
exports.en = en;
|
|
12762
12755
|
exports.getAnchorTreeItems = getAnchorTreeItems;
|
|
12763
12756
|
exports.getSortDuplicateSortableIdError = getSortDuplicateSortableIdError;
|
|
@@ -12771,8 +12764,6 @@
|
|
|
12771
12764
|
exports.last = last;
|
|
12772
12765
|
exports.observeMutationOn = observeMutationOn;
|
|
12773
12766
|
exports.observeResizeOn = observeResizeOn;
|
|
12774
|
-
exports.rgbColor = rgbColor;
|
|
12775
|
-
exports.rgbaColor = rgbaColor;
|
|
12776
12767
|
exports.scrollIntoView = scrollIntoView;
|
|
12777
12768
|
exports.sleep = sleep;
|
|
12778
12769
|
exports.watchContentExist = watchContentExist;
|
|
@@ -12780,31 +12771,34 @@
|
|
|
12780
12771
|
exports.ɵ0 = ɵ0;
|
|
12781
12772
|
exports.ɵ1 = ɵ1;
|
|
12782
12773
|
exports.ɵ2 = ɵ2;
|
|
12783
|
-
exports.ɵa =
|
|
12784
|
-
exports.ɵb =
|
|
12785
|
-
exports.ɵ
|
|
12786
|
-
exports.ɵ
|
|
12787
|
-
exports.ɵ
|
|
12788
|
-
exports.ɵ
|
|
12789
|
-
exports.ɵ
|
|
12790
|
-
exports.ɵ
|
|
12791
|
-
exports.ɵ
|
|
12792
|
-
exports.ɵ
|
|
12793
|
-
exports.ɵ
|
|
12794
|
-
exports.ɵ
|
|
12795
|
-
exports.ɵ
|
|
12796
|
-
exports.ɵ
|
|
12797
|
-
exports.ɵ
|
|
12798
|
-
exports.ɵ
|
|
12799
|
-
exports.ɵ
|
|
12800
|
-
exports.ɵ
|
|
12801
|
-
exports.ɵ
|
|
12802
|
-
exports.ɵ
|
|
12803
|
-
exports.ɵ
|
|
12804
|
-
exports.ɵ
|
|
12805
|
-
exports.ɵ
|
|
12806
|
-
exports.ɵ
|
|
12807
|
-
exports.ɵ
|
|
12774
|
+
exports.ɵa = RgbColorPipe;
|
|
12775
|
+
exports.ɵb = RgbaColorPipe;
|
|
12776
|
+
exports.ɵba = _isNumberValue;
|
|
12777
|
+
exports.ɵbb = DatePickerComponent;
|
|
12778
|
+
exports.ɵc = CssVarPipe;
|
|
12779
|
+
exports.ɵd = TablePlaceholderDefDirective;
|
|
12780
|
+
exports.ɵe = TablePlaceholderOutlet;
|
|
12781
|
+
exports.ɵf = TableExpandButtonCellComponent;
|
|
12782
|
+
exports.ɵg = TableExpandPanelCellComponent;
|
|
12783
|
+
exports.ɵh = TooltipCopyDirective;
|
|
12784
|
+
exports.ɵi = DialogComponent;
|
|
12785
|
+
exports.ɵj = ConfirmDialogComponent;
|
|
12786
|
+
exports.ɵk = BaseRadio;
|
|
12787
|
+
exports.ɵl = InputAddonBeforeDirective;
|
|
12788
|
+
exports.ɵm = InputAddonAfterDirective;
|
|
12789
|
+
exports.ɵn = InputPrefixDirective;
|
|
12790
|
+
exports.ɵo = InputSuffixDirective;
|
|
12791
|
+
exports.ɵp = SharedModule;
|
|
12792
|
+
exports.ɵq = ClickOutsideDirective;
|
|
12793
|
+
exports.ɵr = AutosizeDirective;
|
|
12794
|
+
exports.ɵs = BaseSelect;
|
|
12795
|
+
exports.ɵt = MenuGroupTitleDirective;
|
|
12796
|
+
exports.ɵu = MessageWrapperComponent;
|
|
12797
|
+
exports.ɵv = MessageComponent;
|
|
12798
|
+
exports.ɵw = MessageAnimations;
|
|
12799
|
+
exports.ɵx = BaseMessage;
|
|
12800
|
+
exports.ɵy = NotificationWrapperComponent;
|
|
12801
|
+
exports.ɵz = VirtualForOfDirective;
|
|
12808
12802
|
|
|
12809
12803
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
12810
12804
|
|