@pine-ds/core 0.1.1 → 0.1.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.
@@ -1,3 +1,61 @@
1
+ /* PineCore custom elements */
2
+ export { PdsAccordion as PdsAccordion } from '../dist/types/components/pds-accordion/pds-accordion';
3
+ export { defineCustomElement as defineCustomElementPdsAccordion } from './pds-accordion';
4
+ export { PdsAvatar as PdsAvatar } from '../dist/types/components/pds-avatar/pds-avatar';
5
+ export { defineCustomElement as defineCustomElementPdsAvatar } from './pds-avatar';
6
+ export { PdsBox as PdsBox } from '../dist/types/components/pds-box/pds-box';
7
+ export { defineCustomElement as defineCustomElementPdsBox } from './pds-box';
8
+ export { PdsButton as PdsButton } from '../dist/types/components/pds-button/pds-button';
9
+ export { defineCustomElement as defineCustomElementPdsButton } from './pds-button';
10
+ export { PdsCheckbox as PdsCheckbox } from '../dist/types/components/pds-checkbox/pds-checkbox';
11
+ export { defineCustomElement as defineCustomElementPdsCheckbox } from './pds-checkbox';
12
+ export { PdsChip as PdsChip } from '../dist/types/components/pds-chip/pds-chip';
13
+ export { defineCustomElement as defineCustomElementPdsChip } from './pds-chip';
14
+ export { PdsCopytext as PdsCopytext } from '../dist/types/components/pds-copytext/pds-copytext';
15
+ export { defineCustomElement as defineCustomElementPdsCopytext } from './pds-copytext';
16
+ export { PdsDivider as PdsDivider } from '../dist/types/components/pds-divider/pds-divider';
17
+ export { defineCustomElement as defineCustomElementPdsDivider } from './pds-divider';
18
+ export { PdsImage as PdsImage } from '../dist/types/components/pds-image/pds-image';
19
+ export { defineCustomElement as defineCustomElementPdsImage } from './pds-image';
20
+ export { PdsInput as PdsInput } from '../dist/types/components/pds-input/pds-input';
21
+ export { defineCustomElement as defineCustomElementPdsInput } from './pds-input';
22
+ export { PdsLink as PdsLink } from '../dist/types/components/pds-link/pds-link';
23
+ export { defineCustomElement as defineCustomElementPdsLink } from './pds-link';
24
+ export { PdsProgress as PdsProgress } from '../dist/types/components/pds-progress/pds-progress';
25
+ export { defineCustomElement as defineCustomElementPdsProgress } from './pds-progress';
26
+ export { PdsRadio as PdsRadio } from '../dist/types/components/pds-radio/pds-radio';
27
+ export { defineCustomElement as defineCustomElementPdsRadio } from './pds-radio';
28
+ export { PdsRow as PdsRow } from '../dist/types/components/pds-row/pds-row';
29
+ export { defineCustomElement as defineCustomElementPdsRow } from './pds-row';
30
+ export { PdsSortable as PdsSortable } from '../dist/types/components/pds-sortable/pds-sortable';
31
+ export { defineCustomElement as defineCustomElementPdsSortable } from './pds-sortable';
32
+ export { PdsSortableItem as PdsSortableItem } from '../dist/types/components/pds-sortable/pds-sortable-item/pds-sortable-item';
33
+ export { defineCustomElement as defineCustomElementPdsSortableItem } from './pds-sortable-item';
34
+ export { PdsSwitch as PdsSwitch } from '../dist/types/components/pds-switch/pds-switch';
35
+ export { defineCustomElement as defineCustomElementPdsSwitch } from './pds-switch';
36
+ export { PdsTab as PdsTab } from '../dist/types/components/pds-tabs/pds-tab/pds-tab';
37
+ export { defineCustomElement as defineCustomElementPdsTab } from './pds-tab';
38
+ export { PdsTable as PdsTable } from '../dist/types/components/pds-table/pds-table';
39
+ export { defineCustomElement as defineCustomElementPdsTable } from './pds-table';
40
+ export { PdsTableBody as PdsTableBody } from '../dist/types/components/pds-table/pds-table-body/pds-table-body';
41
+ export { defineCustomElement as defineCustomElementPdsTableBody } from './pds-table-body';
42
+ export { PdsTableCell as PdsTableCell } from '../dist/types/components/pds-table/pds-table-cell/pds-table-cell';
43
+ export { defineCustomElement as defineCustomElementPdsTableCell } from './pds-table-cell';
44
+ export { PdsTableHead as PdsTableHead } from '../dist/types/components/pds-table/pds-table-head/pds-table-head';
45
+ export { defineCustomElement as defineCustomElementPdsTableHead } from './pds-table-head';
46
+ export { PdsTableHeadCell as PdsTableHeadCell } from '../dist/types/components/pds-table/pds-table-head-cell/pds-table-head-cell';
47
+ export { defineCustomElement as defineCustomElementPdsTableHeadCell } from './pds-table-head-cell';
48
+ export { PdsTableRow as PdsTableRow } from '../dist/types/components/pds-table/pds-table-row/pds-table-row';
49
+ export { defineCustomElement as defineCustomElementPdsTableRow } from './pds-table-row';
50
+ export { PdsTabpanel as PdsTabpanel } from '../dist/types/components/pds-tabs/pds-tabpanel/pds-tabpanel';
51
+ export { defineCustomElement as defineCustomElementPdsTabpanel } from './pds-tabpanel';
52
+ export { PdsTabs as PdsTabs } from '../dist/types/components/pds-tabs/pds-tabs';
53
+ export { defineCustomElement as defineCustomElementPdsTabs } from './pds-tabs';
54
+ export { PdsTextarea as PdsTextarea } from '../dist/types/components/pds-textarea/pds-textarea';
55
+ export { defineCustomElement as defineCustomElementPdsTextarea } from './pds-textarea';
56
+ export { PdsTooltip as PdsTooltip } from '../dist/types/components/pds-tooltip/pds-tooltip';
57
+ export { defineCustomElement as defineCustomElementPdsTooltip } from './pds-tooltip';
58
+
1
59
  /**
2
60
  * Get the base path to where the assets can be found. Use "setAssetPath(path)"
3
61
  * if the path needs to be customized.
@@ -31,3 +89,4 @@ export interface SetPlatformOptions {
31
89
  rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
32
90
  }
33
91
  export declare const setPlatformOptions: (opts: SetPlatformOptions) => void;
92
+ export * from '../dist/types';
@@ -1,3 +1,32 @@
1
1
  export { getAssetPath, setAssetPath, setNonce, setPlatformOptions } from '@stencil/core/internal/client';
2
+ export { PdsAccordion, defineCustomElement as defineCustomElementPdsAccordion } from './pds-accordion.js';
3
+ export { PdsAvatar, defineCustomElement as defineCustomElementPdsAvatar } from './pds-avatar.js';
4
+ export { PdsBox, defineCustomElement as defineCustomElementPdsBox } from './pds-box.js';
5
+ export { PdsButton, defineCustomElement as defineCustomElementPdsButton } from './pds-button.js';
6
+ export { PdsCheckbox, defineCustomElement as defineCustomElementPdsCheckbox } from './pds-checkbox.js';
7
+ export { PdsChip, defineCustomElement as defineCustomElementPdsChip } from './pds-chip.js';
8
+ export { PdsCopytext, defineCustomElement as defineCustomElementPdsCopytext } from './pds-copytext.js';
9
+ export { PdsDivider, defineCustomElement as defineCustomElementPdsDivider } from './pds-divider.js';
10
+ export { PdsIcon, defineCustomElement as defineCustomElementPdsIcon } from './pds-icon.js';
11
+ export { PdsImage, defineCustomElement as defineCustomElementPdsImage } from './pds-image.js';
12
+ export { PdsInput, defineCustomElement as defineCustomElementPdsInput } from './pds-input.js';
13
+ export { PdsLink, defineCustomElement as defineCustomElementPdsLink } from './pds-link.js';
14
+ export { PdsProgress, defineCustomElement as defineCustomElementPdsProgress } from './pds-progress.js';
15
+ export { PdsRadio, defineCustomElement as defineCustomElementPdsRadio } from './pds-radio.js';
16
+ export { PdsRow, defineCustomElement as defineCustomElementPdsRow } from './pds-row.js';
17
+ export { PdsSortable, defineCustomElement as defineCustomElementPdsSortable } from './pds-sortable.js';
18
+ export { PdsSortableItem, defineCustomElement as defineCustomElementPdsSortableItem } from './pds-sortable-item.js';
19
+ export { PdsSwitch, defineCustomElement as defineCustomElementPdsSwitch } from './pds-switch.js';
20
+ export { PdsTab, defineCustomElement as defineCustomElementPdsTab } from './pds-tab.js';
21
+ export { PdsTable, defineCustomElement as defineCustomElementPdsTable } from './pds-table.js';
22
+ export { PdsTableBody, defineCustomElement as defineCustomElementPdsTableBody } from './pds-table-body.js';
23
+ export { PdsTableCell, defineCustomElement as defineCustomElementPdsTableCell } from './pds-table-cell.js';
24
+ export { PdsTableHead, defineCustomElement as defineCustomElementPdsTableHead } from './pds-table-head.js';
25
+ export { PdsTableHeadCell, defineCustomElement as defineCustomElementPdsTableHeadCell } from './pds-table-head-cell.js';
26
+ export { PdsTableRow, defineCustomElement as defineCustomElementPdsTableRow } from './pds-table-row.js';
27
+ export { PdsTabpanel, defineCustomElement as defineCustomElementPdsTabpanel } from './pds-tabpanel.js';
28
+ export { PdsTabs, defineCustomElement as defineCustomElementPdsTabs } from './pds-tabs.js';
29
+ export { PdsTextarea, defineCustomElement as defineCustomElementPdsTextarea } from './pds-textarea.js';
30
+ export { PdsTooltip, defineCustomElement as defineCustomElementPdsTooltip } from './pds-tooltip.js';
2
31
 
3
32
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"file":"index.js","mappings":"","names":[],"sources":[],"sourcesContent":[],"version":3}
1
+ {"file":"index.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;","names":[],"sources":[],"sourcesContent":[],"version":3}
package/dist/docs.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2024-03-08T19:33:40",
2
+ "timestamp": "2024-03-08T21:03:31",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.12.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pine-ds/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "license": "MIT",
5
5
  "description": "Base components for Pine Design System",
6
6
  "author": "Kajabi Design System Services",
@@ -64,7 +64,7 @@
64
64
  "devDependencies": {
65
65
  "@babel/core": "^7.19.3",
66
66
  "@babel/preset-env": "^7.22.10",
67
- "@pine-ds/doc-components": "^0.1.0",
67
+ "@pine-ds/doc-components": "0.1.3",
68
68
  "@pxtrn/storybook-addon-docs-stencil": "^6.4.1",
69
69
  "@stencil-community/eslint-plugin": "^0.5.0",
70
70
  "@stencil/react-output-target": "^0.5.3",