@rolatech/angular-components 20.3.2-beta.3 → 20.3.3-beta.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-components",
|
|
3
|
-
"version": "20.3.
|
|
3
|
+
"version": "20.3.3-beta.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "rolatech angular components",
|
|
6
6
|
"repository": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"lodash": "^4.17.21"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@rolatech/angular-common": "20.3.
|
|
35
|
-
"@rolatech/angular-services": "20.3.
|
|
34
|
+
"@rolatech/angular-common": "20.3.3-beta.0",
|
|
35
|
+
"@rolatech/angular-services": "20.3.3-beta.0",
|
|
36
36
|
"tslib": "^2.3.0"
|
|
37
37
|
},
|
|
38
38
|
"exports": {
|
package/themes/_default.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.2.
|
|
1
|
+
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -22,14 +22,11 @@
|
|
|
22
22
|
--color-amber-200: oklch(92.4% 0.12 95.746);
|
|
23
23
|
--color-amber-300: oklch(87.9% 0.169 91.605);
|
|
24
24
|
--color-amber-500: oklch(76.9% 0.188 70.08);
|
|
25
|
-
--color-amber-600: oklch(66.6% 0.179 58.318);
|
|
26
25
|
--color-amber-700: oklch(55.5% 0.163 48.998);
|
|
27
26
|
--color-amber-800: oklch(47.3% 0.137 46.201);
|
|
28
27
|
--color-amber-900: oklch(41.4% 0.112 45.904);
|
|
29
28
|
--color-amber-950: oklch(27.9% 0.077 45.635);
|
|
30
|
-
--color-yellow-50: oklch(98.7% 0.026 102.212);
|
|
31
29
|
--color-yellow-100: oklch(97.3% 0.071 103.193);
|
|
32
|
-
--color-yellow-200: oklch(94.5% 0.129 101.54);
|
|
33
30
|
--color-yellow-800: oklch(47.6% 0.114 61.907);
|
|
34
31
|
--color-green-50: oklch(98.2% 0.018 155.826);
|
|
35
32
|
--color-green-100: oklch(96.2% 0.044 156.743);
|
|
@@ -49,6 +46,7 @@
|
|
|
49
46
|
--color-sky-900: oklch(39.1% 0.09 240.876);
|
|
50
47
|
--color-sky-950: oklch(29.3% 0.066 243.157);
|
|
51
48
|
--color-blue-100: oklch(93.2% 0.032 255.585);
|
|
49
|
+
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
52
50
|
--color-blue-700: oklch(48.8% 0.243 264.376);
|
|
53
51
|
--color-blue-800: oklch(42.4% 0.199 265.638);
|
|
54
52
|
--color-rose-50: oklch(96.9% 0.015 12.422);
|
|
@@ -84,7 +82,6 @@
|
|
|
84
82
|
--container-4xl: 56rem;
|
|
85
83
|
--container-5xl: 64rem;
|
|
86
84
|
--container-6xl: 72rem;
|
|
87
|
-
--container-7xl: 80rem;
|
|
88
85
|
--text-xs: 0.75rem;
|
|
89
86
|
--text-xs--line-height: calc(1 / 0.75);
|
|
90
87
|
--text-sm: 0.875rem;
|
|
@@ -704,9 +701,6 @@
|
|
|
704
701
|
.h-36 {
|
|
705
702
|
height: calc(var(--spacing) * 36);
|
|
706
703
|
}
|
|
707
|
-
.h-44 {
|
|
708
|
-
height: calc(var(--spacing) * 44);
|
|
709
|
-
}
|
|
710
704
|
.h-56 {
|
|
711
705
|
height: calc(var(--spacing) * 56);
|
|
712
706
|
}
|
|
@@ -827,6 +821,9 @@
|
|
|
827
821
|
.min-h-\[420px\] {
|
|
828
822
|
min-height: 420px;
|
|
829
823
|
}
|
|
824
|
+
.min-h-dvh {
|
|
825
|
+
min-height: 100dvh;
|
|
826
|
+
}
|
|
830
827
|
.min-h-full {
|
|
831
828
|
min-height: 100%;
|
|
832
829
|
}
|
|
@@ -914,6 +911,9 @@
|
|
|
914
911
|
.w-24 {
|
|
915
912
|
width: calc(var(--spacing) * 24);
|
|
916
913
|
}
|
|
914
|
+
.w-25 {
|
|
915
|
+
width: calc(var(--spacing) * 25);
|
|
916
|
+
}
|
|
917
917
|
.w-28 {
|
|
918
918
|
width: calc(var(--spacing) * 28);
|
|
919
919
|
}
|
|
@@ -929,6 +929,9 @@
|
|
|
929
929
|
.w-44 {
|
|
930
930
|
width: calc(var(--spacing) * 44);
|
|
931
931
|
}
|
|
932
|
+
.w-45 {
|
|
933
|
+
width: calc(var(--spacing) * 45);
|
|
934
|
+
}
|
|
932
935
|
.w-52 {
|
|
933
936
|
width: calc(var(--spacing) * 52);
|
|
934
937
|
}
|
|
@@ -956,9 +959,6 @@
|
|
|
956
959
|
.w-\[80px\] {
|
|
957
960
|
width: 80px;
|
|
958
961
|
}
|
|
959
|
-
.w-\[100px\] {
|
|
960
|
-
width: 100px;
|
|
961
|
-
}
|
|
962
962
|
.w-\[120px\] {
|
|
963
963
|
width: 120px;
|
|
964
964
|
}
|
|
@@ -968,9 +968,6 @@
|
|
|
968
968
|
.w-\[160px\] {
|
|
969
969
|
width: 160px;
|
|
970
970
|
}
|
|
971
|
-
.w-\[180px\] {
|
|
972
|
-
width: 180px;
|
|
973
|
-
}
|
|
974
971
|
.w-\[190px\] {
|
|
975
972
|
width: 190px;
|
|
976
973
|
}
|
|
@@ -998,15 +995,15 @@
|
|
|
998
995
|
.max-w-6xl {
|
|
999
996
|
max-width: var(--container-6xl);
|
|
1000
997
|
}
|
|
1001
|
-
.max-w-7xl {
|
|
1002
|
-
max-width: var(--container-7xl);
|
|
1003
|
-
}
|
|
1004
998
|
.max-w-8 {
|
|
1005
999
|
max-width: calc(var(--spacing) * 8);
|
|
1006
1000
|
}
|
|
1007
1001
|
.max-w-24 {
|
|
1008
1002
|
max-width: calc(var(--spacing) * 24);
|
|
1009
1003
|
}
|
|
1004
|
+
.max-w-45 {
|
|
1005
|
+
max-width: calc(var(--spacing) * 45);
|
|
1006
|
+
}
|
|
1010
1007
|
.max-w-\[65\%\] {
|
|
1011
1008
|
max-width: 65%;
|
|
1012
1009
|
}
|
|
@@ -1016,12 +1013,6 @@
|
|
|
1016
1013
|
.max-w-\[128px\] {
|
|
1017
1014
|
max-width: 128px;
|
|
1018
1015
|
}
|
|
1019
|
-
.max-w-\[180px\] {
|
|
1020
|
-
max-width: 180px;
|
|
1021
|
-
}
|
|
1022
|
-
.max-w-\[420px\] {
|
|
1023
|
-
max-width: 420px;
|
|
1024
|
-
}
|
|
1025
1016
|
.max-w-\[500px\] {
|
|
1026
1017
|
max-width: 500px;
|
|
1027
1018
|
}
|
|
@@ -1037,9 +1028,6 @@
|
|
|
1037
1028
|
.max-w-\[1300px\] {
|
|
1038
1029
|
max-width: 1300px;
|
|
1039
1030
|
}
|
|
1040
|
-
.max-w-\[1396px\] {
|
|
1041
|
-
max-width: 1396px;
|
|
1042
|
-
}
|
|
1043
1031
|
.max-w-full {
|
|
1044
1032
|
max-width: 100%;
|
|
1045
1033
|
}
|
|
@@ -1175,9 +1163,6 @@
|
|
|
1175
1163
|
--tw-scale-z: 90%;
|
|
1176
1164
|
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1177
1165
|
}
|
|
1178
|
-
.rotate-180 {
|
|
1179
|
-
rotate: 180deg;
|
|
1180
|
-
}
|
|
1181
1166
|
.transform {
|
|
1182
1167
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1183
1168
|
}
|
|
@@ -1575,18 +1560,9 @@
|
|
|
1575
1560
|
border-color: color-mix(in oklab, var(--color-white) 50%, transparent);
|
|
1576
1561
|
}
|
|
1577
1562
|
}
|
|
1578
|
-
.border-yellow-200 {
|
|
1579
|
-
border-color: var(--color-yellow-200);
|
|
1580
|
-
}
|
|
1581
1563
|
.border-t-transparent {
|
|
1582
1564
|
border-top-color: transparent;
|
|
1583
1565
|
}
|
|
1584
|
-
.\!bg-\(--rt-brand-color\) {
|
|
1585
|
-
background-color: var(--rt-brand-color) !important;
|
|
1586
|
-
}
|
|
1587
|
-
.bg-\(--rolatech-raised-background\) {
|
|
1588
|
-
background-color: var(--rolatech-raised-background);
|
|
1589
|
-
}
|
|
1590
1566
|
.bg-\(--rt-10-percent-layer\) {
|
|
1591
1567
|
background-color: var(--rt-10-percent-layer);
|
|
1592
1568
|
}
|
|
@@ -1608,6 +1584,9 @@
|
|
|
1608
1584
|
.bg-\(--rt-brand-color\) {
|
|
1609
1585
|
background-color: var(--rt-brand-color);
|
|
1610
1586
|
}
|
|
1587
|
+
.bg-\(--rt-brand-color\)\! {
|
|
1588
|
+
background-color: var(--rt-brand-color) !important;
|
|
1589
|
+
}
|
|
1611
1590
|
.bg-\(--rt-raised-background\) {
|
|
1612
1591
|
background-color: var(--rt-raised-background);
|
|
1613
1592
|
}
|
|
@@ -1665,6 +1644,9 @@
|
|
|
1665
1644
|
.bg-blue-100 {
|
|
1666
1645
|
background-color: var(--color-blue-100);
|
|
1667
1646
|
}
|
|
1647
|
+
.bg-blue-500 {
|
|
1648
|
+
background-color: var(--color-blue-500);
|
|
1649
|
+
}
|
|
1668
1650
|
.bg-emerald-50 {
|
|
1669
1651
|
background-color: var(--color-emerald-50);
|
|
1670
1652
|
}
|
|
@@ -1746,9 +1728,6 @@
|
|
|
1746
1728
|
.bg-white {
|
|
1747
1729
|
background-color: var(--color-white);
|
|
1748
1730
|
}
|
|
1749
|
-
.bg-yellow-50 {
|
|
1750
|
-
background-color: var(--color-yellow-50);
|
|
1751
|
-
}
|
|
1752
1731
|
.bg-yellow-100 {
|
|
1753
1732
|
background-color: var(--color-yellow-100);
|
|
1754
1733
|
}
|
|
@@ -1869,9 +1848,6 @@
|
|
|
1869
1848
|
.py-16 {
|
|
1870
1849
|
padding-block: calc(var(--spacing) * 16);
|
|
1871
1850
|
}
|
|
1872
|
-
.pt-0 {
|
|
1873
|
-
padding-top: calc(var(--spacing) * 0);
|
|
1874
|
-
}
|
|
1875
1851
|
.pt-1 {
|
|
1876
1852
|
padding-top: calc(var(--spacing) * 1);
|
|
1877
1853
|
}
|
|
@@ -2068,9 +2044,6 @@
|
|
|
2068
2044
|
.whitespace-pre-wrap {
|
|
2069
2045
|
white-space: pre-wrap;
|
|
2070
2046
|
}
|
|
2071
|
-
.\!text-\(--rt-text-primary-inverse\) {
|
|
2072
|
-
color: var(--rt-text-primary-inverse) !important;
|
|
2073
|
-
}
|
|
2074
2047
|
.text-\(--rt-accent-foreground\) {
|
|
2075
2048
|
color: var(--rt-accent-foreground);
|
|
2076
2049
|
}
|
|
@@ -2083,6 +2056,9 @@
|
|
|
2083
2056
|
.text-\(--rt-text-primary-inverse\) {
|
|
2084
2057
|
color: var(--rt-text-primary-inverse);
|
|
2085
2058
|
}
|
|
2059
|
+
.text-\(--rt-text-primary-inverse\)\! {
|
|
2060
|
+
color: var(--rt-text-primary-inverse) !important;
|
|
2061
|
+
}
|
|
2086
2062
|
.text-\(--rt-text-secondary\) {
|
|
2087
2063
|
color: var(--rt-text-secondary);
|
|
2088
2064
|
}
|
|
@@ -2092,9 +2068,6 @@
|
|
|
2092
2068
|
.text-\[\#8C8C8C\] {
|
|
2093
2069
|
color: #8C8C8C;
|
|
2094
2070
|
}
|
|
2095
|
-
.text-amber-600 {
|
|
2096
|
-
color: var(--color-amber-600);
|
|
2097
|
-
}
|
|
2098
2071
|
.text-amber-700 {
|
|
2099
2072
|
color: var(--color-amber-700);
|
|
2100
2073
|
}
|
|
@@ -2107,6 +2080,9 @@
|
|
|
2107
2080
|
.text-amber-950 {
|
|
2108
2081
|
color: var(--color-amber-950);
|
|
2109
2082
|
}
|
|
2083
|
+
.text-black {
|
|
2084
|
+
color: var(--color-black);
|
|
2085
|
+
}
|
|
2110
2086
|
.text-blue-700 {
|
|
2111
2087
|
color: var(--color-blue-700);
|
|
2112
2088
|
}
|
|
@@ -3201,11 +3177,6 @@
|
|
|
3201
3177
|
width: calc(1 / 6 * 100%);
|
|
3202
3178
|
}
|
|
3203
3179
|
}
|
|
3204
|
-
.lg\:w-72 {
|
|
3205
|
-
@media (width >= 1024px) {
|
|
3206
|
-
width: calc(var(--spacing) * 72);
|
|
3207
|
-
}
|
|
3208
|
-
}
|
|
3209
3180
|
.lg\:w-\[30\%\] {
|
|
3210
3181
|
@media (width >= 1024px) {
|
|
3211
3182
|
width: 30%;
|
|
@@ -644,6 +644,16 @@ declare abstract class Loading extends BaseComponent {
|
|
|
644
644
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Loading, never, never, { "loading": { "alias": "loading"; "required": false; }; }, {}, never, never, true, never>;
|
|
645
645
|
}
|
|
646
646
|
|
|
647
|
+
interface BreadcrumbItem {
|
|
648
|
+
label: string;
|
|
649
|
+
link?: string | any[];
|
|
650
|
+
}
|
|
651
|
+
declare class Breadcrumb {
|
|
652
|
+
items: _angular_core.InputSignal<BreadcrumbItem[]>;
|
|
653
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Breadcrumb, never>;
|
|
654
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Breadcrumb, "rolatech-breadcrumb", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
655
|
+
}
|
|
656
|
+
|
|
647
657
|
declare class MaterialModule {
|
|
648
658
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialModule, never>;
|
|
649
659
|
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.A11yModule, typeof i2.ClipboardModule, typeof i3.CdkStepperModule, typeof i4.CdkTableModule, typeof i5.CdkTreeModule, typeof i6.DragDropModule, typeof _angular_cdk_layout.LayoutModule, typeof i8.MatAutocompleteModule, typeof i9.MatBadgeModule, typeof i10.MatBottomSheetModule, typeof i11.MatButtonModule, typeof i12.MatButtonToggleModule, typeof i13.MatCardModule, typeof i14.MatCheckboxModule, typeof i15.MatChipsModule, typeof i16.MatStepperModule, typeof i17.MatDatepickerModule, typeof i18.MatDialogModule, typeof i19.MatDividerModule, typeof i20.MatExpansionModule, typeof i21.MatGridListModule, typeof i22.MatIconModule, typeof i23.MatFormFieldModule, typeof i24.MatInputModule, typeof i25.MatListModule, typeof i26.MatMenuModule, typeof i27.MatNativeDateModule, typeof i28.MatPaginatorModule, typeof i29.MatProgressBarModule, typeof i30.MatProgressSpinnerModule, typeof i31.MatRadioModule, typeof i27.MatRippleModule, typeof i32.MatSelectModule, typeof i33.MatSidenavModule, typeof i34.MatSliderModule, typeof i35.MatSlideToggleModule, typeof i36.MatSnackBarModule, typeof i37.MatSortModule, typeof i38.MatTableModule, typeof i39.MatTabsModule, typeof i40.MatToolbarModule, typeof i41.MatTooltipModule, typeof i42.MatTreeModule, typeof i43.PortalModule, typeof i44.ScrollingModule], [typeof i1.A11yModule, typeof i2.ClipboardModule, typeof i3.CdkStepperModule, typeof i4.CdkTableModule, typeof i5.CdkTreeModule, typeof i6.DragDropModule, typeof _angular_cdk_layout.LayoutModule, typeof i8.MatAutocompleteModule, typeof i9.MatBadgeModule, typeof i10.MatBottomSheetModule, typeof i11.MatButtonModule, typeof i12.MatButtonToggleModule, typeof i13.MatCardModule, typeof i14.MatCheckboxModule, typeof i15.MatChipsModule, typeof i16.MatStepperModule, typeof i17.MatDatepickerModule, typeof i18.MatDialogModule, typeof i19.MatDividerModule, typeof i20.MatExpansionModule, typeof i21.MatGridListModule, typeof i22.MatIconModule, typeof i23.MatFormFieldModule, typeof i24.MatInputModule, typeof i25.MatListModule, typeof i26.MatMenuModule, typeof i27.MatNativeDateModule, typeof i28.MatPaginatorModule, typeof i29.MatProgressBarModule, typeof i30.MatProgressSpinnerModule, typeof i31.MatRadioModule, typeof i27.MatRippleModule, typeof i32.MatSelectModule, typeof i33.MatSidenavModule, typeof i34.MatSliderModule, typeof i35.MatSlideToggleModule, typeof i36.MatSnackBarModule, typeof i37.MatSortModule, typeof i38.MatTableModule, typeof i39.MatTabsModule, typeof i40.MatToolbarModule, typeof i41.MatTooltipModule, typeof i42.MatTreeModule, typeof i43.PortalModule, typeof i44.ScrollingModule]>;
|
|
@@ -1043,5 +1053,5 @@ interface Message {
|
|
|
1043
1053
|
streaming?: boolean;
|
|
1044
1054
|
}
|
|
1045
1055
|
|
|
1046
|
-
export { APP_LAYOUT, AcceptDialogComponent, AccordionComponent, AngularComponentsModule, AppPageComponent, AppShellComponent, AvatarComponent, BaseComponent, ChatBox, ChipBarComponent, ConfirmationComponent, ConfirmationDialogComponent, ConsoleLayoutComponent, ContainerComponent, ContentComponent, ConversationContent, ConversationHeader, ConversationInput, ConversationMessage, DrawerComponent, EditorComponent, EmptyComponent, EnumSelect, FilterComponent, FolderComponent, FooterComponent, FooterLanguageSwitcherComponent, IconButtonComponent, IconComponent, ImageComponent, ImagePlaceholderComponent, ImagePreviewDialogComponent, InputComponent, LayoutComponent, ListComponent, Loading, LocationSelectorComponent, MaterialModule, MediaListComponent, MediaListItemComponent, MediaPreviewComponent, MediaPreviewDialogComponent, MediaUploadComponent, MediaUploadDialogComponent, MenuIconComponent, MenuUserComponent, MiniGuideComponent, NotFoundComponent, PageCollectionShellComponent, PaginatorComponent, PanelComponent, PanelHeaderComponent, PdfViewerComponent, RejectDialogComponent, ResizableContainerComponent, RichGridMediaComponent, RichItemComponent, RichLabelComponent, RichViewComponent, SearchBar, SearchIcon, Skeleton, SpinnerComponent, StorageBucketCreateComponent, StorageFileUploadComponent, StorageFolderCreateComponent, TabComponent, TableComponent, TabsComponent, ThumbnailComponent, TitleComponent, ToolbarComponent, TopbarAvatarMenuComponent, TopbarComponent, VideoUpload, WechatConnectDialogComponent, provideAngularLayout };
|
|
1047
|
-
export type { AppLayoutConfig, AppTopbarConfig, Column, DrawerConfig, Message, MiniGuide, Role, TabMode, TableData };
|
|
1056
|
+
export { APP_LAYOUT, AcceptDialogComponent, AccordionComponent, AngularComponentsModule, AppPageComponent, AppShellComponent, AvatarComponent, BaseComponent, Breadcrumb, ChatBox, ChipBarComponent, ConfirmationComponent, ConfirmationDialogComponent, ConsoleLayoutComponent, ContainerComponent, ContentComponent, ConversationContent, ConversationHeader, ConversationInput, ConversationMessage, DrawerComponent, EditorComponent, EmptyComponent, EnumSelect, FilterComponent, FolderComponent, FooterComponent, FooterLanguageSwitcherComponent, IconButtonComponent, IconComponent, ImageComponent, ImagePlaceholderComponent, ImagePreviewDialogComponent, InputComponent, LayoutComponent, ListComponent, Loading, LocationSelectorComponent, MaterialModule, MediaListComponent, MediaListItemComponent, MediaPreviewComponent, MediaPreviewDialogComponent, MediaUploadComponent, MediaUploadDialogComponent, MenuIconComponent, MenuUserComponent, MiniGuideComponent, NotFoundComponent, PageCollectionShellComponent, PaginatorComponent, PanelComponent, PanelHeaderComponent, PdfViewerComponent, RejectDialogComponent, ResizableContainerComponent, RichGridMediaComponent, RichItemComponent, RichLabelComponent, RichViewComponent, SearchBar, SearchIcon, Skeleton, SpinnerComponent, StorageBucketCreateComponent, StorageFileUploadComponent, StorageFolderCreateComponent, TabComponent, TableComponent, TabsComponent, ThumbnailComponent, TitleComponent, ToolbarComponent, TopbarAvatarMenuComponent, TopbarComponent, VideoUpload, WechatConnectDialogComponent, provideAngularLayout };
|
|
1057
|
+
export type { AppLayoutConfig, AppTopbarConfig, BreadcrumbItem, Column, DrawerConfig, Message, MiniGuide, Role, TabMode, TableData };
|