@orangelogic/design-system 2.58.0 → 2.59.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/library/chunks/{button.kTTrlOjj.js → button.BzVSb2XM.js} +1 -1
- package/library/chunks/{color-swatch-group.ClKQ2WzZ.js → color-swatch-group.CPtcncYO.js} +2 -1
- package/library/chunks/{confirm-popover.CMeOJWvb.js → confirm-popover.v9ZRrdb8.js} +1 -1
- package/library/chunks/{dom.Dc-BF08t.js → dom.C0OFx7ND.js} +1 -1
- package/library/chunks/{file-on-demand.CAxlBbwj.js → file-on-demand.DYbQA7w4.js} +5 -5
- package/library/chunks/{folder-select.DMyWzPjA.js → folder-select.o8y1jeFn.js} +2 -2
- package/library/chunks/{form.D1R9s3Mf.js → form.B8u0ywni.js} +1 -1
- package/library/chunks/{list-editor.Cofa7Vyh.js → list-editor.CH3eeqQN.js} +13 -12
- package/library/chunks/{pagination.Bp5dTjrN.js → pagination.xp4oMgBv.js} +2 -2
- package/library/chunks/{select.D_Ee1gDW.js → select.D0HD0jD8.js} +1 -1
- package/library/chunks/{string.BF2AikHa.js → string.BCk3SmdZ.js} +20 -16
- package/library/chunks/{tab-group.CT6rt4_n.js → tab-group.D5LHQuE6.js} +2 -2
- package/library/chunks/{table.keGRLyqZ.js → table.I4YhmLak.js} +5 -5
- package/library/chunks/{timecode.DE8W5tFV.js → timecode.D7XTiQ_3.js} +1 -1
- package/library/components/asset-link-format.js +2 -2
- package/library/components/atoms.js +6 -6
- package/library/components/button.js +2 -2
- package/library/components/checkbox.js +5 -6
- package/library/components/color-picker.js +2 -2
- package/library/components/color-swatch-group.js +2 -2
- package/library/components/confirm-popover.js +2 -2
- package/library/components/corner-position-input-group.js +1 -1
- package/library/components/dynamic-select.js +2 -2
- package/library/components/element-clamp.js +1 -1
- package/library/components/file-on-demand.js +6 -6
- package/library/components/folder-select.js +2 -2
- package/library/components/input.js +1 -1
- package/library/components/line-clamp.js +1 -1
- package/library/components/list-editor.js +3 -3
- package/library/components/molecules.js +3 -3
- package/library/components/organisms.js +2 -2
- package/library/components/pagination.js +3 -3
- package/library/components/radio-group.js +1 -1
- package/library/components/range.js +1 -1
- package/library/components/select.js +2 -2
- package/library/components/share-option-list.js +1 -1
- package/library/components/size-input-group.js +1 -1
- package/library/components/switch.js +1 -1
- package/library/components/tab-group.js +3 -3
- package/library/components/table.js +4 -4
- package/library/components/textarea.js +1 -1
- package/library/components/timecode.js +2 -2
- package/library/components/types.js +11148 -11143
- package/library/package.json +1 -1
- package/library/packages/organisms/src/carousel/carousel.d.ts +1 -1
- package/library/packages/types/src/table.d.ts +2 -0
- package/library/packages/utils/src/string/string.d.ts +1 -0
- package/package.json +1 -1
package/library/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { CxResizeObserver } from '../../../atoms/src/index.ts';
|
|
2
1
|
import { default as CxDotPagination } from '../../../atoms/src/components/dot-pagination/dot-pagination.ts';
|
|
3
2
|
import { default as CxIcon } from '../../../atoms/src/components/icon/icon.ts';
|
|
4
3
|
import { default as CxPopup } from '../../../atoms/src/components/popup/popup.ts';
|
|
4
|
+
import { default as CxResizeObserver } from '../../../atoms/src/components/resize-observer/resize-observer.ts';
|
|
5
5
|
import { default as CxTooltip } from '../../../atoms/src/components/tooltip/tooltip.ts';
|
|
6
6
|
import { default as CortexElement } from '../../../base/src/cortex-element.ts';
|
|
7
7
|
import { default as CxGalleryItem } from '../../../molecules/src/gallery-item/gallery-item.ts';
|
|
@@ -321,6 +321,8 @@ export interface IRowComponent {
|
|
|
321
321
|
getNextRow(): IRowComponent | false;
|
|
322
322
|
getPrevRow(): IRowComponent | false;
|
|
323
323
|
toggleSelect?: () => void;
|
|
324
|
+
select?: () => void;
|
|
325
|
+
deselect?: () => void;
|
|
324
326
|
isSelected?: () => boolean;
|
|
325
327
|
}
|
|
326
328
|
export interface IRow extends ICoreFeature {
|
|
@@ -116,5 +116,6 @@ export declare function padPath(path: string): string;
|
|
|
116
116
|
export declare function formatTimeToSeconds(timeString: string, options?: TimeFormatOptions): number;
|
|
117
117
|
export declare function extractExtension(filename: string): string | null;
|
|
118
118
|
export declare function sanitizeHTML(html: string): string;
|
|
119
|
+
export declare function safeString(value: any): string;
|
|
119
120
|
export declare function emptyToSpace(value: any): string;
|
|
120
121
|
export declare function isGalleryItemCardType(value: unknown): value is GalleryItemCardType;
|