@sme.up/ketchup2 2.4.0 → 2.5.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/dist/assets/svg/check_box.svg +1 -0
- package/dist/assets/svg/check_box_outline_blank.svg +1 -0
- package/dist/basic-components/autocomplete/autocomplete.d.ts.map +1 -1
- package/dist/basic-components/barcode/barcode-types.d.ts +13 -2
- package/dist/basic-components/barcode/barcode-types.d.ts.map +1 -1
- package/dist/basic-components/barcode/barcode.d.ts.map +1 -1
- package/dist/basic-components/barcode-generator/barcode-generator-types.d.ts +38 -0
- package/dist/basic-components/barcode-generator/barcode-generator-types.d.ts.map +1 -0
- package/dist/basic-components/barcode-generator/barcode-generator-utils.d.ts +6 -0
- package/dist/basic-components/barcode-generator/barcode-generator-utils.d.ts.map +1 -0
- package/dist/basic-components/barcode-generator/barcode-generator.d.ts +3 -0
- package/dist/basic-components/barcode-generator/barcode-generator.d.ts.map +1 -0
- package/dist/basic-components/checkbox/checkbox.d.ts.map +1 -1
- package/dist/basic-components/date-picker/date-picker-calendar/date-picker-calendar.d.ts +4 -1
- package/dist/basic-components/date-picker/date-picker-calendar/date-picker-calendar.d.ts.map +1 -1
- package/dist/basic-components/date-picker/date-picker.d.ts.map +1 -1
- package/dist/basic-components/qr-code/corners/qr-code-corner-utils.d.ts +3 -3
- package/dist/basic-components/qr-code/corners/qr-code-corner-utils.d.ts.map +1 -1
- package/dist/basic-components/qr-code/corners/qr-code-corner.d.ts +4 -5
- package/dist/basic-components/qr-code/corners/qr-code-corner.d.ts.map +1 -1
- package/dist/basic-components/qr-code/qr-code-renderer.d.ts +3 -3
- package/dist/basic-components/qr-code/qr-code-renderer.d.ts.map +1 -1
- package/dist/basic-components/qr-code/qr-code-types.d.ts +23 -59
- package/dist/basic-components/qr-code/qr-code-types.d.ts.map +1 -1
- package/dist/basic-components/qr-code/qr-code.d.ts +2 -3
- package/dist/basic-components/qr-code/qr-code.d.ts.map +1 -1
- package/dist/basic-components/textfield/textfield-types.d.ts +1 -1
- package/dist/basic-components/textfield/textfield-types.d.ts.map +1 -1
- package/dist/components/input-panel/assets/data.d.ts.map +1 -1
- package/dist/components/input-panel/input-panel.d.ts.map +1 -1
- package/dist/index.d.ts +90 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/ketchup2.cjs.js +102 -101
- package/dist/ketchup2.css +1 -1
- package/dist/ketchup2.es.js +22269 -20569
- package/dist/locale/en/translation.json.d.ts +11 -2
- package/dist/locale/it/translation.json.d.ts +11 -2
- package/dist/types/translation.d.ts +12 -3
- package/dist/types/translation.d.ts.map +1 -1
- package/package.json +4 -1
- package/dist/basic-components/qr-code/qr-code-helpers.d.ts +0 -15
- package/dist/basic-components/qr-code/qr-code-helpers.d.ts.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zM20 34L10 24l2.83-2.83L20 28.34l15.17-15.17L38 16 20 34z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M38 10v28H10V10h28m0-4H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autocomplete.d.ts","sourceRoot":"","sources":["../../../src/basic-components/autocomplete/autocomplete.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAA;AAgBxD,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,
|
|
1
|
+
{"version":3,"file":"autocomplete.d.ts","sourceRoot":"","sources":["../../../src/basic-components/autocomplete/autocomplete.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAA;AAgBxD,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAmUpD,CAAA"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
|
+
import { BooleanValue } from '../../types/legacy';
|
|
2
|
+
import { BarcodeGeneratorType } from '../barcode-generator/barcode-generator-types';
|
|
1
3
|
import { StringCellBindProps } from '../cell/cell-types';
|
|
2
4
|
export interface BarcodeProps extends StringCellBindProps {
|
|
3
5
|
/**
|
|
4
6
|
* The type of code to display when BCD is not editable
|
|
5
7
|
*/
|
|
6
|
-
BcdTyp?:
|
|
8
|
+
BcdTyp?: BarcodeGeneratorType | "qr";
|
|
9
|
+
/**
|
|
10
|
+
* Automatically submits received code after a scan
|
|
11
|
+
*/
|
|
12
|
+
BcdSbm?: BooleanValue;
|
|
13
|
+
/**
|
|
14
|
+
* Barcode forced editability
|
|
15
|
+
*/
|
|
16
|
+
BcdEdt?: BooleanValue;
|
|
7
17
|
/**
|
|
8
18
|
* Called when the user activates the barcode scanner button.
|
|
9
19
|
* The web app is responsible for opening the scanner and calling the provided
|
|
@@ -12,5 +22,6 @@ export interface BarcodeProps extends StringCellBindProps {
|
|
|
12
22
|
onBarcodeScanRequest?: BarcodeScanRequestHandler;
|
|
13
23
|
}
|
|
14
24
|
export type BarcodeScanRequestHandler = (cellId: string) => Promise<string>;
|
|
15
|
-
export
|
|
25
|
+
export declare const barcodeOrientation: readonly ["0", "90", "180", "270"];
|
|
26
|
+
export type BarcodeOrientation = (typeof barcodeOrientation)[number];
|
|
16
27
|
//# sourceMappingURL=barcode-types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"barcode-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/barcode/barcode-types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AAExD,MAAM,WAAW,YAAa,SAAQ,mBAAmB;IACvD;;OAEG;IACH,MAAM,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"barcode-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/barcode/barcode-types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAA;AACnF,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AAExD,MAAM,WAAW,YAAa,SAAQ,mBAAmB;IACvD;;OAEG;IACH,MAAM,CAAC,EAAE,oBAAoB,GAAG,IAAI,CAAA;IACpC;;OAEG;IACH,MAAM,CAAC,EAAE,YAAY,CAAA;IACrB;;OAEG;IACH,MAAM,CAAC,EAAE,YAAY,CAAA;IACrB;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,yBAAyB,CAAA;CACjD;AAED,MAAM,MAAM,yBAAyB,GAAG,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAA;AAE3E,eAAO,MAAM,kBAAkB,oCAAqC,CAAA;AACpE,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"barcode.d.ts","sourceRoot":"","sources":["../../../src/basic-components/barcode/barcode.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;
|
|
1
|
+
{"version":3,"file":"barcode.d.ts","sourceRoot":"","sources":["../../../src/basic-components/barcode/barcode.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAQ9C,eAAO,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAqE1C,CAAA"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { BarcodeOrientation } from '../barcode/barcode-types';
|
|
2
|
+
export interface BarcodeGeneratorProps {
|
|
3
|
+
/**
|
|
4
|
+
* The data string to encode in the barcode.
|
|
5
|
+
*/
|
|
6
|
+
value: string;
|
|
7
|
+
/**
|
|
8
|
+
* Barcode type
|
|
9
|
+
*/
|
|
10
|
+
BcdTyp: BarcodeGeneratorType;
|
|
11
|
+
/**
|
|
12
|
+
* Orientation of the barcode (anti clockwise)
|
|
13
|
+
*/
|
|
14
|
+
BcdOri?: BarcodeOrientation;
|
|
15
|
+
/**
|
|
16
|
+
* Width of the single barcode lines
|
|
17
|
+
*/
|
|
18
|
+
BcdWdt?: number;
|
|
19
|
+
/**
|
|
20
|
+
* Height of the single barcode lines
|
|
21
|
+
*/
|
|
22
|
+
BcdHgt?: number;
|
|
23
|
+
/**
|
|
24
|
+
* If set to true, the code under the barcode is displayed
|
|
25
|
+
*/
|
|
26
|
+
BcdTxt?: boolean;
|
|
27
|
+
}
|
|
28
|
+
export declare const barcodeGeneratorType: readonly ["code39", "code128", "codabar", "ean8", "ean13", "postnet", "int2of5", "isbn"];
|
|
29
|
+
export type BarcodeGeneratorType = (typeof barcodeGeneratorType)[number];
|
|
30
|
+
export interface BarcodeData {
|
|
31
|
+
binary: string;
|
|
32
|
+
text: string;
|
|
33
|
+
}
|
|
34
|
+
export interface BarcodeEncodingResult {
|
|
35
|
+
data?: BarcodeData;
|
|
36
|
+
error?: string;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=barcode-generator-types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"barcode-generator-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/barcode-generator/barcode-generator-types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAA;AAE7D,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,MAAM,EAAE,oBAAoB,CAAA;IAC5B;;OAEG;IACH,MAAM,CAAC,EAAE,kBAAkB,CAAA;IAC3B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB;AAED,eAAO,MAAM,oBAAoB,0FASvB,CAAA;AACV,MAAM,MAAM,oBAAoB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAA;AAExE,MAAM,WAAW,WAAW;IAC1B,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,qBAAqB;IACpC,IAAI,CAAC,EAAE,WAAW,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;CACf"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Messages, MessageVariables } from '../../types/translation';
|
|
2
|
+
import { BarcodeOrientation } from '../barcode/barcode-types';
|
|
3
|
+
import { BarcodeEncodingResult, BarcodeGeneratorType } from './barcode-generator-types';
|
|
4
|
+
export declare function encodeBarcode(type: BarcodeGeneratorType, code: string, translate: (message: Messages, options?: MessageVariables) => string): BarcodeEncodingResult;
|
|
5
|
+
export declare const computeOrientationTransform: (BcdOri: BarcodeOrientation, calculatedWidth: number, height: number) => string | undefined;
|
|
6
|
+
//# sourceMappingURL=barcode-generator-utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"barcode-generator-utils.d.ts","sourceRoot":"","sources":["../../../src/basic-components/barcode-generator/barcode-generator-utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,QAAQ,EACR,gBAAgB,EACjB,MAAM,yBAAyB,CAAA;AAChC,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAA;AAC7D,OAAO,EAEL,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,2BAA2B,CAAA;AA2dlC,wBAAgB,aAAa,CAC3B,IAAI,EAAE,oBAAoB,EAC1B,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAE,gBAAgB,KAAK,MAAM,GACnE,qBAAqB,CAqCvB;AAKD,eAAO,MAAM,2BAA2B,GACtC,QAAQ,kBAAkB,EAC1B,iBAAiB,MAAM,EACvB,QAAQ,MAAM,KACb,MAAM,GAAG,SAgBX,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"barcode-generator.d.ts","sourceRoot":"","sources":["../../../src/basic-components/barcode-generator/barcode-generator.tsx"],"names":[],"mappings":"AAKA,OAAO,EAEL,qBAAqB,EACtB,MAAM,2BAA2B,CAAA;AAIlC,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAqG5D,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/basic-components/checkbox/checkbox.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;
|
|
1
|
+
{"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/basic-components/checkbox/checkbox.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAKhD,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CA8E5C,CAAA"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Ref } from 'react';
|
|
2
|
+
export interface DatePickerCalendarHandle {
|
|
3
|
+
handleKeyDown: (e: React.KeyboardEvent) => boolean;
|
|
4
|
+
}
|
|
2
5
|
interface DatePickerProps {
|
|
3
6
|
readonly selectedDate?: Date;
|
|
4
7
|
readonly onDateChange?: (date: string) => void;
|
|
@@ -9,6 +12,6 @@ interface DatePickerProps {
|
|
|
9
12
|
readonly initialValue?: string;
|
|
10
13
|
readonly targetRef?: Ref<HTMLElement | null>;
|
|
11
14
|
}
|
|
12
|
-
export declare
|
|
15
|
+
export declare const DatePickerCalendar: import('react').ForwardRefExoticComponent<DatePickerProps & import('react').RefAttributes<DatePickerCalendarHandle>>;
|
|
13
16
|
export {};
|
|
14
17
|
//# sourceMappingURL=date-picker-calendar.d.ts.map
|
package/dist/basic-components/date-picker/date-picker-calendar/date-picker-calendar.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-picker-calendar.d.ts","sourceRoot":"","sources":["../../../../src/basic-components/date-picker/date-picker-calendar/date-picker-calendar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,
|
|
1
|
+
{"version":3,"file":"date-picker-calendar.d.ts","sourceRoot":"","sources":["../../../../src/basic-components/date-picker/date-picker-calendar/date-picker-calendar.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAsD,MAAM,OAAO,CAAA;AAc/E,MAAM,WAAW,wBAAwB;IACvC,aAAa,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,aAAa,KAAK,OAAO,CAAA;CACnD;AAED,UAAU,eAAe;IACvB,QAAQ,CAAC,YAAY,CAAC,EAAE,IAAI,CAAA;IAC5B,QAAQ,CAAC,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAC9C,QAAQ,CAAC,kBAAkB,CAAC,EAAE,KAAK,CAAC;QAClC,KAAK,EAAE,IAAI,CAAA;QACX,GAAG,EAAE,IAAI,CAAA;KACV,CAAC,CAAA;IACF,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,SAAS,CAAC,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;CAC7C;AAED,eAAO,MAAM,kBAAkB,sHA6hB9B,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-picker.d.ts","sourceRoot":"","sources":["../../../src/basic-components/date-picker/date-picker.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"date-picker.d.ts","sourceRoot":"","sources":["../../../src/basic-components/date-picker/date-picker.tsx"],"names":[],"mappings":"AAUA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AAKrD,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAoNhD,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare function cornerDotPath(x: number, y: number, size: number, style:
|
|
3
|
-
export declare function cornerSquarePath(x: number, y: number, size: number, style:
|
|
1
|
+
import { QrCodeRoundingStyle } from '../qr-code-types';
|
|
2
|
+
export declare function cornerDotPath(x: number, y: number, size: number, style: QrCodeRoundingStyle): string;
|
|
3
|
+
export declare function cornerSquarePath(x: number, y: number, size: number, style: QrCodeRoundingStyle): string;
|
|
4
4
|
//# sourceMappingURL=qr-code-corner-utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qr-code-corner-utils.d.ts","sourceRoot":"","sources":["../../../../src/basic-components/qr-code/corners/qr-code-corner-utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"qr-code-corner-utils.d.ts","sourceRoot":"","sources":["../../../../src/basic-components/qr-code/corners/qr-code-corner-utils.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAEtD,wBAAgB,aAAa,CAC3B,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,mBAAmB,GACzB,MAAM,CAeR;AAED,wBAAgB,gBAAgB,CAC9B,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,mBAAmB,GACzB,MAAM,CA0BR"}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
import { CornerDotStyle, CornerSquareStyle } from '../qr-code-types';
|
|
2
1
|
import { JSX } from 'react';
|
|
2
|
+
import { QrCodeRoundingStyle } from '../qr-code-types';
|
|
3
3
|
export interface QRCornerProps {
|
|
4
4
|
readonly x: number;
|
|
5
5
|
readonly y: number;
|
|
6
6
|
readonly moduleSize: number;
|
|
7
|
-
readonly
|
|
7
|
+
readonly style: QrCodeRoundingStyle;
|
|
8
8
|
readonly squareColor: string;
|
|
9
|
-
readonly
|
|
10
|
-
readonly dotColor: string;
|
|
9
|
+
readonly QrDotCol: string;
|
|
11
10
|
}
|
|
12
|
-
export declare function QRCorner({ x, y, moduleSize,
|
|
11
|
+
export declare function QRCorner({ x, y, moduleSize, style, squareColor, QrDotCol, }: QRCornerProps): JSX.Element;
|
|
13
12
|
//# sourceMappingURL=qr-code-corner.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qr-code-corner.d.ts","sourceRoot":"","sources":["../../../../src/basic-components/qr-code/corners/qr-code-corner.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,
|
|
1
|
+
{"version":3,"file":"qr-code-corner.d.ts","sourceRoot":"","sources":["../../../../src/basic-components/qr-code/corners/qr-code-corner.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAE3B,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAEtD,MAAM,WAAW,aAAa;IAC5B,QAAQ,CAAC,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAC3B,QAAQ,CAAC,KAAK,EAAE,mBAAmB,CAAA;IACnC,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAC5B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;CAC1B;AAED,wBAAgB,QAAQ,CAAC,EACvB,CAAC,EACD,CAAC,EACD,UAAU,EACV,KAAK,EACL,WAAW,EACX,QAAQ,GACT,EAAE,aAAa,GAAG,GAAG,CAAC,OAAO,CAmB7B"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { QrCodeRoundingStyle, DotNeighbors, FinderPatternInfo } from './qr-code-types';
|
|
2
2
|
export declare function squarePath(x: number, y: number, s: number): string;
|
|
3
|
-
export declare function dotPath(x: number, y: number, s: number, style:
|
|
3
|
+
export declare function dotPath(x: number, y: number, s: number, style: QrCodeRoundingStyle, neighbors?: DotNeighbors): string;
|
|
4
4
|
export declare function moduleToPixel(moduleIndex: number, moduleSize: number, margin: number): number;
|
|
5
5
|
export declare function getFinderPatternModules(size: number): Set<number>;
|
|
6
|
-
export declare function renderDataModules(matrix: boolean[][], moduleSize: number, marginPx: number,
|
|
6
|
+
export declare function renderDataModules(matrix: boolean[][], moduleSize: number, marginPx: number, QrDotSty: QrCodeRoundingStyle): string[];
|
|
7
7
|
export declare function getFinderPatterns(size: number, moduleSize: number, marginPx: number): FinderPatternInfo[];
|
|
8
8
|
//# sourceMappingURL=qr-code-renderer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qr-code-renderer.d.ts","sourceRoot":"","sources":["../../../src/basic-components/qr-code/qr-code-renderer.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"qr-code-renderer.d.ts","sourceRoot":"","sources":["../../../src/basic-components/qr-code/qr-code-renderer.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EACV,mBAAmB,EACnB,YAAY,EACZ,iBAAiB,EAClB,MAAM,iBAAiB,CAAA;AAExB,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAElE;AAyBD,wBAAgB,OAAO,CACrB,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,CAAC,EAAE,MAAM,EACT,KAAK,EAAE,mBAAmB,EAC1B,SAAS,CAAC,EAAE,YAAY,GACvB,MAAM,CA6BR;AAED,wBAAgB,aAAa,CAC3B,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,EAClB,MAAM,EAAE,MAAM,GACb,MAAM,CAER;AAED,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,CAmBjE;AAED,wBAAgB,iBAAiB,CAC/B,MAAM,EAAE,OAAO,EAAE,EAAE,EACnB,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,mBAAmB,GAC5B,MAAM,EAAE,CA4BV;AAED,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,MAAM,EACZ,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,GACf,iBAAiB,EAAE,CAWrB"}
|
|
@@ -1,29 +1,4 @@
|
|
|
1
|
-
import { CSSProperties
|
|
2
|
-
/**
|
|
3
|
-
* Configuration for the optional logo/image rendered at the center of the QR code.
|
|
4
|
-
*/
|
|
5
|
-
export interface QRCodeLogoOptions {
|
|
6
|
-
/**
|
|
7
|
-
* URL of the logo image (validated against unsafe schemes).
|
|
8
|
-
*/
|
|
9
|
-
src?: string;
|
|
10
|
-
/**
|
|
11
|
-
* React element to render as logo instead of an image URL.
|
|
12
|
-
*/
|
|
13
|
-
element?: ReactNode;
|
|
14
|
-
/**
|
|
15
|
-
* Logo size as a ratio (0–1) of the maximum safe area for the chosen EC level.
|
|
16
|
-
*/
|
|
17
|
-
size?: number;
|
|
18
|
-
/**
|
|
19
|
-
* Pixel margin around the logo inside its bounding box.
|
|
20
|
-
*/
|
|
21
|
-
margin?: number;
|
|
22
|
-
/**
|
|
23
|
-
* Whether to mask (hide) QR modules behind the logo. Defaults to true.
|
|
24
|
-
*/
|
|
25
|
-
hideDots?: boolean;
|
|
26
|
-
}
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
27
2
|
/**
|
|
28
3
|
* Props for the QRCode component.
|
|
29
4
|
*/
|
|
@@ -32,10 +7,18 @@ export interface QRCodeProps {
|
|
|
32
7
|
* The data string to encode in the QR code.
|
|
33
8
|
*/
|
|
34
9
|
value: string;
|
|
10
|
+
/**
|
|
11
|
+
* Optional logo/image to overlay at the center.
|
|
12
|
+
*/
|
|
13
|
+
icon?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Color of the qrcode central icon.
|
|
16
|
+
*/
|
|
17
|
+
QrIcoCol?: string;
|
|
35
18
|
/**
|
|
36
19
|
* Rendered pixel size (width & height) of the SVG.
|
|
37
20
|
*/
|
|
38
|
-
|
|
21
|
+
QrSize?: number;
|
|
39
22
|
/**
|
|
40
23
|
* Quiet-zone margin in module units around the QR grid.
|
|
41
24
|
*/
|
|
@@ -43,30 +26,29 @@ export interface QRCodeProps {
|
|
|
43
26
|
/**
|
|
44
27
|
* Visual style applied to each data dot (square, circle, rounded).
|
|
45
28
|
*/
|
|
46
|
-
|
|
29
|
+
QrDotSty?: QrCodeRoundingStyle;
|
|
47
30
|
/**
|
|
48
31
|
* Fill color for data modules. Defaults to the --smp-qrcode-color-dot CSS variable.
|
|
49
32
|
*/
|
|
50
|
-
|
|
33
|
+
QrDotCol?: string;
|
|
51
34
|
/**
|
|
52
35
|
* SVG background fill. Defaults to the --smp-qrcode-backgroundColor CSS variable.
|
|
53
36
|
*/
|
|
54
|
-
|
|
37
|
+
QrBgCol?: string;
|
|
55
38
|
/**
|
|
56
|
-
* Styling overrides for the three
|
|
39
|
+
* Styling overrides for the three qrcode corners.
|
|
57
40
|
*/
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
cornerSquareColor?: string;
|
|
41
|
+
QrCStyle?: QrCodeRoundingStyle;
|
|
42
|
+
QrCDCol?: string;
|
|
43
|
+
QrCSCol?: string;
|
|
62
44
|
/**
|
|
63
|
-
*
|
|
45
|
+
* QR encoding options (version, error correction level).
|
|
64
46
|
*/
|
|
65
|
-
|
|
47
|
+
QrEcLvl?: ErrorCorrectionLevel;
|
|
66
48
|
/**
|
|
67
|
-
* QR
|
|
49
|
+
* QR version number
|
|
68
50
|
*/
|
|
69
|
-
|
|
51
|
+
QrVer?: number;
|
|
70
52
|
/**
|
|
71
53
|
* CSS class applied to the root SVG element.
|
|
72
54
|
*/
|
|
@@ -80,30 +62,12 @@ export interface QRCodeProps {
|
|
|
80
62
|
*/
|
|
81
63
|
ariaLabel?: string;
|
|
82
64
|
}
|
|
83
|
-
export declare const
|
|
84
|
-
export declare const cornerDotStyles: readonly ["square", "rounded", "circle"];
|
|
85
|
-
export declare const cornerSquareStyles: readonly ["square", "rounded", "extra-rounded", "circle"];
|
|
65
|
+
export declare const qrCodeRoundingStyle: readonly ["square", "rounded", "circle"];
|
|
86
66
|
export declare const errorCorrectionLevels: readonly ["L", "M", "Q", "H"];
|
|
87
67
|
export declare const encodingModes: readonly ["numeric", "alphanumeric", "byte"];
|
|
88
|
-
export type
|
|
89
|
-
export type CornerDotStyle = (typeof cornerDotStyles)[number];
|
|
90
|
-
export type CornerSquareStyle = (typeof cornerSquareStyles)[number];
|
|
68
|
+
export type QrCodeRoundingStyle = (typeof qrCodeRoundingStyle)[number];
|
|
91
69
|
export type ErrorCorrectionLevel = (typeof errorCorrectionLevels)[number];
|
|
92
70
|
export type EncodingMode = (typeof encodingModes)[number];
|
|
93
|
-
export interface CornerOptions {
|
|
94
|
-
dot?: {
|
|
95
|
-
style?: CornerDotStyle;
|
|
96
|
-
color?: string;
|
|
97
|
-
};
|
|
98
|
-
square?: {
|
|
99
|
-
style?: CornerSquareStyle;
|
|
100
|
-
color?: string;
|
|
101
|
-
};
|
|
102
|
-
}
|
|
103
|
-
export interface QROptions {
|
|
104
|
-
errorCorrectionLevel?: ErrorCorrectionLevel;
|
|
105
|
-
version?: number;
|
|
106
|
-
}
|
|
107
71
|
export interface QRMatrixResult {
|
|
108
72
|
matrix: boolean[][];
|
|
109
73
|
version: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qr-code-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/qr-code/qr-code-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"qr-code-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/qr-code/qr-code-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAE1C;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;;OAEG;IACH,QAAQ,CAAC,EAAE,mBAAmB,CAAA;IAC9B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB;;OAEG;IACH,QAAQ,CAAC,EAAE,mBAAmB,CAAA;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,oBAAoB,CAAA;IAC9B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAGD,eAAO,MAAM,mBAAmB,0CAA2C,CAAA;AAC3E,eAAO,MAAM,qBAAqB,+BAAgC,CAAA;AAClE,eAAO,MAAM,aAAa,8CAA+C,CAAA;AAGzE,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,CAAC,CAAA;AACtE,MAAM,MAAM,oBAAoB,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAA;AACzE,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAA;AAEzD,MAAM,WAAW,cAAc;IAC7B,MAAM,EAAE,OAAO,EAAE,EAAE,CAAA;IACnB,OAAO,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,OAAO,CAAA;IACZ,KAAK,EAAE,OAAO,CAAA;IACd,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,EAAE,OAAO,CAAA;CACd;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,MAAM,CAAA;IACT,CAAC,EAAE,MAAM,CAAA;CACV"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { QRCodeProps } from './qr-code-types';
|
|
2
2
|
/**
|
|
3
|
-
* QRCode — Renders a QR code as an inline SVG with optional
|
|
4
|
-
* Supports customizable dot/corner styles
|
|
5
|
-
* and logo aspect-ratio detection.
|
|
3
|
+
* QRCode — Renders a QR code as an inline SVG with optional icon overlay.
|
|
4
|
+
* Supports customizable dot/corner styles and error correction level.
|
|
6
5
|
*/
|
|
7
6
|
export declare const QRCode: React.FC<QRCodeProps>;
|
|
8
7
|
//# sourceMappingURL=qr-code.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"qr-code.d.ts","sourceRoot":"","sources":["../../../src/basic-components/qr-code/qr-code.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"qr-code.d.ts","sourceRoot":"","sources":["../../../src/basic-components/qr-code/qr-code.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAYlD;;;GAGG;AACH,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAkHxC,CAAA"}
|
|
@@ -31,7 +31,7 @@ export interface TextfieldProps extends StringCellBindProps {
|
|
|
31
31
|
*/
|
|
32
32
|
inputRef?: React.Ref<HTMLInputElement>;
|
|
33
33
|
onShapeIconClick?: () => void;
|
|
34
|
-
onKeyDown?: (e: React.KeyboardEvent) => void;
|
|
34
|
+
onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
35
35
|
inputType?: InputType;
|
|
36
36
|
label?: string;
|
|
37
37
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"textfield-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/textfield/textfield-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAA;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAA;AAE1C,MAAM,WAAW,cAAe,SAAQ,mBAAmB;IACzD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,OAAO,CAAC,EAAE,MAAM,GAAG,eAAe,CAAA;IAElC;;;OAGG;IACH,SAAS,CAAC,EAAE,KAAK,GAAG,OAAO,CAAA;IAC3B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EACN,MAAM,GACN,SAAS,GACT,SAAS,GACT,QAAQ,GACR,KAAK,GACL,OAAO,GACP,KAAK,CAAA;IAET;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,UAAU,CAAA;IAChC,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;IAE/B;;;OAGG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;IACtC,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAA;IAC7B,SAAS,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,aAAa,KAAK,IAAI,CAAA;
|
|
1
|
+
{"version":3,"file":"textfield-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/textfield/textfield-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAA;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAA;AAE1C,MAAM,WAAW,cAAe,SAAQ,mBAAmB;IACzD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,OAAO,CAAC,EAAE,MAAM,GAAG,eAAe,CAAA;IAElC;;;OAGG;IACH,SAAS,CAAC,EAAE,KAAK,GAAG,OAAO,CAAA;IAC3B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EACN,MAAM,GACN,SAAS,GACT,SAAS,GACT,QAAQ,GACR,KAAK,GACL,OAAO,GACP,KAAK,CAAA;IAET;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,UAAU,CAAA;IAChC,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;IAE/B;;;OAGG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;IACtC,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAA;IAC7B,SAAS,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,gBAAgB,CAAC,KAAK,IAAI,CAAA;IAC9D,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAA;IAEvB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAKd,YAAY,CAAC,EAAE,MAAM,CAAA;IAErB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;IAEtB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAE5B;;OAEG;IACH,2BAA2B,CAAC,EAAE,MAAM,IAAI,CAAA;IAExC;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAA;CACtB;AAED;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB;;;;CAI/B,CAAA;AAED,eAAO,MAAM,4BAA4B;;;;CAIxC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../../../../src/components/input-panel/assets/data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,SAAS,EAAE,MAAM,gCAAgC,CAAA;AAE1E,eAAO,MAAM,sBAAsB,EAAE,
|
|
1
|
+
{"version":3,"file":"data.d.ts","sourceRoot":"","sources":["../../../../src/components/input-panel/assets/data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,SAAS,EAAE,MAAM,gCAAgC,CAAA;AAE1E,eAAO,MAAM,sBAAsB,EAAE,SAkVpC,CAAA;AAED,eAAO,MAAM,8BAA8B,EAAE,SA0F5C,CAAA;AAED,eAAO,MAAM,6BAA6B,EAAE,SA6E3C,CAAA;AAED,eAAO,MAAM,2BAA2B,EAAE,SAEzC,CAAA;AAWD,eAAO,MAAM,8CAA8C,WAE1D,CAAA;AAWD,eAAO,MAAM,+CAA+C,WAE3D,CAAA;AAWD,eAAO,MAAM,sBAAsB,EAAE,SAEpC,CAAA;AAUD,eAAO,MAAM,qBAAqB,EAAE,SA0DnC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input-panel.d.ts","sourceRoot":"","sources":["../../../src/components/input-panel/input-panel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAQN,MAAM,OAAO,CAAA;AAkBd,OAAO,EAGL,eAAe,EAEf,gBAAgB,EACjB,MAAM,qBAAqB,CAAA;AAe5B,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"input-panel.d.ts","sourceRoot":"","sources":["../../../src/components/input-panel/input-panel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAQN,MAAM,OAAO,CAAA;AAkBd,OAAO,EAGL,eAAe,EAEf,gBAAgB,EACjB,MAAM,qBAAqB,CAAA;AAe5B,eAAO,MAAM,UAAU,0FA+mBtB,CAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export { type FieldProps } from './components/field/field-types';
|
|
|
19
19
|
/** Input Panel */
|
|
20
20
|
export { InputPanel } from './components/input-panel/input-panel';
|
|
21
21
|
export { INPUT_PANEL_COMMAND_SUBMIT_EVENT_NAME, type InputPanelOptionsHandler, type InputPanelProps, type InputPanelSubmitEvent, type InputPanelSubmitHandler, type InputPanelSubmitValue, } from './components/input-panel/input-panel-types';
|
|
22
|
+
export { dataTableWithAllShapes } from './components/input-panel/assets/data';
|
|
22
23
|
/** Breadcrumbs */
|
|
23
24
|
export { Breadcrumbs } from './components/breadcrumbs/breadcrumbs';
|
|
24
25
|
export { type BreadcrumbsProps } from './components/breadcrumbs/breadcrumbs-types';
|
|
@@ -34,6 +35,7 @@ export { type PathProps } from './components/path/path-types';
|
|
|
34
35
|
/** Tab Bar */
|
|
35
36
|
export { TabBar } from './components/tab-bar/tab-bar';
|
|
36
37
|
export { type TabBarProps } from './components/tab-bar/tab-bar-types';
|
|
38
|
+
export { exampleData as TabBarExampleData } from './components/tab-bar/tab-bar-assets';
|
|
37
39
|
/** Tab Bar */
|
|
38
40
|
export { Toolbar } from './components/toolbar/toolbar';
|
|
39
41
|
export { type ToolbarProps } from './components/toolbar/toolbar-types';
|
|
@@ -52,23 +54,33 @@ export { type HtmProps } from './components/htm/htm-types';
|
|
|
52
54
|
/** Basic Components */
|
|
53
55
|
export { Cell } from './basic-components/cell/cell';
|
|
54
56
|
export { type CellProps } from './basic-components/cell/cell-types';
|
|
55
|
-
/** Barcode */
|
|
56
|
-
export { type BarcodeProps } from './basic-components/barcode/barcode-types';
|
|
57
57
|
/** Autocomplete */
|
|
58
58
|
export { Autocomplete } from './basic-components/autocomplete/autocomplete';
|
|
59
59
|
export { type AutocompleteProps } from './basic-components/autocomplete/autocomplete-types';
|
|
60
|
+
/** Barcode */
|
|
61
|
+
export { Barcode } from './basic-components/barcode/barcode';
|
|
62
|
+
export { type BarcodeProps } from './basic-components/barcode/barcode-types';
|
|
60
63
|
/** Button */
|
|
61
64
|
export { Button } from './basic-components/button/button';
|
|
62
65
|
export { type ButtonProps } from './basic-components/button/button-types';
|
|
63
66
|
/** Button List */
|
|
64
67
|
export { ButtonList } from './basic-components/button-list/button-list';
|
|
65
68
|
export { type ButtonListProps } from './basic-components/button-list/button-list-types';
|
|
69
|
+
/** Button Dropdown */
|
|
70
|
+
export { DropdownButton } from './basic-components/button-dropdown/button-dropdown';
|
|
71
|
+
export { type DropdownButtonProps } from './basic-components/button-dropdown/button-dropdown-types';
|
|
72
|
+
/** Button Group */
|
|
73
|
+
export { ButtonGroup } from './basic-components/button-group/button-group';
|
|
74
|
+
export { type ButtonGroupProps } from './basic-components/button-group/button-group-types';
|
|
66
75
|
/** Checkbox */
|
|
67
76
|
export { Checkbox } from './basic-components/checkbox/checkbox';
|
|
68
77
|
export { type CheckboxProps } from './basic-components/checkbox/checkbox-types';
|
|
69
78
|
/** Chips */
|
|
70
79
|
export { Chips } from './basic-components/chips/chips';
|
|
71
80
|
export { type ChipsProps } from './basic-components/chips/chips-types';
|
|
81
|
+
/** Chips Input */
|
|
82
|
+
export { ChipsInput } from './basic-components/chips-input/chips-input';
|
|
83
|
+
export { type ChipsInputProps } from './basic-components/chips-input/chips-input-types';
|
|
72
84
|
/** Combobox */
|
|
73
85
|
export { Combobox } from './basic-components/combobox/combobox';
|
|
74
86
|
/** Date Picker */
|
|
@@ -77,13 +89,41 @@ export { type DatePickerProps } from './basic-components/date-picker/date-picker
|
|
|
77
89
|
/** Icon */
|
|
78
90
|
export { Icon } from './basic-components/icon/icon';
|
|
79
91
|
export { type IconProps } from './basic-components/icon/icon-types';
|
|
80
|
-
|
|
81
|
-
export {
|
|
92
|
+
/** Image Cell */
|
|
93
|
+
export { ImageCell } from './basic-components/image-cell/image-cell';
|
|
94
|
+
export { type ImageCellProps } from './basic-components/image-cell/image-cell-types';
|
|
95
|
+
/** Input Number */
|
|
96
|
+
export { InputNumber } from './basic-components/input-number/input-number';
|
|
97
|
+
export { type InputNumberProps } from './basic-components/input-number/input-number-types';
|
|
98
|
+
/** List */
|
|
99
|
+
export { List } from './basic-components/list/list';
|
|
100
|
+
export { type ListProps } from './basic-components/list/list-types';
|
|
101
|
+
/** Multiple Autocomplete */
|
|
102
|
+
export { MultipleAutocomplete } from './basic-components/multiple-autocomplete/multiple-autocomplete';
|
|
103
|
+
export { type MultipleAutocompleteProps } from './basic-components/multiple-autocomplete/multiple-autocomplete-types';
|
|
104
|
+
/** Multiple Combobox */
|
|
105
|
+
export { MultipleCombobox } from './basic-components/multiple-combobox/multiple-combobox';
|
|
106
|
+
/** Multiple Select */
|
|
82
107
|
export { MultipleSelect } from './basic-components/multiple-select/multiple-select';
|
|
83
108
|
export { type MultipleSelectProps } from './basic-components/multiple-select/multiple-select-types';
|
|
109
|
+
/** Progress Bar */
|
|
110
|
+
export { ProgressBar } from './basic-components/progress-bar/progress-bar';
|
|
111
|
+
export { type ProgressBarProps } from './basic-components/progress-bar/progress-bar-types';
|
|
112
|
+
/** QR Code */
|
|
113
|
+
export { QRCode } from './basic-components/qr-code/qr-code';
|
|
114
|
+
export { type QRCodeProps } from './basic-components/qr-code/qr-code-types';
|
|
115
|
+
/** Radio */
|
|
116
|
+
export { Radio } from './basic-components/radio/radio';
|
|
117
|
+
export { type RadioProps } from './basic-components/radio/radio-types';
|
|
118
|
+
/** Search Bar */
|
|
119
|
+
export { SearchBar } from './basic-components/searchbar/search-bar';
|
|
120
|
+
export { type SearchBarProps } from './basic-components/searchbar/search-bar-types';
|
|
84
121
|
/** ImageList */
|
|
85
122
|
export { ImageList } from './components/image-list/image-list';
|
|
86
123
|
export { type ImageListProps } from './components/image-list/image-list-types';
|
|
124
|
+
/** Notification Widget */
|
|
125
|
+
export { NotificationWidget } from './components/notification-widget/notification-widget';
|
|
126
|
+
export { type NotificationWidgetProps } from './components/notification-widget/notification-widget-types';
|
|
87
127
|
/** Password */
|
|
88
128
|
export { Password } from './basic-components/password/password';
|
|
89
129
|
export { type PasswordProps } from './basic-components/password/password-types';
|
|
@@ -96,6 +136,15 @@ export { type TextareaProps } from './basic-components/textarea/textarea-types';
|
|
|
96
136
|
/** Textfield */
|
|
97
137
|
export { Textfield } from './basic-components/textfield/textfield';
|
|
98
138
|
export { type TextfieldProps } from './basic-components/textfield/textfield-types';
|
|
139
|
+
/** Text */
|
|
140
|
+
export { Text } from './basic-components/text/text';
|
|
141
|
+
export { type TextProps } from './basic-components/text/text-types';
|
|
142
|
+
/** Text Editor */
|
|
143
|
+
export { TextEditor } from './basic-components/text-editor/text-editor';
|
|
144
|
+
export { type TextEditorProps } from './basic-components/text-editor/text-editor-types';
|
|
145
|
+
/** Time Picker */
|
|
146
|
+
export { TimePicker } from './basic-components/time-picker/time-picker';
|
|
147
|
+
export { type TimePickerProps } from './basic-components/time-picker/time-picker-types';
|
|
99
148
|
/** Typography */
|
|
100
149
|
export { Typography } from './basic-components/typography/typography';
|
|
101
150
|
export { type TypographyProps } from './basic-components/typography/typography-types';
|
|
@@ -119,12 +168,44 @@ export { type AdvanceResearchProviderProps } from './context/AdvanceResearchCont
|
|
|
119
168
|
/** Spotlight */
|
|
120
169
|
export { Spotlight } from './components/spotlight/spotlight';
|
|
121
170
|
export { type SpotlightProps } from './components/spotlight/spotlight-types';
|
|
122
|
-
/**
|
|
123
|
-
export {
|
|
124
|
-
export { type
|
|
171
|
+
/** Action */
|
|
172
|
+
export { Action } from './functional-components/action/action';
|
|
173
|
+
export { type ActionHandle, type ActionProps, } from './functional-components/action/action-types';
|
|
174
|
+
/** Action List */
|
|
175
|
+
export { ActionList } from './functional-components/action-list/action-list';
|
|
176
|
+
export { type ActionListProps } from './functional-components/action-list/action-list-types';
|
|
177
|
+
/** Badge */
|
|
178
|
+
export { Badge } from './functional-components/badge/badge';
|
|
179
|
+
export { type BadgeProps } from './functional-components/badge/badge-types';
|
|
180
|
+
/** Filter Group */
|
|
181
|
+
export { FilterBuilder } from './functional-components/filter-group/filter-builder';
|
|
182
|
+
/** Group Bar */
|
|
183
|
+
export { GroupBar } from './functional-components/group-bar/group-bar';
|
|
184
|
+
export { type GroupBarProps } from './functional-components/group-bar/group-bar-types';
|
|
185
|
+
/** Helper Text */
|
|
186
|
+
export { HelperText } from './functional-components/helper-text/helper-text';
|
|
187
|
+
export { type HelperTextProps } from './functional-components/helper-text/helper-text-types';
|
|
188
|
+
/** Helper Tooltip */
|
|
189
|
+
export { HelperTooltip } from './functional-components/helper-tooltip/helper-tooltip';
|
|
190
|
+
export { type HelperTooltipProps } from './functional-components/helper-tooltip/helper-tooltip-types';
|
|
125
191
|
/** Label */
|
|
126
192
|
export { Label } from './functional-components/label/label';
|
|
127
193
|
export { type LabelProps } from './functional-components/label/label-types';
|
|
194
|
+
/** Layout */
|
|
195
|
+
export { Layout } from './functional-components/layout/layout';
|
|
196
|
+
export { type LayoutProps } from './functional-components/layout/layout-types';
|
|
197
|
+
/** Multiple Field */
|
|
198
|
+
export { MultipleField } from './functional-components/multiple-field/multiple-field';
|
|
199
|
+
export { type MultipleFieldProps } from './functional-components/multiple-field/multiple-field-types';
|
|
200
|
+
/** Overlay Panel */
|
|
201
|
+
export { OverlayPanel } from './functional-components/overlay-panel/overlay-panel';
|
|
202
|
+
export { type OverlayPanelProps } from './functional-components/overlay-panel/overlay-panel-types';
|
|
203
|
+
/** Row */
|
|
204
|
+
export { Row } from './functional-components/row/row';
|
|
205
|
+
export { type RowProps } from './functional-components/row/row-types';
|
|
206
|
+
/** Timeline Engine */
|
|
207
|
+
export { TimelineEngine } from './functional-components/timeline-engine/timeline-engine';
|
|
208
|
+
export { type TimelineEngineProps } from './functional-components/timeline-engine/timeline-engine-types';
|
|
128
209
|
/** Skeleton */
|
|
129
210
|
export { Skeleton } from './functional-components/skeleton/skeleton';
|
|
130
211
|
export { type SkeletonProps, type SkeletonVariant, } from './functional-components/skeleton/skeleton-types';
|
|
@@ -147,4 +228,6 @@ export { type PlannerProps } from './components/planner/planner-types';
|
|
|
147
228
|
/** ObjMetadataContext */
|
|
148
229
|
export { ObjMetadataContext } from './context/obj-metadata-context';
|
|
149
230
|
export { type ObjMetadataContextValue } from './context/obj-metadata-context';
|
|
231
|
+
export { mockOptionsRequestFromTree } from './basic-components/cell/tests/utils';
|
|
232
|
+
export { italianProvincesDataTree } from './assets/provinces.ts';
|
|
150
233
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|