rd-outer-component 0.1.12 → 0.1.14

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.
Files changed (20) hide show
  1. package/esm2020/lib/modules/custom-date/custom-date.component.mjs +2 -2
  2. package/esm2020/lib/modules/custom-filter/custom-filter-date/custom-filter-date.component.mjs +26 -4
  3. package/esm2020/lib/modules/custom-filter/custom-filter-input/custom-filter-input.component.mjs +2 -2
  4. package/esm2020/lib/modules/custom-filter/custom-filter-select/custom-filter-select.component.mjs +2 -2
  5. package/esm2020/lib/modules/custom-filter/custom-filter.component.mjs +2 -2
  6. package/esm2020/lib/modules/custom-input/custom-input.component.mjs +2 -2
  7. package/esm2020/lib/modules/custom-input-amount/custom-input-amount.component.mjs +2 -2
  8. package/esm2020/lib/modules/custom-pagination/paginator.component.mjs +2 -2
  9. package/esm2020/lib/modules/custom-select/pure-select-token/pure-select-token.component.mjs +2 -2
  10. package/esm2020/lib/modules/custom-select/rd-select.component.mjs +2 -2
  11. package/esm2020/lib/modules/custom-textarea/custom-textarea.component.mjs +2 -2
  12. package/esm2020/lib/modules/rd-remark-history/rd-remark-history.component.mjs +2 -2
  13. package/esm2020/lib/modules/rd-select-value/rd-select-value.component.mjs +2 -2
  14. package/fesm2015/rd-outer-component.mjs +48 -26
  15. package/fesm2015/rd-outer-component.mjs.map +1 -1
  16. package/fesm2020/rd-outer-component.mjs +48 -26
  17. package/fesm2020/rd-outer-component.mjs.map +1 -1
  18. package/lib/modules/custom-filter/custom-filter-date/custom-filter-date.component.d.ts +5 -1
  19. package/package.json +1 -1
  20. package/src/lib/assets/scss/form-item.scss +1 -0
@@ -10,11 +10,15 @@ export declare class RdFilterDateComponent implements OnChanges {
10
10
  handleChangeValue: EventEmitter<any>;
11
11
  isPickerOpen: boolean;
12
12
  inputValue: Date[];
13
+ theme?: 'light' | 'dark';
14
+ get hostThemeLight(): boolean;
15
+ get hostThemeDark(): boolean;
13
16
  disabledDate: (current: Date) => boolean;
14
17
  ngOnChanges(changes: SimpleChanges): void;
15
18
  openPicker(): void;
16
19
  onDateChange(dates: Date[]): void;
17
20
  onOpenChange(open: any): void;
21
+ get popupClassName(): string;
18
22
  static ɵfac: i0.ɵɵFactoryDeclaration<RdFilterDateComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<RdFilterDateComponent, "app-rd-filter-date", never, { "item": "item"; }, { "handleChangeValue": "handleChangeValue"; }, never, never, false, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<RdFilterDateComponent, "app-rd-filter-date", never, { "item": "item"; "theme": "theme"; }, { "handleChangeValue": "handleChangeValue"; }, never, never, false, never>;
20
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rd-outer-component",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "15.2.10",
6
6
  "@angular/core": "15.2.10",
@@ -146,6 +146,7 @@ textarea[disabled] {
146
146
  font-weight: 600;
147
147
  line-height: 48px;
148
148
  color: var(--rd-copy-primary);
149
+ background-color: var(--rd-input-bg-default);
149
150
  border: none;
150
151
  padding: 4px 0;
151
152