@rolatech/angular-product 17.0.0 → 17.1.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/esm2022/index.mjs +5 -12
- package/esm2022/lib/components/index.mjs +12 -0
- package/esm2022/lib/components/product-action/product-action.component.mjs +25 -0
- package/esm2022/lib/components/product-info/product-info.component.mjs +17 -0
- package/esm2022/lib/components/product-item/product-item.component.mjs +17 -0
- package/esm2022/lib/components/product-manage-option-add/product-manage-option-add.component.mjs +68 -0
- package/esm2022/lib/components/product-manage-option-item/product-manage-option-item.component.mjs +49 -0
- package/esm2022/lib/components/product-manage-variant/product-manage-variant.component.mjs +115 -0
- package/esm2022/lib/components/product-mange-option-action/product-manage-option-action.component.mjs +22 -0
- package/esm2022/lib/components/product-mange-section-item/product-mange-section-item.component.mjs +89 -0
- package/esm2022/lib/components/product-media/product-media.component.mjs +34 -0
- package/esm2022/lib/components/product-option/product-option.component.mjs +23 -0
- package/esm2022/lib/components/product-owner-renderer/product-owner-renderer.component.mjs +20 -0
- package/esm2022/lib/components/product-pricing/product-pricing.component.mjs +31 -0
- package/esm2022/lib/components/product-section/product-section.component.mjs +26 -0
- package/esm2022/lib/interfaces/category.mjs +2 -0
- package/esm2022/lib/interfaces/index.mjs +2 -0
- package/esm2022/lib/interfaces/product.mjs +32 -0
- package/esm2022/lib/pages/product/product-category/product-category.component.mjs +70 -8
- package/esm2022/lib/pages/product/product-details/product-details.component.mjs +193 -0
- package/esm2022/lib/pages/product/product-details/selected.pipe.mjs +18 -0
- package/esm2022/lib/pages/product/product-index/product-index.component.mjs +39 -8
- package/esm2022/lib/pages/product/product-layout/product-layout.component.mjs +46 -8
- package/esm2022/lib/pages/product/product.routes.mjs +3 -3
- package/esm2022/lib/pages/product-manage/product-manage-content/product-manage-content.component.mjs +5 -5
- package/esm2022/lib/pages/product-manage/product-manage-create/product-manage-create.component.mjs +61 -0
- package/esm2022/lib/pages/product-manage/product-manage-index/product-manage-index.component.mjs +155 -0
- package/esm2022/lib/pages/product-manage/product-manage-info/product-manage-info.component.mjs +98 -8
- package/esm2022/lib/pages/product-manage/product-manage-inventory/product-manage-inventory.component.mjs +14 -0
- package/esm2022/lib/pages/product-manage/product-manage-item/product-manage-item.component.mjs +27 -0
- package/esm2022/lib/pages/product-manage/product-manage-item-header/product-manage-item-header.component.mjs +12 -0
- package/esm2022/lib/pages/product-manage/product-manage-layout/product-manage-layout.component.mjs +51 -8
- package/esm2022/lib/pages/product-manage/product-manage-media/product-manage-media.component.mjs +133 -8
- package/esm2022/lib/pages/product-manage/product-manage-options/product-manage-options.component.mjs +102 -0
- package/esm2022/lib/pages/product-manage/product-manage-pricing/product-manage-pricing.component.mjs +5 -5
- package/esm2022/lib/pages/product-manage/product-manage-schedule/product-manage-schedule.component.mjs +14 -0
- package/esm2022/lib/pages/product-manage/product-manage-sections/product-manage-sections.component.mjs +170 -0
- package/esm2022/lib/pages/product-manage/product-manage-variants/product-manage-variants.component.mjs +133 -0
- package/esm2022/lib/pages/product-manage/product-manage.routes.mjs +34 -4
- package/esm2022/lib/services/index.mjs +4 -0
- package/esm2022/lib/services/product-category.service.mjs +38 -0
- package/esm2022/provider.mjs +13 -0
- package/fesm2022/rolatech-angular-product-product-index.component-C_cbg95R.mjs +70 -0
- package/fesm2022/rolatech-angular-product-product-index.component-C_cbg95R.mjs.map +1 -0
- package/fesm2022/rolatech-angular-product.mjs +1697 -76
- package/fesm2022/rolatech-angular-product.mjs.map +1 -1
- package/index.d.ts +4 -11
- package/lib/components/index.d.ts +11 -0
- package/lib/components/product-action/product-action.component.d.ts +11 -0
- package/lib/components/product-info/product-info.component.d.ts +7 -0
- package/lib/components/product-item/product-item.component.d.ts +7 -0
- package/lib/components/product-manage-option-add/product-manage-option-add.component.d.ts +20 -0
- package/lib/components/product-manage-option-item/product-manage-option-item.component.d.ts +14 -0
- package/lib/components/product-manage-variant/product-manage-variant.component.d.ts +18 -0
- package/lib/components/product-mange-option-action/product-manage-option-action.component.d.ts +10 -0
- package/lib/components/product-mange-section-item/product-mange-section-item.component.d.ts +33 -0
- package/lib/components/product-media/product-media.component.d.ts +12 -0
- package/lib/components/product-option/product-option.component.d.ts +14 -0
- package/lib/components/product-owner-renderer/product-owner-renderer.component.d.ts +8 -0
- package/lib/components/product-pricing/product-pricing.component.d.ts +12 -0
- package/lib/components/product-section/product-section.component.d.ts +16 -0
- package/lib/interfaces/category.d.ts +16 -0
- package/lib/interfaces/index.d.ts +2 -0
- package/lib/interfaces/product.d.ts +91 -0
- package/lib/pages/product/product-category/product-category.component.d.ts +19 -2
- package/lib/pages/product/product-details/product-details.component.d.ts +39 -0
- package/lib/pages/product/product-details/selected.pipe.d.ts +8 -0
- package/lib/pages/product/product-index/product-index.component.d.ts +12 -2
- package/lib/pages/product/product-layout/product-layout.component.d.ts +15 -2
- package/lib/pages/product-manage/product-manage-content/product-manage-content.component.d.ts +1 -1
- package/lib/pages/product-manage/product-manage-create/product-manage-create.component.d.ts +11 -0
- package/lib/pages/product-manage/product-manage-index/product-manage-index.component.d.ts +38 -0
- package/lib/pages/product-manage/product-manage-info/product-manage-info.component.d.ts +26 -2
- package/lib/pages/product-manage/product-manage-inventory/product-manage-inventory.component.d.ts +5 -0
- package/lib/pages/product-manage/product-manage-item/product-manage-item.component.d.ts +12 -0
- package/lib/pages/product-manage/product-manage-item-header/product-manage-item-header.component.d.ts +5 -0
- package/lib/pages/product-manage/product-manage-layout/product-manage-layout.component.d.ts +22 -2
- package/lib/pages/product-manage/product-manage-media/product-manage-media.component.d.ts +26 -2
- package/lib/pages/product-manage/product-manage-options/product-manage-options.component.d.ts +17 -0
- package/lib/pages/product-manage/product-manage-pricing/product-manage-pricing.component.d.ts +1 -1
- package/lib/pages/product-manage/product-manage-schedule/product-manage-schedule.component.d.ts +5 -0
- package/lib/pages/product-manage/product-manage-sections/product-manage-sections.component.d.ts +29 -0
- package/lib/pages/product-manage/product-manage-variants/product-manage-variants.component.d.ts +27 -0
- package/lib/services/index.d.ts +3 -0
- package/lib/services/product-category.service.d.ts +12 -0
- package/package.json +1 -1
- package/provider.d.ts +2 -0
- package/themes/_default.scss +1 -1
- package/esm2022/lib/angular-product/angular-product.component.mjs +0 -12
- package/esm2022/lib/pages/product/product-detail/product-detail.component.mjs +0 -12
- package/esm2022/lib/pages/product-manage/product-manage-details/product-manage-details.component.mjs +0 -12
- package/lib/angular-product/angular-product.component.d.ts +0 -5
- package/lib/pages/product/product-detail/product-detail.component.d.ts +0 -5
- package/lib/pages/product-manage/product-manage-details/product-manage-details.component.d.ts +0 -5
package/lib/pages/product-manage/product-manage-schedule/product-manage-schedule.component.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ProductManageScheduleComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductManageScheduleComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductManageScheduleComponent, "rolatech-product-manage-schedule", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
package/lib/pages/product-manage/product-manage-sections/product-manage-sections.component.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
+
import { ActivatedRoute } from '@angular/router';
|
|
5
|
+
import { ProductSection, ProductStatus } from '../../../interfaces';
|
|
6
|
+
import { ProductService } from '@rolatech/angular-services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ProductManageSectionsComponent implements OnInit {
|
|
9
|
+
route: ActivatedRoute;
|
|
10
|
+
productService: ProductService;
|
|
11
|
+
dialog: MatDialog;
|
|
12
|
+
snackBar: MatSnackBar;
|
|
13
|
+
id: string;
|
|
14
|
+
isLoading: boolean;
|
|
15
|
+
isUploading: boolean;
|
|
16
|
+
sections: ProductSection[];
|
|
17
|
+
status: typeof ProductStatus;
|
|
18
|
+
productType: any;
|
|
19
|
+
constructor();
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
find(): void;
|
|
22
|
+
addSection(): void;
|
|
23
|
+
onUploadSectionMedia(event: any): void;
|
|
24
|
+
onDeleteSectionMedia(event: any): void;
|
|
25
|
+
onSectionSave(section: ProductSection): void;
|
|
26
|
+
onSectionDelete(section: ProductSection): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductManageSectionsComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductManageSectionsComponent, "rolatech-product-manage-sections", never, {}, {}, never, never, true, never>;
|
|
29
|
+
}
|
package/lib/pages/product-manage/product-manage-variants/product-manage-variants.component.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponent } from '@rolatech/angular-components';
|
|
3
|
+
import { Product, ProductOption } from '../../../interfaces';
|
|
4
|
+
import { ProductService } from '@rolatech/angular-services';
|
|
5
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
6
|
+
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class ProductManageVariantsComponent extends BaseComponent implements OnInit {
|
|
9
|
+
productService: ProductService;
|
|
10
|
+
changeDetectorRefs: ChangeDetectorRef;
|
|
11
|
+
options: import("@angular/core").WritableSignal<ProductOption[]>;
|
|
12
|
+
snackBar: MatSnackBar;
|
|
13
|
+
productPrice: import("@angular/core").ModelSignal<string | undefined>;
|
|
14
|
+
variants: any;
|
|
15
|
+
variantPriceChecked: boolean;
|
|
16
|
+
product: Product;
|
|
17
|
+
loading: boolean;
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
onVariantSlideToggle(event: MatSlideToggleChange): void;
|
|
20
|
+
onInventorySlideToggle(e: MatSlideToggleChange): void;
|
|
21
|
+
saveVariants(): void;
|
|
22
|
+
onUpload(variant: any, data: any): void;
|
|
23
|
+
findVariants(): void;
|
|
24
|
+
getProduct(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductManageVariantsComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProductManageVariantsComponent, "rolatech-product-manage-variants", never, { "productPrice": { "alias": "productPrice"; "required": false; "isSignal": true; }; }, { "productPrice": "productPriceChange"; }, never, never, true, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { BaseService } from '@rolatech/angular-services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ProductCategoryService extends BaseService {
|
|
5
|
+
init(): void;
|
|
6
|
+
uploadMedia(id: string, data: FormData): Observable<any>;
|
|
7
|
+
deleteMedia(id: string, mediaId: string): Observable<any>;
|
|
8
|
+
importFromExcel(data: FormData): Observable<any>;
|
|
9
|
+
createFromExcel(data: any): Observable<any>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProductCategoryService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProductCategoryService>;
|
|
12
|
+
}
|
package/package.json
CHANGED
package/provider.d.ts
ADDED
package/themes/_default.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.text-lg{font-size:1.125rem;line-height:1.75rem}
|
|
1
|
+
.pointer-events-none{pointer-events:none}.visible{visibility:visible}.invisible{visibility:hidden}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.left-0{left:0}.right-0{right:0}.top-0{top:0}.z-20{z-index:20}.z-30{z-index:30}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.-m-1{margin:-.25rem}.m-3{margin:.75rem}.m-auto{margin:auto}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-bottom:.5rem;margin-top:.5rem}.my-3{margin-bottom:.75rem;margin-top:.75rem}.-ml-1{margin-left:-.25rem}.-ml-2{margin-left:-.5rem}.-mt-4{margin-top:-1rem}.mb-0\.5{margin-bottom:.125rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.ml-0{margin-left:0}.ml-1{margin-left:.25rem}.ml-14{margin-left:3.5rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-\[40px\]{margin-left:40px}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-\[6px\]{margin-top:6px}.box-border{box-sizing:border-box}.line-clamp-1{-webkit-line-clamp:1}.line-clamp-1,.line-clamp-4{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical}.line-clamp-4{-webkit-line-clamp:4}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.hidden{display:none}.aspect-video{aspect-ratio:16/9}.h-0{height:0}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-20{height:5rem}.h-24{height:6rem}.h-4{height:1rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[190px\]{height:190px}.h-\[1px\]{height:1px}.h-\[256px\]{height:256px}.h-\[72px\]{height:72px}.h-auto{height:auto}.h-fit{height:-moz-fit-content;height:fit-content}.h-full{height:100%}.max-h-32{max-height:8rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.min-h-10{min-height:2.5rem}.min-h-11{min-height:2.75rem}.min-h-\[28px\]{min-height:28px}.min-h-\[320px\]{min-height:320px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-2\/5{width:40%}.w-20{width:5rem}.w-24{width:6rem}.w-28{width:7rem}.w-3\/5{width:60%}.w-32{width:8rem}.w-36{width:9rem}.w-4{width:1rem}.w-7{width:1.75rem}.w-80{width:20rem}.w-9{width:2.25rem}.w-\[160px\]{width:160px}.w-\[190px\]{width:190px}.w-\[256px\]{width:256px}.w-full{width:100%}.min-w-10{min-width:2.5rem}.min-w-24{min-width:6rem}.min-w-9{min-width:2.25rem}.min-w-\[100px\]{min-width:100px}.min-w-\[240px\]{min-width:240px}.min-w-\[256px\]{min-width:256px}.min-w-\[28px\]{min-width:28px}.min-w-\[320px\]{min-width:320px}.max-w-24{max-width:6rem}.max-w-8{max-width:2rem}.max-w-\[1120px\]{max-width:1120px}.max-w-\[1280px\]{max-width:1280px}.max-w-\[500px\]{max-width:500px}.max-w-full{max-width:100%}.max-w-lg{max-width:32rem}.flex-1{flex:1 1 0%}.grow{flex-grow:1}.scale-90{--tw-scale-x:.9;--tw-scale-y:.9}.scale-90,.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.cursor-pointer{cursor:pointer}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-normal{white-space:normal}.whitespace-pre{white-space:pre}.break-words{overflow-wrap:break-word}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-2{border-width:2px}.border-dashed{border-style:dashed}.border-\[--rt-border-color\]{border-color:var(--rt-border-color)}.border-black{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.bg-\[--rt-10-percent-layer\]{background-color:var(--rt-10-percent-layer)}.bg-\[--rt-20-percent-layer\]{background-color:var(--rt-20-percent-layer)}.bg-\[--rt-badge-chip-background\]{background-color:var(--rt-badge-chip-background)}.bg-\[--rt-base-background-inverse\]{background-color:var(--rt-base-background-inverse)}.bg-\[--rt-base-background\]{background-color:var(--rt-base-background)}.bg-\[--rt-raised-background\]{background-color:var(--rt-raised-background)}.bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.bg-orange-500{--tw-bg-opacity:1;background-color:rgb(249 115 22/var(--tw-bg-opacity))}.bg-orange-600{--tw-bg-opacity:1;background-color:rgb(234 88 12/var(--tw-bg-opacity))}.bg-fixed{background-attachment:fixed}.fill-current{fill:currentColor}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.\!p-1{padding:.25rem!important}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-0{padding-left:0;padding-right:0}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-11{padding-bottom:2.75rem;padding-top:2.75rem}.py-12{padding-bottom:3rem;padding-top:3rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.pl-2{padding-left:.5rem}.pl-4{padding-left:1rem}.pr-2{padding-right:.5rem}.pr-4{padding-right:1rem}.text-center{text-align:center}.text-right{text-align:right}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.italic{font-style:italic}.leading-3{line-height:.75rem}.leading-none{line-height:1}.text-\[--rt-text-primary-inverse\]{color:var(--rt-text-primary-inverse)}.text-\[--rt-text-primary\]{color:var(--rt-text-primary)}.text-\[--rt-text-secondary\]{color:var(--rt-text-secondary)}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.text-orange-400{--tw-text-opacity:1;color:rgb(251 146 60/var(--tw-text-opacity))}.text-orange-500{--tw-text-opacity:1;color:rgb(249 115 22/var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgb(234 88 12/var(--tw-text-opacity))}.text-transparent{color:transparent}.underline{text-decoration-line:underline}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.opacity-80{opacity:.8}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline{outline-style:solid}.outline-4{outline-width:4px}.outline-transparent{outline-color:transparent}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.hover\:bg-\[--rt-10-percent-layer\]:hover{background-color:var(--rt-10-percent-layer)}.hover\:bg-\[--rt-base-background-inverse\]:hover{background-color:var(--rt-base-background-inverse)}.hover\:bg-\[--rt-base-background\]:hover{background-color:var(--rt-base-background)}.hover\:bg-\[--rt-raised-background\]:hover{background-color:var(--rt-raised-background)}.hover\:bg-orange-200:hover{--tw-bg-opacity:1;background-color:rgb(254 215 170/var(--tw-bg-opacity))}.hover\:text-\[--rt-text-primary-inverse\]:hover{color:var(--rt-text-primary-inverse)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.hover\:outline-\[--rt-raised-background\]:hover{outline-color:var(--rt-raised-background)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.group:hover .group-hover\:visible{visibility:visible}@media (min-width:600px){.sm\:w-1\/3{width:33.333333%}}@media (min-width:768px){.md\:visible{visibility:visible}.md\:mb-1{margin-bottom:.25rem}.md\:ml-16{margin-left:4rem}.md\:ml-2{margin-left:.5rem}.md\:mr-0{margin-right:0}.md\:mr-16{margin-right:4rem}.md\:mt-6{margin-top:1.5rem}.md\:line-clamp-2{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.md\:block{display:block}.md\:flex{display:flex}.md\:h-auto{height:auto}.md\:h-full{height:100%}.md\:w-1\/2{width:50%}.md\:w-1\/4{width:25%}.md\:w-3\/4{width:75%}.md\:w-full{width:100%}.md\:flex-row{flex-direction:row}.md\:flex-row-reverse{flex-direction:row-reverse}.md\:flex-col{flex-direction:column}.md\:items-start{align-items:flex-start}.md\:gap-10{gap:2.5rem}.md\:bg-\[--rt-base-background\]{background-color:var(--rt-base-background)}.md\:p-3{padding:.75rem}.md\:px-0{padding-left:0;padding-right:0}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-16{padding-left:4rem;padding-right:4rem}.md\:text-lg{font-size:1.125rem}.md\:text-lg,.md\:text-xl{line-height:1.75rem}.md\:text-xl{font-size:1.25rem}}@media (min-width:1024px){.lg\:w-1\/6{width:16.666667%}.lg\:basis-1\/2{flex-basis:50%}.lg\:flex-row{flex-direction:row}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}}@media (min-width:1280px){.xl\:max-w-\[1024px\]{max-width:1024px}}@media (min-width:1536px){.\32xl\:max-w-\[1280px\]{max-width:1280px}}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class AngularProductComponent {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: AngularProductComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.0", type: AngularProductComponent, isStandalone: true, selector: "lib-angular-product", ngImport: i0, template: "<p>angular-product works!</p>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
7
|
-
}
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: AngularProductComponent, decorators: [{
|
|
9
|
-
type: Component,
|
|
10
|
-
args: [{ selector: 'lib-angular-product', standalone: true, imports: [CommonModule], template: "<p>angular-product works!</p>\n" }]
|
|
11
|
-
}] });
|
|
12
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ndWxhci1wcm9kdWN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci1wcm9kdWN0L3NyYy9saWIvYW5ndWxhci1wcm9kdWN0L2FuZ3VsYXItcHJvZHVjdC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItcHJvZHVjdC9zcmMvbGliL2FuZ3VsYXItcHJvZHVjdC9hbmd1bGFyLXByb2R1Y3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxQyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7O0FBUy9DLE1BQU0sT0FBTyx1QkFBdUI7OEdBQXZCLHVCQUF1QjtrR0FBdkIsdUJBQXVCLCtFQ1ZwQyxpQ0FDQSx5RERLWSxZQUFZOzsyRkFJWCx1QkFBdUI7a0JBUG5DLFNBQVM7K0JBQ0UscUJBQXFCLGNBQ25CLElBQUksV0FDUCxDQUFDLFlBQVksQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLWFuZ3VsYXItcHJvZHVjdCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICB0ZW1wbGF0ZVVybDogJy4vYW5ndWxhci1wcm9kdWN0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmw6ICcuL2FuZ3VsYXItcHJvZHVjdC5jb21wb25lbnQuY3NzJyxcbn0pXG5leHBvcnQgY2xhc3MgQW5ndWxhclByb2R1Y3RDb21wb25lbnQge31cbiIsIjxwPmFuZ3VsYXItcHJvZHVjdCB3b3JrcyE8L3A+XG4iXX0=
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class ProductDetailComponent {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: ProductDetailComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.0", type: ProductDetailComponent, isStandalone: true, selector: "lib-product-detail", ngImport: i0, template: "<p>product-detail works!</p>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
7
|
-
}
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: ProductDetailComponent, decorators: [{
|
|
9
|
-
type: Component,
|
|
10
|
-
args: [{ selector: 'lib-product-detail', standalone: true, imports: [CommonModule], template: "<p>product-detail works!</p>\n" }]
|
|
11
|
-
}] });
|
|
12
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZHVjdC1kZXRhaWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hbmd1bGFyLXByb2R1Y3Qvc3JjL2xpYi9wYWdlcy9wcm9kdWN0L3Byb2R1Y3QtZGV0YWlsL3Byb2R1Y3QtZGV0YWlsLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYW5ndWxhci1wcm9kdWN0L3NyYy9saWIvcGFnZXMvcHJvZHVjdC9wcm9kdWN0LWRldGFpbC9wcm9kdWN0LWRldGFpbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7QUFTL0MsTUFBTSxPQUFPLHNCQUFzQjs4R0FBdEIsc0JBQXNCO2tHQUF0QixzQkFBc0IsOEVDVm5DLGdDQUNBLHlEREtZLFlBQVk7OzJGQUlYLHNCQUFzQjtrQkFQbEMsU0FBUzsrQkFDRSxvQkFBb0IsY0FDbEIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItcHJvZHVjdC1kZXRhaWwnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgdGVtcGxhdGVVcmw6ICcuL3Byb2R1Y3QtZGV0YWlsLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmw6ICcuL3Byb2R1Y3QtZGV0YWlsLmNvbXBvbmVudC5zY3NzJyxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZHVjdERldGFpbENvbXBvbmVudCB7fVxuIiwiPHA+cHJvZHVjdC1kZXRhaWwgd29ya3MhPC9wPlxuIl19
|
package/esm2022/lib/pages/product-manage/product-manage-details/product-manage-details.component.mjs
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class ProductManageDetailsComponent {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: ProductManageDetailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.0", type: ProductManageDetailsComponent, isStandalone: true, selector: "lib-product-manage-details", ngImport: i0, template: "<p>product-manage-details works!</p>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
7
|
-
}
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: ProductManageDetailsComponent, decorators: [{
|
|
9
|
-
type: Component,
|
|
10
|
-
args: [{ selector: 'lib-product-manage-details', standalone: true, imports: [CommonModule], template: "<p>product-manage-details works!</p>\n" }]
|
|
11
|
-
}] });
|
|
12
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZHVjdC1tYW5hZ2UtZGV0YWlscy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItcHJvZHVjdC9zcmMvbGliL3BhZ2VzL3Byb2R1Y3QtbWFuYWdlL3Byb2R1Y3QtbWFuYWdlLWRldGFpbHMvcHJvZHVjdC1tYW5hZ2UtZGV0YWlscy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FuZ3VsYXItcHJvZHVjdC9zcmMvbGliL3BhZ2VzL3Byb2R1Y3QtbWFuYWdlL3Byb2R1Y3QtbWFuYWdlLWRldGFpbHMvcHJvZHVjdC1tYW5hZ2UtZGV0YWlscy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7QUFTL0MsTUFBTSxPQUFPLDZCQUE2Qjs4R0FBN0IsNkJBQTZCO2tHQUE3Qiw2QkFBNkIsc0ZDVjFDLHdDQUNBLHlEREtZLFlBQVk7OzJGQUlYLDZCQUE2QjtrQkFQekMsU0FBUzsrQkFDRSw0QkFBNEIsY0FDMUIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsaWItcHJvZHVjdC1tYW5hZ2UtZGV0YWlscycsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICB0ZW1wbGF0ZVVybDogJy4vcHJvZHVjdC1tYW5hZ2UtZGV0YWlscy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsOiAnLi9wcm9kdWN0LW1hbmFnZS1kZXRhaWxzLmNvbXBvbmVudC5zY3NzJyxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZHVjdE1hbmFnZURldGFpbHNDb21wb25lbnQge31cbiIsIjxwPnByb2R1Y3QtbWFuYWdlLWRldGFpbHMgd29ya3MhPC9wPlxuIl19
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class AngularProductComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AngularProductComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AngularProductComponent, "lib-angular-product", never, {}, {}, never, never, true, never>;
|
|
5
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ProductDetailComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProductDetailComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProductDetailComponent, "lib-product-detail", never, {}, {}, never, never, true, never>;
|
|
5
|
-
}
|
package/lib/pages/product-manage/product-manage-details/product-manage-details.component.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ProductManageDetailsComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProductManageDetailsComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProductManageDetailsComponent, "lib-product-manage-details", never, {}, {}, never, never, true, never>;
|
|
5
|
-
}
|