@lavalogic/scoria 0.0.4 → 0.0.5
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/Components/Table/Body/Rows/Columns/ActionsCell.svelte +2 -2
- package/dist/Components/Table/Body/Rows/Columns/BubbleCell.svelte +2 -2
- package/dist/Components/Table/Body/Rows/Columns/ProgressCell.svelte +2 -2
- package/dist/Components/Table/Body/Rows/Columns/TableNumberInput.svelte +2 -2
- package/dist/Components/Table/Body/Rows/Columns/TableQuerySelect.svelte +2 -2
- package/dist/Components/Table/Body/Rows/Columns/TableSelect.svelte +2 -2
- package/dist/Components/Table/Body/Rows/Columns/TableTextInput.svelte +2 -2
- package/dist/Components/Table/Types/Columns/ColumnType.d.ts +10 -9
- package/dist/Components/Table/Types/Columns/ColumnType.js +10 -10
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorType.d.ts +9 -8
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorType.js +9 -9
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/CheckboxDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/DateInputDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/NumberInputDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/QueryDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/SelectDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Accessors/TextInputDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Actions/ActionsDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Display/AbstractDisplayDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Display/BubbleDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Display/ProgressBarDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Display/ValidityDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/Definitions/Expand/ExpandDef.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/Columns/DisplayType.d.ts +8 -7
- package/dist/Components/Table/Types/Columns/DisplayType.js +8 -8
- package/dist/Components/Table/Types/DataRepository/ILocalDataRepository.d.ts +1 -2
- package/dist/Components/Table/Types/DataRepository/IRemoteDataRepository.d.ts +1 -2
- package/dist/Components/Table/Types/DataRepository/LocalTableDataRepository.svelte.d.ts +2 -4
- package/dist/Components/Table/Types/DataRepository/RemoteTableDataRepository.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/DataRepository/TableDataRepository.svelte.d.ts +1 -2
- package/dist/Components/Table/Types/ExpandedPanel.d.ts +7 -6
- package/dist/Components/Table/Types/ExpandedPanel.js +7 -7
- package/dist/Components/Table/Types/Filtering/CustomFilterType.d.ts +7 -6
- package/dist/Components/Table/Types/Filtering/CustomFilterType.js +7 -7
- package/dist/Components/Table/Types/Filtering/FilterType.d.ts +5 -4
- package/dist/Components/Table/Types/Filtering/FilterType.js +5 -5
- package/dist/Components/Table/Types/Focus/MultiFocusEdge.d.ts +11 -10
- package/dist/Components/Table/Types/Focus/MultiFocusEdge.js +11 -11
- package/dist/Components/Table/Types/Pagination/PaginationType.d.ts +6 -5
- package/dist/Components/Table/Types/Pagination/PaginationType.js +6 -6
- package/dist/Components/Table/Types/Toolbar/ToolbarPosition.d.ts +7 -6
- package/dist/Components/Table/Types/Toolbar/ToolbarPosition.js +7 -7
- package/dist/Delay/Delay.d.ts +4 -3
- package/dist/Delay/Delay.js +4 -4
- package/dist/Types/Examples/ExampleSelectEnum.d.ts +7 -6
- package/dist/Types/Examples/ExampleSelectEnum.js +7 -7
- package/dist/Types/Internal/ApplicationIdentifier.d.ts +11 -9
- package/dist/Types/Internal/ApplicationIdentifier.js +11 -11
- package/dist/Types/Internal/AttributeOperation.d.ts +31 -30
- package/dist/Types/Internal/AttributeOperation.js +31 -31
- package/dist/Types/Internal/DatePickerType.d.ts +9 -8
- package/dist/Types/Internal/DatePickerType.js +9 -9
- package/dist/Types/Internal/InputVariant.d.ts +7 -6
- package/dist/Types/Internal/InputVariant.js +7 -7
- package/dist/Types/Internal/Shape.d.ts +5 -4
- package/dist/Types/Internal/Shape.js +5 -5
- package/dist/Types/Internal/Side.d.ts +7 -6
- package/dist/Types/Internal/Side.js +7 -7
- package/dist/Types/Internal/Size.d.ts +14 -13
- package/dist/Types/Internal/Size.js +14 -14
- package/dist/Types/Internal/Ternary.d.ts +6 -5
- package/dist/Types/Internal/Ternary.js +6 -6
- package/dist/Types/Internal/Validity.d.ts +8 -7
- package/dist/Types/Internal/Validity.js +8 -8
- package/dist/Types/Internal/Variant.d.ts +11 -10
- package/dist/Types/Internal/Variant.js +11 -11
- package/dist/index.d.ts +19 -18
- package/dist/index.js +19 -18
- package/dist/scss/colours.d.ts +96 -94
- package/dist/scss/colours.js +138 -138
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Remote
|
|
3
|
-
Local
|
|
4
|
-
None
|
|
5
|
-
}
|
|
1
|
+
export declare const PaginationType: {
|
|
2
|
+
readonly Remote: "Remote";
|
|
3
|
+
readonly Local: "Local";
|
|
4
|
+
readonly None: "None";
|
|
5
|
+
};
|
|
6
|
+
export type PaginationType = (typeof PaginationType)[keyof typeof PaginationType];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
export const PaginationType = {
|
|
2
|
+
Remote: 'Remote',
|
|
3
|
+
Local: 'Local',
|
|
4
|
+
None: 'None'
|
|
5
|
+
};
|
|
6
|
+
Object.freeze(PaginationType);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
None
|
|
3
|
-
Left
|
|
4
|
-
Top
|
|
5
|
-
Right
|
|
6
|
-
}
|
|
1
|
+
export declare const ToolbarPosition: {
|
|
2
|
+
readonly None: "None";
|
|
3
|
+
readonly Left: "Left";
|
|
4
|
+
readonly Top: "Top";
|
|
5
|
+
readonly Right: "Right";
|
|
6
|
+
};
|
|
7
|
+
export type ToolbarPosition = (typeof ToolbarPosition)[keyof typeof ToolbarPosition];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
export const ToolbarPosition = {
|
|
2
|
+
None: 'None',
|
|
3
|
+
Left: 'Left',
|
|
4
|
+
Top: 'Top',
|
|
5
|
+
Right: 'Right'
|
|
6
|
+
};
|
|
7
|
+
Object.freeze(ToolbarPosition);
|
package/dist/Delay/Delay.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Default
|
|
3
|
-
}
|
|
1
|
+
export declare const Delay: {
|
|
2
|
+
readonly Default: 300;
|
|
3
|
+
};
|
|
4
|
+
export type Delay = (typeof Delay)[keyof typeof Delay];
|
package/dist/Delay/Delay.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export const Delay = {
|
|
2
|
+
Default: 300
|
|
3
|
+
};
|
|
4
|
+
Object.freeze(Delay);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
FirstOption
|
|
3
|
-
SecondOption
|
|
4
|
-
ThirdOption
|
|
5
|
-
FourthOption
|
|
6
|
-
}
|
|
1
|
+
export declare const ExampleSelectEnum: {
|
|
2
|
+
FirstOption: string;
|
|
3
|
+
SecondOption: string;
|
|
4
|
+
ThirdOption: string;
|
|
5
|
+
FourthOption: string;
|
|
6
|
+
};
|
|
7
|
+
export type ExampleSelectEnum = (typeof ExampleSelectEnum)[keyof typeof ExampleSelectEnum];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
export const ExampleSelectEnum = {
|
|
2
|
+
FirstOption: 'FirstOption',
|
|
3
|
+
SecondOption: 'SecondOption',
|
|
4
|
+
ThirdOption: 'ThirdOption',
|
|
5
|
+
FourthOption: 'FourthOption'
|
|
6
|
+
};
|
|
7
|
+
Object.freeze(ExampleSelectEnum);
|
|
@@ -13,15 +13,17 @@ export interface IValueLength {
|
|
|
13
13
|
readonly encoding: GS1Encoding;
|
|
14
14
|
readonly mandatory: boolean;
|
|
15
15
|
}
|
|
16
|
-
export declare const
|
|
17
|
-
Fixed
|
|
18
|
-
Variable
|
|
19
|
-
}
|
|
20
|
-
export
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
16
|
+
export declare const GS1LengthType: {
|
|
17
|
+
readonly Fixed: "Fixed";
|
|
18
|
+
readonly Variable: "Variable";
|
|
19
|
+
};
|
|
20
|
+
export type GS1LengthType = (typeof GS1LengthType)[keyof typeof GS1LengthType];
|
|
21
|
+
export declare const GS1Encoding: {
|
|
22
|
+
readonly Numeric: "Numeric";
|
|
23
|
+
readonly Set82: "Set82";
|
|
24
|
+
readonly Set39: "Set39";
|
|
25
|
+
};
|
|
26
|
+
export type GS1Encoding = (typeof GS1Encoding)[keyof typeof GS1Encoding];
|
|
25
27
|
declare class ApplicationIdentifier implements IApplicationIdentifier {
|
|
26
28
|
readonly name: ApplicationIdentifierName;
|
|
27
29
|
readonly GS1Code: AICode;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { floFriendly } from '../../Helpers/Helpers.svelte.js';
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
export
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
export const GS1LengthType = {
|
|
3
|
+
Fixed: 'Fixed',
|
|
4
|
+
Variable: 'Variable'
|
|
5
|
+
};
|
|
6
|
+
Object.freeze(GS1LengthType);
|
|
7
|
+
export const GS1Encoding = {
|
|
8
|
+
Numeric: 'Numeric',
|
|
9
|
+
Set82: 'Set82',
|
|
10
|
+
Set39: 'Set39'
|
|
11
|
+
};
|
|
12
|
+
Object.freeze(GS1Encoding);
|
|
13
13
|
class ApplicationIdentifier {
|
|
14
14
|
name;
|
|
15
15
|
GS1Code;
|
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Preadvice
|
|
3
|
-
RequiredAtPreadvice
|
|
4
|
-
Order
|
|
5
|
-
RequiredAtOrder
|
|
6
|
-
Despatch
|
|
7
|
-
RequiredAtDespatch
|
|
8
|
-
ValidateAtDespatch
|
|
9
|
-
Kit
|
|
10
|
-
RequiredAtKit
|
|
11
|
-
ValidateAtKit
|
|
12
|
-
Pack
|
|
13
|
-
RequiredAtPack
|
|
14
|
-
ValidateAtPack
|
|
15
|
-
Pick
|
|
16
|
-
RequiredAtPick
|
|
17
|
-
ValidateAtPick
|
|
18
|
-
Receipt
|
|
19
|
-
RequiredAtReceipt
|
|
20
|
-
ValidateAtReceipt
|
|
21
|
-
ReceiptReturn
|
|
22
|
-
RequiredAtReceiptReturn
|
|
23
|
-
ValidateAtReceiptReturn
|
|
24
|
-
Sort
|
|
25
|
-
RequiredAtSort
|
|
26
|
-
ValidateAtSort
|
|
27
|
-
StockTake
|
|
28
|
-
RequiredAtStockTake
|
|
29
|
-
ValidateAtStockTake
|
|
30
|
-
}
|
|
1
|
+
export declare const AttributeOperation: {
|
|
2
|
+
readonly Preadvice: "Preadvice";
|
|
3
|
+
readonly RequiredAtPreadvice: "Preadvice";
|
|
4
|
+
readonly Order: "Order";
|
|
5
|
+
readonly RequiredAtOrder: "Order";
|
|
6
|
+
readonly Despatch: "Despatch";
|
|
7
|
+
readonly RequiredAtDespatch: "RequiredAtDespatch";
|
|
8
|
+
readonly ValidateAtDespatch: "ValidateAtDespatch";
|
|
9
|
+
readonly Kit: "Kit";
|
|
10
|
+
readonly RequiredAtKit: "RequiredAtKit";
|
|
11
|
+
readonly ValidateAtKit: "ValidateAtKit";
|
|
12
|
+
readonly Pack: "Pack";
|
|
13
|
+
readonly RequiredAtPack: "RequiredAtPack";
|
|
14
|
+
readonly ValidateAtPack: "ValidateAtPack";
|
|
15
|
+
readonly Pick: "Pick";
|
|
16
|
+
readonly RequiredAtPick: "RequiredAtPick";
|
|
17
|
+
readonly ValidateAtPick: "ValidateAtPick";
|
|
18
|
+
readonly Receipt: "Receipt";
|
|
19
|
+
readonly RequiredAtReceipt: "RequiredAtReceipt";
|
|
20
|
+
readonly ValidateAtReceipt: "ValidateAtReceipt";
|
|
21
|
+
readonly ReceiptReturn: "ReceiptReturn";
|
|
22
|
+
readonly RequiredAtReceiptReturn: "RequiredAtReceiptReturn";
|
|
23
|
+
readonly ValidateAtReceiptReturn: "ValidateAtReceiptReturn";
|
|
24
|
+
readonly Sort: "Sort";
|
|
25
|
+
readonly RequiredAtSort: "RequiredAtSort";
|
|
26
|
+
readonly ValidateAtSort: "ValidateAtSort";
|
|
27
|
+
readonly StockTake: "StockTake";
|
|
28
|
+
readonly RequiredAtStockTake: "RequiredAtStockTake";
|
|
29
|
+
readonly ValidateAtStockTake: "ValidateAtStockTake";
|
|
30
|
+
};
|
|
31
|
+
export type AttributeOperation = (typeof AttributeOperation)[keyof typeof AttributeOperation];
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
AttributeOperation[AttributeOperation["Preadvice"] = 0] = "Preadvice";
|
|
1
|
+
export const AttributeOperation = {
|
|
2
|
+
Preadvice: 'Preadvice',
|
|
4
3
|
// eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
RequiredAtPreadvice: 'Preadvice', //functionally identical
|
|
5
|
+
Order: 'Order',
|
|
7
6
|
// eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
7
|
+
RequiredAtOrder: 'Order', // functionally identical
|
|
8
|
+
Despatch: 'Despatch',
|
|
9
|
+
RequiredAtDespatch: 'RequiredAtDespatch',
|
|
10
|
+
ValidateAtDespatch: 'ValidateAtDespatch',
|
|
11
|
+
Kit: 'Kit',
|
|
12
|
+
RequiredAtKit: 'RequiredAtKit',
|
|
13
|
+
ValidateAtKit: 'ValidateAtKit',
|
|
14
|
+
Pack: 'Pack',
|
|
15
|
+
RequiredAtPack: 'RequiredAtPack',
|
|
16
|
+
ValidateAtPack: 'ValidateAtPack',
|
|
17
|
+
Pick: 'Pick',
|
|
18
|
+
RequiredAtPick: 'RequiredAtPick',
|
|
19
|
+
ValidateAtPick: 'ValidateAtPick',
|
|
20
|
+
Receipt: 'Receipt',
|
|
21
|
+
RequiredAtReceipt: 'RequiredAtReceipt',
|
|
22
|
+
ValidateAtReceipt: 'ValidateAtReceipt',
|
|
23
|
+
ReceiptReturn: 'ReceiptReturn',
|
|
24
|
+
RequiredAtReceiptReturn: 'RequiredAtReceiptReturn',
|
|
25
|
+
ValidateAtReceiptReturn: 'ValidateAtReceiptReturn',
|
|
26
|
+
Sort: 'Sort',
|
|
27
|
+
RequiredAtSort: 'RequiredAtSort',
|
|
28
|
+
ValidateAtSort: 'ValidateAtSort',
|
|
29
|
+
StockTake: 'StockTake',
|
|
30
|
+
RequiredAtStockTake: 'RequiredAtStockTake',
|
|
31
|
+
ValidateAtStockTake: 'ValidateAtStockTake'
|
|
32
|
+
};
|
|
33
|
+
Object.freeze(AttributeOperation);
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Year
|
|
3
|
-
Month
|
|
4
|
-
Day
|
|
5
|
-
Hours
|
|
6
|
-
Minutes
|
|
7
|
-
Seconds
|
|
8
|
-
}
|
|
1
|
+
export declare const DatePickerType: {
|
|
2
|
+
readonly Year: "year";
|
|
3
|
+
readonly Month: "month";
|
|
4
|
+
readonly Day: "day";
|
|
5
|
+
readonly Hours: "hours";
|
|
6
|
+
readonly Minutes: "minutes";
|
|
7
|
+
readonly Seconds: "seconds";
|
|
8
|
+
};
|
|
9
|
+
export type DatePickerType = (typeof DatePickerType)[keyof typeof DatePickerType];
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
export const DatePickerType = {
|
|
2
|
+
Year: 'year',
|
|
3
|
+
Month: 'month',
|
|
4
|
+
Day: 'day',
|
|
5
|
+
Hours: 'hours',
|
|
6
|
+
Minutes: 'minutes',
|
|
7
|
+
Seconds: 'seconds'
|
|
8
|
+
};
|
|
9
|
+
Object.freeze(DatePickerType);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Default
|
|
3
|
-
Modal
|
|
4
|
-
ModalThin
|
|
5
|
-
Table
|
|
6
|
-
}
|
|
1
|
+
export declare const InputVariant: {
|
|
2
|
+
readonly Default: "Default";
|
|
3
|
+
readonly Modal: "Modal";
|
|
4
|
+
readonly ModalThin: "ModalThin";
|
|
5
|
+
readonly Table: "Table";
|
|
6
|
+
};
|
|
7
|
+
export type InputVariant = (typeof InputVariant)[keyof typeof InputVariant];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
export const InputVariant = {
|
|
2
|
+
Default: 'Default',
|
|
3
|
+
Modal: 'Modal',
|
|
4
|
+
ModalThin: 'ModalThin',
|
|
5
|
+
Table: 'Table'
|
|
6
|
+
};
|
|
7
|
+
Object.freeze(InputVariant);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Rectangle
|
|
3
|
-
Circle
|
|
4
|
-
}
|
|
1
|
+
export declare const Shape: {
|
|
2
|
+
readonly Rectangle: "Rectangle";
|
|
3
|
+
readonly Circle: "Circle";
|
|
4
|
+
};
|
|
5
|
+
export type Shape = (typeof Shape)[keyof typeof Shape];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export const Shape = {
|
|
2
|
+
Rectangle: 'Rectangle',
|
|
3
|
+
Circle: 'Circle'
|
|
4
|
+
};
|
|
5
|
+
Object.freeze(Shape);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Top
|
|
3
|
-
Right
|
|
4
|
-
Bottom
|
|
5
|
-
Left
|
|
6
|
-
}
|
|
1
|
+
export declare const Side: {
|
|
2
|
+
readonly Top: "Top";
|
|
3
|
+
readonly Right: "Right";
|
|
4
|
+
readonly Bottom: "Bottom";
|
|
5
|
+
readonly Left: "Left";
|
|
6
|
+
};
|
|
7
|
+
export type Side = (typeof Side)[keyof typeof Side];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
export const Side = {
|
|
2
|
+
Top: 'Top',
|
|
3
|
+
Right: 'Right',
|
|
4
|
+
Bottom: 'Bottom',
|
|
5
|
+
Left: 'Left'
|
|
6
|
+
};
|
|
7
|
+
Object.freeze(Side);
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Tiny
|
|
3
|
-
Small
|
|
4
|
-
MediumSmall
|
|
5
|
-
Medium
|
|
6
|
-
MediumLarge
|
|
7
|
-
Large
|
|
8
|
-
XLarge
|
|
9
|
-
DoubleXLarge
|
|
10
|
-
TripleXLarge
|
|
11
|
-
FillWidth
|
|
12
|
-
FillHeight
|
|
13
|
-
}
|
|
1
|
+
export declare const Size: {
|
|
2
|
+
readonly Tiny: "Tiny";
|
|
3
|
+
readonly Small: "Small";
|
|
4
|
+
readonly MediumSmall: "MediumSmall";
|
|
5
|
+
readonly Medium: "Medium";
|
|
6
|
+
readonly MediumLarge: "MediumLarge";
|
|
7
|
+
readonly Large: "Large";
|
|
8
|
+
readonly XLarge: "XLarge";
|
|
9
|
+
readonly DoubleXLarge: "DoubleXLarge";
|
|
10
|
+
readonly TripleXLarge: "TripleXLarge";
|
|
11
|
+
readonly FillWidth: "FillWidth";
|
|
12
|
+
readonly FillHeight: "FillHeight";
|
|
13
|
+
};
|
|
14
|
+
export type Size = (typeof Size)[keyof typeof Size];
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
export const Size = {
|
|
2
|
+
Tiny: 'Tiny',
|
|
3
|
+
Small: 'Small',
|
|
4
|
+
MediumSmall: 'MediumSmall',
|
|
5
|
+
Medium: 'Medium',
|
|
6
|
+
MediumLarge: 'MediumLarge',
|
|
7
|
+
Large: 'Large',
|
|
8
|
+
XLarge: 'XLarge',
|
|
9
|
+
DoubleXLarge: 'DoubleXLarge',
|
|
10
|
+
TripleXLarge: 'TripleXLarge',
|
|
11
|
+
FillWidth: 'FillWidth',
|
|
12
|
+
FillHeight: 'FillHeight'
|
|
13
|
+
};
|
|
14
|
+
Object.freeze(Size);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Neutral
|
|
3
|
-
False
|
|
4
|
-
True
|
|
5
|
-
}
|
|
1
|
+
export declare const Ternary: {
|
|
2
|
+
readonly Neutral: -1;
|
|
3
|
+
readonly False: 0;
|
|
4
|
+
readonly True: 1;
|
|
5
|
+
};
|
|
6
|
+
export type Ternary = (typeof Ternary)[keyof typeof Ternary];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
export const Ternary = {
|
|
2
|
+
Neutral: -1,
|
|
3
|
+
False: 0,
|
|
4
|
+
True: 1
|
|
5
|
+
};
|
|
6
|
+
Object.freeze(Ternary);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Invalid
|
|
3
|
-
Valid
|
|
4
|
-
Info
|
|
5
|
-
Warning
|
|
6
|
-
Neutral
|
|
7
|
-
}
|
|
1
|
+
export declare const Validity: {
|
|
2
|
+
readonly Invalid: "Invalid";
|
|
3
|
+
readonly Valid: "Valid";
|
|
4
|
+
readonly Info: "Info";
|
|
5
|
+
readonly Warning: "Warning";
|
|
6
|
+
readonly Neutral: "Neutral";
|
|
7
|
+
};
|
|
8
|
+
export type Validity = (typeof Validity)[keyof typeof Validity];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
export const Validity = {
|
|
2
|
+
Invalid: 'Invalid',
|
|
3
|
+
Valid: 'Valid',
|
|
4
|
+
Info: 'Info',
|
|
5
|
+
Warning: 'Warning',
|
|
6
|
+
Neutral: 'Neutral'
|
|
7
|
+
};
|
|
8
|
+
Object.freeze(Validity);
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
Primary
|
|
3
|
-
CardInner
|
|
4
|
-
CardInnerPrimary
|
|
5
|
-
Secondary
|
|
6
|
-
Default
|
|
7
|
-
Card
|
|
8
|
-
Toolbar
|
|
9
|
-
HeaderIcon
|
|
10
|
-
}
|
|
1
|
+
export declare const Variant: {
|
|
2
|
+
readonly Primary: "Primary";
|
|
3
|
+
readonly CardInner: "CardInner";
|
|
4
|
+
readonly CardInnerPrimary: "CardInnerPrimary";
|
|
5
|
+
readonly Secondary: "Secondary";
|
|
6
|
+
readonly Default: "Default";
|
|
7
|
+
readonly Card: "Card";
|
|
8
|
+
readonly Toolbar: "Toolbar";
|
|
9
|
+
readonly HeaderIcon: "HeaderIcon";
|
|
10
|
+
};
|
|
11
|
+
export type Variant = (typeof Variant)[keyof typeof Variant];
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
export const Variant = {
|
|
2
|
+
Primary: 'Primary',
|
|
3
|
+
CardInner: 'CardInner',
|
|
4
|
+
CardInnerPrimary: 'CardInnerPrimary',
|
|
5
|
+
Secondary: 'Secondary',
|
|
6
|
+
Default: 'Default',
|
|
7
|
+
Card: 'Card',
|
|
8
|
+
Toolbar: 'Toolbar', // TODO style
|
|
9
|
+
HeaderIcon: 'HeaderIcon'
|
|
10
|
+
};
|
|
11
|
+
Object.freeze(Variant);
|