@pingux/astro 2.25.0-alpha.2 → 2.25.0-alpha.3
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.
@@ -22,6 +22,7 @@ var _PencilIcon = _interopRequireDefault(require("@pingux/mdi-react/PencilIcon")
|
|
22
22
|
var _PlusIcon = _interopRequireDefault(require("@pingux/mdi-react/PlusIcon"));
|
23
23
|
var _hooks = require("../hooks");
|
24
24
|
var _index = require("../index");
|
25
|
+
var _figmaLinks = require("../utils/designUtils/figmaLinks");
|
25
26
|
var _items = require("./items");
|
26
27
|
var _react2 = require("@emotion/react");
|
27
28
|
function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
@@ -257,6 +258,12 @@ var ListAndPanel = function ListAndPanel() {
|
|
257
258
|
}, (0, _react2.jsx)(_index.Text, null, "Account Info")))))));
|
258
259
|
};
|
259
260
|
exports.ListAndPanel = ListAndPanel;
|
261
|
+
ListAndPanel.parameters = {
|
262
|
+
design: {
|
263
|
+
type: 'figma',
|
264
|
+
url: _figmaLinks.FIGMA_LINKS.listAndPanel.listAndPanel
|
265
|
+
}
|
266
|
+
};
|
260
267
|
var ListElement = function ListElement(_ref) {
|
261
268
|
var _ref$data = _ref.data,
|
262
269
|
data = _ref$data === void 0 ? {
|
@@ -119,6 +119,9 @@ var FIGMA_LINKS = {
|
|
119
119
|
},
|
120
120
|
trialExperienceButtons: {
|
121
121
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=43369%3A445'
|
122
|
+
},
|
123
|
+
listAndPanel: {
|
124
|
+
listAndPanel: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=15251-33924'
|
122
125
|
}
|
123
126
|
};
|
124
127
|
exports.FIGMA_LINKS = FIGMA_LINKS;
|
@@ -11,6 +11,7 @@ import PencilIcon from '@pingux/mdi-react/PencilIcon';
|
|
11
11
|
import PlusIcon from '@pingux/mdi-react/PlusIcon';
|
12
12
|
import { useOverlappingMenuHoverState, useOverlayPanelState } from '../hooks';
|
13
13
|
import { Box, Icon, IconButton, Link, ListView, ListViewItem, ListViewItemMenu, ListViewItemSwitchField, Menu, OverlayPanel, PopoverMenu, SearchField, Separator, SwitchField, Tab, Tabs, Text } from '../index';
|
14
|
+
import { FIGMA_LINKS } from '../utils/designUtils/figmaLinks';
|
14
15
|
import { items } from './items';
|
15
16
|
import { jsx as ___EmotionJSX } from "@emotion/react";
|
16
17
|
export default {
|
@@ -242,6 +243,12 @@ export var ListAndPanel = function ListAndPanel() {
|
|
242
243
|
title: "Account Info"
|
243
244
|
}, ___EmotionJSX(Text, null, "Account Info")))))));
|
244
245
|
};
|
246
|
+
ListAndPanel.parameters = {
|
247
|
+
design: {
|
248
|
+
type: 'figma',
|
249
|
+
url: FIGMA_LINKS.listAndPanel.listAndPanel
|
250
|
+
}
|
251
|
+
};
|
245
252
|
export var ListElement = function ListElement(_ref) {
|
246
253
|
var _ref$data = _ref.data,
|
247
254
|
data = _ref$data === void 0 ? {
|
@@ -112,5 +112,8 @@ export var FIGMA_LINKS = {
|
|
112
112
|
},
|
113
113
|
trialExperienceButtons: {
|
114
114
|
"default": 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?node-id=43369%3A445'
|
115
|
+
},
|
116
|
+
listAndPanel: {
|
117
|
+
listAndPanel: 'https://www.figma.com/file/bpbEw54gTTcdIiZs4PKK1p/Astro-Specs?type=design&node-id=15251-33924'
|
115
118
|
}
|
116
119
|
};
|