@ngrdt/utils 0.0.91 → 0.0.93

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 (2) hide show
  1. package/index.d.ts +5 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -234,6 +234,10 @@ interface AriaAttributes {
234
234
  }
235
235
  type AriaRole = 'alert' | 'alertdialog' | 'application' | 'article' | 'banner' | 'button' | 'cell' | 'checkbox' | 'columnheader' | 'combobox' | 'complementary' | 'contentinfo' | 'definition' | 'dialog' | 'directory' | 'document' | 'feed' | 'figure' | 'form' | 'grid' | 'gridcell' | 'group' | 'heading' | 'img' | 'link' | 'list' | 'listbox' | 'listitem' | 'log' | 'main' | 'marquee' | 'math' | 'menu' | 'menubar' | 'menuitem' | 'menuitemcheckbox' | 'menuitemradio' | 'navigation' | 'none' | 'note' | 'option' | 'presentation' | 'progressbar' | 'radio' | 'radiogroup' | 'region' | 'row' | 'rowgroup' | 'rowheader' | 'scrollbar' | 'search' | 'searchbox' | 'separator' | 'slider' | 'spinbutton' | 'status' | 'switch' | 'tab' | 'table' | 'tablist' | 'tabpanel' | 'term' | 'textbox' | 'timer' | 'toolbar' | 'tooltip' | 'tree' | 'treegrid' | 'treeitem' | (string & {});
236
236
 
237
+ type RdtCssAbsoluteSize = `${number}px` | `${number}rem` | `${number}em` | `${number}vw` | `${number}vh` | `${number}%` | number;
238
+ type RdtCssVariableSize = `var(--${string})`;
239
+ type RdtCssSize = RdtCssAbsoluteSize | RdtCssVariableSize;
240
+
237
241
  declare enum RdtEncoding {
238
242
  UTF_8 = "utf-8",
239
243
  IBM_866 = "ibm866",
@@ -748,4 +752,4 @@ declare class RdtStringUtils {
748
752
  }
749
753
 
750
754
  export { ALPHABET_KB_KEYS, ARROW, EXTENSION_BY_MIME_TYPE, KB_ALPHABET_CODES, KB_CODE, KB_KEY, MIME_TYPE_BY_EXTENSION, Month, PRIMENG_DATE_FORMAT_META, RDT_DEFAULT_MIME_TYPE, RDT_DEFAULT_MS_OFFICE_ACTION, RdtArrayUtils, RdtCombinedMimeType, RdtCssUtils, RdtDateParser, RdtDateUtils, RdtDomUtils, RdtEncoding, RdtFileSizeUnit, RdtFileUtils, RdtHTMLUtils, RdtInsertMode, RdtLeadingZeroInputMode, RdtMimeType, RdtModelUtils, RdtMsOfficeAction, RdtMsOfficeApp, RdtObjectUtils, RdtPasteMode, RdtRandomUtils, RdtRxUtils, RdtStringUtils, RdtYearInputMode, signalToPromise, signalToPromiseOnce };
751
- export type { AllEncodingAliases, AriaAttributes, AriaRole, DokumentProtokol, DotNotationPath, Modify, NullPartial, Nullable, RdtBaseFormInputComponentInputsInt, RdtDateInputConfig, RdtFile, RdtFileSize, RdtHorizontalDirection, RdtModelProperty, RdtMsOfficeConfig, RdtRgbColor, RdtTwoDigitYearInputConversionStrategy, RdtVerticalDirection, StringKey, TypesAreEqual, WindowOpenTargetType };
755
+ export type { AllEncodingAliases, AriaAttributes, AriaRole, DokumentProtokol, DotNotationPath, Modify, NullPartial, Nullable, RdtBaseFormInputComponentInputsInt, RdtCssAbsoluteSize, RdtCssSize, RdtCssVariableSize, RdtDateInputConfig, RdtFile, RdtFileSize, RdtHorizontalDirection, RdtModelProperty, RdtMsOfficeConfig, RdtRgbColor, RdtTwoDigitYearInputConversionStrategy, RdtVerticalDirection, StringKey, TypesAreEqual, WindowOpenTargetType };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngrdt/utils",
3
- "version": "0.0.91",
3
+ "version": "0.0.93",
4
4
  "peerDependencies": {
5
5
  "rxjs": ">=7.0.0",
6
6
  "@angular/common": ">=20.0.0",