SYMBOL INDEX (106 symbols across 29 files) FILE: packages/guides/src/Guides.tsx class Guides (line 3) | class Guides extends GuidesManager {} FILE: packages/guides/src/GuidesManager.tsx class Guides (line 10) | @Properties(METHODS as any, (prototype, property) => { method get (line 25) | get() { method set (line 28) | set(value) { method constructor (line 51) | constructor(container: HTMLElement, options: Partial = ... method setState (line 79) | public setState(state: Partial, callback?: () => void) { method forceUpdate (line 85) | public forceUpdate(callback?: () => void) { method destroy (line 91) | public destroy() { method getInnerGuides (line 105) | private getInnerGuides() { type Guides (line 109) | interface Guides extends GuidesInterface {} method get (line 25) | get() { method set (line 28) | set(value) { method constructor (line 51) | constructor(container: HTMLElement, options: Partial = ... method setState (line 79) | public setState(state: Partial, callback?: () => void) { method forceUpdate (line 85) | public forceUpdate(callback?: () => void) { method destroy (line 91) | public destroy() { method getInnerGuides (line 105) | private getInnerGuides() { FILE: packages/guides/src/InnerGuides.tsx type InnerGuidesProps (line 6) | interface InnerGuidesProps extends GuidesOptions { class InnerGuides (line 9) | class InnerGuides extends React.Component = GUIDES_PROPERTIES; constant METHODS (line 11) | const METHODS = GUIDES_METHODS as readonly string[]; constant EVENTS (line 13) | const EVENTS = GUIDES_EVENTS as readonly string[]; FILE: packages/ngx-guides/projects/ngx-guides/src/lib/consts.ts constant ANGULAR_GUIDES_INPUTS (line 3) | const ANGULAR_GUIDES_INPUTS: ["className","rulerStyle","snapThreshold","... constant ANGULAR_GUIDES_OUTPUTS (line 4) | const ANGULAR_GUIDES_OUTPUTS: ["changeGuides","requestScroll","dragStart... FILE: packages/ngx-guides/projects/ngx-guides/src/lib/ngx-guides.component.ts class NgxGuidesComponent (line 19) | class NgxGuidesComponent extends NgxGuidesInterface implements AfterView... method constructor (line 21) | constructor() { method ngOnChanges (line 27) | ngOnChanges(changes: SimpleChanges): void { method ngAfterViewInit (line 46) | ngAfterViewInit() { method ngOnDestroy (line 71) | ngOnDestroy() { method setStyle (line 74) | setStyle() { FILE: packages/ngx-guides/projects/ngx-guides/src/lib/ngx-guides.interface.ts class NgxGuidesInterface (line 6) | class NgxGuidesInterface { type NgxGuidesInterface (line 10) | interface NgxGuidesInterface FILE: packages/ngx-guides/projects/ngx-guides/src/lib/ngx-guides.module.ts class NgxGuidesModule (line 12) | class NgxGuidesModule { } FILE: packages/ngx-guides/projects/ngx-guides/src/lib/ngx-guides.service.ts class NgxGuidesService (line 6) | class NgxGuidesService { method constructor (line 8) | constructor() { } FILE: packages/ngx-guides/projects/ngx-guides/src/lib/types.ts type NgxGuidesEvents (line 4) | type NgxGuidesEvents = { FILE: packages/ngx-guides/src/app/app.component.ts class AppComponent (line 8) | class AppComponent { FILE: packages/ngx-guides/src/app/app.module.ts class AppModule (line 16) | class AppModule { } FILE: packages/preact-guides/src/demo/App.tsx class App (line 8) | class App extends Component<{}> { method render (line 15) | public render() { method componentDidMount (line 71) | public componentDidMount() { FILE: packages/preact-guides/src/preact-guides/Guides.d.ts class PreactGuides (line 4) | class PreactGuides extends Component { type PreactGuides (line 7) | interface PreactGuides extends Component, Guid... FILE: packages/react-guides/src/demo/App.tsx type State (line 9) | interface State { class App (line 18) | class App extends Component<{}> { method render (line 55) | public render() { method componentDidMount (line 184) | public componentDidMount() { FILE: packages/react-guides/src/demo/InfiniteViewer.tsx function App (line 7) | function App() { FILE: packages/react-guides/src/demo/serviceWorker.ts type Config (line 23) | interface Config { function register (line 28) | function register(config?: Config) { function registerValidSW (line 65) | function registerValidSW(swUrl: string, config?: Config) { function checkValidServiceWorker (line 109) | function checkValidServiceWorker(swUrl: string, config?: Config) { function unregister (line 137) | function unregister() { FILE: packages/react-guides/src/react-guides/Guides.tsx class Guides (line 15) | class Guides extends React.PureComponent imple... method constructor (line 58) | constructor(props: GuidesProps) { method render (line 63) | public render() { method drawRuler (line 115) | public drawRuler(options: DrawRulerOptions) { method renderGuides (line 118) | public renderGuides() { method componentDidMount (line 156) | public componentDidMount() { method componentWillUnmount (line 227) | public componentWillUnmount() { method componentDidUpdate (line 231) | public componentDidUpdate(prevProps: any) { method loadGuides (line 244) | public loadGuides(guides: number[]) { method getGuides (line 254) | public getGuides(): number[] { method scrollGuides (line 262) | public scrollGuides(pos: number, nextZoom = this._guidesZoom) { method zoomTo (line 288) | public zoomTo(nextZoom: number, nextGuidesZoom = nextZoom) { method getElement (line 297) | public getElement() { method getRulerElement (line 305) | public getRulerElement() { method getGuideScrollPos (line 311) | public getGuideScrollPos() { method getRulerScrollPos (line 317) | public getRulerScrollPos() { method scroll (line 325) | public scroll(pos: number, nextZoom = this._zoom) { method resize (line 334) | public resize(nextZoom = this._zoom) { method movePos (line 492) | private movePos(e: any) { method getTranslateName (line 539) | private getTranslateName() { method _startDragScroll (line 543) | private _startDragScroll(e: OnDragStart) { method _dragScroll (line 568) | private _dragScroll(e: OnDrag) { method _endDragScroll (line 578) | private _endDragScroll(e: OnDragEnd) { method _setZoom (line 585) | private _setZoom(zooms: { zoom?: number; guidesZoom?: number }) { FILE: packages/react-guides/src/react-guides/consts.ts constant ADDER (line 6) | const ADDER = prefix("guide", "adder"); constant GUIDES (line 7) | const GUIDES = prefix("guides"); constant GUIDE (line 8) | const GUIDE = prefix("guide"); constant DRAGGING (line 9) | const DRAGGING = prefix("dragging"); constant DISPLAY_DRAG (line 10) | const DISPLAY_DRAG = prefix("display-drag"); constant GUIDES_CSS (line 11) | const GUIDES_CSS = prefixCSS("scena-guides-", ` constant PROPERTIES (line 120) | const PROPERTIES: Array = [ constant METHODS (line 144) | const METHODS = [ constant EVENTS (line 159) | const EVENTS = [ FILE: packages/react-guides/src/react-guides/types.ts type GuidesState (line 11) | interface GuidesState { type GuidesOptions (line 20) | interface GuidesOptions extends RulerProps { type GuideOptions (line 129) | interface GuideOptions extends GuidesOptions { type GuidesProps (line 137) | interface GuidesProps extends GuidesOptions { type OnChangeGuides (line 149) | interface OnChangeGuides { type OnRequestScroll (line 162) | interface OnRequestScroll { type OnDragStart (line 172) | interface OnDragStart extends OnGestoDragStart { type OnDrag (line 180) | interface OnDrag extends OnGestoDrag { type OnDragEnd (line 188) | interface OnDragEnd extends OnGestoDragEnd { type OnClickRuler (line 196) | interface OnClickRuler extends OnGestoDragEnd { type GuidesInterface (line 203) | interface GuidesInterface { type GuidesEvents (line 218) | interface GuidesEvents { FILE: packages/react-guides/src/react-guides/utils.ts function prefix (line 3) | function prefix(...classNames: string[]) { FILE: packages/svelte-guides/rollup_start_dev.js method writeBundle (line 6) | writeBundle() { FILE: packages/svelte-guides/src/index.d.ts type SvelteGuidesEvents (line 5) | type SvelteGuidesEvents = { class GuidesComponent (line 8) | class GuidesComponent extends SvelteComponentTyped< type GuidesComponent (line 13) | interface GuidesComponent extends GuidesInterface { FILE: packages/vue-guides/src/components/Guides.vue.d.ts type VueGuides (line 4) | type VueGuides = VueGuidesInterface; FILE: packages/vue-guides/src/components/types.ts type VueGuidesInterface (line 4) | interface VueGuidesInterface FILE: packages/vue-guides/src/shims-tsx.d.ts type Element (line 6) | interface Element extends VNode {} type ElementClass (line 8) | interface ElementClass extends Vue {} type IntrinsicElements (line 9) | interface IntrinsicElements { FILE: packages/vue3-guides/src/Guides.vue.d.ts type VueGuides (line 4) | type VueGuides = VueGuidesInterface; FILE: packages/vue3-guides/src/types.ts type VueGuidesInterface (line 4) | interface VueGuidesInterface FILE: static/scripts/custom.js function gtag (line 3) | function gtag() { dataLayer.push(arguments); }