@ngrdt/utils 0.0.90 → 0.0.92
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/index.d.ts +5 -1
- 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 };
|