@rolatech/angular-components 20.3.2-beta.4 → 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 {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
--color-sky-900: oklch(39.1% 0.09 240.876);
|
|
47
47
|
--color-sky-950: oklch(29.3% 0.066 243.157);
|
|
48
48
|
--color-blue-100: oklch(93.2% 0.032 255.585);
|
|
49
|
+
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
49
50
|
--color-blue-700: oklch(48.8% 0.243 264.376);
|
|
50
51
|
--color-blue-800: oklch(42.4% 0.199 265.638);
|
|
51
52
|
--color-rose-50: oklch(96.9% 0.015 12.422);
|
|
@@ -820,6 +821,9 @@
|
|
|
820
821
|
.min-h-\[420px\] {
|
|
821
822
|
min-height: 420px;
|
|
822
823
|
}
|
|
824
|
+
.min-h-dvh {
|
|
825
|
+
min-height: 100dvh;
|
|
826
|
+
}
|
|
823
827
|
.min-h-full {
|
|
824
828
|
min-height: 100%;
|
|
825
829
|
}
|
|
@@ -907,6 +911,9 @@
|
|
|
907
911
|
.w-24 {
|
|
908
912
|
width: calc(var(--spacing) * 24);
|
|
909
913
|
}
|
|
914
|
+
.w-25 {
|
|
915
|
+
width: calc(var(--spacing) * 25);
|
|
916
|
+
}
|
|
910
917
|
.w-28 {
|
|
911
918
|
width: calc(var(--spacing) * 28);
|
|
912
919
|
}
|
|
@@ -922,6 +929,9 @@
|
|
|
922
929
|
.w-44 {
|
|
923
930
|
width: calc(var(--spacing) * 44);
|
|
924
931
|
}
|
|
932
|
+
.w-45 {
|
|
933
|
+
width: calc(var(--spacing) * 45);
|
|
934
|
+
}
|
|
925
935
|
.w-52 {
|
|
926
936
|
width: calc(var(--spacing) * 52);
|
|
927
937
|
}
|
|
@@ -949,9 +959,6 @@
|
|
|
949
959
|
.w-\[80px\] {
|
|
950
960
|
width: 80px;
|
|
951
961
|
}
|
|
952
|
-
.w-\[100px\] {
|
|
953
|
-
width: 100px;
|
|
954
|
-
}
|
|
955
962
|
.w-\[120px\] {
|
|
956
963
|
width: 120px;
|
|
957
964
|
}
|
|
@@ -961,9 +968,6 @@
|
|
|
961
968
|
.w-\[160px\] {
|
|
962
969
|
width: 160px;
|
|
963
970
|
}
|
|
964
|
-
.w-\[180px\] {
|
|
965
|
-
width: 180px;
|
|
966
|
-
}
|
|
967
971
|
.w-\[190px\] {
|
|
968
972
|
width: 190px;
|
|
969
973
|
}
|
|
@@ -997,6 +1001,9 @@
|
|
|
997
1001
|
.max-w-24 {
|
|
998
1002
|
max-width: calc(var(--spacing) * 24);
|
|
999
1003
|
}
|
|
1004
|
+
.max-w-45 {
|
|
1005
|
+
max-width: calc(var(--spacing) * 45);
|
|
1006
|
+
}
|
|
1000
1007
|
.max-w-\[65\%\] {
|
|
1001
1008
|
max-width: 65%;
|
|
1002
1009
|
}
|
|
@@ -1006,9 +1013,6 @@
|
|
|
1006
1013
|
.max-w-\[128px\] {
|
|
1007
1014
|
max-width: 128px;
|
|
1008
1015
|
}
|
|
1009
|
-
.max-w-\[180px\] {
|
|
1010
|
-
max-width: 180px;
|
|
1011
|
-
}
|
|
1012
1016
|
.max-w-\[500px\] {
|
|
1013
1017
|
max-width: 500px;
|
|
1014
1018
|
}
|
|
@@ -1024,9 +1028,6 @@
|
|
|
1024
1028
|
.max-w-\[1300px\] {
|
|
1025
1029
|
max-width: 1300px;
|
|
1026
1030
|
}
|
|
1027
|
-
.max-w-\[1396px\] {
|
|
1028
|
-
max-width: 1396px;
|
|
1029
|
-
}
|
|
1030
1031
|
.max-w-full {
|
|
1031
1032
|
max-width: 100%;
|
|
1032
1033
|
}
|
|
@@ -1505,6 +1506,9 @@
|
|
|
1505
1506
|
.border-emerald-300 {
|
|
1506
1507
|
border-color: var(--color-emerald-300);
|
|
1507
1508
|
}
|
|
1509
|
+
.border-gray-200 {
|
|
1510
|
+
border-color: var(--color-gray-200);
|
|
1511
|
+
}
|
|
1508
1512
|
.border-green-200 {
|
|
1509
1513
|
border-color: var(--color-green-200);
|
|
1510
1514
|
}
|
|
@@ -1559,9 +1563,6 @@
|
|
|
1559
1563
|
.border-t-transparent {
|
|
1560
1564
|
border-top-color: transparent;
|
|
1561
1565
|
}
|
|
1562
|
-
.\!bg-\(--rt-brand-color\) {
|
|
1563
|
-
background-color: var(--rt-brand-color) !important;
|
|
1564
|
-
}
|
|
1565
1566
|
.bg-\(--rt-10-percent-layer\) {
|
|
1566
1567
|
background-color: var(--rt-10-percent-layer);
|
|
1567
1568
|
}
|
|
@@ -1583,6 +1584,9 @@
|
|
|
1583
1584
|
.bg-\(--rt-brand-color\) {
|
|
1584
1585
|
background-color: var(--rt-brand-color);
|
|
1585
1586
|
}
|
|
1587
|
+
.bg-\(--rt-brand-color\)\! {
|
|
1588
|
+
background-color: var(--rt-brand-color) !important;
|
|
1589
|
+
}
|
|
1586
1590
|
.bg-\(--rt-raised-background\) {
|
|
1587
1591
|
background-color: var(--rt-raised-background);
|
|
1588
1592
|
}
|
|
@@ -1640,6 +1644,9 @@
|
|
|
1640
1644
|
.bg-blue-100 {
|
|
1641
1645
|
background-color: var(--color-blue-100);
|
|
1642
1646
|
}
|
|
1647
|
+
.bg-blue-500 {
|
|
1648
|
+
background-color: var(--color-blue-500);
|
|
1649
|
+
}
|
|
1643
1650
|
.bg-emerald-50 {
|
|
1644
1651
|
background-color: var(--color-emerald-50);
|
|
1645
1652
|
}
|
|
@@ -2037,9 +2044,6 @@
|
|
|
2037
2044
|
.whitespace-pre-wrap {
|
|
2038
2045
|
white-space: pre-wrap;
|
|
2039
2046
|
}
|
|
2040
|
-
.\!text-\(--rt-text-primary-inverse\) {
|
|
2041
|
-
color: var(--rt-text-primary-inverse) !important;
|
|
2042
|
-
}
|
|
2043
2047
|
.text-\(--rt-accent-foreground\) {
|
|
2044
2048
|
color: var(--rt-accent-foreground);
|
|
2045
2049
|
}
|
|
@@ -2052,6 +2056,9 @@
|
|
|
2052
2056
|
.text-\(--rt-text-primary-inverse\) {
|
|
2053
2057
|
color: var(--rt-text-primary-inverse);
|
|
2054
2058
|
}
|
|
2059
|
+
.text-\(--rt-text-primary-inverse\)\! {
|
|
2060
|
+
color: var(--rt-text-primary-inverse) !important;
|
|
2061
|
+
}
|
|
2055
2062
|
.text-\(--rt-text-secondary\) {
|
|
2056
2063
|
color: var(--rt-text-secondary);
|
|
2057
2064
|
}
|
|
@@ -2073,6 +2080,9 @@
|
|
|
2073
2080
|
.text-amber-950 {
|
|
2074
2081
|
color: var(--color-amber-950);
|
|
2075
2082
|
}
|
|
2083
|
+
.text-black {
|
|
2084
|
+
color: var(--color-black);
|
|
2085
|
+
}
|
|
2076
2086
|
.text-blue-700 {
|
|
2077
2087
|
color: var(--color-blue-700);
|
|
2078
2088
|
}
|
|
@@ -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 };
|