@shopify/ui-extensions 1.0.2 → 2.0.0-alpha.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/README.md +57 -1
- package/admin.d.ts +2 -0
- package/admin.esnext +2 -0
- package/admin.js +1 -0
- package/admin.mjs +2 -0
- package/build/cjs/{types/Banner.js → api.js} +0 -0
- package/build/cjs/components/BlockStack/BlockStack.js +11 -0
- package/build/cjs/components/BlockStack/README.md +1 -0
- package/build/cjs/components/Button/Button.js +11 -0
- package/build/cjs/components/Button/README.md +1 -0
- package/build/cjs/components/Text/README.md +1 -0
- package/build/cjs/components/Text/Text.js +11 -0
- package/build/cjs/components/TextField/README.md +1 -0
- package/build/cjs/components/TextField/TextField.js +11 -0
- package/build/cjs/components/View/README.md +1 -0
- package/build/cjs/components/View/View.js +11 -0
- package/build/cjs/components/index.js +45 -0
- package/build/cjs/components.js +45 -0
- package/build/cjs/{types/BlockStack.js → extension.js} +0 -0
- package/build/cjs/index.js +44 -1
- package/build/cjs/surfaces/admin/api/checkout-editor/README.md +1 -0
- package/build/cjs/{types/Heading.js → surfaces/admin/api/checkout-editor/render-settings.js} +0 -0
- package/build/cjs/surfaces/admin/api/standard/README.md +1 -0
- package/build/cjs/{types/InlineStack.js → surfaces/admin/api/standard/standard.js} +0 -0
- package/build/cjs/{types/Button.js → surfaces/admin/api.js} +0 -0
- package/build/cjs/{types/shared/index.js → surfaces/admin/components.js} +4 -4
- package/build/cjs/{types/index.js → surfaces/admin/extension-points.js} +0 -0
- package/build/cjs/surfaces/admin/extension.js +27 -0
- package/build/cjs/surfaces/admin/index.js +70 -0
- package/build/cjs/{types/shared/Spacing.js → surfaces/admin/shared.js} +0 -0
- package/build/cjs/surfaces/checkout/api/cart-line-details/README.md +1 -0
- package/build/{node/types/BlockStack.js → cjs/surfaces/checkout/api/cart-line-details/render-after.js} +0 -0
- package/build/{node/types/Button.js → cjs/surfaces/checkout/api/shared.js} +0 -0
- package/build/cjs/surfaces/checkout/api/standard/README.md +1 -0
- package/build/{node/types/Heading.js → cjs/surfaces/checkout/api/standard/standard.js} +0 -0
- package/build/{node/types/Banner.js → cjs/surfaces/checkout/api.js} +0 -0
- package/build/cjs/surfaces/checkout/components.js +18 -0
- package/build/{node/types/InlineStack.js → cjs/surfaces/checkout/extension-points.js} +0 -0
- package/build/cjs/surfaces/checkout/extension.js +27 -0
- package/build/cjs/surfaces/checkout/index.js +70 -0
- package/build/{node/types/index.js → cjs/surfaces/checkout/shared.js} +0 -0
- package/build/cjs/utilities/registration.js +110 -0
- package/build/esm/{types/Banner.mjs → api.mjs} +0 -0
- package/build/esm/components/BlockStack/BlockStack.mjs +2 -0
- package/build/esm/components/BlockStack/README.md +1 -0
- package/build/esm/components/Button/Button.mjs +2 -0
- package/build/esm/components/Button/README.md +1 -0
- package/build/esm/components/Text/README.md +1 -0
- package/build/esm/components/Text/Text.mjs +2 -0
- package/build/esm/components/TextField/README.md +1 -0
- package/build/esm/components/TextField/TextField.mjs +2 -0
- package/build/esm/components/View/README.md +1 -0
- package/build/esm/components/View/View.mjs +2 -0
- package/build/esm/components/index.mjs +5 -0
- package/build/esm/components.mjs +5 -0
- package/build/esm/{types/BlockStack.mjs → extension.mjs} +0 -0
- package/build/esm/index.mjs +3 -0
- package/build/esm/surfaces/admin/api/checkout-editor/README.md +1 -0
- package/build/esm/{types/Heading.mjs → surfaces/admin/api/checkout-editor/render-settings.mjs} +0 -0
- package/build/esm/surfaces/admin/api/standard/README.md +1 -0
- package/build/esm/{types/InlineStack.mjs → surfaces/admin/api/standard/standard.mjs} +0 -0
- package/build/esm/{types/Button.mjs → surfaces/admin/api.mjs} +0 -0
- package/build/esm/surfaces/admin/components.mjs +1 -0
- package/build/esm/{types/index.mjs → surfaces/admin/extension-points.mjs} +0 -0
- package/build/esm/surfaces/admin/extension.mjs +3 -0
- package/build/esm/surfaces/admin/index.mjs +5 -0
- package/build/esm/{types/shared/Spacing.mjs → surfaces/admin/shared.mjs} +0 -0
- package/build/esm/surfaces/checkout/api/cart-line-details/README.md +1 -0
- package/build/{esnext/types/BlockStack.esnext → esm/surfaces/checkout/api/cart-line-details/render-after.mjs} +0 -0
- package/build/{esnext/types/Button.esnext → esm/surfaces/checkout/api/shared.mjs} +0 -0
- package/build/esm/surfaces/checkout/api/standard/README.md +1 -0
- package/build/{esnext/types/Heading.esnext → esm/surfaces/checkout/api/standard/standard.mjs} +0 -0
- package/build/{esnext/types/Banner.esnext → esm/surfaces/checkout/api.mjs} +0 -0
- package/build/esm/surfaces/checkout/components.mjs +1 -0
- package/build/{esnext/types/InlineStack.esnext → esm/surfaces/checkout/extension-points.mjs} +0 -0
- package/build/esm/surfaces/checkout/extension.mjs +3 -0
- package/build/esm/surfaces/checkout/index.mjs +5 -0
- package/build/{esnext/types/index.esnext → esm/surfaces/checkout/shared.mjs} +0 -0
- package/build/esm/utilities/registration.mjs +101 -0
- package/build/esnext/{types/shared/Spacing.esnext → api.esnext} +0 -0
- package/build/esnext/components/BlockStack/BlockStack.esnext +2 -0
- package/build/esnext/components/BlockStack/README.md +1 -0
- package/build/esnext/components/Button/Button.esnext +2 -0
- package/build/esnext/components/Button/README.md +1 -0
- package/build/esnext/components/Text/README.md +1 -0
- package/build/esnext/components/Text/Text.esnext +2 -0
- package/build/esnext/components/TextField/README.md +1 -0
- package/build/esnext/components/TextField/TextField.esnext +2 -0
- package/build/esnext/components/View/README.md +1 -0
- package/build/esnext/components/View/View.esnext +2 -0
- package/build/esnext/components/index.esnext +5 -0
- package/build/esnext/components.esnext +5 -0
- package/build/esnext/extension.esnext +0 -0
- package/build/esnext/index.esnext +3 -0
- package/build/esnext/surfaces/admin/api/checkout-editor/README.md +1 -0
- package/build/esnext/surfaces/admin/api/checkout-editor/render-settings.esnext +0 -0
- package/build/esnext/surfaces/admin/api/standard/README.md +1 -0
- package/build/esnext/surfaces/admin/api/standard/standard.esnext +0 -0
- package/build/esnext/surfaces/admin/api.esnext +0 -0
- package/build/esnext/surfaces/admin/components.esnext +1 -0
- package/build/esnext/surfaces/admin/extension-points.esnext +0 -0
- package/build/esnext/surfaces/admin/extension.esnext +3 -0
- package/build/esnext/surfaces/admin/index.esnext +5 -0
- package/build/esnext/surfaces/admin/shared.esnext +0 -0
- package/build/esnext/surfaces/checkout/api/cart-line-details/README.md +1 -0
- package/build/esnext/surfaces/checkout/api/cart-line-details/render-after.esnext +0 -0
- package/build/esnext/surfaces/checkout/api/shared.esnext +0 -0
- package/build/esnext/surfaces/checkout/api/standard/README.md +1 -0
- package/build/esnext/surfaces/checkout/api/standard/standard.esnext +0 -0
- package/build/esnext/surfaces/checkout/api.esnext +0 -0
- package/build/esnext/surfaces/checkout/components.esnext +1 -0
- package/build/esnext/surfaces/checkout/extension-points.esnext +0 -0
- package/build/esnext/surfaces/checkout/extension.esnext +3 -0
- package/build/esnext/surfaces/checkout/index.esnext +5 -0
- package/build/esnext/surfaces/checkout/shared.esnext +0 -0
- package/build/esnext/utilities/registration.esnext +37 -0
- package/build/node/{types/shared/Spacing.js → api.js} +0 -0
- package/build/node/components/BlockStack/BlockStack.js +11 -0
- package/build/node/components/BlockStack/README.md +1 -0
- package/build/node/components/Button/Button.js +11 -0
- package/build/node/components/Button/README.md +1 -0
- package/build/node/components/Text/README.md +1 -0
- package/build/node/components/Text/Text.js +11 -0
- package/build/node/components/TextField/README.md +1 -0
- package/build/node/components/TextField/TextField.js +11 -0
- package/build/node/components/View/README.md +1 -0
- package/build/node/components/View/View.js +11 -0
- package/build/node/components/index.js +45 -0
- package/build/node/components.js +45 -0
- package/build/node/extension.js +1 -0
- package/build/node/index.js +44 -1
- package/build/node/surfaces/admin/api/checkout-editor/README.md +1 -0
- package/build/node/surfaces/admin/api/checkout-editor/render-settings.js +1 -0
- package/build/node/surfaces/admin/api/standard/README.md +1 -0
- package/build/node/surfaces/admin/api/standard/standard.js +1 -0
- package/build/node/surfaces/admin/api.js +1 -0
- package/build/node/{types/shared/index.js → surfaces/admin/components.js} +4 -4
- package/build/node/surfaces/admin/extension-points.js +1 -0
- package/build/node/surfaces/admin/extension.js +27 -0
- package/build/node/surfaces/admin/index.js +70 -0
- package/build/node/surfaces/admin/shared.js +1 -0
- package/build/node/surfaces/checkout/api/cart-line-details/README.md +1 -0
- package/build/node/surfaces/checkout/api/cart-line-details/render-after.js +1 -0
- package/build/node/surfaces/checkout/api/shared.js +1 -0
- package/build/node/surfaces/checkout/api/standard/README.md +1 -0
- package/build/node/surfaces/checkout/api/standard/standard.js +1 -0
- package/build/node/surfaces/checkout/api.js +1 -0
- package/build/node/surfaces/checkout/components.js +18 -0
- package/build/node/surfaces/checkout/extension-points.js +1 -0
- package/build/node/surfaces/checkout/extension.js +27 -0
- package/build/node/surfaces/checkout/index.js +70 -0
- package/build/node/surfaces/checkout/shared.js +1 -0
- package/build/node/utilities/registration.js +44 -0
- package/build/ts/api.d.ts +8 -0
- package/build/ts/api.d.ts.map +1 -0
- package/build/ts/{types/Banner.js → api.js} +0 -0
- package/build/ts/components/BlockStack/BlockStack.d.ts +8 -0
- package/build/ts/components/BlockStack/BlockStack.d.ts.map +1 -0
- package/build/ts/components/BlockStack/BlockStack.js +5 -0
- package/build/ts/components/Button/Button.d.ts +12 -0
- package/build/ts/components/Button/Button.d.ts.map +1 -0
- package/build/ts/components/Button/Button.js +5 -0
- package/build/ts/components/Text/Text.d.ts +8 -0
- package/build/ts/components/Text/Text.d.ts.map +1 -0
- package/build/ts/components/Text/Text.js +5 -0
- package/build/ts/components/TextField/TextField.d.ts +43 -0
- package/build/ts/components/TextField/TextField.d.ts.map +1 -0
- package/build/ts/components/TextField/TextField.js +5 -0
- package/build/ts/components/View/View.d.ts +8 -0
- package/build/ts/components/View/View.d.ts.map +1 -0
- package/build/ts/components/View/View.js +5 -0
- package/build/ts/components/index.d.ts +11 -0
- package/build/ts/components/index.d.ts.map +1 -0
- package/build/ts/components/index.js +13 -0
- package/build/ts/components.d.ts +11 -0
- package/build/ts/components.d.ts.map +1 -0
- package/build/ts/components.js +13 -0
- package/build/ts/extension.d.ts +15 -0
- package/build/ts/extension.d.ts.map +1 -0
- package/build/ts/{types/BlockStack.js → extension.js} +0 -0
- package/build/ts/index.d.ts +3 -1
- package/build/ts/index.d.ts.map +1 -1
- package/build/ts/index.js +17 -0
- package/build/ts/index.ts.d.ts +0 -0
- package/build/ts/surfaces/admin/api/checkout-editor/render-settings.d.ts +19 -0
- package/build/ts/surfaces/admin/api/checkout-editor/render-settings.d.ts.map +1 -0
- package/build/ts/{types/Heading.js → surfaces/admin/api/checkout-editor/render-settings.js} +0 -0
- package/build/ts/surfaces/admin/api/standard/standard.d.ts +7 -0
- package/build/ts/surfaces/admin/api/standard/standard.d.ts.map +1 -0
- package/build/ts/{types/InlineStack.js → surfaces/admin/api/standard/standard.js} +0 -0
- package/build/ts/surfaces/admin/api.d.ts +3 -0
- package/build/ts/surfaces/admin/api.d.ts.map +1 -0
- package/build/ts/{types/Button.js → surfaces/admin/api.js} +0 -0
- package/build/ts/surfaces/admin/components.d.ts +2 -0
- package/build/ts/surfaces/admin/components.d.ts.map +1 -0
- package/build/ts/{types/shared/index.js → surfaces/admin/components.js} +1 -1
- package/build/ts/surfaces/admin/extension-points.d.ts +9 -0
- package/build/ts/surfaces/admin/extension-points.d.ts.map +1 -0
- package/build/ts/{types/index.js → surfaces/admin/extension-points.js} +0 -0
- package/build/ts/surfaces/admin/extension.d.ts +4 -0
- package/build/ts/surfaces/admin/extension.d.ts.map +1 -0
- package/build/ts/surfaces/admin/extension.js +20 -0
- package/build/ts/surfaces/admin/index.d.ts +6 -0
- package/build/ts/surfaces/admin/index.d.ts.map +1 -0
- package/build/ts/surfaces/admin/index.js +21 -0
- package/build/ts/surfaces/admin/index.ts.d.ts +0 -0
- package/build/ts/surfaces/admin/shared.d.ts +8 -0
- package/build/ts/surfaces/admin/shared.d.ts.map +1 -0
- package/build/ts/{types/shared/Spacing.js → surfaces/admin/shared.js} +0 -0
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts +6 -0
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api/cart-line-details/render-after.js +2 -0
- package/build/ts/surfaces/checkout/api/shared.d.ts +4 -0
- package/build/ts/surfaces/checkout/api/shared.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api/shared.js +2 -0
- package/build/ts/surfaces/checkout/api/standard/standard.d.ts +7 -0
- package/build/ts/surfaces/checkout/api/standard/standard.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api/standard/standard.js +2 -0
- package/build/ts/surfaces/checkout/api.d.ts +3 -0
- package/build/ts/surfaces/checkout/api.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/api.js +2 -0
- package/build/ts/surfaces/checkout/components.d.ts +2 -0
- package/build/ts/surfaces/checkout/components.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/components.js +17 -0
- package/build/ts/surfaces/checkout/extension-points.d.ts +10 -0
- package/build/ts/surfaces/checkout/extension-points.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/extension-points.js +2 -0
- package/build/ts/surfaces/checkout/extension.d.ts +4 -0
- package/build/ts/surfaces/checkout/extension.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/extension.js +20 -0
- package/build/ts/surfaces/checkout/index.d.ts +6 -0
- package/build/ts/surfaces/checkout/index.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/index.js +21 -0
- package/build/ts/surfaces/checkout/index.ts.d.ts +0 -0
- package/build/ts/surfaces/checkout/shared.d.ts +8 -0
- package/build/ts/surfaces/checkout/shared.d.ts.map +1 -0
- package/build/ts/surfaces/checkout/shared.js +2 -0
- package/build/ts/utilities/registration.d.ts +13 -0
- package/build/ts/utilities/registration.d.ts.map +1 -0
- package/build/ts/utilities/registration.js +111 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/checkout.d.ts +2 -0
- package/checkout.esnext +2 -0
- package/checkout.js +1 -0
- package/checkout.mjs +2 -0
- package/index.d.ts +2 -1
- package/index.esnext +2 -1
- package/index.js +1 -1
- package/index.mjs +2 -1
- package/package.json +26 -4
- package/sewing-kit.config.ts +3 -1
- package/src/api.ts +8 -0
- package/src/components/BlockStack/BlockStack.ts +7 -0
- package/src/components/BlockStack/README.md +1 -0
- package/src/components/Button/Button.ts +10 -0
- package/src/components/Button/README.md +1 -0
- package/src/components/Text/README.md +1 -0
- package/src/components/Text/Text.ts +5 -0
- package/src/components/TextField/README.md +1 -0
- package/src/components/TextField/TextField.ts +45 -0
- package/src/components/View/README.md +1 -0
- package/src/components/View/View.ts +5 -0
- package/src/components/index.ts +14 -0
- package/src/components.ts +14 -0
- package/src/extension.ts +45 -0
- package/src/index.ts +3 -7
- package/src/surfaces/admin/api/checkout-editor/README.md +1 -0
- package/src/surfaces/admin/api/checkout-editor/render-settings.ts +26 -0
- package/src/surfaces/admin/api/standard/README.md +1 -0
- package/src/surfaces/admin/api/standard/standard.ts +8 -0
- package/src/surfaces/admin/api.ts +2 -0
- package/src/surfaces/admin/components.ts +1 -0
- package/src/surfaces/admin/extension-points.ts +17 -0
- package/src/surfaces/admin/extension.ts +7 -0
- package/src/surfaces/admin/index.ts +5 -0
- package/src/surfaces/admin/shared.ts +14 -0
- package/src/surfaces/checkout/api/cart-line-details/README.md +1 -0
- package/src/surfaces/checkout/api/cart-line-details/render-after.ts +7 -0
- package/src/surfaces/checkout/api/shared.ts +3 -0
- package/src/surfaces/checkout/api/standard/README.md +1 -0
- package/src/surfaces/checkout/api/standard/standard.ts +8 -0
- package/src/surfaces/checkout/api.ts +2 -0
- package/src/surfaces/checkout/components.ts +1 -0
- package/src/surfaces/checkout/extension-points.ts +21 -0
- package/src/surfaces/checkout/extension.ts +7 -0
- package/src/surfaces/checkout/index.ts +5 -0
- package/src/surfaces/checkout/shared.ts +14 -0
- package/src/utilities/registration.ts +60 -0
- package/build/esm/types/shared/index.mjs +0 -1
- package/build/esnext/types/shared/index.esnext +0 -1
- package/build/ts/types/Banner.d.ts +0 -10
- package/build/ts/types/Banner.d.ts.map +0 -1
- package/build/ts/types/BlockStack.d.ts +0 -14
- package/build/ts/types/BlockStack.d.ts.map +0 -1
- package/build/ts/types/Button.d.ts +0 -46
- package/build/ts/types/Button.d.ts.map +0 -1
- package/build/ts/types/Heading.d.ts +0 -14
- package/build/ts/types/Heading.d.ts.map +0 -1
- package/build/ts/types/InlineStack.d.ts +0 -19
- package/build/ts/types/InlineStack.d.ts.map +0 -1
- package/build/ts/types/index.d.ts +0 -6
- package/build/ts/types/index.d.ts.map +0 -1
- package/build/ts/types/shared/Spacing.d.ts +0 -2
- package/build/ts/types/shared/Spacing.d.ts.map +0 -1
- package/build/ts/types/shared/index.d.ts +0 -2
- package/build/ts/types/shared/index.d.ts.map +0 -1
- package/src/types/Banner.ts +0 -12
- package/src/types/BlockStack.ts +0 -14
- package/src/types/Button.ts +0 -45
- package/src/types/Heading.ts +0 -14
- package/src/types/InlineStack.ts +0 -19
- package/src/types/index.ts +0 -5
- package/src/types/shared/Spacing.ts +0 -7
- package/src/types/shared/index.ts +0 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "BlockStack", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _BlockStack.BlockStack;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "Button", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _Button.Button;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "Text", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return _Text.Text;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "TextField", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return _TextField.TextField;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "View", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () {
|
|
33
|
+
return _View.View;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
var _BlockStack = require("./BlockStack/BlockStack");
|
|
38
|
+
|
|
39
|
+
var _Button = require("./Button/Button");
|
|
40
|
+
|
|
41
|
+
var _Text = require("./Text/Text");
|
|
42
|
+
|
|
43
|
+
var _TextField = require("./TextField/TextField");
|
|
44
|
+
|
|
45
|
+
var _View = require("./View/View");
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "BlockStack", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _BlockStack.BlockStack;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "Button", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _Button.Button;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "Text", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return _Text.Text;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "TextField", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return _TextField.TextField;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "View", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () {
|
|
33
|
+
return _View.View;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
var _BlockStack = require("./components/BlockStack/BlockStack");
|
|
38
|
+
|
|
39
|
+
var _Button = require("./components/Button/Button");
|
|
40
|
+
|
|
41
|
+
var _Text = require("./components/Text/Text");
|
|
42
|
+
|
|
43
|
+
var _TextField = require("./components/TextField/TextField");
|
|
44
|
+
|
|
45
|
+
var _View = require("./components/View/View");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/build/node/index.js
CHANGED
|
@@ -1 +1,44 @@
|
|
|
1
|
-
"use strict";
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _api = require("./api");
|
|
8
|
+
|
|
9
|
+
Object.keys(_api).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (key in exports && exports[key] === _api[key]) return;
|
|
12
|
+
Object.defineProperty(exports, key, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _api[key];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
var _components = require("./components");
|
|
21
|
+
|
|
22
|
+
Object.keys(_components).forEach(function (key) {
|
|
23
|
+
if (key === "default" || key === "__esModule") return;
|
|
24
|
+
if (key in exports && exports[key] === _components[key]) return;
|
|
25
|
+
Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () {
|
|
28
|
+
return _components[key];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
var _extension = require("./extension");
|
|
34
|
+
|
|
35
|
+
Object.keys(_extension).forEach(function (key) {
|
|
36
|
+
if (key === "default" || key === "__esModule") return;
|
|
37
|
+
if (key in exports && exports[key] === _extension[key]) return;
|
|
38
|
+
Object.defineProperty(exports, key, {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () {
|
|
41
|
+
return _extension[key];
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Checkout editor API
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Standard admin API
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -4,15 +4,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _components = require("../../components");
|
|
8
8
|
|
|
9
|
-
Object.keys(
|
|
9
|
+
Object.keys(_components).forEach(function (key) {
|
|
10
10
|
if (key === "default" || key === "__esModule") return;
|
|
11
|
-
if (key in exports && exports[key] ===
|
|
11
|
+
if (key in exports && exports[key] === _components[key]) return;
|
|
12
12
|
Object.defineProperty(exports, key, {
|
|
13
13
|
enumerable: true,
|
|
14
14
|
get: function () {
|
|
15
|
-
return
|
|
15
|
+
return _components[key];
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
18
|
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
extension: true
|
|
8
|
+
};
|
|
9
|
+
exports.extension = void 0;
|
|
10
|
+
|
|
11
|
+
var _registration = require("../../utilities/registration");
|
|
12
|
+
|
|
13
|
+
var _extension = require("../../extension");
|
|
14
|
+
|
|
15
|
+
Object.keys(_extension).forEach(function (key) {
|
|
16
|
+
if (key === "default" || key === "__esModule") return;
|
|
17
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
18
|
+
if (key in exports && exports[key] === _extension[key]) return;
|
|
19
|
+
Object.defineProperty(exports, key, {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () {
|
|
22
|
+
return _extension[key];
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
const extension = (0, _registration.createExtensionRegistrationFunction)();
|
|
27
|
+
exports.extension = extension;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _api = require("./api");
|
|
8
|
+
|
|
9
|
+
Object.keys(_api).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (key in exports && exports[key] === _api[key]) return;
|
|
12
|
+
Object.defineProperty(exports, key, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _api[key];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
var _components = require("./components");
|
|
21
|
+
|
|
22
|
+
Object.keys(_components).forEach(function (key) {
|
|
23
|
+
if (key === "default" || key === "__esModule") return;
|
|
24
|
+
if (key in exports && exports[key] === _components[key]) return;
|
|
25
|
+
Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () {
|
|
28
|
+
return _components[key];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
var _extensionPoints = require("./extension-points");
|
|
34
|
+
|
|
35
|
+
Object.keys(_extensionPoints).forEach(function (key) {
|
|
36
|
+
if (key === "default" || key === "__esModule") return;
|
|
37
|
+
if (key in exports && exports[key] === _extensionPoints[key]) return;
|
|
38
|
+
Object.defineProperty(exports, key, {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () {
|
|
41
|
+
return _extensionPoints[key];
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
var _extension = require("./extension");
|
|
47
|
+
|
|
48
|
+
Object.keys(_extension).forEach(function (key) {
|
|
49
|
+
if (key === "default" || key === "__esModule") return;
|
|
50
|
+
if (key in exports && exports[key] === _extension[key]) return;
|
|
51
|
+
Object.defineProperty(exports, key, {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () {
|
|
54
|
+
return _extension[key];
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
var _shared = require("./shared");
|
|
60
|
+
|
|
61
|
+
Object.keys(_shared).forEach(function (key) {
|
|
62
|
+
if (key === "default" || key === "__esModule") return;
|
|
63
|
+
if (key in exports && exports[key] === _shared[key]) return;
|
|
64
|
+
Object.defineProperty(exports, key, {
|
|
65
|
+
enumerable: true,
|
|
66
|
+
get: function () {
|
|
67
|
+
return _shared[key];
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Checkout cart line details API
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Standard checkout API
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _components = require("../../components");
|
|
8
|
+
|
|
9
|
+
Object.keys(_components).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (key in exports && exports[key] === _components[key]) return;
|
|
12
|
+
Object.defineProperty(exports, key, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _components[key];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
extension: true
|
|
8
|
+
};
|
|
9
|
+
exports.extension = void 0;
|
|
10
|
+
|
|
11
|
+
var _registration = require("../../utilities/registration");
|
|
12
|
+
|
|
13
|
+
var _extension = require("../../extension");
|
|
14
|
+
|
|
15
|
+
Object.keys(_extension).forEach(function (key) {
|
|
16
|
+
if (key === "default" || key === "__esModule") return;
|
|
17
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
18
|
+
if (key in exports && exports[key] === _extension[key]) return;
|
|
19
|
+
Object.defineProperty(exports, key, {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () {
|
|
22
|
+
return _extension[key];
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
const extension = (0, _registration.createExtensionRegistrationFunction)();
|
|
27
|
+
exports.extension = extension;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
|
|
7
|
+
var _api = require("./api");
|
|
8
|
+
|
|
9
|
+
Object.keys(_api).forEach(function (key) {
|
|
10
|
+
if (key === "default" || key === "__esModule") return;
|
|
11
|
+
if (key in exports && exports[key] === _api[key]) return;
|
|
12
|
+
Object.defineProperty(exports, key, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _api[key];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
var _components = require("./components");
|
|
21
|
+
|
|
22
|
+
Object.keys(_components).forEach(function (key) {
|
|
23
|
+
if (key === "default" || key === "__esModule") return;
|
|
24
|
+
if (key in exports && exports[key] === _components[key]) return;
|
|
25
|
+
Object.defineProperty(exports, key, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () {
|
|
28
|
+
return _components[key];
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
var _extensionPoints = require("./extension-points");
|
|
34
|
+
|
|
35
|
+
Object.keys(_extensionPoints).forEach(function (key) {
|
|
36
|
+
if (key === "default" || key === "__esModule") return;
|
|
37
|
+
if (key in exports && exports[key] === _extensionPoints[key]) return;
|
|
38
|
+
Object.defineProperty(exports, key, {
|
|
39
|
+
enumerable: true,
|
|
40
|
+
get: function () {
|
|
41
|
+
return _extensionPoints[key];
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
var _extension = require("./extension");
|
|
47
|
+
|
|
48
|
+
Object.keys(_extension).forEach(function (key) {
|
|
49
|
+
if (key === "default" || key === "__esModule") return;
|
|
50
|
+
if (key in exports && exports[key] === _extension[key]) return;
|
|
51
|
+
Object.defineProperty(exports, key, {
|
|
52
|
+
enumerable: true,
|
|
53
|
+
get: function () {
|
|
54
|
+
return _extension[key];
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
var _shared = require("./shared");
|
|
60
|
+
|
|
61
|
+
Object.keys(_shared).forEach(function (key) {
|
|
62
|
+
if (key === "default" || key === "__esModule") return;
|
|
63
|
+
if (key in exports && exports[key] === _shared[key]) return;
|
|
64
|
+
Object.defineProperty(exports, key, {
|
|
65
|
+
enumerable: true,
|
|
66
|
+
get: function () {
|
|
67
|
+
return _shared[key];
|
|
68
|
+
}
|
|
69
|
+
});
|
|
70
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createExtensionRegistrationFunction = createExtensionRegistrationFunction;
|
|
7
|
+
|
|
8
|
+
var _core = require("@remote-ui/core");
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* This function takes an extension function that is expecting a `RemoteRoot` as its
|
|
12
|
+
* first argument, and returns a new function that accepts a `RemoteChannel` instead.
|
|
13
|
+
* This is a convenience that allows the raw UI extension API to only expose the simpler
|
|
14
|
+
* `RemoteChannel` type, while allowing the extension to use the more powerful `RemoteRoot`,
|
|
15
|
+
* provided by a version of `@remote-ui/core` that the extension controls.
|
|
16
|
+
*/
|
|
17
|
+
function createExtensionRegistrationFunction() {
|
|
18
|
+
const extensionWrapper = (_extensionPoint, extensionWithRemoteRoot) => {
|
|
19
|
+
async function extension(...args) {
|
|
20
|
+
// This handles extensions that do not take a `RemoteChannel` as their first argument.
|
|
21
|
+
// This is true for ”non-rendering” extension points, like `Checkout::PostPurchase::ShouldRender`.
|
|
22
|
+
if (args.length === 1 || typeof args[0] !== 'object' || args[0] == null || !('channel' in args[0])) {
|
|
23
|
+
const result = await extensionWithRemoteRoot(...args);
|
|
24
|
+
return result;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
const [{
|
|
28
|
+
channel,
|
|
29
|
+
components
|
|
30
|
+
}, ...rest] = args;
|
|
31
|
+
const root = (0, _core.createRemoteRoot)(channel, {
|
|
32
|
+
components,
|
|
33
|
+
strict: true
|
|
34
|
+
});
|
|
35
|
+
const result = await extensionWithRemoteRoot(root, ...rest);
|
|
36
|
+
await root.mount();
|
|
37
|
+
return result;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return extension;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
return extensionWrapper;
|
|
44
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/api.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,WAAW;IAC1B,QAAQ,CAAC,SAAS,EAAE,iBAAiB,CAAC;IACtC,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;CACjC"}
|
|
File without changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export interface BlockStackProps {
|
|
2
|
+
}
|
|
3
|
+
export declare const BlockStack: "BlockStack" & {
|
|
4
|
+
readonly type?: "BlockStack" | undefined;
|
|
5
|
+
readonly props?: BlockStackProps | undefined;
|
|
6
|
+
readonly children?: true | undefined;
|
|
7
|
+
};
|
|
8
|
+
//# sourceMappingURL=BlockStack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BlockStack.d.ts","sourceRoot":"","sources":["../../../../src/components/BlockStack/BlockStack.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,eAAe;CAAG;AAEnC,eAAO,MAAM,UAAU;;;;CAEtB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface ButtonProps {
|
|
2
|
+
/**
|
|
3
|
+
* A callback that is run after the button is pressed.
|
|
4
|
+
*/
|
|
5
|
+
onPress?(): void;
|
|
6
|
+
}
|
|
7
|
+
export declare const Button: "Button" & {
|
|
8
|
+
readonly type?: "Button" | undefined;
|
|
9
|
+
readonly props?: ButtonProps | undefined;
|
|
10
|
+
readonly children?: true | undefined;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,OAAO,CAAC,IAAI,IAAI,CAAC;CAClB;AAED,eAAO,MAAM,MAAM;;;;CAAyD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../../../src/components/Text/Text.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,SAAS;CAAG;AAE7B,eAAO,MAAM,IAAI;;;;CAAmD,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export interface TextFieldProps {
|
|
2
|
+
/**
|
|
3
|
+
* Content to use as the field label.
|
|
4
|
+
*/
|
|
5
|
+
label: string;
|
|
6
|
+
/**
|
|
7
|
+
* The current value for the field. If omitted, the field will be empty. You should
|
|
8
|
+
* update this value in response to the `onChange` callback.
|
|
9
|
+
*/
|
|
10
|
+
value?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Callback when the user has **finished editing** a field. Unlike `onChange`
|
|
13
|
+
* callbacks you may be familiar with from Polaris or other React component libraries,
|
|
14
|
+
* this callback is **not** run on every change to the input. Text fields are
|
|
15
|
+
* “partially controlled” components, which means that while the user edits the
|
|
16
|
+
* field, its state is controlled by the component. Once the user has signalled that
|
|
17
|
+
* they have finished editing the field (typically, by blurring the field), `onChange`
|
|
18
|
+
* is called if the input actually changed from the most recent `value` property. At
|
|
19
|
+
* that point, you are expected to store this “committed value” in state, and reflect
|
|
20
|
+
* it in the text field’s `value` property.
|
|
21
|
+
*
|
|
22
|
+
* This state management model is important given how UI Extensions are rendered. UI Extension components
|
|
23
|
+
* run on a separate thread from the UI, so they can’t respond to input synchronously.
|
|
24
|
+
* A pattern popularized by [controlled React components](https://reactjs.org/docs/forms.html#controlled-components)
|
|
25
|
+
* is to have the component be the source of truth for the input `value`, and update
|
|
26
|
+
* the `value` on every user input. The delay in responding to events from a UI
|
|
27
|
+
* extension is only a few milliseconds, but attempting to strictly store state with
|
|
28
|
+
* this delay can cause issues if a user types quickly, or if the user is using a
|
|
29
|
+
* lower-powered device. Having the UI thread take ownership for “in progress” input,
|
|
30
|
+
* and only synchronizing when the user is finished with a field, avoids this risk.
|
|
31
|
+
*
|
|
32
|
+
* This callback is called with the current value of the field. If the value of a field
|
|
33
|
+
* is the same as the current `value` prop provided to the field, the `onChange` callback
|
|
34
|
+
* will not be run.
|
|
35
|
+
*/
|
|
36
|
+
onChange?(value: string): void;
|
|
37
|
+
}
|
|
38
|
+
export declare const TextField: "TextField" & {
|
|
39
|
+
readonly type?: "TextField" | undefined;
|
|
40
|
+
readonly props?: TextFieldProps | undefined;
|
|
41
|
+
readonly children?: true | undefined;
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=TextField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextField.d.ts","sourceRoot":"","sources":["../../../../src/components/TextField/TextField.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,QAAQ,CAAC,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC;AAED,eAAO,MAAM,SAAS;;;;CAErB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"View.d.ts","sourceRoot":"","sources":["../../../../src/components/View/View.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,SAAS;CAAG;AAE7B,eAAO,MAAM,IAAI;;;;CAAmD,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { BlockStack } from './BlockStack/BlockStack';
|
|
2
|
+
export type { BlockStackProps } from './BlockStack/BlockStack';
|
|
3
|
+
export { Button } from './Button/Button';
|
|
4
|
+
export type { ButtonProps } from './Button/Button';
|
|
5
|
+
export { Text } from './Text/Text';
|
|
6
|
+
export type { TextProps } from './Text/Text';
|
|
7
|
+
export { TextField } from './TextField/TextField';
|
|
8
|
+
export type { TextFieldProps } from './TextField/TextField';
|
|
9
|
+
export { View } from './View/View';
|
|
10
|
+
export type { ViewProps } from './View/View';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,yBAAyB,CAAC;AACnD,YAAY,EAAC,eAAe,EAAC,MAAM,yBAAyB,CAAC;AAE7D,OAAO,EAAC,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvC,YAAY,EAAC,WAAW,EAAC,MAAM,iBAAiB,CAAC;AAEjD,OAAO,EAAC,IAAI,EAAC,MAAM,aAAa,CAAC;AACjC,YAAY,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AAE3C,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAChD,YAAY,EAAC,cAAc,EAAC,MAAM,uBAAuB,CAAC;AAE1D,OAAO,EAAC,IAAI,EAAC,MAAM,aAAa,CAAC;AACjC,YAAY,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC"}
|